diff --git a/rocolib/builders/boat/BoatWithDCMountBuilder.py b/rocolib/builders/boat/BoatWithDCMountBuilder.py
index ed7e4223e6c04bf6db5130ace14ee7ead84642dd..d1f15499b8c308b1281ebc6cefef3fc365416343 100644
--- a/rocolib/builders/boat/BoatWithDCMountBuilder.py
+++ b/rocolib/builders/boat/BoatWithDCMountBuilder.py
@@ -26,4 +26,9 @@ c.addConnection(("boat", "staredge"), ("split1", "topedge0"))
 c.addConnection(("dcMount","rightArmInterface"), ("split0", "botedge1"), angle=-180)
 c.addConnection(("dcMount","rightArmInterface"), ("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("BoatWithDCMount")
diff --git a/rocolib/builders/boat/BoatWithServoMountAndStack.py b/rocolib/builders/boat/BoatWithServoMountAndStack.py
new file mode 100644
index 0000000000000000000000000000000000000000..2cc10da7a6c9fd46f82895d6a03e61e2a383a9fe
--- /dev/null
+++ b/rocolib/builders/boat/BoatWithServoMountAndStack.py
@@ -0,0 +1,23 @@
+from rocolib.api.components.Component import Component
+from rocolib.api.Function import Function
+
+c = Component()
+
+c.addSubcomponent("boatwithservo", "BoatWithServoMount", inherit=True, prefix=None)
+c.inheritAllInterfaces("boatwithservo")
+c.addSubcomponent("espStack", "StackMount", inherit=True)
+c.inheritAllInterfaces("espStack")
+
+c.addSubcomponent("topPortSplit", "SplitEdge")
+c.addSubcomponent("topStarSplit", "SplitEdge")
+#
+# c.addConstraint(("topPortSplit", "toplength"), ("topDistance"), "(x,)")
+# c.addConstraint(("topPortSplit", "botlength"), ("topDistance", "botDistance", "rServoMount.depth"), "(x[1], x[2], x[0])") #but the value of the new component's boat.length parameter is completely disconnected from the value of the boat component's boat.length parameter
+#
+# c.addConnection(("topStarSplit", "botedge1"), ("lServoMount", "rightInterface"), angle=180) #both face the same direction
+# c.addConnection(("rsplit", "botedge1"), ("rServoMount", "leftInterface"), angle=180)
+#
+#c.addConnection(("espStack", "leftArmInterface"), ("boatwithservo", "topPort"))
+
+
+c.toLibrary("BoatWithServoMountAndStack")
diff --git a/rocolib/builders/boat/BoatWithServoMountBuilder.py b/rocolib/builders/boat/BoatWithServoMountBuilder.py
index 6e14ce823e3b34b3308c774700e6a83ee7c1ebe3..cf26d2cd793603e72b271925cd624efd1e04c544 100644
--- a/rocolib/builders/boat/BoatWithServoMountBuilder.py
+++ b/rocolib/builders/boat/BoatWithServoMountBuilder.py
@@ -26,4 +26,9 @@ c.addConnection(("rsplit", "botedge1"), ("rServoMount", "leftInterface"), angle=
 c.addConnection(("boat", "portedge"), ("lsplit", "topedge0"))
 c.addConnection(("boat", "staredge"), ("rsplit", "topedge0"))
 
+c.inheritInterface("topPort", ("lsplit", "botedge0"))
+c.inheritInterface("botPort", ("lsplit", "botedge2"))
+c.inheritInterface("topStar", ("rsplit", "botedge2"))
+c.inheritInterface("botStar", ("rsplit", "botedge0"))
+
 c.toLibrary("BoatWithServoMount")
diff --git a/rocolib/builders/boat/Boat_StackMountBuilder.py b/rocolib/builders/boat/StackMountBuilder.py
similarity index 57%
rename from rocolib/builders/boat/Boat_StackMountBuilder.py
rename to rocolib/builders/boat/StackMountBuilder.py
index 89cd346640748fd9d2e894bb5c5e232a065fb081..905ad5a16a6c4f300e2aabc7bbb25f1e70ef7992 100644
--- a/rocolib/builders/boat/Boat_StackMountBuilder.py
+++ b/rocolib/builders/boat/StackMountBuilder.py
@@ -4,18 +4,18 @@ from rocolib.api.Function import Function
 
 c = Component()
 
-c.addSubcomponent("stack", "SubESP32Stack", inherit=True, prefix=None)
+c.addSubcomponent("stack", "SubESP32Stack", inherit=True)
 
 c.addParameter("depth", 70, paramType="length") #must set to boat depth
-c.addParameter("width", 70, paramType="length") #must set to boat depth
+c.addParameter("width", 70, paramType="length")#must set to boat width
 
 c.addSubcomponent("topCover", "Rectangle")
-c.addConstraint(("topCover", "w"), "brains", "getDim(x, 'width')")
-c.addConstraint(("topCover", "l"), "depth", "60") #the support is as long as the boat is wide
+c.addConstraint(("topCover", "w"), "stack.brains", "getDim(x, 'width')")
+c.addConstraint(("topCover", "l"), "stack.length") #length is 61, from SubESP32Stack
 
 c.addSubcomponent("botCover", "Rectangle")
-c.addConstraint(("botCover", "w"), "brains", "getDim(x, 'width')")
-c.addConstraint(("botCover", "l"), "depth", "60") #the support is as long as the boat is wide
+c.addConstraint(("botCover", "w"), "stack.brains", "getDim(x, 'width')")
+c.addConstraint(("botCover", "l"), "stack.length")
 
 c.addConnection(("botCover", "l"), ("stack", "topedge0"), angle=90, tabWidth=10)
 c.addConnection(("topCover", "r"), ("stack", "botedge0"), angle=90, tabWidth=7)
@@ -30,27 +30,30 @@ c.addConnection(("topCover", "l"), ("stack", "botedge2"), angle=90, tabWidth=7)
 c.addConnection(("topCover", "b"), ("stack", "topedge3"), angle=90, tabWidth=7)
 
 c.addSubcomponent("servoPins", "Cutout")
-c.addConstraint(("servoPins", "dx"), "depth", "11")
-c.addConstraint(("servoPins", "dy"), "depth", "13")
+c.addConstConstraint(("servoPins", "dx"), 11)
+c.addConstConstraint(("servoPins", "dy"), 13)
 c.addConnection(("botCover", "face"),
                    ("servoPins", "decoration"),
                    mode="hole",offset=Function(params=("depth"), fnstring="(-7, 0)"))#offset=Function(params=("dy1"), fnstring="(10, 0)")
 
 c.addSubcomponent("microUSB", "Cutout")
-c.addConstraint(("microUSB", "dx"), "depth", "6")
-c.addConstraint(("microUSB", "dy"), "depth", "10")
+c.addConstConstraint(("microUSB", "dx"), 6)
+c.addConstConstraint(("microUSB", "dy"), 10)
 c.addConnection(("botCover", "face"),
                    ("microUSB", "decoration"),
                    mode="hole",offset=Function(params=("depth"), fnstring="(22, 0)"))#offset=Function(params=("dy1"), fnstring="(10, 0)")
 
 c.addSubcomponent("lArm", "Rectangle", inherit=True)
-c.addConstraint(("lArm", "w"), ("depth", "width"), "((0.5 * x[0]) ** 2 + (60 - x[1]) ** 2) ** 0.5") #c.addConstraint(("split0", "botlength"), "length", "(1/3*x-10, 10, 2/3*x)")
-c.addConstraint(("lArm", "l"), "depth", "60") #the support is as long as the boat is wide
+c.addConstraint(("lArm", "w"), ("depth", "width", "stack.length"), "((0.5 * x[0]) ** 2 + (x[2] - x[1]) ** 2) ** 0.5") #c.addConstraint(("split0", "botlength"), "length", "(1/3*x-10, 10, 2/3*x)")
+c.addConstraint(("lArm", "l"), "stack.length") #the support is as long as the boat is wide
 c.addConnection(("lArm", "b"), ("botCover", "t"), angle=45)
 
 c.addSubcomponent("rArm", "Rectangle", inherit=True)
-c.addConstraint(("rArm", "w"), ("depth", "width"), "((0.5 * x[0]) ** 2 + (60 - x[1]) ** 2) ** 0.5")
-c.addConstraint(("rArm", "l"), "depth", "60") #the support is as long as the boat is wide
+c.addConstraint(("rArm", "w"), ("depth", "width", "stack.length"), "((0.5 * x[0]) ** 2 + (x[2] - x[1]) ** 2) ** 0.5")
+c.addConstraint(("rArm", "l"), "stack.length") #the support is as long as the boat is wide
 c.addConnection(("rArm", "b"), ("botCover", "b"), angle=45)
 
-c.toLibrary("Boat_StackMount")
+c.inheritInterface("leftArmInterface", ("lArm", "t"))
+c.inheritInterface("rightArmInterface", ("rArm", "t"))
+
+c.toLibrary("StackMount")
diff --git a/rocolib/library/BoatWithServoMountAndStack.yaml b/rocolib/library/BoatWithServoMountAndStack.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..d15583b6589e10be434b87b0ff15245694fc2430
--- /dev/null
+++ b/rocolib/library/BoatWithServoMountAndStack.yaml
@@ -0,0 +1,247 @@
+connections: {}
+interfaces:
+  espStack.leftArmInterface:
+    interface: leftArmInterface
+    subcomponent: espStack
+  espStack.rightArmInterface:
+    interface: rightArmInterface
+    subcomponent: espStack
+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: 100
+    spec:
+      minValue: 73
+      units: mm
+      valueType: (float, int)
+  bow.point:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  espStack.brains:
+    defaultValue: esp32stack
+    spec:
+      valueType: str
+  espStack.depth:
+    defaultValue: 70
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  espStack.dy1:
+    defaultValue: 18
+    spec:
+      parameterType: length
+  espStack.lArm._dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  espStack.lArm._dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  espStack.lArm._dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  espStack.lArm._q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  espStack.lArm._q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  espStack.lArm._q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  espStack.lArm._q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  espStack.length:
+    defaultValue: 61
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  espStack.rArm._dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  espStack.rArm._dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  espStack.rArm._dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  espStack.rArm._q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  espStack.rArm._q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  espStack.rArm._q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  espStack.rArm._q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  espStack.width:
+    defaultValue: 70
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  lServoMount.depth:
+    defaultValue: 24
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  rServoMount.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: 150
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+source: ../builders/boat/BoatWithServoMountAndStack.py
+subcomponents:
+  boatwithservo:
+    classname: BoatWithServoMount
+    kwargs: {}
+    parameters:
+      boat.depth:
+        parameter: boat.depth
+      boat.length:
+        parameter: boat.length
+      boat.width:
+        parameter: boat.width
+      botDistance:
+        parameter: botDistance
+      bow.point:
+        parameter: bow.point
+      lServoMount.depth:
+        parameter: lServoMount.depth
+      rServoMount.depth:
+        parameter: rServoMount.depth
+      stern.point:
+        parameter: stern.point
+      topDistance:
+        parameter: topDistance
+  espStack:
+    classname: StackMount
+    kwargs: {}
+    parameters:
+      brains:
+        parameter: espStack.brains
+      depth:
+        parameter: espStack.depth
+      dy1:
+        parameter: espStack.dy1
+      lArm._dx:
+        parameter: espStack.lArm._dx
+      lArm._dy:
+        parameter: espStack.lArm._dy
+      lArm._dz:
+        parameter: espStack.lArm._dz
+      lArm._q_a:
+        parameter: espStack.lArm._q_a
+      lArm._q_i:
+        parameter: espStack.lArm._q_i
+      lArm._q_j:
+        parameter: espStack.lArm._q_j
+      lArm._q_k:
+        parameter: espStack.lArm._q_k
+      length:
+        parameter: espStack.length
+      rArm._dx:
+        parameter: espStack.rArm._dx
+      rArm._dy:
+        parameter: espStack.rArm._dy
+      rArm._dz:
+        parameter: espStack.rArm._dz
+      rArm._q_a:
+        parameter: espStack.rArm._q_a
+      rArm._q_i:
+        parameter: espStack.rArm._q_i
+      rArm._q_j:
+        parameter: espStack.rArm._q_j
+      rArm._q_k:
+        parameter: espStack.rArm._q_k
+      width:
+        parameter: espStack.width
+  topPortSplit:
+    classname: SplitEdge
+    kwargs: {}
+    parameters: {}
+  topStarSplit:
+    classname: SplitEdge
+    kwargs: {}
+    parameters: {}
diff --git a/rocolib/library/StackMount.yaml b/rocolib/library/StackMount.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..a72551f52325657bed84e7ef576ad98a20d4247f
--- /dev/null
+++ b/rocolib/library/StackMount.yaml
@@ -0,0 +1,281 @@
+connections:
+  connection0:
+  - - botCover
+    - l
+  - - stack
+    - topedge0
+  - angle: 90
+    tabWidth: 10
+  connection1:
+  - - topCover
+    - r
+  - - stack
+    - botedge0
+  - angle: 90
+    tabWidth: 7
+  connection2:
+  - - topCover
+    - t
+  - - stack
+    - topedge1
+  - angle: 90
+  connection3:
+  - - botCover
+    - r
+  - - stack
+    - topedge2
+  - angle: 90
+    tabWidth: 10
+  connection4:
+  - - topCover
+    - l
+  - - stack
+    - botedge2
+  - angle: 90
+    tabWidth: 7
+  connection5:
+  - - topCover
+    - b
+  - - stack
+    - topedge3
+  - angle: 90
+    tabWidth: 7
+  connection6:
+  - &id001
+    - botCover
+    - face
+  - - servoPins
+    - decoration
+  - mode: hole
+    offset:
+      function: (-7, 0)
+      parameter: depth
+  connection7:
+  - *id001
+  - - microUSB
+    - decoration
+  - mode: hole
+    offset:
+      function: (22, 0)
+      parameter: depth
+  connection8:
+  - - lArm
+    - b
+  - - botCover
+    - t
+  - angle: 45
+  connection9:
+  - - rArm
+    - b
+  - - botCover
+    - b
+  - angle: 45
+interfaces:
+  leftArmInterface:
+    interface: t
+    subcomponent: lArm
+  rightArmInterface:
+    interface: t
+    subcomponent: rArm
+parameters:
+  depth:
+    defaultValue: 70
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  lArm._dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  lArm._dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  lArm._dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  lArm._q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  lArm._q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  lArm._q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  lArm._q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  rArm._dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  rArm._dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  rArm._dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  rArm._q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  rArm._q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  rArm._q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  rArm._q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  stack.brains:
+    defaultValue: esp32stack
+    spec:
+      valueType: str
+  stack.dy1:
+    defaultValue: 18
+    spec:
+      parameterType: length
+  stack.length:
+    defaultValue: 61
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  width:
+    defaultValue: 70
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+source: ../builders/boat/StackMountBuilder.py
+subcomponents:
+  botCover:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      l:
+        parameter: stack.length
+      w:
+        function: getDim(x, 'width')
+        parameter: stack.brains
+  lArm:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      _dx:
+        parameter: lArm._dx
+      _dy:
+        parameter: lArm._dy
+      _dz:
+        parameter: lArm._dz
+      _q_a:
+        parameter: lArm._q_a
+      _q_i:
+        parameter: lArm._q_i
+      _q_j:
+        parameter: lArm._q_j
+      _q_k:
+        parameter: lArm._q_k
+      l:
+        parameter: stack.length
+      w:
+        function: ((0.5 * x[0]) ** 2 + (x[2] - x[1]) ** 2) ** 0.5
+        parameter: &id002
+        - depth
+        - width
+        - stack.length
+  microUSB:
+    classname: Cutout
+    kwargs: {}
+    parameters:
+      dx: 6
+      dy: 10
+  rArm:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      _dx:
+        parameter: rArm._dx
+      _dy:
+        parameter: rArm._dy
+      _dz:
+        parameter: rArm._dz
+      _q_a:
+        parameter: rArm._q_a
+      _q_i:
+        parameter: rArm._q_i
+      _q_j:
+        parameter: rArm._q_j
+      _q_k:
+        parameter: rArm._q_k
+      l:
+        parameter: stack.length
+      w:
+        function: ((0.5 * x[0]) ** 2 + (x[2] - x[1]) ** 2) ** 0.5
+        parameter: *id002
+  servoPins:
+    classname: Cutout
+    kwargs: {}
+    parameters:
+      dx: 11
+      dy: 13
+  stack:
+    classname: SubESP32Stack
+    kwargs: {}
+    parameters:
+      brains:
+        parameter: stack.brains
+      dy1:
+        parameter: stack.dy1
+      length:
+        parameter: stack.length
+  topCover:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      l:
+        parameter: stack.length
+      w:
+        function: getDim(x, 'width')
+        parameter: stack.brains
diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-anim.svg b/rocolib/output/BoatWithServoMountAndStack/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e514e385b39a4db175201bb9a3150cccf91849de
--- /dev/null
+++ b/rocolib/output/BoatWithServoMountAndStack/graph-anim.svg
@@ -0,0 +1,554 @@
+<?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="381.703296mm" version="1.1" viewBox="0.000000 0.000000 656.000000 381.703296" width="656.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="100.0" x2="0.0" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="100.0" x2="100.0" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="50.0" x2="100.0" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="0.0" x2="50.0" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="210.00000000000003" x2="110.00000000000001" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="210.00000000000003" x2="210.00000000000003" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="210.00000000000003" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="110.00000000000001" x2="160.00000000000003" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="110.00000000000001" x2="110.00000000000001" y1="190.851648" y2="190.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="323.99999999999994" x2="323.99999999999994" y1="53.85164800000002" y2="327.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="273.99999999999994" x2="273.99999999999994" y1="53.85164800000002" y2="327.851648"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="299.0" x2="273.99999999999994" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="323.99999999999994" x2="299.0" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="299.0" x2="273.99999999999994" y1="-7.134502766348305e-08" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="265.51320686867433" x2="259.75660343433714" y1="33.971564700181574" y2="39.81150361779138"/>
+  <line stroke="#000000" x1="299.0" x2="265.51320686867433" y1="-7.134502766348305e-08" y2="33.971564700181574"/>
+  <line opacity="1.0" stroke="#0000ff" x1="273.99999999999994" x2="259.75660343433714" y1="53.85164800000002" y2="39.81150361779138"/>
+  <line opacity="1.0" stroke="#ff0000" x1="273.99999999999994" x2="253.99999999999997" y1="53.85164800000002" y2="45.65144253540121"/>
+  <line stroke="#000000" x1="259.7566034343372" x2="253.99999999999997" y1="39.81150361779141" y2="45.65144253540121"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="253.99999999999997" x2="253.99999999999997" y1="53.85164800000002" y2="45.65144253540121"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="273.99999999999994" x2="253.99999999999997" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="251.26659817846704" x2="253.99999999999997" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="251.26659817846704" x2="251.26659817846704" y1="45.65144253540121" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="253.99999999999997" x2="251.26659817846704" y1="45.65144253540121" y2="45.65144253540121"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="254.00000000000003" x2="274.00000000000006" y1="327.851648" y2="327.851648"/>
+  <line opacity="1.0" stroke="#ff0000" x1="254.00000000000006" x2="274.00000000000006" y1="336.0518534645988" y2="327.851648"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="254.00000000000006" x2="254.00000000000006" y1="336.0518534645988" y2="327.851648"/>
+  <line stroke="#000000" x1="254.00000000000006" x2="259.75660343433725" y1="336.0518534645988" y2="341.8917923822086"/>
+  <line opacity="1.0" stroke="#0000ff" x1="259.75660343433725" x2="274.00000000000006" y1="341.8917923822086" y2="327.851648"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="299.00000000000006" x2="274.00000000000006" y1="381.7032960713451" y2="327.851648"/>
+  <line stroke="#000000" x1="265.51320686867444" x2="299.00000000000006" y1="347.7317312998184" y2="381.7032960713451"/>
+  <line stroke="#000000" x1="259.75660343433725" x2="265.51320686867444" y1="341.8917923822087" y2="347.7317312998184"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="274.00000000000006" x2="299.00000000000006" y1="327.851648" y2="327.85164799999995"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="299.00000000000006" x2="324.00000000000006" y1="327.851648" y2="327.85164799999995"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="299.00000000000006" x2="324.00000000000006" y1="381.7032960713451" y2="327.85164799999995"/>
+  <line stroke="#000000" x1="332.4867931313257" x2="338.2433965656628" y1="347.7317312998184" y2="341.8917923822086"/>
+  <line stroke="#000000" x1="299.00000000000006" x2="332.4867931313257" y1="381.7032960713451" y2="347.7317312998184"/>
+  <line opacity="1.0" stroke="#0000ff" x1="324.00000000000006" x2="338.2433965656628" y1="327.851648" y2="341.8917923822086"/>
+  <line opacity="1.0" stroke="#ff0000" x1="324.00000000000006" x2="344.00000000000006" y1="327.851648" y2="336.0518534645988"/>
+  <line stroke="#000000" x1="338.2433965656628" x2="344.00000000000006" y1="341.8917923822086" y2="336.0518534645988"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="344.00000000000006" x2="344.00000000000006" y1="327.851648" y2="336.0518534645988"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="324.00000000000006" x2="344.00000000000006" y1="327.851648" y2="327.851648"/>
+  <line stroke="#000000" x1="346.733401821533" x2="344.00000000000006" y1="327.851648" y2="327.851648"/>
+  <line stroke="#000000" x1="346.733401821533" x2="346.733401821533" y1="336.0518534645988" y2="327.851648"/>
+  <line stroke="#000000" x1="344.00000000000006" x2="346.733401821533" y1="336.0518534645988" y2="336.0518534645988"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="343.9999999999999" x2="323.99999999999983" y1="53.85164800000007" y2="53.85164800000007"/>
+  <line opacity="1.0" stroke="#ff0000" x1="343.9999999999999" x2="323.99999999999983" y1="45.651442535401266" y2="53.85164800000007"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="343.9999999999999" x2="343.9999999999999" y1="45.651442535401266" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="343.9999999999999" x2="338.2433965656627" y1="45.651442535401266" y2="39.81150361779146"/>
+  <line opacity="1.0" stroke="#0000ff" x1="338.2433965656627" x2="323.99999999999983" y1="39.81150361779146" y2="53.85164800000007"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="298.9999999999999" x2="323.99999999999983" y1="-7.134491397664533e-08" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="332.48679313132556" x2="298.9999999999999" y1="33.971564700181666" y2="-7.134491397664533e-08"/>
+  <line stroke="#000000" x1="338.2433965656627" x2="332.48679313132556" y1="39.81150361779146" y2="33.971564700181666"/>
+  <line stroke="#000000" x1="346.73340182153277" x2="343.9999999999999" y1="45.651442535401266" y2="45.651442535401266"/>
+  <line stroke="#000000" x1="346.73340182153277" x2="346.73340182153277" y1="53.85164800000007" y2="45.651442535401266"/>
+  <line stroke="#000000" x1="343.9999999999999" x2="346.73340182153277" y1="53.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="344.0" x2="343.9999999999999" y1="203.85164800000007" y2="53.85164800000007"/>
+  <line opacity="1.0" stroke="#0000ff" x1="344.0" x2="344.0" y1="203.85164800000007" y2="227.85164800000007"/>
+  <line stroke="#000000" x1="344.00000000000006" x2="344.0" y1="327.851648" y2="227.85164800000007"/>
+  <line stroke="#000000" x1="344.00000000000006" x2="344.00000000000006" y1="327.851648" y2="327.851648"/>
+  <line stroke="#000000" x1="343.9999999999999" x2="343.9999999999999" y1="53.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="377.9999999999999" x2="344.0" y1="203.85164800000004" y2="203.85164800000007"/>
+  <line stroke="#000000" x1="377.9999999999999" x2="377.9999999999999" y1="227.85164800000004" y2="203.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="344.0" x2="377.9999999999999" y1="227.85164800000007" y2="227.85164800000004"/>
+  <line stroke="#000000" x1="344.0" x2="344.0" y1="227.85164800000007" y2="247.85164800000004"/>
+  <line stroke="#000000" x1="377.99999999999994" x2="377.9999999999999" y1="247.85164800000004" y2="227.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="344.0" x2="377.99999999999994" y1="247.85164800000004" y2="247.85164800000004"/>
+  <line stroke="#000000" x1="344.0" x2="344.0" y1="247.85164800000004" y2="271.851648"/>
+  <line stroke="#000000" x1="377.99999999999994" x2="377.99999999999994" y1="271.851648" y2="247.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="344.0" x2="377.99999999999994" y1="271.851648" y2="271.851648"/>
+  <line stroke="#000000" x1="344.0" x2="344.00000000000006" y1="271.851648" y2="291.85164800000007"/>
+  <line stroke="#000000" x1="377.99999999999994" x2="377.99999999999994" y1="291.85164800000007" y2="271.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="377.99999999999994" x2="344.00000000000006" y1="291.85164800000007" y2="291.85164800000007"/>
+  <line stroke="#000000" x1="378.0" x2="377.99999999999994" y1="301.85164800000007" y2="291.85164800000007"/>
+  <line stroke="#000000" x1="344.00000000000006" x2="378.0" y1="301.85164800000007" y2="301.85164800000007"/>
+  <line stroke="#000000" x1="344.00000000000006" x2="344.00000000000006" y1="291.85164800000007" y2="301.85164800000007"/>
+  <line stroke="#000000" x1="251.2665981784671" x2="254.00000000000003" y1="336.0518534645988" y2="336.0518534645988"/>
+  <line stroke="#000000" x1="251.2665981784671" x2="251.2665981784671" y1="327.851648" y2="336.0518534645988"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="251.2665981784671" y1="327.851648" y2="327.851648"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="254.00000000000003" y1="227.85164800000004" y2="327.851648"/>
+  <line opacity="1.0" stroke="#0000ff" x1="254.00000000000003" x2="254.00000000000003" y1="227.85164800000004" y2="203.85164800000004"/>
+  <line stroke="#000000" x1="253.99999999999997" x2="254.00000000000003" y1="53.85164800000002" y2="203.85164800000004"/>
+  <line stroke="#000000" x1="253.99999999999997" x2="253.99999999999997" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="254.00000000000003" y1="327.851648" y2="327.851648"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="203.85164800000004" y2="227.85164800000004"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="220.00000000000003" y1="203.85164800000004" y2="203.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="220.00000000000003" x2="254.00000000000003" y1="227.85164800000004" y2="227.85164800000004"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="227.85164800000004" y2="247.85164800000004"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="254.00000000000003" y1="247.85164800000004" y2="227.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="220.00000000000003" x2="254.00000000000003" y1="247.85164800000004" y2="247.85164800000004"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="247.85164800000004" y2="271.851648"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="254.00000000000003" y1="271.851648" y2="247.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="220.00000000000003" x2="254.00000000000003" y1="271.851648" y2="271.851648"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000006" y1="271.851648" y2="291.85164800000007"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="254.00000000000003" y1="291.85164800000007" y2="271.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="254.00000000000003" x2="220.00000000000006" y1="291.85164800000007" y2="291.85164800000007"/>
+  <line stroke="#000000" x1="254.00000000000006" x2="254.00000000000006" y1="301.85164800000007" y2="291.85164800000007"/>
+  <line stroke="#000000" x1="220.00000000000006" x2="254.00000000000006" y1="301.85164800000007" y2="301.85164800000007"/>
+  <line stroke="#000000" x1="220.00000000000006" x2="220.00000000000006" y1="291.85164800000007" y2="301.85164800000007"/>
+  <line stroke="#888888" x1="265.40786804847943" x2="263.1379966274785" y1="37.35482121234264" y2="39.65755243235416"/>
+  <line stroke="#888888" x1="263.1379966274785" x2="262.7819117133369" y1="39.65755243235416" y2="39.30654882279893"/>
+  <line stroke="#888888" x1="262.7819117133369" x2="265.0517831343379" y1="39.30654882279893" y2="37.00381760278743"/>
+  <line stroke="#888888" x1="265.0517831343379" x2="265.40786804847943" y1="37.00381760278743" y2="37.35482121234264"/>
+  <line stroke="#888888" x1="251.94994863385028" x2="253.31664954461675" y1="48.384844356934146" y2="48.384844356934146"/>
+  <line stroke="#888888" x1="253.31664954461675" x2="253.31664954461675" y1="48.384844356934146" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="253.31664954461675" x2="251.94994863385028" y1="51.118246178467075" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="263.13799662747857" x2="265.4078680484795" y1="342.0457435676459" y2="344.34847478765744"/>
+  <line stroke="#888888" x1="265.4078680484795" x2="265.051783134338" y1="344.34847478765744" y2="344.69947839721266"/>
+  <line stroke="#888888" x1="265.051783134338" x2="262.781911713337" y1="344.69947839721266" y2="342.39674717720106"/>
+  <line stroke="#888888" x1="262.781911713337" x2="263.13799662747857" y1="342.39674717720106" y2="342.0457435676459"/>
+  <line stroke="#888888" x1="332.59213195152057" x2="334.8620033725215" y1="344.34847478765744" y2="342.0457435676459"/>
+  <line stroke="#888888" x1="334.8620033725215" x2="335.21808828666303" y1="342.0457435676459" y2="342.39674717720106"/>
+  <line stroke="#888888" x1="335.21808828666303" x2="332.9482168656622" y1="342.39674717720106" y2="344.69947839721266"/>
+  <line stroke="#888888" x1="332.9482168656622" x2="332.59213195152057" y1="344.69947839721266" y2="344.34847478765744"/>
+  <line stroke="#888888" x1="346.0500513661498" x2="344.6833504553833" y1="333.31845164306594" y2="333.31845164306594"/>
+  <line stroke="#888888" x1="344.6833504553833" x2="344.6833504553833" y1="333.31845164306594" y2="330.585049821533"/>
+  <line stroke="#888888" x1="344.6833504553833" x2="346.0500513661498" y1="330.585049821533" y2="330.585049821533"/>
+  <line stroke="#888888" x1="334.8620033725213" x2="332.59213195152034" y1="39.657552432354215" y2="37.354821212342706"/>
+  <line stroke="#888888" x1="332.59213195152034" x2="332.948216865662" y1="37.354821212342706" y2="37.00381760278748"/>
+  <line stroke="#888888" x1="332.948216865662" x2="335.21808828666286" y1="37.00381760278748" y2="39.306548822798995"/>
+  <line stroke="#888888" x1="335.21808828666286" x2="334.8620033725213" y1="39.306548822798995" y2="39.657552432354215"/>
+  <line stroke="#888888" x1="346.0500513661496" x2="344.68335045538305" y1="51.11824617846714" y2="51.11824617846714"/>
+  <line stroke="#888888" x1="344.68335045538305" x2="344.68335045538305" y1="51.11824617846714" y2="48.3848443569342"/>
+  <line stroke="#888888" x1="344.68335045538305" x2="346.0500513661496" y1="48.3848443569342" y2="48.3848443569342"/>
+  <line stroke="#888888" x1="366.91666666666663" x2="355.08333333333326" y1="211.60164800000004" y2="211.60164800000007"/>
+  <line stroke="#888888" x1="355.08333333333326" x2="355.08333333333326" y1="211.60164800000007" y2="211.10164800000004"/>
+  <line stroke="#888888" x1="355.08333333333326" x2="366.91666666666663" y1="211.10164800000004" y2="211.101648"/>
+  <line stroke="#888888" x1="366.91666666666663" x2="366.91666666666663" y1="211.101648" y2="211.60164800000004"/>
+  <line stroke="#888888" x1="354.99999999999994" x2="354.99999999999994" y1="246.85164800000004" y2="242.85164800000004"/>
+  <line stroke="#888888" x1="354.99999999999994" x2="367.0" y1="242.85164800000004" y2="242.85164800000004"/>
+  <line stroke="#888888" x1="367.0" x2="367.0" y1="242.85164800000004" y2="246.85164800000004"/>
+  <line stroke="#888888" x1="367.0" x2="354.99999999999994" y1="246.85164800000004" y2="246.85164800000004"/>
+  <line stroke="#888888" x1="356.5" x2="356.5" y1="234.85164800000004" y2="230.85164800000004"/>
+  <line stroke="#888888" x1="356.5" x2="365.5" y1="230.85164800000004" y2="230.85164800000004"/>
+  <line stroke="#888888" x1="365.5" x2="365.5" y1="230.85164800000004" y2="234.85164800000004"/>
+  <line stroke="#888888" x1="365.5" x2="356.5" y1="234.85164800000004" y2="234.85164800000004"/>
+  <line stroke="#888888" x1="354.99999999999994" x2="354.99999999999994" y1="271.35164800000007" y2="248.35164800000004"/>
+  <line stroke="#888888" x1="354.99999999999994" x2="367.0" y1="248.35164800000004" y2="248.35164800000004"/>
+  <line stroke="#888888" x1="367.0" x2="367.0" y1="248.35164800000004" y2="271.35164800000007"/>
+  <line stroke="#888888" x1="367.0" x2="354.99999999999994" y1="271.35164800000007" y2="271.35164800000007"/>
+  <line stroke="#888888" x1="354.99999999999994" x2="354.99999999999994" y1="276.851648" y2="272.851648"/>
+  <line stroke="#888888" x1="354.99999999999994" x2="367.0" y1="272.851648" y2="272.851648"/>
+  <line stroke="#888888" x1="367.0" x2="367.0" y1="272.851648" y2="276.851648"/>
+  <line stroke="#888888" x1="367.0" x2="354.99999999999994" y1="276.851648" y2="276.851648"/>
+  <line stroke="#888888" x1="355.3333333333333" x2="355.3333333333333" y1="299.351648" y2="294.35164800000007"/>
+  <line stroke="#888888" x1="355.3333333333333" x2="366.6666666666667" y1="294.35164800000007" y2="294.35164800000007"/>
+  <line stroke="#888888" x1="366.6666666666667" x2="366.6666666666667" y1="294.35164800000007" y2="299.351648"/>
+  <line stroke="#888888" x1="251.94994863385034" x2="253.3166495446168" y1="330.585049821533" y2="330.585049821533"/>
+  <line stroke="#888888" x1="253.3166495446168" x2="253.3166495446168" y1="330.585049821533" y2="333.31845164306594"/>
+  <line stroke="#888888" x1="253.3166495446168" x2="251.94994863385034" y1="333.31845164306594" y2="333.31845164306594"/>
+  <line stroke="#888888" x1="242.91666666666669" x2="231.08333333333334" y1="211.60164800000004" y2="211.60164800000004"/>
+  <line stroke="#888888" x1="231.08333333333334" x2="231.08333333333334" y1="211.60164800000004" y2="211.101648"/>
+  <line stroke="#888888" x1="231.08333333333334" x2="242.91666666666669" y1="211.101648" y2="211.101648"/>
+  <line stroke="#888888" x1="242.91666666666669" x2="242.91666666666669" y1="211.101648" y2="211.60164800000004"/>
+  <line stroke="#888888" x1="231.00000000000003" x2="231.00000000000003" y1="246.85164800000004" y2="242.85164800000004"/>
+  <line stroke="#888888" x1="231.00000000000003" x2="243.00000000000003" y1="242.85164800000004" y2="242.85164800000004"/>
+  <line stroke="#888888" x1="243.00000000000003" x2="243.00000000000003" y1="242.85164800000004" y2="246.85164800000004"/>
+  <line stroke="#888888" x1="243.00000000000003" x2="231.00000000000003" y1="246.85164800000004" y2="246.85164800000004"/>
+  <line stroke="#888888" x1="232.50000000000003" x2="232.50000000000003" y1="234.85164800000004" y2="230.85164800000004"/>
+  <line stroke="#888888" x1="232.50000000000003" x2="241.50000000000003" y1="230.85164800000004" y2="230.85164800000004"/>
+  <line stroke="#888888" x1="241.50000000000003" x2="241.50000000000003" y1="230.85164800000004" y2="234.85164800000004"/>
+  <line stroke="#888888" x1="241.50000000000003" x2="232.50000000000003" y1="234.85164800000004" y2="234.85164800000004"/>
+  <line stroke="#888888" x1="231.00000000000003" x2="231.00000000000003" y1="271.35164800000007" y2="248.35164800000004"/>
+  <line stroke="#888888" x1="231.00000000000003" x2="243.00000000000003" y1="248.35164800000004" y2="248.35164800000004"/>
+  <line stroke="#888888" x1="243.00000000000003" x2="243.00000000000003" y1="248.35164800000004" y2="271.35164800000007"/>
+  <line stroke="#888888" x1="243.00000000000003" x2="231.00000000000003" y1="271.35164800000007" y2="271.35164800000007"/>
+  <line stroke="#888888" x1="231.00000000000003" x2="231.00000000000003" y1="276.851648" y2="272.851648"/>
+  <line stroke="#888888" x1="231.00000000000003" x2="243.00000000000003" y1="272.851648" y2="272.851648"/>
+  <line stroke="#888888" x1="243.00000000000003" x2="243.00000000000003" y1="272.851648" y2="276.851648"/>
+  <line stroke="#888888" x1="243.00000000000003" x2="231.00000000000003" y1="276.851648" y2="276.851648"/>
+  <line stroke="#888888" x1="231.3333333333334" x2="231.3333333333334" y1="299.351648" y2="294.35164800000007"/>
+  <line stroke="#888888" x1="231.3333333333334" x2="242.6666666666667" y1="294.35164800000007" y2="294.35164800000007"/>
+  <line stroke="#888888" x1="242.6666666666667" x2="242.6666666666667" y1="294.35164800000007" y2="299.351648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="422.00000000000006" x2="482.00000000000006" y1="178.85164800000004" y2="178.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="482.00000000000006" x2="482.00000000000006" y1="178.85164800000004" y2="202.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="482.00000000000006" x2="422.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="422.00000000000006" x2="422.00000000000006" y1="202.85164800000004" y2="178.85164800000004"/>
+  <line stroke="#000000" x1="422.00000000000006" x2="422.00000000000006" y1="171.85164800000004" y2="178.85164800000004"/>
+  <line stroke="#000000" x1="482.00000000000006" x2="422.00000000000006" y1="171.85164800000004" y2="171.85164800000004"/>
+  <line stroke="#000000" x1="482.00000000000006" x2="482.00000000000006" y1="178.85164800000004" y2="171.85164800000004"/>
+  <line stroke="#000000" x1="489.00000000000006" x2="482.00000000000006" y1="178.85164800000004" y2="178.85164800000004"/>
+  <line stroke="#000000" x1="489.00000000000006" x2="489.00000000000006" y1="202.85164800000004" y2="178.85164800000004"/>
+  <line stroke="#000000" x1="482.00000000000006" x2="489.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="482.00000000000006" x2="482.00000000000006" y1="202.85164800000004" y2="263.851648"/>
+  <line stroke="#000000" x1="422.00000000000006" x2="482.00000000000006" y1="263.851648" y2="263.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="422.00000000000006" x2="422.00000000000006" y1="202.85164800000004" y2="263.851648"/>
+  <line stroke="#000000" x1="506.00000000000006" x2="482.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="506.00000000000006" x2="506.00000000000006" y1="202.85164800000004" y2="263.851648"/>
+  <line stroke="#000000" x1="482.00000000000006" x2="506.00000000000006" y1="263.851648" y2="263.851648"/>
+  <line stroke="#000000" x1="566.0" x2="506.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="566.0" x2="566.0" y1="263.851648" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="506.00000000000006" x2="566.0" y1="263.851648" y2="263.851648"/>
+  <line stroke="#000000" x1="422.00000000000006" x2="398.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="398.00000000000006" x2="422.00000000000006" y1="263.851648" y2="263.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="398.00000000000006" x2="398.00000000000006" y1="263.851648" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="388.00000000000006" x2="398.00000000000006" y1="263.851648" y2="263.851648"/>
+  <line stroke="#000000" x1="388.00000000000006" x2="388.00000000000006" y1="202.85164800000004" y2="263.851648"/>
+  <line stroke="#000000" x1="398.00000000000006" x2="388.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="415.00000000000006" x2="422.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="415.00000000000006" x2="415.00000000000006" y1="178.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="422.00000000000006" x2="415.00000000000006" y1="178.85164800000004" y2="178.85164800000004"/>
+  <line stroke="#888888" x1="471.0909090909092" x2="474.5909090909091" y1="173.60164800000004" y2="173.60164800000004"/>
+  <line stroke="#888888" x1="474.5909090909091" x2="471.0909090909092" y1="173.60164800000004" y2="177.101648"/>
+  <line stroke="#888888" x1="471.0909090909092" x2="460.18181818181824" y1="177.101648" y2="177.101648"/>
+  <line stroke="#888888" x1="460.18181818181824" x2="456.68181818181824" y1="177.101648" y2="173.60164800000004"/>
+  <line stroke="#888888" x1="456.68181818181824" x2="460.18181818181824" y1="173.60164800000004" y2="173.60164800000004"/>
+  <line stroke="#888888" x1="443.8181818181818" x2="447.31818181818187" y1="173.60164800000004" y2="173.60164800000004"/>
+  <line stroke="#888888" x1="447.31818181818187" x2="443.8181818181818" y1="173.60164800000004" y2="177.101648"/>
+  <line stroke="#888888" x1="443.8181818181818" x2="432.909090909091" y1="177.101648" y2="177.101648"/>
+  <line stroke="#888888" x1="432.909090909091" x2="429.409090909091" y1="177.101648" y2="173.60164800000004"/>
+  <line stroke="#888888" x1="429.409090909091" x2="432.909090909091" y1="173.60164800000004" y2="173.60164800000004"/>
+  <line stroke="#888888" x1="487.25000000000006" x2="483.75000000000006" y1="194.85164800000004" y2="194.85164800000004"/>
+  <line stroke="#888888" x1="483.75000000000006" x2="483.75000000000006" y1="194.85164800000004" y2="186.85164800000004"/>
+  <line stroke="#888888" x1="483.75000000000006" x2="487.25000000000006" y1="186.85164800000004" y2="186.85164800000004"/>
+  <line stroke="#888888" x1="429.50000000000006" x2="429.50000000000006" y1="254.35164800000007" y2="236.35164800000004"/>
+  <line stroke="#888888" x1="429.50000000000006" x2="464.50000000000006" y1="236.35164800000004" y2="236.35164800000004"/>
+  <line stroke="#888888" x1="464.50000000000006" x2="464.50000000000006" y1="236.35164800000004" y2="254.35164800000007"/>
+  <line stroke="#888888" x1="464.50000000000006" x2="429.50000000000006" y1="254.35164800000007" y2="254.35164800000007"/>
+  <line stroke="#888888" x1="482.50000000000006" x2="482.50000000000006" y1="216.10164800000004" y2="213.10164800000004"/>
+  <line stroke="#888888" x1="482.50000000000006" x2="485.50000000000006" y1="213.10164800000004" y2="213.10164800000004"/>
+  <line stroke="#888888" x1="485.50000000000006" x2="485.50000000000006" y1="213.10164800000004" y2="216.10164800000004"/>
+  <line stroke="#888888" x1="485.50000000000006" x2="482.50000000000006" y1="216.10164800000004" y2="216.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="215.10164800000004" y2="214.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="214.10164800000004" y2="214.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="214.10164800000004" y2="215.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="215.10164800000004" y2="215.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="217.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="216.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="216.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="217.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="217.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="216.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="216.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="217.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="220.101648" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="219.10164800000004" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="219.10164800000004" y2="220.101648"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="220.101648" y2="220.101648"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="220.101648" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="219.10164800000004" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="219.10164800000004" y2="220.101648"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="220.101648" y2="220.101648"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="222.601648" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="221.60164800000004" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="221.60164800000004" y2="222.601648"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="222.601648" y2="222.601648"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="222.601648" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="221.60164800000004" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="221.60164800000004" y2="222.601648"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="222.601648" y2="222.601648"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="225.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="224.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="224.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="225.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="225.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="224.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="224.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="225.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="227.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="226.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="226.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="227.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="227.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="226.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="226.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="227.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="230.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="229.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="229.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="230.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="230.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="229.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="229.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="230.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="232.60164800000004" y2="231.601648"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="231.601648" y2="231.601648"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="231.601648" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="232.60164800000004" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="232.60164800000004" y2="231.601648"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="231.601648" y2="231.601648"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="231.601648" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="232.60164800000004" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="235.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="234.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="234.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="235.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="235.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="234.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="234.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="235.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="237.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="236.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="236.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="237.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="237.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="236.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="236.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="237.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="240.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="239.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="239.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="240.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="240.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="239.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="239.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="240.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="242.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="241.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="241.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="242.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="242.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="241.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="241.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="242.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="245.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="244.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="244.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="245.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="245.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="244.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="244.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="245.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="247.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="246.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="246.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="247.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="247.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="246.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="246.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="247.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="250.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="249.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="249.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="250.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="250.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="249.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="249.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="250.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="252.60164800000004" y2="251.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="251.60164800000004" y2="251.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="251.60164800000004" y2="252.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="252.60164800000004" y2="252.60164800000004"/>
+  <line stroke="#888888" x1="502.50000000000006" x2="502.50000000000006" y1="253.60164800000004" y2="250.60164800000004"/>
+  <line stroke="#888888" x1="502.50000000000006" x2="505.50000000000006" y1="250.60164800000004" y2="250.60164800000004"/>
+  <line stroke="#888888" x1="505.50000000000006" x2="505.50000000000006" y1="250.60164800000004" y2="253.60164800000004"/>
+  <line stroke="#888888" x1="505.50000000000006" x2="502.50000000000006" y1="253.60164800000004" y2="253.60164800000004"/>
+  <line stroke="#888888" x1="498.25000000000006" x2="489.75000000000006" y1="210.60164800000004" y2="210.60164800000004"/>
+  <line stroke="#888888" x1="489.75000000000006" x2="489.75000000000006" y1="210.60164800000004" y2="210.10164800000004"/>
+  <line stroke="#888888" x1="489.75000000000006" x2="498.25000000000006" y1="210.10164800000004" y2="210.10164800000004"/>
+  <line stroke="#888888" x1="498.25000000000006" x2="498.25000000000006" y1="210.10164800000004" y2="210.60164800000004"/>
+  <line stroke="#888888" x1="489.75000000000006" x2="498.25000000000006" y1="258.35164800000007" y2="258.35164800000007"/>
+  <line stroke="#888888" x1="498.25000000000006" x2="498.25000000000006" y1="258.35164800000007" y2="258.85164800000007"/>
+  <line stroke="#888888" x1="498.25000000000006" x2="489.75000000000006" y1="258.85164800000007" y2="258.85164800000007"/>
+  <line stroke="#888888" x1="489.75000000000006" x2="489.75000000000006" y1="258.85164800000007" y2="258.35164800000007"/>
+  <line stroke="#888888" x1="521.0000000000001" x2="521.0000000000001" y1="253.85164800000004" y2="240.85164800000004"/>
+  <line stroke="#888888" x1="521.0000000000001" x2="551.0000000000001" y1="240.85164800000004" y2="240.85164800000004"/>
+  <line stroke="#888888" x1="551.0000000000001" x2="551.0000000000001" y1="240.85164800000004" y2="253.85164800000004"/>
+  <line stroke="#888888" x1="551.0000000000001" x2="521.0000000000001" y1="253.85164800000004" y2="253.85164800000004"/>
+  <line stroke="#888888" x1="528.0681818181818" x2="516.6590909090909" y1="208.35164800000004" y2="208.35164800000004"/>
+  <line stroke="#888888" x1="516.6590909090909" x2="516.6590909090909" y1="208.35164800000004" y2="207.85164800000004"/>
+  <line stroke="#888888" x1="516.6590909090909" x2="528.0681818181818" y1="207.85164800000004" y2="207.85164800000004"/>
+  <line stroke="#888888" x1="528.0681818181818" x2="528.0681818181818" y1="207.85164800000004" y2="208.35164800000004"/>
+  <line stroke="#888888" x1="555.3409090909091" x2="543.9318181818182" y1="208.35164800000004" y2="208.35164800000004"/>
+  <line stroke="#888888" x1="543.9318181818182" x2="543.9318181818182" y1="208.35164800000004" y2="207.85164800000004"/>
+  <line stroke="#888888" x1="543.9318181818182" x2="555.3409090909091" y1="207.85164800000004" y2="207.85164800000004"/>
+  <line stroke="#888888" x1="555.3409090909091" x2="555.3409090909091" y1="207.85164800000004" y2="208.35164800000004"/>
+  <line stroke="#888888" x1="558.25" x2="558.25" y1="225.28346618181823" y2="213.69255709090913"/>
+  <line stroke="#888888" x1="558.25" x2="558.75" y1="213.69255709090913" y2="213.69255709090913"/>
+  <line stroke="#888888" x1="558.75" x2="558.75" y1="213.69255709090913" y2="225.28346618181823"/>
+  <line stroke="#888888" x1="558.75" x2="558.25" y1="225.28346618181823" y2="225.28346618181823"/>
+  <line stroke="#888888" x1="558.25" x2="558.25" y1="253.01073890909095" y2="241.41982981818185"/>
+  <line stroke="#888888" x1="558.25" x2="558.75" y1="241.41982981818185" y2="241.41982981818185"/>
+  <line stroke="#888888" x1="558.75" x2="558.75" y1="241.41982981818185" y2="253.01073890909095"/>
+  <line stroke="#888888" x1="558.75" x2="558.25" y1="253.01073890909095" y2="253.01073890909095"/>
+  <line stroke="#888888" x1="398.50000000000006" x2="398.50000000000006" y1="216.10164800000004" y2="213.10164800000004"/>
+  <line stroke="#888888" x1="398.50000000000006" x2="401.50000000000006" y1="213.10164800000004" y2="213.10164800000004"/>
+  <line stroke="#888888" x1="401.50000000000006" x2="401.50000000000006" y1="213.10164800000004" y2="216.10164800000004"/>
+  <line stroke="#888888" x1="401.50000000000006" x2="398.50000000000006" y1="216.10164800000004" y2="216.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="215.10164800000004" y2="214.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="214.10164800000004" y2="214.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="214.10164800000004" y2="215.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="215.10164800000004" y2="215.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="217.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="216.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="216.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="217.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="217.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="216.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="216.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="217.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="220.101648" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="219.10164800000004" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="219.10164800000004" y2="220.101648"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="220.101648" y2="220.101648"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="220.101648" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="219.10164800000004" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="219.10164800000004" y2="220.101648"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="220.101648" y2="220.101648"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="222.601648" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="221.60164800000004" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="221.60164800000004" y2="222.601648"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="222.601648" y2="222.601648"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="222.601648" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="221.60164800000004" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="221.60164800000004" y2="222.601648"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="222.601648" y2="222.601648"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="225.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="224.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="224.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="225.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="225.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="224.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="224.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="225.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="227.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="226.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="226.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="227.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="227.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="226.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="226.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="227.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="230.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="229.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="229.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="230.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="230.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="229.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="229.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="230.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="232.60164800000004" y2="231.601648"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="231.601648" y2="231.601648"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="231.601648" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="232.60164800000004" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="232.60164800000004" y2="231.601648"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="231.601648" y2="231.601648"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="231.601648" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="232.60164800000004" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="235.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="234.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="234.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="235.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="235.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="234.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="234.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="235.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="237.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="236.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="236.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="237.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="237.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="236.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="236.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="237.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="240.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="239.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="239.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="240.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="240.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="239.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="239.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="240.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="242.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="241.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="241.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="242.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="242.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="241.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="241.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="242.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="245.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="244.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="244.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="245.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="245.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="244.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="244.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="245.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="247.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="246.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="246.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="247.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="247.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="246.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="246.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="247.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="250.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="249.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="249.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="250.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="250.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="249.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="249.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="250.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="252.60164800000004" y2="251.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="251.60164800000004" y2="251.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="251.60164800000004" y2="252.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="252.60164800000004" y2="252.60164800000004"/>
+  <line stroke="#888888" x1="418.5" x2="418.5" y1="253.60164800000004" y2="250.60164800000004"/>
+  <line stroke="#888888" x1="418.5" x2="421.50000000000006" y1="250.60164800000004" y2="250.60164800000004"/>
+  <line stroke="#888888" x1="421.50000000000006" x2="421.50000000000006" y1="250.60164800000004" y2="253.60164800000004"/>
+  <line stroke="#888888" x1="421.50000000000006" x2="418.5" y1="253.60164800000004" y2="253.60164800000004"/>
+  <line stroke="#888888" x1="414.25" x2="405.75000000000006" y1="210.60164800000004" y2="210.60164800000004"/>
+  <line stroke="#888888" x1="405.75000000000006" x2="405.75000000000006" y1="210.60164800000004" y2="210.10164800000004"/>
+  <line stroke="#888888" x1="405.75000000000006" x2="414.25" y1="210.10164800000004" y2="210.10164800000004"/>
+  <line stroke="#888888" x1="414.25" x2="414.25" y1="210.10164800000004" y2="210.60164800000004"/>
+  <line stroke="#888888" x1="405.75000000000006" x2="414.25" y1="258.35164800000007" y2="258.35164800000007"/>
+  <line stroke="#888888" x1="414.25" x2="414.25" y1="258.35164800000007" y2="258.85164800000007"/>
+  <line stroke="#888888" x1="414.25" x2="405.75000000000006" y1="258.85164800000007" y2="258.85164800000007"/>
+  <line stroke="#888888" x1="405.75000000000006" x2="405.75000000000006" y1="258.85164800000007" y2="258.35164800000007"/>
+  <line stroke="#888888" x1="390.50000000000006" x2="395.5" y1="213.94255709090913" y2="213.94255709090913"/>
+  <line stroke="#888888" x1="395.5" x2="395.5" y1="213.94255709090913" y2="225.03346618181823"/>
+  <line stroke="#888888" x1="395.5" x2="390.50000000000006" y1="225.03346618181823" y2="225.03346618181823"/>
+  <line stroke="#888888" x1="390.50000000000006" x2="395.5" y1="241.66982981818185" y2="241.66982981818185"/>
+  <line stroke="#888888" x1="395.5" x2="395.5" y1="241.66982981818185" y2="252.76073890909095"/>
+  <line stroke="#888888" x1="395.5" x2="390.50000000000006" y1="252.76073890909095" y2="252.76073890909095"/>
+  <line stroke="#888888" x1="416.75000000000006" x2="420.25000000000006" y1="186.85164800000004" y2="186.85164800000004"/>
+  <line stroke="#888888" x1="420.25000000000006" x2="420.25000000000006" y1="186.85164800000004" y2="194.85164800000004"/>
+  <line stroke="#888888" x1="420.25000000000006" x2="416.75000000000006" y1="194.85164800000004" y2="194.85164800000004"/>
+  <line opacity="0.25" stroke="#0000ff" x1="586.0000000000001" x2="646.0" y1="172.65137327679875" y2="172.65137327679875"/>
+  <line stroke="#000000" x1="646.0" x2="646.0" y1="209.05192272320133" y2="172.65137327679875"/>
+  <line stroke="#000000" x1="586.0000000000001" x2="646.0" y1="209.05192272320133" y2="209.05192272320133"/>
+  <line stroke="#000000" x1="586.0000000000001" x2="586.0000000000001" y1="172.65137327679875" y2="209.05192272320133"/>
+  <line opacity="0.25" stroke="#0000ff" x1="646.0" x2="586.0000000000001" y1="148.65137327679872" y2="148.65137327679872"/>
+  <line opacity="0.5" stroke="#0000ff" x1="646.0" x2="646.0" y1="148.65137327679872" y2="172.65137327679875"/>
+  <line opacity="0.5" stroke="#0000ff" x1="586.0000000000001" x2="586.0000000000001" y1="172.65137327679875" y2="148.65137327679872"/>
+  <line stroke="#000000" x1="586.0000000000001" x2="586.0000000000001" y1="112.25082383039613" y2="148.65137327679872"/>
+  <line stroke="#000000" x1="646.0" x2="586.0000000000001" y1="112.25082383039613" y2="112.25082383039613"/>
+  <line stroke="#000000" x1="646.0" x2="646.0" y1="148.65137327679872" y2="112.25082383039613"/>
+  <line stroke="#000000" x1="656.0" x2="646.0" y1="148.65137327679872" y2="148.65137327679872"/>
+  <line stroke="#000000" x1="656.0" x2="656.0" y1="172.65137327679875" y2="148.65137327679872"/>
+  <line stroke="#000000" x1="646.0" x2="656.0" y1="172.65137327679875" y2="172.65137327679875"/>
+  <line stroke="#000000" x1="576.0000000000001" x2="586.0000000000001" y1="172.65137327679875" y2="172.65137327679875"/>
+  <line stroke="#000000" x1="576.0000000000001" x2="576.0000000000001" y1="148.65137327679872" y2="172.65137327679875"/>
+  <line stroke="#000000" x1="586.0000000000001" x2="576.0000000000001" y1="148.65137327679872" y2="148.65137327679872"/>
+  <line stroke="#888888" x1="603.5000000000001" x2="614.5000000000001" y1="154.15137327679875" y2="154.15137327679875"/>
+  <line stroke="#888888" x1="614.5000000000001" x2="614.5000000000001" y1="154.15137327679875" y2="167.15137327679875"/>
+  <line stroke="#888888" x1="614.5000000000001" x2="603.5000000000001" y1="167.15137327679875" y2="167.15137327679875"/>
+  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="167.15137327679875" y2="154.15137327679875"/>
+  <line stroke="#888888" x1="635.0000000000001" x2="641.0000000000001" y1="155.65137327679872" y2="155.65137327679872"/>
+  <line stroke="#888888" x1="641.0000000000001" x2="641.0000000000001" y1="155.65137327679872" y2="165.65137327679875"/>
+  <line stroke="#888888" x1="641.0000000000001" x2="635.0000000000001" y1="165.65137327679875" y2="165.65137327679875"/>
+  <line stroke="#888888" x1="635.0000000000001" x2="635.0000000000001" y1="165.65137327679875" y2="155.65137327679872"/>
+  <line stroke="#888888" x1="653.5000000000001" x2="648.5000000000001" y1="164.65137327679872" y2="164.65137327679872"/>
+  <line stroke="#888888" x1="648.5000000000001" x2="648.5000000000001" y1="164.65137327679872" y2="156.65137327679875"/>
+  <line stroke="#888888" x1="648.5000000000001" x2="653.5000000000001" y1="156.65137327679875" y2="156.65137327679875"/>
+  <line stroke="#888888" x1="578.5000000000001" x2="583.5" y1="156.65137327679875" y2="156.65137327679875"/>
+  <line stroke="#888888" x1="583.5" x2="583.5" y1="156.65137327679875" y2="164.65137327679872"/>
+  <line stroke="#888888" x1="583.5" x2="578.5000000000001" y1="164.65137327679872" y2="164.65137327679872"/>
+</svg>
diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-autofold-default.dxf b/rocolib/output/BoatWithServoMountAndStack/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..50ce0626e213a3df044a907f3475469c19c6c499
--- /dev/null
+++ b/rocolib/output/BoatWithServoMountAndStack/graph-autofold-default.dxf
@@ -0,0 +1,11028 @@
+  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
+0
+ 70
+0
+ 62
+1
+  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
+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
+45
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+100.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+0.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+100.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+100.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+50.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+100.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+50.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+0.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+210.00000000000003
+ 20
+190.851648
+ 30
+0.0
+ 11
+110.00000000000001
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+210.00000000000003
+ 20
+190.851648
+ 30
+0.0
+ 11
+210.00000000000003
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+160.00000000000003
+ 20
+190.851648
+ 30
+0.0
+ 11
+210.00000000000003
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.00000000000001
+ 20
+190.851648
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.00000000000001
+ 20
+190.851648
+ 30
+0.0
+ 11
+110.00000000000001
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+323.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+323.99999999999994
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+273.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+273.99999999999994
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+299.0
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+273.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+323.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+299.0
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+299.0
+ 20
+-7.134502766348305e-08
+ 30
+0.0
+ 11
+273.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+265.51320686867433
+ 20
+33.971564700181574
+ 30
+0.0
+ 11
+259.75660343433714
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+299.0
+ 20
+-7.134502766348305e-08
+ 30
+0.0
+ 11
+265.51320686867433
+ 21
+33.971564700181574
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+273.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+259.75660343433714
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+273.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.7566034343372
+ 20
+39.81150361779141
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+253.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+273.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+251.26659817846704
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+251.26659817846704
+ 20
+45.65144253540121
+ 30
+0.0
+ 11
+251.26659817846704
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.99999999999997
+ 20
+45.65144253540121
+ 30
+0.0
+ 11
+251.26659817846704
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+254.00000000000003
+ 20
+327.851648
+ 30
+0.0
+ 11
+274.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+254.00000000000006
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+274.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+254.00000000000006
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+254.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.00000000000006
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+259.75660343433725
+ 21
+341.8917923822086
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+259.75660343433725
+ 20
+341.8917923822086
+ 30
+0.0
+ 11
+274.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+299.00000000000006
+ 20
+381.7032960713451
+ 30
+0.0
+ 11
+274.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+265.51320686867444
+ 20
+347.7317312998184
+ 30
+0.0
+ 11
+299.00000000000006
+ 21
+381.7032960713451
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.75660343433725
+ 20
+341.8917923822087
+ 30
+0.0
+ 11
+265.51320686867444
+ 21
+347.7317312998184
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+274.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+299.00000000000006
+ 21
+327.85164799999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+299.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+324.00000000000006
+ 21
+327.85164799999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+299.00000000000006
+ 20
+381.7032960713451
+ 30
+0.0
+ 11
+324.00000000000006
+ 21
+327.85164799999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+332.4867931313257
+ 20
+347.7317312998184
+ 30
+0.0
+ 11
+338.2433965656628
+ 21
+341.8917923822086
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+299.00000000000006
+ 20
+381.7032960713451
+ 30
+0.0
+ 11
+332.4867931313257
+ 21
+347.7317312998184
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+324.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+338.2433965656628
+ 21
+341.8917923822086
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+324.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+338.2433965656628
+ 20
+341.8917923822086
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+344.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+324.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+346.733401821533
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+346.733401821533
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+346.733401821533
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.00000000000006
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+346.733401821533
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+343.9999999999999
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+323.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+343.9999999999999
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+323.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+343.9999999999999
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+343.9999999999999
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+343.9999999999999
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+338.2433965656627
+ 21
+39.81150361779146
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+338.2433965656627
+ 20
+39.81150361779146
+ 30
+0.0
+ 11
+323.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+298.9999999999999
+ 20
+-7.134491397664533e-08
+ 30
+0.0
+ 11
+323.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+332.48679313132556
+ 20
+33.971564700181666
+ 30
+0.0
+ 11
+298.9999999999999
+ 21
+-7.134491397664533e-08
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+338.2433965656627
+ 20
+39.81150361779146
+ 30
+0.0
+ 11
+332.48679313132556
+ 21
+33.971564700181666
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+346.73340182153277
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+343.9999999999999
+ 21
+45.651442535401266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+346.73340182153277
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+346.73340182153277
+ 21
+45.651442535401266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+343.9999999999999
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+346.73340182153277
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.0
+ 20
+203.85164800000007
+ 30
+0.0
+ 11
+343.9999999999999
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+344.0
+ 20
+203.85164800000007
+ 30
+0.0
+ 11
+344.0
+ 21
+227.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.0
+ 21
+227.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+343.9999999999999
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+343.9999999999999
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+377.9999999999999
+ 20
+203.85164800000004
+ 30
+0.0
+ 11
+344.0
+ 21
+203.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+377.9999999999999
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+377.9999999999999
+ 21
+203.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+344.0
+ 20
+227.85164800000007
+ 30
+0.0
+ 11
+377.9999999999999
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.0
+ 20
+227.85164800000007
+ 30
+0.0
+ 11
+344.0
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+377.99999999999994
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+377.9999999999999
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+344.0
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.0
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+344.0
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+377.99999999999994
+ 20
+271.851648
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+344.0
+ 20
+271.851648
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.0
+ 20
+271.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+377.99999999999994
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+377.99999999999994
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+378.0
+ 20
+301.85164800000007
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.00000000000006
+ 20
+301.85164800000007
+ 30
+0.0
+ 11
+378.0
+ 21
+301.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.00000000000006
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+301.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+251.2665981784671
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+251.2665981784671
+ 20
+327.851648
+ 30
+0.0
+ 11
+251.2665981784671
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.00000000000003
+ 20
+327.851648
+ 30
+0.0
+ 11
+251.2665981784671
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.00000000000003
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+254.00000000000003
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+203.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+203.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.00000000000003
+ 20
+327.851648
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.00000000000003
+ 20
+203.85164800000004
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.00000000000003
+ 20
+203.85164800000004
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+203.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+220.00000000000003
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.00000000000003
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.00000000000003
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+220.00000000000003
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.00000000000003
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.00000000000003
+ 20
+271.851648
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+220.00000000000003
+ 20
+271.851648
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.00000000000003
+ 20
+271.851648
+ 30
+0.0
+ 11
+220.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.00000000000003
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+254.00000000000003
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+220.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.00000000000006
+ 20
+301.85164800000007
+ 30
+0.0
+ 11
+254.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.00000000000006
+ 20
+301.85164800000007
+ 30
+0.0
+ 11
+254.00000000000006
+ 21
+301.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.00000000000006
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+220.00000000000006
+ 21
+301.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+265.40786804847943
+ 20
+37.35482121234264
+ 30
+0.0
+ 11
+263.1379966274785
+ 21
+39.65755243235416
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+263.1379966274785
+ 20
+39.65755243235416
+ 30
+0.0
+ 11
+262.7819117133369
+ 21
+39.30654882279893
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+262.7819117133369
+ 20
+39.30654882279893
+ 30
+0.0
+ 11
+265.0517831343379
+ 21
+37.00381760278743
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+265.0517831343379
+ 20
+37.00381760278743
+ 30
+0.0
+ 11
+265.40786804847943
+ 21
+37.35482121234264
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+251.94994863385028
+ 20
+48.384844356934146
+ 30
+0.0
+ 11
+253.31664954461675
+ 21
+48.384844356934146
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.31664954461675
+ 20
+48.384844356934146
+ 30
+0.0
+ 11
+253.31664954461675
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.31664954461675
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+251.94994863385028
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+263.13799662747857
+ 20
+342.0457435676459
+ 30
+0.0
+ 11
+265.4078680484795
+ 21
+344.34847478765744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+265.4078680484795
+ 20
+344.34847478765744
+ 30
+0.0
+ 11
+265.051783134338
+ 21
+344.69947839721266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+265.051783134338
+ 20
+344.69947839721266
+ 30
+0.0
+ 11
+262.781911713337
+ 21
+342.39674717720106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+262.781911713337
+ 20
+342.39674717720106
+ 30
+0.0
+ 11
+263.13799662747857
+ 21
+342.0457435676459
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+332.59213195152057
+ 20
+344.34847478765744
+ 30
+0.0
+ 11
+334.8620033725215
+ 21
+342.0457435676459
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+334.8620033725215
+ 20
+342.0457435676459
+ 30
+0.0
+ 11
+335.21808828666303
+ 21
+342.39674717720106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+335.21808828666303
+ 20
+342.39674717720106
+ 30
+0.0
+ 11
+332.9482168656622
+ 21
+344.69947839721266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+332.9482168656622
+ 20
+344.69947839721266
+ 30
+0.0
+ 11
+332.59213195152057
+ 21
+344.34847478765744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+346.0500513661498
+ 20
+333.31845164306594
+ 30
+0.0
+ 11
+344.6833504553833
+ 21
+333.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.6833504553833
+ 20
+333.31845164306594
+ 30
+0.0
+ 11
+344.6833504553833
+ 21
+330.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.6833504553833
+ 20
+330.585049821533
+ 30
+0.0
+ 11
+346.0500513661498
+ 21
+330.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+334.8620033725213
+ 20
+39.657552432354215
+ 30
+0.0
+ 11
+332.59213195152034
+ 21
+37.354821212342706
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+332.59213195152034
+ 20
+37.354821212342706
+ 30
+0.0
+ 11
+332.948216865662
+ 21
+37.00381760278748
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+332.948216865662
+ 20
+37.00381760278748
+ 30
+0.0
+ 11
+335.21808828666286
+ 21
+39.306548822798995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+335.21808828666286
+ 20
+39.306548822798995
+ 30
+0.0
+ 11
+334.8620033725213
+ 21
+39.657552432354215
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+346.0500513661496
+ 20
+51.11824617846714
+ 30
+0.0
+ 11
+344.68335045538305
+ 21
+51.11824617846714
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.68335045538305
+ 20
+51.11824617846714
+ 30
+0.0
+ 11
+344.68335045538305
+ 21
+48.3848443569342
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.68335045538305
+ 20
+48.3848443569342
+ 30
+0.0
+ 11
+346.0500513661496
+ 21
+48.3848443569342
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+366.91666666666663
+ 20
+211.60164800000004
+ 30
+0.0
+ 11
+355.08333333333326
+ 21
+211.60164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+355.08333333333326
+ 20
+211.60164800000007
+ 30
+0.0
+ 11
+355.08333333333326
+ 21
+211.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+355.08333333333326
+ 20
+211.10164800000004
+ 30
+0.0
+ 11
+366.91666666666663
+ 21
+211.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+366.91666666666663
+ 20
+211.101648
+ 30
+0.0
+ 11
+366.91666666666663
+ 21
+211.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+354.99999999999994
+ 20
+246.85164800000004
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+242.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+354.99999999999994
+ 20
+242.85164800000004
+ 30
+0.0
+ 11
+367.0
+ 21
+242.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+367.0
+ 20
+242.85164800000004
+ 30
+0.0
+ 11
+367.0
+ 21
+246.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+367.0
+ 20
+246.85164800000004
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+246.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+356.5
+ 20
+234.85164800000004
+ 30
+0.0
+ 11
+356.5
+ 21
+230.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+356.5
+ 20
+230.85164800000004
+ 30
+0.0
+ 11
+365.5
+ 21
+230.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+365.5
+ 20
+230.85164800000004
+ 30
+0.0
+ 11
+365.5
+ 21
+234.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+365.5
+ 20
+234.85164800000004
+ 30
+0.0
+ 11
+356.5
+ 21
+234.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+354.99999999999994
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+248.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+354.99999999999994
+ 20
+248.35164800000004
+ 30
+0.0
+ 11
+367.0
+ 21
+248.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+367.0
+ 20
+248.35164800000004
+ 30
+0.0
+ 11
+367.0
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+367.0
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+354.99999999999994
+ 20
+276.851648
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+272.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+354.99999999999994
+ 20
+272.851648
+ 30
+0.0
+ 11
+367.0
+ 21
+272.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+367.0
+ 20
+272.851648
+ 30
+0.0
+ 11
+367.0
+ 21
+276.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+367.0
+ 20
+276.851648
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+276.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+355.3333333333333
+ 20
+299.351648
+ 30
+0.0
+ 11
+355.3333333333333
+ 21
+294.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+355.3333333333333
+ 20
+294.35164800000007
+ 30
+0.0
+ 11
+366.6666666666667
+ 21
+294.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+366.6666666666667
+ 20
+294.35164800000007
+ 30
+0.0
+ 11
+366.6666666666667
+ 21
+299.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+251.94994863385034
+ 20
+330.585049821533
+ 30
+0.0
+ 11
+253.3166495446168
+ 21
+330.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.3166495446168
+ 20
+330.585049821533
+ 30
+0.0
+ 11
+253.3166495446168
+ 21
+333.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.3166495446168
+ 20
+333.31845164306594
+ 30
+0.0
+ 11
+251.94994863385034
+ 21
+333.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+242.91666666666669
+ 20
+211.60164800000004
+ 30
+0.0
+ 11
+231.08333333333334
+ 21
+211.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.08333333333334
+ 20
+211.60164800000004
+ 30
+0.0
+ 11
+231.08333333333334
+ 21
+211.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.08333333333334
+ 20
+211.101648
+ 30
+0.0
+ 11
+242.91666666666669
+ 21
+211.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+242.91666666666669
+ 20
+211.101648
+ 30
+0.0
+ 11
+242.91666666666669
+ 21
+211.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.00000000000003
+ 20
+246.85164800000004
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+242.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.00000000000003
+ 20
+242.85164800000004
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+242.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.00000000000003
+ 20
+242.85164800000004
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+246.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.00000000000003
+ 20
+246.85164800000004
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+246.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+232.50000000000003
+ 20
+234.85164800000004
+ 30
+0.0
+ 11
+232.50000000000003
+ 21
+230.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+232.50000000000003
+ 20
+230.85164800000004
+ 30
+0.0
+ 11
+241.50000000000003
+ 21
+230.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+241.50000000000003
+ 20
+230.85164800000004
+ 30
+0.0
+ 11
+241.50000000000003
+ 21
+234.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+241.50000000000003
+ 20
+234.85164800000004
+ 30
+0.0
+ 11
+232.50000000000003
+ 21
+234.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.00000000000003
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+248.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.00000000000003
+ 20
+248.35164800000004
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+248.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.00000000000003
+ 20
+248.35164800000004
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.00000000000003
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.00000000000003
+ 20
+276.851648
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+272.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.00000000000003
+ 20
+272.851648
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+272.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.00000000000003
+ 20
+272.851648
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+276.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.00000000000003
+ 20
+276.851648
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+276.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.3333333333334
+ 20
+299.351648
+ 30
+0.0
+ 11
+231.3333333333334
+ 21
+294.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.3333333333334
+ 20
+294.35164800000007
+ 30
+0.0
+ 11
+242.6666666666667
+ 21
+294.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+242.6666666666667
+ 20
+294.35164800000007
+ 30
+0.0
+ 11
+242.6666666666667
+ 21
+299.351648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+422.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+482.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+482.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+422.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+422.00000000000006
+ 20
+171.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+482.00000000000006
+ 20
+171.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+171.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+482.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+171.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+489.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+489.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+489.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+482.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+489.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+482.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+422.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+422.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+506.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+506.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+506.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+482.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+506.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.0
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+506.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.0
+ 20
+263.851648
+ 30
+0.0
+ 11
+566.0
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+506.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+566.0
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+422.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+398.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+398.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+398.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+398.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+388.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+398.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+388.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+388.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+398.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+388.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+415.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+415.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+415.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+422.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+415.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+471.0909090909092
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+474.5909090909091
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+474.5909090909091
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+471.0909090909092
+ 21
+177.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+471.0909090909092
+ 20
+177.101648
+ 30
+0.0
+ 11
+460.18181818181824
+ 21
+177.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+460.18181818181824
+ 20
+177.101648
+ 30
+0.0
+ 11
+456.68181818181824
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+456.68181818181824
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+460.18181818181824
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+443.8181818181818
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+447.31818181818187
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+447.31818181818187
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+443.8181818181818
+ 21
+177.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+443.8181818181818
+ 20
+177.101648
+ 30
+0.0
+ 11
+432.909090909091
+ 21
+177.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+432.909090909091
+ 20
+177.101648
+ 30
+0.0
+ 11
+429.409090909091
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+429.409090909091
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+432.909090909091
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+487.25000000000006
+ 20
+194.85164800000004
+ 30
+0.0
+ 11
+483.75000000000006
+ 21
+194.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.75000000000006
+ 20
+194.85164800000004
+ 30
+0.0
+ 11
+483.75000000000006
+ 21
+186.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.75000000000006
+ 20
+186.85164800000004
+ 30
+0.0
+ 11
+487.25000000000006
+ 21
+186.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+429.50000000000006
+ 20
+254.35164800000007
+ 30
+0.0
+ 11
+429.50000000000006
+ 21
+236.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+429.50000000000006
+ 20
+236.35164800000004
+ 30
+0.0
+ 11
+464.50000000000006
+ 21
+236.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+464.50000000000006
+ 20
+236.35164800000004
+ 30
+0.0
+ 11
+464.50000000000006
+ 21
+254.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+464.50000000000006
+ 20
+254.35164800000007
+ 30
+0.0
+ 11
+429.50000000000006
+ 21
+254.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+482.50000000000006
+ 20
+216.10164800000004
+ 30
+0.0
+ 11
+482.50000000000006
+ 21
+213.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+482.50000000000006
+ 20
+213.10164800000004
+ 30
+0.0
+ 11
+485.50000000000006
+ 21
+213.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+485.50000000000006
+ 20
+213.10164800000004
+ 30
+0.0
+ 11
+485.50000000000006
+ 21
+216.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+485.50000000000006
+ 20
+216.10164800000004
+ 30
+0.0
+ 11
+482.50000000000006
+ 21
+216.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+215.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+214.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+214.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+214.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+214.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+215.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+215.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+215.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+503.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+504.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+252.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+251.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+483.50000000000006
+ 20
+251.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+251.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+251.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+252.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.50000000000006
+ 20
+252.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+252.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+502.50000000000006
+ 20
+253.60164800000004
+ 30
+0.0
+ 11
+502.50000000000006
+ 21
+250.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+502.50000000000006
+ 20
+250.60164800000004
+ 30
+0.0
+ 11
+505.50000000000006
+ 21
+250.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+505.50000000000006
+ 20
+250.60164800000004
+ 30
+0.0
+ 11
+505.50000000000006
+ 21
+253.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+505.50000000000006
+ 20
+253.60164800000004
+ 30
+0.0
+ 11
+502.50000000000006
+ 21
+253.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+498.25000000000006
+ 20
+210.60164800000004
+ 30
+0.0
+ 11
+489.75000000000006
+ 21
+210.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+489.75000000000006
+ 20
+210.60164800000004
+ 30
+0.0
+ 11
+489.75000000000006
+ 21
+210.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+489.75000000000006
+ 20
+210.10164800000004
+ 30
+0.0
+ 11
+498.25000000000006
+ 21
+210.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+498.25000000000006
+ 20
+210.10164800000004
+ 30
+0.0
+ 11
+498.25000000000006
+ 21
+210.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+489.75000000000006
+ 20
+258.35164800000007
+ 30
+0.0
+ 11
+498.25000000000006
+ 21
+258.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+498.25000000000006
+ 20
+258.35164800000007
+ 30
+0.0
+ 11
+498.25000000000006
+ 21
+258.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+498.25000000000006
+ 20
+258.85164800000007
+ 30
+0.0
+ 11
+489.75000000000006
+ 21
+258.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+489.75000000000006
+ 20
+258.85164800000007
+ 30
+0.0
+ 11
+489.75000000000006
+ 21
+258.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+521.0000000000001
+ 20
+253.85164800000004
+ 30
+0.0
+ 11
+521.0000000000001
+ 21
+240.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+521.0000000000001
+ 20
+240.85164800000004
+ 30
+0.0
+ 11
+551.0000000000001
+ 21
+240.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+551.0000000000001
+ 20
+240.85164800000004
+ 30
+0.0
+ 11
+551.0000000000001
+ 21
+253.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+551.0000000000001
+ 20
+253.85164800000004
+ 30
+0.0
+ 11
+521.0000000000001
+ 21
+253.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+528.0681818181818
+ 20
+208.35164800000004
+ 30
+0.0
+ 11
+516.6590909090909
+ 21
+208.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+516.6590909090909
+ 20
+208.35164800000004
+ 30
+0.0
+ 11
+516.6590909090909
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+516.6590909090909
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+528.0681818181818
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+528.0681818181818
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+528.0681818181818
+ 21
+208.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+555.3409090909091
+ 20
+208.35164800000004
+ 30
+0.0
+ 11
+543.9318181818182
+ 21
+208.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+543.9318181818182
+ 20
+208.35164800000004
+ 30
+0.0
+ 11
+543.9318181818182
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+543.9318181818182
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+555.3409090909091
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+555.3409090909091
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+555.3409090909091
+ 21
+208.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+558.25
+ 20
+225.28346618181823
+ 30
+0.0
+ 11
+558.25
+ 21
+213.69255709090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+558.25
+ 20
+213.69255709090913
+ 30
+0.0
+ 11
+558.75
+ 21
+213.69255709090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+558.75
+ 20
+213.69255709090913
+ 30
+0.0
+ 11
+558.75
+ 21
+225.28346618181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+558.75
+ 20
+225.28346618181823
+ 30
+0.0
+ 11
+558.25
+ 21
+225.28346618181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+558.25
+ 20
+253.01073890909095
+ 30
+0.0
+ 11
+558.25
+ 21
+241.41982981818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+558.25
+ 20
+241.41982981818185
+ 30
+0.0
+ 11
+558.75
+ 21
+241.41982981818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+558.75
+ 20
+241.41982981818185
+ 30
+0.0
+ 11
+558.75
+ 21
+253.01073890909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+558.75
+ 20
+253.01073890909095
+ 30
+0.0
+ 11
+558.25
+ 21
+253.01073890909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+398.50000000000006
+ 20
+216.10164800000004
+ 30
+0.0
+ 11
+398.50000000000006
+ 21
+213.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+398.50000000000006
+ 20
+213.10164800000004
+ 30
+0.0
+ 11
+401.50000000000006
+ 21
+213.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+401.50000000000006
+ 20
+213.10164800000004
+ 30
+0.0
+ 11
+401.50000000000006
+ 21
+216.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+401.50000000000006
+ 20
+216.10164800000004
+ 30
+0.0
+ 11
+398.50000000000006
+ 21
+216.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+215.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+214.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+214.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+214.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+214.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+215.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+215.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+215.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+220.101648
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+222.601648
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+400.5
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+231.601648
+ 30
+0.0
+ 11
+400.5
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+419.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+252.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+251.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.50000000000006
+ 20
+251.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+251.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+251.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+252.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.5
+ 20
+252.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+252.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+418.5
+ 20
+253.60164800000004
+ 30
+0.0
+ 11
+418.5
+ 21
+250.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+418.5
+ 20
+250.60164800000004
+ 30
+0.0
+ 11
+421.50000000000006
+ 21
+250.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+421.50000000000006
+ 20
+250.60164800000004
+ 30
+0.0
+ 11
+421.50000000000006
+ 21
+253.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+421.50000000000006
+ 20
+253.60164800000004
+ 30
+0.0
+ 11
+418.5
+ 21
+253.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+414.25
+ 20
+210.60164800000004
+ 30
+0.0
+ 11
+405.75000000000006
+ 21
+210.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+405.75000000000006
+ 20
+210.60164800000004
+ 30
+0.0
+ 11
+405.75000000000006
+ 21
+210.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+405.75000000000006
+ 20
+210.10164800000004
+ 30
+0.0
+ 11
+414.25
+ 21
+210.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+414.25
+ 20
+210.10164800000004
+ 30
+0.0
+ 11
+414.25
+ 21
+210.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+405.75000000000006
+ 20
+258.35164800000007
+ 30
+0.0
+ 11
+414.25
+ 21
+258.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+414.25
+ 20
+258.35164800000007
+ 30
+0.0
+ 11
+414.25
+ 21
+258.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+414.25
+ 20
+258.85164800000007
+ 30
+0.0
+ 11
+405.75000000000006
+ 21
+258.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+405.75000000000006
+ 20
+258.85164800000007
+ 30
+0.0
+ 11
+405.75000000000006
+ 21
+258.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+390.50000000000006
+ 20
+213.94255709090913
+ 30
+0.0
+ 11
+395.5
+ 21
+213.94255709090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+395.5
+ 20
+213.94255709090913
+ 30
+0.0
+ 11
+395.5
+ 21
+225.03346618181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+395.5
+ 20
+225.03346618181823
+ 30
+0.0
+ 11
+390.50000000000006
+ 21
+225.03346618181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+390.50000000000006
+ 20
+241.66982981818185
+ 30
+0.0
+ 11
+395.5
+ 21
+241.66982981818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+395.5
+ 20
+241.66982981818185
+ 30
+0.0
+ 11
+395.5
+ 21
+252.76073890909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+395.5
+ 20
+252.76073890909095
+ 30
+0.0
+ 11
+390.50000000000006
+ 21
+252.76073890909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+416.75000000000006
+ 20
+186.85164800000004
+ 30
+0.0
+ 11
+420.25000000000006
+ 21
+186.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.25000000000006
+ 20
+186.85164800000004
+ 30
+0.0
+ 11
+420.25000000000006
+ 21
+194.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+420.25000000000006
+ 20
+194.85164800000004
+ 30
+0.0
+ 11
+416.75000000000006
+ 21
+194.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+45
+ 10
+586.0000000000001
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+646.0
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+646.0
+ 20
+209.05192272320133
+ 30
+0.0
+ 11
+646.0
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+586.0000000000001
+ 20
+209.05192272320133
+ 30
+0.0
+ 11
+646.0
+ 21
+209.05192272320133
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+586.0000000000001
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+209.05192272320133
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+45
+ 10
+646.0
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+646.0
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+646.0
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+586.0000000000001
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+586.0000000000001
+ 20
+112.25082383039613
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+646.0
+ 20
+112.25082383039613
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+112.25082383039613
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+646.0
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+646.0
+ 21
+112.25082383039613
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+656.0
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+646.0
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+656.0
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+656.0
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+646.0
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+656.0
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+576.0000000000001
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+576.0000000000001
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+576.0000000000001
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+586.0000000000001
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+576.0000000000001
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+603.5000000000001
+ 20
+154.15137327679875
+ 30
+0.0
+ 11
+614.5000000000001
+ 21
+154.15137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+614.5000000000001
+ 20
+154.15137327679875
+ 30
+0.0
+ 11
+614.5000000000001
+ 21
+167.15137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+614.5000000000001
+ 20
+167.15137327679875
+ 30
+0.0
+ 11
+603.5000000000001
+ 21
+167.15137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+603.5000000000001
+ 20
+167.15137327679875
+ 30
+0.0
+ 11
+603.5000000000001
+ 21
+154.15137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+635.0000000000001
+ 20
+155.65137327679872
+ 30
+0.0
+ 11
+641.0000000000001
+ 21
+155.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+641.0000000000001
+ 20
+155.65137327679872
+ 30
+0.0
+ 11
+641.0000000000001
+ 21
+165.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+641.0000000000001
+ 20
+165.65137327679875
+ 30
+0.0
+ 11
+635.0000000000001
+ 21
+165.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+635.0000000000001
+ 20
+165.65137327679875
+ 30
+0.0
+ 11
+635.0000000000001
+ 21
+155.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+653.5000000000001
+ 20
+164.65137327679872
+ 30
+0.0
+ 11
+648.5000000000001
+ 21
+164.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+648.5000000000001
+ 20
+164.65137327679872
+ 30
+0.0
+ 11
+648.5000000000001
+ 21
+156.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+648.5000000000001
+ 20
+156.65137327679875
+ 30
+0.0
+ 11
+653.5000000000001
+ 21
+156.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+578.5000000000001
+ 20
+156.65137327679875
+ 30
+0.0
+ 11
+583.5
+ 21
+156.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+583.5
+ 20
+156.65137327679875
+ 30
+0.0
+ 11
+583.5
+ 21
+164.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+583.5
+ 20
+164.65137327679872
+ 30
+0.0
+ 11
+578.5000000000001
+ 21
+164.65137327679872
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-autofold-graph.dxf b/rocolib/output/BoatWithServoMountAndStack/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..9e0aab74b8fc3659953c8870b02bf96ee6e07666
--- /dev/null
+++ b/rocolib/output/BoatWithServoMountAndStack/graph-autofold-graph.dxf
@@ -0,0 +1,10938 @@
+  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
+100.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+0.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+100.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+100.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+100.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+50.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+0.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.00000000000003
+ 20
+190.851648
+ 30
+0.0
+ 11
+110.00000000000001
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.00000000000003
+ 20
+190.851648
+ 30
+0.0
+ 11
+210.00000000000003
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+190.851648
+ 30
+0.0
+ 11
+210.00000000000003
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.00000000000001
+ 20
+190.851648
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.00000000000001
+ 20
+190.851648
+ 30
+0.0
+ 11
+110.00000000000001
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+323.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+323.99999999999994
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+273.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+273.99999999999994
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+299.0
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+273.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+323.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+299.0
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+299.0
+ 20
+-7.134502766348305e-08
+ 30
+0.0
+ 11
+273.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.51320686867433
+ 20
+33.971564700181574
+ 30
+0.0
+ 11
+259.75660343433714
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+299.0
+ 20
+-7.134502766348305e-08
+ 30
+0.0
+ 11
+265.51320686867433
+ 21
+33.971564700181574
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+273.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+259.75660343433714
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+273.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.7566034343372
+ 20
+39.81150361779141
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+253.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+273.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.26659817846704
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.26659817846704
+ 20
+45.65144253540121
+ 30
+0.0
+ 11
+251.26659817846704
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.99999999999997
+ 20
+45.65144253540121
+ 30
+0.0
+ 11
+251.26659817846704
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+254.00000000000003
+ 20
+327.851648
+ 30
+0.0
+ 11
+274.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+254.00000000000006
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+274.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+254.00000000000006
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+254.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000006
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+259.75660343433725
+ 21
+341.8917923822086
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+259.75660343433725
+ 20
+341.8917923822086
+ 30
+0.0
+ 11
+274.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+299.00000000000006
+ 20
+381.7032960713451
+ 30
+0.0
+ 11
+274.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.51320686867444
+ 20
+347.7317312998184
+ 30
+0.0
+ 11
+299.00000000000006
+ 21
+381.7032960713451
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.75660343433725
+ 20
+341.8917923822087
+ 30
+0.0
+ 11
+265.51320686867444
+ 21
+347.7317312998184
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+274.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+299.00000000000006
+ 21
+327.85164799999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+299.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+324.00000000000006
+ 21
+327.85164799999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+299.00000000000006
+ 20
+381.7032960713451
+ 30
+0.0
+ 11
+324.00000000000006
+ 21
+327.85164799999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.4867931313257
+ 20
+347.7317312998184
+ 30
+0.0
+ 11
+338.2433965656628
+ 21
+341.8917923822086
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+299.00000000000006
+ 20
+381.7032960713451
+ 30
+0.0
+ 11
+332.4867931313257
+ 21
+347.7317312998184
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+324.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+338.2433965656628
+ 21
+341.8917923822086
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+324.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+338.2433965656628
+ 20
+341.8917923822086
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+344.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+324.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+346.733401821533
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+346.733401821533
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+346.733401821533
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.00000000000006
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+346.733401821533
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+343.9999999999999
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+323.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+343.9999999999999
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+323.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+343.9999999999999
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+343.9999999999999
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.9999999999999
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+338.2433965656627
+ 21
+39.81150361779146
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+338.2433965656627
+ 20
+39.81150361779146
+ 30
+0.0
+ 11
+323.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+298.9999999999999
+ 20
+-7.134491397664533e-08
+ 30
+0.0
+ 11
+323.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.48679313132556
+ 20
+33.971564700181666
+ 30
+0.0
+ 11
+298.9999999999999
+ 21
+-7.134491397664533e-08
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+338.2433965656627
+ 20
+39.81150361779146
+ 30
+0.0
+ 11
+332.48679313132556
+ 21
+33.971564700181666
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+346.73340182153277
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+343.9999999999999
+ 21
+45.651442535401266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+346.73340182153277
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+346.73340182153277
+ 21
+45.651442535401266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.9999999999999
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+346.73340182153277
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0
+ 20
+203.85164800000007
+ 30
+0.0
+ 11
+343.9999999999999
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+344.0
+ 20
+203.85164800000007
+ 30
+0.0
+ 11
+344.0
+ 21
+227.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.0
+ 21
+227.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.9999999999999
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+343.9999999999999
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.9999999999999
+ 20
+203.85164800000004
+ 30
+0.0
+ 11
+344.0
+ 21
+203.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.9999999999999
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+377.9999999999999
+ 21
+203.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+344.0
+ 20
+227.85164800000007
+ 30
+0.0
+ 11
+377.9999999999999
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0
+ 20
+227.85164800000007
+ 30
+0.0
+ 11
+344.0
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.99999999999994
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+377.9999999999999
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+344.0
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+344.0
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.99999999999994
+ 20
+271.851648
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+344.0
+ 20
+271.851648
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0
+ 20
+271.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.99999999999994
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+377.99999999999994
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+378.0
+ 20
+301.85164800000007
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.00000000000006
+ 20
+301.85164800000007
+ 30
+0.0
+ 11
+378.0
+ 21
+301.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.00000000000006
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+301.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.2665981784671
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.2665981784671
+ 20
+327.851648
+ 30
+0.0
+ 11
+251.2665981784671
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+327.851648
+ 30
+0.0
+ 11
+251.2665981784671
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+254.00000000000003
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+203.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+203.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+327.851648
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000003
+ 20
+203.85164800000004
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+203.85164800000004
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+203.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+220.00000000000003
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000003
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+220.00000000000003
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000003
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+271.851648
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+220.00000000000003
+ 20
+271.851648
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000003
+ 20
+271.851648
+ 30
+0.0
+ 11
+220.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+254.00000000000003
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+220.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000006
+ 20
+301.85164800000007
+ 30
+0.0
+ 11
+254.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000006
+ 20
+301.85164800000007
+ 30
+0.0
+ 11
+254.00000000000006
+ 21
+301.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000006
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+220.00000000000006
+ 21
+301.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.40786804847943
+ 20
+37.35482121234264
+ 30
+0.0
+ 11
+263.1379966274785
+ 21
+39.65755243235416
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+263.1379966274785
+ 20
+39.65755243235416
+ 30
+0.0
+ 11
+262.7819117133369
+ 21
+39.30654882279893
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.7819117133369
+ 20
+39.30654882279893
+ 30
+0.0
+ 11
+265.0517831343379
+ 21
+37.00381760278743
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.0517831343379
+ 20
+37.00381760278743
+ 30
+0.0
+ 11
+265.40786804847943
+ 21
+37.35482121234264
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.94994863385028
+ 20
+48.384844356934146
+ 30
+0.0
+ 11
+253.31664954461675
+ 21
+48.384844356934146
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.31664954461675
+ 20
+48.384844356934146
+ 30
+0.0
+ 11
+253.31664954461675
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.31664954461675
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+251.94994863385028
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+263.13799662747857
+ 20
+342.0457435676459
+ 30
+0.0
+ 11
+265.4078680484795
+ 21
+344.34847478765744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.4078680484795
+ 20
+344.34847478765744
+ 30
+0.0
+ 11
+265.051783134338
+ 21
+344.69947839721266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.051783134338
+ 20
+344.69947839721266
+ 30
+0.0
+ 11
+262.781911713337
+ 21
+342.39674717720106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.781911713337
+ 20
+342.39674717720106
+ 30
+0.0
+ 11
+263.13799662747857
+ 21
+342.0457435676459
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.59213195152057
+ 20
+344.34847478765744
+ 30
+0.0
+ 11
+334.8620033725215
+ 21
+342.0457435676459
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.8620033725215
+ 20
+342.0457435676459
+ 30
+0.0
+ 11
+335.21808828666303
+ 21
+342.39674717720106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+335.21808828666303
+ 20
+342.39674717720106
+ 30
+0.0
+ 11
+332.9482168656622
+ 21
+344.69947839721266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.9482168656622
+ 20
+344.69947839721266
+ 30
+0.0
+ 11
+332.59213195152057
+ 21
+344.34847478765744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+346.0500513661498
+ 20
+333.31845164306594
+ 30
+0.0
+ 11
+344.6833504553833
+ 21
+333.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.6833504553833
+ 20
+333.31845164306594
+ 30
+0.0
+ 11
+344.6833504553833
+ 21
+330.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.6833504553833
+ 20
+330.585049821533
+ 30
+0.0
+ 11
+346.0500513661498
+ 21
+330.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.8620033725213
+ 20
+39.657552432354215
+ 30
+0.0
+ 11
+332.59213195152034
+ 21
+37.354821212342706
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.59213195152034
+ 20
+37.354821212342706
+ 30
+0.0
+ 11
+332.948216865662
+ 21
+37.00381760278748
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.948216865662
+ 20
+37.00381760278748
+ 30
+0.0
+ 11
+335.21808828666286
+ 21
+39.306548822798995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+335.21808828666286
+ 20
+39.306548822798995
+ 30
+0.0
+ 11
+334.8620033725213
+ 21
+39.657552432354215
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+346.0500513661496
+ 20
+51.11824617846714
+ 30
+0.0
+ 11
+344.68335045538305
+ 21
+51.11824617846714
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.68335045538305
+ 20
+51.11824617846714
+ 30
+0.0
+ 11
+344.68335045538305
+ 21
+48.3848443569342
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.68335045538305
+ 20
+48.3848443569342
+ 30
+0.0
+ 11
+346.0500513661496
+ 21
+48.3848443569342
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.91666666666663
+ 20
+211.60164800000004
+ 30
+0.0
+ 11
+355.08333333333326
+ 21
+211.60164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.08333333333326
+ 20
+211.60164800000007
+ 30
+0.0
+ 11
+355.08333333333326
+ 21
+211.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.08333333333326
+ 20
+211.10164800000004
+ 30
+0.0
+ 11
+366.91666666666663
+ 21
+211.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.91666666666663
+ 20
+211.101648
+ 30
+0.0
+ 11
+366.91666666666663
+ 21
+211.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.99999999999994
+ 20
+246.85164800000004
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+242.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.99999999999994
+ 20
+242.85164800000004
+ 30
+0.0
+ 11
+367.0
+ 21
+242.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.0
+ 20
+242.85164800000004
+ 30
+0.0
+ 11
+367.0
+ 21
+246.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.0
+ 20
+246.85164800000004
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+246.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.5
+ 20
+234.85164800000004
+ 30
+0.0
+ 11
+356.5
+ 21
+230.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.5
+ 20
+230.85164800000004
+ 30
+0.0
+ 11
+365.5
+ 21
+230.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.5
+ 20
+230.85164800000004
+ 30
+0.0
+ 11
+365.5
+ 21
+234.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.5
+ 20
+234.85164800000004
+ 30
+0.0
+ 11
+356.5
+ 21
+234.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.99999999999994
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+248.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.99999999999994
+ 20
+248.35164800000004
+ 30
+0.0
+ 11
+367.0
+ 21
+248.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.0
+ 20
+248.35164800000004
+ 30
+0.0
+ 11
+367.0
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.0
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.99999999999994
+ 20
+276.851648
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+272.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.99999999999994
+ 20
+272.851648
+ 30
+0.0
+ 11
+367.0
+ 21
+272.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.0
+ 20
+272.851648
+ 30
+0.0
+ 11
+367.0
+ 21
+276.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.0
+ 20
+276.851648
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+276.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.3333333333333
+ 20
+299.351648
+ 30
+0.0
+ 11
+355.3333333333333
+ 21
+294.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.3333333333333
+ 20
+294.35164800000007
+ 30
+0.0
+ 11
+366.6666666666667
+ 21
+294.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.6666666666667
+ 20
+294.35164800000007
+ 30
+0.0
+ 11
+366.6666666666667
+ 21
+299.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.94994863385034
+ 20
+330.585049821533
+ 30
+0.0
+ 11
+253.3166495446168
+ 21
+330.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.3166495446168
+ 20
+330.585049821533
+ 30
+0.0
+ 11
+253.3166495446168
+ 21
+333.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.3166495446168
+ 20
+333.31845164306594
+ 30
+0.0
+ 11
+251.94994863385034
+ 21
+333.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.91666666666669
+ 20
+211.60164800000004
+ 30
+0.0
+ 11
+231.08333333333334
+ 21
+211.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.08333333333334
+ 20
+211.60164800000004
+ 30
+0.0
+ 11
+231.08333333333334
+ 21
+211.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.08333333333334
+ 20
+211.101648
+ 30
+0.0
+ 11
+242.91666666666669
+ 21
+211.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.91666666666669
+ 20
+211.101648
+ 30
+0.0
+ 11
+242.91666666666669
+ 21
+211.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.00000000000003
+ 20
+246.85164800000004
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+242.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.00000000000003
+ 20
+242.85164800000004
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+242.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.00000000000003
+ 20
+242.85164800000004
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+246.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.00000000000003
+ 20
+246.85164800000004
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+246.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.50000000000003
+ 20
+234.85164800000004
+ 30
+0.0
+ 11
+232.50000000000003
+ 21
+230.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.50000000000003
+ 20
+230.85164800000004
+ 30
+0.0
+ 11
+241.50000000000003
+ 21
+230.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.50000000000003
+ 20
+230.85164800000004
+ 30
+0.0
+ 11
+241.50000000000003
+ 21
+234.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.50000000000003
+ 20
+234.85164800000004
+ 30
+0.0
+ 11
+232.50000000000003
+ 21
+234.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.00000000000003
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+248.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.00000000000003
+ 20
+248.35164800000004
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+248.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.00000000000003
+ 20
+248.35164800000004
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.00000000000003
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.00000000000003
+ 20
+276.851648
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+272.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.00000000000003
+ 20
+272.851648
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+272.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.00000000000003
+ 20
+272.851648
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+276.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.00000000000003
+ 20
+276.851648
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+276.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.3333333333334
+ 20
+299.351648
+ 30
+0.0
+ 11
+231.3333333333334
+ 21
+294.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.3333333333334
+ 20
+294.35164800000007
+ 30
+0.0
+ 11
+242.6666666666667
+ 21
+294.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.6666666666667
+ 20
+294.35164800000007
+ 30
+0.0
+ 11
+242.6666666666667
+ 21
+299.351648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+422.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+482.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+482.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+422.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+422.00000000000006
+ 20
+171.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+482.00000000000006
+ 20
+171.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+171.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+482.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+171.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+489.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+482.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+489.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+482.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+422.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+422.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+506.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+506.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+482.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+506.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.0
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+506.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.0
+ 20
+263.851648
+ 30
+0.0
+ 11
+566.0
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+566.0
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+422.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+398.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+398.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+398.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+398.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+398.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+388.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+398.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+388.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+415.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+422.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+415.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+471.0909090909092
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+474.5909090909091
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+474.5909090909091
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+471.0909090909092
+ 21
+177.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+471.0909090909092
+ 20
+177.101648
+ 30
+0.0
+ 11
+460.18181818181824
+ 21
+177.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+460.18181818181824
+ 20
+177.101648
+ 30
+0.0
+ 11
+456.68181818181824
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+456.68181818181824
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+460.18181818181824
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+443.8181818181818
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+447.31818181818187
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+447.31818181818187
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+443.8181818181818
+ 21
+177.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+443.8181818181818
+ 20
+177.101648
+ 30
+0.0
+ 11
+432.909090909091
+ 21
+177.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+432.909090909091
+ 20
+177.101648
+ 30
+0.0
+ 11
+429.409090909091
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+429.409090909091
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+432.909090909091
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+487.25000000000006
+ 20
+194.85164800000004
+ 30
+0.0
+ 11
+483.75000000000006
+ 21
+194.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.75000000000006
+ 20
+194.85164800000004
+ 30
+0.0
+ 11
+483.75000000000006
+ 21
+186.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.75000000000006
+ 20
+186.85164800000004
+ 30
+0.0
+ 11
+487.25000000000006
+ 21
+186.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+429.50000000000006
+ 20
+254.35164800000007
+ 30
+0.0
+ 11
+429.50000000000006
+ 21
+236.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+429.50000000000006
+ 20
+236.35164800000004
+ 30
+0.0
+ 11
+464.50000000000006
+ 21
+236.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+464.50000000000006
+ 20
+236.35164800000004
+ 30
+0.0
+ 11
+464.50000000000006
+ 21
+254.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+464.50000000000006
+ 20
+254.35164800000007
+ 30
+0.0
+ 11
+429.50000000000006
+ 21
+254.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+482.50000000000006
+ 20
+216.10164800000004
+ 30
+0.0
+ 11
+482.50000000000006
+ 21
+213.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+482.50000000000006
+ 20
+213.10164800000004
+ 30
+0.0
+ 11
+485.50000000000006
+ 21
+213.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+485.50000000000006
+ 20
+213.10164800000004
+ 30
+0.0
+ 11
+485.50000000000006
+ 21
+216.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+485.50000000000006
+ 20
+216.10164800000004
+ 30
+0.0
+ 11
+482.50000000000006
+ 21
+216.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+215.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+214.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+214.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+214.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+214.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+215.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+215.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+215.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+252.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+251.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+251.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+251.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+251.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+252.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+252.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+252.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.50000000000006
+ 20
+253.60164800000004
+ 30
+0.0
+ 11
+502.50000000000006
+ 21
+250.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.50000000000006
+ 20
+250.60164800000004
+ 30
+0.0
+ 11
+505.50000000000006
+ 21
+250.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+505.50000000000006
+ 20
+250.60164800000004
+ 30
+0.0
+ 11
+505.50000000000006
+ 21
+253.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+505.50000000000006
+ 20
+253.60164800000004
+ 30
+0.0
+ 11
+502.50000000000006
+ 21
+253.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.25000000000006
+ 20
+210.60164800000004
+ 30
+0.0
+ 11
+489.75000000000006
+ 21
+210.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.75000000000006
+ 20
+210.60164800000004
+ 30
+0.0
+ 11
+489.75000000000006
+ 21
+210.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.75000000000006
+ 20
+210.10164800000004
+ 30
+0.0
+ 11
+498.25000000000006
+ 21
+210.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.25000000000006
+ 20
+210.10164800000004
+ 30
+0.0
+ 11
+498.25000000000006
+ 21
+210.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.75000000000006
+ 20
+258.35164800000007
+ 30
+0.0
+ 11
+498.25000000000006
+ 21
+258.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.25000000000006
+ 20
+258.35164800000007
+ 30
+0.0
+ 11
+498.25000000000006
+ 21
+258.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.25000000000006
+ 20
+258.85164800000007
+ 30
+0.0
+ 11
+489.75000000000006
+ 21
+258.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.75000000000006
+ 20
+258.85164800000007
+ 30
+0.0
+ 11
+489.75000000000006
+ 21
+258.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+521.0000000000001
+ 20
+253.85164800000004
+ 30
+0.0
+ 11
+521.0000000000001
+ 21
+240.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+521.0000000000001
+ 20
+240.85164800000004
+ 30
+0.0
+ 11
+551.0000000000001
+ 21
+240.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.0000000000001
+ 20
+240.85164800000004
+ 30
+0.0
+ 11
+551.0000000000001
+ 21
+253.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.0000000000001
+ 20
+253.85164800000004
+ 30
+0.0
+ 11
+521.0000000000001
+ 21
+253.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0681818181818
+ 20
+208.35164800000004
+ 30
+0.0
+ 11
+516.6590909090909
+ 21
+208.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+516.6590909090909
+ 20
+208.35164800000004
+ 30
+0.0
+ 11
+516.6590909090909
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+516.6590909090909
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+528.0681818181818
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0681818181818
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+528.0681818181818
+ 21
+208.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+555.3409090909091
+ 20
+208.35164800000004
+ 30
+0.0
+ 11
+543.9318181818182
+ 21
+208.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+543.9318181818182
+ 20
+208.35164800000004
+ 30
+0.0
+ 11
+543.9318181818182
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+543.9318181818182
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+555.3409090909091
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+555.3409090909091
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+555.3409090909091
+ 21
+208.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.25
+ 20
+225.28346618181823
+ 30
+0.0
+ 11
+558.25
+ 21
+213.69255709090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.25
+ 20
+213.69255709090913
+ 30
+0.0
+ 11
+558.75
+ 21
+213.69255709090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.75
+ 20
+213.69255709090913
+ 30
+0.0
+ 11
+558.75
+ 21
+225.28346618181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.75
+ 20
+225.28346618181823
+ 30
+0.0
+ 11
+558.25
+ 21
+225.28346618181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.25
+ 20
+253.01073890909095
+ 30
+0.0
+ 11
+558.25
+ 21
+241.41982981818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.25
+ 20
+241.41982981818185
+ 30
+0.0
+ 11
+558.75
+ 21
+241.41982981818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.75
+ 20
+241.41982981818185
+ 30
+0.0
+ 11
+558.75
+ 21
+253.01073890909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.75
+ 20
+253.01073890909095
+ 30
+0.0
+ 11
+558.25
+ 21
+253.01073890909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+398.50000000000006
+ 20
+216.10164800000004
+ 30
+0.0
+ 11
+398.50000000000006
+ 21
+213.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+398.50000000000006
+ 20
+213.10164800000004
+ 30
+0.0
+ 11
+401.50000000000006
+ 21
+213.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+401.50000000000006
+ 20
+213.10164800000004
+ 30
+0.0
+ 11
+401.50000000000006
+ 21
+216.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+401.50000000000006
+ 20
+216.10164800000004
+ 30
+0.0
+ 11
+398.50000000000006
+ 21
+216.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+215.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+214.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+214.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+214.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+214.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+215.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+215.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+215.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+220.101648
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+222.601648
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+400.5
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+231.601648
+ 30
+0.0
+ 11
+400.5
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+252.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+251.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+251.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+251.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+251.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+252.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+252.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+252.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.5
+ 20
+253.60164800000004
+ 30
+0.0
+ 11
+418.5
+ 21
+250.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.5
+ 20
+250.60164800000004
+ 30
+0.0
+ 11
+421.50000000000006
+ 21
+250.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+421.50000000000006
+ 20
+250.60164800000004
+ 30
+0.0
+ 11
+421.50000000000006
+ 21
+253.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+421.50000000000006
+ 20
+253.60164800000004
+ 30
+0.0
+ 11
+418.5
+ 21
+253.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+414.25
+ 20
+210.60164800000004
+ 30
+0.0
+ 11
+405.75000000000006
+ 21
+210.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+405.75000000000006
+ 20
+210.60164800000004
+ 30
+0.0
+ 11
+405.75000000000006
+ 21
+210.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+405.75000000000006
+ 20
+210.10164800000004
+ 30
+0.0
+ 11
+414.25
+ 21
+210.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+414.25
+ 20
+210.10164800000004
+ 30
+0.0
+ 11
+414.25
+ 21
+210.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+405.75000000000006
+ 20
+258.35164800000007
+ 30
+0.0
+ 11
+414.25
+ 21
+258.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+414.25
+ 20
+258.35164800000007
+ 30
+0.0
+ 11
+414.25
+ 21
+258.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+414.25
+ 20
+258.85164800000007
+ 30
+0.0
+ 11
+405.75000000000006
+ 21
+258.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+405.75000000000006
+ 20
+258.85164800000007
+ 30
+0.0
+ 11
+405.75000000000006
+ 21
+258.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.50000000000006
+ 20
+213.94255709090913
+ 30
+0.0
+ 11
+395.5
+ 21
+213.94255709090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.5
+ 20
+213.94255709090913
+ 30
+0.0
+ 11
+395.5
+ 21
+225.03346618181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.5
+ 20
+225.03346618181823
+ 30
+0.0
+ 11
+390.50000000000006
+ 21
+225.03346618181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.50000000000006
+ 20
+241.66982981818185
+ 30
+0.0
+ 11
+395.5
+ 21
+241.66982981818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.5
+ 20
+241.66982981818185
+ 30
+0.0
+ 11
+395.5
+ 21
+252.76073890909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.5
+ 20
+252.76073890909095
+ 30
+0.0
+ 11
+390.50000000000006
+ 21
+252.76073890909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+416.75000000000006
+ 20
+186.85164800000004
+ 30
+0.0
+ 11
+420.25000000000006
+ 21
+186.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.25000000000006
+ 20
+186.85164800000004
+ 30
+0.0
+ 11
+420.25000000000006
+ 21
+194.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.25000000000006
+ 20
+194.85164800000004
+ 30
+0.0
+ 11
+416.75000000000006
+ 21
+194.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+586.0000000000001
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+646.0
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+646.0
+ 20
+209.05192272320133
+ 30
+0.0
+ 11
+646.0
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+586.0000000000001
+ 20
+209.05192272320133
+ 30
+0.0
+ 11
+646.0
+ 21
+209.05192272320133
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+586.0000000000001
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+209.05192272320133
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+646.0
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+646.0
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+646.0
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+586.0000000000001
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+586.0000000000001
+ 20
+112.25082383039613
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+646.0
+ 20
+112.25082383039613
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+112.25082383039613
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+646.0
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+646.0
+ 21
+112.25082383039613
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.0
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+646.0
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.0
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+656.0
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+646.0
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+656.0
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+576.0000000000001
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+576.0000000000001
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+576.0000000000001
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+586.0000000000001
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+576.0000000000001
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+603.5000000000001
+ 20
+154.15137327679875
+ 30
+0.0
+ 11
+614.5000000000001
+ 21
+154.15137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+614.5000000000001
+ 20
+154.15137327679875
+ 30
+0.0
+ 11
+614.5000000000001
+ 21
+167.15137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+614.5000000000001
+ 20
+167.15137327679875
+ 30
+0.0
+ 11
+603.5000000000001
+ 21
+167.15137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+603.5000000000001
+ 20
+167.15137327679875
+ 30
+0.0
+ 11
+603.5000000000001
+ 21
+154.15137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+635.0000000000001
+ 20
+155.65137327679872
+ 30
+0.0
+ 11
+641.0000000000001
+ 21
+155.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+641.0000000000001
+ 20
+155.65137327679872
+ 30
+0.0
+ 11
+641.0000000000001
+ 21
+165.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+641.0000000000001
+ 20
+165.65137327679875
+ 30
+0.0
+ 11
+635.0000000000001
+ 21
+165.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+635.0000000000001
+ 20
+165.65137327679875
+ 30
+0.0
+ 11
+635.0000000000001
+ 21
+155.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+653.5000000000001
+ 20
+164.65137327679872
+ 30
+0.0
+ 11
+648.5000000000001
+ 21
+164.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+648.5000000000001
+ 20
+164.65137327679872
+ 30
+0.0
+ 11
+648.5000000000001
+ 21
+156.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+648.5000000000001
+ 20
+156.65137327679875
+ 30
+0.0
+ 11
+653.5000000000001
+ 21
+156.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+578.5000000000001
+ 20
+156.65137327679875
+ 30
+0.0
+ 11
+583.5
+ 21
+156.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+583.5
+ 20
+156.65137327679875
+ 30
+0.0
+ 11
+583.5
+ 21
+164.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+583.5
+ 20
+164.65137327679872
+ 30
+0.0
+ 11
+578.5000000000001
+ 21
+164.65137327679872
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-lasercutter.svg b/rocolib/output/BoatWithServoMountAndStack/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..88862519386113d95a80dc072f1646166782c373
--- /dev/null
+++ b/rocolib/output/BoatWithServoMountAndStack/graph-lasercutter.svg
@@ -0,0 +1,554 @@
+<?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="381.703296mm" version="1.1" viewBox="0.000000 0.000000 656.000000 381.703296" width="656.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="100.0" x2="0.0" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="100.0" x2="100.0" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="50.0" x2="100.0" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="0.0" x2="50.0" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="210.00000000000003" x2="110.00000000000001" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="210.00000000000003" x2="210.00000000000003" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="210.00000000000003" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="110.00000000000001" x2="160.00000000000003" y1="190.851648" y2="190.851648"/>
+  <line stroke="#000000" x1="110.00000000000001" x2="110.00000000000001" y1="190.851648" y2="190.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="323.99999999999994" x2="323.99999999999994" y1="53.85164800000002" y2="327.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="273.99999999999994" x2="273.99999999999994" y1="53.85164800000002" y2="327.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="299.0" x2="273.99999999999994" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="323.99999999999994" x2="299.0" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="299.0" x2="273.99999999999994" y1="-7.134502766348305e-08" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="265.51320686867433" x2="259.75660343433714" y1="33.971564700181574" y2="39.81150361779138"/>
+  <line stroke="#000000" x1="299.0" x2="265.51320686867433" y1="-7.134502766348305e-08" y2="33.971564700181574"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="273.99999999999994" x2="259.75660343433714" y1="53.85164800000002" y2="39.81150361779138"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="273.99999999999994" x2="253.99999999999997" y1="53.85164800000002" y2="45.65144253540121"/>
+  <line stroke="#000000" x1="259.7566034343372" x2="253.99999999999997" y1="39.81150361779141" y2="45.65144253540121"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="253.99999999999997" x2="253.99999999999997" y1="53.85164800000002" y2="45.65144253540121"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="273.99999999999994" x2="253.99999999999997" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="251.26659817846704" x2="253.99999999999997" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="251.26659817846704" x2="251.26659817846704" y1="45.65144253540121" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="253.99999999999997" x2="251.26659817846704" y1="45.65144253540121" y2="45.65144253540121"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="254.00000000000003" x2="274.00000000000006" y1="327.851648" y2="327.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="254.00000000000006" x2="274.00000000000006" y1="336.0518534645988" y2="327.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="254.00000000000006" x2="254.00000000000006" y1="336.0518534645988" y2="327.851648"/>
+  <line stroke="#000000" x1="254.00000000000006" x2="259.75660343433725" y1="336.0518534645988" y2="341.8917923822086"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="259.75660343433725" x2="274.00000000000006" y1="341.8917923822086" y2="327.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="299.00000000000006" x2="274.00000000000006" y1="381.7032960713451" y2="327.851648"/>
+  <line stroke="#000000" x1="265.51320686867444" x2="299.00000000000006" y1="347.7317312998184" y2="381.7032960713451"/>
+  <line stroke="#000000" x1="259.75660343433725" x2="265.51320686867444" y1="341.8917923822087" y2="347.7317312998184"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="274.00000000000006" x2="299.00000000000006" y1="327.851648" y2="327.85164799999995"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="299.00000000000006" x2="324.00000000000006" y1="327.851648" y2="327.85164799999995"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="299.00000000000006" x2="324.00000000000006" y1="381.7032960713451" y2="327.85164799999995"/>
+  <line stroke="#000000" x1="332.4867931313257" x2="338.2433965656628" y1="347.7317312998184" y2="341.8917923822086"/>
+  <line stroke="#000000" x1="299.00000000000006" x2="332.4867931313257" y1="381.7032960713451" y2="347.7317312998184"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="324.00000000000006" x2="338.2433965656628" y1="327.851648" y2="341.8917923822086"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="324.00000000000006" x2="344.00000000000006" y1="327.851648" y2="336.0518534645988"/>
+  <line stroke="#000000" x1="338.2433965656628" x2="344.00000000000006" y1="341.8917923822086" y2="336.0518534645988"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.00000000000006" x2="344.00000000000006" y1="327.851648" y2="336.0518534645988"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="324.00000000000006" x2="344.00000000000006" y1="327.851648" y2="327.851648"/>
+  <line stroke="#000000" x1="346.733401821533" x2="344.00000000000006" y1="327.851648" y2="327.851648"/>
+  <line stroke="#000000" x1="346.733401821533" x2="346.733401821533" y1="336.0518534645988" y2="327.851648"/>
+  <line stroke="#000000" x1="344.00000000000006" x2="346.733401821533" y1="336.0518534645988" y2="336.0518534645988"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="343.9999999999999" x2="323.99999999999983" y1="53.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="343.9999999999999" x2="323.99999999999983" y1="45.651442535401266" y2="53.85164800000007"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="343.9999999999999" x2="343.9999999999999" y1="45.651442535401266" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="343.9999999999999" x2="338.2433965656627" y1="45.651442535401266" y2="39.81150361779146"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="338.2433965656627" x2="323.99999999999983" y1="39.81150361779146" y2="53.85164800000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="298.9999999999999" x2="323.99999999999983" y1="-7.134491397664533e-08" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="332.48679313132556" x2="298.9999999999999" y1="33.971564700181666" y2="-7.134491397664533e-08"/>
+  <line stroke="#000000" x1="338.2433965656627" x2="332.48679313132556" y1="39.81150361779146" y2="33.971564700181666"/>
+  <line stroke="#000000" x1="346.73340182153277" x2="343.9999999999999" y1="45.651442535401266" y2="45.651442535401266"/>
+  <line stroke="#000000" x1="346.73340182153277" x2="346.73340182153277" y1="53.85164800000007" y2="45.651442535401266"/>
+  <line stroke="#000000" x1="343.9999999999999" x2="346.73340182153277" y1="53.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="344.0" x2="343.9999999999999" y1="203.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.0" x2="344.0" y1="203.85164800000007" y2="227.85164800000007"/>
+  <line stroke="#000000" x1="344.00000000000006" x2="344.0" y1="327.851648" y2="227.85164800000007"/>
+  <line stroke="#000000" x1="344.00000000000006" x2="344.00000000000006" y1="327.851648" y2="327.851648"/>
+  <line stroke="#000000" x1="343.9999999999999" x2="343.9999999999999" y1="53.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="377.9999999999999" x2="344.0" y1="203.85164800000004" y2="203.85164800000007"/>
+  <line stroke="#000000" x1="377.9999999999999" x2="377.9999999999999" y1="227.85164800000004" y2="203.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.0" x2="377.9999999999999" y1="227.85164800000007" y2="227.85164800000004"/>
+  <line stroke="#000000" x1="344.0" x2="344.0" y1="227.85164800000007" y2="247.85164800000004"/>
+  <line stroke="#000000" x1="377.99999999999994" x2="377.9999999999999" y1="247.85164800000004" y2="227.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.0" x2="377.99999999999994" y1="247.85164800000004" y2="247.85164800000004"/>
+  <line stroke="#000000" x1="344.0" x2="344.0" y1="247.85164800000004" y2="271.851648"/>
+  <line stroke="#000000" x1="377.99999999999994" x2="377.99999999999994" y1="271.851648" y2="247.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.0" x2="377.99999999999994" y1="271.851648" y2="271.851648"/>
+  <line stroke="#000000" x1="344.0" x2="344.00000000000006" y1="271.851648" y2="291.85164800000007"/>
+  <line stroke="#000000" x1="377.99999999999994" x2="377.99999999999994" y1="291.85164800000007" y2="271.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="377.99999999999994" x2="344.00000000000006" y1="291.85164800000007" y2="291.85164800000007"/>
+  <line stroke="#000000" x1="378.0" x2="377.99999999999994" y1="301.85164800000007" y2="291.85164800000007"/>
+  <line stroke="#000000" x1="344.00000000000006" x2="378.0" y1="301.85164800000007" y2="301.85164800000007"/>
+  <line stroke="#000000" x1="344.00000000000006" x2="344.00000000000006" y1="291.85164800000007" y2="301.85164800000007"/>
+  <line stroke="#000000" x1="251.2665981784671" x2="254.00000000000003" y1="336.0518534645988" y2="336.0518534645988"/>
+  <line stroke="#000000" x1="251.2665981784671" x2="251.2665981784671" y1="327.851648" y2="336.0518534645988"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="251.2665981784671" y1="327.851648" y2="327.851648"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="254.00000000000003" y1="227.85164800000004" y2="327.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="254.00000000000003" x2="254.00000000000003" y1="227.85164800000004" y2="203.85164800000004"/>
+  <line stroke="#000000" x1="253.99999999999997" x2="254.00000000000003" y1="53.85164800000002" y2="203.85164800000004"/>
+  <line stroke="#000000" x1="253.99999999999997" x2="253.99999999999997" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="254.00000000000003" y1="327.851648" y2="327.851648"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="203.85164800000004" y2="227.85164800000004"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="220.00000000000003" y1="203.85164800000004" y2="203.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="254.00000000000003" y1="227.85164800000004" y2="227.85164800000004"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="227.85164800000004" y2="247.85164800000004"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="254.00000000000003" y1="247.85164800000004" y2="227.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="254.00000000000003" y1="247.85164800000004" y2="247.85164800000004"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="247.85164800000004" y2="271.851648"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="254.00000000000003" y1="271.851648" y2="247.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="254.00000000000003" y1="271.851648" y2="271.851648"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000006" y1="271.851648" y2="291.85164800000007"/>
+  <line stroke="#000000" x1="254.00000000000003" x2="254.00000000000003" y1="291.85164800000007" y2="271.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="254.00000000000003" x2="220.00000000000006" y1="291.85164800000007" y2="291.85164800000007"/>
+  <line stroke="#000000" x1="254.00000000000006" x2="254.00000000000006" y1="301.85164800000007" y2="291.85164800000007"/>
+  <line stroke="#000000" x1="220.00000000000006" x2="254.00000000000006" y1="301.85164800000007" y2="301.85164800000007"/>
+  <line stroke="#000000" x1="220.00000000000006" x2="220.00000000000006" y1="291.85164800000007" y2="301.85164800000007"/>
+  <line stroke="#888888" x1="265.40786804847943" x2="263.1379966274785" y1="37.35482121234264" y2="39.65755243235416"/>
+  <line stroke="#888888" x1="263.1379966274785" x2="262.7819117133369" y1="39.65755243235416" y2="39.30654882279893"/>
+  <line stroke="#888888" x1="262.7819117133369" x2="265.0517831343379" y1="39.30654882279893" y2="37.00381760278743"/>
+  <line stroke="#888888" x1="265.0517831343379" x2="265.40786804847943" y1="37.00381760278743" y2="37.35482121234264"/>
+  <line stroke="#888888" x1="251.94994863385028" x2="253.31664954461675" y1="48.384844356934146" y2="48.384844356934146"/>
+  <line stroke="#888888" x1="253.31664954461675" x2="253.31664954461675" y1="48.384844356934146" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="253.31664954461675" x2="251.94994863385028" y1="51.118246178467075" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="263.13799662747857" x2="265.4078680484795" y1="342.0457435676459" y2="344.34847478765744"/>
+  <line stroke="#888888" x1="265.4078680484795" x2="265.051783134338" y1="344.34847478765744" y2="344.69947839721266"/>
+  <line stroke="#888888" x1="265.051783134338" x2="262.781911713337" y1="344.69947839721266" y2="342.39674717720106"/>
+  <line stroke="#888888" x1="262.781911713337" x2="263.13799662747857" y1="342.39674717720106" y2="342.0457435676459"/>
+  <line stroke="#888888" x1="332.59213195152057" x2="334.8620033725215" y1="344.34847478765744" y2="342.0457435676459"/>
+  <line stroke="#888888" x1="334.8620033725215" x2="335.21808828666303" y1="342.0457435676459" y2="342.39674717720106"/>
+  <line stroke="#888888" x1="335.21808828666303" x2="332.9482168656622" y1="342.39674717720106" y2="344.69947839721266"/>
+  <line stroke="#888888" x1="332.9482168656622" x2="332.59213195152057" y1="344.69947839721266" y2="344.34847478765744"/>
+  <line stroke="#888888" x1="346.0500513661498" x2="344.6833504553833" y1="333.31845164306594" y2="333.31845164306594"/>
+  <line stroke="#888888" x1="344.6833504553833" x2="344.6833504553833" y1="333.31845164306594" y2="330.585049821533"/>
+  <line stroke="#888888" x1="344.6833504553833" x2="346.0500513661498" y1="330.585049821533" y2="330.585049821533"/>
+  <line stroke="#888888" x1="334.8620033725213" x2="332.59213195152034" y1="39.657552432354215" y2="37.354821212342706"/>
+  <line stroke="#888888" x1="332.59213195152034" x2="332.948216865662" y1="37.354821212342706" y2="37.00381760278748"/>
+  <line stroke="#888888" x1="332.948216865662" x2="335.21808828666286" y1="37.00381760278748" y2="39.306548822798995"/>
+  <line stroke="#888888" x1="335.21808828666286" x2="334.8620033725213" y1="39.306548822798995" y2="39.657552432354215"/>
+  <line stroke="#888888" x1="346.0500513661496" x2="344.68335045538305" y1="51.11824617846714" y2="51.11824617846714"/>
+  <line stroke="#888888" x1="344.68335045538305" x2="344.68335045538305" y1="51.11824617846714" y2="48.3848443569342"/>
+  <line stroke="#888888" x1="344.68335045538305" x2="346.0500513661496" y1="48.3848443569342" y2="48.3848443569342"/>
+  <line stroke="#888888" x1="366.91666666666663" x2="355.08333333333326" y1="211.60164800000004" y2="211.60164800000007"/>
+  <line stroke="#888888" x1="355.08333333333326" x2="355.08333333333326" y1="211.60164800000007" y2="211.10164800000004"/>
+  <line stroke="#888888" x1="355.08333333333326" x2="366.91666666666663" y1="211.10164800000004" y2="211.101648"/>
+  <line stroke="#888888" x1="366.91666666666663" x2="366.91666666666663" y1="211.101648" y2="211.60164800000004"/>
+  <line stroke="#888888" x1="354.99999999999994" x2="354.99999999999994" y1="246.85164800000004" y2="242.85164800000004"/>
+  <line stroke="#888888" x1="354.99999999999994" x2="367.0" y1="242.85164800000004" y2="242.85164800000004"/>
+  <line stroke="#888888" x1="367.0" x2="367.0" y1="242.85164800000004" y2="246.85164800000004"/>
+  <line stroke="#888888" x1="367.0" x2="354.99999999999994" y1="246.85164800000004" y2="246.85164800000004"/>
+  <line stroke="#888888" x1="356.5" x2="356.5" y1="234.85164800000004" y2="230.85164800000004"/>
+  <line stroke="#888888" x1="356.5" x2="365.5" y1="230.85164800000004" y2="230.85164800000004"/>
+  <line stroke="#888888" x1="365.5" x2="365.5" y1="230.85164800000004" y2="234.85164800000004"/>
+  <line stroke="#888888" x1="365.5" x2="356.5" y1="234.85164800000004" y2="234.85164800000004"/>
+  <line stroke="#888888" x1="354.99999999999994" x2="354.99999999999994" y1="271.35164800000007" y2="248.35164800000004"/>
+  <line stroke="#888888" x1="354.99999999999994" x2="367.0" y1="248.35164800000004" y2="248.35164800000004"/>
+  <line stroke="#888888" x1="367.0" x2="367.0" y1="248.35164800000004" y2="271.35164800000007"/>
+  <line stroke="#888888" x1="367.0" x2="354.99999999999994" y1="271.35164800000007" y2="271.35164800000007"/>
+  <line stroke="#888888" x1="354.99999999999994" x2="354.99999999999994" y1="276.851648" y2="272.851648"/>
+  <line stroke="#888888" x1="354.99999999999994" x2="367.0" y1="272.851648" y2="272.851648"/>
+  <line stroke="#888888" x1="367.0" x2="367.0" y1="272.851648" y2="276.851648"/>
+  <line stroke="#888888" x1="367.0" x2="354.99999999999994" y1="276.851648" y2="276.851648"/>
+  <line stroke="#888888" x1="355.3333333333333" x2="355.3333333333333" y1="299.351648" y2="294.35164800000007"/>
+  <line stroke="#888888" x1="355.3333333333333" x2="366.6666666666667" y1="294.35164800000007" y2="294.35164800000007"/>
+  <line stroke="#888888" x1="366.6666666666667" x2="366.6666666666667" y1="294.35164800000007" y2="299.351648"/>
+  <line stroke="#888888" x1="251.94994863385034" x2="253.3166495446168" y1="330.585049821533" y2="330.585049821533"/>
+  <line stroke="#888888" x1="253.3166495446168" x2="253.3166495446168" y1="330.585049821533" y2="333.31845164306594"/>
+  <line stroke="#888888" x1="253.3166495446168" x2="251.94994863385034" y1="333.31845164306594" y2="333.31845164306594"/>
+  <line stroke="#888888" x1="242.91666666666669" x2="231.08333333333334" y1="211.60164800000004" y2="211.60164800000004"/>
+  <line stroke="#888888" x1="231.08333333333334" x2="231.08333333333334" y1="211.60164800000004" y2="211.101648"/>
+  <line stroke="#888888" x1="231.08333333333334" x2="242.91666666666669" y1="211.101648" y2="211.101648"/>
+  <line stroke="#888888" x1="242.91666666666669" x2="242.91666666666669" y1="211.101648" y2="211.60164800000004"/>
+  <line stroke="#888888" x1="231.00000000000003" x2="231.00000000000003" y1="246.85164800000004" y2="242.85164800000004"/>
+  <line stroke="#888888" x1="231.00000000000003" x2="243.00000000000003" y1="242.85164800000004" y2="242.85164800000004"/>
+  <line stroke="#888888" x1="243.00000000000003" x2="243.00000000000003" y1="242.85164800000004" y2="246.85164800000004"/>
+  <line stroke="#888888" x1="243.00000000000003" x2="231.00000000000003" y1="246.85164800000004" y2="246.85164800000004"/>
+  <line stroke="#888888" x1="232.50000000000003" x2="232.50000000000003" y1="234.85164800000004" y2="230.85164800000004"/>
+  <line stroke="#888888" x1="232.50000000000003" x2="241.50000000000003" y1="230.85164800000004" y2="230.85164800000004"/>
+  <line stroke="#888888" x1="241.50000000000003" x2="241.50000000000003" y1="230.85164800000004" y2="234.85164800000004"/>
+  <line stroke="#888888" x1="241.50000000000003" x2="232.50000000000003" y1="234.85164800000004" y2="234.85164800000004"/>
+  <line stroke="#888888" x1="231.00000000000003" x2="231.00000000000003" y1="271.35164800000007" y2="248.35164800000004"/>
+  <line stroke="#888888" x1="231.00000000000003" x2="243.00000000000003" y1="248.35164800000004" y2="248.35164800000004"/>
+  <line stroke="#888888" x1="243.00000000000003" x2="243.00000000000003" y1="248.35164800000004" y2="271.35164800000007"/>
+  <line stroke="#888888" x1="243.00000000000003" x2="231.00000000000003" y1="271.35164800000007" y2="271.35164800000007"/>
+  <line stroke="#888888" x1="231.00000000000003" x2="231.00000000000003" y1="276.851648" y2="272.851648"/>
+  <line stroke="#888888" x1="231.00000000000003" x2="243.00000000000003" y1="272.851648" y2="272.851648"/>
+  <line stroke="#888888" x1="243.00000000000003" x2="243.00000000000003" y1="272.851648" y2="276.851648"/>
+  <line stroke="#888888" x1="243.00000000000003" x2="231.00000000000003" y1="276.851648" y2="276.851648"/>
+  <line stroke="#888888" x1="231.3333333333334" x2="231.3333333333334" y1="299.351648" y2="294.35164800000007"/>
+  <line stroke="#888888" x1="231.3333333333334" x2="242.6666666666667" y1="294.35164800000007" y2="294.35164800000007"/>
+  <line stroke="#888888" x1="242.6666666666667" x2="242.6666666666667" y1="294.35164800000007" y2="299.351648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.00000000000006" x2="482.00000000000006" y1="178.85164800000004" y2="178.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="482.00000000000006" x2="482.00000000000006" y1="178.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="482.00000000000006" x2="422.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.00000000000006" x2="422.00000000000006" y1="202.85164800000004" y2="178.85164800000004"/>
+  <line stroke="#000000" x1="422.00000000000006" x2="422.00000000000006" y1="171.85164800000004" y2="178.85164800000004"/>
+  <line stroke="#000000" x1="482.00000000000006" x2="422.00000000000006" y1="171.85164800000004" y2="171.85164800000004"/>
+  <line stroke="#000000" x1="482.00000000000006" x2="482.00000000000006" y1="178.85164800000004" y2="171.85164800000004"/>
+  <line stroke="#000000" x1="489.00000000000006" x2="482.00000000000006" y1="178.85164800000004" y2="178.85164800000004"/>
+  <line stroke="#000000" x1="489.00000000000006" x2="489.00000000000006" y1="202.85164800000004" y2="178.85164800000004"/>
+  <line stroke="#000000" x1="482.00000000000006" x2="489.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="482.00000000000006" x2="482.00000000000006" y1="202.85164800000004" y2="263.851648"/>
+  <line stroke="#000000" x1="422.00000000000006" x2="482.00000000000006" y1="263.851648" y2="263.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.00000000000006" x2="422.00000000000006" y1="202.85164800000004" y2="263.851648"/>
+  <line stroke="#000000" x1="506.00000000000006" x2="482.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.00000000000006" x2="506.00000000000006" y1="202.85164800000004" y2="263.851648"/>
+  <line stroke="#000000" x1="482.00000000000006" x2="506.00000000000006" y1="263.851648" y2="263.851648"/>
+  <line stroke="#000000" x1="566.0" x2="506.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="566.0" x2="566.0" y1="263.851648" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="506.00000000000006" x2="566.0" y1="263.851648" y2="263.851648"/>
+  <line stroke="#000000" x1="422.00000000000006" x2="398.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="398.00000000000006" x2="422.00000000000006" y1="263.851648" y2="263.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="398.00000000000006" x2="398.00000000000006" y1="263.851648" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="388.00000000000006" x2="398.00000000000006" y1="263.851648" y2="263.851648"/>
+  <line stroke="#000000" x1="388.00000000000006" x2="388.00000000000006" y1="202.85164800000004" y2="263.851648"/>
+  <line stroke="#000000" x1="398.00000000000006" x2="388.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="415.00000000000006" x2="422.00000000000006" y1="202.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="415.00000000000006" x2="415.00000000000006" y1="178.85164800000004" y2="202.85164800000004"/>
+  <line stroke="#000000" x1="422.00000000000006" x2="415.00000000000006" y1="178.85164800000004" y2="178.85164800000004"/>
+  <line stroke="#888888" x1="471.0909090909092" x2="474.5909090909091" y1="173.60164800000004" y2="173.60164800000004"/>
+  <line stroke="#888888" x1="474.5909090909091" x2="471.0909090909092" y1="173.60164800000004" y2="177.101648"/>
+  <line stroke="#888888" x1="471.0909090909092" x2="460.18181818181824" y1="177.101648" y2="177.101648"/>
+  <line stroke="#888888" x1="460.18181818181824" x2="456.68181818181824" y1="177.101648" y2="173.60164800000004"/>
+  <line stroke="#888888" x1="456.68181818181824" x2="460.18181818181824" y1="173.60164800000004" y2="173.60164800000004"/>
+  <line stroke="#888888" x1="443.8181818181818" x2="447.31818181818187" y1="173.60164800000004" y2="173.60164800000004"/>
+  <line stroke="#888888" x1="447.31818181818187" x2="443.8181818181818" y1="173.60164800000004" y2="177.101648"/>
+  <line stroke="#888888" x1="443.8181818181818" x2="432.909090909091" y1="177.101648" y2="177.101648"/>
+  <line stroke="#888888" x1="432.909090909091" x2="429.409090909091" y1="177.101648" y2="173.60164800000004"/>
+  <line stroke="#888888" x1="429.409090909091" x2="432.909090909091" y1="173.60164800000004" y2="173.60164800000004"/>
+  <line stroke="#888888" x1="487.25000000000006" x2="483.75000000000006" y1="194.85164800000004" y2="194.85164800000004"/>
+  <line stroke="#888888" x1="483.75000000000006" x2="483.75000000000006" y1="194.85164800000004" y2="186.85164800000004"/>
+  <line stroke="#888888" x1="483.75000000000006" x2="487.25000000000006" y1="186.85164800000004" y2="186.85164800000004"/>
+  <line stroke="#888888" x1="429.50000000000006" x2="429.50000000000006" y1="254.35164800000007" y2="236.35164800000004"/>
+  <line stroke="#888888" x1="429.50000000000006" x2="464.50000000000006" y1="236.35164800000004" y2="236.35164800000004"/>
+  <line stroke="#888888" x1="464.50000000000006" x2="464.50000000000006" y1="236.35164800000004" y2="254.35164800000007"/>
+  <line stroke="#888888" x1="464.50000000000006" x2="429.50000000000006" y1="254.35164800000007" y2="254.35164800000007"/>
+  <line stroke="#888888" x1="482.50000000000006" x2="482.50000000000006" y1="216.10164800000004" y2="213.10164800000004"/>
+  <line stroke="#888888" x1="482.50000000000006" x2="485.50000000000006" y1="213.10164800000004" y2="213.10164800000004"/>
+  <line stroke="#888888" x1="485.50000000000006" x2="485.50000000000006" y1="213.10164800000004" y2="216.10164800000004"/>
+  <line stroke="#888888" x1="485.50000000000006" x2="482.50000000000006" y1="216.10164800000004" y2="216.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="215.10164800000004" y2="214.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="214.10164800000004" y2="214.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="214.10164800000004" y2="215.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="215.10164800000004" y2="215.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="217.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="216.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="216.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="217.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="217.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="216.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="216.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="217.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="220.101648" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="219.10164800000004" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="219.10164800000004" y2="220.101648"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="220.101648" y2="220.101648"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="220.101648" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="219.10164800000004" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="219.10164800000004" y2="220.101648"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="220.101648" y2="220.101648"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="222.601648" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="221.60164800000004" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="221.60164800000004" y2="222.601648"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="222.601648" y2="222.601648"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="222.601648" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="221.60164800000004" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="221.60164800000004" y2="222.601648"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="222.601648" y2="222.601648"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="225.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="224.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="224.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="225.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="225.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="224.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="224.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="225.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="227.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="226.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="226.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="227.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="227.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="226.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="226.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="227.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="230.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="229.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="229.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="230.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="230.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="229.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="229.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="230.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="232.60164800000004" y2="231.601648"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="231.601648" y2="231.601648"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="231.601648" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="232.60164800000004" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="232.60164800000004" y2="231.601648"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="231.601648" y2="231.601648"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="231.601648" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="232.60164800000004" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="235.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="234.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="234.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="235.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="235.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="234.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="234.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="235.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="237.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="236.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="236.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="237.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="237.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="236.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="236.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="237.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="240.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="239.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="239.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="240.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="240.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="239.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="239.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="240.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="242.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="241.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="241.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="242.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="242.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="241.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="241.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="242.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="245.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="244.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="244.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="245.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="245.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="244.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="244.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="245.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="247.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="246.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="246.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="247.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="247.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="246.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="246.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="247.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="250.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="249.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="249.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="250.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="503.50000000000006" y1="250.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="503.50000000000006" x2="504.50000000000006" y1="249.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="504.50000000000006" y1="249.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="504.50000000000006" x2="503.50000000000006" y1="250.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="483.50000000000006" y1="252.60164800000004" y2="251.60164800000004"/>
+  <line stroke="#888888" x1="483.50000000000006" x2="484.50000000000006" y1="251.60164800000004" y2="251.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="484.50000000000006" y1="251.60164800000004" y2="252.60164800000004"/>
+  <line stroke="#888888" x1="484.50000000000006" x2="483.50000000000006" y1="252.60164800000004" y2="252.60164800000004"/>
+  <line stroke="#888888" x1="502.50000000000006" x2="502.50000000000006" y1="253.60164800000004" y2="250.60164800000004"/>
+  <line stroke="#888888" x1="502.50000000000006" x2="505.50000000000006" y1="250.60164800000004" y2="250.60164800000004"/>
+  <line stroke="#888888" x1="505.50000000000006" x2="505.50000000000006" y1="250.60164800000004" y2="253.60164800000004"/>
+  <line stroke="#888888" x1="505.50000000000006" x2="502.50000000000006" y1="253.60164800000004" y2="253.60164800000004"/>
+  <line stroke="#888888" x1="498.25000000000006" x2="489.75000000000006" y1="210.60164800000004" y2="210.60164800000004"/>
+  <line stroke="#888888" x1="489.75000000000006" x2="489.75000000000006" y1="210.60164800000004" y2="210.10164800000004"/>
+  <line stroke="#888888" x1="489.75000000000006" x2="498.25000000000006" y1="210.10164800000004" y2="210.10164800000004"/>
+  <line stroke="#888888" x1="498.25000000000006" x2="498.25000000000006" y1="210.10164800000004" y2="210.60164800000004"/>
+  <line stroke="#888888" x1="489.75000000000006" x2="498.25000000000006" y1="258.35164800000007" y2="258.35164800000007"/>
+  <line stroke="#888888" x1="498.25000000000006" x2="498.25000000000006" y1="258.35164800000007" y2="258.85164800000007"/>
+  <line stroke="#888888" x1="498.25000000000006" x2="489.75000000000006" y1="258.85164800000007" y2="258.85164800000007"/>
+  <line stroke="#888888" x1="489.75000000000006" x2="489.75000000000006" y1="258.85164800000007" y2="258.35164800000007"/>
+  <line stroke="#888888" x1="521.0000000000001" x2="521.0000000000001" y1="253.85164800000004" y2="240.85164800000004"/>
+  <line stroke="#888888" x1="521.0000000000001" x2="551.0000000000001" y1="240.85164800000004" y2="240.85164800000004"/>
+  <line stroke="#888888" x1="551.0000000000001" x2="551.0000000000001" y1="240.85164800000004" y2="253.85164800000004"/>
+  <line stroke="#888888" x1="551.0000000000001" x2="521.0000000000001" y1="253.85164800000004" y2="253.85164800000004"/>
+  <line stroke="#888888" x1="528.0681818181818" x2="516.6590909090909" y1="208.35164800000004" y2="208.35164800000004"/>
+  <line stroke="#888888" x1="516.6590909090909" x2="516.6590909090909" y1="208.35164800000004" y2="207.85164800000004"/>
+  <line stroke="#888888" x1="516.6590909090909" x2="528.0681818181818" y1="207.85164800000004" y2="207.85164800000004"/>
+  <line stroke="#888888" x1="528.0681818181818" x2="528.0681818181818" y1="207.85164800000004" y2="208.35164800000004"/>
+  <line stroke="#888888" x1="555.3409090909091" x2="543.9318181818182" y1="208.35164800000004" y2="208.35164800000004"/>
+  <line stroke="#888888" x1="543.9318181818182" x2="543.9318181818182" y1="208.35164800000004" y2="207.85164800000004"/>
+  <line stroke="#888888" x1="543.9318181818182" x2="555.3409090909091" y1="207.85164800000004" y2="207.85164800000004"/>
+  <line stroke="#888888" x1="555.3409090909091" x2="555.3409090909091" y1="207.85164800000004" y2="208.35164800000004"/>
+  <line stroke="#888888" x1="558.25" x2="558.25" y1="225.28346618181823" y2="213.69255709090913"/>
+  <line stroke="#888888" x1="558.25" x2="558.75" y1="213.69255709090913" y2="213.69255709090913"/>
+  <line stroke="#888888" x1="558.75" x2="558.75" y1="213.69255709090913" y2="225.28346618181823"/>
+  <line stroke="#888888" x1="558.75" x2="558.25" y1="225.28346618181823" y2="225.28346618181823"/>
+  <line stroke="#888888" x1="558.25" x2="558.25" y1="253.01073890909095" y2="241.41982981818185"/>
+  <line stroke="#888888" x1="558.25" x2="558.75" y1="241.41982981818185" y2="241.41982981818185"/>
+  <line stroke="#888888" x1="558.75" x2="558.75" y1="241.41982981818185" y2="253.01073890909095"/>
+  <line stroke="#888888" x1="558.75" x2="558.25" y1="253.01073890909095" y2="253.01073890909095"/>
+  <line stroke="#888888" x1="398.50000000000006" x2="398.50000000000006" y1="216.10164800000004" y2="213.10164800000004"/>
+  <line stroke="#888888" x1="398.50000000000006" x2="401.50000000000006" y1="213.10164800000004" y2="213.10164800000004"/>
+  <line stroke="#888888" x1="401.50000000000006" x2="401.50000000000006" y1="213.10164800000004" y2="216.10164800000004"/>
+  <line stroke="#888888" x1="401.50000000000006" x2="398.50000000000006" y1="216.10164800000004" y2="216.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="215.10164800000004" y2="214.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="214.10164800000004" y2="214.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="214.10164800000004" y2="215.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="215.10164800000004" y2="215.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="217.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="216.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="216.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="217.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="217.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="216.60164800000004" y2="216.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="216.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="217.60164800000004" y2="217.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="220.101648" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="219.10164800000004" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="219.10164800000004" y2="220.101648"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="220.101648" y2="220.101648"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="220.101648" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="219.10164800000004" y2="219.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="219.10164800000004" y2="220.101648"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="220.101648" y2="220.101648"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="222.601648" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="221.60164800000004" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="221.60164800000004" y2="222.601648"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="222.601648" y2="222.601648"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="222.601648" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="221.60164800000004" y2="221.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="221.60164800000004" y2="222.601648"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="222.601648" y2="222.601648"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="225.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="224.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="224.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="225.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="225.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="224.10164800000004" y2="224.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="224.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="225.10164800000004" y2="225.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="227.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="226.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="226.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="227.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="227.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="226.60164800000004" y2="226.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="226.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="227.60164800000004" y2="227.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="230.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="229.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="229.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="230.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="230.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="229.10164800000004" y2="229.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="229.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="230.10164800000004" y2="230.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="232.60164800000004" y2="231.601648"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="231.601648" y2="231.601648"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="231.601648" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="232.60164800000004" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="232.60164800000004" y2="231.601648"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="231.601648" y2="231.601648"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="231.601648" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="232.60164800000004" y2="232.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="235.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="234.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="234.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="235.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="235.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="234.10164800000004" y2="234.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="234.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="235.10164800000004" y2="235.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="237.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="236.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="236.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="237.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="237.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="236.60164800000004" y2="236.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="236.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="237.60164800000004" y2="237.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="240.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="239.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="239.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="240.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="240.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="239.10164800000004" y2="239.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="239.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="240.10164800000004" y2="240.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="242.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="241.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="241.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="242.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="242.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="241.60164800000004" y2="241.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="241.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="242.60164800000004" y2="242.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="245.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="244.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="244.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="245.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="245.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="244.10164800000004" y2="244.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="244.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="245.10164800000004" y2="245.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="247.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="246.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="246.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="247.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="247.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="246.60164800000004" y2="246.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="246.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="247.60164800000004" y2="247.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="250.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="249.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="249.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="250.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="419.50000000000006" y1="250.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="419.50000000000006" x2="420.50000000000006" y1="249.10164800000004" y2="249.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="420.50000000000006" y1="249.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="420.50000000000006" x2="419.50000000000006" y1="250.10164800000004" y2="250.10164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="399.50000000000006" y1="252.60164800000004" y2="251.60164800000004"/>
+  <line stroke="#888888" x1="399.50000000000006" x2="400.5" y1="251.60164800000004" y2="251.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="400.5" y1="251.60164800000004" y2="252.60164800000004"/>
+  <line stroke="#888888" x1="400.5" x2="399.50000000000006" y1="252.60164800000004" y2="252.60164800000004"/>
+  <line stroke="#888888" x1="418.5" x2="418.5" y1="253.60164800000004" y2="250.60164800000004"/>
+  <line stroke="#888888" x1="418.5" x2="421.50000000000006" y1="250.60164800000004" y2="250.60164800000004"/>
+  <line stroke="#888888" x1="421.50000000000006" x2="421.50000000000006" y1="250.60164800000004" y2="253.60164800000004"/>
+  <line stroke="#888888" x1="421.50000000000006" x2="418.5" y1="253.60164800000004" y2="253.60164800000004"/>
+  <line stroke="#888888" x1="414.25" x2="405.75000000000006" y1="210.60164800000004" y2="210.60164800000004"/>
+  <line stroke="#888888" x1="405.75000000000006" x2="405.75000000000006" y1="210.60164800000004" y2="210.10164800000004"/>
+  <line stroke="#888888" x1="405.75000000000006" x2="414.25" y1="210.10164800000004" y2="210.10164800000004"/>
+  <line stroke="#888888" x1="414.25" x2="414.25" y1="210.10164800000004" y2="210.60164800000004"/>
+  <line stroke="#888888" x1="405.75000000000006" x2="414.25" y1="258.35164800000007" y2="258.35164800000007"/>
+  <line stroke="#888888" x1="414.25" x2="414.25" y1="258.35164800000007" y2="258.85164800000007"/>
+  <line stroke="#888888" x1="414.25" x2="405.75000000000006" y1="258.85164800000007" y2="258.85164800000007"/>
+  <line stroke="#888888" x1="405.75000000000006" x2="405.75000000000006" y1="258.85164800000007" y2="258.35164800000007"/>
+  <line stroke="#888888" x1="390.50000000000006" x2="395.5" y1="213.94255709090913" y2="213.94255709090913"/>
+  <line stroke="#888888" x1="395.5" x2="395.5" y1="213.94255709090913" y2="225.03346618181823"/>
+  <line stroke="#888888" x1="395.5" x2="390.50000000000006" y1="225.03346618181823" y2="225.03346618181823"/>
+  <line stroke="#888888" x1="390.50000000000006" x2="395.5" y1="241.66982981818185" y2="241.66982981818185"/>
+  <line stroke="#888888" x1="395.5" x2="395.5" y1="241.66982981818185" y2="252.76073890909095"/>
+  <line stroke="#888888" x1="395.5" x2="390.50000000000006" y1="252.76073890909095" y2="252.76073890909095"/>
+  <line stroke="#888888" x1="416.75000000000006" x2="420.25000000000006" y1="186.85164800000004" y2="186.85164800000004"/>
+  <line stroke="#888888" x1="420.25000000000006" x2="420.25000000000006" y1="186.85164800000004" y2="194.85164800000004"/>
+  <line stroke="#888888" x1="420.25000000000006" x2="416.75000000000006" y1="194.85164800000004" y2="194.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="586.0000000000001" x2="646.0" y1="172.65137327679875" y2="172.65137327679875"/>
+  <line stroke="#000000" x1="646.0" x2="646.0" y1="209.05192272320133" y2="172.65137327679875"/>
+  <line stroke="#000000" x1="586.0000000000001" x2="646.0" y1="209.05192272320133" y2="209.05192272320133"/>
+  <line stroke="#000000" x1="586.0000000000001" x2="586.0000000000001" y1="172.65137327679875" y2="209.05192272320133"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="646.0" x2="586.0000000000001" y1="148.65137327679872" y2="148.65137327679872"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="646.0" x2="646.0" y1="148.65137327679872" y2="172.65137327679875"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="586.0000000000001" x2="586.0000000000001" y1="172.65137327679875" y2="148.65137327679872"/>
+  <line stroke="#000000" x1="586.0000000000001" x2="586.0000000000001" y1="112.25082383039613" y2="148.65137327679872"/>
+  <line stroke="#000000" x1="646.0" x2="586.0000000000001" y1="112.25082383039613" y2="112.25082383039613"/>
+  <line stroke="#000000" x1="646.0" x2="646.0" y1="148.65137327679872" y2="112.25082383039613"/>
+  <line stroke="#000000" x1="656.0" x2="646.0" y1="148.65137327679872" y2="148.65137327679872"/>
+  <line stroke="#000000" x1="656.0" x2="656.0" y1="172.65137327679875" y2="148.65137327679872"/>
+  <line stroke="#000000" x1="646.0" x2="656.0" y1="172.65137327679875" y2="172.65137327679875"/>
+  <line stroke="#000000" x1="576.0000000000001" x2="586.0000000000001" y1="172.65137327679875" y2="172.65137327679875"/>
+  <line stroke="#000000" x1="576.0000000000001" x2="576.0000000000001" y1="148.65137327679872" y2="172.65137327679875"/>
+  <line stroke="#000000" x1="586.0000000000001" x2="576.0000000000001" y1="148.65137327679872" y2="148.65137327679872"/>
+  <line stroke="#888888" x1="603.5000000000001" x2="614.5000000000001" y1="154.15137327679875" y2="154.15137327679875"/>
+  <line stroke="#888888" x1="614.5000000000001" x2="614.5000000000001" y1="154.15137327679875" y2="167.15137327679875"/>
+  <line stroke="#888888" x1="614.5000000000001" x2="603.5000000000001" y1="167.15137327679875" y2="167.15137327679875"/>
+  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="167.15137327679875" y2="154.15137327679875"/>
+  <line stroke="#888888" x1="635.0000000000001" x2="641.0000000000001" y1="155.65137327679872" y2="155.65137327679872"/>
+  <line stroke="#888888" x1="641.0000000000001" x2="641.0000000000001" y1="155.65137327679872" y2="165.65137327679875"/>
+  <line stroke="#888888" x1="641.0000000000001" x2="635.0000000000001" y1="165.65137327679875" y2="165.65137327679875"/>
+  <line stroke="#888888" x1="635.0000000000001" x2="635.0000000000001" y1="165.65137327679875" y2="155.65137327679872"/>
+  <line stroke="#888888" x1="653.5000000000001" x2="648.5000000000001" y1="164.65137327679872" y2="164.65137327679872"/>
+  <line stroke="#888888" x1="648.5000000000001" x2="648.5000000000001" y1="164.65137327679872" y2="156.65137327679875"/>
+  <line stroke="#888888" x1="648.5000000000001" x2="653.5000000000001" y1="156.65137327679875" y2="156.65137327679875"/>
+  <line stroke="#888888" x1="578.5000000000001" x2="583.5" y1="156.65137327679875" y2="156.65137327679875"/>
+  <line stroke="#888888" x1="583.5" x2="583.5" y1="156.65137327679875" y2="164.65137327679872"/>
+  <line stroke="#888888" x1="583.5" x2="578.5000000000001" y1="164.65137327679872" y2="164.65137327679872"/>
+</svg>
diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-model.png b/rocolib/output/BoatWithServoMountAndStack/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..951f49fdb39e31607171079966f5ad596db7bca3
Binary files /dev/null and b/rocolib/output/BoatWithServoMountAndStack/graph-model.png differ
diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-model.stl b/rocolib/output/BoatWithServoMountAndStack/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..f775f06c80d445a5b06ab718a06a378da21531e9
--- /dev/null
+++ b/rocolib/output/BoatWithServoMountAndStack/graph-model.stl
@@ -0,0 +1,3768 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.1370 0.0000
+vertex -0.0250 -0.1370 0.0000
+vertex 0.0250 -0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.1370 0.0000
+vertex 0.0250 0.1370 0.0000
+vertex -0.0250 0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.1370 -0.0200
+vertex -0.0250 -0.1370 -0.0200
+vertex -0.0250 -0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.1370 0.0000
+vertex -0.0250 0.1370 0.0000
+vertex -0.0250 0.1370 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.1370 0.0000
+vertex 0.0250 -0.1370 0.0000
+vertex 0.0250 -0.1370 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.1370 -0.0200
+vertex 0.0250 0.1370 -0.0200
+vertex 0.0250 0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.1370 0.0000
+vertex -0.0250 -0.1370 -0.0200
+vertex -0.0213 -0.1443 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0213 -0.1443 -0.0200
+vertex 0.0000 -0.1870 -0.0200
+vertex -0.0250 -0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 -0.1370 0.0000
+vertex -0.0250 -0.1370 0.0000
+vertex -0.0000 -0.1870 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0000 -0.1370 0.0000
+vertex 0.0000 -0.1870 -0.0200
+vertex 0.0250 -0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0213 -0.1443 -0.0200
+vertex 0.0250 -0.1370 -0.0200
+vertex 0.0250 -0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.1370 0.0000
+vertex 0.0000 -0.1870 -0.0200
+vertex 0.0213 -0.1443 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.1370 -0.0200
+vertex -0.0250 -0.1370 0.0000
+vertex -0.0213 -0.1443 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.1370 -0.0200
+vertex -0.0213 -0.1443 -0.0200
+vertex -0.0250 -0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.1370 -0.0200
+vertex 0.0213 -0.1443 -0.0200
+vertex 0.0250 -0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.1370 -0.0200
+vertex 0.0250 -0.1370 0.0000
+vertex 0.0213 -0.1443 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.1370 0.0000
+vertex 0.0250 0.1370 -0.0200
+vertex 0.0213 0.1443 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0213 0.1443 -0.0200
+vertex -0.0000 0.1870 -0.0200
+vertex 0.0250 0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 0.1370 0.0000
+vertex 0.0250 0.1370 0.0000
+vertex -0.0000 0.1870 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 0.1370 0.0000
+vertex -0.0000 0.1870 -0.0200
+vertex -0.0250 0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0213 0.1443 -0.0200
+vertex -0.0250 0.1370 -0.0200
+vertex -0.0250 0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.1370 0.0000
+vertex -0.0000 0.1870 -0.0200
+vertex -0.0213 0.1443 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.1370 -0.0200
+vertex 0.0250 0.1370 0.0000
+vertex 0.0213 0.1443 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.1370 -0.0200
+vertex 0.0213 0.1443 -0.0200
+vertex 0.0250 0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.1370 -0.0200
+vertex -0.0213 0.1443 -0.0200
+vertex -0.0250 0.1370 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.1370 -0.0200
+vertex -0.0250 0.1370 0.0000
+vertex -0.0213 0.1443 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0130 0.0140
+vertex -0.0400 0.0130 0.0030
+vertex -0.0400 0.0130 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0400 0.0130 0.0030
+vertex -0.0250 0.0130 0.0140
+vertex -0.0450 0.0130 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0130 -0.0200
+vertex -0.0400 0.0130 -0.0090
+vertex -0.0450 0.0130 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0400 0.0130 -0.0090
+vertex -0.0250 0.0130 -0.0200
+vertex -0.0250 0.0130 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0440 0.0130 0.0030
+vertex -0.0450 0.0130 0.0140
+vertex -0.0450 0.0130 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0130 0.0140
+vertex -0.0440 0.0130 0.0030
+vertex -0.0400 0.0130 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0440 0.0130 -0.0090
+vertex -0.0450 0.0130 -0.0200
+vertex -0.0400 0.0130 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0130 -0.0200
+vertex -0.0440 0.0130 -0.0090
+vertex -0.0440 0.0130 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0130 0.0140
+vertex -0.0450 0.0135 0.0030
+vertex -0.0450 0.0135 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0135 0.0030
+vertex -0.0450 0.0130 0.0140
+vertex -0.0450 0.0370 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0130 -0.0200
+vertex -0.0450 0.0135 -0.0090
+vertex -0.0450 0.0365 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0135 -0.0090
+vertex -0.0450 0.0130 -0.0200
+vertex -0.0450 0.0130 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0365 0.0030
+vertex -0.0450 0.0370 0.0140
+vertex -0.0450 0.0370 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0370 0.0140
+vertex -0.0450 0.0365 0.0030
+vertex -0.0450 0.0135 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0365 -0.0090
+vertex -0.0450 0.0370 -0.0200
+vertex -0.0450 0.0130 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0370 -0.0200
+vertex -0.0450 0.0365 -0.0090
+vertex -0.0450 0.0365 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0370 0.0140
+vertex -0.0400 0.0370 0.0030
+vertex -0.0440 0.0370 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0400 0.0370 0.0030
+vertex -0.0450 0.0370 0.0140
+vertex -0.0250 0.0370 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0370 0.0140
+vertex -0.0440 0.0370 0.0030
+vertex -0.0440 0.0370 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0370 -0.0200
+vertex -0.0440 0.0370 -0.0090
+vertex -0.0400 0.0370 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0440 0.0370 -0.0090
+vertex -0.0450 0.0370 -0.0200
+vertex -0.0450 0.0370 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0370 -0.0200
+vertex -0.0400 0.0370 -0.0090
+vertex -0.0250 0.0370 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0400 0.0370 0.0030
+vertex -0.0320 0.0370 0.0015
+vertex -0.0400 0.0370 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0320 0.0370 0.0015
+vertex -0.0250 0.0370 0.0140
+vertex -0.0280 0.0370 0.0015
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0370 0.0140
+vertex -0.0320 0.0370 0.0015
+vertex -0.0400 0.0370 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0280 0.0370 0.0015
+vertex -0.0250 0.0370 0.0140
+vertex -0.0250 0.0370 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0320 0.0370 -0.0075
+vertex -0.0280 0.0370 -0.0075
+vertex -0.0250 0.0370 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0370 -0.0200
+vertex -0.0280 0.0370 -0.0075
+vertex -0.0280 0.0370 0.0015
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0320 0.0370 -0.0075
+vertex -0.0250 0.0370 -0.0200
+vertex -0.0400 0.0370 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0320 0.0370 0.0015
+vertex -0.0320 0.0370 -0.0075
+vertex -0.0400 0.0370 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0370 -0.0200
+vertex -0.0250 0.0370 0.0140
+vertex -0.0250 0.0130 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0130 0.0140
+vertex -0.0250 0.0130 -0.0200
+vertex -0.0250 0.0370 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0130 -0.0200
+vertex 0.0400 0.0130 -0.0090
+vertex 0.0400 0.0130 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0400 0.0130 -0.0090
+vertex 0.0250 0.0130 -0.0200
+vertex 0.0450 0.0130 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0130 0.0140
+vertex 0.0400 0.0130 0.0030
+vertex 0.0450 0.0130 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0400 0.0130 0.0030
+vertex 0.0250 0.0130 0.0140
+vertex 0.0250 0.0130 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0440 0.0130 -0.0090
+vertex 0.0450 0.0130 -0.0200
+vertex 0.0450 0.0130 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0130 -0.0200
+vertex 0.0440 0.0130 -0.0090
+vertex 0.0400 0.0130 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0440 0.0130 0.0030
+vertex 0.0450 0.0130 0.0140
+vertex 0.0400 0.0130 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0130 0.0140
+vertex 0.0440 0.0130 0.0030
+vertex 0.0440 0.0130 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0130 -0.0200
+vertex 0.0450 0.0135 -0.0090
+vertex 0.0450 0.0135 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0135 -0.0090
+vertex 0.0450 0.0130 -0.0200
+vertex 0.0450 0.0370 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0130 0.0140
+vertex 0.0450 0.0135 0.0030
+vertex 0.0450 0.0365 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0135 0.0030
+vertex 0.0450 0.0130 0.0140
+vertex 0.0450 0.0130 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0365 -0.0090
+vertex 0.0450 0.0370 -0.0200
+vertex 0.0450 0.0370 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0370 -0.0200
+vertex 0.0450 0.0365 -0.0090
+vertex 0.0450 0.0135 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0365 0.0030
+vertex 0.0450 0.0370 0.0140
+vertex 0.0450 0.0130 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0370 0.0140
+vertex 0.0450 0.0365 0.0030
+vertex 0.0450 0.0365 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0370 -0.0200
+vertex 0.0400 0.0370 -0.0090
+vertex 0.0440 0.0370 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0400 0.0370 -0.0090
+vertex 0.0450 0.0370 -0.0200
+vertex 0.0250 0.0370 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0370 -0.0200
+vertex 0.0440 0.0370 -0.0090
+vertex 0.0440 0.0370 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0370 0.0140
+vertex 0.0440 0.0370 0.0030
+vertex 0.0400 0.0370 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0440 0.0370 0.0030
+vertex 0.0450 0.0370 0.0140
+vertex 0.0450 0.0370 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0370 0.0140
+vertex 0.0400 0.0370 0.0030
+vertex 0.0250 0.0370 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0400 0.0370 -0.0090
+vertex 0.0320 0.0370 -0.0075
+vertex 0.0400 0.0370 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0320 0.0370 -0.0075
+vertex 0.0250 0.0370 -0.0200
+vertex 0.0280 0.0370 -0.0075
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0370 -0.0200
+vertex 0.0320 0.0370 -0.0075
+vertex 0.0400 0.0370 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0280 0.0370 -0.0075
+vertex 0.0250 0.0370 -0.0200
+vertex 0.0250 0.0370 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0320 0.0370 0.0015
+vertex 0.0280 0.0370 0.0015
+vertex 0.0250 0.0370 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0370 0.0140
+vertex 0.0280 0.0370 0.0015
+vertex 0.0280 0.0370 -0.0075
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0320 0.0370 0.0015
+vertex 0.0250 0.0370 0.0140
+vertex 0.0400 0.0370 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0320 0.0370 -0.0075
+vertex 0.0320 0.0370 0.0015
+vertex 0.0400 0.0370 0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0370 0.0140
+vertex 0.0250 0.0370 -0.0200
+vertex 0.0250 0.0130 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0130 -0.0200
+vertex 0.0250 0.0130 0.0140
+vertex 0.0250 0.0370 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0120 0.0000
+vertex -0.0300 -0.0120 0.0000
+vertex 0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0120 0.0000
+vertex 0.0300 0.0120 0.0000
+vertex -0.0300 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0182 0.0000
+vertex -0.0300 -0.0182 0.0000
+vertex 0.0300 -0.0182 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0182 0.0000
+vertex 0.0300 0.0182 0.0000
+vertex -0.0300 0.0182 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0352 -0.0534
+vertex 0.0300 -0.0352 -0.0170
+vertex -0.0300 -0.0352 -0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0352 -0.0170
+vertex -0.0300 -0.0352 -0.0534
+vertex 0.0300 -0.0352 -0.0534
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0352 -0.0170
+vertex -0.0015 -0.0313 -0.0131
+vertex -0.0125 -0.0313 -0.0131
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0015 -0.0313 -0.0131
+vertex -0.0300 -0.0352 -0.0170
+vertex 0.0300 -0.0352 -0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0352 -0.0170
+vertex -0.0125 -0.0313 -0.0131
+vertex -0.0125 -0.0221 -0.0039
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0182 0.0000
+vertex -0.0125 -0.0221 -0.0039
+vertex -0.0015 -0.0221 -0.0039
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0125 -0.0221 -0.0039
+vertex -0.0300 -0.0182 0.0000
+vertex -0.0300 -0.0352 -0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0182 0.0000
+vertex -0.0015 -0.0221 -0.0039
+vertex 0.0300 -0.0182 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0015 -0.0313 -0.0131
+vertex 0.0190 -0.0302 -0.0120
+vertex -0.0015 -0.0221 -0.0039
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0190 -0.0302 -0.0120
+vertex 0.0300 -0.0352 -0.0170
+vertex 0.0250 -0.0302 -0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0352 -0.0170
+vertex 0.0190 -0.0302 -0.0120
+vertex -0.0015 -0.0313 -0.0131
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0302 -0.0120
+vertex 0.0300 -0.0352 -0.0170
+vertex 0.0300 -0.0182 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0190 -0.0232 -0.0049
+vertex 0.0250 -0.0232 -0.0049
+vertex 0.0300 -0.0182 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0182 0.0000
+vertex 0.0250 -0.0232 -0.0049
+vertex 0.0250 -0.0302 -0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0190 -0.0232 -0.0049
+vertex 0.0300 -0.0182 0.0000
+vertex -0.0015 -0.0221 -0.0039
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0190 -0.0302 -0.0120
+vertex 0.0190 -0.0232 -0.0049
+vertex -0.0015 -0.0221 -0.0039
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0120 0.0000
+vertex -0.0300 -0.0115 -0.0103
+vertex -0.0300 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0115 -0.0132
+vertex -0.0300 -0.0105 -0.0138
+vertex -0.0300 -0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0115 -0.0103
+vertex -0.0300 -0.0120 0.0000
+vertex -0.0300 -0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0120 0.0000
+vertex -0.0300 -0.0115 -0.0132
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0148
+vertex -0.0300 -0.0105 -0.0163
+vertex -0.0300 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0163
+vertex -0.0300 -0.0105 -0.0148
+vertex -0.0300 -0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0173
+vertex -0.0300 -0.0105 -0.0187
+vertex -0.0300 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0187
+vertex -0.0300 -0.0105 -0.0173
+vertex -0.0300 -0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0163
+vertex -0.0300 -0.0105 -0.0173
+vertex -0.0300 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0115 -0.0132
+vertex -0.0300 -0.0105 -0.0187
+vertex -0.0300 -0.0105 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0198
+vertex -0.0300 -0.0105 -0.0213
+vertex -0.0300 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0213
+vertex -0.0300 -0.0105 -0.0198
+vertex -0.0300 -0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0222
+vertex -0.0300 -0.0105 -0.0238
+vertex -0.0300 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0238
+vertex -0.0300 -0.0105 -0.0222
+vertex -0.0300 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0213
+vertex -0.0300 -0.0105 -0.0222
+vertex -0.0300 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0248
+vertex -0.0300 -0.0105 -0.0262
+vertex -0.0300 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0262
+vertex -0.0300 -0.0105 -0.0248
+vertex -0.0300 -0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0272
+vertex -0.0300 -0.0105 -0.0288
+vertex -0.0300 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0288
+vertex -0.0300 -0.0105 -0.0272
+vertex -0.0300 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0262
+vertex -0.0300 -0.0105 -0.0272
+vertex -0.0300 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0238
+vertex -0.0300 -0.0105 -0.0248
+vertex -0.0300 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0115 -0.0132
+vertex -0.0300 -0.0105 -0.0288
+vertex -0.0300 -0.0105 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0163
+vertex -0.0300 -0.0105 -0.0163
+vertex -0.0300 -0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0148
+vertex -0.0300 -0.0095 -0.0138
+vertex -0.0300 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0187
+vertex -0.0300 -0.0105 -0.0187
+vertex -0.0300 -0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0173
+vertex -0.0300 -0.0095 -0.0163
+vertex -0.0300 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0148
+vertex -0.0300 -0.0085 -0.0132
+vertex -0.0300 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0173
+vertex -0.0300 0.0095 -0.0173
+vertex -0.0300 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0085 -0.0132
+vertex -0.0300 -0.0085 -0.0103
+vertex -0.0300 0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0213
+vertex -0.0300 -0.0105 -0.0213
+vertex -0.0300 -0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0187
+vertex -0.0300 -0.0095 -0.0198
+vertex -0.0300 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0198
+vertex -0.0300 0.0095 -0.0198
+vertex -0.0300 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0138
+vertex -0.0300 -0.0115 -0.0132
+vertex -0.0300 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0138
+vertex -0.0300 -0.0115 -0.0132
+vertex -0.0300 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0238
+vertex -0.0300 -0.0105 -0.0238
+vertex -0.0300 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0213
+vertex -0.0300 -0.0095 -0.0222
+vertex -0.0300 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0248
+vertex -0.0300 -0.0095 -0.0262
+vertex -0.0300 -0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0238
+vertex -0.0300 -0.0095 -0.0222
+vertex -0.0300 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0248
+vertex -0.0300 -0.0095 -0.0262
+vertex -0.0300 -0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0272
+vertex -0.0300 -0.0095 -0.0288
+vertex -0.0300 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0288
+vertex -0.0300 -0.0095 -0.0298
+vertex -0.0300 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0272
+vertex -0.0300 -0.0095 -0.0262
+vertex -0.0300 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0288
+vertex -0.0300 -0.0105 -0.0288
+vertex -0.0300 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0248
+vertex -0.0300 -0.0095 -0.0238
+vertex -0.0300 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0298
+vertex -0.0300 -0.0095 -0.0298
+vertex -0.0300 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0298
+vertex -0.0300 0.0095 -0.0298
+vertex -0.0300 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0120 0.0000
+vertex -0.0300 0.0120 0.0000
+vertex -0.0300 -0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0115 -0.0132
+vertex -0.0300 -0.0105 -0.0298
+vertex -0.0300 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0338
+vertex -0.0300 -0.0115 -0.0132
+vertex -0.0300 -0.0105 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0348
+vertex -0.0300 -0.0120 -0.0610
+vertex -0.0300 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0323
+vertex -0.0300 -0.0095 -0.0323
+vertex -0.0300 -0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0348
+vertex -0.0300 -0.0115 -0.0132
+vertex -0.0300 -0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0362
+vertex -0.0300 -0.0105 -0.0372
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0387
+vertex -0.0300 -0.0105 -0.0398
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0372
+vertex -0.0300 -0.0095 -0.0372
+vertex -0.0300 -0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0372
+vertex -0.0300 -0.0105 -0.0387
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0348
+vertex -0.0300 -0.0095 -0.0348
+vertex -0.0300 -0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0348
+vertex -0.0300 -0.0105 -0.0362
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0413
+vertex -0.0300 -0.0105 -0.0423
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0120 -0.0610
+vertex -0.0300 -0.0105 -0.0438
+vertex -0.0300 -0.0105 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0438
+vertex -0.0300 -0.0120 -0.0610
+vertex -0.0300 -0.0105 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0423
+vertex -0.0300 -0.0095 -0.0423
+vertex -0.0300 -0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0413
+vertex -0.0300 -0.0120 -0.0610
+vertex -0.0300 -0.0105 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0447
+vertex -0.0300 -0.0105 -0.0462
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0462
+vertex -0.0300 -0.0105 -0.0447
+vertex -0.0300 -0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0473
+vertex -0.0300 -0.0105 -0.0488
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0488
+vertex -0.0300 -0.0105 -0.0473
+vertex -0.0300 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0462
+vertex -0.0300 -0.0105 -0.0473
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0120 -0.0610
+vertex -0.0300 -0.0105 -0.0488
+vertex -0.0300 -0.0105 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0398
+vertex -0.0300 -0.0095 -0.0398
+vertex -0.0300 -0.0105 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0323
+vertex -0.0300 -0.0115 -0.0132
+vertex -0.0300 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0338
+vertex -0.0300 -0.0105 -0.0338
+vertex -0.0300 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0312
+vertex -0.0300 -0.0095 -0.0323
+vertex -0.0300 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0362
+vertex -0.0300 -0.0105 -0.0362
+vertex -0.0300 -0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0338
+vertex -0.0300 -0.0095 -0.0348
+vertex -0.0300 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0338
+vertex -0.0300 -0.0095 -0.0323
+vertex -0.0300 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0387
+vertex -0.0300 -0.0105 -0.0387
+vertex -0.0300 -0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0362
+vertex -0.0300 -0.0095 -0.0372
+vertex -0.0300 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0413
+vertex -0.0300 -0.0105 -0.0413
+vertex -0.0300 -0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0387
+vertex -0.0300 -0.0095 -0.0398
+vertex -0.0300 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0387
+vertex -0.0300 -0.0095 -0.0372
+vertex -0.0300 0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0362
+vertex -0.0300 -0.0095 -0.0348
+vertex -0.0300 0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0438
+vertex -0.0300 -0.0105 -0.0438
+vertex -0.0300 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0413
+vertex -0.0300 -0.0095 -0.0423
+vertex -0.0300 -0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0447
+vertex -0.0300 -0.0095 -0.0462
+vertex -0.0300 -0.0105 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0438
+vertex -0.0300 -0.0095 -0.0423
+vertex -0.0300 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0085 -0.0478
+vertex -0.0300 -0.0095 -0.0462
+vertex -0.0300 -0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0085 -0.0478
+vertex -0.0300 -0.0095 -0.0488
+vertex -0.0300 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0085 -0.0478
+vertex -0.0300 -0.0095 -0.0498
+vertex -0.0300 -0.0095 -0.0488
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0473
+vertex -0.0300 -0.0095 -0.0462
+vertex -0.0300 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0488
+vertex -0.0300 -0.0105 -0.0488
+vertex -0.0300 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0447
+vertex -0.0300 -0.0095 -0.0438
+vertex -0.0300 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0498
+vertex -0.0300 -0.0095 -0.0498
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0413
+vertex -0.0300 -0.0095 -0.0398
+vertex -0.0300 0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0105 -0.0312
+vertex -0.0300 -0.0105 -0.0298
+vertex -0.0300 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0120 -0.0610
+vertex -0.0300 -0.0095 -0.0498
+vertex -0.0300 0.0085 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0173
+vertex -0.0300 -0.0095 -0.0173
+vertex -0.0300 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0138
+vertex -0.0300 -0.0085 -0.0132
+vertex -0.0300 0.0095 -0.0123
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0163
+vertex -0.0300 -0.0085 -0.0132
+vertex -0.0300 0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0123
+vertex -0.0300 0.0105 -0.0123
+vertex -0.0300 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0148
+vertex -0.0300 -0.0085 -0.0132
+vertex -0.0300 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0187
+vertex -0.0300 -0.0095 -0.0187
+vertex -0.0300 0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0213
+vertex -0.0300 -0.0095 -0.0213
+vertex -0.0300 0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0173
+vertex -0.0300 0.0105 -0.0173
+vertex -0.0300 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0198
+vertex -0.0300 -0.0095 -0.0198
+vertex -0.0300 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0148
+vertex -0.0300 0.0105 -0.0148
+vertex -0.0300 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0173
+vertex -0.0300 -0.0085 -0.0132
+vertex -0.0300 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0238
+vertex -0.0300 -0.0095 -0.0238
+vertex -0.0300 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0262
+vertex -0.0300 -0.0095 -0.0262
+vertex -0.0300 0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0222
+vertex -0.0300 0.0105 -0.0222
+vertex -0.0300 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0248
+vertex -0.0300 -0.0095 -0.0248
+vertex -0.0300 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0288
+vertex -0.0300 -0.0095 -0.0288
+vertex -0.0300 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0312
+vertex -0.0300 -0.0095 -0.0312
+vertex -0.0300 0.0095 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0272
+vertex -0.0300 0.0105 -0.0272
+vertex -0.0300 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0298
+vertex -0.0300 -0.0095 -0.0298
+vertex -0.0300 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0248
+vertex -0.0300 0.0105 -0.0248
+vertex -0.0300 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0272
+vertex -0.0300 -0.0095 -0.0272
+vertex -0.0300 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0198
+vertex -0.0300 0.0105 -0.0198
+vertex -0.0300 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0222
+vertex -0.0300 -0.0095 -0.0222
+vertex -0.0300 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0123
+vertex -0.0300 0.0105 -0.0112
+vertex -0.0300 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0148
+vertex -0.0300 0.0105 -0.0138
+vertex -0.0300 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0123
+vertex -0.0300 0.0120 0.0000
+vertex -0.0300 0.0105 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0123
+vertex -0.0300 0.0105 -0.0138
+vertex -0.0300 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0163
+vertex -0.0300 0.0120 0.0000
+vertex -0.0300 0.0105 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0120 0.0000
+vertex -0.0300 0.0105 -0.0163
+vertex -0.0300 0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0173
+vertex -0.0300 0.0105 -0.0187
+vertex -0.0300 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0187
+vertex -0.0300 0.0105 -0.0173
+vertex -0.0300 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0120 0.0000
+vertex -0.0300 0.0105 -0.0198
+vertex -0.0300 0.0105 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0112
+vertex -0.0300 0.0095 -0.0112
+vertex -0.0300 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0148
+vertex -0.0300 0.0105 -0.0163
+vertex -0.0300 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0198
+vertex -0.0300 0.0105 -0.0213
+vertex -0.0300 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0213
+vertex -0.0300 0.0105 -0.0198
+vertex -0.0300 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0222
+vertex -0.0300 0.0105 -0.0238
+vertex -0.0300 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0238
+vertex -0.0300 0.0105 -0.0222
+vertex -0.0300 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0213
+vertex -0.0300 0.0120 0.0000
+vertex -0.0300 0.0105 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0248
+vertex -0.0300 0.0105 -0.0262
+vertex -0.0300 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0262
+vertex -0.0300 0.0105 -0.0248
+vertex -0.0300 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0272
+vertex -0.0300 0.0105 -0.0288
+vertex -0.0300 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0115 -0.0478
+vertex -0.0300 0.0105 -0.0288
+vertex -0.0300 0.0105 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0115 -0.0478
+vertex -0.0300 0.0105 -0.0298
+vertex -0.0300 0.0105 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0272
+vertex -0.0300 0.0105 -0.0262
+vertex -0.0300 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0238
+vertex -0.0300 0.0120 0.0000
+vertex -0.0300 0.0105 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0120 0.0000
+vertex -0.0300 0.0115 -0.0478
+vertex -0.0300 0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0112
+vertex -0.0300 -0.0085 -0.0103
+vertex -0.0300 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0298
+vertex -0.0300 0.0105 -0.0298
+vertex -0.0300 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0338
+vertex -0.0300 -0.0095 -0.0338
+vertex -0.0300 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0362
+vertex -0.0300 -0.0095 -0.0362
+vertex -0.0300 0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0323
+vertex -0.0300 0.0105 -0.0323
+vertex -0.0300 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0348
+vertex -0.0300 -0.0095 -0.0348
+vertex -0.0300 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0387
+vertex -0.0300 -0.0095 -0.0387
+vertex -0.0300 0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0413
+vertex -0.0300 -0.0095 -0.0413
+vertex -0.0300 0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0372
+vertex -0.0300 0.0105 -0.0372
+vertex -0.0300 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0398
+vertex -0.0300 -0.0095 -0.0398
+vertex -0.0300 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0348
+vertex -0.0300 0.0105 -0.0348
+vertex -0.0300 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0372
+vertex -0.0300 -0.0095 -0.0372
+vertex -0.0300 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0438
+vertex -0.0300 -0.0095 -0.0438
+vertex -0.0300 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0085 -0.0478
+vertex -0.0300 0.0085 -0.0508
+vertex -0.0300 -0.0095 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0115 -0.0478
+vertex -0.0300 0.0085 -0.0478
+vertex -0.0300 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0438
+vertex -0.0300 0.0095 -0.0438
+vertex -0.0300 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0423
+vertex -0.0300 0.0095 -0.0413
+vertex -0.0300 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0438
+vertex -0.0300 0.0095 -0.0447
+vertex -0.0300 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0462
+vertex -0.0300 0.0095 -0.0473
+vertex -0.0300 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0447
+vertex -0.0300 0.0105 -0.0447
+vertex -0.0300 0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0447
+vertex -0.0300 0.0095 -0.0462
+vertex -0.0300 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0423
+vertex -0.0300 0.0105 -0.0423
+vertex -0.0300 0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0473
+vertex -0.0300 0.0105 -0.0473
+vertex -0.0300 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0398
+vertex -0.0300 0.0105 -0.0398
+vertex -0.0300 0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0095 -0.0323
+vertex -0.0300 0.0095 -0.0312
+vertex -0.0300 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0323
+vertex -0.0300 0.0105 -0.0312
+vertex -0.0300 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0348
+vertex -0.0300 0.0105 -0.0338
+vertex -0.0300 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0323
+vertex -0.0300 0.0115 -0.0478
+vertex -0.0300 0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0323
+vertex -0.0300 0.0105 -0.0338
+vertex -0.0300 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0372
+vertex -0.0300 0.0105 -0.0362
+vertex -0.0300 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0398
+vertex -0.0300 0.0105 -0.0387
+vertex -0.0300 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0372
+vertex -0.0300 0.0115 -0.0478
+vertex -0.0300 0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0372
+vertex -0.0300 0.0105 -0.0387
+vertex -0.0300 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0348
+vertex -0.0300 0.0115 -0.0478
+vertex -0.0300 0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0348
+vertex -0.0300 0.0105 -0.0362
+vertex -0.0300 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0423
+vertex -0.0300 0.0105 -0.0413
+vertex -0.0300 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0447
+vertex -0.0300 0.0105 -0.0438
+vertex -0.0300 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0423
+vertex -0.0300 0.0115 -0.0478
+vertex -0.0300 0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0423
+vertex -0.0300 0.0105 -0.0438
+vertex -0.0300 0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0473
+vertex -0.0300 0.0105 -0.0462
+vertex -0.0300 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0115 -0.0478
+vertex -0.0300 0.0120 -0.0610
+vertex -0.0300 0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0120 -0.0610
+vertex -0.0300 0.0115 -0.0478
+vertex -0.0300 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0120 -0.0610
+vertex -0.0300 0.0085 -0.0508
+vertex -0.0300 0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0462
+vertex -0.0300 0.0105 -0.0447
+vertex -0.0300 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0413
+vertex -0.0300 0.0105 -0.0398
+vertex -0.0300 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0447
+vertex -0.0300 0.0105 -0.0462
+vertex -0.0300 0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0312
+vertex -0.0300 0.0105 -0.0298
+vertex -0.0300 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0105 -0.0398
+vertex -0.0300 0.0105 -0.0413
+vertex -0.0300 0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0312
+vertex -0.0300 0.0095 -0.0298
+vertex -0.0300 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0085 -0.0508
+vertex -0.0300 0.0120 -0.0610
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0095 -0.0123
+vertex -0.0300 -0.0085 -0.0132
+vertex -0.0300 0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0120 0.0000
+vertex -0.0225 0.0120 -0.0335
+vertex -0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0225 0.0120 -0.0335
+vertex -0.0300 0.0120 0.0000
+vertex 0.0125 0.0120 -0.0335
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0120 -0.0610
+vertex -0.0225 0.0120 -0.0515
+vertex 0.0125 0.0120 -0.0515
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0225 0.0120 -0.0515
+vertex -0.0300 0.0120 -0.0610
+vertex -0.0225 0.0120 -0.0335
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0125 0.0120 -0.0335
+vertex 0.0300 0.0120 0.0000
+vertex 0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0120 0.0000
+vertex 0.0125 0.0120 -0.0335
+vertex -0.0300 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0125 0.0120 -0.0515
+vertex 0.0300 0.0120 -0.0610
+vertex -0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0120 -0.0610
+vertex 0.0125 0.0120 -0.0515
+vertex 0.0125 0.0120 -0.0335
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0120 0.0000
+vertex 0.0300 0.0115 -0.0103
+vertex 0.0300 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0115 -0.0132
+vertex 0.0300 0.0105 -0.0138
+vertex 0.0300 0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0115 -0.0103
+vertex 0.0300 0.0120 0.0000
+vertex 0.0300 0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0120 0.0000
+vertex 0.0300 0.0115 -0.0132
+vertex 0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0148
+vertex 0.0300 0.0105 -0.0163
+vertex 0.0300 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0163
+vertex 0.0300 0.0105 -0.0148
+vertex 0.0300 0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0173
+vertex 0.0300 0.0105 -0.0187
+vertex 0.0300 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0187
+vertex 0.0300 0.0105 -0.0173
+vertex 0.0300 0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0163
+vertex 0.0300 0.0105 -0.0173
+vertex 0.0300 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0115 -0.0132
+vertex 0.0300 0.0105 -0.0187
+vertex 0.0300 0.0105 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0198
+vertex 0.0300 0.0105 -0.0213
+vertex 0.0300 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0213
+vertex 0.0300 0.0105 -0.0198
+vertex 0.0300 0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0222
+vertex 0.0300 0.0105 -0.0238
+vertex 0.0300 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0238
+vertex 0.0300 0.0105 -0.0222
+vertex 0.0300 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0213
+vertex 0.0300 0.0105 -0.0222
+vertex 0.0300 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0248
+vertex 0.0300 0.0105 -0.0262
+vertex 0.0300 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0262
+vertex 0.0300 0.0105 -0.0248
+vertex 0.0300 0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0272
+vertex 0.0300 0.0105 -0.0288
+vertex 0.0300 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0288
+vertex 0.0300 0.0105 -0.0272
+vertex 0.0300 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0262
+vertex 0.0300 0.0105 -0.0272
+vertex 0.0300 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0238
+vertex 0.0300 0.0105 -0.0248
+vertex 0.0300 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0115 -0.0132
+vertex 0.0300 0.0105 -0.0288
+vertex 0.0300 0.0105 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0163
+vertex 0.0300 0.0105 -0.0163
+vertex 0.0300 0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0148
+vertex 0.0300 0.0095 -0.0138
+vertex 0.0300 0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0187
+vertex 0.0300 0.0105 -0.0187
+vertex 0.0300 0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0173
+vertex 0.0300 0.0095 -0.0163
+vertex 0.0300 0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0148
+vertex 0.0300 0.0085 -0.0132
+vertex 0.0300 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0173
+vertex 0.0300 -0.0095 -0.0173
+vertex 0.0300 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0085 -0.0132
+vertex 0.0300 0.0085 -0.0103
+vertex 0.0300 -0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0213
+vertex 0.0300 0.0105 -0.0213
+vertex 0.0300 0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0187
+vertex 0.0300 0.0095 -0.0198
+vertex 0.0300 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0198
+vertex 0.0300 -0.0095 -0.0198
+vertex 0.0300 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0138
+vertex 0.0300 0.0115 -0.0132
+vertex 0.0300 0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0138
+vertex 0.0300 0.0115 -0.0132
+vertex 0.0300 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0238
+vertex 0.0300 0.0105 -0.0238
+vertex 0.0300 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0213
+vertex 0.0300 0.0095 -0.0222
+vertex 0.0300 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0248
+vertex 0.0300 0.0095 -0.0262
+vertex 0.0300 0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0238
+vertex 0.0300 0.0095 -0.0222
+vertex 0.0300 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0248
+vertex 0.0300 0.0095 -0.0262
+vertex 0.0300 0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0272
+vertex 0.0300 0.0095 -0.0288
+vertex 0.0300 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0288
+vertex 0.0300 0.0095 -0.0298
+vertex 0.0300 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0272
+vertex 0.0300 0.0095 -0.0262
+vertex 0.0300 -0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0288
+vertex 0.0300 0.0105 -0.0288
+vertex 0.0300 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0248
+vertex 0.0300 0.0095 -0.0238
+vertex 0.0300 -0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0298
+vertex 0.0300 0.0095 -0.0298
+vertex 0.0300 0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0298
+vertex 0.0300 -0.0095 -0.0298
+vertex 0.0300 0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0120 0.0000
+vertex 0.0300 -0.0120 0.0000
+vertex 0.0300 0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0115 -0.0132
+vertex 0.0300 0.0105 -0.0298
+vertex 0.0300 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0338
+vertex 0.0300 0.0115 -0.0132
+vertex 0.0300 0.0105 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0348
+vertex 0.0300 0.0120 -0.0610
+vertex 0.0300 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0323
+vertex 0.0300 0.0095 -0.0323
+vertex 0.0300 0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0348
+vertex 0.0300 0.0115 -0.0132
+vertex 0.0300 0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0362
+vertex 0.0300 0.0105 -0.0372
+vertex 0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0387
+vertex 0.0300 0.0105 -0.0398
+vertex 0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0372
+vertex 0.0300 0.0095 -0.0372
+vertex 0.0300 0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0372
+vertex 0.0300 0.0105 -0.0387
+vertex 0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0348
+vertex 0.0300 0.0095 -0.0348
+vertex 0.0300 0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0348
+vertex 0.0300 0.0105 -0.0362
+vertex 0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0413
+vertex 0.0300 0.0105 -0.0423
+vertex 0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0120 -0.0610
+vertex 0.0300 0.0105 -0.0438
+vertex 0.0300 0.0105 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0438
+vertex 0.0300 0.0120 -0.0610
+vertex 0.0300 0.0105 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0423
+vertex 0.0300 0.0095 -0.0423
+vertex 0.0300 0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0413
+vertex 0.0300 0.0120 -0.0610
+vertex 0.0300 0.0105 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0447
+vertex 0.0300 0.0105 -0.0462
+vertex 0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0462
+vertex 0.0300 0.0105 -0.0447
+vertex 0.0300 0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0473
+vertex 0.0300 0.0105 -0.0488
+vertex 0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0488
+vertex 0.0300 0.0105 -0.0473
+vertex 0.0300 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0462
+vertex 0.0300 0.0105 -0.0473
+vertex 0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0120 -0.0610
+vertex 0.0300 0.0105 -0.0488
+vertex 0.0300 0.0105 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0398
+vertex 0.0300 0.0095 -0.0398
+vertex 0.0300 0.0105 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0323
+vertex 0.0300 0.0115 -0.0132
+vertex 0.0300 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0338
+vertex 0.0300 0.0105 -0.0338
+vertex 0.0300 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0312
+vertex 0.0300 0.0095 -0.0323
+vertex 0.0300 0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0362
+vertex 0.0300 0.0105 -0.0362
+vertex 0.0300 0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0338
+vertex 0.0300 0.0095 -0.0348
+vertex 0.0300 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0338
+vertex 0.0300 0.0095 -0.0323
+vertex 0.0300 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0387
+vertex 0.0300 0.0105 -0.0387
+vertex 0.0300 0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0362
+vertex 0.0300 0.0095 -0.0372
+vertex 0.0300 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0413
+vertex 0.0300 0.0105 -0.0413
+vertex 0.0300 0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0387
+vertex 0.0300 0.0095 -0.0398
+vertex 0.0300 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0387
+vertex 0.0300 0.0095 -0.0372
+vertex 0.0300 -0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0362
+vertex 0.0300 0.0095 -0.0348
+vertex 0.0300 -0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0438
+vertex 0.0300 0.0105 -0.0438
+vertex 0.0300 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0413
+vertex 0.0300 0.0095 -0.0423
+vertex 0.0300 0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0447
+vertex 0.0300 0.0095 -0.0462
+vertex 0.0300 0.0105 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0438
+vertex 0.0300 0.0095 -0.0423
+vertex 0.0300 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0085 -0.0478
+vertex 0.0300 0.0095 -0.0462
+vertex 0.0300 0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0085 -0.0478
+vertex 0.0300 0.0095 -0.0488
+vertex 0.0300 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0085 -0.0478
+vertex 0.0300 0.0095 -0.0498
+vertex 0.0300 0.0095 -0.0488
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0473
+vertex 0.0300 0.0095 -0.0462
+vertex 0.0300 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0488
+vertex 0.0300 0.0105 -0.0488
+vertex 0.0300 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0447
+vertex 0.0300 0.0095 -0.0438
+vertex 0.0300 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0498
+vertex 0.0300 0.0095 -0.0498
+vertex 0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0413
+vertex 0.0300 0.0095 -0.0398
+vertex 0.0300 -0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0105 -0.0312
+vertex 0.0300 0.0105 -0.0298
+vertex 0.0300 0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0120 -0.0610
+vertex 0.0300 0.0095 -0.0498
+vertex 0.0300 -0.0085 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0173
+vertex 0.0300 0.0095 -0.0173
+vertex 0.0300 0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0138
+vertex 0.0300 0.0085 -0.0132
+vertex 0.0300 -0.0095 -0.0123
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0163
+vertex 0.0300 0.0085 -0.0132
+vertex 0.0300 -0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0123
+vertex 0.0300 -0.0105 -0.0123
+vertex 0.0300 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0148
+vertex 0.0300 0.0085 -0.0132
+vertex 0.0300 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0187
+vertex 0.0300 0.0095 -0.0187
+vertex 0.0300 -0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0213
+vertex 0.0300 0.0095 -0.0213
+vertex 0.0300 -0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0173
+vertex 0.0300 -0.0105 -0.0173
+vertex 0.0300 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0198
+vertex 0.0300 0.0095 -0.0198
+vertex 0.0300 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0148
+vertex 0.0300 -0.0105 -0.0148
+vertex 0.0300 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0173
+vertex 0.0300 0.0085 -0.0132
+vertex 0.0300 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0238
+vertex 0.0300 0.0095 -0.0238
+vertex 0.0300 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0262
+vertex 0.0300 0.0095 -0.0262
+vertex 0.0300 -0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0222
+vertex 0.0300 -0.0105 -0.0222
+vertex 0.0300 -0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0248
+vertex 0.0300 0.0095 -0.0248
+vertex 0.0300 -0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0288
+vertex 0.0300 0.0095 -0.0288
+vertex 0.0300 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0312
+vertex 0.0300 0.0095 -0.0312
+vertex 0.0300 -0.0095 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0272
+vertex 0.0300 -0.0105 -0.0272
+vertex 0.0300 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0298
+vertex 0.0300 0.0095 -0.0298
+vertex 0.0300 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0248
+vertex 0.0300 -0.0105 -0.0248
+vertex 0.0300 -0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0272
+vertex 0.0300 0.0095 -0.0272
+vertex 0.0300 -0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0198
+vertex 0.0300 -0.0105 -0.0198
+vertex 0.0300 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0222
+vertex 0.0300 0.0095 -0.0222
+vertex 0.0300 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0123
+vertex 0.0300 -0.0105 -0.0112
+vertex 0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0148
+vertex 0.0300 -0.0105 -0.0138
+vertex 0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0123
+vertex 0.0300 -0.0120 0.0000
+vertex 0.0300 -0.0105 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0123
+vertex 0.0300 -0.0105 -0.0138
+vertex 0.0300 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0163
+vertex 0.0300 -0.0120 0.0000
+vertex 0.0300 -0.0105 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0120 0.0000
+vertex 0.0300 -0.0105 -0.0163
+vertex 0.0300 -0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0173
+vertex 0.0300 -0.0105 -0.0187
+vertex 0.0300 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0187
+vertex 0.0300 -0.0105 -0.0173
+vertex 0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0120 0.0000
+vertex 0.0300 -0.0105 -0.0198
+vertex 0.0300 -0.0105 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0112
+vertex 0.0300 -0.0095 -0.0112
+vertex 0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0148
+vertex 0.0300 -0.0105 -0.0163
+vertex 0.0300 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0198
+vertex 0.0300 -0.0105 -0.0213
+vertex 0.0300 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0213
+vertex 0.0300 -0.0105 -0.0198
+vertex 0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0222
+vertex 0.0300 -0.0105 -0.0238
+vertex 0.0300 -0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0238
+vertex 0.0300 -0.0105 -0.0222
+vertex 0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0213
+vertex 0.0300 -0.0120 0.0000
+vertex 0.0300 -0.0105 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0248
+vertex 0.0300 -0.0105 -0.0262
+vertex 0.0300 -0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0262
+vertex 0.0300 -0.0105 -0.0248
+vertex 0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0272
+vertex 0.0300 -0.0105 -0.0288
+vertex 0.0300 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0115 -0.0478
+vertex 0.0300 -0.0105 -0.0288
+vertex 0.0300 -0.0105 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0115 -0.0478
+vertex 0.0300 -0.0105 -0.0298
+vertex 0.0300 -0.0105 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0272
+vertex 0.0300 -0.0105 -0.0262
+vertex 0.0300 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0238
+vertex 0.0300 -0.0120 0.0000
+vertex 0.0300 -0.0105 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0120 0.0000
+vertex 0.0300 -0.0115 -0.0478
+vertex 0.0300 -0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0112
+vertex 0.0300 0.0085 -0.0103
+vertex 0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0298
+vertex 0.0300 -0.0105 -0.0298
+vertex 0.0300 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0338
+vertex 0.0300 0.0095 -0.0338
+vertex 0.0300 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0362
+vertex 0.0300 0.0095 -0.0362
+vertex 0.0300 -0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0323
+vertex 0.0300 -0.0105 -0.0323
+vertex 0.0300 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0348
+vertex 0.0300 0.0095 -0.0348
+vertex 0.0300 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0387
+vertex 0.0300 0.0095 -0.0387
+vertex 0.0300 -0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0413
+vertex 0.0300 0.0095 -0.0413
+vertex 0.0300 -0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0372
+vertex 0.0300 -0.0105 -0.0372
+vertex 0.0300 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0398
+vertex 0.0300 0.0095 -0.0398
+vertex 0.0300 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0348
+vertex 0.0300 -0.0105 -0.0348
+vertex 0.0300 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0372
+vertex 0.0300 0.0095 -0.0372
+vertex 0.0300 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0438
+vertex 0.0300 0.0095 -0.0438
+vertex 0.0300 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0085 -0.0478
+vertex 0.0300 -0.0085 -0.0508
+vertex 0.0300 0.0095 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0115 -0.0478
+vertex 0.0300 -0.0085 -0.0478
+vertex 0.0300 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0438
+vertex 0.0300 -0.0095 -0.0438
+vertex 0.0300 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0423
+vertex 0.0300 -0.0095 -0.0413
+vertex 0.0300 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0438
+vertex 0.0300 -0.0095 -0.0447
+vertex 0.0300 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0462
+vertex 0.0300 -0.0095 -0.0473
+vertex 0.0300 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0447
+vertex 0.0300 -0.0105 -0.0447
+vertex 0.0300 -0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0447
+vertex 0.0300 -0.0095 -0.0462
+vertex 0.0300 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0423
+vertex 0.0300 -0.0105 -0.0423
+vertex 0.0300 -0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0473
+vertex 0.0300 -0.0105 -0.0473
+vertex 0.0300 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0398
+vertex 0.0300 -0.0105 -0.0398
+vertex 0.0300 -0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0095 -0.0323
+vertex 0.0300 -0.0095 -0.0312
+vertex 0.0300 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0323
+vertex 0.0300 -0.0105 -0.0312
+vertex 0.0300 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0348
+vertex 0.0300 -0.0105 -0.0338
+vertex 0.0300 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0323
+vertex 0.0300 -0.0115 -0.0478
+vertex 0.0300 -0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0323
+vertex 0.0300 -0.0105 -0.0338
+vertex 0.0300 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0372
+vertex 0.0300 -0.0105 -0.0362
+vertex 0.0300 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0398
+vertex 0.0300 -0.0105 -0.0387
+vertex 0.0300 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0372
+vertex 0.0300 -0.0115 -0.0478
+vertex 0.0300 -0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0372
+vertex 0.0300 -0.0105 -0.0387
+vertex 0.0300 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0348
+vertex 0.0300 -0.0115 -0.0478
+vertex 0.0300 -0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0348
+vertex 0.0300 -0.0105 -0.0362
+vertex 0.0300 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0423
+vertex 0.0300 -0.0105 -0.0413
+vertex 0.0300 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0447
+vertex 0.0300 -0.0105 -0.0438
+vertex 0.0300 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0423
+vertex 0.0300 -0.0115 -0.0478
+vertex 0.0300 -0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0423
+vertex 0.0300 -0.0105 -0.0438
+vertex 0.0300 -0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0473
+vertex 0.0300 -0.0105 -0.0462
+vertex 0.0300 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0115 -0.0478
+vertex 0.0300 -0.0120 -0.0610
+vertex 0.0300 -0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0120 -0.0610
+vertex 0.0300 -0.0115 -0.0478
+vertex 0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0120 -0.0610
+vertex 0.0300 -0.0085 -0.0508
+vertex 0.0300 -0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0462
+vertex 0.0300 -0.0105 -0.0447
+vertex 0.0300 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0413
+vertex 0.0300 -0.0105 -0.0398
+vertex 0.0300 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0447
+vertex 0.0300 -0.0105 -0.0462
+vertex 0.0300 -0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0312
+vertex 0.0300 -0.0105 -0.0298
+vertex 0.0300 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0105 -0.0398
+vertex 0.0300 -0.0105 -0.0413
+vertex 0.0300 -0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0312
+vertex 0.0300 -0.0095 -0.0298
+vertex 0.0300 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0085 -0.0508
+vertex 0.0300 -0.0120 -0.0610
+vertex 0.0300 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0095 -0.0123
+vertex 0.0300 0.0085 -0.0132
+vertex 0.0300 -0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0120 0.0000
+vertex 0.0150 -0.0120 -0.0380
+vertex 0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0120 -0.0380
+vertex 0.0300 -0.0120 0.0000
+vertex -0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0120 -0.0610
+vertex 0.0150 -0.0120 -0.0510
+vertex -0.0150 -0.0120 -0.0510
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0120 -0.0510
+vertex 0.0300 -0.0120 -0.0610
+vertex 0.0150 -0.0120 -0.0380
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0120 -0.0380
+vertex -0.0300 -0.0120 0.0000
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0120 0.0000
+vertex -0.0150 -0.0120 -0.0380
+vertex 0.0150 -0.0120 -0.0380
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0120 -0.0510
+vertex -0.0300 -0.0120 -0.0610
+vertex 0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0120 -0.0610
+vertex -0.0150 -0.0120 -0.0510
+vertex -0.0150 -0.0120 -0.0380
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0216 -0.1445 -0.0173
+vertex -0.0213 -0.1443 -0.0200
+vertex -0.0250 -0.1370 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.1370 -0.0200
+vertex -0.0253 -0.1371 -0.0173
+vertex -0.0216 -0.1445 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0253 -0.1371 -0.0173
+vertex 0.0250 -0.1370 -0.0200
+vertex 0.0213 -0.1443 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0213 -0.1443 -0.0200
+vertex 0.0216 -0.1445 -0.0173
+vertex 0.0253 -0.1371 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0216 0.1445 -0.0173
+vertex 0.0213 0.1443 -0.0200
+vertex 0.0250 0.1370 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.1370 -0.0200
+vertex 0.0253 0.1371 -0.0173
+vertex 0.0216 0.1445 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0253 0.1371 -0.0173
+vertex -0.0250 0.1370 -0.0200
+vertex -0.0213 0.1443 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0213 0.1443 -0.0200
+vertex -0.0216 0.1445 -0.0173
+vertex -0.0253 0.1371 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0230 0.0140
+vertex -0.0250 0.0130 0.0140
+vertex -0.0250 0.0130 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0130 -0.0200
+vertex -0.0250 0.0230 -0.0200
+vertex -0.0250 0.0230 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0230 -0.0200
+vertex 0.0250 0.0130 -0.0200
+vertex 0.0250 0.0130 0.0140
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0130 0.0140
+vertex 0.0250 0.0230 0.0140
+vertex 0.0250 0.0230 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0281 -0.0240
+vertex -0.0300 -0.0352 -0.0170
+vertex -0.0300 -0.0182 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0182 0.0000
+vertex -0.0300 -0.0111 -0.0071
+vertex -0.0300 -0.0281 -0.0240
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 0.0120 -0.0070
+vertex 0.0300 0.0120 0.0000
+vertex 0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0120 0.0000
+vertex 0.0300 -0.0120 -0.0070
+vertex 0.0300 0.0120 -0.0070
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0111 -0.0071
+vertex 0.0300 -0.0182 0.0000
+vertex 0.0300 -0.0352 -0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0352 -0.0170
+vertex 0.0300 -0.0281 -0.0240
+vertex 0.0300 -0.0111 -0.0071
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0120 -0.0070
+vertex -0.0300 -0.0120 0.0000
+vertex -0.0300 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0120 0.0000
+vertex -0.0300 0.0120 -0.0070
+vertex -0.0300 -0.0120 -0.0070
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0120 -0.0070
+vertex 0.0300 -0.0120 0.0000
+vertex -0.0300 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0120 0.0000
+vertex -0.0300 -0.0120 -0.0070
+vertex 0.0300 -0.0120 -0.0070
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0200 -0.0120 -0.0000
+vertex -0.0300 -0.0120 0.0000
+vertex -0.0300 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 -0.0120 -0.0610
+vertex -0.0200 -0.0120 -0.0610
+vertex -0.0200 -0.0120 -0.0000
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-silhouette.dxf b/rocolib/output/BoatWithServoMountAndStack/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..7f2e1d49d2a1446104508f373987c863a32dc282
--- /dev/null
+++ b/rocolib/output/BoatWithServoMountAndStack/graph-silhouette.dxf
@@ -0,0 +1,10938 @@
+  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
+100.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+0.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+100.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+100.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+100.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+50.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+190.851648
+ 30
+0.0
+ 11
+0.0
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.00000000000003
+ 20
+190.851648
+ 30
+0.0
+ 11
+110.00000000000001
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.00000000000003
+ 20
+190.851648
+ 30
+0.0
+ 11
+210.00000000000003
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+190.851648
+ 30
+0.0
+ 11
+210.00000000000003
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.00000000000001
+ 20
+190.851648
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.00000000000001
+ 20
+190.851648
+ 30
+0.0
+ 11
+110.00000000000001
+ 21
+190.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+323.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+323.99999999999994
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+273.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+273.99999999999994
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+299.0
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+273.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+323.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+299.0
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+299.0
+ 20
+-7.134502766348305e-08
+ 30
+0.0
+ 11
+273.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.51320686867433
+ 20
+33.971564700181574
+ 30
+0.0
+ 11
+259.75660343433714
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+299.0
+ 20
+-7.134502766348305e-08
+ 30
+0.0
+ 11
+265.51320686867433
+ 21
+33.971564700181574
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+273.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+259.75660343433714
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+273.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.7566034343372
+ 20
+39.81150361779141
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+253.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+273.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.26659817846704
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.26659817846704
+ 20
+45.65144253540121
+ 30
+0.0
+ 11
+251.26659817846704
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.99999999999997
+ 20
+45.65144253540121
+ 30
+0.0
+ 11
+251.26659817846704
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+254.00000000000003
+ 20
+327.851648
+ 30
+0.0
+ 11
+274.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+254.00000000000006
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+274.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+254.00000000000006
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+254.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000006
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+259.75660343433725
+ 21
+341.8917923822086
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+259.75660343433725
+ 20
+341.8917923822086
+ 30
+0.0
+ 11
+274.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+299.00000000000006
+ 20
+381.7032960713451
+ 30
+0.0
+ 11
+274.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.51320686867444
+ 20
+347.7317312998184
+ 30
+0.0
+ 11
+299.00000000000006
+ 21
+381.7032960713451
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.75660343433725
+ 20
+341.8917923822087
+ 30
+0.0
+ 11
+265.51320686867444
+ 21
+347.7317312998184
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+274.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+299.00000000000006
+ 21
+327.85164799999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+299.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+324.00000000000006
+ 21
+327.85164799999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+299.00000000000006
+ 20
+381.7032960713451
+ 30
+0.0
+ 11
+324.00000000000006
+ 21
+327.85164799999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.4867931313257
+ 20
+347.7317312998184
+ 30
+0.0
+ 11
+338.2433965656628
+ 21
+341.8917923822086
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+299.00000000000006
+ 20
+381.7032960713451
+ 30
+0.0
+ 11
+332.4867931313257
+ 21
+347.7317312998184
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+324.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+338.2433965656628
+ 21
+341.8917923822086
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+324.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+338.2433965656628
+ 20
+341.8917923822086
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+344.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+324.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+346.733401821533
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+346.733401821533
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+346.733401821533
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.00000000000006
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+346.733401821533
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+343.9999999999999
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+323.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+343.9999999999999
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+323.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+343.9999999999999
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+343.9999999999999
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.9999999999999
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+338.2433965656627
+ 21
+39.81150361779146
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+338.2433965656627
+ 20
+39.81150361779146
+ 30
+0.0
+ 11
+323.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+298.9999999999999
+ 20
+-7.134491397664533e-08
+ 30
+0.0
+ 11
+323.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.48679313132556
+ 20
+33.971564700181666
+ 30
+0.0
+ 11
+298.9999999999999
+ 21
+-7.134491397664533e-08
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+338.2433965656627
+ 20
+39.81150361779146
+ 30
+0.0
+ 11
+332.48679313132556
+ 21
+33.971564700181666
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+346.73340182153277
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+343.9999999999999
+ 21
+45.651442535401266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+346.73340182153277
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+346.73340182153277
+ 21
+45.651442535401266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.9999999999999
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+346.73340182153277
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0
+ 20
+203.85164800000007
+ 30
+0.0
+ 11
+343.9999999999999
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+344.0
+ 20
+203.85164800000007
+ 30
+0.0
+ 11
+344.0
+ 21
+227.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.0
+ 21
+227.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.00000000000006
+ 20
+327.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.9999999999999
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+343.9999999999999
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.9999999999999
+ 20
+203.85164800000004
+ 30
+0.0
+ 11
+344.0
+ 21
+203.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.9999999999999
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+377.9999999999999
+ 21
+203.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+344.0
+ 20
+227.85164800000007
+ 30
+0.0
+ 11
+377.9999999999999
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0
+ 20
+227.85164800000007
+ 30
+0.0
+ 11
+344.0
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.99999999999994
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+377.9999999999999
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+344.0
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+344.0
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.99999999999994
+ 20
+271.851648
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+344.0
+ 20
+271.851648
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0
+ 20
+271.851648
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.99999999999994
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+377.99999999999994
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+378.0
+ 20
+301.85164800000007
+ 30
+0.0
+ 11
+377.99999999999994
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.00000000000006
+ 20
+301.85164800000007
+ 30
+0.0
+ 11
+378.0
+ 21
+301.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.00000000000006
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+344.00000000000006
+ 21
+301.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.2665981784671
+ 20
+336.0518534645988
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.2665981784671
+ 20
+327.851648
+ 30
+0.0
+ 11
+251.2665981784671
+ 21
+336.0518534645988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+327.851648
+ 30
+0.0
+ 11
+251.2665981784671
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+254.00000000000003
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+203.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+203.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+253.99999999999997
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+327.851648
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+327.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000003
+ 20
+203.85164800000004
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+203.85164800000004
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+203.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+220.00000000000003
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000003
+ 20
+227.85164800000004
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+227.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+220.00000000000003
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000003
+ 20
+247.85164800000004
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+271.851648
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+247.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+220.00000000000003
+ 20
+271.851648
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000003
+ 20
+271.851648
+ 30
+0.0
+ 11
+220.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000003
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+254.00000000000003
+ 21
+271.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+254.00000000000003
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+220.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.00000000000006
+ 20
+301.85164800000007
+ 30
+0.0
+ 11
+254.00000000000006
+ 21
+291.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000006
+ 20
+301.85164800000007
+ 30
+0.0
+ 11
+254.00000000000006
+ 21
+301.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000006
+ 20
+291.85164800000007
+ 30
+0.0
+ 11
+220.00000000000006
+ 21
+301.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.40786804847943
+ 20
+37.35482121234264
+ 30
+0.0
+ 11
+263.1379966274785
+ 21
+39.65755243235416
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+263.1379966274785
+ 20
+39.65755243235416
+ 30
+0.0
+ 11
+262.7819117133369
+ 21
+39.30654882279893
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.7819117133369
+ 20
+39.30654882279893
+ 30
+0.0
+ 11
+265.0517831343379
+ 21
+37.00381760278743
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.0517831343379
+ 20
+37.00381760278743
+ 30
+0.0
+ 11
+265.40786804847943
+ 21
+37.35482121234264
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.94994863385028
+ 20
+48.384844356934146
+ 30
+0.0
+ 11
+253.31664954461675
+ 21
+48.384844356934146
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.31664954461675
+ 20
+48.384844356934146
+ 30
+0.0
+ 11
+253.31664954461675
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.31664954461675
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+251.94994863385028
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+263.13799662747857
+ 20
+342.0457435676459
+ 30
+0.0
+ 11
+265.4078680484795
+ 21
+344.34847478765744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.4078680484795
+ 20
+344.34847478765744
+ 30
+0.0
+ 11
+265.051783134338
+ 21
+344.69947839721266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.051783134338
+ 20
+344.69947839721266
+ 30
+0.0
+ 11
+262.781911713337
+ 21
+342.39674717720106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.781911713337
+ 20
+342.39674717720106
+ 30
+0.0
+ 11
+263.13799662747857
+ 21
+342.0457435676459
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.59213195152057
+ 20
+344.34847478765744
+ 30
+0.0
+ 11
+334.8620033725215
+ 21
+342.0457435676459
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.8620033725215
+ 20
+342.0457435676459
+ 30
+0.0
+ 11
+335.21808828666303
+ 21
+342.39674717720106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+335.21808828666303
+ 20
+342.39674717720106
+ 30
+0.0
+ 11
+332.9482168656622
+ 21
+344.69947839721266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.9482168656622
+ 20
+344.69947839721266
+ 30
+0.0
+ 11
+332.59213195152057
+ 21
+344.34847478765744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+346.0500513661498
+ 20
+333.31845164306594
+ 30
+0.0
+ 11
+344.6833504553833
+ 21
+333.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.6833504553833
+ 20
+333.31845164306594
+ 30
+0.0
+ 11
+344.6833504553833
+ 21
+330.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.6833504553833
+ 20
+330.585049821533
+ 30
+0.0
+ 11
+346.0500513661498
+ 21
+330.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.8620033725213
+ 20
+39.657552432354215
+ 30
+0.0
+ 11
+332.59213195152034
+ 21
+37.354821212342706
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.59213195152034
+ 20
+37.354821212342706
+ 30
+0.0
+ 11
+332.948216865662
+ 21
+37.00381760278748
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.948216865662
+ 20
+37.00381760278748
+ 30
+0.0
+ 11
+335.21808828666286
+ 21
+39.306548822798995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+335.21808828666286
+ 20
+39.306548822798995
+ 30
+0.0
+ 11
+334.8620033725213
+ 21
+39.657552432354215
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+346.0500513661496
+ 20
+51.11824617846714
+ 30
+0.0
+ 11
+344.68335045538305
+ 21
+51.11824617846714
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.68335045538305
+ 20
+51.11824617846714
+ 30
+0.0
+ 11
+344.68335045538305
+ 21
+48.3848443569342
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.68335045538305
+ 20
+48.3848443569342
+ 30
+0.0
+ 11
+346.0500513661496
+ 21
+48.3848443569342
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.91666666666663
+ 20
+211.60164800000004
+ 30
+0.0
+ 11
+355.08333333333326
+ 21
+211.60164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.08333333333326
+ 20
+211.60164800000007
+ 30
+0.0
+ 11
+355.08333333333326
+ 21
+211.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.08333333333326
+ 20
+211.10164800000004
+ 30
+0.0
+ 11
+366.91666666666663
+ 21
+211.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.91666666666663
+ 20
+211.101648
+ 30
+0.0
+ 11
+366.91666666666663
+ 21
+211.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.99999999999994
+ 20
+246.85164800000004
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+242.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.99999999999994
+ 20
+242.85164800000004
+ 30
+0.0
+ 11
+367.0
+ 21
+242.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.0
+ 20
+242.85164800000004
+ 30
+0.0
+ 11
+367.0
+ 21
+246.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.0
+ 20
+246.85164800000004
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+246.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.5
+ 20
+234.85164800000004
+ 30
+0.0
+ 11
+356.5
+ 21
+230.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.5
+ 20
+230.85164800000004
+ 30
+0.0
+ 11
+365.5
+ 21
+230.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.5
+ 20
+230.85164800000004
+ 30
+0.0
+ 11
+365.5
+ 21
+234.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.5
+ 20
+234.85164800000004
+ 30
+0.0
+ 11
+356.5
+ 21
+234.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.99999999999994
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+248.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.99999999999994
+ 20
+248.35164800000004
+ 30
+0.0
+ 11
+367.0
+ 21
+248.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.0
+ 20
+248.35164800000004
+ 30
+0.0
+ 11
+367.0
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.0
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.99999999999994
+ 20
+276.851648
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+272.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.99999999999994
+ 20
+272.851648
+ 30
+0.0
+ 11
+367.0
+ 21
+272.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.0
+ 20
+272.851648
+ 30
+0.0
+ 11
+367.0
+ 21
+276.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.0
+ 20
+276.851648
+ 30
+0.0
+ 11
+354.99999999999994
+ 21
+276.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.3333333333333
+ 20
+299.351648
+ 30
+0.0
+ 11
+355.3333333333333
+ 21
+294.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.3333333333333
+ 20
+294.35164800000007
+ 30
+0.0
+ 11
+366.6666666666667
+ 21
+294.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.6666666666667
+ 20
+294.35164800000007
+ 30
+0.0
+ 11
+366.6666666666667
+ 21
+299.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.94994863385034
+ 20
+330.585049821533
+ 30
+0.0
+ 11
+253.3166495446168
+ 21
+330.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.3166495446168
+ 20
+330.585049821533
+ 30
+0.0
+ 11
+253.3166495446168
+ 21
+333.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.3166495446168
+ 20
+333.31845164306594
+ 30
+0.0
+ 11
+251.94994863385034
+ 21
+333.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.91666666666669
+ 20
+211.60164800000004
+ 30
+0.0
+ 11
+231.08333333333334
+ 21
+211.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.08333333333334
+ 20
+211.60164800000004
+ 30
+0.0
+ 11
+231.08333333333334
+ 21
+211.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.08333333333334
+ 20
+211.101648
+ 30
+0.0
+ 11
+242.91666666666669
+ 21
+211.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.91666666666669
+ 20
+211.101648
+ 30
+0.0
+ 11
+242.91666666666669
+ 21
+211.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.00000000000003
+ 20
+246.85164800000004
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+242.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.00000000000003
+ 20
+242.85164800000004
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+242.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.00000000000003
+ 20
+242.85164800000004
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+246.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.00000000000003
+ 20
+246.85164800000004
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+246.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.50000000000003
+ 20
+234.85164800000004
+ 30
+0.0
+ 11
+232.50000000000003
+ 21
+230.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.50000000000003
+ 20
+230.85164800000004
+ 30
+0.0
+ 11
+241.50000000000003
+ 21
+230.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.50000000000003
+ 20
+230.85164800000004
+ 30
+0.0
+ 11
+241.50000000000003
+ 21
+234.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.50000000000003
+ 20
+234.85164800000004
+ 30
+0.0
+ 11
+232.50000000000003
+ 21
+234.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.00000000000003
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+248.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.00000000000003
+ 20
+248.35164800000004
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+248.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.00000000000003
+ 20
+248.35164800000004
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.00000000000003
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.00000000000003
+ 20
+276.851648
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+272.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.00000000000003
+ 20
+272.851648
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+272.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.00000000000003
+ 20
+272.851648
+ 30
+0.0
+ 11
+243.00000000000003
+ 21
+276.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.00000000000003
+ 20
+276.851648
+ 30
+0.0
+ 11
+231.00000000000003
+ 21
+276.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.3333333333334
+ 20
+299.351648
+ 30
+0.0
+ 11
+231.3333333333334
+ 21
+294.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.3333333333334
+ 20
+294.35164800000007
+ 30
+0.0
+ 11
+242.6666666666667
+ 21
+294.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.6666666666667
+ 20
+294.35164800000007
+ 30
+0.0
+ 11
+242.6666666666667
+ 21
+299.351648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+422.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+482.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+482.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+422.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+422.00000000000006
+ 20
+171.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+482.00000000000006
+ 20
+171.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+171.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+482.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+171.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+489.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+482.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+489.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+482.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+422.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+422.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+482.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+506.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+506.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+482.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+506.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.0
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+506.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.0
+ 20
+263.851648
+ 30
+0.0
+ 11
+566.0
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+566.0
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+422.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+398.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+398.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+398.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+398.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.00000000000006
+ 20
+263.851648
+ 30
+0.0
+ 11
+398.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+388.00000000000006
+ 21
+263.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+398.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+388.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.00000000000006
+ 20
+202.85164800000004
+ 30
+0.0
+ 11
+422.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+415.00000000000006
+ 21
+202.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+422.00000000000006
+ 20
+178.85164800000004
+ 30
+0.0
+ 11
+415.00000000000006
+ 21
+178.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+471.0909090909092
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+474.5909090909091
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+474.5909090909091
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+471.0909090909092
+ 21
+177.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+471.0909090909092
+ 20
+177.101648
+ 30
+0.0
+ 11
+460.18181818181824
+ 21
+177.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+460.18181818181824
+ 20
+177.101648
+ 30
+0.0
+ 11
+456.68181818181824
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+456.68181818181824
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+460.18181818181824
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+443.8181818181818
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+447.31818181818187
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+447.31818181818187
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+443.8181818181818
+ 21
+177.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+443.8181818181818
+ 20
+177.101648
+ 30
+0.0
+ 11
+432.909090909091
+ 21
+177.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+432.909090909091
+ 20
+177.101648
+ 30
+0.0
+ 11
+429.409090909091
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+429.409090909091
+ 20
+173.60164800000004
+ 30
+0.0
+ 11
+432.909090909091
+ 21
+173.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+487.25000000000006
+ 20
+194.85164800000004
+ 30
+0.0
+ 11
+483.75000000000006
+ 21
+194.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.75000000000006
+ 20
+194.85164800000004
+ 30
+0.0
+ 11
+483.75000000000006
+ 21
+186.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.75000000000006
+ 20
+186.85164800000004
+ 30
+0.0
+ 11
+487.25000000000006
+ 21
+186.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+429.50000000000006
+ 20
+254.35164800000007
+ 30
+0.0
+ 11
+429.50000000000006
+ 21
+236.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+429.50000000000006
+ 20
+236.35164800000004
+ 30
+0.0
+ 11
+464.50000000000006
+ 21
+236.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+464.50000000000006
+ 20
+236.35164800000004
+ 30
+0.0
+ 11
+464.50000000000006
+ 21
+254.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+464.50000000000006
+ 20
+254.35164800000007
+ 30
+0.0
+ 11
+429.50000000000006
+ 21
+254.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+482.50000000000006
+ 20
+216.10164800000004
+ 30
+0.0
+ 11
+482.50000000000006
+ 21
+213.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+482.50000000000006
+ 20
+213.10164800000004
+ 30
+0.0
+ 11
+485.50000000000006
+ 21
+213.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+485.50000000000006
+ 20
+213.10164800000004
+ 30
+0.0
+ 11
+485.50000000000006
+ 21
+216.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+485.50000000000006
+ 20
+216.10164800000004
+ 30
+0.0
+ 11
+482.50000000000006
+ 21
+216.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+215.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+214.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+214.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+214.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+214.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+215.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+215.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+215.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+503.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+504.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+504.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+503.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+252.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+251.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+483.50000000000006
+ 20
+251.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+251.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+251.60164800000004
+ 30
+0.0
+ 11
+484.50000000000006
+ 21
+252.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.50000000000006
+ 20
+252.60164800000004
+ 30
+0.0
+ 11
+483.50000000000006
+ 21
+252.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.50000000000006
+ 20
+253.60164800000004
+ 30
+0.0
+ 11
+502.50000000000006
+ 21
+250.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.50000000000006
+ 20
+250.60164800000004
+ 30
+0.0
+ 11
+505.50000000000006
+ 21
+250.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+505.50000000000006
+ 20
+250.60164800000004
+ 30
+0.0
+ 11
+505.50000000000006
+ 21
+253.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+505.50000000000006
+ 20
+253.60164800000004
+ 30
+0.0
+ 11
+502.50000000000006
+ 21
+253.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.25000000000006
+ 20
+210.60164800000004
+ 30
+0.0
+ 11
+489.75000000000006
+ 21
+210.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.75000000000006
+ 20
+210.60164800000004
+ 30
+0.0
+ 11
+489.75000000000006
+ 21
+210.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.75000000000006
+ 20
+210.10164800000004
+ 30
+0.0
+ 11
+498.25000000000006
+ 21
+210.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.25000000000006
+ 20
+210.10164800000004
+ 30
+0.0
+ 11
+498.25000000000006
+ 21
+210.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.75000000000006
+ 20
+258.35164800000007
+ 30
+0.0
+ 11
+498.25000000000006
+ 21
+258.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.25000000000006
+ 20
+258.35164800000007
+ 30
+0.0
+ 11
+498.25000000000006
+ 21
+258.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.25000000000006
+ 20
+258.85164800000007
+ 30
+0.0
+ 11
+489.75000000000006
+ 21
+258.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.75000000000006
+ 20
+258.85164800000007
+ 30
+0.0
+ 11
+489.75000000000006
+ 21
+258.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+521.0000000000001
+ 20
+253.85164800000004
+ 30
+0.0
+ 11
+521.0000000000001
+ 21
+240.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+521.0000000000001
+ 20
+240.85164800000004
+ 30
+0.0
+ 11
+551.0000000000001
+ 21
+240.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.0000000000001
+ 20
+240.85164800000004
+ 30
+0.0
+ 11
+551.0000000000001
+ 21
+253.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.0000000000001
+ 20
+253.85164800000004
+ 30
+0.0
+ 11
+521.0000000000001
+ 21
+253.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0681818181818
+ 20
+208.35164800000004
+ 30
+0.0
+ 11
+516.6590909090909
+ 21
+208.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+516.6590909090909
+ 20
+208.35164800000004
+ 30
+0.0
+ 11
+516.6590909090909
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+516.6590909090909
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+528.0681818181818
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0681818181818
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+528.0681818181818
+ 21
+208.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+555.3409090909091
+ 20
+208.35164800000004
+ 30
+0.0
+ 11
+543.9318181818182
+ 21
+208.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+543.9318181818182
+ 20
+208.35164800000004
+ 30
+0.0
+ 11
+543.9318181818182
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+543.9318181818182
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+555.3409090909091
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+555.3409090909091
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+555.3409090909091
+ 21
+208.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.25
+ 20
+225.28346618181823
+ 30
+0.0
+ 11
+558.25
+ 21
+213.69255709090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.25
+ 20
+213.69255709090913
+ 30
+0.0
+ 11
+558.75
+ 21
+213.69255709090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.75
+ 20
+213.69255709090913
+ 30
+0.0
+ 11
+558.75
+ 21
+225.28346618181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.75
+ 20
+225.28346618181823
+ 30
+0.0
+ 11
+558.25
+ 21
+225.28346618181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.25
+ 20
+253.01073890909095
+ 30
+0.0
+ 11
+558.25
+ 21
+241.41982981818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.25
+ 20
+241.41982981818185
+ 30
+0.0
+ 11
+558.75
+ 21
+241.41982981818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.75
+ 20
+241.41982981818185
+ 30
+0.0
+ 11
+558.75
+ 21
+253.01073890909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.75
+ 20
+253.01073890909095
+ 30
+0.0
+ 11
+558.25
+ 21
+253.01073890909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+398.50000000000006
+ 20
+216.10164800000004
+ 30
+0.0
+ 11
+398.50000000000006
+ 21
+213.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+398.50000000000006
+ 20
+213.10164800000004
+ 30
+0.0
+ 11
+401.50000000000006
+ 21
+213.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+401.50000000000006
+ 20
+213.10164800000004
+ 30
+0.0
+ 11
+401.50000000000006
+ 21
+216.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+401.50000000000006
+ 20
+216.10164800000004
+ 30
+0.0
+ 11
+398.50000000000006
+ 21
+216.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+215.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+214.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+214.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+214.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+214.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+215.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+215.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+215.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+216.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+216.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+217.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+217.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+220.101648
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+219.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+219.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+220.101648
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+220.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+222.601648
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+221.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+221.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+222.601648
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+222.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+224.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+224.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+225.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+225.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+226.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+226.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+227.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+227.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+229.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+229.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+230.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+230.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+400.5
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+231.601648
+ 30
+0.0
+ 11
+400.5
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+231.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+231.601648
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+232.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+232.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+234.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+234.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+235.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+235.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+236.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+236.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+237.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+237.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+239.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+239.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+240.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+240.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+241.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+241.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+242.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+242.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+244.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+244.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+245.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+245.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+246.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+246.60164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+247.60164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+247.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+419.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+249.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+249.10164800000004
+ 30
+0.0
+ 11
+420.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.50000000000006
+ 20
+250.10164800000004
+ 30
+0.0
+ 11
+419.50000000000006
+ 21
+250.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+252.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+251.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.50000000000006
+ 20
+251.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+251.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+251.60164800000004
+ 30
+0.0
+ 11
+400.5
+ 21
+252.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.5
+ 20
+252.60164800000004
+ 30
+0.0
+ 11
+399.50000000000006
+ 21
+252.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.5
+ 20
+253.60164800000004
+ 30
+0.0
+ 11
+418.5
+ 21
+250.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.5
+ 20
+250.60164800000004
+ 30
+0.0
+ 11
+421.50000000000006
+ 21
+250.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+421.50000000000006
+ 20
+250.60164800000004
+ 30
+0.0
+ 11
+421.50000000000006
+ 21
+253.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+421.50000000000006
+ 20
+253.60164800000004
+ 30
+0.0
+ 11
+418.5
+ 21
+253.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+414.25
+ 20
+210.60164800000004
+ 30
+0.0
+ 11
+405.75000000000006
+ 21
+210.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+405.75000000000006
+ 20
+210.60164800000004
+ 30
+0.0
+ 11
+405.75000000000006
+ 21
+210.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+405.75000000000006
+ 20
+210.10164800000004
+ 30
+0.0
+ 11
+414.25
+ 21
+210.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+414.25
+ 20
+210.10164800000004
+ 30
+0.0
+ 11
+414.25
+ 21
+210.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+405.75000000000006
+ 20
+258.35164800000007
+ 30
+0.0
+ 11
+414.25
+ 21
+258.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+414.25
+ 20
+258.35164800000007
+ 30
+0.0
+ 11
+414.25
+ 21
+258.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+414.25
+ 20
+258.85164800000007
+ 30
+0.0
+ 11
+405.75000000000006
+ 21
+258.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+405.75000000000006
+ 20
+258.85164800000007
+ 30
+0.0
+ 11
+405.75000000000006
+ 21
+258.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.50000000000006
+ 20
+213.94255709090913
+ 30
+0.0
+ 11
+395.5
+ 21
+213.94255709090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.5
+ 20
+213.94255709090913
+ 30
+0.0
+ 11
+395.5
+ 21
+225.03346618181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.5
+ 20
+225.03346618181823
+ 30
+0.0
+ 11
+390.50000000000006
+ 21
+225.03346618181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.50000000000006
+ 20
+241.66982981818185
+ 30
+0.0
+ 11
+395.5
+ 21
+241.66982981818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.5
+ 20
+241.66982981818185
+ 30
+0.0
+ 11
+395.5
+ 21
+252.76073890909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.5
+ 20
+252.76073890909095
+ 30
+0.0
+ 11
+390.50000000000006
+ 21
+252.76073890909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+416.75000000000006
+ 20
+186.85164800000004
+ 30
+0.0
+ 11
+420.25000000000006
+ 21
+186.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.25000000000006
+ 20
+186.85164800000004
+ 30
+0.0
+ 11
+420.25000000000006
+ 21
+194.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+420.25000000000006
+ 20
+194.85164800000004
+ 30
+0.0
+ 11
+416.75000000000006
+ 21
+194.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+586.0000000000001
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+646.0
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+646.0
+ 20
+209.05192272320133
+ 30
+0.0
+ 11
+646.0
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+586.0000000000001
+ 20
+209.05192272320133
+ 30
+0.0
+ 11
+646.0
+ 21
+209.05192272320133
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+586.0000000000001
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+209.05192272320133
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+646.0
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+646.0
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+646.0
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+586.0000000000001
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+586.0000000000001
+ 20
+112.25082383039613
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+646.0
+ 20
+112.25082383039613
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+112.25082383039613
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+646.0
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+646.0
+ 21
+112.25082383039613
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.0
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+646.0
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.0
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+656.0
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+646.0
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+656.0
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+576.0000000000001
+ 20
+172.65137327679875
+ 30
+0.0
+ 11
+586.0000000000001
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+576.0000000000001
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+576.0000000000001
+ 21
+172.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+586.0000000000001
+ 20
+148.65137327679872
+ 30
+0.0
+ 11
+576.0000000000001
+ 21
+148.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+603.5000000000001
+ 20
+154.15137327679875
+ 30
+0.0
+ 11
+614.5000000000001
+ 21
+154.15137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+614.5000000000001
+ 20
+154.15137327679875
+ 30
+0.0
+ 11
+614.5000000000001
+ 21
+167.15137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+614.5000000000001
+ 20
+167.15137327679875
+ 30
+0.0
+ 11
+603.5000000000001
+ 21
+167.15137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+603.5000000000001
+ 20
+167.15137327679875
+ 30
+0.0
+ 11
+603.5000000000001
+ 21
+154.15137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+635.0000000000001
+ 20
+155.65137327679872
+ 30
+0.0
+ 11
+641.0000000000001
+ 21
+155.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+641.0000000000001
+ 20
+155.65137327679872
+ 30
+0.0
+ 11
+641.0000000000001
+ 21
+165.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+641.0000000000001
+ 20
+165.65137327679875
+ 30
+0.0
+ 11
+635.0000000000001
+ 21
+165.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+635.0000000000001
+ 20
+165.65137327679875
+ 30
+0.0
+ 11
+635.0000000000001
+ 21
+155.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+653.5000000000001
+ 20
+164.65137327679872
+ 30
+0.0
+ 11
+648.5000000000001
+ 21
+164.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+648.5000000000001
+ 20
+164.65137327679872
+ 30
+0.0
+ 11
+648.5000000000001
+ 21
+156.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+648.5000000000001
+ 20
+156.65137327679875
+ 30
+0.0
+ 11
+653.5000000000001
+ 21
+156.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+578.5000000000001
+ 20
+156.65137327679875
+ 30
+0.0
+ 11
+583.5
+ 21
+156.65137327679875
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+583.5
+ 20
+156.65137327679875
+ 30
+0.0
+ 11
+583.5
+ 21
+164.65137327679872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+583.5
+ 20
+164.65137327679872
+ 30
+0.0
+ 11
+578.5000000000001
+ 21
+164.65137327679872
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/BoatWithServoMountAndStack/tree.png b/rocolib/output/BoatWithServoMountAndStack/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..283aaab5899549394022e9af6e29d24a5929becb
Binary files /dev/null and b/rocolib/output/BoatWithServoMountAndStack/tree.png differ
diff --git a/rocolib/output/StackMount/graph-anim.svg b/rocolib/output/StackMount/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a071de555a7ae4af9269f70609cc706d8b9edddf
--- /dev/null
+++ b/rocolib/output/StackMount/graph-anim.svg
@@ -0,0 +1,380 @@
+<?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.207933mm" version="1.1" viewBox="0.000000 0.000000 269.000000 151.207933" width="269.000000mm">
+  <defs/>
+  <line opacity="0.5" stroke="#0000ff" x1="33.0" x2="94.00000000000001" y1="66.207933" y2="66.207933"/>
+  <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="94.00000000000001" y1="66.207933" y2="90.20793300000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="33.0" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="33.0" x2="33.0" y1="90.20793300000001" y2="66.207933"/>
+  <line stroke="#000000" x1="33.0" x2="33.0" y1="59.207933000000004" y2="66.207933"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="33.0" y1="59.207933000000004" y2="59.207933000000004"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="93.00000000000001" y1="66.207933" y2="59.207933000000004"/>
+  <line stroke="#000000" x1="101.00000000000001" x2="94.00000000000001" y1="66.207933" y2="66.207933"/>
+  <line stroke="#000000" x1="101.00000000000001" x2="101.00000000000001" y1="90.20793300000001" y2="66.207933"/>
+  <line stroke="#000000" x1="94.00000000000001" x2="101.00000000000001" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="94.00000000000001" y1="90.20793300000001" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="34.0" x2="94.00000000000001" y1="151.20793300000003" y2="151.20793300000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="34.0" y1="90.20793300000001" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="118.00000000000001" x2="94.00000000000001" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="118.00000000000001" x2="118.00000000000001" y1="90.20793300000001" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="94.00000000000001" x2="118.00000000000001" y1="151.20793300000003" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="178.00000000000003" x2="118.00000000000001" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="178.00000000000003" x2="178.00000000000003" y1="151.20793300000003" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="118.00000000000001" x2="178.00000000000003" y1="151.20793300000003" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="34.0" x2="10.000000000000002" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="34.0" y1="151.20793300000003" y2="151.20793300000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="151.20793300000003" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="151.20793300000003" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="90.20793300000001" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="26.000000000000004" x2="33.0" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="26.000000000000004" x2="26.000000000000004" y1="66.207933" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="33.0" x2="26.000000000000004" y1="66.207933" y2="66.207933"/>
+  <line stroke="#888888" x1="82.09090909090911" x2="85.59090909090911" y1="60.957933" y2="60.957933"/>
+  <line stroke="#888888" x1="85.59090909090911" x2="82.09090909090911" y1="60.957933" y2="64.457933"/>
+  <line stroke="#888888" x1="82.09090909090911" x2="71.1818181818182" y1="64.457933" y2="64.457933"/>
+  <line stroke="#888888" x1="71.1818181818182" x2="67.68181818181819" y1="64.457933" y2="60.957933"/>
+  <line stroke="#888888" x1="67.68181818181819" x2="71.1818181818182" y1="60.957933" y2="60.957933"/>
+  <line stroke="#888888" x1="54.818181818181834" x2="58.31818181818183" y1="60.957933" y2="60.957933"/>
+  <line stroke="#888888" x1="58.31818181818183" x2="54.818181818181834" y1="60.957933" y2="64.457933"/>
+  <line stroke="#888888" x1="54.818181818181834" x2="43.909090909090914" y1="64.457933" y2="64.457933"/>
+  <line stroke="#888888" x1="43.909090909090914" x2="40.40909090909092" y1="64.457933" y2="60.957933"/>
+  <line stroke="#888888" x1="40.40909090909092" x2="43.909090909090914" y1="60.957933" y2="60.957933"/>
+  <line stroke="#888888" x1="99.25000000000001" x2="95.75000000000001" y1="82.20793300000001" y2="82.20793300000001"/>
+  <line stroke="#888888" x1="95.75000000000001" x2="95.75000000000001" y1="82.20793300000001" y2="74.20793300000001"/>
+  <line stroke="#888888" x1="95.75000000000001" x2="99.25000000000001" y1="74.20793300000001" y2="74.20793300000001"/>
+  <line stroke="#888888" x1="41.5" x2="41.5" y1="141.70793300000003" y2="123.70793300000001"/>
+  <line stroke="#888888" x1="41.5" x2="76.50000000000001" y1="123.70793300000001" y2="123.70793300000001"/>
+  <line stroke="#888888" x1="76.50000000000001" x2="76.50000000000001" y1="123.70793300000001" y2="141.70793300000003"/>
+  <line stroke="#888888" x1="76.50000000000001" x2="41.5" y1="141.70793300000003" y2="141.70793300000003"/>
+  <line stroke="#888888" x1="94.5" x2="94.5" y1="103.45793300000001" y2="100.45793300000001"/>
+  <line stroke="#888888" x1="94.5" x2="97.50000000000001" y1="100.45793300000001" y2="100.45793300000001"/>
+  <line stroke="#888888" x1="97.50000000000001" x2="97.50000000000001" y1="100.45793300000001" y2="103.45793300000001"/>
+  <line stroke="#888888" x1="97.50000000000001" x2="94.5" y1="103.45793300000001" y2="103.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="102.45793300000001" y2="101.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="101.45793300000001" y2="101.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="101.45793300000001" y2="102.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="102.45793300000001" y2="102.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="104.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="103.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="103.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="104.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="104.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="103.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="103.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="104.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="107.45793300000001" y2="106.457933"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="106.457933" y2="106.457933"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="106.457933" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="107.45793300000001" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="107.45793300000001" y2="106.457933"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="106.457933" y2="106.457933"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="106.457933" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="107.45793300000001" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="109.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="108.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="108.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="109.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="109.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="108.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="108.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="109.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="112.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="111.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="111.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="112.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="112.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="111.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="111.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="112.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="114.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="113.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="113.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="114.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="114.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="113.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="113.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="114.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="117.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="116.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="116.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="117.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="117.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="116.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="116.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="117.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="119.95793300000001" y2="118.957933"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="118.957933" y2="118.957933"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="118.957933" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="119.95793300000001" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="119.95793300000001" y2="118.957933"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="118.957933" y2="118.957933"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="118.957933" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="119.95793300000001" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="122.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="121.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="121.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="122.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="122.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="121.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="121.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="122.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="124.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="123.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="123.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="124.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="124.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="123.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="123.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="124.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="127.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="126.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="126.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="127.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="127.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="126.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="126.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="127.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="129.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="128.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="128.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="129.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="129.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="128.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="128.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="129.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="132.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="131.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="131.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="132.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="132.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="131.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="131.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="132.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="134.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="133.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="133.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="134.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="134.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="133.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="133.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="134.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="137.45793300000003" y2="136.457933"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="136.457933" y2="136.457933"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="136.457933" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="137.45793300000003" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="137.45793300000003" y2="136.457933"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="136.457933" y2="136.457933"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="136.457933" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="137.45793300000003" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="139.95793300000003" y2="138.95793300000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="138.95793300000003" y2="138.95793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="138.95793300000003" y2="139.95793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="139.95793300000003" y2="139.95793300000003"/>
+  <line stroke="#888888" x1="114.50000000000001" x2="114.50000000000001" y1="140.957933" y2="137.957933"/>
+  <line stroke="#888888" x1="114.50000000000001" x2="117.50000000000001" y1="137.957933" y2="137.957933"/>
+  <line stroke="#888888" x1="117.50000000000001" x2="117.50000000000001" y1="137.957933" y2="140.957933"/>
+  <line stroke="#888888" x1="117.50000000000001" x2="114.50000000000001" y1="140.957933" y2="140.957933"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="97.95793300000001" y2="97.95793300000001"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="97.95793300000001" y2="97.457933"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="97.457933" y2="97.457933"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="97.457933" y2="97.95793300000001"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="145.70793300000003" y2="145.70793300000003"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="145.70793300000003" y2="146.20793300000003"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="146.20793300000003" y2="146.20793300000003"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="146.20793300000003" y2="145.70793300000003"/>
+  <line stroke="#888888" x1="133.00000000000003" x2="133.00000000000003" y1="141.20793300000003" y2="128.207933"/>
+  <line stroke="#888888" x1="133.00000000000003" x2="163.00000000000003" y1="128.207933" y2="128.207933"/>
+  <line stroke="#888888" x1="163.00000000000003" x2="163.00000000000003" y1="128.207933" y2="141.20793300000003"/>
+  <line stroke="#888888" x1="163.00000000000003" x2="133.00000000000003" y1="141.20793300000003" y2="141.20793300000003"/>
+  <line stroke="#888888" x1="140.06818181818184" x2="128.65909090909093" y1="95.70793300000001" y2="95.70793300000001"/>
+  <line stroke="#888888" x1="128.65909090909093" x2="128.65909090909093" y1="95.70793300000001" y2="95.207933"/>
+  <line stroke="#888888" x1="128.65909090909093" x2="140.06818181818184" y1="95.207933" y2="95.207933"/>
+  <line stroke="#888888" x1="140.06818181818184" x2="140.06818181818184" y1="95.207933" y2="95.70793300000001"/>
+  <line stroke="#888888" x1="167.3409090909091" x2="155.93181818181822" y1="95.70793300000001" y2="95.70793300000001"/>
+  <line stroke="#888888" x1="155.93181818181822" x2="155.93181818181822" y1="95.70793300000001" y2="95.207933"/>
+  <line stroke="#888888" x1="155.93181818181822" x2="167.3409090909091" y1="95.207933" y2="95.207933"/>
+  <line stroke="#888888" x1="167.3409090909091" x2="167.3409090909091" y1="95.207933" y2="95.70793300000001"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="112.6397511818182" y2="101.0488420909091"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="101.0488420909091" y2="101.0488420909091"/>
+  <line stroke="#888888" x1="170.75" x2="170.75" y1="101.0488420909091" y2="112.6397511818182"/>
+  <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="112.6397511818182" y2="112.6397511818182"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="140.36702390909093" y2="128.77611481818187"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="128.77611481818187" y2="128.77611481818187"/>
+  <line stroke="#888888" x1="170.75" x2="170.75" y1="128.77611481818187" y2="140.36702390909093"/>
+  <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="140.36702390909093" y2="140.36702390909093"/>
+  <line stroke="#888888" x1="10.5" x2="10.5" y1="103.45793300000001" y2="100.45793300000001"/>
+  <line stroke="#888888" x1="10.5" x2="13.500000000000002" y1="100.45793300000001" y2="100.45793300000001"/>
+  <line stroke="#888888" x1="13.500000000000002" x2="13.500000000000002" y1="100.45793300000001" y2="103.45793300000001"/>
+  <line stroke="#888888" x1="13.500000000000002" x2="10.5" y1="103.45793300000001" y2="103.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="102.45793300000001" y2="101.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="101.45793300000001" y2="101.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="101.45793300000001" y2="102.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="102.45793300000001" y2="102.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="104.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="103.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="103.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="104.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="104.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="103.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="103.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="104.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="107.45793300000001" y2="106.457933"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="106.457933" y2="106.457933"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="106.457933" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="107.45793300000001" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="107.45793300000001" y2="106.457933"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="106.457933" y2="106.457933"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="106.457933" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="107.45793300000001" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="109.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="108.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="108.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="109.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="109.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="108.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="108.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="109.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="112.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="111.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="111.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="112.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="112.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="111.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="111.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="112.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="114.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="113.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="113.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="114.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="114.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="113.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="113.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="114.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="117.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="116.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="116.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="117.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="117.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="116.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="116.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="117.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="119.95793300000001" y2="118.957933"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="118.957933" y2="118.957933"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="118.957933" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="119.95793300000001" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="119.95793300000001" y2="118.957933"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="118.957933" y2="118.957933"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="118.957933" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="119.95793300000001" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="122.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="121.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="121.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="122.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="122.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="121.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="121.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="122.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="124.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="123.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="123.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="124.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="124.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="123.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="123.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="124.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="127.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="126.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="126.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="127.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="127.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="126.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="126.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="127.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="129.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="128.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="128.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="129.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="129.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="128.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="128.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="129.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="132.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="131.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="131.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="132.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="132.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="131.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="131.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="132.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="134.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="133.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="133.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="134.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="134.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="133.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="133.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="134.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="137.45793300000003" y2="136.457933"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="136.457933" y2="136.457933"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="136.457933" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="137.45793300000003" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="137.45793300000003" y2="136.457933"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="136.457933" y2="136.457933"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="136.457933" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="137.45793300000003" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="139.95793300000003" y2="138.95793300000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="138.95793300000003" y2="138.95793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="138.95793300000003" y2="139.95793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="139.95793300000003" y2="139.95793300000003"/>
+  <line stroke="#888888" x1="30.500000000000004" x2="30.500000000000004" y1="140.957933" y2="137.957933"/>
+  <line stroke="#888888" x1="30.500000000000004" x2="33.50000000000001" y1="137.957933" y2="137.957933"/>
+  <line stroke="#888888" x1="33.50000000000001" x2="33.50000000000001" y1="137.957933" y2="140.957933"/>
+  <line stroke="#888888" x1="33.50000000000001" x2="30.500000000000004" y1="140.957933" y2="140.957933"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="97.95793300000001" y2="97.95793300000001"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="97.95793300000001" y2="97.457933"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="97.457933" y2="97.457933"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="97.457933" y2="97.95793300000001"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="145.70793300000003" y2="145.70793300000003"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="145.70793300000003" y2="146.20793300000003"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="146.20793300000003" y2="146.20793300000003"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="146.20793300000003" y2="145.70793300000003"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="101.2988420909091" y2="101.2988420909091"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="101.2988420909091" y2="112.3897511818182"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="112.3897511818182" y2="112.3897511818182"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="129.02611481818187" y2="129.02611481818187"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="129.02611481818187" y2="140.11702390909093"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="140.11702390909093" y2="140.11702390909093"/>
+  <line stroke="#888888" x1="27.750000000000004" x2="31.250000000000004" y1="74.20793300000001" y2="74.20793300000001"/>
+  <line stroke="#888888" x1="31.250000000000004" x2="31.250000000000004" y1="74.20793300000001" y2="82.20793300000001"/>
+  <line stroke="#888888" x1="31.250000000000004" x2="27.750000000000004" y1="82.20793300000001" y2="82.20793300000001"/>
+  <line opacity="0.25" stroke="#0000ff" x1="198.0" x2="259.00000000000006" y1="60.13862200040735" y2="60.13862200040735"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="259.00000000000006" y1="96.27724399959266" y2="60.13862200040735"/>
+  <line stroke="#000000" x1="198.0" x2="259.00000000000006" y1="96.27724399959266" y2="96.27724399959266"/>
+  <line stroke="#000000" x1="198.0" x2="198.0" y1="60.13862200040735" y2="96.27724399959266"/>
+  <line opacity="0.25" stroke="#0000ff" x1="259.00000000000006" x2="198.0" y1="36.13862200040735" y2="36.13862200040735"/>
+  <line opacity="0.5" stroke="#0000ff" x1="259.00000000000006" x2="259.00000000000006" y1="36.13862200040735" y2="60.13862200040735"/>
+  <line opacity="0.5" stroke="#0000ff" x1="198.0" x2="198.0" y1="60.13862200040735" y2="36.13862200040735"/>
+  <line stroke="#000000" x1="198.0" x2="198.0" y1="1.2220482403790813e-09" y2="36.13862200040735"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="198.0" y1="1.2220482403790813e-09" y2="1.2220482403790813e-09"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="259.00000000000006" y1="36.13862200040735" y2="1.2220482403790813e-09"/>
+  <line stroke="#000000" x1="269.0" x2="259.00000000000006" y1="36.13862200040735" y2="36.13862200040735"/>
+  <line stroke="#000000" x1="269.0" x2="269.0" y1="60.13862200040735" y2="36.13862200040735"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="269.0" y1="60.13862200040735" y2="60.13862200040735"/>
+  <line stroke="#000000" x1="188.00000000000003" x2="198.0" y1="60.13862200040735" y2="60.13862200040735"/>
+  <line stroke="#000000" x1="188.00000000000003" x2="188.00000000000003" y1="36.13862200040735" y2="60.13862200040735"/>
+  <line stroke="#000000" x1="198.0" x2="188.00000000000003" y1="36.13862200040735" y2="36.13862200040735"/>
+  <line stroke="#888888" x1="216.00000000000003" x2="227.00000000000003" y1="41.63862200040735" y2="41.63862200040735"/>
+  <line stroke="#888888" x1="227.00000000000003" x2="227.00000000000003" y1="41.63862200040735" y2="54.63862200040735"/>
+  <line stroke="#888888" x1="227.00000000000003" x2="216.00000000000003" y1="54.63862200040735" y2="54.63862200040735"/>
+  <line stroke="#888888" x1="216.00000000000003" x2="216.00000000000003" y1="54.63862200040735" y2="41.63862200040735"/>
+  <line stroke="#888888" x1="247.50000000000003" x2="253.50000000000003" y1="43.138622000407345" y2="43.138622000407345"/>
+  <line stroke="#888888" x1="253.50000000000003" x2="253.50000000000003" y1="43.138622000407345" y2="53.13862200040735"/>
+  <line stroke="#888888" x1="253.50000000000003" x2="247.50000000000003" y1="53.13862200040735" y2="53.13862200040735"/>
+  <line stroke="#888888" x1="247.50000000000003" x2="247.50000000000003" y1="53.13862200040735" y2="43.138622000407345"/>
+  <line stroke="#888888" x1="266.5" x2="261.50000000000006" y1="52.13862200040735" y2="52.13862200040735"/>
+  <line stroke="#888888" x1="261.50000000000006" x2="261.50000000000006" y1="52.13862200040735" y2="44.13862200040735"/>
+  <line stroke="#888888" x1="261.50000000000006" x2="266.5" y1="44.13862200040735" y2="44.13862200040735"/>
+  <line stroke="#888888" x1="190.50000000000003" x2="195.5" y1="44.13862200040735" y2="44.13862200040735"/>
+  <line stroke="#888888" x1="195.5" x2="195.5" y1="44.13862200040735" y2="52.13862200040735"/>
+  <line stroke="#888888" x1="195.5" x2="190.50000000000003" y1="52.13862200040735" y2="52.13862200040735"/>
+</svg>
diff --git a/rocolib/output/StackMount/graph-autofold-default.dxf b/rocolib/output/StackMount/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..5e439f012043839029390e5241334647fd303cd7
--- /dev/null
+++ b/rocolib/output/StackMount/graph-autofold-default.dxf
@@ -0,0 +1,7764 @@
+  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
+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
+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
+66.207933
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+94.00000000000001
+ 20
+66.207933
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+94.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+33.0
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+33.0
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+33.0
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.0
+ 20
+59.207933000000004
+ 30
+0.0
+ 11
+33.0
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+59.207933000000004
+ 30
+0.0
+ 11
+33.0
+ 21
+59.207933000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+66.207933
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+59.207933000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+66.207933
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+94.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.0
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+34.0
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+34.0
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+118.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.00000000000001
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.00000000000003
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.00000000000003
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+178.00000000000003
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.00000000000001
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+178.00000000000003
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.0
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+34.0
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+10.000000000000002
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+0.0
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+0.0
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.000000000000004
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+33.0
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.000000000000004
+ 20
+66.207933
+ 30
+0.0
+ 11
+26.000000000000004
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.0
+ 20
+66.207933
+ 30
+0.0
+ 11
+26.000000000000004
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+82.09090909090911
+ 20
+60.957933
+ 30
+0.0
+ 11
+85.59090909090911
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.59090909090911
+ 20
+60.957933
+ 30
+0.0
+ 11
+82.09090909090911
+ 21
+64.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+82.09090909090911
+ 20
+64.457933
+ 30
+0.0
+ 11
+71.1818181818182
+ 21
+64.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.1818181818182
+ 20
+64.457933
+ 30
+0.0
+ 11
+67.68181818181819
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.68181818181819
+ 20
+60.957933
+ 30
+0.0
+ 11
+71.1818181818182
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+54.818181818181834
+ 20
+60.957933
+ 30
+0.0
+ 11
+58.31818181818183
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+58.31818181818183
+ 20
+60.957933
+ 30
+0.0
+ 11
+54.818181818181834
+ 21
+64.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+54.818181818181834
+ 20
+64.457933
+ 30
+0.0
+ 11
+43.909090909090914
+ 21
+64.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+43.909090909090914
+ 20
+64.457933
+ 30
+0.0
+ 11
+40.40909090909092
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.40909090909092
+ 20
+60.957933
+ 30
+0.0
+ 11
+43.909090909090914
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.25000000000001
+ 20
+82.20793300000001
+ 30
+0.0
+ 11
+95.75000000000001
+ 21
+82.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.75000000000001
+ 20
+82.20793300000001
+ 30
+0.0
+ 11
+95.75000000000001
+ 21
+74.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.75000000000001
+ 20
+74.20793300000001
+ 30
+0.0
+ 11
+99.25000000000001
+ 21
+74.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+41.5
+ 20
+141.70793300000003
+ 30
+0.0
+ 11
+41.5
+ 21
+123.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+41.5
+ 20
+123.70793300000001
+ 30
+0.0
+ 11
+76.50000000000001
+ 21
+123.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+76.50000000000001
+ 20
+123.70793300000001
+ 30
+0.0
+ 11
+76.50000000000001
+ 21
+141.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+76.50000000000001
+ 20
+141.70793300000003
+ 30
+0.0
+ 11
+41.5
+ 21
+141.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.5
+ 20
+103.45793300000001
+ 30
+0.0
+ 11
+94.5
+ 21
+100.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.5
+ 20
+100.45793300000001
+ 30
+0.0
+ 11
+97.50000000000001
+ 21
+100.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+97.50000000000001
+ 20
+100.45793300000001
+ 30
+0.0
+ 11
+97.50000000000001
+ 21
+103.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+97.50000000000001
+ 20
+103.45793300000001
+ 30
+0.0
+ 11
+94.5
+ 21
+103.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+102.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+101.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+101.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+101.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+101.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+102.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+102.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+102.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+106.457933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+106.457933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+106.457933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+106.457933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+118.957933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+118.957933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+118.957933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+118.957933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+134.957933
+ 30
+0.0
+ 11
+95.5
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+133.957933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+133.957933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+134.957933
+ 30
+0.0
+ 11
+95.5
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+134.957933
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+133.957933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+133.957933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+134.957933
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+136.457933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+136.457933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+136.457933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+136.457933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+139.95793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+138.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+138.95793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+138.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+138.95793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+139.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+139.95793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+139.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+114.50000000000001
+ 20
+140.957933
+ 30
+0.0
+ 11
+114.50000000000001
+ 21
+137.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+114.50000000000001
+ 20
+137.957933
+ 30
+0.0
+ 11
+117.50000000000001
+ 21
+137.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+117.50000000000001
+ 20
+137.957933
+ 30
+0.0
+ 11
+117.50000000000001
+ 21
+140.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+117.50000000000001
+ 20
+140.957933
+ 30
+0.0
+ 11
+114.50000000000001
+ 21
+140.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.25000000000001
+ 20
+97.95793300000001
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+97.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.75000000000001
+ 20
+97.95793300000001
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+97.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.75000000000001
+ 20
+97.457933
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+97.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.25000000000001
+ 20
+97.457933
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+97.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.75000000000001
+ 20
+145.70793300000003
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+145.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.25000000000001
+ 20
+145.70793300000003
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+146.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.25000000000001
+ 20
+146.20793300000003
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+146.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.75000000000001
+ 20
+146.20793300000003
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+145.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+133.00000000000003
+ 20
+141.20793300000003
+ 30
+0.0
+ 11
+133.00000000000003
+ 21
+128.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+133.00000000000003
+ 20
+128.207933
+ 30
+0.0
+ 11
+163.00000000000003
+ 21
+128.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.00000000000003
+ 20
+128.207933
+ 30
+0.0
+ 11
+163.00000000000003
+ 21
+141.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.00000000000003
+ 20
+141.20793300000003
+ 30
+0.0
+ 11
+133.00000000000003
+ 21
+141.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.06818181818184
+ 20
+95.70793300000001
+ 30
+0.0
+ 11
+128.65909090909093
+ 21
+95.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.65909090909093
+ 20
+95.70793300000001
+ 30
+0.0
+ 11
+128.65909090909093
+ 21
+95.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.65909090909093
+ 20
+95.207933
+ 30
+0.0
+ 11
+140.06818181818184
+ 21
+95.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.06818181818184
+ 20
+95.207933
+ 30
+0.0
+ 11
+140.06818181818184
+ 21
+95.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+167.3409090909091
+ 20
+95.70793300000001
+ 30
+0.0
+ 11
+155.93181818181822
+ 21
+95.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+155.93181818181822
+ 20
+95.70793300000001
+ 30
+0.0
+ 11
+155.93181818181822
+ 21
+95.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+155.93181818181822
+ 20
+95.207933
+ 30
+0.0
+ 11
+167.3409090909091
+ 21
+95.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+167.3409090909091
+ 20
+95.207933
+ 30
+0.0
+ 11
+167.3409090909091
+ 21
+95.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.25000000000003
+ 20
+112.6397511818182
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+101.0488420909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.25000000000003
+ 20
+101.0488420909091
+ 30
+0.0
+ 11
+170.75
+ 21
+101.0488420909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.75
+ 20
+101.0488420909091
+ 30
+0.0
+ 11
+170.75
+ 21
+112.6397511818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.75
+ 20
+112.6397511818182
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+112.6397511818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.25000000000003
+ 20
+140.36702390909093
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+128.77611481818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.25000000000003
+ 20
+128.77611481818187
+ 30
+0.0
+ 11
+170.75
+ 21
+128.77611481818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.75
+ 20
+128.77611481818187
+ 30
+0.0
+ 11
+170.75
+ 21
+140.36702390909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.75
+ 20
+140.36702390909093
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+140.36702390909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.5
+ 20
+103.45793300000001
+ 30
+0.0
+ 11
+10.5
+ 21
+100.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.5
+ 20
+100.45793300000001
+ 30
+0.0
+ 11
+13.500000000000002
+ 21
+100.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+13.500000000000002
+ 20
+100.45793300000001
+ 30
+0.0
+ 11
+13.500000000000002
+ 21
+103.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+13.500000000000002
+ 20
+103.45793300000001
+ 30
+0.0
+ 11
+10.5
+ 21
+103.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+102.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+101.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+101.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+101.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+101.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+102.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+102.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+102.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+106.457933
+ 30
+0.0
+ 11
+12.5
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+106.457933
+ 30
+0.0
+ 11
+12.5
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+106.457933
+ 30
+0.0
+ 11
+32.5
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+106.457933
+ 30
+0.0
+ 11
+32.5
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+118.957933
+ 30
+0.0
+ 11
+12.5
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+118.957933
+ 30
+0.0
+ 11
+12.5
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+118.957933
+ 30
+0.0
+ 11
+32.5
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+118.957933
+ 30
+0.0
+ 11
+32.5
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+32.5
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+32.5
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+32.5
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+32.5
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+134.957933
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+133.957933
+ 30
+0.0
+ 11
+12.5
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+133.957933
+ 30
+0.0
+ 11
+12.5
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+134.957933
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+134.957933
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+133.957933
+ 30
+0.0
+ 11
+32.5
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+133.957933
+ 30
+0.0
+ 11
+32.5
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+134.957933
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+136.457933
+ 30
+0.0
+ 11
+12.5
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+136.457933
+ 30
+0.0
+ 11
+12.5
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+136.457933
+ 30
+0.0
+ 11
+32.5
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+136.457933
+ 30
+0.0
+ 11
+32.5
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+139.95793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+138.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+138.95793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+138.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+138.95793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+139.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+139.95793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+139.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+30.500000000000004
+ 20
+140.957933
+ 30
+0.0
+ 11
+30.500000000000004
+ 21
+137.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+30.500000000000004
+ 20
+137.957933
+ 30
+0.0
+ 11
+33.50000000000001
+ 21
+137.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.50000000000001
+ 20
+137.957933
+ 30
+0.0
+ 11
+33.50000000000001
+ 21
+140.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.50000000000001
+ 20
+140.957933
+ 30
+0.0
+ 11
+30.500000000000004
+ 21
+140.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.250000000000004
+ 20
+97.95793300000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+97.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.750000000000004
+ 20
+97.95793300000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+97.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.750000000000004
+ 20
+97.457933
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+97.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.250000000000004
+ 20
+97.457933
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+97.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.750000000000004
+ 20
+145.70793300000003
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+145.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.250000000000004
+ 20
+145.70793300000003
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+146.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.250000000000004
+ 20
+146.20793300000003
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+146.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.750000000000004
+ 20
+146.20793300000003
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+145.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+101.2988420909091
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+101.2988420909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+101.2988420909091
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+112.3897511818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+112.3897511818182
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+112.3897511818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+129.02611481818187
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+129.02611481818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+129.02611481818187
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+140.11702390909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+140.11702390909093
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+140.11702390909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+27.750000000000004
+ 20
+74.20793300000001
+ 30
+0.0
+ 11
+31.250000000000004
+ 21
+74.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.250000000000004
+ 20
+74.20793300000001
+ 30
+0.0
+ 11
+31.250000000000004
+ 21
+82.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.250000000000004
+ 20
+82.20793300000001
+ 30
+0.0
+ 11
+27.750000000000004
+ 21
+82.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+45
+ 10
+198.0
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.00000000000006
+ 20
+96.27724399959266
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+198.0
+ 20
+96.27724399959266
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+96.27724399959266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+198.0
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+198.0
+ 21
+96.27724399959266
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+45
+ 10
+259.00000000000006
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+198.0
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+259.00000000000006
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+198.0
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+198.0
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+198.0
+ 20
+1.2220482403790813e-09
+ 30
+0.0
+ 11
+198.0
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.00000000000006
+ 20
+1.2220482403790813e-09
+ 30
+0.0
+ 11
+198.0
+ 21
+1.2220482403790813e-09
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.00000000000006
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+1.2220482403790813e-09
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+269.0
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+269.0
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+269.0
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.00000000000006
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+269.0
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.00000000000003
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+198.0
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.00000000000003
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+188.00000000000003
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+198.0
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+188.00000000000003
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.00000000000003
+ 20
+41.63862200040735
+ 30
+0.0
+ 11
+227.00000000000003
+ 21
+41.63862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+227.00000000000003
+ 20
+41.63862200040735
+ 30
+0.0
+ 11
+227.00000000000003
+ 21
+54.63862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+227.00000000000003
+ 20
+54.63862200040735
+ 30
+0.0
+ 11
+216.00000000000003
+ 21
+54.63862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.00000000000003
+ 20
+54.63862200040735
+ 30
+0.0
+ 11
+216.00000000000003
+ 21
+41.63862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+247.50000000000003
+ 20
+43.138622000407345
+ 30
+0.0
+ 11
+253.50000000000003
+ 21
+43.138622000407345
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.50000000000003
+ 20
+43.138622000407345
+ 30
+0.0
+ 11
+253.50000000000003
+ 21
+53.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.50000000000003
+ 20
+53.13862200040735
+ 30
+0.0
+ 11
+247.50000000000003
+ 21
+53.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+247.50000000000003
+ 20
+53.13862200040735
+ 30
+0.0
+ 11
+247.50000000000003
+ 21
+43.138622000407345
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.5
+ 20
+52.13862200040735
+ 30
+0.0
+ 11
+261.50000000000006
+ 21
+52.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+261.50000000000006
+ 20
+52.13862200040735
+ 30
+0.0
+ 11
+261.50000000000006
+ 21
+44.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+261.50000000000006
+ 20
+44.13862200040735
+ 30
+0.0
+ 11
+266.5
+ 21
+44.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+190.50000000000003
+ 20
+44.13862200040735
+ 30
+0.0
+ 11
+195.5
+ 21
+44.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+195.5
+ 20
+44.13862200040735
+ 30
+0.0
+ 11
+195.5
+ 21
+52.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+195.5
+ 20
+52.13862200040735
+ 30
+0.0
+ 11
+190.50000000000003
+ 21
+52.13862200040735
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/StackMount/graph-autofold-graph.dxf b/rocolib/output/StackMount/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..9266877631ecb3d8f770f2e69693b23a51da802f
--- /dev/null
+++ b/rocolib/output/StackMount/graph-autofold-graph.dxf
@@ -0,0 +1,7734 @@
+  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
+66.207933
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+94.00000000000001
+ 20
+66.207933
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+94.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+33.0
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+33.0
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+33.0
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.0
+ 20
+59.207933000000004
+ 30
+0.0
+ 11
+33.0
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+59.207933000000004
+ 30
+0.0
+ 11
+33.0
+ 21
+59.207933000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+66.207933
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+59.207933000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+66.207933
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+94.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+34.0
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+34.0
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+118.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.00000000000001
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.00000000000003
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.00000000000003
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+178.00000000000003
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.00000000000001
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+178.00000000000003
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+34.0
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+10.000000000000002
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+0.0
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+0.0
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.000000000000004
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+33.0
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.000000000000004
+ 20
+66.207933
+ 30
+0.0
+ 11
+26.000000000000004
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.0
+ 20
+66.207933
+ 30
+0.0
+ 11
+26.000000000000004
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.09090909090911
+ 20
+60.957933
+ 30
+0.0
+ 11
+85.59090909090911
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.59090909090911
+ 20
+60.957933
+ 30
+0.0
+ 11
+82.09090909090911
+ 21
+64.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.09090909090911
+ 20
+64.457933
+ 30
+0.0
+ 11
+71.1818181818182
+ 21
+64.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.1818181818182
+ 20
+64.457933
+ 30
+0.0
+ 11
+67.68181818181819
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.68181818181819
+ 20
+60.957933
+ 30
+0.0
+ 11
+71.1818181818182
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.818181818181834
+ 20
+60.957933
+ 30
+0.0
+ 11
+58.31818181818183
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.31818181818183
+ 20
+60.957933
+ 30
+0.0
+ 11
+54.818181818181834
+ 21
+64.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.818181818181834
+ 20
+64.457933
+ 30
+0.0
+ 11
+43.909090909090914
+ 21
+64.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.909090909090914
+ 20
+64.457933
+ 30
+0.0
+ 11
+40.40909090909092
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.40909090909092
+ 20
+60.957933
+ 30
+0.0
+ 11
+43.909090909090914
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.25000000000001
+ 20
+82.20793300000001
+ 30
+0.0
+ 11
+95.75000000000001
+ 21
+82.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.75000000000001
+ 20
+82.20793300000001
+ 30
+0.0
+ 11
+95.75000000000001
+ 21
+74.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.75000000000001
+ 20
+74.20793300000001
+ 30
+0.0
+ 11
+99.25000000000001
+ 21
+74.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.5
+ 20
+141.70793300000003
+ 30
+0.0
+ 11
+41.5
+ 21
+123.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.5
+ 20
+123.70793300000001
+ 30
+0.0
+ 11
+76.50000000000001
+ 21
+123.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.50000000000001
+ 20
+123.70793300000001
+ 30
+0.0
+ 11
+76.50000000000001
+ 21
+141.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.50000000000001
+ 20
+141.70793300000003
+ 30
+0.0
+ 11
+41.5
+ 21
+141.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.5
+ 20
+103.45793300000001
+ 30
+0.0
+ 11
+94.5
+ 21
+100.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.5
+ 20
+100.45793300000001
+ 30
+0.0
+ 11
+97.50000000000001
+ 21
+100.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.50000000000001
+ 20
+100.45793300000001
+ 30
+0.0
+ 11
+97.50000000000001
+ 21
+103.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.50000000000001
+ 20
+103.45793300000001
+ 30
+0.0
+ 11
+94.5
+ 21
+103.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+102.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+101.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+101.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+101.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+101.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+102.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+102.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+102.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+106.457933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+106.457933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+106.457933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+106.457933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+118.957933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+118.957933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+118.957933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+118.957933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+134.957933
+ 30
+0.0
+ 11
+95.5
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+133.957933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+133.957933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+134.957933
+ 30
+0.0
+ 11
+95.5
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+134.957933
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+133.957933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+133.957933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+134.957933
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+136.457933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+136.457933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+136.457933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+136.457933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+139.95793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+138.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+138.95793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+138.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+138.95793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+139.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+139.95793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+139.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.50000000000001
+ 20
+140.957933
+ 30
+0.0
+ 11
+114.50000000000001
+ 21
+137.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.50000000000001
+ 20
+137.957933
+ 30
+0.0
+ 11
+117.50000000000001
+ 21
+137.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.50000000000001
+ 20
+137.957933
+ 30
+0.0
+ 11
+117.50000000000001
+ 21
+140.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.50000000000001
+ 20
+140.957933
+ 30
+0.0
+ 11
+114.50000000000001
+ 21
+140.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+97.95793300000001
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+97.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+97.95793300000001
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+97.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+97.457933
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+97.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+97.457933
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+97.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+145.70793300000003
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+145.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+145.70793300000003
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+146.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+146.20793300000003
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+146.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+146.20793300000003
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+145.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.00000000000003
+ 20
+141.20793300000003
+ 30
+0.0
+ 11
+133.00000000000003
+ 21
+128.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.00000000000003
+ 20
+128.207933
+ 30
+0.0
+ 11
+163.00000000000003
+ 21
+128.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.00000000000003
+ 20
+128.207933
+ 30
+0.0
+ 11
+163.00000000000003
+ 21
+141.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.00000000000003
+ 20
+141.20793300000003
+ 30
+0.0
+ 11
+133.00000000000003
+ 21
+141.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.06818181818184
+ 20
+95.70793300000001
+ 30
+0.0
+ 11
+128.65909090909093
+ 21
+95.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.65909090909093
+ 20
+95.70793300000001
+ 30
+0.0
+ 11
+128.65909090909093
+ 21
+95.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.65909090909093
+ 20
+95.207933
+ 30
+0.0
+ 11
+140.06818181818184
+ 21
+95.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.06818181818184
+ 20
+95.207933
+ 30
+0.0
+ 11
+140.06818181818184
+ 21
+95.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.3409090909091
+ 20
+95.70793300000001
+ 30
+0.0
+ 11
+155.93181818181822
+ 21
+95.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.93181818181822
+ 20
+95.70793300000001
+ 30
+0.0
+ 11
+155.93181818181822
+ 21
+95.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.93181818181822
+ 20
+95.207933
+ 30
+0.0
+ 11
+167.3409090909091
+ 21
+95.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.3409090909091
+ 20
+95.207933
+ 30
+0.0
+ 11
+167.3409090909091
+ 21
+95.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+112.6397511818182
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+101.0488420909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+101.0488420909091
+ 30
+0.0
+ 11
+170.75
+ 21
+101.0488420909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+101.0488420909091
+ 30
+0.0
+ 11
+170.75
+ 21
+112.6397511818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+112.6397511818182
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+112.6397511818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+140.36702390909093
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+128.77611481818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+128.77611481818187
+ 30
+0.0
+ 11
+170.75
+ 21
+128.77611481818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+128.77611481818187
+ 30
+0.0
+ 11
+170.75
+ 21
+140.36702390909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+140.36702390909093
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+140.36702390909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.5
+ 20
+103.45793300000001
+ 30
+0.0
+ 11
+10.5
+ 21
+100.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.5
+ 20
+100.45793300000001
+ 30
+0.0
+ 11
+13.500000000000002
+ 21
+100.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.500000000000002
+ 20
+100.45793300000001
+ 30
+0.0
+ 11
+13.500000000000002
+ 21
+103.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.500000000000002
+ 20
+103.45793300000001
+ 30
+0.0
+ 11
+10.5
+ 21
+103.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+102.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+101.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+101.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+101.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+101.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+102.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+102.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+102.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+106.457933
+ 30
+0.0
+ 11
+12.5
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+106.457933
+ 30
+0.0
+ 11
+12.5
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+106.457933
+ 30
+0.0
+ 11
+32.5
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+106.457933
+ 30
+0.0
+ 11
+32.5
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+118.957933
+ 30
+0.0
+ 11
+12.5
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+118.957933
+ 30
+0.0
+ 11
+12.5
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+118.957933
+ 30
+0.0
+ 11
+32.5
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+118.957933
+ 30
+0.0
+ 11
+32.5
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+32.5
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+32.5
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+32.5
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+32.5
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+134.957933
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+133.957933
+ 30
+0.0
+ 11
+12.5
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+133.957933
+ 30
+0.0
+ 11
+12.5
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+134.957933
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+134.957933
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+133.957933
+ 30
+0.0
+ 11
+32.5
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+133.957933
+ 30
+0.0
+ 11
+32.5
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+134.957933
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+136.457933
+ 30
+0.0
+ 11
+12.5
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+136.457933
+ 30
+0.0
+ 11
+12.5
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+136.457933
+ 30
+0.0
+ 11
+32.5
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+136.457933
+ 30
+0.0
+ 11
+32.5
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+139.95793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+138.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+138.95793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+138.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+138.95793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+139.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+139.95793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+139.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.500000000000004
+ 20
+140.957933
+ 30
+0.0
+ 11
+30.500000000000004
+ 21
+137.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.500000000000004
+ 20
+137.957933
+ 30
+0.0
+ 11
+33.50000000000001
+ 21
+137.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.50000000000001
+ 20
+137.957933
+ 30
+0.0
+ 11
+33.50000000000001
+ 21
+140.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.50000000000001
+ 20
+140.957933
+ 30
+0.0
+ 11
+30.500000000000004
+ 21
+140.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+97.95793300000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+97.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+97.95793300000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+97.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+97.457933
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+97.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+97.457933
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+97.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+145.70793300000003
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+145.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+145.70793300000003
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+146.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+146.20793300000003
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+146.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+146.20793300000003
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+145.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+101.2988420909091
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+101.2988420909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+101.2988420909091
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+112.3897511818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+112.3897511818182
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+112.3897511818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+129.02611481818187
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+129.02611481818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+129.02611481818187
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+140.11702390909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+140.11702390909093
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+140.11702390909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+27.750000000000004
+ 20
+74.20793300000001
+ 30
+0.0
+ 11
+31.250000000000004
+ 21
+74.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.250000000000004
+ 20
+74.20793300000001
+ 30
+0.0
+ 11
+31.250000000000004
+ 21
+82.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.250000000000004
+ 20
+82.20793300000001
+ 30
+0.0
+ 11
+27.750000000000004
+ 21
+82.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+198.0
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+96.27724399959266
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+96.27724399959266
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+96.27724399959266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+198.0
+ 21
+96.27724399959266
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+259.00000000000006
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+198.0
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+259.00000000000006
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+198.0
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+198.0
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+1.2220482403790813e-09
+ 30
+0.0
+ 11
+198.0
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+1.2220482403790813e-09
+ 30
+0.0
+ 11
+198.0
+ 21
+1.2220482403790813e-09
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+1.2220482403790813e-09
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.0
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.0
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+269.0
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+269.0
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.00000000000003
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+198.0
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.00000000000003
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+188.00000000000003
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+188.00000000000003
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.00000000000003
+ 20
+41.63862200040735
+ 30
+0.0
+ 11
+227.00000000000003
+ 21
+41.63862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.00000000000003
+ 20
+41.63862200040735
+ 30
+0.0
+ 11
+227.00000000000003
+ 21
+54.63862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.00000000000003
+ 20
+54.63862200040735
+ 30
+0.0
+ 11
+216.00000000000003
+ 21
+54.63862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.00000000000003
+ 20
+54.63862200040735
+ 30
+0.0
+ 11
+216.00000000000003
+ 21
+41.63862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.50000000000003
+ 20
+43.138622000407345
+ 30
+0.0
+ 11
+253.50000000000003
+ 21
+43.138622000407345
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.50000000000003
+ 20
+43.138622000407345
+ 30
+0.0
+ 11
+253.50000000000003
+ 21
+53.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.50000000000003
+ 20
+53.13862200040735
+ 30
+0.0
+ 11
+247.50000000000003
+ 21
+53.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.50000000000003
+ 20
+53.13862200040735
+ 30
+0.0
+ 11
+247.50000000000003
+ 21
+43.138622000407345
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.5
+ 20
+52.13862200040735
+ 30
+0.0
+ 11
+261.50000000000006
+ 21
+52.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+261.50000000000006
+ 20
+52.13862200040735
+ 30
+0.0
+ 11
+261.50000000000006
+ 21
+44.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+261.50000000000006
+ 20
+44.13862200040735
+ 30
+0.0
+ 11
+266.5
+ 21
+44.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+190.50000000000003
+ 20
+44.13862200040735
+ 30
+0.0
+ 11
+195.5
+ 21
+44.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+195.5
+ 20
+44.13862200040735
+ 30
+0.0
+ 11
+195.5
+ 21
+52.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+195.5
+ 20
+52.13862200040735
+ 30
+0.0
+ 11
+190.50000000000003
+ 21
+52.13862200040735
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/StackMount/graph-lasercutter.svg b/rocolib/output/StackMount/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9ec0f0dd85b456e2ae02bfe38c4755b6c28b9c07
--- /dev/null
+++ b/rocolib/output/StackMount/graph-lasercutter.svg
@@ -0,0 +1,380 @@
+<?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.207933mm" version="1.1" viewBox="0.000000 0.000000 269.000000 151.207933" width="269.000000mm">
+  <defs/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="33.0" x2="94.00000000000001" y1="66.207933" y2="66.207933"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="94.00000000000001" y1="66.207933" y2="90.20793300000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="33.0" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="33.0" x2="33.0" y1="90.20793300000001" y2="66.207933"/>
+  <line stroke="#000000" x1="33.0" x2="33.0" y1="59.207933000000004" y2="66.207933"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="33.0" y1="59.207933000000004" y2="59.207933000000004"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="93.00000000000001" y1="66.207933" y2="59.207933000000004"/>
+  <line stroke="#000000" x1="101.00000000000001" x2="94.00000000000001" y1="66.207933" y2="66.207933"/>
+  <line stroke="#000000" x1="101.00000000000001" x2="101.00000000000001" y1="90.20793300000001" y2="66.207933"/>
+  <line stroke="#000000" x1="94.00000000000001" x2="101.00000000000001" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="94.00000000000001" y1="90.20793300000001" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="34.0" x2="94.00000000000001" y1="151.20793300000003" y2="151.20793300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="34.0" y1="90.20793300000001" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="118.00000000000001" x2="94.00000000000001" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="118.00000000000001" x2="118.00000000000001" y1="90.20793300000001" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="94.00000000000001" x2="118.00000000000001" y1="151.20793300000003" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="178.00000000000003" x2="118.00000000000001" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="178.00000000000003" x2="178.00000000000003" y1="151.20793300000003" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="118.00000000000001" x2="178.00000000000003" y1="151.20793300000003" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="34.0" x2="10.000000000000002" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="34.0" y1="151.20793300000003" y2="151.20793300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="151.20793300000003" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="151.20793300000003" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="90.20793300000001" y2="151.20793300000003"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="26.000000000000004" x2="33.0" y1="90.20793300000001" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="26.000000000000004" x2="26.000000000000004" y1="66.207933" y2="90.20793300000001"/>
+  <line stroke="#000000" x1="33.0" x2="26.000000000000004" y1="66.207933" y2="66.207933"/>
+  <line stroke="#888888" x1="82.09090909090911" x2="85.59090909090911" y1="60.957933" y2="60.957933"/>
+  <line stroke="#888888" x1="85.59090909090911" x2="82.09090909090911" y1="60.957933" y2="64.457933"/>
+  <line stroke="#888888" x1="82.09090909090911" x2="71.1818181818182" y1="64.457933" y2="64.457933"/>
+  <line stroke="#888888" x1="71.1818181818182" x2="67.68181818181819" y1="64.457933" y2="60.957933"/>
+  <line stroke="#888888" x1="67.68181818181819" x2="71.1818181818182" y1="60.957933" y2="60.957933"/>
+  <line stroke="#888888" x1="54.818181818181834" x2="58.31818181818183" y1="60.957933" y2="60.957933"/>
+  <line stroke="#888888" x1="58.31818181818183" x2="54.818181818181834" y1="60.957933" y2="64.457933"/>
+  <line stroke="#888888" x1="54.818181818181834" x2="43.909090909090914" y1="64.457933" y2="64.457933"/>
+  <line stroke="#888888" x1="43.909090909090914" x2="40.40909090909092" y1="64.457933" y2="60.957933"/>
+  <line stroke="#888888" x1="40.40909090909092" x2="43.909090909090914" y1="60.957933" y2="60.957933"/>
+  <line stroke="#888888" x1="99.25000000000001" x2="95.75000000000001" y1="82.20793300000001" y2="82.20793300000001"/>
+  <line stroke="#888888" x1="95.75000000000001" x2="95.75000000000001" y1="82.20793300000001" y2="74.20793300000001"/>
+  <line stroke="#888888" x1="95.75000000000001" x2="99.25000000000001" y1="74.20793300000001" y2="74.20793300000001"/>
+  <line stroke="#888888" x1="41.5" x2="41.5" y1="141.70793300000003" y2="123.70793300000001"/>
+  <line stroke="#888888" x1="41.5" x2="76.50000000000001" y1="123.70793300000001" y2="123.70793300000001"/>
+  <line stroke="#888888" x1="76.50000000000001" x2="76.50000000000001" y1="123.70793300000001" y2="141.70793300000003"/>
+  <line stroke="#888888" x1="76.50000000000001" x2="41.5" y1="141.70793300000003" y2="141.70793300000003"/>
+  <line stroke="#888888" x1="94.5" x2="94.5" y1="103.45793300000001" y2="100.45793300000001"/>
+  <line stroke="#888888" x1="94.5" x2="97.50000000000001" y1="100.45793300000001" y2="100.45793300000001"/>
+  <line stroke="#888888" x1="97.50000000000001" x2="97.50000000000001" y1="100.45793300000001" y2="103.45793300000001"/>
+  <line stroke="#888888" x1="97.50000000000001" x2="94.5" y1="103.45793300000001" y2="103.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="102.45793300000001" y2="101.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="101.45793300000001" y2="101.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="101.45793300000001" y2="102.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="102.45793300000001" y2="102.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="104.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="103.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="103.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="104.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="104.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="103.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="103.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="104.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="107.45793300000001" y2="106.457933"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="106.457933" y2="106.457933"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="106.457933" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="107.45793300000001" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="107.45793300000001" y2="106.457933"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="106.457933" y2="106.457933"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="106.457933" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="107.45793300000001" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="109.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="108.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="108.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="109.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="109.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="108.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="108.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="109.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="112.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="111.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="111.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="112.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="112.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="111.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="111.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="112.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="114.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="113.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="113.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="114.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="114.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="113.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="113.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="114.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="117.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="116.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="116.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="117.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="117.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="116.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="116.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="117.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="119.95793300000001" y2="118.957933"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="118.957933" y2="118.957933"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="118.957933" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="119.95793300000001" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="119.95793300000001" y2="118.957933"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="118.957933" y2="118.957933"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="118.957933" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="119.95793300000001" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="122.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="121.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="121.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="122.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="122.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="121.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="121.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="122.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="124.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="123.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="123.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="124.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="124.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="123.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="123.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="124.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="127.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="126.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="126.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="127.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="127.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="126.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="126.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="127.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="129.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="128.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="128.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="129.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="129.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="128.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="128.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="129.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="132.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="131.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="131.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="132.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="132.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="131.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="131.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="132.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="134.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="133.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="133.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="134.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="134.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="133.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="133.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="134.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="137.45793300000003" y2="136.457933"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="136.457933" y2="136.457933"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="136.457933" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="137.45793300000003" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="137.45793300000003" y2="136.457933"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="136.457933" y2="136.457933"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="136.457933" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="137.45793300000003" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="139.95793300000003" y2="138.95793300000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="138.95793300000003" y2="138.95793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="138.95793300000003" y2="139.95793300000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="139.95793300000003" y2="139.95793300000003"/>
+  <line stroke="#888888" x1="114.50000000000001" x2="114.50000000000001" y1="140.957933" y2="137.957933"/>
+  <line stroke="#888888" x1="114.50000000000001" x2="117.50000000000001" y1="137.957933" y2="137.957933"/>
+  <line stroke="#888888" x1="117.50000000000001" x2="117.50000000000001" y1="137.957933" y2="140.957933"/>
+  <line stroke="#888888" x1="117.50000000000001" x2="114.50000000000001" y1="140.957933" y2="140.957933"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="97.95793300000001" y2="97.95793300000001"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="97.95793300000001" y2="97.457933"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="97.457933" y2="97.457933"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="97.457933" y2="97.95793300000001"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="145.70793300000003" y2="145.70793300000003"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="145.70793300000003" y2="146.20793300000003"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="146.20793300000003" y2="146.20793300000003"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="146.20793300000003" y2="145.70793300000003"/>
+  <line stroke="#888888" x1="133.00000000000003" x2="133.00000000000003" y1="141.20793300000003" y2="128.207933"/>
+  <line stroke="#888888" x1="133.00000000000003" x2="163.00000000000003" y1="128.207933" y2="128.207933"/>
+  <line stroke="#888888" x1="163.00000000000003" x2="163.00000000000003" y1="128.207933" y2="141.20793300000003"/>
+  <line stroke="#888888" x1="163.00000000000003" x2="133.00000000000003" y1="141.20793300000003" y2="141.20793300000003"/>
+  <line stroke="#888888" x1="140.06818181818184" x2="128.65909090909093" y1="95.70793300000001" y2="95.70793300000001"/>
+  <line stroke="#888888" x1="128.65909090909093" x2="128.65909090909093" y1="95.70793300000001" y2="95.207933"/>
+  <line stroke="#888888" x1="128.65909090909093" x2="140.06818181818184" y1="95.207933" y2="95.207933"/>
+  <line stroke="#888888" x1="140.06818181818184" x2="140.06818181818184" y1="95.207933" y2="95.70793300000001"/>
+  <line stroke="#888888" x1="167.3409090909091" x2="155.93181818181822" y1="95.70793300000001" y2="95.70793300000001"/>
+  <line stroke="#888888" x1="155.93181818181822" x2="155.93181818181822" y1="95.70793300000001" y2="95.207933"/>
+  <line stroke="#888888" x1="155.93181818181822" x2="167.3409090909091" y1="95.207933" y2="95.207933"/>
+  <line stroke="#888888" x1="167.3409090909091" x2="167.3409090909091" y1="95.207933" y2="95.70793300000001"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="112.6397511818182" y2="101.0488420909091"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="101.0488420909091" y2="101.0488420909091"/>
+  <line stroke="#888888" x1="170.75" x2="170.75" y1="101.0488420909091" y2="112.6397511818182"/>
+  <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="112.6397511818182" y2="112.6397511818182"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="140.36702390909093" y2="128.77611481818187"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="128.77611481818187" y2="128.77611481818187"/>
+  <line stroke="#888888" x1="170.75" x2="170.75" y1="128.77611481818187" y2="140.36702390909093"/>
+  <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="140.36702390909093" y2="140.36702390909093"/>
+  <line stroke="#888888" x1="10.5" x2="10.5" y1="103.45793300000001" y2="100.45793300000001"/>
+  <line stroke="#888888" x1="10.5" x2="13.500000000000002" y1="100.45793300000001" y2="100.45793300000001"/>
+  <line stroke="#888888" x1="13.500000000000002" x2="13.500000000000002" y1="100.45793300000001" y2="103.45793300000001"/>
+  <line stroke="#888888" x1="13.500000000000002" x2="10.5" y1="103.45793300000001" y2="103.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="102.45793300000001" y2="101.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="101.45793300000001" y2="101.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="101.45793300000001" y2="102.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="102.45793300000001" y2="102.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="104.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="103.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="103.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="104.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="104.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="103.95793300000001" y2="103.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="103.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="104.95793300000001" y2="104.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="107.45793300000001" y2="106.457933"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="106.457933" y2="106.457933"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="106.457933" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="107.45793300000001" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="107.45793300000001" y2="106.457933"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="106.457933" y2="106.457933"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="106.457933" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="107.45793300000001" y2="107.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="109.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="108.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="108.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="109.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="109.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="108.95793300000001" y2="108.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="108.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="109.95793300000001" y2="109.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="112.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="111.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="111.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="112.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="112.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="111.45793300000001" y2="111.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="111.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="112.45793300000001" y2="112.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="114.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="113.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="113.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="114.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="114.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="113.95793300000001" y2="113.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="113.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="114.95793300000001" y2="114.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="117.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="116.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="116.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="117.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="117.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="116.45793300000001" y2="116.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="116.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="117.45793300000001" y2="117.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="119.95793300000001" y2="118.957933"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="118.957933" y2="118.957933"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="118.957933" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="119.95793300000001" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="119.95793300000001" y2="118.957933"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="118.957933" y2="118.957933"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="118.957933" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="119.95793300000001" y2="119.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="122.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="121.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="121.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="122.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="122.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="121.45793300000001" y2="121.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="121.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="122.45793300000001" y2="122.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="124.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="123.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="123.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="124.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="124.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="123.95793300000001" y2="123.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="123.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="124.95793300000001" y2="124.95793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="127.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="126.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="126.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="127.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="127.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="126.45793300000001" y2="126.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="126.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="127.45793300000001" y2="127.45793300000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="129.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="128.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="128.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="129.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="129.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="128.95793300000003" y2="128.95793300000003"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="128.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="129.95793300000003" y2="129.95793300000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="132.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="131.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="131.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="132.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="132.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="131.45793300000003" y2="131.45793300000003"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="131.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="132.45793300000003" y2="132.45793300000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="134.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="133.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="133.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="134.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="134.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="133.957933" y2="133.957933"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="133.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="134.957933" y2="134.957933"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="137.45793300000003" y2="136.457933"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="136.457933" y2="136.457933"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="136.457933" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="137.45793300000003" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="137.45793300000003" y2="136.457933"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="136.457933" y2="136.457933"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="136.457933" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="137.45793300000003" y2="137.45793300000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="139.95793300000003" y2="138.95793300000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="138.95793300000003" y2="138.95793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="138.95793300000003" y2="139.95793300000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="139.95793300000003" y2="139.95793300000003"/>
+  <line stroke="#888888" x1="30.500000000000004" x2="30.500000000000004" y1="140.957933" y2="137.957933"/>
+  <line stroke="#888888" x1="30.500000000000004" x2="33.50000000000001" y1="137.957933" y2="137.957933"/>
+  <line stroke="#888888" x1="33.50000000000001" x2="33.50000000000001" y1="137.957933" y2="140.957933"/>
+  <line stroke="#888888" x1="33.50000000000001" x2="30.500000000000004" y1="140.957933" y2="140.957933"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="97.95793300000001" y2="97.95793300000001"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="97.95793300000001" y2="97.457933"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="97.457933" y2="97.457933"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="97.457933" y2="97.95793300000001"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="145.70793300000003" y2="145.70793300000003"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="145.70793300000003" y2="146.20793300000003"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="146.20793300000003" y2="146.20793300000003"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="146.20793300000003" y2="145.70793300000003"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="101.2988420909091" y2="101.2988420909091"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="101.2988420909091" y2="112.3897511818182"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="112.3897511818182" y2="112.3897511818182"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="129.02611481818187" y2="129.02611481818187"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="129.02611481818187" y2="140.11702390909093"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="140.11702390909093" y2="140.11702390909093"/>
+  <line stroke="#888888" x1="27.750000000000004" x2="31.250000000000004" y1="74.20793300000001" y2="74.20793300000001"/>
+  <line stroke="#888888" x1="31.250000000000004" x2="31.250000000000004" y1="74.20793300000001" y2="82.20793300000001"/>
+  <line stroke="#888888" x1="31.250000000000004" x2="27.750000000000004" y1="82.20793300000001" y2="82.20793300000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="198.0" x2="259.00000000000006" y1="60.13862200040735" y2="60.13862200040735"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="259.00000000000006" y1="96.27724399959266" y2="60.13862200040735"/>
+  <line stroke="#000000" x1="198.0" x2="259.00000000000006" y1="96.27724399959266" y2="96.27724399959266"/>
+  <line stroke="#000000" x1="198.0" x2="198.0" y1="60.13862200040735" y2="96.27724399959266"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="259.00000000000006" x2="198.0" y1="36.13862200040735" y2="36.13862200040735"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="259.00000000000006" x2="259.00000000000006" y1="36.13862200040735" y2="60.13862200040735"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="198.0" x2="198.0" y1="60.13862200040735" y2="36.13862200040735"/>
+  <line stroke="#000000" x1="198.0" x2="198.0" y1="1.2220482403790813e-09" y2="36.13862200040735"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="198.0" y1="1.2220482403790813e-09" y2="1.2220482403790813e-09"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="259.00000000000006" y1="36.13862200040735" y2="1.2220482403790813e-09"/>
+  <line stroke="#000000" x1="269.0" x2="259.00000000000006" y1="36.13862200040735" y2="36.13862200040735"/>
+  <line stroke="#000000" x1="269.0" x2="269.0" y1="60.13862200040735" y2="36.13862200040735"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="269.0" y1="60.13862200040735" y2="60.13862200040735"/>
+  <line stroke="#000000" x1="188.00000000000003" x2="198.0" y1="60.13862200040735" y2="60.13862200040735"/>
+  <line stroke="#000000" x1="188.00000000000003" x2="188.00000000000003" y1="36.13862200040735" y2="60.13862200040735"/>
+  <line stroke="#000000" x1="198.0" x2="188.00000000000003" y1="36.13862200040735" y2="36.13862200040735"/>
+  <line stroke="#888888" x1="216.00000000000003" x2="227.00000000000003" y1="41.63862200040735" y2="41.63862200040735"/>
+  <line stroke="#888888" x1="227.00000000000003" x2="227.00000000000003" y1="41.63862200040735" y2="54.63862200040735"/>
+  <line stroke="#888888" x1="227.00000000000003" x2="216.00000000000003" y1="54.63862200040735" y2="54.63862200040735"/>
+  <line stroke="#888888" x1="216.00000000000003" x2="216.00000000000003" y1="54.63862200040735" y2="41.63862200040735"/>
+  <line stroke="#888888" x1="247.50000000000003" x2="253.50000000000003" y1="43.138622000407345" y2="43.138622000407345"/>
+  <line stroke="#888888" x1="253.50000000000003" x2="253.50000000000003" y1="43.138622000407345" y2="53.13862200040735"/>
+  <line stroke="#888888" x1="253.50000000000003" x2="247.50000000000003" y1="53.13862200040735" y2="53.13862200040735"/>
+  <line stroke="#888888" x1="247.50000000000003" x2="247.50000000000003" y1="53.13862200040735" y2="43.138622000407345"/>
+  <line stroke="#888888" x1="266.5" x2="261.50000000000006" y1="52.13862200040735" y2="52.13862200040735"/>
+  <line stroke="#888888" x1="261.50000000000006" x2="261.50000000000006" y1="52.13862200040735" y2="44.13862200040735"/>
+  <line stroke="#888888" x1="261.50000000000006" x2="266.5" y1="44.13862200040735" y2="44.13862200040735"/>
+  <line stroke="#888888" x1="190.50000000000003" x2="195.5" y1="44.13862200040735" y2="44.13862200040735"/>
+  <line stroke="#888888" x1="195.5" x2="195.5" y1="44.13862200040735" y2="52.13862200040735"/>
+  <line stroke="#888888" x1="195.5" x2="190.50000000000003" y1="52.13862200040735" y2="52.13862200040735"/>
+</svg>
diff --git a/rocolib/output/StackMount/graph-model.png b/rocolib/output/StackMount/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..50d7fcd99d3cbc3c98fd2622228b1a9cae3449c4
Binary files /dev/null and b/rocolib/output/StackMount/graph-model.png differ
diff --git a/rocolib/output/StackMount/graph-model.stl b/rocolib/output/StackMount/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..7c83ce55608a5679ceb401c158cb1660cc6b78e9
--- /dev/null
+++ b/rocolib/output/StackMount/graph-model.stl
@@ -0,0 +1,3054 @@
+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.0305 -0.0280 -0.0240
+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.0305 -0.0110 -0.0071
+vertex -0.0305 -0.0280 -0.0240
+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
+endsolid python
diff --git a/rocolib/output/StackMount/graph-silhouette.dxf b/rocolib/output/StackMount/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..9266877631ecb3d8f770f2e69693b23a51da802f
--- /dev/null
+++ b/rocolib/output/StackMount/graph-silhouette.dxf
@@ -0,0 +1,7734 @@
+  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
+66.207933
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+94.00000000000001
+ 20
+66.207933
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+94.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+33.0
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+33.0
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+33.0
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.0
+ 20
+59.207933000000004
+ 30
+0.0
+ 11
+33.0
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+59.207933000000004
+ 30
+0.0
+ 11
+33.0
+ 21
+59.207933000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+66.207933
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+59.207933000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+66.207933
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+94.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+34.0
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+34.0
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+118.00000000000001
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.00000000000001
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.00000000000003
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.00000000000003
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+178.00000000000003
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.00000000000001
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+178.00000000000003
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+34.0
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+10.000000000000002
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+151.20793300000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+0.0
+ 21
+151.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+0.0
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.000000000000004
+ 20
+90.20793300000001
+ 30
+0.0
+ 11
+33.0
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.000000000000004
+ 20
+66.207933
+ 30
+0.0
+ 11
+26.000000000000004
+ 21
+90.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.0
+ 20
+66.207933
+ 30
+0.0
+ 11
+26.000000000000004
+ 21
+66.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.09090909090911
+ 20
+60.957933
+ 30
+0.0
+ 11
+85.59090909090911
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.59090909090911
+ 20
+60.957933
+ 30
+0.0
+ 11
+82.09090909090911
+ 21
+64.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.09090909090911
+ 20
+64.457933
+ 30
+0.0
+ 11
+71.1818181818182
+ 21
+64.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.1818181818182
+ 20
+64.457933
+ 30
+0.0
+ 11
+67.68181818181819
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.68181818181819
+ 20
+60.957933
+ 30
+0.0
+ 11
+71.1818181818182
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.818181818181834
+ 20
+60.957933
+ 30
+0.0
+ 11
+58.31818181818183
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.31818181818183
+ 20
+60.957933
+ 30
+0.0
+ 11
+54.818181818181834
+ 21
+64.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.818181818181834
+ 20
+64.457933
+ 30
+0.0
+ 11
+43.909090909090914
+ 21
+64.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.909090909090914
+ 20
+64.457933
+ 30
+0.0
+ 11
+40.40909090909092
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.40909090909092
+ 20
+60.957933
+ 30
+0.0
+ 11
+43.909090909090914
+ 21
+60.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.25000000000001
+ 20
+82.20793300000001
+ 30
+0.0
+ 11
+95.75000000000001
+ 21
+82.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.75000000000001
+ 20
+82.20793300000001
+ 30
+0.0
+ 11
+95.75000000000001
+ 21
+74.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.75000000000001
+ 20
+74.20793300000001
+ 30
+0.0
+ 11
+99.25000000000001
+ 21
+74.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.5
+ 20
+141.70793300000003
+ 30
+0.0
+ 11
+41.5
+ 21
+123.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.5
+ 20
+123.70793300000001
+ 30
+0.0
+ 11
+76.50000000000001
+ 21
+123.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.50000000000001
+ 20
+123.70793300000001
+ 30
+0.0
+ 11
+76.50000000000001
+ 21
+141.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.50000000000001
+ 20
+141.70793300000003
+ 30
+0.0
+ 11
+41.5
+ 21
+141.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.5
+ 20
+103.45793300000001
+ 30
+0.0
+ 11
+94.5
+ 21
+100.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.5
+ 20
+100.45793300000001
+ 30
+0.0
+ 11
+97.50000000000001
+ 21
+100.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.50000000000001
+ 20
+100.45793300000001
+ 30
+0.0
+ 11
+97.50000000000001
+ 21
+103.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.50000000000001
+ 20
+103.45793300000001
+ 30
+0.0
+ 11
+94.5
+ 21
+103.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+102.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+101.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+101.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+101.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+101.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+102.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+102.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+102.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+106.457933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+106.457933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+106.457933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+106.457933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+118.957933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+118.957933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+118.957933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+118.957933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+95.5
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+134.957933
+ 30
+0.0
+ 11
+95.5
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+133.957933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+133.957933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+134.957933
+ 30
+0.0
+ 11
+95.5
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+134.957933
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+133.957933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+133.957933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+134.957933
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+136.457933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+136.457933
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+136.457933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+136.457933
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+139.95793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+138.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+138.95793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+138.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+138.95793300000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+139.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+139.95793300000003
+ 30
+0.0
+ 11
+95.5
+ 21
+139.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.50000000000001
+ 20
+140.957933
+ 30
+0.0
+ 11
+114.50000000000001
+ 21
+137.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.50000000000001
+ 20
+137.957933
+ 30
+0.0
+ 11
+117.50000000000001
+ 21
+137.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.50000000000001
+ 20
+137.957933
+ 30
+0.0
+ 11
+117.50000000000001
+ 21
+140.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.50000000000001
+ 20
+140.957933
+ 30
+0.0
+ 11
+114.50000000000001
+ 21
+140.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+97.95793300000001
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+97.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+97.95793300000001
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+97.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+97.457933
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+97.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+97.457933
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+97.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+145.70793300000003
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+145.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+145.70793300000003
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+146.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+146.20793300000003
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+146.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+146.20793300000003
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+145.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.00000000000003
+ 20
+141.20793300000003
+ 30
+0.0
+ 11
+133.00000000000003
+ 21
+128.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.00000000000003
+ 20
+128.207933
+ 30
+0.0
+ 11
+163.00000000000003
+ 21
+128.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.00000000000003
+ 20
+128.207933
+ 30
+0.0
+ 11
+163.00000000000003
+ 21
+141.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.00000000000003
+ 20
+141.20793300000003
+ 30
+0.0
+ 11
+133.00000000000003
+ 21
+141.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.06818181818184
+ 20
+95.70793300000001
+ 30
+0.0
+ 11
+128.65909090909093
+ 21
+95.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.65909090909093
+ 20
+95.70793300000001
+ 30
+0.0
+ 11
+128.65909090909093
+ 21
+95.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.65909090909093
+ 20
+95.207933
+ 30
+0.0
+ 11
+140.06818181818184
+ 21
+95.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.06818181818184
+ 20
+95.207933
+ 30
+0.0
+ 11
+140.06818181818184
+ 21
+95.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.3409090909091
+ 20
+95.70793300000001
+ 30
+0.0
+ 11
+155.93181818181822
+ 21
+95.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.93181818181822
+ 20
+95.70793300000001
+ 30
+0.0
+ 11
+155.93181818181822
+ 21
+95.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.93181818181822
+ 20
+95.207933
+ 30
+0.0
+ 11
+167.3409090909091
+ 21
+95.207933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.3409090909091
+ 20
+95.207933
+ 30
+0.0
+ 11
+167.3409090909091
+ 21
+95.70793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+112.6397511818182
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+101.0488420909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+101.0488420909091
+ 30
+0.0
+ 11
+170.75
+ 21
+101.0488420909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+101.0488420909091
+ 30
+0.0
+ 11
+170.75
+ 21
+112.6397511818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+112.6397511818182
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+112.6397511818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+140.36702390909093
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+128.77611481818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+128.77611481818187
+ 30
+0.0
+ 11
+170.75
+ 21
+128.77611481818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+128.77611481818187
+ 30
+0.0
+ 11
+170.75
+ 21
+140.36702390909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+140.36702390909093
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+140.36702390909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.5
+ 20
+103.45793300000001
+ 30
+0.0
+ 11
+10.5
+ 21
+100.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.5
+ 20
+100.45793300000001
+ 30
+0.0
+ 11
+13.500000000000002
+ 21
+100.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.500000000000002
+ 20
+100.45793300000001
+ 30
+0.0
+ 11
+13.500000000000002
+ 21
+103.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.500000000000002
+ 20
+103.45793300000001
+ 30
+0.0
+ 11
+10.5
+ 21
+103.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+102.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+101.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+101.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+101.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+101.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+102.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+102.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+102.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+103.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+103.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+104.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+104.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+106.457933
+ 30
+0.0
+ 11
+12.5
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+106.457933
+ 30
+0.0
+ 11
+12.5
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+106.457933
+ 30
+0.0
+ 11
+32.5
+ 21
+106.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+106.457933
+ 30
+0.0
+ 11
+32.5
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+107.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+107.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+108.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+108.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+109.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+109.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+111.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+111.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+112.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+112.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+113.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+113.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+114.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+114.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+116.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+116.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+117.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+117.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+118.957933
+ 30
+0.0
+ 11
+12.5
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+118.957933
+ 30
+0.0
+ 11
+12.5
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+118.957933
+ 30
+0.0
+ 11
+32.5
+ 21
+118.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+118.957933
+ 30
+0.0
+ 11
+32.5
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+119.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+119.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+121.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+121.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+122.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+122.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+123.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+123.95793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+124.95793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+124.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+12.5
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+126.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+126.45793300000001
+ 30
+0.0
+ 11
+32.5
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+127.45793300000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+127.45793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+32.5
+ 21
+128.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+128.95793300000003
+ 30
+0.0
+ 11
+32.5
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+129.95793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+129.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+32.5
+ 21
+131.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+131.45793300000003
+ 30
+0.0
+ 11
+32.5
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+132.45793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+132.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+134.957933
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+133.957933
+ 30
+0.0
+ 11
+12.5
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+133.957933
+ 30
+0.0
+ 11
+12.5
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+134.957933
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+134.957933
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+133.957933
+ 30
+0.0
+ 11
+32.5
+ 21
+133.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+133.957933
+ 30
+0.0
+ 11
+32.5
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+134.957933
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+134.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+136.457933
+ 30
+0.0
+ 11
+12.5
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+136.457933
+ 30
+0.0
+ 11
+12.5
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+136.457933
+ 30
+0.0
+ 11
+32.5
+ 21
+136.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+136.457933
+ 30
+0.0
+ 11
+32.5
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+137.45793300000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+137.45793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+139.95793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+138.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+138.95793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+138.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+138.95793300000003
+ 30
+0.0
+ 11
+12.5
+ 21
+139.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+139.95793300000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+139.95793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.500000000000004
+ 20
+140.957933
+ 30
+0.0
+ 11
+30.500000000000004
+ 21
+137.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.500000000000004
+ 20
+137.957933
+ 30
+0.0
+ 11
+33.50000000000001
+ 21
+137.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.50000000000001
+ 20
+137.957933
+ 30
+0.0
+ 11
+33.50000000000001
+ 21
+140.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.50000000000001
+ 20
+140.957933
+ 30
+0.0
+ 11
+30.500000000000004
+ 21
+140.957933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+97.95793300000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+97.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+97.95793300000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+97.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+97.457933
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+97.457933
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+97.457933
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+97.95793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+145.70793300000003
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+145.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+145.70793300000003
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+146.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+146.20793300000003
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+146.20793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+146.20793300000003
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+145.70793300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+101.2988420909091
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+101.2988420909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+101.2988420909091
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+112.3897511818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+112.3897511818182
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+112.3897511818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+129.02611481818187
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+129.02611481818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+129.02611481818187
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+140.11702390909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+140.11702390909093
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+140.11702390909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+27.750000000000004
+ 20
+74.20793300000001
+ 30
+0.0
+ 11
+31.250000000000004
+ 21
+74.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.250000000000004
+ 20
+74.20793300000001
+ 30
+0.0
+ 11
+31.250000000000004
+ 21
+82.20793300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.250000000000004
+ 20
+82.20793300000001
+ 30
+0.0
+ 11
+27.750000000000004
+ 21
+82.20793300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+198.0
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+96.27724399959266
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+96.27724399959266
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+96.27724399959266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+198.0
+ 21
+96.27724399959266
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+259.00000000000006
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+198.0
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+259.00000000000006
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+198.0
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+198.0
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+1.2220482403790813e-09
+ 30
+0.0
+ 11
+198.0
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+1.2220482403790813e-09
+ 30
+0.0
+ 11
+198.0
+ 21
+1.2220482403790813e-09
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+1.2220482403790813e-09
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.0
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.0
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+269.0
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+269.0
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.00000000000003
+ 20
+60.13862200040735
+ 30
+0.0
+ 11
+198.0
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.00000000000003
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+188.00000000000003
+ 21
+60.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+36.13862200040735
+ 30
+0.0
+ 11
+188.00000000000003
+ 21
+36.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.00000000000003
+ 20
+41.63862200040735
+ 30
+0.0
+ 11
+227.00000000000003
+ 21
+41.63862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.00000000000003
+ 20
+41.63862200040735
+ 30
+0.0
+ 11
+227.00000000000003
+ 21
+54.63862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.00000000000003
+ 20
+54.63862200040735
+ 30
+0.0
+ 11
+216.00000000000003
+ 21
+54.63862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.00000000000003
+ 20
+54.63862200040735
+ 30
+0.0
+ 11
+216.00000000000003
+ 21
+41.63862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.50000000000003
+ 20
+43.138622000407345
+ 30
+0.0
+ 11
+253.50000000000003
+ 21
+43.138622000407345
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.50000000000003
+ 20
+43.138622000407345
+ 30
+0.0
+ 11
+253.50000000000003
+ 21
+53.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.50000000000003
+ 20
+53.13862200040735
+ 30
+0.0
+ 11
+247.50000000000003
+ 21
+53.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.50000000000003
+ 20
+53.13862200040735
+ 30
+0.0
+ 11
+247.50000000000003
+ 21
+43.138622000407345
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.5
+ 20
+52.13862200040735
+ 30
+0.0
+ 11
+261.50000000000006
+ 21
+52.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+261.50000000000006
+ 20
+52.13862200040735
+ 30
+0.0
+ 11
+261.50000000000006
+ 21
+44.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+261.50000000000006
+ 20
+44.13862200040735
+ 30
+0.0
+ 11
+266.5
+ 21
+44.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+190.50000000000003
+ 20
+44.13862200040735
+ 30
+0.0
+ 11
+195.5
+ 21
+44.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+195.5
+ 20
+44.13862200040735
+ 30
+0.0
+ 11
+195.5
+ 21
+52.13862200040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+195.5
+ 20
+52.13862200040735
+ 30
+0.0
+ 11
+190.50000000000003
+ 21
+52.13862200040735
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/StackMount/tree.png b/rocolib/output/StackMount/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..9dc8dd4414649ab04c555eabbb3cb98fdfa3aa45
Binary files /dev/null and b/rocolib/output/StackMount/tree.png differ