diff --git a/rocolib/builders/.DS_Store b/rocolib/builders/.DS_Store
index 6f81ccd563986846ee635e7146f742c3552ea4b0..1ba532aef2f09bc61777c3de8afeca0e2f8fc606 100644
Binary files a/rocolib/builders/.DS_Store and b/rocolib/builders/.DS_Store differ
diff --git a/rocolib/builders/boat/BoatWithDCMountBuilder.py b/rocolib/builders/boat/BoatWithDCMountBuilder.py
index 55e0c5e7ca8ce124d3f2391c4aae69fbf043f952..1f6ca2d0bf020b896f190c7cf74e09acb46ccdc9 100644
--- a/rocolib/builders/boat/BoatWithDCMountBuilder.py
+++ b/rocolib/builders/boat/BoatWithDCMountBuilder.py
@@ -10,8 +10,8 @@ c.addSubcomponent("dcMount", "DCMotorMount", inherit=True)
 c.addConstraint(("dcMount", "mountWidth"), "boat.width")
 c.addConstraint(("dcMount", "supportLength"), "boat.depth")
 
-c.addParameter("topDistance", 50, paramType="length") #@ankur make this half the boat.length
-c.addParameter("botDistance", 50, paramType="length")
+c.addParameter("topDistance", 180, paramType="length") #@ankur make this half the boat.length
+c.addParameter("botDistance", 180, paramType="length")
 
 for i in range(2):
     c.addSubcomponent("split%d" %i, "SplitEdge")
diff --git a/rocolib/builders/boat/BoatWithManyDCMounts.py b/rocolib/builders/boat/BoatWithManyDCMounts.py
index a8e8c1afb0b14a390d258f16352b4c7962a9fd71..f6d2b2c9e1f88a4cadd5c5cdbecdd98543f53854 100644
--- a/rocolib/builders/boat/BoatWithManyDCMounts.py
+++ b/rocolib/builders/boat/BoatWithManyDCMounts.py
@@ -3,29 +3,52 @@ from rocolib.api.Function import Function
 
 c = Component()
 
-c.addSubcomponent("boat", "BoatBase", inherit=True, prefix=None)
+c.addSubcomponent("boat", "BoatWithStackBattery", inherit=True)
 c.inheritAllInterfaces("boat")
-c.addSubcomponent("dcMount", "DCMotorMount", inherit=True)
 
-c.addConstraint(("dcMount", "mountWidth"), "boat.width")
-c.addConstraint(("dcMount", "supportLength"), "boat.depth")
-
-for i in range(2):
+# c.addParameter("length", 130, paramType="length")
+# c.addParameter("width", 90, paramType="length")
+# c.addParameter("depth", 70, paramType="length")
+#
+# c.addConstraint(("boat", "boat.length"), "length")
+# c.addConstraint(("boat", "boat.width"), "width")
+# c.addConstraint(("boat", "boat.depth"), "depth")
+
+#DC Mounts
+for i in range(4):
+    c.addSubcomponent("dcMount%d" %i, "DCMotorMount", inherit=True)
+    c.addConstraint(("dcMount%d" %i, "mountWidth"), "boat.width")
+    c.addConstraint(("dcMount%d" %i, "supportLength"), "boat.depth")
+
+#Split Edges
+for i in range(4):
     c.addSubcomponent("split%d" %i, "SplitEdge")
-    c.addConstraint(("split%d" %i, "toplength"), "boat.length", "(x,)")
-
-c.addConstraint(("split0", "botlength"), ("topDistance", "botDistance"), "(x[0]-5, 10, x[1]-5)")
-c.addConstraint(("split1", "botlength"), ("topDistance", "botDistance"), "(x[1]-5, 10, x[0]-5)")
-
-c.addConnection(("boat", "portedge"), ("split0", "topedge0"))
-c.addConnection(("boat", "staredge"), ("split1", "topedge0"))
-
-c.addConnection(("dcMount","rightArmInterface"), ("split0", "botedge1"), angle=-180)
-c.addConnection(("dcMount","leftArmInterface"), ("split1", "botedge1"), tabWidth=5, angle=-180)
-
-c.inheritInterface("topPort", ("split0", "botedge0"))
-c.inheritInterface("botPort", ("split0", "botedge2"))
-c.inheritInterface("topStar", ("split1", "botedge2"))
-c.inheritInterface("botStar", ("split1", "botedge0"))
+    c.addConstConstraint(("split%d" %i, "toplength"), (180,))
+    c.addConstConstraint(("split%d" %i, "botlength"), (40, 10, 40, 40, 10, 40)) #symmetric
+
+#connections to each of the DC mounts
+c.addConnection(("dcMount0", "leftArmInterface"), ("split0", "botedge1"), tabWidth=6)
+c.addConnection(("dcMount0", "rightArmInterface"), ("split1", "botedge1"))
+
+c.addConnection(("dcMount1", "leftArmInterface"), ("split0", "botedge4"), tabWidth=6)
+c.addConnection(("dcMount1", "rightArmInterface"), ("split1", "botedge4"))
+
+c.addConnection(("dcMount2", "leftArmInterface"), ("split2", "botedge1"), tabWidth=6)
+c.addConnection(("dcMount2", "rightArmInterface"), ("split3", "botedge1"))
+
+c.addConnection(("dcMount3", "leftArmInterface"), ("split2", "botedge4"), tabWidth=6)
+c.addConnection(("dcMount3", "rightArmInterface"), ("split3", "botedge4"))
+
+# c.addConnection(("split0", "botedge2"), ("dcMount%d" %i, "rightArmInterface"))
+# c.addConstraint(("split0", "botlength"), ("topDistance", "botDistance"), "(x[0]-5, 10, x[1]-5)")
+# c.addConstraint(("split1", "botlength"), ("topDistance", "botDistance"), "(x[1]-5, 10, x[0]-5)")
+#
+c.addConnection(("boat", "porttopsplit"), ("split0", "topedge0"))
+c.addConnection(("boat", "portbotsplit"), ("split2", "topedge0"))
+c.addConnection(("boat", "startopsplit"), ("split1", "topedge0"))
+c.addConnection(("boat", "starbotsplit"), ("split3", "topedge0"))
+#
+# c.addConnection(("dcMount","rightArmInterface"), ("split0", "botedge1"), angle=-180)
+# c.addConnection(("dcMount","leftArmInterface"), ("split1", "botedge1"), tabWidth=5, angle=-180)
 
 c.toLibrary("BoatWithManyDCMounts")
diff --git a/rocolib/builders/boat/BoatWithStackBatteryBuilder.py b/rocolib/builders/boat/BoatWithStackBatteryBuilder.py
index 2ea0ca66fb3a64a80a2616e6e1497e6ce7df2740..1c949dfcb9d1002ad8fc3d065f3441e580a77ce2 100644
--- a/rocolib/builders/boat/BoatWithStackBatteryBuilder.py
+++ b/rocolib/builders/boat/BoatWithStackBatteryBuilder.py
@@ -6,13 +6,15 @@ c = Component()
 c.addSubcomponent("boat", "BoatBase", inherit=True)
 c.inheritAllInterfaces("boat")
 
-c.addParameter("length", 130, paramType="length")
+c.addParameter("length", 482, paramType="length")
 c.addParameter("width", 90, paramType="length")
 c.addParameter("depth", 70, paramType="length")
 
 c.addConstraint(("boat", "boat.length"), "length")
 c.addConstraint(("boat", "boat.width"), "width")
 c.addConstraint(("boat", "boat.depth"), "depth")
+# c.addConstConstraint(("boat", "stern.point"), 50)
+# c.addConstConstraint(("boat", "bow.point"), 50)
 
 c.addSubcomponent("stack", "StackMount", inherit="stack.length", prefix=None)
 c.inheritAllInterfaces("stack")
@@ -33,15 +35,10 @@ c.addConstraint(("starsplit", "botlength"), ("length", "stack.length", "batteryl
 c.addConnection(("starsplit", "botedge2"), ("stack", "rightArmInterface"), tabWidth=10)
 c.addConnection(("batterymount", "rightArmInterface"), ("starsplit", "botedge1"), tabWidth=10)
 c.addConnection(("boat", "staredge"), ("starsplit", "topedge0"))
-# #
-# c.addConstraint(("split0", "botlength"), ("topDistance", "botDistance"), "(x[0]-5, 10, x[1]-5)")
-# c.addConstraint(("split1", "botlength"), ("topDistance", "botDistance"), "(x[1]-5, 10, x[0]-5)")
-#
-# c.addConnection(("boat", "portedge"), ("split0", "topedge0"))
-# c.addConnection(("boat", "staredge"), ("split1", "topedge0"))
-#
-
-#the length of the both should always be a multiple of the width of the motor
-#as of now i will be setting the length to 117 (so that means 9 * width of the motor which is 13)
+
+c.inheritInterface("porttopsplit", ("portsplit", "botedge0"))
+c.inheritInterface("portbotsplit", ("portsplit", "botedge3"))
+c.inheritInterface("startopsplit", ("starsplit", "botedge3"))
+c.inheritInterface("starbotsplit", ("starsplit", "botedge0"))
 
 c.toLibrary("BoatWithStackBattery")
diff --git a/rocolib/builders/boat/mounts/DCStackMountBuilder.py b/rocolib/builders/boat/mounts/DCStackMountBuilder.py
deleted file mode 100644
index dff651f1a6aade2266129786ad401a0a8cc52ed0..0000000000000000000000000000000000000000
--- a/rocolib/builders/boat/mounts/DCStackMountBuilder.py
+++ /dev/null
@@ -1,32 +0,0 @@
-from rocolib.api.components.Component import Component
-from rocolib.api.Function import Function
-
-c = Component()
-
-c.addSubcomponent("dcMount", "DCMotorMount", prefix=None)
-c.inheritAllInterfaces("dcMount")
-c.addSubcomponent("espStack", "StackMount", inherit="stack.length", prefix=None)
-c.inheritAllInterfaces("espStack")
-#
-# c.addSubcomponent("portsplit", "SplitEdge")
-# c.inheritAllInterfaces("portsplit")
-# c.addConstraint(("portsplit", "toplength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[2], 10, x[0], x[0]+x[1]*2+10)")
-# c.addConstraint(("portsplit", "botlength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[2], 10, x[0], x[0]+x[1]*2+10)")
-#
-# c.addConnection(("doubleServoMount", "lServoInterface"), ("portsplit", "botedge2")) #both face the same direction
-# c.addConnection(("espStack", "leftArmInterface"), ("portsplit", "botedge0")) #both face the same direction
-#
-# c.addSubcomponent("starsplit", "SplitEdge")
-# c.inheritAllInterfaces("starsplit")
-# c.addConstraint(("starsplit", "toplength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[0]+x[1]*2+10, x[0], 10, x[2])")
-# c.addConstraint(("starsplit", "botlength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[0]+x[1]*2+10, x[0], 10, x[2])")
-#
-# c.addConnection(("doubleServoMount", "rServoInterface"), ("starsplit", "botedge1"))
-# c.addConnection(("espStack", "rightArmInterface"), ("starsplit", "botedge3"), tabWidth=10)
-#
-# c.inheritInterface("lservosplit", ("portsplit","topedge2"))
-# c.inheritInterface("rservosplit", ("starsplit","topedge1"))
-# c.inheritInterface("lstacksplit", ("portsplit","topedge0"))
-# c.inheritInterface("rstacksplit", ("starsplit","topedge3"))
-
-c.toLibrary("DCStackMount")
diff --git a/rocolib/builders/output/.DS_Store b/rocolib/builders/output/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..9e9331054117fd9a3550badacd58dd2b67ed5acc
Binary files /dev/null and b/rocolib/builders/output/.DS_Store differ
diff --git a/rocolib/builders/output/BatteryMount/graph-anim.svg b/rocolib/builders/output/BatteryMount/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..afa009c2139b4df78a311d00c082a3b0bb92be98
--- /dev/null
+++ b/rocolib/builders/output/BatteryMount/graph-anim.svg
@@ -0,0 +1,37 @@
+<?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="254.000000mm" version="1.1" viewBox="0.000000 0.000000 84.520989 254.000000" width="84.520989mm">
+  <defs/>
+  <line stroke="#000000" x1="84.52098900352468" x2="55.760494501762345" y1="193.00000000000003" y2="193.00000000000003"/>
+  <line stroke="#000000" x1="84.52098900352468" x2="84.52098900352468" y1="254.00000000000003" y2="193.00000000000003"/>
+  <line stroke="#000000" x1="55.760494501762345" x2="84.52098900352468" y1="254.00000000000003" y2="254.00000000000003"/>
+  <line opacity="0.25" stroke="#ff0000" x1="55.760494501762345" x2="55.760494501762345" y1="254.00000000000003" y2="193.00000000000003"/>
+  <line stroke="#000000" x1="28.76049450176234" x2="55.760494501762345" y1="254.00000000000003" y2="254.00000000000003"/>
+  <line opacity="0.25" stroke="#ff0000" x1="28.76049450176234" x2="28.76049450176234" y1="193.00000000000003" y2="254.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="55.760494501762345" x2="28.76049450176234" y1="193.00000000000003" y2="193.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="28.76049450176234" y1="254.00000000000003" y2="254.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="193.00000000000003" y2="254.00000000000003"/>
+  <line stroke="#000000" x1="28.76049450176234" x2="0.0" y1="193.00000000000003" y2="193.00000000000003"/>
+  <line stroke="#000000" x1="55.760494501762345" x2="55.760494501762345" y1="193.00000000000003" y2="132.0"/>
+  <line stroke="#000000" x1="28.76049450176234" x2="28.76049450176234" y1="132.0" y2="193.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="55.760494501762345" x2="28.76049450176234" y1="132.0" y2="132.0"/>
+  <line stroke="#000000" x1="55.760494501762345" x2="55.760494501762345" y1="132.0" y2="71.00000000000001"/>
+  <line stroke="#000000" x1="28.76049450176234" x2="28.76049450176234" y1="71.00000000000001" y2="132.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="55.760494501762345" x2="28.76049450176234" y1="71.00000000000001" y2="71.00000000000001"/>
+  <line stroke="#000000" x1="55.760494501762345" x2="55.760494501762345" y1="71.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="28.76049450176234" x2="28.76049450176234" y1="10.000000000000002" y2="71.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="28.76049450176234" x2="55.760494501762345" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="28.76049450176234" x2="28.76049450176234" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="55.760494501762345" x2="28.76049450176234" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="55.760494501762345" x2="55.760494501762345" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="51.260494501762345" x2="51.260494501762345" y1="190.50000000000003" y2="196.50000000000003"/>
+  <line stroke="#888888" x1="51.260494501762345" x2="33.26049450176234" y1="196.50000000000003" y2="196.50000000000003"/>
+  <line stroke="#888888" x1="33.26049450176234" x2="33.26049450176234" y1="196.50000000000003" y2="190.50000000000003"/>
+  <line stroke="#888888" x1="33.26049450176234" x2="51.260494501762345" y1="190.50000000000003" y2="190.50000000000003"/>
+  <line stroke="#888888" x1="37.510494501762345" x2="47.010494501762345" y1="246.25000000000003" y2="246.25000000000003"/>
+  <line stroke="#888888" x1="47.010494501762345" x2="47.010494501762345" y1="246.25000000000003" y2="246.75000000000003"/>
+  <line stroke="#888888" x1="47.010494501762345" x2="37.510494501762345" y1="246.75000000000003" y2="246.75000000000003"/>
+  <line stroke="#888888" x1="37.510494501762345" x2="37.510494501762345" y1="246.75000000000003" y2="246.25000000000003"/>
+  <line stroke="#888888" x1="46.76049450176234" x2="46.76049450176234" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="46.76049450176234" x2="37.76049450176234" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="37.76049450176234" x2="37.76049450176234" y1="7.500000000000001" y2="2.5000000000000004"/>
+</svg>
diff --git a/rocolib/builders/output/BatteryMount/graph-autofold-default.dxf b/rocolib/builders/output/BatteryMount/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..a206c0979c77b9d99208c428ba8cd636f18da451
--- /dev/null
+++ b/rocolib/builders/output/BatteryMount/graph-autofold-default.dxf
@@ -0,0 +1,1578 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+8
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-45
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+84.52098900352468
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+84.52098900352468
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+84.52098900352468
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+55.760494501762345
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+84.52098900352468
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-45
+ 10
+55.760494501762345
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+28.76049450176234
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-45
+ 10
+28.76049450176234
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+55.760494501762345
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+0.0
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+28.76049450176234
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+0.0
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+55.760494501762345
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+132.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+28.76049450176234
+ 20
+132.0
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+55.760494501762345
+ 20
+132.0
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+132.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+55.760494501762345
+ 20
+132.0
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+28.76049450176234
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+132.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+55.760494501762345
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+55.760494501762345
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+28.76049450176234
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+28.76049450176234
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+28.76049450176234
+ 20
+0.0
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+55.760494501762345
+ 20
+0.0
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+55.760494501762345
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+51.260494501762345
+ 20
+190.50000000000003
+ 30
+0.0
+ 11
+51.260494501762345
+ 21
+196.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+51.260494501762345
+ 20
+196.50000000000003
+ 30
+0.0
+ 11
+33.26049450176234
+ 21
+196.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.26049450176234
+ 20
+196.50000000000003
+ 30
+0.0
+ 11
+33.26049450176234
+ 21
+190.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.26049450176234
+ 20
+190.50000000000003
+ 30
+0.0
+ 11
+51.260494501762345
+ 21
+190.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+37.510494501762345
+ 20
+246.25000000000003
+ 30
+0.0
+ 11
+47.010494501762345
+ 21
+246.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.010494501762345
+ 20
+246.25000000000003
+ 30
+0.0
+ 11
+47.010494501762345
+ 21
+246.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.010494501762345
+ 20
+246.75000000000003
+ 30
+0.0
+ 11
+37.510494501762345
+ 21
+246.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+37.510494501762345
+ 20
+246.75000000000003
+ 30
+0.0
+ 11
+37.510494501762345
+ 21
+246.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.76049450176234
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+46.76049450176234
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.76049450176234
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+37.76049450176234
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+37.76049450176234
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+37.76049450176234
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BatteryMount/graph-autofold-graph.dxf b/rocolib/builders/output/BatteryMount/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..fda8c54470e5bb0351a64725db13e497d4c9dea2
--- /dev/null
+++ b/rocolib/builders/output/BatteryMount/graph-autofold-graph.dxf
@@ -0,0 +1,1548 @@
+  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
+84.52098900352468
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+84.52098900352468
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+84.52098900352468
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.760494501762345
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+84.52098900352468
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+55.760494501762345
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.76049450176234
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+28.76049450176234
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+55.760494501762345
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+0.0
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.76049450176234
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+0.0
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.760494501762345
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+132.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.76049450176234
+ 20
+132.0
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+55.760494501762345
+ 20
+132.0
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+132.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.760494501762345
+ 20
+132.0
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.76049450176234
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+132.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+55.760494501762345
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.760494501762345
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.76049450176234
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+28.76049450176234
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.76049450176234
+ 20
+0.0
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.760494501762345
+ 20
+0.0
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.760494501762345
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.260494501762345
+ 20
+190.50000000000003
+ 30
+0.0
+ 11
+51.260494501762345
+ 21
+196.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.260494501762345
+ 20
+196.50000000000003
+ 30
+0.0
+ 11
+33.26049450176234
+ 21
+196.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.26049450176234
+ 20
+196.50000000000003
+ 30
+0.0
+ 11
+33.26049450176234
+ 21
+190.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.26049450176234
+ 20
+190.50000000000003
+ 30
+0.0
+ 11
+51.260494501762345
+ 21
+190.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+37.510494501762345
+ 20
+246.25000000000003
+ 30
+0.0
+ 11
+47.010494501762345
+ 21
+246.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.010494501762345
+ 20
+246.25000000000003
+ 30
+0.0
+ 11
+47.010494501762345
+ 21
+246.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.010494501762345
+ 20
+246.75000000000003
+ 30
+0.0
+ 11
+37.510494501762345
+ 21
+246.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+37.510494501762345
+ 20
+246.75000000000003
+ 30
+0.0
+ 11
+37.510494501762345
+ 21
+246.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.76049450176234
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+46.76049450176234
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.76049450176234
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+37.76049450176234
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+37.76049450176234
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+37.76049450176234
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BatteryMount/graph-lasercutter.svg b/rocolib/builders/output/BatteryMount/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9ddfbbd177a9fd380a614bf99844cce666e03c09
--- /dev/null
+++ b/rocolib/builders/output/BatteryMount/graph-lasercutter.svg
@@ -0,0 +1,37 @@
+<?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="254.000000mm" version="1.1" viewBox="0.000000 0.000000 84.520989 254.000000" width="84.520989mm">
+  <defs/>
+  <line stroke="#000000" x1="84.52098900352468" x2="55.760494501762345" y1="193.00000000000003" y2="193.00000000000003"/>
+  <line stroke="#000000" x1="84.52098900352468" x2="84.52098900352468" y1="254.00000000000003" y2="193.00000000000003"/>
+  <line stroke="#000000" x1="55.760494501762345" x2="84.52098900352468" y1="254.00000000000003" y2="254.00000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="55.760494501762345" x2="55.760494501762345" y1="254.00000000000003" y2="193.00000000000003"/>
+  <line stroke="#000000" x1="28.76049450176234" x2="55.760494501762345" y1="254.00000000000003" y2="254.00000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="28.76049450176234" x2="28.76049450176234" y1="193.00000000000003" y2="254.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="55.760494501762345" x2="28.76049450176234" y1="193.00000000000003" y2="193.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="28.76049450176234" y1="254.00000000000003" y2="254.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="193.00000000000003" y2="254.00000000000003"/>
+  <line stroke="#000000" x1="28.76049450176234" x2="0.0" y1="193.00000000000003" y2="193.00000000000003"/>
+  <line stroke="#000000" x1="55.760494501762345" x2="55.760494501762345" y1="193.00000000000003" y2="132.0"/>
+  <line stroke="#000000" x1="28.76049450176234" x2="28.76049450176234" y1="132.0" y2="193.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="55.760494501762345" x2="28.76049450176234" y1="132.0" y2="132.0"/>
+  <line stroke="#000000" x1="55.760494501762345" x2="55.760494501762345" y1="132.0" y2="71.00000000000001"/>
+  <line stroke="#000000" x1="28.76049450176234" x2="28.76049450176234" y1="71.00000000000001" y2="132.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="55.760494501762345" x2="28.76049450176234" y1="71.00000000000001" y2="71.00000000000001"/>
+  <line stroke="#000000" x1="55.760494501762345" x2="55.760494501762345" y1="71.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="28.76049450176234" x2="28.76049450176234" y1="10.000000000000002" y2="71.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="28.76049450176234" x2="55.760494501762345" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="28.76049450176234" x2="28.76049450176234" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="55.760494501762345" x2="28.76049450176234" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="55.760494501762345" x2="55.760494501762345" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="51.260494501762345" x2="51.260494501762345" y1="190.50000000000003" y2="196.50000000000003"/>
+  <line stroke="#888888" x1="51.260494501762345" x2="33.26049450176234" y1="196.50000000000003" y2="196.50000000000003"/>
+  <line stroke="#888888" x1="33.26049450176234" x2="33.26049450176234" y1="196.50000000000003" y2="190.50000000000003"/>
+  <line stroke="#888888" x1="33.26049450176234" x2="51.260494501762345" y1="190.50000000000003" y2="190.50000000000003"/>
+  <line stroke="#888888" x1="37.510494501762345" x2="47.010494501762345" y1="246.25000000000003" y2="246.25000000000003"/>
+  <line stroke="#888888" x1="47.010494501762345" x2="47.010494501762345" y1="246.25000000000003" y2="246.75000000000003"/>
+  <line stroke="#888888" x1="47.010494501762345" x2="37.510494501762345" y1="246.75000000000003" y2="246.75000000000003"/>
+  <line stroke="#888888" x1="37.510494501762345" x2="37.510494501762345" y1="246.75000000000003" y2="246.25000000000003"/>
+  <line stroke="#888888" x1="46.76049450176234" x2="46.76049450176234" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="46.76049450176234" x2="37.76049450176234" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="37.76049450176234" x2="37.76049450176234" y1="7.500000000000001" y2="2.5000000000000004"/>
+</svg>
diff --git a/rocolib/builders/output/BatteryMount/graph-model.png b/rocolib/builders/output/BatteryMount/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..08694c1b8ca6bd59771e4fc0861c4d3452302a9b
Binary files /dev/null and b/rocolib/builders/output/BatteryMount/graph-model.png differ
diff --git a/rocolib/builders/output/BatteryMount/graph-model.stl b/rocolib/builders/output/BatteryMount/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..7cffb3c2eedf4ab77bb83d809a5c9731640d95cb
--- /dev/null
+++ b/rocolib/builders/output/BatteryMount/graph-model.stl
@@ -0,0 +1,142 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0144 0.0305 0.0000
+vertex -0.0144 -0.0305 0.0000
+vertex 0.0144 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0144 -0.0305 0.0000
+vertex 0.0144 0.0305 0.0000
+vertex -0.0144 0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0335 -0.0305 0.0191
+vertex -0.0335 0.0305 0.0191
+vertex -0.0335 0.0305 0.0479
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0335 0.0305 0.0479
+vertex -0.0335 -0.0305 0.0479
+vertex -0.0335 -0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0335 0.0305 0.0191
+vertex -0.0144 0.0305 -0.0000
+vertex -0.0575 0.0305 -0.0431
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0575 0.0305 -0.0431
+vertex -0.0766 0.0305 -0.0240
+vertex -0.0335 0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0766 0.0305 -0.0240
+vertex -0.0575 0.0305 -0.0431
+vertex -0.0575 -0.0305 -0.0431
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0575 -0.0305 -0.0431
+vertex -0.0766 -0.0305 -0.0240
+vertex -0.0766 0.0305 -0.0240
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0766 -0.0305 -0.0240
+vertex -0.0575 -0.0305 -0.0431
+vertex -0.0144 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0144 -0.0305 0.0000
+vertex -0.0335 -0.0305 0.0191
+vertex -0.0766 -0.0305 -0.0240
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0176 -0.0330 0.0032
+vertex -0.0303 -0.0305 0.0159
+vertex -0.0303 -0.0330 0.0159
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0144 -0.0305 0.0000
+vertex -0.0176 -0.0270 0.0032
+vertex -0.0176 -0.0305 0.0032
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0176 -0.0270 0.0032
+vertex -0.0144 0.0305 0.0000
+vertex -0.0335 0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0144 0.0305 0.0000
+vertex -0.0176 -0.0270 0.0032
+vertex -0.0144 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0303 -0.0270 0.0159
+vertex -0.0335 0.0305 0.0191
+vertex -0.0335 -0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0335 0.0305 0.0191
+vertex -0.0303 -0.0270 0.0159
+vertex -0.0176 -0.0270 0.0032
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0335 -0.0305 0.0191
+vertex -0.0303 -0.0305 0.0159
+vertex -0.0303 -0.0270 0.0159
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0303 -0.0305 0.0159
+vertex -0.0176 -0.0330 0.0032
+vertex -0.0176 -0.0305 0.0032
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0144 0.0205 -0.0000
+vertex -0.0144 0.0305 -0.0000
+vertex -0.0335 0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0335 0.0305 0.0191
+vertex -0.0335 0.0205 0.0191
+vertex -0.0144 0.0205 -0.0000
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/builders/output/BatteryMount/graph-silhouette.dxf b/rocolib/builders/output/BatteryMount/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..22803e17e1075c32636de6e345be411ec9fee034
--- /dev/null
+++ b/rocolib/builders/output/BatteryMount/graph-silhouette.dxf
@@ -0,0 +1,1548 @@
+  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
+84.52098900352468
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+84.52098900352468
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+84.52098900352468
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.760494501762345
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+84.52098900352468
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+55.760494501762345
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.76049450176234
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+28.76049450176234
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+55.760494501762345
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+254.00000000000003
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+0.0
+ 21
+254.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.76049450176234
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+0.0
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.760494501762345
+ 20
+193.00000000000003
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+132.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.76049450176234
+ 20
+132.0
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+193.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+55.760494501762345
+ 20
+132.0
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+132.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.760494501762345
+ 20
+132.0
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.76049450176234
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+132.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+55.760494501762345
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.760494501762345
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.76049450176234
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+28.76049450176234
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.76049450176234
+ 20
+0.0
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.760494501762345
+ 20
+0.0
+ 30
+0.0
+ 11
+28.76049450176234
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.760494501762345
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+55.760494501762345
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.260494501762345
+ 20
+190.50000000000003
+ 30
+0.0
+ 11
+51.260494501762345
+ 21
+196.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.260494501762345
+ 20
+196.50000000000003
+ 30
+0.0
+ 11
+33.26049450176234
+ 21
+196.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.26049450176234
+ 20
+196.50000000000003
+ 30
+0.0
+ 11
+33.26049450176234
+ 21
+190.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.26049450176234
+ 20
+190.50000000000003
+ 30
+0.0
+ 11
+51.260494501762345
+ 21
+190.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+37.510494501762345
+ 20
+246.25000000000003
+ 30
+0.0
+ 11
+47.010494501762345
+ 21
+246.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.010494501762345
+ 20
+246.25000000000003
+ 30
+0.0
+ 11
+47.010494501762345
+ 21
+246.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.010494501762345
+ 20
+246.75000000000003
+ 30
+0.0
+ 11
+37.510494501762345
+ 21
+246.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+37.510494501762345
+ 20
+246.75000000000003
+ 30
+0.0
+ 11
+37.510494501762345
+ 21
+246.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.76049450176234
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+46.76049450176234
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.76049450176234
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+37.76049450176234
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+37.76049450176234
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+37.76049450176234
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BatteryMount/tree.png b/rocolib/builders/output/BatteryMount/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..7d43e2bb388d1281155ba767a4b1cfc2862eaa3b
Binary files /dev/null and b/rocolib/builders/output/BatteryMount/tree.png differ
diff --git a/rocolib/builders/output/BoatBase/graph-anim.svg b/rocolib/builders/output/BoatBase/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..59eeee9d92ca660d3deebb2c9dcd0f6f9c54bb06
--- /dev/null
+++ b/rocolib/builders/output/BoatBase/graph-anim.svg
@@ -0,0 +1,84 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="207.703296mm" version="1.1" viewBox="0.000000 0.000000 95.466804 207.703296" width="95.466804mm">
+  <defs/>
+  <line opacity="0.5" stroke="#0000ff" x1="72.73340182153294" x2="72.73340182153294" y1="53.851648000000004" y2="153.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="22.733401821532933" x2="22.733401821532933" y1="53.851648000000004" y2="153.851648"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="47.73340182153294" x2="22.733401821532933" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="72.73340182153294" x2="47.73340182153294" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="47.73340182153294" x2="22.733401821532933" y1="-7.134504187433777e-08" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="14.24660869020727" x2="8.490005255870097" y1="33.97156470018156" y2="39.81150361779138"/>
+  <line stroke="#000000" x1="47.733401821532944" x2="14.24660869020727" y1="-7.13450560851925e-08" y2="33.97156470018156"/>
+  <line opacity="1.0" stroke="#0000ff" x1="22.733401821532933" x2="8.490005255870097" y1="53.851648000000004" y2="39.81150361779138"/>
+  <line opacity="1.0" stroke="#ff0000" x1="22.733401821532937" x2="2.73340182153293" y1="53.851648000000004" y2="45.6514425354012"/>
+  <line stroke="#000000" x1="8.490005255870104" x2="2.73340182153293" y1="39.81150361779138" y2="45.6514425354012"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="2.733401821532937" x2="2.733401821532937" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="22.733401821532933" x2="2.733401821532937" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="0.0" x2="2.733401821532937" y1="53.85164800000001" y2="53.85164800000001"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="45.6514425354012" y2="53.85164800000001"/>
+  <line stroke="#000000" x1="2.733401821532937" x2="0.0" y1="45.6514425354012" y2="45.6514425354012"/>
+  <line stroke="#000000" x1="2.73340182153293" x2="2.733401821532958" y1="53.851648000000004" y2="153.851648"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="2.733401821532958" x2="22.733401821532958" y1="153.851648" y2="153.851648"/>
+  <line opacity="1.0" stroke="#ff0000" x1="2.7334018215329654" x2="22.73340182153296" y1="162.05185346459885" y2="153.851648"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="2.7334018215329654" x2="2.7334018215329654" y1="162.05185346459885" y2="153.851648"/>
+  <line stroke="#000000" x1="2.7334018215329654" x2="8.49000525587014" y1="162.05185346459885" y2="167.89179238220865"/>
+  <line opacity="1.0" stroke="#0000ff" x1="8.49000525587014" x2="22.733401821532958" y1="167.89179238220865" y2="153.851648"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="47.733401821532965" x2="22.733401821532958" y1="207.70329607134505" y2="153.851648"/>
+  <line stroke="#000000" x1="14.246608690207305" x2="47.733401821532965" y1="173.73173129981845" y2="207.70329607134505"/>
+  <line stroke="#000000" x1="8.49000525587014" x2="14.246608690207305" y1="167.89179238220865" y2="173.73173129981845"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="22.733401821532958" x2="47.73340182153296" y1="153.851648" y2="153.851648"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="47.73340182153296" x2="72.73340182153294" y1="153.851648" y2="153.851648"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="47.733401821532965" x2="72.73340182153294" y1="207.70329607134505" y2="153.851648"/>
+  <line stroke="#000000" x1="81.2201949528586" x2="86.97679838719577" y1="173.73173129981845" y2="167.89179238220862"/>
+  <line stroke="#000000" x1="47.733401821532965" x2="81.2201949528586" y1="207.70329607134505" y2="173.73173129981845"/>
+  <line opacity="1.0" stroke="#0000ff" x1="72.73340182153294" x2="86.97679838719577" y1="153.851648" y2="167.89179238220862"/>
+  <line opacity="1.0" stroke="#ff0000" x1="72.73340182153294" x2="92.73340182153295" y1="153.851648" y2="162.05185346459876"/>
+  <line stroke="#000000" x1="86.97679838719577" x2="92.73340182153295" y1="167.89179238220862" y2="162.05185346459876"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="92.73340182153295" x2="92.73340182153295" y1="153.85164799999998" y2="162.05185346459876"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="72.73340182153294" x2="92.73340182153295" y1="153.851648" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="95.46680364306589" x2="92.73340182153295" y1="153.85164799999998" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="95.46680364306589" x2="95.46680364306589" y1="162.05185346459876" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="92.73340182153295" x2="95.46680364306589" y1="162.05185346459876" y2="162.05185346459876"/>
+  <line stroke="#000000" x1="92.73340182153295" x2="92.7334018215329" y1="153.85164799999998" y2="53.851648"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="92.7334018215329" x2="72.7334018215329" y1="53.851648" y2="53.85164800000001"/>
+  <line opacity="1.0" stroke="#ff0000" x1="92.73340182153285" x2="72.7334018215329" y1="45.651442535401195" y2="53.85164800000001"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="92.73340182153285" x2="92.73340182153288" y1="45.651442535401195" y2="53.851648"/>
+  <line stroke="#000000" x1="92.73340182153288" x2="86.9767983871957" y1="45.651442535401195" y2="39.81150361779138"/>
+  <line opacity="1.0" stroke="#0000ff" x1="86.9767983871957" x2="72.7334018215329" y1="39.81150361779138" y2="53.85164800000001"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="47.73340182153285" x2="72.7334018215329" y1="-7.134499924177363e-08" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="81.22019495285853" x2="47.73340182153285" y1="33.971564700181574" y2="-7.134499924177363e-08"/>
+  <line stroke="#000000" x1="86.9767983871957" x2="81.22019495285853" y1="39.811503617791395" y2="33.971564700181574"/>
+  <line stroke="#000000" x1="95.46680364306583" x2="92.7334018215329" y1="45.651442535401195" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="95.46680364306583" x2="95.46680364306583" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="92.7334018215329" x2="95.46680364306583" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="2.131628207280301e-14" x2="2.733401821532958" y1="162.05185346459885" y2="162.05185346459885"/>
+  <line stroke="#000000" x1="2.131628207280301e-14" x2="2.131628207280301e-14" y1="153.851648" y2="162.05185346459885"/>
+  <line stroke="#000000" x1="2.733401821532958" x2="2.131628207280301e-14" y1="153.851648" y2="153.851648"/>
+  <line stroke="#888888" x1="14.141269870012396" x2="11.871398449011453" y1="37.35482121234262" y2="39.65755243235412"/>
+  <line stroke="#888888" x1="11.871398449011453" x2="11.515313534869883" y1="39.65755243235412" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="11.515313534869883" x2="13.78518495587082" y1="39.306548822798916" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="13.78518495587082" x2="14.141269870012396" y1="37.003817602787414" y2="37.35482121234262"/>
+  <line stroke="#888888" x1="0.6833504553832342" x2="2.050051366149703" y1="48.38484435693414" y2="48.38484435693414"/>
+  <line stroke="#888888" x1="2.050051366149703" x2="2.050051366149703" y1="48.38484435693414" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="2.050051366149703" x2="0.6833504553832342" y1="51.118246178467075" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="11.871398449011489" x2="14.141269870012424" y1="168.0457435676459" y2="170.3484747876574"/>
+  <line stroke="#888888" x1="14.141269870012424" x2="13.785184955870855" y1="170.3484747876574" y2="170.69947839721263"/>
+  <line stroke="#888888" x1="13.785184955870855" x2="11.51531353486992" y1="170.69947839721263" y2="168.39674717720112"/>
+  <line stroke="#888888" x1="11.51531353486992" x2="11.871398449011489" y1="168.39674717720112" y2="168.0457435676459"/>
+  <line stroke="#888888" x1="81.3255337730535" x2="83.59540519405442" y1="170.34847478765738" y2="168.04574356764587"/>
+  <line stroke="#888888" x1="83.59540519405442" x2="83.95149010819601" y1="168.04574356764587" y2="168.3967471772011"/>
+  <line stroke="#888888" x1="83.95149010819601" x2="81.68161868719505" y1="168.3967471772011" y2="170.69947839721257"/>
+  <line stroke="#888888" x1="81.68161868719505" x2="81.3255337730535" y1="170.69947839721257" y2="170.34847478765738"/>
+  <line stroke="#888888" x1="94.78345318768265" x2="93.41675227691617" y1="159.31845164306583" y2="159.31845164306583"/>
+  <line stroke="#888888" x1="93.41675227691617" x2="93.41675227691617" y1="159.31845164306583" y2="156.5850498215329"/>
+  <line stroke="#888888" x1="93.41675227691617" x2="94.78345318768265" y1="156.5850498215329" y2="156.5850498215329"/>
+  <line stroke="#888888" x1="83.59540519405435" x2="81.3255337730534" y1="39.65755243235414" y2="37.354821212342635"/>
+  <line stroke="#888888" x1="81.3255337730534" x2="81.68161868719498" y1="37.354821212342635" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="81.68161868719498" x2="83.95149010819593" y1="37.003817602787414" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="83.95149010819593" x2="83.59540519405435" y1="39.306548822798916" y2="39.65755243235414"/>
+  <line stroke="#888888" x1="94.78345318768258" x2="93.41675227691613" y1="51.11824617846707" y2="51.11824617846707"/>
+  <line stroke="#888888" x1="93.41675227691613" x2="93.41675227691613" y1="51.11824617846707" y2="48.38484435693413"/>
+  <line stroke="#888888" x1="93.41675227691613" x2="94.78345318768258" y1="48.38484435693413" y2="48.38484435693413"/>
+  <line stroke="#888888" x1="0.6833504553832555" x2="2.0500513661497237" y1="156.58504982153295" y2="156.58504982153295"/>
+  <line stroke="#888888" x1="2.0500513661497237" x2="2.0500513661497237" y1="156.58504982153295" y2="159.31845164306588"/>
+  <line stroke="#888888" x1="2.0500513661497237" x2="0.6833504553832555" y1="159.31845164306588" y2="159.31845164306588"/>
+</svg>
diff --git a/rocolib/builders/output/BoatBase/graph-autofold-default.dxf b/rocolib/builders/output/BoatBase/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..f4d889ccab406e797f768a271d91392c2b6edf09
--- /dev/null
+++ b/rocolib/builders/output/BoatBase/graph-autofold-default.dxf
@@ -0,0 +1,2514 @@
+  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
+13
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+21.801409486351815
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+80.43938360731835
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+180
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-180
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-174
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+26.565051177077976
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+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
+72.73340182153294
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+72.73340182153294
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+22.733401821532933
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+22.733401821532933
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+47.73340182153294
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+22.733401821532933
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+72.73340182153294
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+47.73340182153294
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+47.73340182153294
+ 20
+-7.134504187433777e-08
+ 30
+0.0
+ 11
+22.733401821532933
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+14.24660869020727
+ 20
+33.97156470018156
+ 30
+0.0
+ 11
+8.490005255870097
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.733401821532944
+ 20
+-7.13450560851925e-08
+ 30
+0.0
+ 11
+14.24660869020727
+ 21
+33.97156470018156
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+22.733401821532933
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+8.490005255870097
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+22.733401821532937
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+2.73340182153293
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+8.490005255870104
+ 20
+39.81150361779138
+ 30
+0.0
+ 11
+2.73340182153293
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+2.733401821532937
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+2.733401821532937
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+22.733401821532933
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+2.733401821532937
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+53.85164800000001
+ 30
+0.0
+ 11
+2.733401821532937
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+45.6514425354012
+ 30
+0.0
+ 11
+0.0
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.733401821532937
+ 20
+45.6514425354012
+ 30
+0.0
+ 11
+0.0
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.73340182153293
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+2.733401821532958
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+2.733401821532958
+ 20
+153.851648
+ 30
+0.0
+ 11
+22.733401821532958
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+2.7334018215329654
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+22.73340182153296
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+2.7334018215329654
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+2.7334018215329654
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.7334018215329654
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+8.49000525587014
+ 21
+167.89179238220865
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+8.49000525587014
+ 20
+167.89179238220865
+ 30
+0.0
+ 11
+22.733401821532958
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+47.733401821532965
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+22.733401821532958
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+14.246608690207305
+ 20
+173.73173129981845
+ 30
+0.0
+ 11
+47.733401821532965
+ 21
+207.70329607134505
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+8.49000525587014
+ 20
+167.89179238220865
+ 30
+0.0
+ 11
+14.246608690207305
+ 21
+173.73173129981845
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+22.733401821532958
+ 20
+153.851648
+ 30
+0.0
+ 11
+47.73340182153296
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+47.73340182153296
+ 20
+153.851648
+ 30
+0.0
+ 11
+72.73340182153294
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+47.733401821532965
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+72.73340182153294
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.2201949528586
+ 20
+173.73173129981845
+ 30
+0.0
+ 11
+86.97679838719577
+ 21
+167.89179238220862
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.733401821532965
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+81.2201949528586
+ 21
+173.73173129981845
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+72.73340182153294
+ 20
+153.851648
+ 30
+0.0
+ 11
+86.97679838719577
+ 21
+167.89179238220862
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+72.73340182153294
+ 20
+153.851648
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.97679838719577
+ 20
+167.89179238220862
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+92.73340182153295
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+72.73340182153294
+ 20
+153.851648
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.46680364306589
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.46680364306589
+ 20
+162.05185346459876
+ 30
+0.0
+ 11
+95.46680364306589
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.73340182153295
+ 20
+162.05185346459876
+ 30
+0.0
+ 11
+95.46680364306589
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.73340182153295
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+92.7334018215329
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+92.7334018215329
+ 20
+53.851648
+ 30
+0.0
+ 11
+72.7334018215329
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+92.73340182153285
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+72.7334018215329
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+92.73340182153285
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+92.73340182153288
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.73340182153288
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+86.9767983871957
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+86.9767983871957
+ 20
+39.81150361779138
+ 30
+0.0
+ 11
+72.7334018215329
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+47.73340182153285
+ 20
+-7.134499924177363e-08
+ 30
+0.0
+ 11
+72.7334018215329
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.22019495285853
+ 20
+33.971564700181574
+ 30
+0.0
+ 11
+47.73340182153285
+ 21
+-7.134499924177363e-08
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.9767983871957
+ 20
+39.811503617791395
+ 30
+0.0
+ 11
+81.22019495285853
+ 21
+33.971564700181574
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.46680364306583
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+92.7334018215329
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.46680364306583
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+95.46680364306583
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.7334018215329
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+95.46680364306583
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.131628207280301e-14
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+2.733401821532958
+ 21
+162.05185346459885
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.131628207280301e-14
+ 20
+153.851648
+ 30
+0.0
+ 11
+2.131628207280301e-14
+ 21
+162.05185346459885
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.733401821532958
+ 20
+153.851648
+ 30
+0.0
+ 11
+2.131628207280301e-14
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+14.141269870012396
+ 20
+37.35482121234262
+ 30
+0.0
+ 11
+11.871398449011453
+ 21
+39.65755243235412
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.871398449011453
+ 20
+39.65755243235412
+ 30
+0.0
+ 11
+11.515313534869883
+ 21
+39.306548822798916
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.515313534869883
+ 20
+39.306548822798916
+ 30
+0.0
+ 11
+13.78518495587082
+ 21
+37.003817602787414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+13.78518495587082
+ 20
+37.003817602787414
+ 30
+0.0
+ 11
+14.141269870012396
+ 21
+37.35482121234262
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.6833504553832342
+ 20
+48.38484435693414
+ 30
+0.0
+ 11
+2.050051366149703
+ 21
+48.38484435693414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.050051366149703
+ 20
+48.38484435693414
+ 30
+0.0
+ 11
+2.050051366149703
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.050051366149703
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+0.6833504553832342
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.871398449011489
+ 20
+168.0457435676459
+ 30
+0.0
+ 11
+14.141269870012424
+ 21
+170.3484747876574
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+14.141269870012424
+ 20
+170.3484747876574
+ 30
+0.0
+ 11
+13.785184955870855
+ 21
+170.69947839721263
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+13.785184955870855
+ 20
+170.69947839721263
+ 30
+0.0
+ 11
+11.51531353486992
+ 21
+168.39674717720112
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.51531353486992
+ 20
+168.39674717720112
+ 30
+0.0
+ 11
+11.871398449011489
+ 21
+168.0457435676459
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.3255337730535
+ 20
+170.34847478765738
+ 30
+0.0
+ 11
+83.59540519405442
+ 21
+168.04574356764587
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.59540519405442
+ 20
+168.04574356764587
+ 30
+0.0
+ 11
+83.95149010819601
+ 21
+168.3967471772011
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.95149010819601
+ 20
+168.3967471772011
+ 30
+0.0
+ 11
+81.68161868719505
+ 21
+170.69947839721257
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.68161868719505
+ 20
+170.69947839721257
+ 30
+0.0
+ 11
+81.3255337730535
+ 21
+170.34847478765738
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.78345318768265
+ 20
+159.31845164306583
+ 30
+0.0
+ 11
+93.41675227691617
+ 21
+159.31845164306583
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.41675227691617
+ 20
+159.31845164306583
+ 30
+0.0
+ 11
+93.41675227691617
+ 21
+156.5850498215329
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.41675227691617
+ 20
+156.5850498215329
+ 30
+0.0
+ 11
+94.78345318768265
+ 21
+156.5850498215329
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.59540519405435
+ 20
+39.65755243235414
+ 30
+0.0
+ 11
+81.3255337730534
+ 21
+37.354821212342635
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.3255337730534
+ 20
+37.354821212342635
+ 30
+0.0
+ 11
+81.68161868719498
+ 21
+37.003817602787414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.68161868719498
+ 20
+37.003817602787414
+ 30
+0.0
+ 11
+83.95149010819593
+ 21
+39.306548822798916
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.95149010819593
+ 20
+39.306548822798916
+ 30
+0.0
+ 11
+83.59540519405435
+ 21
+39.65755243235414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.78345318768258
+ 20
+51.11824617846707
+ 30
+0.0
+ 11
+93.41675227691613
+ 21
+51.11824617846707
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.41675227691613
+ 20
+51.11824617846707
+ 30
+0.0
+ 11
+93.41675227691613
+ 21
+48.38484435693413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.41675227691613
+ 20
+48.38484435693413
+ 30
+0.0
+ 11
+94.78345318768258
+ 21
+48.38484435693413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.6833504553832555
+ 20
+156.58504982153295
+ 30
+0.0
+ 11
+2.0500513661497237
+ 21
+156.58504982153295
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.0500513661497237
+ 20
+156.58504982153295
+ 30
+0.0
+ 11
+2.0500513661497237
+ 21
+159.31845164306588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.0500513661497237
+ 20
+159.31845164306588
+ 30
+0.0
+ 11
+0.6833504553832555
+ 21
+159.31845164306588
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatBase/graph-autofold-graph.dxf b/rocolib/builders/output/BoatBase/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..d787c3fcd955a23b5dbefffae504fbe92c490821
--- /dev/null
+++ b/rocolib/builders/output/BoatBase/graph-autofold-graph.dxf
@@ -0,0 +1,2434 @@
+  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
+72.73340182153294
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+72.73340182153294
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+22.733401821532933
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+22.733401821532933
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+47.73340182153294
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+22.733401821532933
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+72.73340182153294
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+47.73340182153294
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+47.73340182153294
+ 20
+-7.134504187433777e-08
+ 30
+0.0
+ 11
+22.733401821532933
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.24660869020727
+ 20
+33.97156470018156
+ 30
+0.0
+ 11
+8.490005255870097
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.733401821532944
+ 20
+-7.13450560851925e-08
+ 30
+0.0
+ 11
+14.24660869020727
+ 21
+33.97156470018156
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+22.733401821532933
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+8.490005255870097
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+22.733401821532937
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+2.73340182153293
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+8.490005255870104
+ 20
+39.81150361779138
+ 30
+0.0
+ 11
+2.73340182153293
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+2.733401821532937
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+2.733401821532937
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+22.733401821532933
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+2.733401821532937
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+53.85164800000001
+ 30
+0.0
+ 11
+2.733401821532937
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+45.6514425354012
+ 30
+0.0
+ 11
+0.0
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.733401821532937
+ 20
+45.6514425354012
+ 30
+0.0
+ 11
+0.0
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.73340182153293
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+2.733401821532958
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+2.733401821532958
+ 20
+153.851648
+ 30
+0.0
+ 11
+22.733401821532958
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+2.7334018215329654
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+22.73340182153296
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+2.7334018215329654
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+2.7334018215329654
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.7334018215329654
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+8.49000525587014
+ 21
+167.89179238220865
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+8.49000525587014
+ 20
+167.89179238220865
+ 30
+0.0
+ 11
+22.733401821532958
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+47.733401821532965
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+22.733401821532958
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.246608690207305
+ 20
+173.73173129981845
+ 30
+0.0
+ 11
+47.733401821532965
+ 21
+207.70329607134505
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+8.49000525587014
+ 20
+167.89179238220865
+ 30
+0.0
+ 11
+14.246608690207305
+ 21
+173.73173129981845
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+22.733401821532958
+ 20
+153.851648
+ 30
+0.0
+ 11
+47.73340182153296
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+47.73340182153296
+ 20
+153.851648
+ 30
+0.0
+ 11
+72.73340182153294
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+47.733401821532965
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+72.73340182153294
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.2201949528586
+ 20
+173.73173129981845
+ 30
+0.0
+ 11
+86.97679838719577
+ 21
+167.89179238220862
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.733401821532965
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+81.2201949528586
+ 21
+173.73173129981845
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+72.73340182153294
+ 20
+153.851648
+ 30
+0.0
+ 11
+86.97679838719577
+ 21
+167.89179238220862
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+72.73340182153294
+ 20
+153.851648
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.97679838719577
+ 20
+167.89179238220862
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+92.73340182153295
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+72.73340182153294
+ 20
+153.851648
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.46680364306589
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.46680364306589
+ 20
+162.05185346459876
+ 30
+0.0
+ 11
+95.46680364306589
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.73340182153295
+ 20
+162.05185346459876
+ 30
+0.0
+ 11
+95.46680364306589
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.73340182153295
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+92.7334018215329
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+92.7334018215329
+ 20
+53.851648
+ 30
+0.0
+ 11
+72.7334018215329
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+92.73340182153285
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+72.7334018215329
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+92.73340182153285
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+92.73340182153288
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.73340182153288
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+86.9767983871957
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.9767983871957
+ 20
+39.81150361779138
+ 30
+0.0
+ 11
+72.7334018215329
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+47.73340182153285
+ 20
+-7.134499924177363e-08
+ 30
+0.0
+ 11
+72.7334018215329
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.22019495285853
+ 20
+33.971564700181574
+ 30
+0.0
+ 11
+47.73340182153285
+ 21
+-7.134499924177363e-08
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.9767983871957
+ 20
+39.811503617791395
+ 30
+0.0
+ 11
+81.22019495285853
+ 21
+33.971564700181574
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.46680364306583
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+92.7334018215329
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.46680364306583
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+95.46680364306583
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.7334018215329
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+95.46680364306583
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.131628207280301e-14
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+2.733401821532958
+ 21
+162.05185346459885
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.131628207280301e-14
+ 20
+153.851648
+ 30
+0.0
+ 11
+2.131628207280301e-14
+ 21
+162.05185346459885
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.733401821532958
+ 20
+153.851648
+ 30
+0.0
+ 11
+2.131628207280301e-14
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.141269870012396
+ 20
+37.35482121234262
+ 30
+0.0
+ 11
+11.871398449011453
+ 21
+39.65755243235412
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.871398449011453
+ 20
+39.65755243235412
+ 30
+0.0
+ 11
+11.515313534869883
+ 21
+39.306548822798916
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.515313534869883
+ 20
+39.306548822798916
+ 30
+0.0
+ 11
+13.78518495587082
+ 21
+37.003817602787414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.78518495587082
+ 20
+37.003817602787414
+ 30
+0.0
+ 11
+14.141269870012396
+ 21
+37.35482121234262
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.6833504553832342
+ 20
+48.38484435693414
+ 30
+0.0
+ 11
+2.050051366149703
+ 21
+48.38484435693414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.050051366149703
+ 20
+48.38484435693414
+ 30
+0.0
+ 11
+2.050051366149703
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.050051366149703
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+0.6833504553832342
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.871398449011489
+ 20
+168.0457435676459
+ 30
+0.0
+ 11
+14.141269870012424
+ 21
+170.3484747876574
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.141269870012424
+ 20
+170.3484747876574
+ 30
+0.0
+ 11
+13.785184955870855
+ 21
+170.69947839721263
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.785184955870855
+ 20
+170.69947839721263
+ 30
+0.0
+ 11
+11.51531353486992
+ 21
+168.39674717720112
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.51531353486992
+ 20
+168.39674717720112
+ 30
+0.0
+ 11
+11.871398449011489
+ 21
+168.0457435676459
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.3255337730535
+ 20
+170.34847478765738
+ 30
+0.0
+ 11
+83.59540519405442
+ 21
+168.04574356764587
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.59540519405442
+ 20
+168.04574356764587
+ 30
+0.0
+ 11
+83.95149010819601
+ 21
+168.3967471772011
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.95149010819601
+ 20
+168.3967471772011
+ 30
+0.0
+ 11
+81.68161868719505
+ 21
+170.69947839721257
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.68161868719505
+ 20
+170.69947839721257
+ 30
+0.0
+ 11
+81.3255337730535
+ 21
+170.34847478765738
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.78345318768265
+ 20
+159.31845164306583
+ 30
+0.0
+ 11
+93.41675227691617
+ 21
+159.31845164306583
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.41675227691617
+ 20
+159.31845164306583
+ 30
+0.0
+ 11
+93.41675227691617
+ 21
+156.5850498215329
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.41675227691617
+ 20
+156.5850498215329
+ 30
+0.0
+ 11
+94.78345318768265
+ 21
+156.5850498215329
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.59540519405435
+ 20
+39.65755243235414
+ 30
+0.0
+ 11
+81.3255337730534
+ 21
+37.354821212342635
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.3255337730534
+ 20
+37.354821212342635
+ 30
+0.0
+ 11
+81.68161868719498
+ 21
+37.003817602787414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.68161868719498
+ 20
+37.003817602787414
+ 30
+0.0
+ 11
+83.95149010819593
+ 21
+39.306548822798916
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.95149010819593
+ 20
+39.306548822798916
+ 30
+0.0
+ 11
+83.59540519405435
+ 21
+39.65755243235414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.78345318768258
+ 20
+51.11824617846707
+ 30
+0.0
+ 11
+93.41675227691613
+ 21
+51.11824617846707
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.41675227691613
+ 20
+51.11824617846707
+ 30
+0.0
+ 11
+93.41675227691613
+ 21
+48.38484435693413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.41675227691613
+ 20
+48.38484435693413
+ 30
+0.0
+ 11
+94.78345318768258
+ 21
+48.38484435693413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.6833504553832555
+ 20
+156.58504982153295
+ 30
+0.0
+ 11
+2.0500513661497237
+ 21
+156.58504982153295
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.0500513661497237
+ 20
+156.58504982153295
+ 30
+0.0
+ 11
+2.0500513661497237
+ 21
+159.31845164306588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.0500513661497237
+ 20
+159.31845164306588
+ 30
+0.0
+ 11
+0.6833504553832555
+ 21
+159.31845164306588
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatBase/graph-lasercutter.svg b/rocolib/builders/output/BoatBase/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ced28dab7922da5625b0d3ed89cf5d9b8dd0b686
--- /dev/null
+++ b/rocolib/builders/output/BoatBase/graph-lasercutter.svg
@@ -0,0 +1,84 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="207.703296mm" version="1.1" viewBox="0.000000 0.000000 95.466804 207.703296" width="95.466804mm">
+  <defs/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="72.73340182153294" x2="72.73340182153294" y1="53.851648000000004" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="22.733401821532933" x2="22.733401821532933" y1="53.851648000000004" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="47.73340182153294" x2="22.733401821532933" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="72.73340182153294" x2="47.73340182153294" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="47.73340182153294" x2="22.733401821532933" y1="-7.134504187433777e-08" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="14.24660869020727" x2="8.490005255870097" y1="33.97156470018156" y2="39.81150361779138"/>
+  <line stroke="#000000" x1="47.733401821532944" x2="14.24660869020727" y1="-7.13450560851925e-08" y2="33.97156470018156"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="22.733401821532933" x2="8.490005255870097" y1="53.851648000000004" y2="39.81150361779138"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="22.733401821532937" x2="2.73340182153293" y1="53.851648000000004" y2="45.6514425354012"/>
+  <line stroke="#000000" x1="8.490005255870104" x2="2.73340182153293" y1="39.81150361779138" y2="45.6514425354012"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.733401821532937" x2="2.733401821532937" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="22.733401821532933" x2="2.733401821532937" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="0.0" x2="2.733401821532937" y1="53.85164800000001" y2="53.85164800000001"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="45.6514425354012" y2="53.85164800000001"/>
+  <line stroke="#000000" x1="2.733401821532937" x2="0.0" y1="45.6514425354012" y2="45.6514425354012"/>
+  <line stroke="#000000" x1="2.73340182153293" x2="2.733401821532958" y1="53.851648000000004" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.733401821532958" x2="22.733401821532958" y1="153.851648" y2="153.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.7334018215329654" x2="22.73340182153296" y1="162.05185346459885" y2="153.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.7334018215329654" x2="2.7334018215329654" y1="162.05185346459885" y2="153.851648"/>
+  <line stroke="#000000" x1="2.7334018215329654" x2="8.49000525587014" y1="162.05185346459885" y2="167.89179238220865"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="8.49000525587014" x2="22.733401821532958" y1="167.89179238220865" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="47.733401821532965" x2="22.733401821532958" y1="207.70329607134505" y2="153.851648"/>
+  <line stroke="#000000" x1="14.246608690207305" x2="47.733401821532965" y1="173.73173129981845" y2="207.70329607134505"/>
+  <line stroke="#000000" x1="8.49000525587014" x2="14.246608690207305" y1="167.89179238220865" y2="173.73173129981845"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="22.733401821532958" x2="47.73340182153296" y1="153.851648" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="47.73340182153296" x2="72.73340182153294" y1="153.851648" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="47.733401821532965" x2="72.73340182153294" y1="207.70329607134505" y2="153.851648"/>
+  <line stroke="#000000" x1="81.2201949528586" x2="86.97679838719577" y1="173.73173129981845" y2="167.89179238220862"/>
+  <line stroke="#000000" x1="47.733401821532965" x2="81.2201949528586" y1="207.70329607134505" y2="173.73173129981845"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="72.73340182153294" x2="86.97679838719577" y1="153.851648" y2="167.89179238220862"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="72.73340182153294" x2="92.73340182153295" y1="153.851648" y2="162.05185346459876"/>
+  <line stroke="#000000" x1="86.97679838719577" x2="92.73340182153295" y1="167.89179238220862" y2="162.05185346459876"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="92.73340182153295" x2="92.73340182153295" y1="153.85164799999998" y2="162.05185346459876"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="72.73340182153294" x2="92.73340182153295" y1="153.851648" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="95.46680364306589" x2="92.73340182153295" y1="153.85164799999998" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="95.46680364306589" x2="95.46680364306589" y1="162.05185346459876" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="92.73340182153295" x2="95.46680364306589" y1="162.05185346459876" y2="162.05185346459876"/>
+  <line stroke="#000000" x1="92.73340182153295" x2="92.7334018215329" y1="153.85164799999998" y2="53.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="92.7334018215329" x2="72.7334018215329" y1="53.851648" y2="53.85164800000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="92.73340182153285" x2="72.7334018215329" y1="45.651442535401195" y2="53.85164800000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="92.73340182153285" x2="92.73340182153288" y1="45.651442535401195" y2="53.851648"/>
+  <line stroke="#000000" x1="92.73340182153288" x2="86.9767983871957" y1="45.651442535401195" y2="39.81150361779138"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.9767983871957" x2="72.7334018215329" y1="39.81150361779138" y2="53.85164800000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="47.73340182153285" x2="72.7334018215329" y1="-7.134499924177363e-08" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="81.22019495285853" x2="47.73340182153285" y1="33.971564700181574" y2="-7.134499924177363e-08"/>
+  <line stroke="#000000" x1="86.9767983871957" x2="81.22019495285853" y1="39.811503617791395" y2="33.971564700181574"/>
+  <line stroke="#000000" x1="95.46680364306583" x2="92.7334018215329" y1="45.651442535401195" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="95.46680364306583" x2="95.46680364306583" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="92.7334018215329" x2="95.46680364306583" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="2.131628207280301e-14" x2="2.733401821532958" y1="162.05185346459885" y2="162.05185346459885"/>
+  <line stroke="#000000" x1="2.131628207280301e-14" x2="2.131628207280301e-14" y1="153.851648" y2="162.05185346459885"/>
+  <line stroke="#000000" x1="2.733401821532958" x2="2.131628207280301e-14" y1="153.851648" y2="153.851648"/>
+  <line stroke="#888888" x1="14.141269870012396" x2="11.871398449011453" y1="37.35482121234262" y2="39.65755243235412"/>
+  <line stroke="#888888" x1="11.871398449011453" x2="11.515313534869883" y1="39.65755243235412" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="11.515313534869883" x2="13.78518495587082" y1="39.306548822798916" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="13.78518495587082" x2="14.141269870012396" y1="37.003817602787414" y2="37.35482121234262"/>
+  <line stroke="#888888" x1="0.6833504553832342" x2="2.050051366149703" y1="48.38484435693414" y2="48.38484435693414"/>
+  <line stroke="#888888" x1="2.050051366149703" x2="2.050051366149703" y1="48.38484435693414" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="2.050051366149703" x2="0.6833504553832342" y1="51.118246178467075" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="11.871398449011489" x2="14.141269870012424" y1="168.0457435676459" y2="170.3484747876574"/>
+  <line stroke="#888888" x1="14.141269870012424" x2="13.785184955870855" y1="170.3484747876574" y2="170.69947839721263"/>
+  <line stroke="#888888" x1="13.785184955870855" x2="11.51531353486992" y1="170.69947839721263" y2="168.39674717720112"/>
+  <line stroke="#888888" x1="11.51531353486992" x2="11.871398449011489" y1="168.39674717720112" y2="168.0457435676459"/>
+  <line stroke="#888888" x1="81.3255337730535" x2="83.59540519405442" y1="170.34847478765738" y2="168.04574356764587"/>
+  <line stroke="#888888" x1="83.59540519405442" x2="83.95149010819601" y1="168.04574356764587" y2="168.3967471772011"/>
+  <line stroke="#888888" x1="83.95149010819601" x2="81.68161868719505" y1="168.3967471772011" y2="170.69947839721257"/>
+  <line stroke="#888888" x1="81.68161868719505" x2="81.3255337730535" y1="170.69947839721257" y2="170.34847478765738"/>
+  <line stroke="#888888" x1="94.78345318768265" x2="93.41675227691617" y1="159.31845164306583" y2="159.31845164306583"/>
+  <line stroke="#888888" x1="93.41675227691617" x2="93.41675227691617" y1="159.31845164306583" y2="156.5850498215329"/>
+  <line stroke="#888888" x1="93.41675227691617" x2="94.78345318768265" y1="156.5850498215329" y2="156.5850498215329"/>
+  <line stroke="#888888" x1="83.59540519405435" x2="81.3255337730534" y1="39.65755243235414" y2="37.354821212342635"/>
+  <line stroke="#888888" x1="81.3255337730534" x2="81.68161868719498" y1="37.354821212342635" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="81.68161868719498" x2="83.95149010819593" y1="37.003817602787414" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="83.95149010819593" x2="83.59540519405435" y1="39.306548822798916" y2="39.65755243235414"/>
+  <line stroke="#888888" x1="94.78345318768258" x2="93.41675227691613" y1="51.11824617846707" y2="51.11824617846707"/>
+  <line stroke="#888888" x1="93.41675227691613" x2="93.41675227691613" y1="51.11824617846707" y2="48.38484435693413"/>
+  <line stroke="#888888" x1="93.41675227691613" x2="94.78345318768258" y1="48.38484435693413" y2="48.38484435693413"/>
+  <line stroke="#888888" x1="0.6833504553832555" x2="2.0500513661497237" y1="156.58504982153295" y2="156.58504982153295"/>
+  <line stroke="#888888" x1="2.0500513661497237" x2="2.0500513661497237" y1="156.58504982153295" y2="159.31845164306588"/>
+  <line stroke="#888888" x1="2.0500513661497237" x2="0.6833504553832555" y1="159.31845164306588" y2="159.31845164306588"/>
+</svg>
diff --git a/rocolib/builders/output/BoatBase/graph-model.png b/rocolib/builders/output/BoatBase/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b15b4fb7f07b63fb31416088f9e5fd42e8e935e
Binary files /dev/null and b/rocolib/builders/output/BoatBase/graph-model.png differ
diff --git a/rocolib/builders/output/BoatBase/graph-model.stl b/rocolib/builders/output/BoatBase/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..577ebd51bc885a21c992c4a69b2fbdf6ceab489d
--- /dev/null
+++ b/rocolib/builders/output/BoatBase/graph-model.stl
@@ -0,0 +1,240 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0500 0.0000
+vertex -0.0250 -0.0500 0.0000
+vertex 0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0500 0.0000
+vertex 0.0250 0.0500 0.0000
+vertex -0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0500 -0.0200
+vertex -0.0250 -0.0500 -0.0200
+vertex -0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0500 0.0000
+vertex -0.0250 0.0500 0.0000
+vertex -0.0250 0.0500 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0500 0.0000
+vertex 0.0250 -0.0500 0.0000
+vertex 0.0250 -0.0500 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0500 -0.0200
+vertex 0.0250 0.0500 -0.0200
+vertex 0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0500 0.0000
+vertex -0.0250 -0.0500 -0.0200
+vertex -0.0213 -0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0213 -0.0573 -0.0200
+vertex 0.0000 -0.1000 -0.0200
+vertex -0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 -0.0500 0.0000
+vertex -0.0250 -0.0500 0.0000
+vertex -0.0000 -0.1000 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0000 -0.0500 0.0000
+vertex 0.0000 -0.1000 -0.0200
+vertex 0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0213 -0.0573 -0.0200
+vertex 0.0250 -0.0500 -0.0200
+vertex 0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0500 0.0000
+vertex 0.0000 -0.1000 -0.0200
+vertex 0.0213 -0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0500 -0.0200
+vertex -0.0250 -0.0500 0.0000
+vertex -0.0213 -0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0500 -0.0200
+vertex -0.0213 -0.0573 -0.0200
+vertex -0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0500 -0.0200
+vertex 0.0213 -0.0573 -0.0200
+vertex 0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0500 -0.0200
+vertex 0.0250 -0.0500 0.0000
+vertex 0.0213 -0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0500 0.0000
+vertex 0.0250 0.0500 -0.0200
+vertex 0.0213 0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0213 0.0573 -0.0200
+vertex -0.0000 0.1000 -0.0200
+vertex 0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 0.0500 0.0000
+vertex 0.0250 0.0500 0.0000
+vertex -0.0000 0.1000 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 0.0500 0.0000
+vertex -0.0000 0.1000 -0.0200
+vertex -0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0213 0.0573 -0.0200
+vertex -0.0250 0.0500 -0.0200
+vertex -0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0500 0.0000
+vertex -0.0000 0.1000 -0.0200
+vertex -0.0213 0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0500 -0.0200
+vertex 0.0250 0.0500 0.0000
+vertex 0.0213 0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0500 -0.0200
+vertex 0.0213 0.0573 -0.0200
+vertex 0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0500 -0.0200
+vertex -0.0213 0.0573 -0.0200
+vertex -0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0500 -0.0200
+vertex -0.0250 0.0500 0.0000
+vertex -0.0213 0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0216 -0.0575 -0.0173
+vertex -0.0213 -0.0573 -0.0200
+vertex -0.0250 -0.0500 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0500 -0.0200
+vertex -0.0253 -0.0501 -0.0173
+vertex -0.0216 -0.0575 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0253 -0.0501 -0.0173
+vertex 0.0250 -0.0500 -0.0200
+vertex 0.0213 -0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0213 -0.0573 -0.0200
+vertex 0.0216 -0.0575 -0.0173
+vertex 0.0253 -0.0501 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0216 0.0575 -0.0173
+vertex 0.0213 0.0573 -0.0200
+vertex 0.0250 0.0500 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0500 -0.0200
+vertex 0.0253 0.0501 -0.0173
+vertex 0.0216 0.0575 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0253 0.0501 -0.0173
+vertex -0.0250 0.0500 -0.0200
+vertex -0.0213 0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0213 0.0573 -0.0200
+vertex -0.0216 0.0575 -0.0173
+vertex -0.0253 0.0501 -0.0173
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/builders/output/BoatBase/graph-silhouette.dxf b/rocolib/builders/output/BoatBase/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..6c8faf36908044cf5dff1a9669a87de1e99ff082
--- /dev/null
+++ b/rocolib/builders/output/BoatBase/graph-silhouette.dxf
@@ -0,0 +1,2434 @@
+  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
+72.73340182153294
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+72.73340182153294
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+22.733401821532933
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+22.733401821532933
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+47.73340182153294
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+22.733401821532933
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+72.73340182153294
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+47.73340182153294
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+47.73340182153294
+ 20
+-7.134504187433777e-08
+ 30
+0.0
+ 11
+22.733401821532933
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.24660869020727
+ 20
+33.97156470018156
+ 30
+0.0
+ 11
+8.490005255870097
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.733401821532944
+ 20
+-7.13450560851925e-08
+ 30
+0.0
+ 11
+14.24660869020727
+ 21
+33.97156470018156
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+22.733401821532933
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+8.490005255870097
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+22.733401821532937
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+2.73340182153293
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+8.490005255870104
+ 20
+39.81150361779138
+ 30
+0.0
+ 11
+2.73340182153293
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+2.733401821532937
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+2.733401821532937
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+22.733401821532933
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+2.733401821532937
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+53.85164800000001
+ 30
+0.0
+ 11
+2.733401821532937
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+45.6514425354012
+ 30
+0.0
+ 11
+0.0
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.733401821532937
+ 20
+45.6514425354012
+ 30
+0.0
+ 11
+0.0
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.73340182153293
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+2.733401821532958
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+2.733401821532958
+ 20
+153.851648
+ 30
+0.0
+ 11
+22.733401821532958
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+2.7334018215329654
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+22.73340182153296
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+2.7334018215329654
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+2.7334018215329654
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.7334018215329654
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+8.49000525587014
+ 21
+167.89179238220865
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+8.49000525587014
+ 20
+167.89179238220865
+ 30
+0.0
+ 11
+22.733401821532958
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+47.733401821532965
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+22.733401821532958
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.246608690207305
+ 20
+173.73173129981845
+ 30
+0.0
+ 11
+47.733401821532965
+ 21
+207.70329607134505
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+8.49000525587014
+ 20
+167.89179238220865
+ 30
+0.0
+ 11
+14.246608690207305
+ 21
+173.73173129981845
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+22.733401821532958
+ 20
+153.851648
+ 30
+0.0
+ 11
+47.73340182153296
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+47.73340182153296
+ 20
+153.851648
+ 30
+0.0
+ 11
+72.73340182153294
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+47.733401821532965
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+72.73340182153294
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.2201949528586
+ 20
+173.73173129981845
+ 30
+0.0
+ 11
+86.97679838719577
+ 21
+167.89179238220862
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.733401821532965
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+81.2201949528586
+ 21
+173.73173129981845
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+72.73340182153294
+ 20
+153.851648
+ 30
+0.0
+ 11
+86.97679838719577
+ 21
+167.89179238220862
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+72.73340182153294
+ 20
+153.851648
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.97679838719577
+ 20
+167.89179238220862
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+92.73340182153295
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+72.73340182153294
+ 20
+153.851648
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.46680364306589
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+92.73340182153295
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.46680364306589
+ 20
+162.05185346459876
+ 30
+0.0
+ 11
+95.46680364306589
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.73340182153295
+ 20
+162.05185346459876
+ 30
+0.0
+ 11
+95.46680364306589
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.73340182153295
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+92.7334018215329
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+92.7334018215329
+ 20
+53.851648
+ 30
+0.0
+ 11
+72.7334018215329
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+92.73340182153285
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+72.7334018215329
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+92.73340182153285
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+92.73340182153288
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.73340182153288
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+86.9767983871957
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.9767983871957
+ 20
+39.81150361779138
+ 30
+0.0
+ 11
+72.7334018215329
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+47.73340182153285
+ 20
+-7.134499924177363e-08
+ 30
+0.0
+ 11
+72.7334018215329
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.22019495285853
+ 20
+33.971564700181574
+ 30
+0.0
+ 11
+47.73340182153285
+ 21
+-7.134499924177363e-08
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.9767983871957
+ 20
+39.811503617791395
+ 30
+0.0
+ 11
+81.22019495285853
+ 21
+33.971564700181574
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.46680364306583
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+92.7334018215329
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.46680364306583
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+95.46680364306583
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.7334018215329
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+95.46680364306583
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.131628207280301e-14
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+2.733401821532958
+ 21
+162.05185346459885
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.131628207280301e-14
+ 20
+153.851648
+ 30
+0.0
+ 11
+2.131628207280301e-14
+ 21
+162.05185346459885
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.733401821532958
+ 20
+153.851648
+ 30
+0.0
+ 11
+2.131628207280301e-14
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.141269870012396
+ 20
+37.35482121234262
+ 30
+0.0
+ 11
+11.871398449011453
+ 21
+39.65755243235412
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.871398449011453
+ 20
+39.65755243235412
+ 30
+0.0
+ 11
+11.515313534869883
+ 21
+39.306548822798916
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.515313534869883
+ 20
+39.306548822798916
+ 30
+0.0
+ 11
+13.78518495587082
+ 21
+37.003817602787414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.78518495587082
+ 20
+37.003817602787414
+ 30
+0.0
+ 11
+14.141269870012396
+ 21
+37.35482121234262
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.6833504553832342
+ 20
+48.38484435693414
+ 30
+0.0
+ 11
+2.050051366149703
+ 21
+48.38484435693414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.050051366149703
+ 20
+48.38484435693414
+ 30
+0.0
+ 11
+2.050051366149703
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.050051366149703
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+0.6833504553832342
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.871398449011489
+ 20
+168.0457435676459
+ 30
+0.0
+ 11
+14.141269870012424
+ 21
+170.3484747876574
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.141269870012424
+ 20
+170.3484747876574
+ 30
+0.0
+ 11
+13.785184955870855
+ 21
+170.69947839721263
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.785184955870855
+ 20
+170.69947839721263
+ 30
+0.0
+ 11
+11.51531353486992
+ 21
+168.39674717720112
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.51531353486992
+ 20
+168.39674717720112
+ 30
+0.0
+ 11
+11.871398449011489
+ 21
+168.0457435676459
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.3255337730535
+ 20
+170.34847478765738
+ 30
+0.0
+ 11
+83.59540519405442
+ 21
+168.04574356764587
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.59540519405442
+ 20
+168.04574356764587
+ 30
+0.0
+ 11
+83.95149010819601
+ 21
+168.3967471772011
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.95149010819601
+ 20
+168.3967471772011
+ 30
+0.0
+ 11
+81.68161868719505
+ 21
+170.69947839721257
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.68161868719505
+ 20
+170.69947839721257
+ 30
+0.0
+ 11
+81.3255337730535
+ 21
+170.34847478765738
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.78345318768265
+ 20
+159.31845164306583
+ 30
+0.0
+ 11
+93.41675227691617
+ 21
+159.31845164306583
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.41675227691617
+ 20
+159.31845164306583
+ 30
+0.0
+ 11
+93.41675227691617
+ 21
+156.5850498215329
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.41675227691617
+ 20
+156.5850498215329
+ 30
+0.0
+ 11
+94.78345318768265
+ 21
+156.5850498215329
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.59540519405435
+ 20
+39.65755243235414
+ 30
+0.0
+ 11
+81.3255337730534
+ 21
+37.354821212342635
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.3255337730534
+ 20
+37.354821212342635
+ 30
+0.0
+ 11
+81.68161868719498
+ 21
+37.003817602787414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.68161868719498
+ 20
+37.003817602787414
+ 30
+0.0
+ 11
+83.95149010819593
+ 21
+39.306548822798916
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.95149010819593
+ 20
+39.306548822798916
+ 30
+0.0
+ 11
+83.59540519405435
+ 21
+39.65755243235414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.78345318768258
+ 20
+51.11824617846707
+ 30
+0.0
+ 11
+93.41675227691613
+ 21
+51.11824617846707
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.41675227691613
+ 20
+51.11824617846707
+ 30
+0.0
+ 11
+93.41675227691613
+ 21
+48.38484435693413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.41675227691613
+ 20
+48.38484435693413
+ 30
+0.0
+ 11
+94.78345318768258
+ 21
+48.38484435693413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.6833504553832555
+ 20
+156.58504982153295
+ 30
+0.0
+ 11
+2.0500513661497237
+ 21
+156.58504982153295
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.0500513661497237
+ 20
+156.58504982153295
+ 30
+0.0
+ 11
+2.0500513661497237
+ 21
+159.31845164306588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.0500513661497237
+ 20
+159.31845164306588
+ 30
+0.0
+ 11
+0.6833504553832555
+ 21
+159.31845164306588
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatBase/tree.png b/rocolib/builders/output/BoatBase/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c80fd62562fa3f40ea543f1f9400cd1e7f74b05
Binary files /dev/null and b/rocolib/builders/output/BoatBase/tree.png differ
diff --git a/rocolib/builders/output/BoatWithDCMount/graph-anim.svg b/rocolib/builders/output/BoatWithDCMount/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..6bcf6cc0e57443bbc60ecc48a7bdcab800410d68
--- /dev/null
+++ b/rocolib/builders/output/BoatWithDCMount/graph-anim.svg
@@ -0,0 +1,137 @@
+<?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="467.703296mm" version="1.1" viewBox="0.000000 0.000000 182.733402 467.703296" width="182.733402mm">
+  <defs/>
+  <line opacity="0.5" stroke="#0000ff" x1="159.99999999999997" x2="159.99999999999997" y1="53.85164800000002" y2="413.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="109.99999999999996" x2="109.99999999999996" y1="53.85164800000002" y2="413.851648"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="134.99999999999997" x2="109.99999999999996" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="159.99999999999997" x2="134.99999999999997" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="134.99999999999997" x2="109.99999999999996" y1="-7.134502766348305e-08" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="101.51320686867429" x2="95.75660343433712" y1="33.971564700181574" y2="39.81150361779138"/>
+  <line stroke="#000000" x1="134.99999999999997" x2="101.51320686867429" y1="-7.134502766348305e-08" y2="33.971564700181574"/>
+  <line opacity="1.0" stroke="#0000ff" x1="109.99999999999996" x2="95.75660343433712" y1="53.85164800000002" y2="39.81150361779138"/>
+  <line opacity="1.0" stroke="#ff0000" x1="109.99999999999996" x2="89.99999999999994" y1="53.85164800000002" y2="45.65144253540121"/>
+  <line stroke="#000000" x1="95.75660343433712" x2="89.99999999999994" y1="39.81150361779141" y2="45.65144253540121"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="89.99999999999994" x2="89.99999999999994" y1="53.85164800000002" y2="45.65144253540121"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="109.99999999999996" x2="89.99999999999994" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="87.26659817846702" x2="89.99999999999994" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="87.26659817846702" x2="87.26659817846702" y1="45.65144253540121" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="89.99999999999994" x2="87.26659817846702" y1="45.65144253540121" y2="45.65144253540121"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="90.00000000000004" x2="110.00000000000004" y1="413.851648" y2="413.851648"/>
+  <line opacity="1.0" stroke="#ff0000" x1="90.00000000000004" x2="110.00000000000004" y1="422.0518534645989" y2="413.851648"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="90.00000000000004" x2="90.00000000000004" y1="422.0518534645989" y2="413.851648"/>
+  <line stroke="#000000" x1="90.00000000000006" x2="95.75660343433722" y1="422.0518534645989" y2="427.8917923822087"/>
+  <line opacity="1.0" stroke="#0000ff" x1="95.75660343433722" x2="110.00000000000004" y1="427.8917923822087" y2="413.851648"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="135.00000000000009" x2="110.00000000000004" y1="467.7032960713451" y2="413.851648"/>
+  <line stroke="#000000" x1="101.5132068686744" x2="135.00000000000009" y1="433.7317312998185" y2="467.7032960713451"/>
+  <line stroke="#000000" x1="95.75660343433722" x2="101.5132068686744" y1="427.89179238220873" y2="433.7317312998185"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="110.00000000000004" x2="135.00000000000006" y1="413.851648" y2="413.85164799999995"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="135.00000000000006" x2="160.00000000000003" y1="413.851648" y2="413.85164799999995"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="135.00000000000006" x2="160.00000000000003" y1="467.7032960713451" y2="413.85164799999995"/>
+  <line stroke="#000000" x1="168.48679313132567" x2="174.24339656566286" y1="433.7317312998185" y2="427.8917923822087"/>
+  <line stroke="#000000" x1="135.00000000000006" x2="168.48679313132567" y1="467.7032960713451" y2="433.7317312998185"/>
+  <line opacity="1.0" stroke="#0000ff" x1="160.00000000000003" x2="174.24339656566286" y1="413.851648" y2="427.8917923822087"/>
+  <line opacity="1.0" stroke="#ff0000" x1="160.00000000000003" x2="180.0" y1="413.851648" y2="422.0518534645989"/>
+  <line stroke="#000000" x1="174.24339656566283" x2="180.0" y1="427.8917923822087" y2="422.0518534645989"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="180.0" x2="180.0" y1="413.851648" y2="422.0518534645989"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="160.00000000000003" x2="180.0" y1="413.851648" y2="413.851648"/>
+  <line stroke="#000000" x1="182.73340182153296" x2="180.0" y1="413.851648" y2="413.851648"/>
+  <line stroke="#000000" x1="182.73340182153296" x2="182.73340182153296" y1="422.0518534645989" y2="413.851648"/>
+  <line stroke="#000000" x1="180.0" x2="182.73340182153296" y1="422.0518534645989" y2="422.0518534645989"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="179.99999999999983" x2="159.9999999999998" y1="53.85164800000007" y2="53.85164800000007"/>
+  <line opacity="1.0" stroke="#ff0000" x1="179.9999999999998" x2="159.9999999999998" y1="45.651442535401266" y2="53.85164800000007"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="179.9999999999998" x2="179.99999999999983" y1="45.651442535401266" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="179.9999999999998" x2="174.24339656566264" y1="45.651442535401266" y2="39.81150361779146"/>
+  <line opacity="1.0" stroke="#0000ff" x1="174.24339656566264" x2="159.9999999999998" y1="39.81150361779146" y2="53.85164800000007"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="134.9999999999998" x2="159.9999999999998" y1="-7.134491397664533e-08" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="168.48679313132547" x2="134.9999999999998" y1="33.971564700181666" y2="-7.134491397664533e-08"/>
+  <line stroke="#000000" x1="174.24339656566264" x2="168.48679313132547" y1="39.81150361779146" y2="33.971564700181666"/>
+  <line stroke="#000000" x1="182.73340182153274" x2="179.9999999999998" y1="45.651442535401266" y2="45.651442535401266"/>
+  <line stroke="#000000" x1="182.73340182153274" x2="182.73340182153274" y1="53.85164800000007" y2="45.651442535401266"/>
+  <line stroke="#000000" x1="179.99999999999983" x2="182.73340182153274" y1="53.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="179.9999999999999" x2="179.99999999999983" y1="228.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="179.99999999999991" x2="179.9999999999999" y1="238.85164800000007" y2="228.85164800000007"/>
+  <line stroke="#000000" x1="180.0" x2="179.99999999999991" y1="413.851648" y2="238.85164800000007"/>
+  <line stroke="#000000" x1="180.0" x2="180.0" y1="413.851648" y2="413.851648"/>
+  <line stroke="#000000" x1="179.99999999999983" x2="179.99999999999983" y1="53.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="87.26659817846709" x2="90.00000000000004" y1="422.0518534645989" y2="422.0518534645989"/>
+  <line stroke="#000000" x1="87.26659817846709" x2="87.26659817846709" y1="413.851648" y2="422.0518534645989"/>
+  <line stroke="#000000" x1="90.00000000000004" x2="87.26659817846709" y1="413.851648" y2="413.851648"/>
+  <line stroke="#000000" x1="89.99999999999999" x2="90.00000000000004" y1="238.85164800000004" y2="413.851648"/>
+  <line opacity="1.0" stroke="#ff0000" x1="89.99999999999999" x2="89.99999999999999" y1="228.85164800000004" y2="238.85164800000004"/>
+  <line stroke="#000000" x1="89.99999999999994" x2="89.99999999999999" y1="53.85164800000002" y2="228.85164800000004"/>
+  <line stroke="#000000" x1="89.99999999999994" x2="89.99999999999994" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="90.00000000000004" x2="90.00000000000004" y1="413.851648" y2="413.851648"/>
+  <line stroke="#000000" x1="70.0" x2="89.99999999999999" y1="238.85164800000004" y2="238.85164800000004"/>
+  <line opacity="0.5" stroke="#ff0000" x1="70.0" x2="70.0" y1="228.85164800000004" y2="238.85164800000004"/>
+  <line stroke="#000000" x1="89.99999999999999" x2="70.0" y1="228.85164800000004" y2="228.85164800000004"/>
+  <line opacity="0.5" stroke="#ff0000" x1="20.000000000000004" x2="19.999999999999986" y1="238.85164800000007" y2="228.85164800000007"/>
+  <line opacity="0.5" stroke="#0000ff" x1="19.999999999999986" x2="69.99999999999999" y1="228.85164800000007" y2="228.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="20.000000000000004" x2="70.0" y1="238.85164800000007" y2="238.85164800000004"/>
+  <line stroke="#000000" x1="20.000000000000004" x2="0.0" y1="228.85164800000007" y2="228.85164800000007"/>
+  <line stroke="#000000" x1="0.0" x2="20.000000000000004" y1="238.85164800000007" y2="238.85164800000007"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="228.85164800000007" y2="238.85164800000007"/>
+  <line stroke="#000000" x1="19.999999999999986" x2="20.000000000000004" y1="198.85164800000004" y2="228.85164800000007"/>
+  <line opacity="0.5" stroke="#0000ff" x1="19.999999999999986" x2="69.99999999999999" y1="198.85164800000004" y2="198.85164800000004"/>
+  <line stroke="#000000" x1="70.0" x2="69.99999999999999" y1="228.85164800000004" y2="198.85164800000004"/>
+  <line stroke="#000000" x1="19.99999999999997" x2="19.99999999999997" y1="188.85164800000004" y2="198.85164800000004"/>
+  <line stroke="#000000" x1="69.99999999999999" x2="19.99999999999997" y1="188.85164800000004" y2="188.85164800000004"/>
+  <line stroke="#000000" x1="69.99999999999999" x2="69.99999999999999" y1="198.85164800000004" y2="188.85164800000004"/>
+  <line stroke="#000000" x1="20.000000000000004" x2="20.000000000000018" y1="238.85164800000007" y2="268.851648"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.0" y1="268.851648" y2="238.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="20.000000000000018" y1="268.851648" y2="268.851648"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="278.85164800000007" y2="268.851648"/>
+  <line stroke="#000000" x1="20.000000000000018" x2="70.00000000000001" y1="278.85164800000007" y2="278.85164800000007"/>
+  <line stroke="#000000" x1="20.000000000000018" x2="20.000000000000018" y1="268.851648" y2="278.85164800000007"/>
+  <line stroke="#888888" x1="101.4078680484794" x2="99.13799662747847" y1="37.35482121234264" y2="39.65755243235416"/>
+  <line stroke="#888888" x1="99.13799662747847" x2="98.78191171333691" y1="39.65755243235416" y2="39.30654882279893"/>
+  <line stroke="#888888" x1="98.78191171333691" x2="101.05178313433784" y1="39.30654882279893" y2="37.00381760278743"/>
+  <line stroke="#888888" x1="101.05178313433784" x2="101.4078680484794" y1="37.00381760278743" y2="37.35482121234264"/>
+  <line stroke="#888888" x1="87.94994863385027" x2="89.31664954461674" y1="48.384844356934146" y2="48.384844356934146"/>
+  <line stroke="#888888" x1="89.31664954461674" x2="89.31664954461674" y1="48.384844356934146" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="89.31664954461674" x2="87.94994863385027" y1="51.118246178467075" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="99.13799662747857" x2="101.40786804847951" y1="428.04574356764596" y2="430.34847478765744"/>
+  <line stroke="#888888" x1="101.40786804847951" x2="101.05178313433795" y1="430.34847478765744" y2="430.69947839721266"/>
+  <line stroke="#888888" x1="101.05178313433795" x2="98.781911713337" y1="430.69947839721266" y2="428.39674717720106"/>
+  <line stroke="#888888" x1="98.781911713337" x2="99.13799662747857" y1="428.39674717720106" y2="428.04574356764596"/>
+  <line stroke="#888888" x1="168.5921319515206" x2="170.86200337252149" y1="430.34847478765744" y2="428.04574356764596"/>
+  <line stroke="#888888" x1="170.86200337252149" x2="171.2180882866631" y1="428.04574356764596" y2="428.39674717720106"/>
+  <line stroke="#888888" x1="171.2180882866631" x2="168.94821686566212" y1="428.39674717720106" y2="430.69947839721266"/>
+  <line stroke="#888888" x1="168.94821686566212" x2="168.5921319515206" y1="430.69947839721266" y2="430.34847478765744"/>
+  <line stroke="#888888" x1="182.05005136614972" x2="180.68335045538328" y1="419.31845164306594" y2="419.31845164306594"/>
+  <line stroke="#888888" x1="180.68335045538328" x2="180.68335045538328" y1="419.31845164306594" y2="416.585049821533"/>
+  <line stroke="#888888" x1="180.68335045538328" x2="182.05005136614972" y1="416.585049821533" y2="416.585049821533"/>
+  <line stroke="#888888" x1="170.8620033725213" x2="168.59213195152032" y1="39.657552432354215" y2="37.354821212342706"/>
+  <line stroke="#888888" x1="168.59213195152032" x2="168.94821686566192" y1="37.354821212342706" y2="37.00381760278748"/>
+  <line stroke="#888888" x1="168.94821686566192" x2="171.21808828666286" y1="37.00381760278748" y2="39.306548822798995"/>
+  <line stroke="#888888" x1="171.21808828666286" x2="170.8620033725213" y1="39.306548822798995" y2="39.657552432354215"/>
+  <line stroke="#888888" x1="182.05005136614952" x2="180.68335045538302" y1="51.11824617846714" y2="51.11824617846714"/>
+  <line stroke="#888888" x1="180.68335045538302" x2="180.68335045538302" y1="51.11824617846714" y2="48.3848443569342"/>
+  <line stroke="#888888" x1="180.68335045538302" x2="182.05005136614952" y1="48.3848443569342" y2="48.3848443569342"/>
+  <line stroke="#888888" x1="175.9999999999999" x2="175.9999999999999" y1="235.76831466666673" y2="231.9349813333334"/>
+  <line stroke="#888888" x1="175.9999999999999" x2="176.49999999999991" y1="231.9349813333334" y2="231.9349813333334"/>
+  <line stroke="#888888" x1="176.49999999999991" x2="176.49999999999991" y1="231.9349813333334" y2="235.76831466666673"/>
+  <line stroke="#888888" x1="176.49999999999991" x2="175.9999999999999" y1="235.76831466666673" y2="235.76831466666673"/>
+  <line stroke="#888888" x1="87.94994863385035" x2="89.31664954461682" y1="416.585049821533" y2="416.585049821533"/>
+  <line stroke="#888888" x1="89.31664954461682" x2="89.31664954461682" y1="416.585049821533" y2="419.31845164306594"/>
+  <line stroke="#888888" x1="89.31664954461682" x2="87.94994863385035" y1="419.31845164306594" y2="419.31845164306594"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="3.7500000000000004" y1="232.18498133333338" y2="232.18498133333338"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="235.51831466666673" y2="232.18498133333338"/>
+  <line stroke="#888888" x1="3.7500000000000004" x2="1.2500000000000002" y1="235.51831466666673" y2="235.51831466666673"/>
+  <line stroke="#888888" x1="40.999999999999986" x2="40.999999999999986" y1="207.85164800000004" y2="199.851648"/>
+  <line stroke="#888888" x1="40.999999999999986" x2="48.999999999999986" y1="199.851648" y2="199.851648"/>
+  <line stroke="#888888" x1="48.999999999999986" x2="48.999999999999986" y1="199.851648" y2="207.85164800000004"/>
+  <line stroke="#888888" x1="48.999999999999986" x2="40.999999999999986" y1="207.85164800000004" y2="207.85164800000004"/>
+  <line stroke="#888888" x1="53.5833333333333" x2="36.41666666666664" y1="196.60164800000004" y2="196.60164800000004"/>
+  <line stroke="#888888" x1="36.41666666666664" x2="36.41666666666664" y1="196.60164800000004" y2="196.10164800000004"/>
+  <line stroke="#888888" x1="36.41666666666664" x2="53.5833333333333" y1="196.10164800000004" y2="196.10164800000004"/>
+  <line stroke="#888888" x1="53.5833333333333" x2="53.5833333333333" y1="196.10164800000004" y2="196.60164800000004"/>
+  <line stroke="#888888" x1="41.0" x2="41.0" y1="267.85164800000007" y2="259.851648"/>
+  <line stroke="#888888" x1="41.0" x2="49.00000000000001" y1="259.851648" y2="259.851648"/>
+  <line stroke="#888888" x1="49.00000000000001" x2="49.00000000000001" y1="259.851648" y2="267.85164800000007"/>
+  <line stroke="#888888" x1="49.00000000000001" x2="41.0" y1="267.85164800000007" y2="267.85164800000007"/>
+  <line stroke="#888888" x1="36.66666666666669" x2="31.66666666666669" y1="276.351648" y2="276.351648"/>
+  <line stroke="#888888" x1="31.66666666666669" x2="36.66666666666669" y1="276.351648" y2="271.35164800000007"/>
+  <line stroke="#888888" x1="36.66666666666669" x2="53.33333333333335" y1="271.35164800000007" y2="271.35164800000007"/>
+  <line stroke="#888888" x1="53.33333333333335" x2="58.33333333333335" y1="271.35164800000007" y2="276.351648"/>
+  <line stroke="#888888" x1="58.33333333333335" x2="53.33333333333335" y1="276.351648" y2="276.351648"/>
+</svg>
diff --git a/rocolib/builders/output/BoatWithDCMount/graph-autofold-default.dxf b/rocolib/builders/output/BoatWithDCMount/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..6bb014565c2ec56a06bbe9cdee228f3609b91e67
--- /dev/null
+++ b/rocolib/builders/output/BoatWithDCMount/graph-autofold-default.dxf
@@ -0,0 +1,3492 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+14
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+21.801409486351815
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+80.43938360731835
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+180
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-180
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-174
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+26.565051177077976
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+159.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+159.99999999999997
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+109.99999999999996
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+109.99999999999996
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+134.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+109.99999999999996
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+159.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+134.99999999999997
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+134.99999999999997
+ 20
+-7.134502766348305e-08
+ 30
+0.0
+ 11
+109.99999999999996
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.51320686867429
+ 20
+33.971564700181574
+ 30
+0.0
+ 11
+95.75660343433712
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.99999999999997
+ 20
+-7.134502766348305e-08
+ 30
+0.0
+ 11
+101.51320686867429
+ 21
+33.971564700181574
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+109.99999999999996
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+95.75660343433712
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+109.99999999999996
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.75660343433712
+ 20
+39.81150361779141
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+89.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+109.99999999999996
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+87.26659817846702
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+87.26659817846702
+ 20
+45.65144253540121
+ 30
+0.0
+ 11
+87.26659817846702
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.99999999999994
+ 20
+45.65144253540121
+ 30
+0.0
+ 11
+87.26659817846702
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+90.00000000000004
+ 20
+413.851648
+ 30
+0.0
+ 11
+110.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+90.00000000000004
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+110.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+90.00000000000004
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+90.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.00000000000006
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+95.75660343433722
+ 21
+427.8917923822087
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+95.75660343433722
+ 20
+427.8917923822087
+ 30
+0.0
+ 11
+110.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+135.00000000000009
+ 20
+467.7032960713451
+ 30
+0.0
+ 11
+110.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.5132068686744
+ 20
+433.7317312998185
+ 30
+0.0
+ 11
+135.00000000000009
+ 21
+467.7032960713451
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.75660343433722
+ 20
+427.89179238220873
+ 30
+0.0
+ 11
+101.5132068686744
+ 21
+433.7317312998185
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+110.00000000000004
+ 20
+413.851648
+ 30
+0.0
+ 11
+135.00000000000006
+ 21
+413.85164799999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+135.00000000000006
+ 20
+413.851648
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+413.85164799999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+135.00000000000006
+ 20
+467.7032960713451
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+413.85164799999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.48679313132567
+ 20
+433.7317312998185
+ 30
+0.0
+ 11
+174.24339656566286
+ 21
+427.8917923822087
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+135.00000000000006
+ 20
+467.7032960713451
+ 30
+0.0
+ 11
+168.48679313132567
+ 21
+433.7317312998185
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+160.00000000000003
+ 20
+413.851648
+ 30
+0.0
+ 11
+174.24339656566286
+ 21
+427.8917923822087
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+160.00000000000003
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+174.24339656566283
+ 20
+427.8917923822087
+ 30
+0.0
+ 11
+180.0
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+180.0
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+160.00000000000003
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+182.73340182153296
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+182.73340182153296
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+182.73340182153296
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+180.0
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+182.73340182153296
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+179.99999999999983
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+159.9999999999998
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+179.9999999999998
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+159.9999999999998
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+179.9999999999998
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+179.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.9999999999998
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+174.24339656566264
+ 21
+39.81150361779146
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+174.24339656566264
+ 20
+39.81150361779146
+ 30
+0.0
+ 11
+159.9999999999998
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+134.9999999999998
+ 20
+-7.134491397664533e-08
+ 30
+0.0
+ 11
+159.9999999999998
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.48679313132547
+ 20
+33.971564700181666
+ 30
+0.0
+ 11
+134.9999999999998
+ 21
+-7.134491397664533e-08
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+174.24339656566264
+ 20
+39.81150361779146
+ 30
+0.0
+ 11
+168.48679313132547
+ 21
+33.971564700181666
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+182.73340182153274
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+179.9999999999998
+ 21
+45.651442535401266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+182.73340182153274
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+182.73340182153274
+ 21
+45.651442535401266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.99999999999983
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+182.73340182153274
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.9999999999999
+ 20
+228.85164800000007
+ 30
+0.0
+ 11
+179.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.99999999999991
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+179.9999999999999
+ 21
+228.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+180.0
+ 20
+413.851648
+ 30
+0.0
+ 11
+179.99999999999991
+ 21
+238.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+180.0
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.99999999999983
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+179.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+87.26659817846709
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+90.00000000000004
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+87.26659817846709
+ 20
+413.851648
+ 30
+0.0
+ 11
+87.26659817846709
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.00000000000004
+ 20
+413.851648
+ 30
+0.0
+ 11
+87.26659817846709
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.99999999999999
+ 20
+238.85164800000004
+ 30
+0.0
+ 11
+90.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+89.99999999999999
+ 20
+228.85164800000004
+ 30
+0.0
+ 11
+89.99999999999999
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999999
+ 21
+228.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.00000000000004
+ 20
+413.851648
+ 30
+0.0
+ 11
+90.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.0
+ 20
+238.85164800000004
+ 30
+0.0
+ 11
+89.99999999999999
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+70.0
+ 20
+228.85164800000004
+ 30
+0.0
+ 11
+70.0
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.99999999999999
+ 20
+228.85164800000004
+ 30
+0.0
+ 11
+70.0
+ 21
+228.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+20.000000000000004
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+19.999999999999986
+ 21
+228.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+19.999999999999986
+ 20
+228.85164800000007
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+228.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+20.000000000000004
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+70.0
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+20.000000000000004
+ 20
+228.85164800000007
+ 30
+0.0
+ 11
+0.0
+ 21
+228.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+20.000000000000004
+ 21
+238.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+228.85164800000007
+ 30
+0.0
+ 11
+0.0
+ 21
+238.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+19.999999999999986
+ 20
+198.85164800000004
+ 30
+0.0
+ 11
+20.000000000000004
+ 21
+228.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+19.999999999999986
+ 20
+198.85164800000004
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+198.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.0
+ 20
+228.85164800000004
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+198.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+19.99999999999997
+ 20
+188.85164800000004
+ 30
+0.0
+ 11
+19.99999999999997
+ 21
+198.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+69.99999999999999
+ 20
+188.85164800000004
+ 30
+0.0
+ 11
+19.99999999999997
+ 21
+188.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+69.99999999999999
+ 20
+198.85164800000004
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+188.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+20.000000000000004
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+20.000000000000018
+ 21
+268.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+268.851648
+ 30
+0.0
+ 11
+70.0
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+70.00000000000001
+ 20
+268.851648
+ 30
+0.0
+ 11
+20.000000000000018
+ 21
+268.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+278.85164800000007
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+268.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+20.000000000000018
+ 20
+278.85164800000007
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+278.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+20.000000000000018
+ 20
+268.851648
+ 30
+0.0
+ 11
+20.000000000000018
+ 21
+278.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.4078680484794
+ 20
+37.35482121234264
+ 30
+0.0
+ 11
+99.13799662747847
+ 21
+39.65755243235416
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.13799662747847
+ 20
+39.65755243235416
+ 30
+0.0
+ 11
+98.78191171333691
+ 21
+39.30654882279893
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.78191171333691
+ 20
+39.30654882279893
+ 30
+0.0
+ 11
+101.05178313433784
+ 21
+37.00381760278743
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.05178313433784
+ 20
+37.00381760278743
+ 30
+0.0
+ 11
+101.4078680484794
+ 21
+37.35482121234264
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+87.94994863385027
+ 20
+48.384844356934146
+ 30
+0.0
+ 11
+89.31664954461674
+ 21
+48.384844356934146
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.31664954461674
+ 20
+48.384844356934146
+ 30
+0.0
+ 11
+89.31664954461674
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.31664954461674
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+87.94994863385027
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.13799662747857
+ 20
+428.04574356764596
+ 30
+0.0
+ 11
+101.40786804847951
+ 21
+430.34847478765744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.40786804847951
+ 20
+430.34847478765744
+ 30
+0.0
+ 11
+101.05178313433795
+ 21
+430.69947839721266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.05178313433795
+ 20
+430.69947839721266
+ 30
+0.0
+ 11
+98.781911713337
+ 21
+428.39674717720106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.781911713337
+ 20
+428.39674717720106
+ 30
+0.0
+ 11
+99.13799662747857
+ 21
+428.04574356764596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.5921319515206
+ 20
+430.34847478765744
+ 30
+0.0
+ 11
+170.86200337252149
+ 21
+428.04574356764596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.86200337252149
+ 20
+428.04574356764596
+ 30
+0.0
+ 11
+171.2180882866631
+ 21
+428.39674717720106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+171.2180882866631
+ 20
+428.39674717720106
+ 30
+0.0
+ 11
+168.94821686566212
+ 21
+430.69947839721266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.94821686566212
+ 20
+430.69947839721266
+ 30
+0.0
+ 11
+168.5921319515206
+ 21
+430.34847478765744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+182.05005136614972
+ 20
+419.31845164306594
+ 30
+0.0
+ 11
+180.68335045538328
+ 21
+419.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+180.68335045538328
+ 20
+419.31845164306594
+ 30
+0.0
+ 11
+180.68335045538328
+ 21
+416.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+180.68335045538328
+ 20
+416.585049821533
+ 30
+0.0
+ 11
+182.05005136614972
+ 21
+416.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.8620033725213
+ 20
+39.657552432354215
+ 30
+0.0
+ 11
+168.59213195152032
+ 21
+37.354821212342706
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.59213195152032
+ 20
+37.354821212342706
+ 30
+0.0
+ 11
+168.94821686566192
+ 21
+37.00381760278748
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.94821686566192
+ 20
+37.00381760278748
+ 30
+0.0
+ 11
+171.21808828666286
+ 21
+39.306548822798995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+171.21808828666286
+ 20
+39.306548822798995
+ 30
+0.0
+ 11
+170.8620033725213
+ 21
+39.657552432354215
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+182.05005136614952
+ 20
+51.11824617846714
+ 30
+0.0
+ 11
+180.68335045538302
+ 21
+51.11824617846714
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+180.68335045538302
+ 20
+51.11824617846714
+ 30
+0.0
+ 11
+180.68335045538302
+ 21
+48.3848443569342
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+180.68335045538302
+ 20
+48.3848443569342
+ 30
+0.0
+ 11
+182.05005136614952
+ 21
+48.3848443569342
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+175.9999999999999
+ 20
+235.76831466666673
+ 30
+0.0
+ 11
+175.9999999999999
+ 21
+231.9349813333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+175.9999999999999
+ 20
+231.9349813333334
+ 30
+0.0
+ 11
+176.49999999999991
+ 21
+231.9349813333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+176.49999999999991
+ 20
+231.9349813333334
+ 30
+0.0
+ 11
+176.49999999999991
+ 21
+235.76831466666673
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+176.49999999999991
+ 20
+235.76831466666673
+ 30
+0.0
+ 11
+175.9999999999999
+ 21
+235.76831466666673
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+87.94994863385035
+ 20
+416.585049821533
+ 30
+0.0
+ 11
+89.31664954461682
+ 21
+416.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.31664954461682
+ 20
+416.585049821533
+ 30
+0.0
+ 11
+89.31664954461682
+ 21
+419.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.31664954461682
+ 20
+419.31845164306594
+ 30
+0.0
+ 11
+87.94994863385035
+ 21
+419.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+1.2500000000000002
+ 20
+232.18498133333338
+ 30
+0.0
+ 11
+3.7500000000000004
+ 21
+232.18498133333338
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+1.2500000000000002
+ 20
+235.51831466666673
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+232.18498133333338
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+3.7500000000000004
+ 20
+235.51831466666673
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+235.51831466666673
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.999999999999986
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+40.999999999999986
+ 21
+199.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.999999999999986
+ 20
+199.851648
+ 30
+0.0
+ 11
+48.999999999999986
+ 21
+199.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.999999999999986
+ 20
+199.851648
+ 30
+0.0
+ 11
+48.999999999999986
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.999999999999986
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+40.999999999999986
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+53.5833333333333
+ 20
+196.60164800000004
+ 30
+0.0
+ 11
+36.41666666666664
+ 21
+196.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+36.41666666666664
+ 20
+196.60164800000004
+ 30
+0.0
+ 11
+36.41666666666664
+ 21
+196.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+36.41666666666664
+ 20
+196.10164800000004
+ 30
+0.0
+ 11
+53.5833333333333
+ 21
+196.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+53.5833333333333
+ 20
+196.10164800000004
+ 30
+0.0
+ 11
+53.5833333333333
+ 21
+196.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+41.0
+ 20
+267.85164800000007
+ 30
+0.0
+ 11
+41.0
+ 21
+259.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+41.0
+ 20
+259.851648
+ 30
+0.0
+ 11
+49.00000000000001
+ 21
+259.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.00000000000001
+ 20
+259.851648
+ 30
+0.0
+ 11
+49.00000000000001
+ 21
+267.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.00000000000001
+ 20
+267.85164800000007
+ 30
+0.0
+ 11
+41.0
+ 21
+267.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+36.66666666666669
+ 20
+276.351648
+ 30
+0.0
+ 11
+31.66666666666669
+ 21
+276.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.66666666666669
+ 20
+276.351648
+ 30
+0.0
+ 11
+36.66666666666669
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+36.66666666666669
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+53.33333333333335
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+53.33333333333335
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+58.33333333333335
+ 21
+276.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+58.33333333333335
+ 20
+276.351648
+ 30
+0.0
+ 11
+53.33333333333335
+ 21
+276.351648
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithDCMount/graph-autofold-graph.dxf b/rocolib/builders/output/BoatWithDCMount/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..340dc6ebd18dfcb81776400af8b91314c91da718
--- /dev/null
+++ b/rocolib/builders/output/BoatWithDCMount/graph-autofold-graph.dxf
@@ -0,0 +1,3402 @@
+  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
+159.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+159.99999999999997
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+109.99999999999996
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+109.99999999999996
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+109.99999999999996
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+159.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+134.99999999999997
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.99999999999997
+ 20
+-7.134502766348305e-08
+ 30
+0.0
+ 11
+109.99999999999996
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.51320686867429
+ 20
+33.971564700181574
+ 30
+0.0
+ 11
+95.75660343433712
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.99999999999997
+ 20
+-7.134502766348305e-08
+ 30
+0.0
+ 11
+101.51320686867429
+ 21
+33.971564700181574
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+109.99999999999996
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+95.75660343433712
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+109.99999999999996
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.75660343433712
+ 20
+39.81150361779141
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+89.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+109.99999999999996
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.26659817846702
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.26659817846702
+ 20
+45.65144253540121
+ 30
+0.0
+ 11
+87.26659817846702
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.99999999999994
+ 20
+45.65144253540121
+ 30
+0.0
+ 11
+87.26659817846702
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.00000000000004
+ 20
+413.851648
+ 30
+0.0
+ 11
+110.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.00000000000004
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+110.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.00000000000004
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+90.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.00000000000006
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+95.75660343433722
+ 21
+427.8917923822087
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+95.75660343433722
+ 20
+427.8917923822087
+ 30
+0.0
+ 11
+110.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+135.00000000000009
+ 20
+467.7032960713451
+ 30
+0.0
+ 11
+110.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.5132068686744
+ 20
+433.7317312998185
+ 30
+0.0
+ 11
+135.00000000000009
+ 21
+467.7032960713451
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.75660343433722
+ 20
+427.89179238220873
+ 30
+0.0
+ 11
+101.5132068686744
+ 21
+433.7317312998185
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+110.00000000000004
+ 20
+413.851648
+ 30
+0.0
+ 11
+135.00000000000006
+ 21
+413.85164799999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+135.00000000000006
+ 20
+413.851648
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+413.85164799999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+135.00000000000006
+ 20
+467.7032960713451
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+413.85164799999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.48679313132567
+ 20
+433.7317312998185
+ 30
+0.0
+ 11
+174.24339656566286
+ 21
+427.8917923822087
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.00000000000006
+ 20
+467.7032960713451
+ 30
+0.0
+ 11
+168.48679313132567
+ 21
+433.7317312998185
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+160.00000000000003
+ 20
+413.851648
+ 30
+0.0
+ 11
+174.24339656566286
+ 21
+427.8917923822087
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+160.00000000000003
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.24339656566283
+ 20
+427.8917923822087
+ 30
+0.0
+ 11
+180.0
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+180.0
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+160.00000000000003
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+182.73340182153296
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+182.73340182153296
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+182.73340182153296
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.0
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+182.73340182153296
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+179.99999999999983
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+159.9999999999998
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+179.9999999999998
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+159.9999999999998
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+179.9999999999998
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+179.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.9999999999998
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+174.24339656566264
+ 21
+39.81150361779146
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+174.24339656566264
+ 20
+39.81150361779146
+ 30
+0.0
+ 11
+159.9999999999998
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.9999999999998
+ 20
+-7.134491397664533e-08
+ 30
+0.0
+ 11
+159.9999999999998
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.48679313132547
+ 20
+33.971564700181666
+ 30
+0.0
+ 11
+134.9999999999998
+ 21
+-7.134491397664533e-08
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.24339656566264
+ 20
+39.81150361779146
+ 30
+0.0
+ 11
+168.48679313132547
+ 21
+33.971564700181666
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+182.73340182153274
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+179.9999999999998
+ 21
+45.651442535401266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+182.73340182153274
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+182.73340182153274
+ 21
+45.651442535401266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.99999999999983
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+182.73340182153274
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.9999999999999
+ 20
+228.85164800000007
+ 30
+0.0
+ 11
+179.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.99999999999991
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+179.9999999999999
+ 21
+228.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.0
+ 20
+413.851648
+ 30
+0.0
+ 11
+179.99999999999991
+ 21
+238.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.0
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.99999999999983
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+179.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.26659817846709
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+90.00000000000004
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.26659817846709
+ 20
+413.851648
+ 30
+0.0
+ 11
+87.26659817846709
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.00000000000004
+ 20
+413.851648
+ 30
+0.0
+ 11
+87.26659817846709
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.99999999999999
+ 20
+238.85164800000004
+ 30
+0.0
+ 11
+90.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+89.99999999999999
+ 20
+228.85164800000004
+ 30
+0.0
+ 11
+89.99999999999999
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999999
+ 21
+228.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.00000000000004
+ 20
+413.851648
+ 30
+0.0
+ 11
+90.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.0
+ 20
+238.85164800000004
+ 30
+0.0
+ 11
+89.99999999999999
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+70.0
+ 20
+228.85164800000004
+ 30
+0.0
+ 11
+70.0
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.99999999999999
+ 20
+228.85164800000004
+ 30
+0.0
+ 11
+70.0
+ 21
+228.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+20.000000000000004
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+19.999999999999986
+ 21
+228.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+19.999999999999986
+ 20
+228.85164800000007
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+228.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+20.000000000000004
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+70.0
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+20.000000000000004
+ 20
+228.85164800000007
+ 30
+0.0
+ 11
+0.0
+ 21
+228.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+20.000000000000004
+ 21
+238.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+228.85164800000007
+ 30
+0.0
+ 11
+0.0
+ 21
+238.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.999999999999986
+ 20
+198.85164800000004
+ 30
+0.0
+ 11
+20.000000000000004
+ 21
+228.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+19.999999999999986
+ 20
+198.85164800000004
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+198.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.0
+ 20
+228.85164800000004
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+198.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.99999999999997
+ 20
+188.85164800000004
+ 30
+0.0
+ 11
+19.99999999999997
+ 21
+198.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.99999999999999
+ 20
+188.85164800000004
+ 30
+0.0
+ 11
+19.99999999999997
+ 21
+188.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.99999999999999
+ 20
+198.85164800000004
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+188.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+20.000000000000004
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+20.000000000000018
+ 21
+268.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+268.851648
+ 30
+0.0
+ 11
+70.0
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+70.00000000000001
+ 20
+268.851648
+ 30
+0.0
+ 11
+20.000000000000018
+ 21
+268.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+278.85164800000007
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+268.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+20.000000000000018
+ 20
+278.85164800000007
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+278.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+20.000000000000018
+ 20
+268.851648
+ 30
+0.0
+ 11
+20.000000000000018
+ 21
+278.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.4078680484794
+ 20
+37.35482121234264
+ 30
+0.0
+ 11
+99.13799662747847
+ 21
+39.65755243235416
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.13799662747847
+ 20
+39.65755243235416
+ 30
+0.0
+ 11
+98.78191171333691
+ 21
+39.30654882279893
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.78191171333691
+ 20
+39.30654882279893
+ 30
+0.0
+ 11
+101.05178313433784
+ 21
+37.00381760278743
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.05178313433784
+ 20
+37.00381760278743
+ 30
+0.0
+ 11
+101.4078680484794
+ 21
+37.35482121234264
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.94994863385027
+ 20
+48.384844356934146
+ 30
+0.0
+ 11
+89.31664954461674
+ 21
+48.384844356934146
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.31664954461674
+ 20
+48.384844356934146
+ 30
+0.0
+ 11
+89.31664954461674
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.31664954461674
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+87.94994863385027
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.13799662747857
+ 20
+428.04574356764596
+ 30
+0.0
+ 11
+101.40786804847951
+ 21
+430.34847478765744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.40786804847951
+ 20
+430.34847478765744
+ 30
+0.0
+ 11
+101.05178313433795
+ 21
+430.69947839721266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.05178313433795
+ 20
+430.69947839721266
+ 30
+0.0
+ 11
+98.781911713337
+ 21
+428.39674717720106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.781911713337
+ 20
+428.39674717720106
+ 30
+0.0
+ 11
+99.13799662747857
+ 21
+428.04574356764596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.5921319515206
+ 20
+430.34847478765744
+ 30
+0.0
+ 11
+170.86200337252149
+ 21
+428.04574356764596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.86200337252149
+ 20
+428.04574356764596
+ 30
+0.0
+ 11
+171.2180882866631
+ 21
+428.39674717720106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+171.2180882866631
+ 20
+428.39674717720106
+ 30
+0.0
+ 11
+168.94821686566212
+ 21
+430.69947839721266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.94821686566212
+ 20
+430.69947839721266
+ 30
+0.0
+ 11
+168.5921319515206
+ 21
+430.34847478765744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+182.05005136614972
+ 20
+419.31845164306594
+ 30
+0.0
+ 11
+180.68335045538328
+ 21
+419.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.68335045538328
+ 20
+419.31845164306594
+ 30
+0.0
+ 11
+180.68335045538328
+ 21
+416.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.68335045538328
+ 20
+416.585049821533
+ 30
+0.0
+ 11
+182.05005136614972
+ 21
+416.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.8620033725213
+ 20
+39.657552432354215
+ 30
+0.0
+ 11
+168.59213195152032
+ 21
+37.354821212342706
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.59213195152032
+ 20
+37.354821212342706
+ 30
+0.0
+ 11
+168.94821686566192
+ 21
+37.00381760278748
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.94821686566192
+ 20
+37.00381760278748
+ 30
+0.0
+ 11
+171.21808828666286
+ 21
+39.306548822798995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+171.21808828666286
+ 20
+39.306548822798995
+ 30
+0.0
+ 11
+170.8620033725213
+ 21
+39.657552432354215
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+182.05005136614952
+ 20
+51.11824617846714
+ 30
+0.0
+ 11
+180.68335045538302
+ 21
+51.11824617846714
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.68335045538302
+ 20
+51.11824617846714
+ 30
+0.0
+ 11
+180.68335045538302
+ 21
+48.3848443569342
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.68335045538302
+ 20
+48.3848443569342
+ 30
+0.0
+ 11
+182.05005136614952
+ 21
+48.3848443569342
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.9999999999999
+ 20
+235.76831466666673
+ 30
+0.0
+ 11
+175.9999999999999
+ 21
+231.9349813333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.9999999999999
+ 20
+231.9349813333334
+ 30
+0.0
+ 11
+176.49999999999991
+ 21
+231.9349813333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.49999999999991
+ 20
+231.9349813333334
+ 30
+0.0
+ 11
+176.49999999999991
+ 21
+235.76831466666673
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.49999999999991
+ 20
+235.76831466666673
+ 30
+0.0
+ 11
+175.9999999999999
+ 21
+235.76831466666673
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.94994863385035
+ 20
+416.585049821533
+ 30
+0.0
+ 11
+89.31664954461682
+ 21
+416.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.31664954461682
+ 20
+416.585049821533
+ 30
+0.0
+ 11
+89.31664954461682
+ 21
+419.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.31664954461682
+ 20
+419.31845164306594
+ 30
+0.0
+ 11
+87.94994863385035
+ 21
+419.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.2500000000000002
+ 20
+232.18498133333338
+ 30
+0.0
+ 11
+3.7500000000000004
+ 21
+232.18498133333338
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.2500000000000002
+ 20
+235.51831466666673
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+232.18498133333338
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+3.7500000000000004
+ 20
+235.51831466666673
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+235.51831466666673
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.999999999999986
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+40.999999999999986
+ 21
+199.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.999999999999986
+ 20
+199.851648
+ 30
+0.0
+ 11
+48.999999999999986
+ 21
+199.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.999999999999986
+ 20
+199.851648
+ 30
+0.0
+ 11
+48.999999999999986
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.999999999999986
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+40.999999999999986
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.5833333333333
+ 20
+196.60164800000004
+ 30
+0.0
+ 11
+36.41666666666664
+ 21
+196.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.41666666666664
+ 20
+196.60164800000004
+ 30
+0.0
+ 11
+36.41666666666664
+ 21
+196.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.41666666666664
+ 20
+196.10164800000004
+ 30
+0.0
+ 11
+53.5833333333333
+ 21
+196.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.5833333333333
+ 20
+196.10164800000004
+ 30
+0.0
+ 11
+53.5833333333333
+ 21
+196.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.0
+ 20
+267.85164800000007
+ 30
+0.0
+ 11
+41.0
+ 21
+259.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.0
+ 20
+259.851648
+ 30
+0.0
+ 11
+49.00000000000001
+ 21
+259.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.00000000000001
+ 20
+259.851648
+ 30
+0.0
+ 11
+49.00000000000001
+ 21
+267.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.00000000000001
+ 20
+267.85164800000007
+ 30
+0.0
+ 11
+41.0
+ 21
+267.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.66666666666669
+ 20
+276.351648
+ 30
+0.0
+ 11
+31.66666666666669
+ 21
+276.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.66666666666669
+ 20
+276.351648
+ 30
+0.0
+ 11
+36.66666666666669
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.66666666666669
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+53.33333333333335
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.33333333333335
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+58.33333333333335
+ 21
+276.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.33333333333335
+ 20
+276.351648
+ 30
+0.0
+ 11
+53.33333333333335
+ 21
+276.351648
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithDCMount/graph-lasercutter.svg b/rocolib/builders/output/BoatWithDCMount/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c0617afe5084dcb58a02f7fd1d07972f2f150661
--- /dev/null
+++ b/rocolib/builders/output/BoatWithDCMount/graph-lasercutter.svg
@@ -0,0 +1,137 @@
+<?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="467.703296mm" version="1.1" viewBox="0.000000 0.000000 182.733402 467.703296" width="182.733402mm">
+  <defs/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="159.99999999999997" x2="159.99999999999997" y1="53.85164800000002" y2="413.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999996" x2="109.99999999999996" y1="53.85164800000002" y2="413.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.99999999999997" x2="109.99999999999996" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="159.99999999999997" x2="134.99999999999997" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.99999999999997" x2="109.99999999999996" y1="-7.134502766348305e-08" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="101.51320686867429" x2="95.75660343433712" y1="33.971564700181574" y2="39.81150361779138"/>
+  <line stroke="#000000" x1="134.99999999999997" x2="101.51320686867429" y1="-7.134502766348305e-08" y2="33.971564700181574"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999996" x2="95.75660343433712" y1="53.85164800000002" y2="39.81150361779138"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999996" x2="89.99999999999994" y1="53.85164800000002" y2="45.65144253540121"/>
+  <line stroke="#000000" x1="95.75660343433712" x2="89.99999999999994" y1="39.81150361779141" y2="45.65144253540121"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="89.99999999999994" x2="89.99999999999994" y1="53.85164800000002" y2="45.65144253540121"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999996" x2="89.99999999999994" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="87.26659817846702" x2="89.99999999999994" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="87.26659817846702" x2="87.26659817846702" y1="45.65144253540121" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="89.99999999999994" x2="87.26659817846702" y1="45.65144253540121" y2="45.65144253540121"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.00000000000004" x2="110.00000000000004" y1="413.851648" y2="413.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.00000000000004" x2="110.00000000000004" y1="422.0518534645989" y2="413.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.00000000000004" x2="90.00000000000004" y1="422.0518534645989" y2="413.851648"/>
+  <line stroke="#000000" x1="90.00000000000006" x2="95.75660343433722" y1="422.0518534645989" y2="427.8917923822087"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="95.75660343433722" x2="110.00000000000004" y1="427.8917923822087" y2="413.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="135.00000000000009" x2="110.00000000000004" y1="467.7032960713451" y2="413.851648"/>
+  <line stroke="#000000" x1="101.5132068686744" x2="135.00000000000009" y1="433.7317312998185" y2="467.7032960713451"/>
+  <line stroke="#000000" x1="95.75660343433722" x2="101.5132068686744" y1="427.89179238220873" y2="433.7317312998185"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="110.00000000000004" x2="135.00000000000006" y1="413.851648" y2="413.85164799999995"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="135.00000000000006" x2="160.00000000000003" y1="413.851648" y2="413.85164799999995"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="135.00000000000006" x2="160.00000000000003" y1="467.7032960713451" y2="413.85164799999995"/>
+  <line stroke="#000000" x1="168.48679313132567" x2="174.24339656566286" y1="433.7317312998185" y2="427.8917923822087"/>
+  <line stroke="#000000" x1="135.00000000000006" x2="168.48679313132567" y1="467.7032960713451" y2="433.7317312998185"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.00000000000003" x2="174.24339656566286" y1="413.851648" y2="427.8917923822087"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.00000000000003" x2="180.0" y1="413.851648" y2="422.0518534645989"/>
+  <line stroke="#000000" x1="174.24339656566283" x2="180.0" y1="427.8917923822087" y2="422.0518534645989"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="180.0" x2="180.0" y1="413.851648" y2="422.0518534645989"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.00000000000003" x2="180.0" y1="413.851648" y2="413.851648"/>
+  <line stroke="#000000" x1="182.73340182153296" x2="180.0" y1="413.851648" y2="413.851648"/>
+  <line stroke="#000000" x1="182.73340182153296" x2="182.73340182153296" y1="422.0518534645989" y2="413.851648"/>
+  <line stroke="#000000" x1="180.0" x2="182.73340182153296" y1="422.0518534645989" y2="422.0518534645989"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.99999999999983" x2="159.9999999999998" y1="53.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.9999999999998" x2="159.9999999999998" y1="45.651442535401266" y2="53.85164800000007"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.9999999999998" x2="179.99999999999983" y1="45.651442535401266" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="179.9999999999998" x2="174.24339656566264" y1="45.651442535401266" y2="39.81150361779146"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="174.24339656566264" x2="159.9999999999998" y1="39.81150361779146" y2="53.85164800000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.9999999999998" x2="159.9999999999998" y1="-7.134491397664533e-08" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="168.48679313132547" x2="134.9999999999998" y1="33.971564700181666" y2="-7.134491397664533e-08"/>
+  <line stroke="#000000" x1="174.24339656566264" x2="168.48679313132547" y1="39.81150361779146" y2="33.971564700181666"/>
+  <line stroke="#000000" x1="182.73340182153274" x2="179.9999999999998" y1="45.651442535401266" y2="45.651442535401266"/>
+  <line stroke="#000000" x1="182.73340182153274" x2="182.73340182153274" y1="53.85164800000007" y2="45.651442535401266"/>
+  <line stroke="#000000" x1="179.99999999999983" x2="182.73340182153274" y1="53.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="179.9999999999999" x2="179.99999999999983" y1="228.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="179.99999999999991" x2="179.9999999999999" y1="238.85164800000007" y2="228.85164800000007"/>
+  <line stroke="#000000" x1="180.0" x2="179.99999999999991" y1="413.851648" y2="238.85164800000007"/>
+  <line stroke="#000000" x1="180.0" x2="180.0" y1="413.851648" y2="413.851648"/>
+  <line stroke="#000000" x1="179.99999999999983" x2="179.99999999999983" y1="53.85164800000007" y2="53.85164800000007"/>
+  <line stroke="#000000" x1="87.26659817846709" x2="90.00000000000004" y1="422.0518534645989" y2="422.0518534645989"/>
+  <line stroke="#000000" x1="87.26659817846709" x2="87.26659817846709" y1="413.851648" y2="422.0518534645989"/>
+  <line stroke="#000000" x1="90.00000000000004" x2="87.26659817846709" y1="413.851648" y2="413.851648"/>
+  <line stroke="#000000" x1="89.99999999999999" x2="90.00000000000004" y1="238.85164800000004" y2="413.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="89.99999999999999" x2="89.99999999999999" y1="228.85164800000004" y2="238.85164800000004"/>
+  <line stroke="#000000" x1="89.99999999999994" x2="89.99999999999999" y1="53.85164800000002" y2="228.85164800000004"/>
+  <line stroke="#000000" x1="89.99999999999994" x2="89.99999999999994" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="90.00000000000004" x2="90.00000000000004" y1="413.851648" y2="413.851648"/>
+  <line stroke="#000000" x1="70.0" x2="89.99999999999999" y1="238.85164800000004" y2="238.85164800000004"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.0" x2="70.0" y1="228.85164800000004" y2="238.85164800000004"/>
+  <line stroke="#000000" x1="89.99999999999999" x2="70.0" y1="228.85164800000004" y2="228.85164800000004"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="20.000000000000004" x2="19.999999999999986" y1="238.85164800000007" y2="228.85164800000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="19.999999999999986" x2="69.99999999999999" y1="228.85164800000007" y2="228.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="20.000000000000004" x2="70.0" y1="238.85164800000007" y2="238.85164800000004"/>
+  <line stroke="#000000" x1="20.000000000000004" x2="0.0" y1="228.85164800000007" y2="228.85164800000007"/>
+  <line stroke="#000000" x1="0.0" x2="20.000000000000004" y1="238.85164800000007" y2="238.85164800000007"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="228.85164800000007" y2="238.85164800000007"/>
+  <line stroke="#000000" x1="19.999999999999986" x2="20.000000000000004" y1="198.85164800000004" y2="228.85164800000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="19.999999999999986" x2="69.99999999999999" y1="198.85164800000004" y2="198.85164800000004"/>
+  <line stroke="#000000" x1="70.0" x2="69.99999999999999" y1="228.85164800000004" y2="198.85164800000004"/>
+  <line stroke="#000000" x1="19.99999999999997" x2="19.99999999999997" y1="188.85164800000004" y2="198.85164800000004"/>
+  <line stroke="#000000" x1="69.99999999999999" x2="19.99999999999997" y1="188.85164800000004" y2="188.85164800000004"/>
+  <line stroke="#000000" x1="69.99999999999999" x2="69.99999999999999" y1="198.85164800000004" y2="188.85164800000004"/>
+  <line stroke="#000000" x1="20.000000000000004" x2="20.000000000000018" y1="238.85164800000007" y2="268.851648"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.0" y1="268.851648" y2="238.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="20.000000000000018" y1="268.851648" y2="268.851648"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="278.85164800000007" y2="268.851648"/>
+  <line stroke="#000000" x1="20.000000000000018" x2="70.00000000000001" y1="278.85164800000007" y2="278.85164800000007"/>
+  <line stroke="#000000" x1="20.000000000000018" x2="20.000000000000018" y1="268.851648" y2="278.85164800000007"/>
+  <line stroke="#888888" x1="101.4078680484794" x2="99.13799662747847" y1="37.35482121234264" y2="39.65755243235416"/>
+  <line stroke="#888888" x1="99.13799662747847" x2="98.78191171333691" y1="39.65755243235416" y2="39.30654882279893"/>
+  <line stroke="#888888" x1="98.78191171333691" x2="101.05178313433784" y1="39.30654882279893" y2="37.00381760278743"/>
+  <line stroke="#888888" x1="101.05178313433784" x2="101.4078680484794" y1="37.00381760278743" y2="37.35482121234264"/>
+  <line stroke="#888888" x1="87.94994863385027" x2="89.31664954461674" y1="48.384844356934146" y2="48.384844356934146"/>
+  <line stroke="#888888" x1="89.31664954461674" x2="89.31664954461674" y1="48.384844356934146" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="89.31664954461674" x2="87.94994863385027" y1="51.118246178467075" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="99.13799662747857" x2="101.40786804847951" y1="428.04574356764596" y2="430.34847478765744"/>
+  <line stroke="#888888" x1="101.40786804847951" x2="101.05178313433795" y1="430.34847478765744" y2="430.69947839721266"/>
+  <line stroke="#888888" x1="101.05178313433795" x2="98.781911713337" y1="430.69947839721266" y2="428.39674717720106"/>
+  <line stroke="#888888" x1="98.781911713337" x2="99.13799662747857" y1="428.39674717720106" y2="428.04574356764596"/>
+  <line stroke="#888888" x1="168.5921319515206" x2="170.86200337252149" y1="430.34847478765744" y2="428.04574356764596"/>
+  <line stroke="#888888" x1="170.86200337252149" x2="171.2180882866631" y1="428.04574356764596" y2="428.39674717720106"/>
+  <line stroke="#888888" x1="171.2180882866631" x2="168.94821686566212" y1="428.39674717720106" y2="430.69947839721266"/>
+  <line stroke="#888888" x1="168.94821686566212" x2="168.5921319515206" y1="430.69947839721266" y2="430.34847478765744"/>
+  <line stroke="#888888" x1="182.05005136614972" x2="180.68335045538328" y1="419.31845164306594" y2="419.31845164306594"/>
+  <line stroke="#888888" x1="180.68335045538328" x2="180.68335045538328" y1="419.31845164306594" y2="416.585049821533"/>
+  <line stroke="#888888" x1="180.68335045538328" x2="182.05005136614972" y1="416.585049821533" y2="416.585049821533"/>
+  <line stroke="#888888" x1="170.8620033725213" x2="168.59213195152032" y1="39.657552432354215" y2="37.354821212342706"/>
+  <line stroke="#888888" x1="168.59213195152032" x2="168.94821686566192" y1="37.354821212342706" y2="37.00381760278748"/>
+  <line stroke="#888888" x1="168.94821686566192" x2="171.21808828666286" y1="37.00381760278748" y2="39.306548822798995"/>
+  <line stroke="#888888" x1="171.21808828666286" x2="170.8620033725213" y1="39.306548822798995" y2="39.657552432354215"/>
+  <line stroke="#888888" x1="182.05005136614952" x2="180.68335045538302" y1="51.11824617846714" y2="51.11824617846714"/>
+  <line stroke="#888888" x1="180.68335045538302" x2="180.68335045538302" y1="51.11824617846714" y2="48.3848443569342"/>
+  <line stroke="#888888" x1="180.68335045538302" x2="182.05005136614952" y1="48.3848443569342" y2="48.3848443569342"/>
+  <line stroke="#888888" x1="175.9999999999999" x2="175.9999999999999" y1="235.76831466666673" y2="231.9349813333334"/>
+  <line stroke="#888888" x1="175.9999999999999" x2="176.49999999999991" y1="231.9349813333334" y2="231.9349813333334"/>
+  <line stroke="#888888" x1="176.49999999999991" x2="176.49999999999991" y1="231.9349813333334" y2="235.76831466666673"/>
+  <line stroke="#888888" x1="176.49999999999991" x2="175.9999999999999" y1="235.76831466666673" y2="235.76831466666673"/>
+  <line stroke="#888888" x1="87.94994863385035" x2="89.31664954461682" y1="416.585049821533" y2="416.585049821533"/>
+  <line stroke="#888888" x1="89.31664954461682" x2="89.31664954461682" y1="416.585049821533" y2="419.31845164306594"/>
+  <line stroke="#888888" x1="89.31664954461682" x2="87.94994863385035" y1="419.31845164306594" y2="419.31845164306594"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="3.7500000000000004" y1="232.18498133333338" y2="232.18498133333338"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="235.51831466666673" y2="232.18498133333338"/>
+  <line stroke="#888888" x1="3.7500000000000004" x2="1.2500000000000002" y1="235.51831466666673" y2="235.51831466666673"/>
+  <line stroke="#888888" x1="40.999999999999986" x2="40.999999999999986" y1="207.85164800000004" y2="199.851648"/>
+  <line stroke="#888888" x1="40.999999999999986" x2="48.999999999999986" y1="199.851648" y2="199.851648"/>
+  <line stroke="#888888" x1="48.999999999999986" x2="48.999999999999986" y1="199.851648" y2="207.85164800000004"/>
+  <line stroke="#888888" x1="48.999999999999986" x2="40.999999999999986" y1="207.85164800000004" y2="207.85164800000004"/>
+  <line stroke="#888888" x1="53.5833333333333" x2="36.41666666666664" y1="196.60164800000004" y2="196.60164800000004"/>
+  <line stroke="#888888" x1="36.41666666666664" x2="36.41666666666664" y1="196.60164800000004" y2="196.10164800000004"/>
+  <line stroke="#888888" x1="36.41666666666664" x2="53.5833333333333" y1="196.10164800000004" y2="196.10164800000004"/>
+  <line stroke="#888888" x1="53.5833333333333" x2="53.5833333333333" y1="196.10164800000004" y2="196.60164800000004"/>
+  <line stroke="#888888" x1="41.0" x2="41.0" y1="267.85164800000007" y2="259.851648"/>
+  <line stroke="#888888" x1="41.0" x2="49.00000000000001" y1="259.851648" y2="259.851648"/>
+  <line stroke="#888888" x1="49.00000000000001" x2="49.00000000000001" y1="259.851648" y2="267.85164800000007"/>
+  <line stroke="#888888" x1="49.00000000000001" x2="41.0" y1="267.85164800000007" y2="267.85164800000007"/>
+  <line stroke="#888888" x1="36.66666666666669" x2="31.66666666666669" y1="276.351648" y2="276.351648"/>
+  <line stroke="#888888" x1="31.66666666666669" x2="36.66666666666669" y1="276.351648" y2="271.35164800000007"/>
+  <line stroke="#888888" x1="36.66666666666669" x2="53.33333333333335" y1="271.35164800000007" y2="271.35164800000007"/>
+  <line stroke="#888888" x1="53.33333333333335" x2="58.33333333333335" y1="271.35164800000007" y2="276.351648"/>
+  <line stroke="#888888" x1="58.33333333333335" x2="53.33333333333335" y1="276.351648" y2="276.351648"/>
+</svg>
diff --git a/rocolib/builders/output/BoatWithDCMount/graph-model.png b/rocolib/builders/output/BoatWithDCMount/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..83b4d96aa94badaca394dfac095d59ae0489a5dd
Binary files /dev/null and b/rocolib/builders/output/BoatWithDCMount/graph-model.png differ
diff --git a/rocolib/builders/output/BoatWithDCMount/graph-model.stl b/rocolib/builders/output/BoatWithDCMount/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..fa6ce1b8c5e502cbf57cdd03e83302d5a220a7fc
--- /dev/null
+++ b/rocolib/builders/output/BoatWithDCMount/graph-model.stl
@@ -0,0 +1,422 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.1800 0.0000
+vertex -0.0250 -0.1800 0.0000
+vertex 0.0250 -0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.1800 0.0000
+vertex 0.0250 0.1800 0.0000
+vertex -0.0250 0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.1800 -0.0200
+vertex -0.0250 -0.1800 -0.0200
+vertex -0.0250 -0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.1800 0.0000
+vertex -0.0250 0.1800 0.0000
+vertex -0.0250 0.1800 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.1800 0.0000
+vertex 0.0250 -0.1800 0.0000
+vertex 0.0250 -0.1800 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.1800 -0.0200
+vertex 0.0250 0.1800 -0.0200
+vertex 0.0250 0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.1800 0.0000
+vertex -0.0250 -0.1800 -0.0200
+vertex -0.0213 -0.1873 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0213 -0.1873 -0.0200
+vertex 0.0000 -0.2300 -0.0200
+vertex -0.0250 -0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 -0.1800 0.0000
+vertex -0.0250 -0.1800 0.0000
+vertex -0.0000 -0.2300 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0000 -0.1800 0.0000
+vertex 0.0000 -0.2300 -0.0200
+vertex 0.0250 -0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0213 -0.1873 -0.0200
+vertex 0.0250 -0.1800 -0.0200
+vertex 0.0250 -0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.1800 0.0000
+vertex 0.0000 -0.2300 -0.0200
+vertex 0.0213 -0.1873 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.1800 -0.0200
+vertex -0.0250 -0.1800 0.0000
+vertex -0.0213 -0.1873 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.1800 -0.0200
+vertex -0.0213 -0.1873 -0.0200
+vertex -0.0250 -0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.1800 -0.0200
+vertex 0.0213 -0.1873 -0.0200
+vertex 0.0250 -0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.1800 -0.0200
+vertex 0.0250 -0.1800 0.0000
+vertex 0.0213 -0.1873 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.1800 0.0000
+vertex 0.0250 0.1800 -0.0200
+vertex 0.0213 0.1873 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0213 0.1873 -0.0200
+vertex -0.0000 0.2300 -0.0200
+vertex 0.0250 0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 0.1800 0.0000
+vertex 0.0250 0.1800 0.0000
+vertex -0.0000 0.2300 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 0.1800 0.0000
+vertex -0.0000 0.2300 -0.0200
+vertex -0.0250 0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0213 0.1873 -0.0200
+vertex -0.0250 0.1800 -0.0200
+vertex -0.0250 0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.1800 0.0000
+vertex -0.0000 0.2300 -0.0200
+vertex -0.0213 0.1873 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.1800 -0.0200
+vertex 0.0250 0.1800 0.0000
+vertex 0.0213 0.1873 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.1800 -0.0200
+vertex 0.0213 0.1873 -0.0200
+vertex 0.0250 0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.1800 -0.0200
+vertex -0.0213 0.1873 -0.0200
+vertex -0.0250 0.1800 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.1800 -0.0200
+vertex -0.0250 0.1800 0.0000
+vertex -0.0213 0.1873 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0050 0.0300
+vertex 0.0040 0.0050 0.0290
+vertex -0.0040 0.0050 0.0290
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0040 0.0050 0.0290
+vertex 0.0250 0.0050 0.0300
+vertex 0.0040 0.0050 0.0210
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0050 0.0300
+vertex -0.0040 0.0050 0.0290
+vertex -0.0040 0.0050 0.0210
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0040 0.0050 0.0290
+vertex -0.0250 0.0050 0.0300
+vertex 0.0250 0.0050 0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0040 0.0050 0.0210
+vertex 0.0250 0.0050 0.0000
+vertex -0.0250 0.0050 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0050 0.0000
+vertex 0.0040 0.0050 0.0210
+vertex 0.0250 0.0050 0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0040 0.0050 0.0210
+vertex -0.0250 0.0050 0.0000
+vertex -0.0250 0.0050 0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0050 0.0000
+vertex -0.0040 0.0050 0.0210
+vertex 0.0040 0.0050 0.0210
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0050 0.0000
+vertex 0.0250 0.0050 0.0000
+vertex 0.0250 -0.0050 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0050 0.0000
+vertex -0.0250 -0.0050 0.0000
+vertex -0.0250 0.0050 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0050 0.0000
+vertex 0.0040 -0.0050 0.0210
+vertex -0.0040 -0.0050 0.0210
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0040 -0.0050 0.0210
+vertex 0.0250 -0.0050 0.0000
+vertex 0.0250 -0.0050 0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0050 0.0000
+vertex -0.0040 -0.0050 0.0210
+vertex -0.0250 -0.0050 0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0040 -0.0050 0.0210
+vertex -0.0250 -0.0050 0.0000
+vertex 0.0250 -0.0050 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0040 -0.0050 0.0290
+vertex 0.0250 -0.0050 0.0300
+vertex -0.0250 -0.0050 0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0050 0.0300
+vertex 0.0040 -0.0050 0.0290
+vertex 0.0040 -0.0050 0.0210
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0040 -0.0050 0.0290
+vertex -0.0250 -0.0050 0.0300
+vertex -0.0040 -0.0050 0.0210
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0050 0.0300
+vertex -0.0040 -0.0050 0.0290
+vertex 0.0040 -0.0050 0.0290
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0050 0.0300
+vertex 0.0250 -0.0050 0.0300
+vertex 0.0250 0.0050 0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0050 0.0300
+vertex -0.0250 0.0050 0.0300
+vertex -0.0250 -0.0050 0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0050 -0.0200
+vertex 0.0250 -0.0050 -0.0200
+vertex 0.0250 -0.0050 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0050 0.0000
+vertex 0.0250 0.0050 0.0000
+vertex 0.0250 0.0050 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0050 -0.0200
+vertex -0.0250 0.0050 -0.0200
+vertex -0.0250 0.0050 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0050 0.0000
+vertex -0.0250 -0.0050 0.0000
+vertex -0.0250 -0.0050 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0216 -0.1875 -0.0173
+vertex -0.0213 -0.1873 -0.0200
+vertex -0.0250 -0.1800 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.1800 -0.0200
+vertex -0.0253 -0.1801 -0.0173
+vertex -0.0216 -0.1875 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0253 -0.1801 -0.0173
+vertex 0.0250 -0.1800 -0.0200
+vertex 0.0213 -0.1873 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0213 -0.1873 -0.0200
+vertex 0.0216 -0.1875 -0.0173
+vertex 0.0253 -0.1801 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0216 0.1875 -0.0173
+vertex 0.0213 0.1873 -0.0200
+vertex 0.0250 0.1800 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.1800 -0.0200
+vertex 0.0253 0.1801 -0.0173
+vertex 0.0216 0.1875 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0253 0.1801 -0.0173
+vertex -0.0250 0.1800 -0.0200
+vertex -0.0213 0.1873 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0213 0.1873 -0.0200
+vertex -0.0216 0.1875 -0.0173
+vertex -0.0253 0.1801 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0050 0.0300
+vertex 0.0250 0.0050 0.0300
+vertex -0.0250 0.0050 0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0050 0.0300
+vertex -0.0250 -0.0050 0.0300
+vertex 0.0250 -0.0050 0.0300
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/builders/output/BoatWithDCMount/graph-silhouette.dxf b/rocolib/builders/output/BoatWithDCMount/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..8cf6f3766cb9ac3dd8f62bf3719dd1dce4fd5753
--- /dev/null
+++ b/rocolib/builders/output/BoatWithDCMount/graph-silhouette.dxf
@@ -0,0 +1,3402 @@
+  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
+159.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+159.99999999999997
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+109.99999999999996
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+109.99999999999996
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+109.99999999999996
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+159.99999999999997
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+134.99999999999997
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.99999999999997
+ 20
+-7.134502766348305e-08
+ 30
+0.0
+ 11
+109.99999999999996
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.51320686867429
+ 20
+33.971564700181574
+ 30
+0.0
+ 11
+95.75660343433712
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.99999999999997
+ 20
+-7.134502766348305e-08
+ 30
+0.0
+ 11
+101.51320686867429
+ 21
+33.971564700181574
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+109.99999999999996
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+95.75660343433712
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+109.99999999999996
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.75660343433712
+ 20
+39.81150361779141
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+89.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+109.99999999999996
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.26659817846702
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.26659817846702
+ 20
+45.65144253540121
+ 30
+0.0
+ 11
+87.26659817846702
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.99999999999994
+ 20
+45.65144253540121
+ 30
+0.0
+ 11
+87.26659817846702
+ 21
+45.65144253540121
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.00000000000004
+ 20
+413.851648
+ 30
+0.0
+ 11
+110.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+90.00000000000004
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+110.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+90.00000000000004
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+90.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.00000000000006
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+95.75660343433722
+ 21
+427.8917923822087
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+95.75660343433722
+ 20
+427.8917923822087
+ 30
+0.0
+ 11
+110.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+135.00000000000009
+ 20
+467.7032960713451
+ 30
+0.0
+ 11
+110.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.5132068686744
+ 20
+433.7317312998185
+ 30
+0.0
+ 11
+135.00000000000009
+ 21
+467.7032960713451
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.75660343433722
+ 20
+427.89179238220873
+ 30
+0.0
+ 11
+101.5132068686744
+ 21
+433.7317312998185
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+110.00000000000004
+ 20
+413.851648
+ 30
+0.0
+ 11
+135.00000000000006
+ 21
+413.85164799999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+135.00000000000006
+ 20
+413.851648
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+413.85164799999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+135.00000000000006
+ 20
+467.7032960713451
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+413.85164799999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.48679313132567
+ 20
+433.7317312998185
+ 30
+0.0
+ 11
+174.24339656566286
+ 21
+427.8917923822087
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.00000000000006
+ 20
+467.7032960713451
+ 30
+0.0
+ 11
+168.48679313132567
+ 21
+433.7317312998185
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+160.00000000000003
+ 20
+413.851648
+ 30
+0.0
+ 11
+174.24339656566286
+ 21
+427.8917923822087
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+160.00000000000003
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.24339656566283
+ 20
+427.8917923822087
+ 30
+0.0
+ 11
+180.0
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+180.0
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+160.00000000000003
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+182.73340182153296
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+182.73340182153296
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+182.73340182153296
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.0
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+182.73340182153296
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+179.99999999999983
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+159.9999999999998
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+179.9999999999998
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+159.9999999999998
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+179.9999999999998
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+179.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.9999999999998
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+174.24339656566264
+ 21
+39.81150361779146
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+174.24339656566264
+ 20
+39.81150361779146
+ 30
+0.0
+ 11
+159.9999999999998
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.9999999999998
+ 20
+-7.134491397664533e-08
+ 30
+0.0
+ 11
+159.9999999999998
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.48679313132547
+ 20
+33.971564700181666
+ 30
+0.0
+ 11
+134.9999999999998
+ 21
+-7.134491397664533e-08
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.24339656566264
+ 20
+39.81150361779146
+ 30
+0.0
+ 11
+168.48679313132547
+ 21
+33.971564700181666
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+182.73340182153274
+ 20
+45.651442535401266
+ 30
+0.0
+ 11
+179.9999999999998
+ 21
+45.651442535401266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+182.73340182153274
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+182.73340182153274
+ 21
+45.651442535401266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.99999999999983
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+182.73340182153274
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.9999999999999
+ 20
+228.85164800000007
+ 30
+0.0
+ 11
+179.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.99999999999991
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+179.9999999999999
+ 21
+228.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.0
+ 20
+413.851648
+ 30
+0.0
+ 11
+179.99999999999991
+ 21
+238.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.0
+ 20
+413.851648
+ 30
+0.0
+ 11
+180.0
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.99999999999983
+ 20
+53.85164800000007
+ 30
+0.0
+ 11
+179.99999999999983
+ 21
+53.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.26659817846709
+ 20
+422.0518534645989
+ 30
+0.0
+ 11
+90.00000000000004
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.26659817846709
+ 20
+413.851648
+ 30
+0.0
+ 11
+87.26659817846709
+ 21
+422.0518534645989
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.00000000000004
+ 20
+413.851648
+ 30
+0.0
+ 11
+87.26659817846709
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.99999999999999
+ 20
+238.85164800000004
+ 30
+0.0
+ 11
+90.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+89.99999999999999
+ 20
+228.85164800000004
+ 30
+0.0
+ 11
+89.99999999999999
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999999
+ 21
+228.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.99999999999994
+ 20
+53.85164800000002
+ 30
+0.0
+ 11
+89.99999999999994
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.00000000000004
+ 20
+413.851648
+ 30
+0.0
+ 11
+90.00000000000004
+ 21
+413.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.0
+ 20
+238.85164800000004
+ 30
+0.0
+ 11
+89.99999999999999
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+70.0
+ 20
+228.85164800000004
+ 30
+0.0
+ 11
+70.0
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.99999999999999
+ 20
+228.85164800000004
+ 30
+0.0
+ 11
+70.0
+ 21
+228.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+20.000000000000004
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+19.999999999999986
+ 21
+228.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+19.999999999999986
+ 20
+228.85164800000007
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+228.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+20.000000000000004
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+70.0
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+20.000000000000004
+ 20
+228.85164800000007
+ 30
+0.0
+ 11
+0.0
+ 21
+228.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+20.000000000000004
+ 21
+238.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+228.85164800000007
+ 30
+0.0
+ 11
+0.0
+ 21
+238.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.999999999999986
+ 20
+198.85164800000004
+ 30
+0.0
+ 11
+20.000000000000004
+ 21
+228.85164800000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+19.999999999999986
+ 20
+198.85164800000004
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+198.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.0
+ 20
+228.85164800000004
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+198.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.99999999999997
+ 20
+188.85164800000004
+ 30
+0.0
+ 11
+19.99999999999997
+ 21
+198.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.99999999999999
+ 20
+188.85164800000004
+ 30
+0.0
+ 11
+19.99999999999997
+ 21
+188.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.99999999999999
+ 20
+198.85164800000004
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+188.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+20.000000000000004
+ 20
+238.85164800000007
+ 30
+0.0
+ 11
+20.000000000000018
+ 21
+268.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+268.851648
+ 30
+0.0
+ 11
+70.0
+ 21
+238.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+70.00000000000001
+ 20
+268.851648
+ 30
+0.0
+ 11
+20.000000000000018
+ 21
+268.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+278.85164800000007
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+268.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+20.000000000000018
+ 20
+278.85164800000007
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+278.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+20.000000000000018
+ 20
+268.851648
+ 30
+0.0
+ 11
+20.000000000000018
+ 21
+278.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.4078680484794
+ 20
+37.35482121234264
+ 30
+0.0
+ 11
+99.13799662747847
+ 21
+39.65755243235416
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.13799662747847
+ 20
+39.65755243235416
+ 30
+0.0
+ 11
+98.78191171333691
+ 21
+39.30654882279893
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.78191171333691
+ 20
+39.30654882279893
+ 30
+0.0
+ 11
+101.05178313433784
+ 21
+37.00381760278743
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.05178313433784
+ 20
+37.00381760278743
+ 30
+0.0
+ 11
+101.4078680484794
+ 21
+37.35482121234264
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.94994863385027
+ 20
+48.384844356934146
+ 30
+0.0
+ 11
+89.31664954461674
+ 21
+48.384844356934146
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.31664954461674
+ 20
+48.384844356934146
+ 30
+0.0
+ 11
+89.31664954461674
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.31664954461674
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+87.94994863385027
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.13799662747857
+ 20
+428.04574356764596
+ 30
+0.0
+ 11
+101.40786804847951
+ 21
+430.34847478765744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.40786804847951
+ 20
+430.34847478765744
+ 30
+0.0
+ 11
+101.05178313433795
+ 21
+430.69947839721266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.05178313433795
+ 20
+430.69947839721266
+ 30
+0.0
+ 11
+98.781911713337
+ 21
+428.39674717720106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.781911713337
+ 20
+428.39674717720106
+ 30
+0.0
+ 11
+99.13799662747857
+ 21
+428.04574356764596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.5921319515206
+ 20
+430.34847478765744
+ 30
+0.0
+ 11
+170.86200337252149
+ 21
+428.04574356764596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.86200337252149
+ 20
+428.04574356764596
+ 30
+0.0
+ 11
+171.2180882866631
+ 21
+428.39674717720106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+171.2180882866631
+ 20
+428.39674717720106
+ 30
+0.0
+ 11
+168.94821686566212
+ 21
+430.69947839721266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.94821686566212
+ 20
+430.69947839721266
+ 30
+0.0
+ 11
+168.5921319515206
+ 21
+430.34847478765744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+182.05005136614972
+ 20
+419.31845164306594
+ 30
+0.0
+ 11
+180.68335045538328
+ 21
+419.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.68335045538328
+ 20
+419.31845164306594
+ 30
+0.0
+ 11
+180.68335045538328
+ 21
+416.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.68335045538328
+ 20
+416.585049821533
+ 30
+0.0
+ 11
+182.05005136614972
+ 21
+416.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.8620033725213
+ 20
+39.657552432354215
+ 30
+0.0
+ 11
+168.59213195152032
+ 21
+37.354821212342706
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.59213195152032
+ 20
+37.354821212342706
+ 30
+0.0
+ 11
+168.94821686566192
+ 21
+37.00381760278748
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.94821686566192
+ 20
+37.00381760278748
+ 30
+0.0
+ 11
+171.21808828666286
+ 21
+39.306548822798995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+171.21808828666286
+ 20
+39.306548822798995
+ 30
+0.0
+ 11
+170.8620033725213
+ 21
+39.657552432354215
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+182.05005136614952
+ 20
+51.11824617846714
+ 30
+0.0
+ 11
+180.68335045538302
+ 21
+51.11824617846714
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.68335045538302
+ 20
+51.11824617846714
+ 30
+0.0
+ 11
+180.68335045538302
+ 21
+48.3848443569342
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.68335045538302
+ 20
+48.3848443569342
+ 30
+0.0
+ 11
+182.05005136614952
+ 21
+48.3848443569342
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.9999999999999
+ 20
+235.76831466666673
+ 30
+0.0
+ 11
+175.9999999999999
+ 21
+231.9349813333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.9999999999999
+ 20
+231.9349813333334
+ 30
+0.0
+ 11
+176.49999999999991
+ 21
+231.9349813333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.49999999999991
+ 20
+231.9349813333334
+ 30
+0.0
+ 11
+176.49999999999991
+ 21
+235.76831466666673
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.49999999999991
+ 20
+235.76831466666673
+ 30
+0.0
+ 11
+175.9999999999999
+ 21
+235.76831466666673
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.94994863385035
+ 20
+416.585049821533
+ 30
+0.0
+ 11
+89.31664954461682
+ 21
+416.585049821533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.31664954461682
+ 20
+416.585049821533
+ 30
+0.0
+ 11
+89.31664954461682
+ 21
+419.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.31664954461682
+ 20
+419.31845164306594
+ 30
+0.0
+ 11
+87.94994863385035
+ 21
+419.31845164306594
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.2500000000000002
+ 20
+232.18498133333338
+ 30
+0.0
+ 11
+3.7500000000000004
+ 21
+232.18498133333338
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.2500000000000002
+ 20
+235.51831466666673
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+232.18498133333338
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+3.7500000000000004
+ 20
+235.51831466666673
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+235.51831466666673
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.999999999999986
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+40.999999999999986
+ 21
+199.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.999999999999986
+ 20
+199.851648
+ 30
+0.0
+ 11
+48.999999999999986
+ 21
+199.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.999999999999986
+ 20
+199.851648
+ 30
+0.0
+ 11
+48.999999999999986
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.999999999999986
+ 20
+207.85164800000004
+ 30
+0.0
+ 11
+40.999999999999986
+ 21
+207.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.5833333333333
+ 20
+196.60164800000004
+ 30
+0.0
+ 11
+36.41666666666664
+ 21
+196.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.41666666666664
+ 20
+196.60164800000004
+ 30
+0.0
+ 11
+36.41666666666664
+ 21
+196.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.41666666666664
+ 20
+196.10164800000004
+ 30
+0.0
+ 11
+53.5833333333333
+ 21
+196.10164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.5833333333333
+ 20
+196.10164800000004
+ 30
+0.0
+ 11
+53.5833333333333
+ 21
+196.60164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.0
+ 20
+267.85164800000007
+ 30
+0.0
+ 11
+41.0
+ 21
+259.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.0
+ 20
+259.851648
+ 30
+0.0
+ 11
+49.00000000000001
+ 21
+259.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.00000000000001
+ 20
+259.851648
+ 30
+0.0
+ 11
+49.00000000000001
+ 21
+267.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.00000000000001
+ 20
+267.85164800000007
+ 30
+0.0
+ 11
+41.0
+ 21
+267.85164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.66666666666669
+ 20
+276.351648
+ 30
+0.0
+ 11
+31.66666666666669
+ 21
+276.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.66666666666669
+ 20
+276.351648
+ 30
+0.0
+ 11
+36.66666666666669
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.66666666666669
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+53.33333333333335
+ 21
+271.35164800000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.33333333333335
+ 20
+271.35164800000007
+ 30
+0.0
+ 11
+58.33333333333335
+ 21
+276.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.33333333333335
+ 20
+276.351648
+ 30
+0.0
+ 11
+53.33333333333335
+ 21
+276.351648
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithDCMount/tree.png b/rocolib/builders/output/BoatWithDCMount/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..25a59010ae40453e568ae87762be96cec6b5e54c
Binary files /dev/null and b/rocolib/builders/output/BoatWithDCMount/tree.png differ
diff --git a/rocolib/builders/output/BoatWithManyDCMounts/graph-anim.svg b/rocolib/builders/output/BoatWithManyDCMounts/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..70e3686f2166644f11e8c13cfd1a54401861717e
--- /dev/null
+++ b/rocolib/builders/output/BoatWithManyDCMounts/graph-anim.svg
@@ -0,0 +1,787 @@
+<?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="576.777244mm" version="1.1" viewBox="0.000000 0.000000 974.355061 576.777244" width="974.355061mm">
+  <defs/>
+  <line stroke="#000000" x1="216.02325267042636" x2="186.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="216.02325267042636" x2="216.02325267042636" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="186.0232526704264" x2="216.02325267042636" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="186.0232526704264" x2="186.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="216.02325267042636" x2="226.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="226.0232526704264" x2="226.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="226.0232526704264" x2="216.02325267042636" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="226.0232526704264" x2="226.0232526704264" y1="90.50000000000001" y2="20.5"/>
+  <line stroke="#000000" x1="216.02325267042636" x2="216.02325267042636" y1="20.5" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="216.02325267042636" x2="216.02325267042636" y1="14.5" y2="20.5"/>
+  <line stroke="#000000" x1="226.0232526704264" x2="216.02325267042636" y1="14.5" y2="14.5"/>
+  <line stroke="#000000" x1="226.0232526704264" x2="226.0232526704264" y1="20.5" y2="14.5"/>
+  <line stroke="#000000" x1="256.0232526704264" x2="226.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="256.0232526704264" x2="256.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="226.0232526704264" x2="256.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="256.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="266.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="256.0232526704264" x2="266.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="216.02325267042636" x2="216.02325267042636" y1="180.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="226.0232526704264" x2="226.0232526704264" y1="250.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="126.02325267042639" x2="86.02325267042637" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="176.0232526704264" x2="136.02325267042636" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="216.02325267042636" x2="176.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="226.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="266.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042637" x2="86.02325267042637" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="126.02325267042639" x2="126.02325267042639" y1="180.50000000000003" y2="250.50000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="136.02325267042636" x2="126.02325267042639" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="136.02325267042636" x2="136.02325267042636" y1="250.50000000000003" y2="180.50000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="126.02325267042639" x2="136.02325267042636" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="136.02325267042636" x2="136.02325267042636" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="126.02325267042639" x2="126.02325267042639" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="136.02325267042636" x2="136.02325267042636" y1="90.50000000000001" y2="20.5"/>
+  <line stroke="#000000" x1="126.02325267042639" x2="126.02325267042639" y1="20.5" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="126.02325267042639" x2="126.02325267042639" y1="14.5" y2="20.5"/>
+  <line stroke="#000000" x1="136.02325267042636" x2="126.02325267042639" y1="14.5" y2="14.5"/>
+  <line stroke="#000000" x1="136.02325267042636" x2="136.02325267042636" y1="20.5" y2="14.5"/>
+  <line stroke="#000000" x1="166.02325267042636" x2="136.02325267042636" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="166.02325267042636" x2="166.02325267042636" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="136.02325267042636" x2="166.02325267042636" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="176.0232526704264" x2="166.02325267042636" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="176.0232526704264" x2="176.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="166.02325267042636" x2="176.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="126.02325267042639" x2="96.02325267042637" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="96.02325267042637" x2="126.02325267042639" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="96.02325267042637" x2="96.02325267042637" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="86.02325267042637" x2="96.02325267042637" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042637" x2="86.02325267042637" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="96.02325267042637" x2="86.02325267042637" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="388.0232526704264" x2="327.02325267042636" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="568.0232526704264" x2="568.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042637" x2="86.02325267042637" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="266.0232526704264" y1="240.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="327.02325267042636" x2="266.0232526704264" y1="240.50000000000003" y2="240.50000000000003"/>
+  <line stroke="#000000" x1="327.02325267042636" x2="327.02325267042636" y1="250.50000000000003" y2="240.50000000000003"/>
+  <line stroke="#000000" x1="428.0232526704264" x2="388.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="478.0232526704264" x2="438.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="518.0232526704265" x2="478.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="568.0232526704264" x2="528.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="568.0232526704264" x2="568.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="388.0232526704264" x2="388.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="428.0232526704264" x2="428.0232526704264" y1="180.50000000000003" y2="250.50000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="438.0232526704264" x2="428.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="438.0232526704264" x2="438.0232526704264" y1="250.50000000000003" y2="180.50000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="428.0232526704264" x2="438.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="438.0232526704264" x2="438.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="428.0232526704264" x2="428.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="438.0232526704264" x2="438.0232526704264" y1="90.50000000000001" y2="20.5"/>
+  <line stroke="#000000" x1="428.0232526704264" x2="428.0232526704264" y1="20.5" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="428.0232526704264" x2="428.0232526704264" y1="14.5" y2="20.5"/>
+  <line stroke="#000000" x1="438.0232526704264" x2="428.0232526704264" y1="14.5" y2="14.5"/>
+  <line stroke="#000000" x1="438.0232526704264" x2="438.0232526704264" y1="20.5" y2="14.5"/>
+  <line stroke="#000000" x1="468.0232526704264" x2="438.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="468.0232526704264" x2="468.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="438.0232526704264" x2="468.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="478.0232526704264" x2="468.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="478.0232526704264" x2="478.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="468.0232526704264" x2="478.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="428.0232526704264" x2="398.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="398.0232526704264" x2="428.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="398.0232526704264" x2="398.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="388.0232526704264" x2="398.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="388.0232526704264" x2="388.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="398.0232526704264" x2="388.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="518.0232526704265" x2="518.0232526704265" y1="180.50000000000003" y2="250.50000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="528.0232526704264" x2="518.0232526704265" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="528.0232526704264" x2="528.0232526704264" y1="250.50000000000003" y2="180.50000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="518.0232526704265" x2="528.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="528.0232526704264" x2="528.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="518.0232526704265" x2="518.0232526704265" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="528.0232526704264" x2="528.0232526704264" y1="90.50000000000001" y2="20.5"/>
+  <line stroke="#000000" x1="518.0232526704265" x2="518.0232526704265" y1="20.5" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="518.0232526704265" x2="518.0232526704265" y1="14.5" y2="20.5"/>
+  <line stroke="#000000" x1="528.0232526704264" x2="518.0232526704265" y1="14.5" y2="14.5"/>
+  <line stroke="#000000" x1="528.0232526704264" x2="528.0232526704264" y1="20.5" y2="14.5"/>
+  <line stroke="#000000" x1="558.0232526704264" x2="528.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="558.0232526704264" x2="558.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="528.0232526704264" x2="558.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="568.0232526704264" x2="558.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="568.0232526704264" x2="568.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="558.0232526704264" x2="568.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="518.0232526704265" x2="488.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="488.0232526704264" x2="518.0232526704265" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="488.0232526704264" x2="488.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="478.0232526704264" x2="488.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="478.0232526704264" x2="478.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="488.0232526704264" x2="478.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="86.02325267042637" x2="568.0232526704264" y1="320.50000000000006" y2="320.50000000000006"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="86.02325267042637" x2="86.02325267042637" y1="250.50000000000003" y2="320.50000000000006"/>
+  <line opacity="1.0" stroke="#ff0000" x1="33.508881852264786" x2="86.02325267042637" y1="250.50000000000003" y2="320.50000000000006"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="33.508881852264786" x2="86.02325267042637" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="33.508881852264786" x2="18.818104996527182" y1="250.50000000000003" y2="300.9176577976636"/>
+  <line opacity="1.0" stroke="#0000ff" x1="18.818104996527182" x2="86.02325267042637" y1="300.9176577976636" y2="320.50000000000006"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="5.684341886080803e-14" x2="86.02325267042637" y1="365.5" y2="320.50000000000006"/>
+  <line stroke="#000000" x1="4.127328140789616" x2="5.684341886080803e-14" y1="351.33531559532713" y2="365.5"/>
+  <line stroke="#000000" x1="18.818104996527182" x2="4.127328140789616" y1="300.9176577976636" y2="351.33531559532713"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="86.02325267042637" x2="86.02325267042634" y1="320.50000000000006" y2="365.50000000000006"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="86.02325267042634" x2="86.02325267042632" y1="365.50000000000006" y2="410.50000000000006"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="2.8421709430404014e-14" x2="86.02325267042632" y1="365.5" y2="410.50000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="86.02325267042632" x2="568.0232526704265" y1="410.50000000000006" y2="410.50000000000034"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="568.0232526704265" x2="568.0232526704265" y1="365.50000000000034" y2="320.50000000000034"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="568.0232526704265" x2="568.0232526704265" y1="410.50000000000034" y2="365.50000000000034"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="654.0465053408527" x2="568.0232526704265" y1="365.5000000000004" y2="320.50000000000034"/>
+  <line stroke="#000000" x1="649.9191772000632" x2="635.2284003443256" y1="351.33531559532753" y2="300.91765779766394"/>
+  <line stroke="#000000" x1="654.0465053408527" x2="649.9191772000632" y1="365.5000000000004" y2="351.33531559532753"/>
+  <line opacity="1.0" stroke="#0000ff" x1="568.0232526704265" x2="635.2284003443256" y1="320.50000000000034" y2="300.91765779766394"/>
+  <line opacity="1.0" stroke="#ff0000" x1="568.0232526704265" x2="620.5376234885883" y1="320.50000000000034" y2="250.50000000000037"/>
+  <line stroke="#000000" x1="635.2284003443257" x2="620.5376234885883" y1="300.917657797664" y2="250.50000000000037"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="568.0232526704265" x2="620.5376234885883" y1="250.5000000000003" y2="250.50000000000037"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="568.0232526704265" x2="568.0232526704265" y1="320.50000000000034" y2="250.5000000000003"/>
+  <line stroke="#000000" x1="568.0232526704266" x2="568.0232526704266" y1="232.99520972727979" y2="250.5000000000003"/>
+  <line stroke="#000000" x1="620.5376234885883" x2="568.0232526704266" y1="232.99520972727984" y2="232.99520972727979"/>
+  <line stroke="#000000" x1="620.5376234885883" x2="620.5376234885883" y1="250.50000000000037" y2="232.99520972727984"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="654.0465053408527" x2="568.0232526704264" y1="365.5000000000004" y2="410.50000000000034"/>
+  <line opacity="1.0" stroke="#0000ff" x1="635.2284003443256" x2="568.0232526704264" y1="430.0823422023368" y2="410.50000000000034"/>
+  <line stroke="#000000" x1="649.9191772000632" x2="654.0465053408527" y1="379.6646844046732" y2="365.5000000000004"/>
+  <line stroke="#000000" x1="635.2284003443256" x2="649.9191772000632" y1="430.0823422023368" y2="379.6646844046732"/>
+  <line stroke="#000000" x1="620.537623488588" x2="635.2284003443256" y1="480.50000000000034" y2="430.0823422023368"/>
+  <line opacity="1.0" stroke="#ff0000" x1="620.537623488588" x2="568.0232526704265" y1="480.50000000000034" y2="410.50000000000034"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="568.0232526704265" x2="568.0232526704265" y1="480.50000000000034" y2="410.50000000000034"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="620.537623488588" x2="568.0232526704265" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="86.02325267042633" x2="86.02325267042632" y1="410.5000000000003" y2="480.5000000000003"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="86.02325267042632" x2="33.50888185226472" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line opacity="1.0" stroke="#ff0000" x1="86.02325267042633" x2="33.50888185226472" y1="410.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="86.02325267042632" x2="86.02325267042632" y1="498.0047902727208" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="33.50888185226472" x2="86.02325267042632" y1="498.0047902727208" y2="498.0047902727208"/>
+  <line stroke="#000000" x1="33.50888185226472" x2="33.50888185226472" y1="480.5000000000003" y2="498.0047902727208"/>
+  <line opacity="1.0" stroke="#0000ff" x1="86.02325267042633" x2="18.818104996527126" y1="410.5000000000003" y2="430.08234220233675"/>
+  <line stroke="#000000" x1="18.818104996527126" x2="33.50888185226472" y1="430.08234220233675" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="4.127328140789559" x2="18.818104996527126" y1="379.6646844046731" y2="430.0823422023367"/>
+  <line stroke="#000000" x1="0.0" x2="4.127328140789559" y1="365.5000000000003" y2="379.6646844046731"/>
+  <line stroke="#000000" x1="327.02325267042636" x2="388.0232526704264" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="86.02325267042632" x2="86.02325267042632" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="568.0232526704265" x2="568.0232526704265" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="528.0232526704265" x2="568.0232526704265" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="518.0232526704266" x2="528.0232526704265" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="478.0232526704265" x2="518.0232526704266" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="438.0232526704264" x2="478.0232526704265" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="428.0232526704264" x2="438.0232526704264" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="388.0232526704264" x2="428.0232526704264" y1="480.5000000000003" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="388.0232526704264" x2="388.0232526704264" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="568.0232526704265" x2="568.0232526704265" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line opacity="0.25" stroke="#0000ff" x1="327.02325267042636" x2="266.0232526704264" y1="516.6386219991855" y2="516.6386219991855"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="266.0232526704264" y1="480.5000000000003" y2="516.6386219991855"/>
+  <line stroke="#000000" x1="327.02325267042636" x2="327.02325267042636" y1="516.6386219991855" y2="480.5000000000003"/>
+  <line opacity="0.25" stroke="#0000ff" x1="266.0232526704264" x2="327.02325267042636" y1="540.6386219991855" y2="540.6386219991855"/>
+  <line opacity="0.5" stroke="#0000ff" x1="266.0232526704264" x2="266.0232526704264" y1="540.6386219991855" y2="516.6386219991855"/>
+  <line stroke="#000000" x1="327.02325267042636" x2="327.02325267042636" y1="576.7772439983707" y2="540.6386219991855"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="327.02325267042636" y1="576.7772439983707" y2="576.7772439983707"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="266.0232526704264" y1="540.6386219991855" y2="576.7772439983707"/>
+  <line stroke="#000000" x1="256.02325267042636" x2="266.0232526704264" y1="540.6386219991855" y2="540.6386219991855"/>
+  <line stroke="#000000" x1="256.0232526704264" x2="256.02325267042636" y1="516.6386219991855" y2="540.6386219991855"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="256.0232526704264" y1="516.6386219991855" y2="516.6386219991855"/>
+  <line stroke="#000000" x1="337.02325267042636" x2="327.02325267042636" y1="516.6386219991855" y2="516.6386219991855"/>
+  <line stroke="#000000" x1="337.02325267042636" x2="337.02325267042636" y1="540.6386219991855" y2="516.6386219991855"/>
+  <line stroke="#000000" x1="327.02325267042636" x2="337.02325267042636" y1="540.6386219991855" y2="540.6386219991855"/>
+  <line stroke="#000000" x1="226.0232526704264" x2="266.0232526704264" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="216.02325267042636" x2="226.0232526704264" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="176.0232526704264" x2="216.02325267042636" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="136.02325267042633" x2="176.0232526704264" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="126.02325267042634" x2="136.02325267042633" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="86.02325267042634" x2="126.02325267042634" y1="480.5000000000002" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="480.5000000000002" y2="480.5000000000002"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="266.0232526704264" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="620.537623488588" x2="620.537623488588" y1="498.00479027272087" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="568.0232526704265" x2="620.537623488588" y1="498.00479027272087" y2="498.00479027272087"/>
+  <line stroke="#000000" x1="568.0232526704265" x2="568.0232526704265" y1="480.50000000000034" y2="498.00479027272087"/>
+  <line stroke="#000000" x1="33.508881852264786" x2="33.508881852264786" y1="232.9952097272795" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042637" x2="33.508881852264786" y1="232.9952097272795" y2="232.9952097272795"/>
+  <line stroke="#000000" x1="86.02325267042637" x2="86.02325267042637" y1="250.50000000000003" y2="232.9952097272795"/>
+  <line stroke="#000000" x1="176.0232526704264" x2="186.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="176.0232526704264" x2="176.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="186.0232526704264" x2="176.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#888888" x1="187.0232526704264" x2="195.0232526704264" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="195.0232526704264" x2="195.0232526704264" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="195.0232526704264" x2="187.0232526704264" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="187.0232526704264" x2="187.0232526704264" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="222.68991933709302" x2="222.68991933709302" y1="16.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="222.68991933709302" x2="219.35658600375973" y1="19.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="219.35658600375973" x2="219.35658600375973" y1="19.000000000000004" y2="16.000000000000004"/>
+  <line stroke="#888888" x1="247.0232526704264" x2="255.0232526704264" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="255.0232526704264" x2="255.0232526704264" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="255.0232526704264" x2="247.0232526704264" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="247.0232526704264" x2="247.0232526704264" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="258.2732526704264" x2="258.2732526704264" y1="123.47727272727273" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="258.2732526704264" x2="258.7732526704264" y1="106.61363636363636" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="258.7732526704264" x2="258.7732526704264" y1="106.61363636363636" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="258.7732526704264" x2="258.2732526704264" y1="123.47727272727273" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="258.2732526704264" x2="258.2732526704264" y1="164.38636363636363" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="258.2732526704264" x2="258.7732526704264" y1="147.52272727272728" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="258.7732526704264" x2="258.7732526704264" y1="147.52272727272728" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="258.7732526704264" x2="258.2732526704264" y1="164.38636363636363" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="132.68991933709307" x2="132.68991933709307" y1="16.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="132.68991933709307" x2="129.3565860037597" y1="19.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="129.3565860037597" x2="129.3565860037597" y1="19.000000000000004" y2="16.000000000000004"/>
+  <line stroke="#888888" x1="157.02325267042636" x2="165.0232526704264" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="165.0232526704264" x2="165.0232526704264" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="165.0232526704264" x2="157.02325267042636" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="157.02325267042636" x2="157.02325267042636" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="168.27325267042636" x2="168.27325267042636" y1="123.47727272727273" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="168.27325267042636" x2="168.7732526704264" y1="106.61363636363636" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="168.7732526704264" x2="168.7732526704264" y1="106.61363636363636" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="168.7732526704264" x2="168.27325267042636" y1="123.47727272727273" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="168.27325267042636" x2="168.27325267042636" y1="164.38636363636363" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="168.27325267042636" x2="168.7732526704264" y1="147.52272727272728" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="168.7732526704264" x2="168.7732526704264" y1="147.52272727272728" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="168.7732526704264" x2="168.27325267042636" y1="164.38636363636363" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="97.02325267042637" x2="105.02325267042637" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="105.02325267042637" x2="105.02325267042637" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="105.02325267042637" x2="97.02325267042637" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="97.02325267042637" x2="97.02325267042637" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="88.52325267042636" x2="88.52325267042636" y1="106.86363636363637" y2="101.86363636363637"/>
+  <line stroke="#888888" x1="88.52325267042636" x2="93.52325267042637" y1="101.86363636363637" y2="106.86363636363637"/>
+  <line stroke="#888888" x1="93.52325267042637" x2="93.52325267042637" y1="106.86363636363637" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="93.52325267042637" x2="88.52325267042636" y1="123.22727272727273" y2="128.22727272727272"/>
+  <line stroke="#888888" x1="88.52325267042636" x2="88.52325267042636" y1="128.22727272727272" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="88.52325267042636" x2="88.52325267042636" y1="147.77272727272728" y2="142.77272727272728"/>
+  <line stroke="#888888" x1="88.52325267042636" x2="93.52325267042637" y1="142.77272727272728" y2="147.77272727272728"/>
+  <line stroke="#888888" x1="93.52325267042637" x2="93.52325267042637" y1="147.77272727272728" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="93.52325267042637" x2="88.52325267042636" y1="164.13636363636363" y2="169.13636363636363"/>
+  <line stroke="#888888" x1="88.52325267042636" x2="88.52325267042636" y1="169.13636363636363" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="349.4550708522446" x2="337.86416176133554" y1="258.25000000000006" y2="258.25000000000006"/>
+  <line stroke="#888888" x1="337.86416176133554" x2="337.86416176133554" y1="258.25000000000006" y2="257.75"/>
+  <line stroke="#888888" x1="337.86416176133554" x2="349.4550708522446" y1="257.75" y2="257.75"/>
+  <line stroke="#888888" x1="349.4550708522446" x2="349.4550708522446" y1="257.75" y2="258.25000000000006"/>
+  <line stroke="#888888" x1="377.18234357951735" x2="365.59143448860823" y1="258.25000000000006" y2="258.25000000000006"/>
+  <line stroke="#888888" x1="365.59143448860823" x2="365.59143448860823" y1="258.25000000000006" y2="257.75"/>
+  <line stroke="#888888" x1="365.59143448860823" x2="377.18234357951735" y1="257.75" y2="257.75"/>
+  <line stroke="#888888" x1="377.18234357951735" x2="377.18234357951735" y1="257.75" y2="258.25000000000006"/>
+  <line stroke="#888888" x1="315.9323435795173" x2="315.9323435795173" y1="243.00000000000003" y2="248.00000000000006"/>
+  <line stroke="#888888" x1="315.9323435795173" x2="304.84143448860823" y1="248.00000000000006" y2="248.00000000000006"/>
+  <line stroke="#888888" x1="304.84143448860823" x2="304.84143448860823" y1="248.00000000000006" y2="243.00000000000003"/>
+  <line stroke="#888888" x1="288.20507085224455" x2="288.20507085224455" y1="243.00000000000003" y2="248.00000000000006"/>
+  <line stroke="#888888" x1="288.20507085224455" x2="277.11416176133554" y1="248.00000000000006" y2="248.00000000000006"/>
+  <line stroke="#888888" x1="277.11416176133554" x2="277.11416176133554" y1="248.00000000000006" y2="243.00000000000003"/>
+  <line stroke="#888888" x1="434.68991933709304" x2="434.68991933709304" y1="16.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="434.68991933709304" x2="431.3565860037598" y1="19.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="431.3565860037598" x2="431.3565860037598" y1="19.000000000000004" y2="16.000000000000004"/>
+  <line stroke="#888888" x1="459.0232526704264" x2="467.0232526704264" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="467.0232526704264" x2="467.0232526704264" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="467.0232526704264" x2="459.0232526704264" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="459.0232526704264" x2="459.0232526704264" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="470.2732526704264" x2="470.2732526704264" y1="123.47727272727273" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="470.2732526704264" x2="470.7732526704264" y1="106.61363636363636" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="470.7732526704264" x2="470.7732526704264" y1="106.61363636363636" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="470.7732526704264" x2="470.2732526704264" y1="123.47727272727273" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="470.2732526704264" x2="470.2732526704264" y1="164.38636363636363" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="470.2732526704264" x2="470.7732526704264" y1="147.52272727272728" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="470.7732526704264" x2="470.7732526704264" y1="147.52272727272728" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="470.7732526704264" x2="470.2732526704264" y1="164.38636363636363" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="399.0232526704264" x2="407.0232526704264" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="407.0232526704264" x2="407.0232526704264" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="407.0232526704264" x2="399.0232526704264" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="399.0232526704264" x2="399.0232526704264" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="390.5232526704264" x2="390.5232526704264" y1="106.86363636363637" y2="101.86363636363637"/>
+  <line stroke="#888888" x1="390.5232526704264" x2="395.52325267042636" y1="101.86363636363637" y2="106.86363636363637"/>
+  <line stroke="#888888" x1="395.52325267042636" x2="395.52325267042636" y1="106.86363636363637" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="395.52325267042636" x2="390.5232526704264" y1="123.22727272727273" y2="128.22727272727272"/>
+  <line stroke="#888888" x1="390.5232526704264" x2="390.5232526704264" y1="128.22727272727272" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="390.5232526704264" x2="390.5232526704264" y1="147.77272727272728" y2="142.77272727272728"/>
+  <line stroke="#888888" x1="390.5232526704264" x2="395.52325267042636" y1="142.77272727272728" y2="147.77272727272728"/>
+  <line stroke="#888888" x1="395.52325267042636" x2="395.52325267042636" y1="147.77272727272728" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="395.52325267042636" x2="390.5232526704264" y1="164.13636363636363" y2="169.13636363636363"/>
+  <line stroke="#888888" x1="390.5232526704264" x2="390.5232526704264" y1="169.13636363636363" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="524.689919337093" x2="524.689919337093" y1="16.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="524.689919337093" x2="521.3565860037598" y1="19.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="521.3565860037598" x2="521.3565860037598" y1="19.000000000000004" y2="16.000000000000004"/>
+  <line stroke="#888888" x1="549.0232526704264" x2="557.0232526704265" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="557.0232526704265" x2="557.0232526704265" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="557.0232526704265" x2="549.0232526704264" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="549.0232526704264" x2="549.0232526704264" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="560.2732526704265" x2="560.2732526704265" y1="123.47727272727273" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="560.2732526704265" x2="560.7732526704265" y1="106.61363636363636" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="560.7732526704265" x2="560.7732526704265" y1="106.61363636363636" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="560.7732526704265" x2="560.2732526704265" y1="123.47727272727273" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="560.2732526704265" x2="560.2732526704265" y1="164.38636363636363" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="560.2732526704265" x2="560.7732526704265" y1="147.52272727272728" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="560.7732526704265" x2="560.7732526704265" y1="147.52272727272728" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="560.7732526704265" x2="560.2732526704265" y1="164.38636363636363" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="489.0232526704264" x2="497.0232526704264" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="497.0232526704264" x2="497.0232526704264" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="497.0232526704264" x2="489.0232526704264" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="489.0232526704264" x2="489.0232526704264" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="480.5232526704264" x2="480.5232526704264" y1="106.86363636363637" y2="101.86363636363637"/>
+  <line stroke="#888888" x1="480.5232526704264" x2="485.5232526704264" y1="101.86363636363637" y2="106.86363636363637"/>
+  <line stroke="#888888" x1="485.5232526704264" x2="485.5232526704264" y1="106.86363636363637" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="485.5232526704264" x2="480.5232526704264" y1="123.22727272727273" y2="128.22727272727272"/>
+  <line stroke="#888888" x1="480.5232526704264" x2="480.5232526704264" y1="128.22727272727272" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="480.5232526704264" x2="480.5232526704264" y1="147.77272727272728" y2="142.77272727272728"/>
+  <line stroke="#888888" x1="480.5232526704264" x2="485.5232526704264" y1="142.77272727272728" y2="147.77272727272728"/>
+  <line stroke="#888888" x1="485.5232526704264" x2="485.5232526704264" y1="147.77272727272728" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="485.5232526704264" x2="480.5232526704264" y1="164.13636363636363" y2="169.13636363636363"/>
+  <line stroke="#888888" x1="480.5232526704264" x2="480.5232526704264" y1="169.13636363636363" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="26.835549148350456" x2="21.79874965689743" y1="321.2261564960398" y2="338.5120791976936"/>
+  <line stroke="#888888" x1="21.79874965689743" x2="21.318712887798146" y1="338.5120791976936" y2="338.37220532481973"/>
+  <line stroke="#888888" x1="21.318712887798146" x2="26.35551237925117" y1="338.37220532481973" y2="321.08628262316597"/>
+  <line stroke="#888888" x1="26.35551237925117" x2="26.835549148350456" y1="321.08628262316597" y2="321.2261564960398"/>
+  <line stroke="#888888" x1="632.2477556839555" x2="627.2109561925024" y1="338.5120791976939" y2="321.22615649604006"/>
+  <line stroke="#888888" x1="627.2109561925024" x2="627.6909929616016" y1="321.22615649604006" y2="321.08628262316626"/>
+  <line stroke="#888888" x1="627.6909929616016" x2="632.7277924530547" y1="321.08628262316626" y2="338.37220532482"/>
+  <line stroke="#888888" x1="632.7277924530547" x2="632.2477556839555" y1="338.37220532482" y2="338.5120791976939"/>
+  <line stroke="#888888" x1="603.0328332158676" x2="603.0328332158676" y1="237.37140729545996" y2="246.12380243182022"/>
+  <line stroke="#888888" x1="603.0328332158676" x2="585.5280429431472" y1="246.12380243182022" y2="246.1238024318202"/>
+  <line stroke="#888888" x1="585.5280429431472" x2="585.5280429431472" y1="246.1238024318202" y2="237.37140729545993"/>
+  <line stroke="#888888" x1="627.2109561925023" x2="632.2477556839555" y1="409.7738435039606" y2="392.4879208023068"/>
+  <line stroke="#888888" x1="632.2477556839555" x2="632.7277924530547" y1="392.4879208023068" y2="392.62779467518067"/>
+  <line stroke="#888888" x1="632.7277924530547" x2="627.6909929616015" y1="392.62779467518067" y2="409.9137173768344"/>
+  <line stroke="#888888" x1="627.6909929616015" x2="627.2109561925023" y1="409.9137173768344" y2="409.7738435039606"/>
+  <line stroke="#888888" x1="51.013672124985256" x2="51.013672124985256" y1="493.62859270454067" y2="484.87619756818043"/>
+  <line stroke="#888888" x1="51.013672124985256" x2="68.51846239770579" y1="484.87619756818043" y2="484.87619756818043"/>
+  <line stroke="#888888" x1="68.51846239770579" x2="68.51846239770579" y1="484.87619756818043" y2="493.62859270454067"/>
+  <line stroke="#888888" x1="21.798749656897375" x2="26.8355491483504" y1="392.48792080230663" y2="409.7738435039605"/>
+  <line stroke="#888888" x1="26.8355491483504" x2="26.355512379251113" y1="409.7738435039605" y2="409.9137173768343"/>
+  <line stroke="#888888" x1="26.355512379251113" x2="21.318712887798085" y1="409.9137173768343" y2="392.62779467518044"/>
+  <line stroke="#888888" x1="21.318712887798085" x2="21.798749656897375" y1="392.62779467518044" y2="392.48792080230663"/>
+  <line stroke="#888888" x1="365.59143448860823" x2="377.18234357951735" y1="472.7500000000003" y2="472.7500000000003"/>
+  <line stroke="#888888" x1="377.18234357951735" x2="377.18234357951735" y1="472.7500000000003" y2="473.2500000000003"/>
+  <line stroke="#888888" x1="377.18234357951735" x2="365.59143448860823" y1="473.2500000000003" y2="473.2500000000003"/>
+  <line stroke="#888888" x1="365.59143448860823" x2="365.59143448860823" y1="473.2500000000003" y2="472.7500000000003"/>
+  <line stroke="#888888" x1="337.86416176133554" x2="349.4550708522446" y1="472.7500000000003" y2="472.7500000000003"/>
+  <line stroke="#888888" x1="349.4550708522446" x2="349.4550708522446" y1="472.7500000000003" y2="473.2500000000003"/>
+  <line stroke="#888888" x1="349.4550708522446" x2="337.86416176133554" y1="473.2500000000003" y2="473.2500000000003"/>
+  <line stroke="#888888" x1="337.86416176133554" x2="337.86416176133554" y1="473.2500000000003" y2="472.7500000000003"/>
+  <line stroke="#888888" x1="521.1065860037598" x2="524.9399193370932" y1="475.75000000000034" y2="475.75000000000034"/>
+  <line stroke="#888888" x1="524.9399193370932" x2="524.9399193370932" y1="475.75000000000034" y2="476.25000000000034"/>
+  <line stroke="#888888" x1="524.9399193370932" x2="521.1065860037598" y1="476.25000000000034" y2="476.25000000000034"/>
+  <line stroke="#888888" x1="521.1065860037598" x2="521.1065860037598" y1="476.25000000000034" y2="475.75000000000034"/>
+  <line stroke="#888888" x1="431.1065860037598" x2="434.9399193370931" y1="475.75000000000034" y2="475.75000000000034"/>
+  <line stroke="#888888" x1="434.9399193370931" x2="434.9399193370931" y1="475.75000000000034" y2="476.25000000000034"/>
+  <line stroke="#888888" x1="434.9399193370931" x2="431.1065860037598" y1="476.25000000000034" y2="476.25000000000034"/>
+  <line stroke="#888888" x1="431.1065860037598" x2="431.1065860037598" y1="476.25000000000034" y2="475.75000000000034"/>
+  <line stroke="#888888" x1="309.02325267042636" x2="298.0232526704264" y1="535.1386219991855" y2="535.1386219991855"/>
+  <line stroke="#888888" x1="298.0232526704264" x2="298.0232526704264" y1="535.1386219991855" y2="522.1386219991855"/>
+  <line stroke="#888888" x1="298.0232526704264" x2="309.02325267042636" y1="522.1386219991855" y2="522.1386219991855"/>
+  <line stroke="#888888" x1="309.02325267042636" x2="309.02325267042636" y1="522.1386219991855" y2="535.1386219991855"/>
+  <line stroke="#888888" x1="277.52325267042636" x2="271.5232526704264" y1="533.6386219991856" y2="533.6386219991856"/>
+  <line stroke="#888888" x1="271.5232526704264" x2="271.5232526704264" y1="533.6386219991856" y2="523.6386219991856"/>
+  <line stroke="#888888" x1="271.5232526704264" x2="277.52325267042636" y1="523.6386219991856" y2="523.6386219991856"/>
+  <line stroke="#888888" x1="277.52325267042636" x2="277.52325267042636" y1="523.6386219991856" y2="533.6386219991856"/>
+  <line stroke="#888888" x1="304.59143448860823" x2="316.1823435795173" y1="569.0272439983709" y2="569.0272439983709"/>
+  <line stroke="#888888" x1="316.1823435795173" x2="316.1823435795173" y1="569.0272439983709" y2="569.5272439983709"/>
+  <line stroke="#888888" x1="316.1823435795173" x2="304.59143448860823" y1="569.5272439983709" y2="569.5272439983709"/>
+  <line stroke="#888888" x1="304.59143448860823" x2="304.59143448860823" y1="569.5272439983709" y2="569.0272439983709"/>
+  <line stroke="#888888" x1="276.8641617613354" x2="288.4550708522445" y1="569.027243998371" y2="569.0272439983709"/>
+  <line stroke="#888888" x1="288.4550708522445" x2="288.4550708522445" y1="569.0272439983709" y2="569.5272439983709"/>
+  <line stroke="#888888" x1="288.4550708522445" x2="276.8641617613354" y1="569.5272439983709" y2="569.527243998371"/>
+  <line stroke="#888888" x1="276.8641617613354" x2="276.8641617613354" y1="569.527243998371" y2="569.027243998371"/>
+  <line stroke="#888888" x1="258.5232526704264" x2="263.5232526704264" y1="524.6386219991856" y2="524.6386219991856"/>
+  <line stroke="#888888" x1="263.5232526704264" x2="263.5232526704264" y1="524.6386219991856" y2="532.6386219991856"/>
+  <line stroke="#888888" x1="263.5232526704264" x2="258.5232526704264" y1="532.6386219991856" y2="532.6386219991856"/>
+  <line stroke="#888888" x1="334.5232526704264" x2="329.5232526704264" y1="532.6386219991856" y2="532.6386219991856"/>
+  <line stroke="#888888" x1="329.5232526704264" x2="329.5232526704264" y1="532.6386219991856" y2="524.6386219991856"/>
+  <line stroke="#888888" x1="329.5232526704264" x2="334.5232526704264" y1="524.6386219991856" y2="524.6386219991856"/>
+  <line stroke="#888888" x1="219.1065860037597" x2="222.93991933709304" y1="475.7500000000003" y2="475.7500000000003"/>
+  <line stroke="#888888" x1="222.93991933709304" x2="222.93991933709304" y1="475.7500000000003" y2="476.2500000000003"/>
+  <line stroke="#888888" x1="222.93991933709304" x2="219.1065860037597" y1="476.2500000000003" y2="476.2500000000003"/>
+  <line stroke="#888888" x1="219.1065860037597" x2="219.1065860037597" y1="476.2500000000003" y2="475.7500000000003"/>
+  <line stroke="#888888" x1="129.1065860037597" x2="132.93991933709302" y1="475.7500000000003" y2="475.7500000000003"/>
+  <line stroke="#888888" x1="132.93991933709302" x2="132.93991933709302" y1="475.7500000000003" y2="476.2500000000003"/>
+  <line stroke="#888888" x1="132.93991933709302" x2="129.1065860037597" y1="476.2500000000003" y2="476.2500000000003"/>
+  <line stroke="#888888" x1="129.1065860037597" x2="129.1065860037597" y1="476.2500000000003" y2="475.7500000000003"/>
+  <line stroke="#888888" x1="585.528042943147" x2="585.528042943147" y1="493.6285927045408" y2="484.8761975681805"/>
+  <line stroke="#888888" x1="585.528042943147" x2="603.0328332158675" y1="484.8761975681805" y2="484.8761975681805"/>
+  <line stroke="#888888" x1="603.0328332158675" x2="603.0328332158675" y1="484.8761975681805" y2="493.6285927045408"/>
+  <line stroke="#888888" x1="68.51846239770585" x2="68.51846239770585" y1="237.37140729545965" y2="246.12380243181988"/>
+  <line stroke="#888888" x1="68.51846239770585" x2="51.01367212498531" y1="246.12380243181988" y2="246.12380243181988"/>
+  <line stroke="#888888" x1="51.01367212498531" x2="51.01367212498531" y1="246.12380243181988" y2="237.37140729545965"/>
+  <line stroke="#888888" x1="178.5232526704264" x2="178.5232526704264" y1="106.86363636363637" y2="101.86363636363637"/>
+  <line stroke="#888888" x1="178.5232526704264" x2="183.5232526704264" y1="101.86363636363637" y2="106.86363636363637"/>
+  <line stroke="#888888" x1="183.5232526704264" x2="183.5232526704264" y1="106.86363636363637" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="183.5232526704264" x2="178.5232526704264" y1="123.22727272727273" y2="128.22727272727272"/>
+  <line stroke="#888888" x1="178.5232526704264" x2="178.5232526704264" y1="128.22727272727272" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="178.5232526704264" x2="178.5232526704264" y1="147.77272727272728" y2="142.77272727272728"/>
+  <line stroke="#888888" x1="178.5232526704264" x2="183.5232526704264" y1="142.77272727272728" y2="147.77272727272728"/>
+  <line stroke="#888888" x1="183.5232526704264" x2="183.5232526704264" y1="147.77272727272728" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="183.5232526704264" x2="178.5232526704264" y1="164.13636363636363" y2="169.13636363636363"/>
+  <line stroke="#888888" x1="178.5232526704264" x2="178.5232526704264" y1="169.13636363636363" y2="164.13636363636363"/>
+  <line stroke="#000000" x1="824.3550614105757" x2="762.7007833757143" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="762.7007833757143" x2="824.3550614105757" y1="166.0" y2="166.0"/>
+  <line opacity="0.25" stroke="#ff0000" x1="762.7007833757143" x2="762.7007833757143" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="834.3550614105757" x2="824.3550614105757" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="834.3550614105757" x2="834.3550614105757" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="824.3550614105757" x2="834.3550614105757" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="735.7007833757143" x2="762.7007833757143" y1="166.0" y2="166.0"/>
+  <line opacity="0.25" stroke="#ff0000" x1="735.7007833757143" x2="735.7007833757143" y1="105.00000000000001" y2="166.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="762.7007833757143" x2="735.7007833757143" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="674.0465053408527" x2="735.7007833757143" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="735.7007833757143" x2="674.0465053408527" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="664.0465053408527" x2="674.0465053408527" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="664.0465053408527" x2="664.0465053408527" y1="105.00000000000001" y2="166.0"/>
+  <line stroke="#000000" x1="674.0465053408527" x2="664.0465053408527" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="762.7007833757143" x2="762.7007833757143" y1="105.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="735.7007833757143" x2="735.7007833757143" y1="88.00000000000001" y2="105.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="762.7007833757143" x2="735.7007833757143" y1="88.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="762.7007833757143" x2="762.7007833757143" y1="88.00000000000001" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="735.7007833757143" x2="735.7007833757143" y1="27.000000000000004" y2="88.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="762.7007833757143" x2="735.7007833757143" y1="27.000000000000004" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="762.7007833757143" x2="762.7007833757143" y1="27.000000000000004" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="735.7007833757143" x2="735.7007833757143" y1="10.000000000000002" y2="27.000000000000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="735.7007833757143" x2="762.7007833757143" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="735.7007833757143" x2="735.7007833757143" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="762.7007833757143" x2="735.7007833757143" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="762.7007833757143" x2="762.7007833757143" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="831.8550614105757" x2="826.8550614105757" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="826.8550614105757" x2="826.8550614105757" y1="154.90909090909093" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="826.8550614105757" x2="831.8550614105757" y1="143.8181818181818" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="831.8550614105757" x2="826.8550614105757" y1="127.1818181818182" y2="127.1818181818182"/>
+  <line stroke="#888888" x1="826.8550614105757" x2="826.8550614105757" y1="127.1818181818182" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="826.8550614105757" x2="831.8550614105757" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="758.2007833757143" x2="758.2007833757143" y1="102.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="758.2007833757143" x2="740.2007833757143" y1="108.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="740.2007833757143" x2="740.2007833757143" y1="108.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="740.2007833757143" x2="758.2007833757143" y1="102.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="744.4507833757143" x2="753.9507833757143" y1="158.25000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="753.9507833757143" x2="753.9507833757143" y1="158.25000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="753.9507833757143" x2="744.4507833757143" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="744.4507833757143" x2="744.4507833757143" y1="158.75000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="666.5465053408528" x2="671.5465053408527" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="671.5465053408527" x2="671.5465053408527" y1="116.09090909090911" y2="127.18181818181822"/>
+  <line stroke="#888888" x1="671.5465053408527" x2="666.5465053408528" y1="127.18181818181822" y2="127.18181818181822"/>
+  <line stroke="#888888" x1="666.5465053408528" x2="671.5465053408527" y1="143.81818181818184" y2="143.81818181818184"/>
+  <line stroke="#888888" x1="671.5465053408527" x2="671.5465053408527" y1="143.81818181818184" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="671.5465053408527" x2="666.5465053408528" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="753.7007833757143" x2="753.7007833757143" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="753.7007833757143" x2="744.7007833757143" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="744.7007833757143" x2="744.7007833757143" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="853.3550614105757" x2="914.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="914.3550614105757" x2="914.3550614105757" y1="123.50000000000001" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="914.3550614105757" x2="853.3550614105757" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="853.3550614105757" x2="853.3550614105757" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="853.3550614105757" x2="853.3550614105757" y1="116.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="889.3550614105757" x2="853.3550614105757" y1="116.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="889.3550614105757" x2="889.3550614105757" y1="123.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="921.3550614105756" x2="914.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="921.3550614105756" x2="921.3550614105756" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="914.3550614105757" x2="921.3550614105756" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="914.3550614105757" x2="914.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="878.3550614105757" x2="914.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="878.3550614105757" x2="878.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="938.3550614105757" x2="914.3550614105757" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="938.3550614105757" x2="938.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="914.3550614105757" x2="938.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="974.3550614105757" x2="938.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="974.3550614105757" x2="974.3550614105757" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="938.3550614105757" x2="974.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="878.3550614105757" x2="854.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="854.3550614105757" x2="878.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="854.3550614105757" x2="854.3550614105757" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="844.3550614105757" x2="854.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="844.3550614105757" x2="844.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="854.3550614105757" x2="844.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="846.3550614105757" x2="853.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="846.3550614105757" x2="846.3550614105757" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#000000" x1="853.3550614105757" x2="846.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#888888" x1="877.3550614105757" x2="880.8550614105757" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="880.8550614105757" x2="877.3550614105757" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="877.3550614105757" x2="865.3550614105757" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="865.3550614105757" x2="861.8550614105757" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="861.8550614105757" x2="865.3550614105757" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="919.6050614105757" x2="916.1050614105757" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="916.1050614105757" x2="916.1050614105757" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="916.1050614105757" x2="919.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="891.4693471248614" x2="891.4693471248614" y1="202.25000000000003" y2="184.25"/>
+  <line stroke="#888888" x1="891.4693471248614" x2="912.04077569629" y1="184.25" y2="184.25"/>
+  <line stroke="#888888" x1="912.04077569629" x2="912.04077569629" y1="184.25" y2="202.25000000000003"/>
+  <line stroke="#888888" x1="912.04077569629" x2="891.4693471248614" y1="202.25000000000003" y2="202.25000000000003"/>
+  <line stroke="#888888" x1="914.8550614105757" x2="914.8550614105757" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="914.8550614105757" x2="917.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="917.8550614105757" x2="917.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="917.8550614105757" x2="914.8550614105757" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="934.8550614105757" x2="934.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="934.8550614105757" x2="937.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="937.8550614105757" x2="937.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="937.8550614105757" x2="934.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="930.6050614105757" x2="922.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="922.1050614105757" x2="922.1050614105757" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="922.1050614105757" x2="930.6050614105757" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="930.6050614105757" x2="930.6050614105757" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="922.1050614105757" x2="930.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="930.6050614105757" x2="930.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="930.6050614105757" x2="922.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="922.1050614105757" x2="922.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="943.9093471248614" x2="943.9093471248614" y1="204.02" y2="191.02"/>
+  <line stroke="#888888" x1="943.9093471248614" x2="964.4807756962899" y1="191.02" y2="191.02"/>
+  <line stroke="#888888" x1="964.4807756962899" x2="964.4807756962899" y1="191.02" y2="204.02"/>
+  <line stroke="#888888" x1="964.4807756962899" x2="943.9093471248614" y1="204.02" y2="204.02"/>
+  <line stroke="#888888" x1="962.6050614105756" x2="950.1050614105757" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="950.1050614105757" x2="950.1050614105757" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="950.1050614105757" x2="962.6050614105756" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="962.6050614105756" x2="962.6050614105756" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="966.6050614105757" x2="966.6050614105757" y1="169.93181818181822" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="966.6050614105757" x2="967.1050614105757" y1="158.3409090909091" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="967.1050614105757" x2="967.1050614105757" y1="158.3409090909091" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="967.1050614105757" x2="966.6050614105757" y1="169.93181818181822" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="966.6050614105757" x2="966.6050614105757" y1="197.65909090909093" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="966.6050614105757" x2="967.1050614105757" y1="186.06818181818184" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="967.1050614105757" x2="967.1050614105757" y1="186.06818181818184" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="967.1050614105757" x2="966.6050614105757" y1="197.65909090909093" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="854.8550614105757" x2="854.8550614105757" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="854.8550614105757" x2="857.8550614105756" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="857.8550614105756" x2="857.8550614105756" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="857.8550614105756" x2="854.8550614105757" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="874.8550614105757" x2="874.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="874.8550614105757" x2="877.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="877.8550614105757" x2="877.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="877.8550614105757" x2="874.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="870.6050614105757" x2="862.1050614105756" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="862.1050614105756" x2="862.1050614105756" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="862.1050614105756" x2="870.6050614105757" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="870.6050614105757" x2="870.6050614105757" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="862.1050614105756" x2="870.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="870.6050614105757" x2="870.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="870.6050614105757" x2="862.1050614105756" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="862.1050614105756" x2="862.1050614105756" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="846.8550614105757" x2="851.8550614105757" y1="158.59090909090912" y2="158.59090909090912"/>
+  <line stroke="#888888" x1="851.8550614105757" x2="851.8550614105757" y1="158.59090909090912" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="851.8550614105757" x2="846.8550614105757" y1="169.68181818181822" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="846.8550614105757" x2="851.8550614105757" y1="186.31818181818184" y2="186.31818181818184"/>
+  <line stroke="#888888" x1="851.8550614105757" x2="851.8550614105757" y1="186.31818181818184" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="851.8550614105757" x2="846.8550614105757" y1="197.40909090909093" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="848.1050614105757" x2="851.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="851.6050614105757" x2="851.6050614105757" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="851.6050614105757" x2="848.1050614105757" y1="139.50000000000003" y2="139.50000000000003"/>
+</svg>
diff --git a/rocolib/builders/output/BoatWithManyDCMounts/graph-autofold-default.dxf b/rocolib/builders/output/BoatWithManyDCMounts/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..6611eb8dc8b1ddddf8128fb1d05c1231c066ad0e
--- /dev/null
+++ b/rocolib/builders/output/BoatWithManyDCMounts/graph-autofold-default.dxf
@@ -0,0 +1,15280 @@
+  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
+16
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+41.987212495816664
+ 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
+180
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+57.019129652304315
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+54.462322208025626
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+45
+ 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
+216.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+186.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+216.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+186.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+186.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+216.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+226.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+226.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.02325267042636
+ 20
+20.5
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.02325267042636
+ 20
+14.5
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.0232526704264
+ 20
+14.5
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.0232526704264
+ 20
+20.5
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+256.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+256.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+256.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+256.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+256.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+256.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.02325267042636
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.02325267042639
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+176.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.02325267042636
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.02325267042637
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.02325267042639
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+136.02325267042636
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.02325267042636
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+126.02325267042639
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+136.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+126.02325267042639
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.02325267042639
+ 20
+20.5
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.02325267042639
+ 20
+14.5
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.02325267042636
+ 20
+14.5
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.02325267042636
+ 20
+20.5
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+166.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+166.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.02325267042636
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+166.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+176.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+166.02325267042636
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+176.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.02325267042636
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.02325267042639
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+96.02325267042637
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.02325267042637
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+96.02325267042637
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+96.02325267042637
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.02325267042637
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+96.02325267042637
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.02325267042637
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.02325267042637
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+388.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+568.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.02325267042637
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.0232526704264
+ 20
+240.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.02325267042636
+ 20
+240.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+240.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.02325267042636
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+240.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+478.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+518.0232526704265
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+568.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+568.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+388.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+438.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+428.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+438.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+428.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.0232526704264
+ 20
+20.5
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.0232526704264
+ 20
+14.5
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.0232526704264
+ 20
+14.5
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.0232526704264
+ 20
+20.5
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+468.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+468.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+468.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+468.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+478.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+468.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+478.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+468.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+398.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+398.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+398.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+398.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+388.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+398.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+388.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+398.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+518.0232526704265
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+528.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+528.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+518.0232526704265
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+528.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+518.0232526704265
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+528.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+518.0232526704265
+ 20
+20.5
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+518.0232526704265
+ 20
+14.5
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+528.0232526704264
+ 20
+14.5
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+528.0232526704264
+ 20
+20.5
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+558.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+558.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+558.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+528.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+558.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+568.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+558.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+568.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+558.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+518.0232526704265
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+488.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+488.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+488.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+488.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+478.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+488.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+478.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+488.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+86.02325267042637
+ 20
+320.50000000000006
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+86.02325267042637
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+33.508881852264786
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+33.508881852264786
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.508881852264786
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+18.818104996527182
+ 21
+300.9176577976636
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+18.818104996527182
+ 20
+300.9176577976636
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+5.684341886080803e-14
+ 20
+365.5
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+4.127328140789616
+ 20
+351.33531559532713
+ 30
+0.0
+ 11
+5.684341886080803e-14
+ 21
+365.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+18.818104996527182
+ 20
+300.9176577976636
+ 30
+0.0
+ 11
+4.127328140789616
+ 21
+351.33531559532713
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+86.02325267042637
+ 20
+320.50000000000006
+ 30
+0.0
+ 11
+86.02325267042634
+ 21
+365.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+86.02325267042634
+ 20
+365.50000000000006
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+410.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+2.8421709430404014e-14
+ 20
+365.5
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+410.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+86.02325267042632
+ 20
+410.50000000000006
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+568.0232526704265
+ 20
+365.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+320.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+568.0232526704265
+ 20
+410.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+365.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+654.0465053408527
+ 20
+365.5000000000004
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+320.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+649.9191772000632
+ 20
+351.33531559532753
+ 30
+0.0
+ 11
+635.2284003443256
+ 21
+300.91765779766394
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+654.0465053408527
+ 20
+365.5000000000004
+ 30
+0.0
+ 11
+649.9191772000632
+ 21
+351.33531559532753
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+568.0232526704265
+ 20
+320.50000000000034
+ 30
+0.0
+ 11
+635.2284003443256
+ 21
+300.91765779766394
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+568.0232526704265
+ 20
+320.50000000000034
+ 30
+0.0
+ 11
+620.5376234885883
+ 21
+250.50000000000037
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+635.2284003443257
+ 20
+300.917657797664
+ 30
+0.0
+ 11
+620.5376234885883
+ 21
+250.50000000000037
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+568.0232526704265
+ 20
+250.5000000000003
+ 30
+0.0
+ 11
+620.5376234885883
+ 21
+250.50000000000037
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+568.0232526704265
+ 20
+320.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+250.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+568.0232526704266
+ 20
+232.99520972727979
+ 30
+0.0
+ 11
+568.0232526704266
+ 21
+250.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+620.5376234885883
+ 20
+232.99520972727984
+ 30
+0.0
+ 11
+568.0232526704266
+ 21
+232.99520972727979
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+620.5376234885883
+ 20
+250.50000000000037
+ 30
+0.0
+ 11
+620.5376234885883
+ 21
+232.99520972727984
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+654.0465053408527
+ 20
+365.5000000000004
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+635.2284003443256
+ 20
+430.0823422023368
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+649.9191772000632
+ 20
+379.6646844046732
+ 30
+0.0
+ 11
+654.0465053408527
+ 21
+365.5000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+635.2284003443256
+ 20
+430.0823422023368
+ 30
+0.0
+ 11
+649.9191772000632
+ 21
+379.6646844046732
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+620.537623488588
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+635.2284003443256
+ 21
+430.0823422023368
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+620.537623488588
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+568.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+620.537623488588
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+86.02325267042633
+ 20
+410.5000000000003
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+86.02325267042632
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+33.50888185226472
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+86.02325267042633
+ 20
+410.5000000000003
+ 30
+0.0
+ 11
+33.50888185226472
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.02325267042632
+ 20
+498.0047902727208
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.50888185226472
+ 20
+498.0047902727208
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+498.0047902727208
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.50888185226472
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+33.50888185226472
+ 21
+498.0047902727208
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+86.02325267042633
+ 20
+410.5000000000003
+ 30
+0.0
+ 11
+18.818104996527126
+ 21
+430.08234220233675
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+18.818104996527126
+ 20
+430.08234220233675
+ 30
+0.0
+ 11
+33.50888185226472
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+4.127328140789559
+ 20
+379.6646844046731
+ 30
+0.0
+ 11
+18.818104996527126
+ 21
+430.0823422023367
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+365.5000000000003
+ 30
+0.0
+ 11
+4.127328140789559
+ 21
+379.6646844046731
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.02325267042636
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.02325267042632
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+568.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+528.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+518.0232526704266
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+528.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+478.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+518.0232526704266
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.0232526704264
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+478.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.0232526704264
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+388.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+388.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+568.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+45
+ 10
+327.02325267042636
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.02325267042636
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+45
+ 10
+266.0232526704264
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+266.0232526704264
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.02325267042636
+ 20
+576.7772439983707
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.0232526704264
+ 20
+576.7772439983707
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+576.7772439983707
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.0232526704264
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+576.7772439983707
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+256.02325267042636
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+256.0232526704264
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+256.02325267042636
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.0232526704264
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+256.0232526704264
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+337.02325267042636
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+337.02325267042636
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+337.02325267042636
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.02325267042636
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+337.02325267042636
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.02325267042636
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+176.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.02325267042633
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.02325267042634
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+136.02325267042633
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.02325267042634
+ 20
+480.5000000000002
+ 30
+0.0
+ 11
+126.02325267042634
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.02325267042634
+ 20
+480.5000000000002
+ 30
+0.0
+ 11
+86.02325267042634
+ 21
+480.5000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+620.537623488588
+ 20
+498.00479027272087
+ 30
+0.0
+ 11
+620.537623488588
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+568.0232526704265
+ 20
+498.00479027272087
+ 30
+0.0
+ 11
+620.537623488588
+ 21
+498.00479027272087
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+568.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+498.00479027272087
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.508881852264786
+ 20
+232.9952097272795
+ 30
+0.0
+ 11
+33.508881852264786
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.02325267042637
+ 20
+232.9952097272795
+ 30
+0.0
+ 11
+33.508881852264786
+ 21
+232.9952097272795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.02325267042637
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+232.9952097272795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+176.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+186.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+176.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+187.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+195.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+195.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+195.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+195.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+187.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+187.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+187.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+222.68991933709302
+ 20
+16.000000000000004
+ 30
+0.0
+ 11
+222.68991933709302
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+222.68991933709302
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+219.35658600375973
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+219.35658600375973
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+219.35658600375973
+ 21
+16.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+247.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+255.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+255.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+255.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+255.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+247.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+247.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+247.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+258.2732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+258.2732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+258.2732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+258.7732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+258.7732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+258.7732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+258.7732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+258.2732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+258.2732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+258.2732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+258.2732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+258.7732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+258.7732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+258.7732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+258.7732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+258.2732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.68991933709307
+ 20
+16.000000000000004
+ 30
+0.0
+ 11
+132.68991933709307
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.68991933709307
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+129.3565860037597
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.3565860037597
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+129.3565860037597
+ 21
+16.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.02325267042636
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+165.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+165.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+157.02325267042636
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.02325267042636
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+157.02325267042636
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.27325267042636
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+168.27325267042636
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.27325267042636
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+168.7732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.7732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+168.7732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.7732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+168.27325267042636
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.27325267042636
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+168.27325267042636
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.27325267042636
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+168.7732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.7732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+168.7732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.7732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+168.27325267042636
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+97.02325267042637
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+105.02325267042637
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.02325267042637
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+105.02325267042637
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.02325267042637
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+97.02325267042637
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+97.02325267042637
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+97.02325267042637
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+88.52325267042636
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+101.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+88.52325267042636
+ 20
+101.86363636363637
+ 30
+0.0
+ 11
+93.52325267042637
+ 21
+106.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.52325267042637
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+93.52325267042637
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.52325267042637
+ 20
+123.22727272727273
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+128.22727272727272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+88.52325267042636
+ 20
+128.22727272727272
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+88.52325267042636
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+142.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+88.52325267042636
+ 20
+142.77272727272728
+ 30
+0.0
+ 11
+93.52325267042637
+ 21
+147.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.52325267042637
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+93.52325267042637
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.52325267042637
+ 20
+164.13636363636363
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+169.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+88.52325267042636
+ 20
+169.13636363636363
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+349.4550708522446
+ 20
+258.25000000000006
+ 30
+0.0
+ 11
+337.86416176133554
+ 21
+258.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+337.86416176133554
+ 20
+258.25000000000006
+ 30
+0.0
+ 11
+337.86416176133554
+ 21
+257.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+337.86416176133554
+ 20
+257.75
+ 30
+0.0
+ 11
+349.4550708522446
+ 21
+257.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+349.4550708522446
+ 20
+257.75
+ 30
+0.0
+ 11
+349.4550708522446
+ 21
+258.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+377.18234357951735
+ 20
+258.25000000000006
+ 30
+0.0
+ 11
+365.59143448860823
+ 21
+258.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+365.59143448860823
+ 20
+258.25000000000006
+ 30
+0.0
+ 11
+365.59143448860823
+ 21
+257.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+365.59143448860823
+ 20
+257.75
+ 30
+0.0
+ 11
+377.18234357951735
+ 21
+257.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+377.18234357951735
+ 20
+257.75
+ 30
+0.0
+ 11
+377.18234357951735
+ 21
+258.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+315.9323435795173
+ 20
+243.00000000000003
+ 30
+0.0
+ 11
+315.9323435795173
+ 21
+248.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+315.9323435795173
+ 20
+248.00000000000006
+ 30
+0.0
+ 11
+304.84143448860823
+ 21
+248.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+304.84143448860823
+ 20
+248.00000000000006
+ 30
+0.0
+ 11
+304.84143448860823
+ 21
+243.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+288.20507085224455
+ 20
+243.00000000000003
+ 30
+0.0
+ 11
+288.20507085224455
+ 21
+248.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+288.20507085224455
+ 20
+248.00000000000006
+ 30
+0.0
+ 11
+277.11416176133554
+ 21
+248.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+277.11416176133554
+ 20
+248.00000000000006
+ 30
+0.0
+ 11
+277.11416176133554
+ 21
+243.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+434.68991933709304
+ 20
+16.000000000000004
+ 30
+0.0
+ 11
+434.68991933709304
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+434.68991933709304
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+431.3565860037598
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+431.3565860037598
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+431.3565860037598
+ 21
+16.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+459.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+467.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+467.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+467.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+467.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+459.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+459.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+459.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+470.2732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+470.2732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+470.2732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+470.7732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+470.7732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+470.7732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+470.7732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+470.2732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+470.2732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+470.2732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+470.2732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+470.7732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+470.7732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+470.7732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+470.7732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+470.2732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+407.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+407.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+407.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+407.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+399.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+399.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+399.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+390.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+101.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+390.5232526704264
+ 20
+101.86363636363637
+ 30
+0.0
+ 11
+395.52325267042636
+ 21
+106.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+395.52325267042636
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+395.52325267042636
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+395.52325267042636
+ 20
+123.22727272727273
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+128.22727272727272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+390.5232526704264
+ 20
+128.22727272727272
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+390.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+142.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+390.5232526704264
+ 20
+142.77272727272728
+ 30
+0.0
+ 11
+395.52325267042636
+ 21
+147.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+395.52325267042636
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+395.52325267042636
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+395.52325267042636
+ 20
+164.13636363636363
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+169.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+390.5232526704264
+ 20
+169.13636363636363
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+524.689919337093
+ 20
+16.000000000000004
+ 30
+0.0
+ 11
+524.689919337093
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+524.689919337093
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+521.3565860037598
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+521.3565860037598
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+521.3565860037598
+ 21
+16.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+549.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+557.0232526704265
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+557.0232526704265
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+557.0232526704265
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+557.0232526704265
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+549.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+549.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+549.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.2732526704265
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+560.2732526704265
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.2732526704265
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+560.7732526704265
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.7732526704265
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+560.7732526704265
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.7732526704265
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+560.2732526704265
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.2732526704265
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+560.2732526704265
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.2732526704265
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+560.7732526704265
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.7732526704265
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+560.7732526704265
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.7732526704265
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+560.2732526704265
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+489.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+497.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+497.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+497.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+497.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+489.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+489.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+489.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+480.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+101.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+480.5232526704264
+ 20
+101.86363636363637
+ 30
+0.0
+ 11
+485.5232526704264
+ 21
+106.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+485.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+485.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+485.5232526704264
+ 20
+123.22727272727273
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+128.22727272727272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+480.5232526704264
+ 20
+128.22727272727272
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+480.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+142.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+480.5232526704264
+ 20
+142.77272727272728
+ 30
+0.0
+ 11
+485.5232526704264
+ 21
+147.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+485.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+485.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+485.5232526704264
+ 20
+164.13636363636363
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+169.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+480.5232526704264
+ 20
+169.13636363636363
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.835549148350456
+ 20
+321.2261564960398
+ 30
+0.0
+ 11
+21.79874965689743
+ 21
+338.5120791976936
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.79874965689743
+ 20
+338.5120791976936
+ 30
+0.0
+ 11
+21.318712887798146
+ 21
+338.37220532481973
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.318712887798146
+ 20
+338.37220532481973
+ 30
+0.0
+ 11
+26.35551237925117
+ 21
+321.08628262316597
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.35551237925117
+ 20
+321.08628262316597
+ 30
+0.0
+ 11
+26.835549148350456
+ 21
+321.2261564960398
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+632.2477556839555
+ 20
+338.5120791976939
+ 30
+0.0
+ 11
+627.2109561925024
+ 21
+321.22615649604006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+627.2109561925024
+ 20
+321.22615649604006
+ 30
+0.0
+ 11
+627.6909929616016
+ 21
+321.08628262316626
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+627.6909929616016
+ 20
+321.08628262316626
+ 30
+0.0
+ 11
+632.7277924530547
+ 21
+338.37220532482
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+632.7277924530547
+ 20
+338.37220532482
+ 30
+0.0
+ 11
+632.2477556839555
+ 21
+338.5120791976939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+603.0328332158676
+ 20
+237.37140729545996
+ 30
+0.0
+ 11
+603.0328332158676
+ 21
+246.12380243182022
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+603.0328332158676
+ 20
+246.12380243182022
+ 30
+0.0
+ 11
+585.5280429431472
+ 21
+246.1238024318202
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+585.5280429431472
+ 20
+246.1238024318202
+ 30
+0.0
+ 11
+585.5280429431472
+ 21
+237.37140729545993
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+627.2109561925023
+ 20
+409.7738435039606
+ 30
+0.0
+ 11
+632.2477556839555
+ 21
+392.4879208023068
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+632.2477556839555
+ 20
+392.4879208023068
+ 30
+0.0
+ 11
+632.7277924530547
+ 21
+392.62779467518067
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+632.7277924530547
+ 20
+392.62779467518067
+ 30
+0.0
+ 11
+627.6909929616015
+ 21
+409.9137173768344
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+627.6909929616015
+ 20
+409.9137173768344
+ 30
+0.0
+ 11
+627.2109561925023
+ 21
+409.7738435039606
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+51.013672124985256
+ 20
+493.62859270454067
+ 30
+0.0
+ 11
+51.013672124985256
+ 21
+484.87619756818043
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+51.013672124985256
+ 20
+484.87619756818043
+ 30
+0.0
+ 11
+68.51846239770579
+ 21
+484.87619756818043
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.51846239770579
+ 20
+484.87619756818043
+ 30
+0.0
+ 11
+68.51846239770579
+ 21
+493.62859270454067
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.798749656897375
+ 20
+392.48792080230663
+ 30
+0.0
+ 11
+26.8355491483504
+ 21
+409.7738435039605
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.8355491483504
+ 20
+409.7738435039605
+ 30
+0.0
+ 11
+26.355512379251113
+ 21
+409.9137173768343
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.355512379251113
+ 20
+409.9137173768343
+ 30
+0.0
+ 11
+21.318712887798085
+ 21
+392.62779467518044
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.318712887798085
+ 20
+392.62779467518044
+ 30
+0.0
+ 11
+21.798749656897375
+ 21
+392.48792080230663
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+365.59143448860823
+ 20
+472.7500000000003
+ 30
+0.0
+ 11
+377.18234357951735
+ 21
+472.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+377.18234357951735
+ 20
+472.7500000000003
+ 30
+0.0
+ 11
+377.18234357951735
+ 21
+473.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+377.18234357951735
+ 20
+473.2500000000003
+ 30
+0.0
+ 11
+365.59143448860823
+ 21
+473.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+365.59143448860823
+ 20
+473.2500000000003
+ 30
+0.0
+ 11
+365.59143448860823
+ 21
+472.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+337.86416176133554
+ 20
+472.7500000000003
+ 30
+0.0
+ 11
+349.4550708522446
+ 21
+472.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+349.4550708522446
+ 20
+472.7500000000003
+ 30
+0.0
+ 11
+349.4550708522446
+ 21
+473.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+349.4550708522446
+ 20
+473.2500000000003
+ 30
+0.0
+ 11
+337.86416176133554
+ 21
+473.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+337.86416176133554
+ 20
+473.2500000000003
+ 30
+0.0
+ 11
+337.86416176133554
+ 21
+472.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+521.1065860037598
+ 20
+475.75000000000034
+ 30
+0.0
+ 11
+524.9399193370932
+ 21
+475.75000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+524.9399193370932
+ 20
+475.75000000000034
+ 30
+0.0
+ 11
+524.9399193370932
+ 21
+476.25000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+524.9399193370932
+ 20
+476.25000000000034
+ 30
+0.0
+ 11
+521.1065860037598
+ 21
+476.25000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+521.1065860037598
+ 20
+476.25000000000034
+ 30
+0.0
+ 11
+521.1065860037598
+ 21
+475.75000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+431.1065860037598
+ 20
+475.75000000000034
+ 30
+0.0
+ 11
+434.9399193370931
+ 21
+475.75000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+434.9399193370931
+ 20
+475.75000000000034
+ 30
+0.0
+ 11
+434.9399193370931
+ 21
+476.25000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+434.9399193370931
+ 20
+476.25000000000034
+ 30
+0.0
+ 11
+431.1065860037598
+ 21
+476.25000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+431.1065860037598
+ 20
+476.25000000000034
+ 30
+0.0
+ 11
+431.1065860037598
+ 21
+475.75000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+309.02325267042636
+ 20
+535.1386219991855
+ 30
+0.0
+ 11
+298.0232526704264
+ 21
+535.1386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+298.0232526704264
+ 20
+535.1386219991855
+ 30
+0.0
+ 11
+298.0232526704264
+ 21
+522.1386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+298.0232526704264
+ 20
+522.1386219991855
+ 30
+0.0
+ 11
+309.02325267042636
+ 21
+522.1386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+309.02325267042636
+ 20
+522.1386219991855
+ 30
+0.0
+ 11
+309.02325267042636
+ 21
+535.1386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+277.52325267042636
+ 20
+533.6386219991856
+ 30
+0.0
+ 11
+271.5232526704264
+ 21
+533.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+271.5232526704264
+ 20
+533.6386219991856
+ 30
+0.0
+ 11
+271.5232526704264
+ 21
+523.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+271.5232526704264
+ 20
+523.6386219991856
+ 30
+0.0
+ 11
+277.52325267042636
+ 21
+523.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+277.52325267042636
+ 20
+523.6386219991856
+ 30
+0.0
+ 11
+277.52325267042636
+ 21
+533.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+304.59143448860823
+ 20
+569.0272439983709
+ 30
+0.0
+ 11
+316.1823435795173
+ 21
+569.0272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+316.1823435795173
+ 20
+569.0272439983709
+ 30
+0.0
+ 11
+316.1823435795173
+ 21
+569.5272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+316.1823435795173
+ 20
+569.5272439983709
+ 30
+0.0
+ 11
+304.59143448860823
+ 21
+569.5272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+304.59143448860823
+ 20
+569.5272439983709
+ 30
+0.0
+ 11
+304.59143448860823
+ 21
+569.0272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+276.8641617613354
+ 20
+569.027243998371
+ 30
+0.0
+ 11
+288.4550708522445
+ 21
+569.0272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+288.4550708522445
+ 20
+569.0272439983709
+ 30
+0.0
+ 11
+288.4550708522445
+ 21
+569.5272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+288.4550708522445
+ 20
+569.5272439983709
+ 30
+0.0
+ 11
+276.8641617613354
+ 21
+569.527243998371
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+276.8641617613354
+ 20
+569.527243998371
+ 30
+0.0
+ 11
+276.8641617613354
+ 21
+569.027243998371
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+258.5232526704264
+ 20
+524.6386219991856
+ 30
+0.0
+ 11
+263.5232526704264
+ 21
+524.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+263.5232526704264
+ 20
+524.6386219991856
+ 30
+0.0
+ 11
+263.5232526704264
+ 21
+532.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+263.5232526704264
+ 20
+532.6386219991856
+ 30
+0.0
+ 11
+258.5232526704264
+ 21
+532.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+334.5232526704264
+ 20
+532.6386219991856
+ 30
+0.0
+ 11
+329.5232526704264
+ 21
+532.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+329.5232526704264
+ 20
+532.6386219991856
+ 30
+0.0
+ 11
+329.5232526704264
+ 21
+524.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+329.5232526704264
+ 20
+524.6386219991856
+ 30
+0.0
+ 11
+334.5232526704264
+ 21
+524.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+219.1065860037597
+ 20
+475.7500000000003
+ 30
+0.0
+ 11
+222.93991933709304
+ 21
+475.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+222.93991933709304
+ 20
+475.7500000000003
+ 30
+0.0
+ 11
+222.93991933709304
+ 21
+476.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+222.93991933709304
+ 20
+476.2500000000003
+ 30
+0.0
+ 11
+219.1065860037597
+ 21
+476.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+219.1065860037597
+ 20
+476.2500000000003
+ 30
+0.0
+ 11
+219.1065860037597
+ 21
+475.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.1065860037597
+ 20
+475.7500000000003
+ 30
+0.0
+ 11
+132.93991933709302
+ 21
+475.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.93991933709302
+ 20
+475.7500000000003
+ 30
+0.0
+ 11
+132.93991933709302
+ 21
+476.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.93991933709302
+ 20
+476.2500000000003
+ 30
+0.0
+ 11
+129.1065860037597
+ 21
+476.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.1065860037597
+ 20
+476.2500000000003
+ 30
+0.0
+ 11
+129.1065860037597
+ 21
+475.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+585.528042943147
+ 20
+493.6285927045408
+ 30
+0.0
+ 11
+585.528042943147
+ 21
+484.8761975681805
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+585.528042943147
+ 20
+484.8761975681805
+ 30
+0.0
+ 11
+603.0328332158675
+ 21
+484.8761975681805
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+603.0328332158675
+ 20
+484.8761975681805
+ 30
+0.0
+ 11
+603.0328332158675
+ 21
+493.6285927045408
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.51846239770585
+ 20
+237.37140729545965
+ 30
+0.0
+ 11
+68.51846239770585
+ 21
+246.12380243181988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.51846239770585
+ 20
+246.12380243181988
+ 30
+0.0
+ 11
+51.01367212498531
+ 21
+246.12380243181988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+51.01367212498531
+ 20
+246.12380243181988
+ 30
+0.0
+ 11
+51.01367212498531
+ 21
+237.37140729545965
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+101.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.5232526704264
+ 20
+101.86363636363637
+ 30
+0.0
+ 11
+183.5232526704264
+ 21
+106.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+183.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+183.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+183.5232526704264
+ 20
+123.22727272727273
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+128.22727272727272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.5232526704264
+ 20
+128.22727272727272
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+142.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.5232526704264
+ 20
+142.77272727272728
+ 30
+0.0
+ 11
+183.5232526704264
+ 21
+147.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+183.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+183.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+183.5232526704264
+ 20
+164.13636363636363
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+169.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.5232526704264
+ 20
+169.13636363636363
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+824.3550614105757
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+762.7007833757143
+ 20
+166.0
+ 30
+0.0
+ 11
+824.3550614105757
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-45
+ 10
+762.7007833757143
+ 20
+166.0
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+834.3550614105757
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+824.3550614105757
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+834.3550614105757
+ 20
+166.0
+ 30
+0.0
+ 11
+834.3550614105757
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+824.3550614105757
+ 20
+166.0
+ 30
+0.0
+ 11
+834.3550614105757
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+735.7007833757143
+ 20
+166.0
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-45
+ 10
+735.7007833757143
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+762.7007833757143
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+674.0465053408527
+ 20
+166.0
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+735.7007833757143
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+674.0465053408527
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+664.0465053408527
+ 20
+166.0
+ 30
+0.0
+ 11
+674.0465053408527
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+664.0465053408527
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+664.0465053408527
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+674.0465053408527
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+664.0465053408527
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+762.7007833757143
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+735.7007833757143
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+762.7007833757143
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+762.7007833757143
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+735.7007833757143
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+762.7007833757143
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+762.7007833757143
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+735.7007833757143
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+735.7007833757143
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+735.7007833757143
+ 20
+0.0
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+762.7007833757143
+ 20
+0.0
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+762.7007833757143
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+831.8550614105757
+ 20
+154.90909090909093
+ 30
+0.0
+ 11
+826.8550614105757
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+826.8550614105757
+ 20
+154.90909090909093
+ 30
+0.0
+ 11
+826.8550614105757
+ 21
+143.8181818181818
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+826.8550614105757
+ 20
+143.8181818181818
+ 30
+0.0
+ 11
+831.8550614105757
+ 21
+143.8181818181818
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+831.8550614105757
+ 20
+127.1818181818182
+ 30
+0.0
+ 11
+826.8550614105757
+ 21
+127.1818181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+826.8550614105757
+ 20
+127.1818181818182
+ 30
+0.0
+ 11
+826.8550614105757
+ 21
+116.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+826.8550614105757
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+831.8550614105757
+ 21
+116.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+758.2007833757143
+ 20
+102.50000000000001
+ 30
+0.0
+ 11
+758.2007833757143
+ 21
+108.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+758.2007833757143
+ 20
+108.50000000000001
+ 30
+0.0
+ 11
+740.2007833757143
+ 21
+108.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+740.2007833757143
+ 20
+108.50000000000001
+ 30
+0.0
+ 11
+740.2007833757143
+ 21
+102.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+740.2007833757143
+ 20
+102.50000000000001
+ 30
+0.0
+ 11
+758.2007833757143
+ 21
+102.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+744.4507833757143
+ 20
+158.25000000000003
+ 30
+0.0
+ 11
+753.9507833757143
+ 21
+158.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+753.9507833757143
+ 20
+158.25000000000003
+ 30
+0.0
+ 11
+753.9507833757143
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+753.9507833757143
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+744.4507833757143
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+744.4507833757143
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+744.4507833757143
+ 21
+158.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+666.5465053408528
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+671.5465053408527
+ 21
+116.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+671.5465053408527
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+671.5465053408527
+ 21
+127.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+671.5465053408527
+ 20
+127.18181818181822
+ 30
+0.0
+ 11
+666.5465053408528
+ 21
+127.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+666.5465053408528
+ 20
+143.81818181818184
+ 30
+0.0
+ 11
+671.5465053408527
+ 21
+143.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+671.5465053408527
+ 20
+143.81818181818184
+ 30
+0.0
+ 11
+671.5465053408527
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+671.5465053408527
+ 20
+154.90909090909093
+ 30
+0.0
+ 11
+666.5465053408528
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+753.7007833757143
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+753.7007833757143
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+753.7007833757143
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+744.7007833757143
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+744.7007833757143
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+744.7007833757143
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+853.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+914.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+914.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+853.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+853.3550614105757
+ 20
+116.50000000000001
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+889.3550614105757
+ 20
+116.50000000000001
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+116.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+889.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+889.3550614105757
+ 21
+116.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+921.3550614105756
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+921.3550614105756
+ 20
+147.5
+ 30
+0.0
+ 11
+921.3550614105756
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+914.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+921.3550614105756
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+914.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+878.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+878.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+878.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+938.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+938.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+938.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+914.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+938.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+974.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+938.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+974.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+974.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+938.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+974.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+878.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+854.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+854.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+878.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+854.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+854.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+844.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+854.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+844.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+844.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+854.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+844.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+846.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+846.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+846.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+853.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+846.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+877.3550614105757
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+880.8550614105757
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+880.8550614105757
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+877.3550614105757
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+877.3550614105757
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+865.3550614105757
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+865.3550614105757
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+861.8550614105757
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+861.8550614105757
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+865.3550614105757
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+919.6050614105757
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+916.1050614105757
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.1050614105757
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+916.1050614105757
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.1050614105757
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+919.6050614105757
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+891.4693471248614
+ 20
+202.25000000000003
+ 30
+0.0
+ 11
+891.4693471248614
+ 21
+184.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+891.4693471248614
+ 20
+184.25
+ 30
+0.0
+ 11
+912.04077569629
+ 21
+184.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+912.04077569629
+ 20
+184.25
+ 30
+0.0
+ 11
+912.04077569629
+ 21
+202.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+912.04077569629
+ 20
+202.25000000000003
+ 30
+0.0
+ 11
+891.4693471248614
+ 21
+202.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+914.8550614105757
+ 20
+160.75000000000003
+ 30
+0.0
+ 11
+914.8550614105757
+ 21
+157.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+914.8550614105757
+ 20
+157.75000000000003
+ 30
+0.0
+ 11
+917.8550614105757
+ 21
+157.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+917.8550614105757
+ 20
+157.75000000000003
+ 30
+0.0
+ 11
+917.8550614105757
+ 21
+160.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+917.8550614105757
+ 20
+160.75000000000003
+ 30
+0.0
+ 11
+914.8550614105757
+ 21
+160.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+159.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+159.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+159.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+159.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+935.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+936.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+197.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+196.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+915.8550614105757
+ 20
+196.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+196.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+196.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+197.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+916.8550614105757
+ 20
+197.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+197.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+934.8550614105757
+ 20
+198.25000000000003
+ 30
+0.0
+ 11
+934.8550614105757
+ 21
+195.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+934.8550614105757
+ 20
+195.25000000000003
+ 30
+0.0
+ 11
+937.8550614105757
+ 21
+195.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+937.8550614105757
+ 20
+195.25000000000003
+ 30
+0.0
+ 11
+937.8550614105757
+ 21
+198.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+937.8550614105757
+ 20
+198.25000000000003
+ 30
+0.0
+ 11
+934.8550614105757
+ 21
+198.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+930.6050614105757
+ 20
+155.25000000000003
+ 30
+0.0
+ 11
+922.1050614105757
+ 21
+155.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+922.1050614105757
+ 20
+155.25000000000003
+ 30
+0.0
+ 11
+922.1050614105757
+ 21
+154.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+922.1050614105757
+ 20
+154.75
+ 30
+0.0
+ 11
+930.6050614105757
+ 21
+154.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+930.6050614105757
+ 20
+154.75
+ 30
+0.0
+ 11
+930.6050614105757
+ 21
+155.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+922.1050614105757
+ 20
+203.00000000000003
+ 30
+0.0
+ 11
+930.6050614105757
+ 21
+203.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+930.6050614105757
+ 20
+203.00000000000003
+ 30
+0.0
+ 11
+930.6050614105757
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+930.6050614105757
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+922.1050614105757
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+922.1050614105757
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+922.1050614105757
+ 21
+203.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+943.9093471248614
+ 20
+204.02
+ 30
+0.0
+ 11
+943.9093471248614
+ 21
+191.02
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+943.9093471248614
+ 20
+191.02
+ 30
+0.0
+ 11
+964.4807756962899
+ 21
+191.02
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+964.4807756962899
+ 20
+191.02
+ 30
+0.0
+ 11
+964.4807756962899
+ 21
+204.02
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+964.4807756962899
+ 20
+204.02
+ 30
+0.0
+ 11
+943.9093471248614
+ 21
+204.02
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+962.6050614105756
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+950.1050614105757
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+950.1050614105757
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+950.1050614105757
+ 21
+152.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+950.1050614105757
+ 20
+152.5
+ 30
+0.0
+ 11
+962.6050614105756
+ 21
+152.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+962.6050614105756
+ 20
+152.5
+ 30
+0.0
+ 11
+962.6050614105756
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+966.6050614105757
+ 20
+169.93181818181822
+ 30
+0.0
+ 11
+966.6050614105757
+ 21
+158.3409090909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+966.6050614105757
+ 20
+158.3409090909091
+ 30
+0.0
+ 11
+967.1050614105757
+ 21
+158.3409090909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+967.1050614105757
+ 20
+158.3409090909091
+ 30
+0.0
+ 11
+967.1050614105757
+ 21
+169.93181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+967.1050614105757
+ 20
+169.93181818181822
+ 30
+0.0
+ 11
+966.6050614105757
+ 21
+169.93181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+966.6050614105757
+ 20
+197.65909090909093
+ 30
+0.0
+ 11
+966.6050614105757
+ 21
+186.06818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+966.6050614105757
+ 20
+186.06818181818184
+ 30
+0.0
+ 11
+967.1050614105757
+ 21
+186.06818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+967.1050614105757
+ 20
+186.06818181818184
+ 30
+0.0
+ 11
+967.1050614105757
+ 21
+197.65909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+967.1050614105757
+ 20
+197.65909090909093
+ 30
+0.0
+ 11
+966.6050614105757
+ 21
+197.65909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+854.8550614105757
+ 20
+160.75000000000003
+ 30
+0.0
+ 11
+854.8550614105757
+ 21
+157.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+854.8550614105757
+ 20
+157.75000000000003
+ 30
+0.0
+ 11
+857.8550614105756
+ 21
+157.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+857.8550614105756
+ 20
+157.75000000000003
+ 30
+0.0
+ 11
+857.8550614105756
+ 21
+160.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+857.8550614105756
+ 20
+160.75000000000003
+ 30
+0.0
+ 11
+854.8550614105757
+ 21
+160.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+159.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+159.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+159.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+159.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+161.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+163.75
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+166.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+177.25
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+179.75
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+182.25
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+188.75
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+191.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+875.8550614105756
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+876.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+197.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+196.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+855.8550614105757
+ 20
+196.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+196.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+196.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+197.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+856.8550614105757
+ 20
+197.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+197.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+874.8550614105757
+ 20
+198.25000000000003
+ 30
+0.0
+ 11
+874.8550614105757
+ 21
+195.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+874.8550614105757
+ 20
+195.25000000000003
+ 30
+0.0
+ 11
+877.8550614105757
+ 21
+195.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+877.8550614105757
+ 20
+195.25000000000003
+ 30
+0.0
+ 11
+877.8550614105757
+ 21
+198.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+877.8550614105757
+ 20
+198.25000000000003
+ 30
+0.0
+ 11
+874.8550614105757
+ 21
+198.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+870.6050614105757
+ 20
+155.25000000000003
+ 30
+0.0
+ 11
+862.1050614105756
+ 21
+155.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+862.1050614105756
+ 20
+155.25000000000003
+ 30
+0.0
+ 11
+862.1050614105756
+ 21
+154.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+862.1050614105756
+ 20
+154.75
+ 30
+0.0
+ 11
+870.6050614105757
+ 21
+154.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+870.6050614105757
+ 20
+154.75
+ 30
+0.0
+ 11
+870.6050614105757
+ 21
+155.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+862.1050614105756
+ 20
+203.00000000000003
+ 30
+0.0
+ 11
+870.6050614105757
+ 21
+203.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+870.6050614105757
+ 20
+203.00000000000003
+ 30
+0.0
+ 11
+870.6050614105757
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+870.6050614105757
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+862.1050614105756
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+862.1050614105756
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+862.1050614105756
+ 21
+203.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+846.8550614105757
+ 20
+158.59090909090912
+ 30
+0.0
+ 11
+851.8550614105757
+ 21
+158.59090909090912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+851.8550614105757
+ 20
+158.59090909090912
+ 30
+0.0
+ 11
+851.8550614105757
+ 21
+169.68181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+851.8550614105757
+ 20
+169.68181818181822
+ 30
+0.0
+ 11
+846.8550614105757
+ 21
+169.68181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+846.8550614105757
+ 20
+186.31818181818184
+ 30
+0.0
+ 11
+851.8550614105757
+ 21
+186.31818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+851.8550614105757
+ 20
+186.31818181818184
+ 30
+0.0
+ 11
+851.8550614105757
+ 21
+197.40909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+851.8550614105757
+ 20
+197.40909090909093
+ 30
+0.0
+ 11
+846.8550614105757
+ 21
+197.40909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+848.1050614105757
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+851.6050614105757
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+851.6050614105757
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+851.6050614105757
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+851.6050614105757
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+848.1050614105757
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithManyDCMounts/graph-autofold-graph.dxf b/rocolib/builders/output/BoatWithManyDCMounts/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..ab8f55277dbb862f77e8ce8ce5b98bb46429ff09
--- /dev/null
+++ b/rocolib/builders/output/BoatWithManyDCMounts/graph-autofold-graph.dxf
@@ -0,0 +1,15170 @@
+  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
+216.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+186.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+216.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+186.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+186.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+216.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+226.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+226.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.02325267042636
+ 20
+20.5
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.02325267042636
+ 20
+14.5
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.0232526704264
+ 20
+14.5
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.0232526704264
+ 20
+20.5
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+256.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+256.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+256.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+256.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+256.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+256.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.02325267042636
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.02325267042639
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.02325267042636
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042637
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.02325267042639
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+136.02325267042636
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.02325267042636
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+126.02325267042639
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+136.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+126.02325267042639
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.02325267042639
+ 20
+20.5
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.02325267042639
+ 20
+14.5
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.02325267042636
+ 20
+14.5
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.02325267042636
+ 20
+20.5
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+166.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.02325267042636
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+166.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+166.02325267042636
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.02325267042636
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.02325267042639
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+96.02325267042637
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.02325267042637
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+96.02325267042637
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+96.02325267042637
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042637
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+96.02325267042637
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042637
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.02325267042637
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042637
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+240.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.02325267042636
+ 20
+240.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+240.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.02325267042636
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+240.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+478.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+518.0232526704265
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+438.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+428.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+438.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+428.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.0232526704264
+ 20
+20.5
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.0232526704264
+ 20
+14.5
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.0232526704264
+ 20
+14.5
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.0232526704264
+ 20
+20.5
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+468.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+468.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+468.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+468.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+478.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+468.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+478.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+468.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+398.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+398.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+398.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+398.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+398.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+398.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+518.0232526704265
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+528.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+518.0232526704265
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+528.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+518.0232526704265
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+518.0232526704265
+ 20
+20.5
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+518.0232526704265
+ 20
+14.5
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0232526704264
+ 20
+14.5
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0232526704264
+ 20
+20.5
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+558.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+558.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+558.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+558.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+518.0232526704265
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+488.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+488.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+488.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+488.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+478.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+488.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+478.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+488.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042637
+ 20
+320.50000000000006
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042637
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+33.508881852264786
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+33.508881852264786
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.508881852264786
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+18.818104996527182
+ 21
+300.9176577976636
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+18.818104996527182
+ 20
+300.9176577976636
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+5.684341886080803e-14
+ 20
+365.5
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.127328140789616
+ 20
+351.33531559532713
+ 30
+0.0
+ 11
+5.684341886080803e-14
+ 21
+365.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+18.818104996527182
+ 20
+300.9176577976636
+ 30
+0.0
+ 11
+4.127328140789616
+ 21
+351.33531559532713
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042637
+ 20
+320.50000000000006
+ 30
+0.0
+ 11
+86.02325267042634
+ 21
+365.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042634
+ 20
+365.50000000000006
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+410.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+2.8421709430404014e-14
+ 20
+365.5
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+410.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042632
+ 20
+410.50000000000006
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0232526704265
+ 20
+365.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+320.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0232526704265
+ 20
+410.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+365.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+654.0465053408527
+ 20
+365.5000000000004
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+320.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+649.9191772000632
+ 20
+351.33531559532753
+ 30
+0.0
+ 11
+635.2284003443256
+ 21
+300.91765779766394
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+654.0465053408527
+ 20
+365.5000000000004
+ 30
+0.0
+ 11
+649.9191772000632
+ 21
+351.33531559532753
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0232526704265
+ 20
+320.50000000000034
+ 30
+0.0
+ 11
+635.2284003443256
+ 21
+300.91765779766394
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0232526704265
+ 20
+320.50000000000034
+ 30
+0.0
+ 11
+620.5376234885883
+ 21
+250.50000000000037
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+635.2284003443257
+ 20
+300.917657797664
+ 30
+0.0
+ 11
+620.5376234885883
+ 21
+250.50000000000037
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0232526704265
+ 20
+250.5000000000003
+ 30
+0.0
+ 11
+620.5376234885883
+ 21
+250.50000000000037
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0232526704265
+ 20
+320.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+250.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704266
+ 20
+232.99520972727979
+ 30
+0.0
+ 11
+568.0232526704266
+ 21
+250.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.5376234885883
+ 20
+232.99520972727984
+ 30
+0.0
+ 11
+568.0232526704266
+ 21
+232.99520972727979
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.5376234885883
+ 20
+250.50000000000037
+ 30
+0.0
+ 11
+620.5376234885883
+ 21
+232.99520972727984
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+654.0465053408527
+ 20
+365.5000000000004
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+635.2284003443256
+ 20
+430.0823422023368
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+649.9191772000632
+ 20
+379.6646844046732
+ 30
+0.0
+ 11
+654.0465053408527
+ 21
+365.5000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+635.2284003443256
+ 20
+430.0823422023368
+ 30
+0.0
+ 11
+649.9191772000632
+ 21
+379.6646844046732
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.537623488588
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+635.2284003443256
+ 21
+430.0823422023368
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+620.537623488588
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+620.537623488588
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042633
+ 20
+410.5000000000003
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042632
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+33.50888185226472
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042633
+ 20
+410.5000000000003
+ 30
+0.0
+ 11
+33.50888185226472
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042632
+ 20
+498.0047902727208
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.50888185226472
+ 20
+498.0047902727208
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+498.0047902727208
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.50888185226472
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+33.50888185226472
+ 21
+498.0047902727208
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042633
+ 20
+410.5000000000003
+ 30
+0.0
+ 11
+18.818104996527126
+ 21
+430.08234220233675
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+18.818104996527126
+ 20
+430.08234220233675
+ 30
+0.0
+ 11
+33.50888185226472
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.127328140789559
+ 20
+379.6646844046731
+ 30
+0.0
+ 11
+18.818104996527126
+ 21
+430.0823422023367
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+365.5000000000003
+ 30
+0.0
+ 11
+4.127328140789559
+ 21
+379.6646844046731
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.02325267042636
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042632
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+518.0232526704266
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+528.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+478.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+518.0232526704266
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.0232526704264
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+478.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.0232526704264
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+327.02325267042636
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.02325267042636
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+266.0232526704264
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+266.0232526704264
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.02325267042636
+ 20
+576.7772439983707
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+576.7772439983707
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+576.7772439983707
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+576.7772439983707
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+256.02325267042636
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+256.0232526704264
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+256.02325267042636
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+256.0232526704264
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.02325267042636
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.02325267042636
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+337.02325267042636
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.02325267042636
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+337.02325267042636
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.02325267042636
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.02325267042633
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.02325267042634
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+136.02325267042633
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042634
+ 20
+480.5000000000002
+ 30
+0.0
+ 11
+126.02325267042634
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042634
+ 20
+480.5000000000002
+ 30
+0.0
+ 11
+86.02325267042634
+ 21
+480.5000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.537623488588
+ 20
+498.00479027272087
+ 30
+0.0
+ 11
+620.537623488588
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704265
+ 20
+498.00479027272087
+ 30
+0.0
+ 11
+620.537623488588
+ 21
+498.00479027272087
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+498.00479027272087
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.508881852264786
+ 20
+232.9952097272795
+ 30
+0.0
+ 11
+33.508881852264786
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042637
+ 20
+232.9952097272795
+ 30
+0.0
+ 11
+33.508881852264786
+ 21
+232.9952097272795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042637
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+232.9952097272795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+186.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+187.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+195.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+195.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+195.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+195.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+187.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+187.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+187.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.68991933709302
+ 20
+16.000000000000004
+ 30
+0.0
+ 11
+222.68991933709302
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.68991933709302
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+219.35658600375973
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+219.35658600375973
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+219.35658600375973
+ 21
+16.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+255.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+255.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+247.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+247.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.2732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+258.2732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.2732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+258.7732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.7732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+258.7732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.7732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+258.2732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.2732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+258.2732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.2732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+258.7732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.7732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+258.7732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.7732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+258.2732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.68991933709307
+ 20
+16.000000000000004
+ 30
+0.0
+ 11
+132.68991933709307
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.68991933709307
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+129.3565860037597
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.3565860037597
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+129.3565860037597
+ 21
+16.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.02325267042636
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+165.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+165.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+157.02325267042636
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.02325267042636
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+157.02325267042636
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.27325267042636
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+168.27325267042636
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.27325267042636
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+168.7732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.7732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+168.7732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.7732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+168.27325267042636
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.27325267042636
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+168.27325267042636
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.27325267042636
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+168.7732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.7732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+168.7732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.7732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+168.27325267042636
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.02325267042637
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+105.02325267042637
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.02325267042637
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+105.02325267042637
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.02325267042637
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+97.02325267042637
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.02325267042637
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+97.02325267042637
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+88.52325267042636
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+101.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+88.52325267042636
+ 20
+101.86363636363637
+ 30
+0.0
+ 11
+93.52325267042637
+ 21
+106.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.52325267042637
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+93.52325267042637
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.52325267042637
+ 20
+123.22727272727273
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+128.22727272727272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+88.52325267042636
+ 20
+128.22727272727272
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+88.52325267042636
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+142.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+88.52325267042636
+ 20
+142.77272727272728
+ 30
+0.0
+ 11
+93.52325267042637
+ 21
+147.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.52325267042637
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+93.52325267042637
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.52325267042637
+ 20
+164.13636363636363
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+169.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+88.52325267042636
+ 20
+169.13636363636363
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.4550708522446
+ 20
+258.25000000000006
+ 30
+0.0
+ 11
+337.86416176133554
+ 21
+258.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.86416176133554
+ 20
+258.25000000000006
+ 30
+0.0
+ 11
+337.86416176133554
+ 21
+257.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.86416176133554
+ 20
+257.75
+ 30
+0.0
+ 11
+349.4550708522446
+ 21
+257.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.4550708522446
+ 20
+257.75
+ 30
+0.0
+ 11
+349.4550708522446
+ 21
+258.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.18234357951735
+ 20
+258.25000000000006
+ 30
+0.0
+ 11
+365.59143448860823
+ 21
+258.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.59143448860823
+ 20
+258.25000000000006
+ 30
+0.0
+ 11
+365.59143448860823
+ 21
+257.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.59143448860823
+ 20
+257.75
+ 30
+0.0
+ 11
+377.18234357951735
+ 21
+257.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.18234357951735
+ 20
+257.75
+ 30
+0.0
+ 11
+377.18234357951735
+ 21
+258.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+315.9323435795173
+ 20
+243.00000000000003
+ 30
+0.0
+ 11
+315.9323435795173
+ 21
+248.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+315.9323435795173
+ 20
+248.00000000000006
+ 30
+0.0
+ 11
+304.84143448860823
+ 21
+248.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+304.84143448860823
+ 20
+248.00000000000006
+ 30
+0.0
+ 11
+304.84143448860823
+ 21
+243.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+288.20507085224455
+ 20
+243.00000000000003
+ 30
+0.0
+ 11
+288.20507085224455
+ 21
+248.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+288.20507085224455
+ 20
+248.00000000000006
+ 30
+0.0
+ 11
+277.11416176133554
+ 21
+248.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+277.11416176133554
+ 20
+248.00000000000006
+ 30
+0.0
+ 11
+277.11416176133554
+ 21
+243.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+434.68991933709304
+ 20
+16.000000000000004
+ 30
+0.0
+ 11
+434.68991933709304
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+434.68991933709304
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+431.3565860037598
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+431.3565860037598
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+431.3565860037598
+ 21
+16.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+459.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+467.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+467.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+467.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+467.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+459.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+459.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+459.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.2732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+470.2732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.2732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+470.7732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.7732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+470.7732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.7732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+470.2732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.2732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+470.2732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.2732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+470.7732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.7732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+470.7732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.7732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+470.2732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+407.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+407.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+399.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+399.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+101.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.5232526704264
+ 20
+101.86363636363637
+ 30
+0.0
+ 11
+395.52325267042636
+ 21
+106.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.52325267042636
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+395.52325267042636
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.52325267042636
+ 20
+123.22727272727273
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+128.22727272727272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.5232526704264
+ 20
+128.22727272727272
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+142.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.5232526704264
+ 20
+142.77272727272728
+ 30
+0.0
+ 11
+395.52325267042636
+ 21
+147.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.52325267042636
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+395.52325267042636
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.52325267042636
+ 20
+164.13636363636363
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+169.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.5232526704264
+ 20
+169.13636363636363
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.689919337093
+ 20
+16.000000000000004
+ 30
+0.0
+ 11
+524.689919337093
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.689919337093
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+521.3565860037598
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+521.3565860037598
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+521.3565860037598
+ 21
+16.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+549.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+557.0232526704265
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+557.0232526704265
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+557.0232526704265
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+557.0232526704265
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+549.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+549.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+549.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2732526704265
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+560.2732526704265
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2732526704265
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+560.7732526704265
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.7732526704265
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+560.7732526704265
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.7732526704265
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+560.2732526704265
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2732526704265
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+560.2732526704265
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2732526704265
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+560.7732526704265
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.7732526704265
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+560.7732526704265
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.7732526704265
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+560.2732526704265
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+497.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+497.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+497.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+497.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+489.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+489.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+480.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+101.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+480.5232526704264
+ 20
+101.86363636363637
+ 30
+0.0
+ 11
+485.5232526704264
+ 21
+106.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+485.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+485.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+485.5232526704264
+ 20
+123.22727272727273
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+128.22727272727272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+480.5232526704264
+ 20
+128.22727272727272
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+480.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+142.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+480.5232526704264
+ 20
+142.77272727272728
+ 30
+0.0
+ 11
+485.5232526704264
+ 21
+147.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+485.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+485.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+485.5232526704264
+ 20
+164.13636363636363
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+169.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+480.5232526704264
+ 20
+169.13636363636363
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.835549148350456
+ 20
+321.2261564960398
+ 30
+0.0
+ 11
+21.79874965689743
+ 21
+338.5120791976936
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.79874965689743
+ 20
+338.5120791976936
+ 30
+0.0
+ 11
+21.318712887798146
+ 21
+338.37220532481973
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.318712887798146
+ 20
+338.37220532481973
+ 30
+0.0
+ 11
+26.35551237925117
+ 21
+321.08628262316597
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.35551237925117
+ 20
+321.08628262316597
+ 30
+0.0
+ 11
+26.835549148350456
+ 21
+321.2261564960398
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+632.2477556839555
+ 20
+338.5120791976939
+ 30
+0.0
+ 11
+627.2109561925024
+ 21
+321.22615649604006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+627.2109561925024
+ 20
+321.22615649604006
+ 30
+0.0
+ 11
+627.6909929616016
+ 21
+321.08628262316626
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+627.6909929616016
+ 20
+321.08628262316626
+ 30
+0.0
+ 11
+632.7277924530547
+ 21
+338.37220532482
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+632.7277924530547
+ 20
+338.37220532482
+ 30
+0.0
+ 11
+632.2477556839555
+ 21
+338.5120791976939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+603.0328332158676
+ 20
+237.37140729545996
+ 30
+0.0
+ 11
+603.0328332158676
+ 21
+246.12380243182022
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+603.0328332158676
+ 20
+246.12380243182022
+ 30
+0.0
+ 11
+585.5280429431472
+ 21
+246.1238024318202
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+585.5280429431472
+ 20
+246.1238024318202
+ 30
+0.0
+ 11
+585.5280429431472
+ 21
+237.37140729545993
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+627.2109561925023
+ 20
+409.7738435039606
+ 30
+0.0
+ 11
+632.2477556839555
+ 21
+392.4879208023068
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+632.2477556839555
+ 20
+392.4879208023068
+ 30
+0.0
+ 11
+632.7277924530547
+ 21
+392.62779467518067
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+632.7277924530547
+ 20
+392.62779467518067
+ 30
+0.0
+ 11
+627.6909929616015
+ 21
+409.9137173768344
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+627.6909929616015
+ 20
+409.9137173768344
+ 30
+0.0
+ 11
+627.2109561925023
+ 21
+409.7738435039606
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.013672124985256
+ 20
+493.62859270454067
+ 30
+0.0
+ 11
+51.013672124985256
+ 21
+484.87619756818043
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.013672124985256
+ 20
+484.87619756818043
+ 30
+0.0
+ 11
+68.51846239770579
+ 21
+484.87619756818043
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.51846239770579
+ 20
+484.87619756818043
+ 30
+0.0
+ 11
+68.51846239770579
+ 21
+493.62859270454067
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.798749656897375
+ 20
+392.48792080230663
+ 30
+0.0
+ 11
+26.8355491483504
+ 21
+409.7738435039605
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.8355491483504
+ 20
+409.7738435039605
+ 30
+0.0
+ 11
+26.355512379251113
+ 21
+409.9137173768343
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.355512379251113
+ 20
+409.9137173768343
+ 30
+0.0
+ 11
+21.318712887798085
+ 21
+392.62779467518044
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.318712887798085
+ 20
+392.62779467518044
+ 30
+0.0
+ 11
+21.798749656897375
+ 21
+392.48792080230663
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.59143448860823
+ 20
+472.7500000000003
+ 30
+0.0
+ 11
+377.18234357951735
+ 21
+472.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.18234357951735
+ 20
+472.7500000000003
+ 30
+0.0
+ 11
+377.18234357951735
+ 21
+473.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.18234357951735
+ 20
+473.2500000000003
+ 30
+0.0
+ 11
+365.59143448860823
+ 21
+473.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.59143448860823
+ 20
+473.2500000000003
+ 30
+0.0
+ 11
+365.59143448860823
+ 21
+472.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.86416176133554
+ 20
+472.7500000000003
+ 30
+0.0
+ 11
+349.4550708522446
+ 21
+472.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.4550708522446
+ 20
+472.7500000000003
+ 30
+0.0
+ 11
+349.4550708522446
+ 21
+473.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.4550708522446
+ 20
+473.2500000000003
+ 30
+0.0
+ 11
+337.86416176133554
+ 21
+473.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.86416176133554
+ 20
+473.2500000000003
+ 30
+0.0
+ 11
+337.86416176133554
+ 21
+472.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+521.1065860037598
+ 20
+475.75000000000034
+ 30
+0.0
+ 11
+524.9399193370932
+ 21
+475.75000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.9399193370932
+ 20
+475.75000000000034
+ 30
+0.0
+ 11
+524.9399193370932
+ 21
+476.25000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.9399193370932
+ 20
+476.25000000000034
+ 30
+0.0
+ 11
+521.1065860037598
+ 21
+476.25000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+521.1065860037598
+ 20
+476.25000000000034
+ 30
+0.0
+ 11
+521.1065860037598
+ 21
+475.75000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+431.1065860037598
+ 20
+475.75000000000034
+ 30
+0.0
+ 11
+434.9399193370931
+ 21
+475.75000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+434.9399193370931
+ 20
+475.75000000000034
+ 30
+0.0
+ 11
+434.9399193370931
+ 21
+476.25000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+434.9399193370931
+ 20
+476.25000000000034
+ 30
+0.0
+ 11
+431.1065860037598
+ 21
+476.25000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+431.1065860037598
+ 20
+476.25000000000034
+ 30
+0.0
+ 11
+431.1065860037598
+ 21
+475.75000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+309.02325267042636
+ 20
+535.1386219991855
+ 30
+0.0
+ 11
+298.0232526704264
+ 21
+535.1386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+298.0232526704264
+ 20
+535.1386219991855
+ 30
+0.0
+ 11
+298.0232526704264
+ 21
+522.1386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+298.0232526704264
+ 20
+522.1386219991855
+ 30
+0.0
+ 11
+309.02325267042636
+ 21
+522.1386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+309.02325267042636
+ 20
+522.1386219991855
+ 30
+0.0
+ 11
+309.02325267042636
+ 21
+535.1386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+277.52325267042636
+ 20
+533.6386219991856
+ 30
+0.0
+ 11
+271.5232526704264
+ 21
+533.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+271.5232526704264
+ 20
+533.6386219991856
+ 30
+0.0
+ 11
+271.5232526704264
+ 21
+523.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+271.5232526704264
+ 20
+523.6386219991856
+ 30
+0.0
+ 11
+277.52325267042636
+ 21
+523.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+277.52325267042636
+ 20
+523.6386219991856
+ 30
+0.0
+ 11
+277.52325267042636
+ 21
+533.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+304.59143448860823
+ 20
+569.0272439983709
+ 30
+0.0
+ 11
+316.1823435795173
+ 21
+569.0272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+316.1823435795173
+ 20
+569.0272439983709
+ 30
+0.0
+ 11
+316.1823435795173
+ 21
+569.5272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+316.1823435795173
+ 20
+569.5272439983709
+ 30
+0.0
+ 11
+304.59143448860823
+ 21
+569.5272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+304.59143448860823
+ 20
+569.5272439983709
+ 30
+0.0
+ 11
+304.59143448860823
+ 21
+569.0272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.8641617613354
+ 20
+569.027243998371
+ 30
+0.0
+ 11
+288.4550708522445
+ 21
+569.0272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+288.4550708522445
+ 20
+569.0272439983709
+ 30
+0.0
+ 11
+288.4550708522445
+ 21
+569.5272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+288.4550708522445
+ 20
+569.5272439983709
+ 30
+0.0
+ 11
+276.8641617613354
+ 21
+569.527243998371
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.8641617613354
+ 20
+569.527243998371
+ 30
+0.0
+ 11
+276.8641617613354
+ 21
+569.027243998371
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.5232526704264
+ 20
+524.6386219991856
+ 30
+0.0
+ 11
+263.5232526704264
+ 21
+524.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+263.5232526704264
+ 20
+524.6386219991856
+ 30
+0.0
+ 11
+263.5232526704264
+ 21
+532.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+263.5232526704264
+ 20
+532.6386219991856
+ 30
+0.0
+ 11
+258.5232526704264
+ 21
+532.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.5232526704264
+ 20
+532.6386219991856
+ 30
+0.0
+ 11
+329.5232526704264
+ 21
+532.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.5232526704264
+ 20
+532.6386219991856
+ 30
+0.0
+ 11
+329.5232526704264
+ 21
+524.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.5232526704264
+ 20
+524.6386219991856
+ 30
+0.0
+ 11
+334.5232526704264
+ 21
+524.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+219.1065860037597
+ 20
+475.7500000000003
+ 30
+0.0
+ 11
+222.93991933709304
+ 21
+475.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.93991933709304
+ 20
+475.7500000000003
+ 30
+0.0
+ 11
+222.93991933709304
+ 21
+476.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.93991933709304
+ 20
+476.2500000000003
+ 30
+0.0
+ 11
+219.1065860037597
+ 21
+476.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+219.1065860037597
+ 20
+476.2500000000003
+ 30
+0.0
+ 11
+219.1065860037597
+ 21
+475.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.1065860037597
+ 20
+475.7500000000003
+ 30
+0.0
+ 11
+132.93991933709302
+ 21
+475.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.93991933709302
+ 20
+475.7500000000003
+ 30
+0.0
+ 11
+132.93991933709302
+ 21
+476.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.93991933709302
+ 20
+476.2500000000003
+ 30
+0.0
+ 11
+129.1065860037597
+ 21
+476.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.1065860037597
+ 20
+476.2500000000003
+ 30
+0.0
+ 11
+129.1065860037597
+ 21
+475.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+585.528042943147
+ 20
+493.6285927045408
+ 30
+0.0
+ 11
+585.528042943147
+ 21
+484.8761975681805
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+585.528042943147
+ 20
+484.8761975681805
+ 30
+0.0
+ 11
+603.0328332158675
+ 21
+484.8761975681805
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+603.0328332158675
+ 20
+484.8761975681805
+ 30
+0.0
+ 11
+603.0328332158675
+ 21
+493.6285927045408
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.51846239770585
+ 20
+237.37140729545965
+ 30
+0.0
+ 11
+68.51846239770585
+ 21
+246.12380243181988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.51846239770585
+ 20
+246.12380243181988
+ 30
+0.0
+ 11
+51.01367212498531
+ 21
+246.12380243181988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.01367212498531
+ 20
+246.12380243181988
+ 30
+0.0
+ 11
+51.01367212498531
+ 21
+237.37140729545965
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+101.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.5232526704264
+ 20
+101.86363636363637
+ 30
+0.0
+ 11
+183.5232526704264
+ 21
+106.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+183.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+183.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+183.5232526704264
+ 20
+123.22727272727273
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+128.22727272727272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.5232526704264
+ 20
+128.22727272727272
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+142.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.5232526704264
+ 20
+142.77272727272728
+ 30
+0.0
+ 11
+183.5232526704264
+ 21
+147.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+183.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+183.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+183.5232526704264
+ 20
+164.13636363636363
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+169.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.5232526704264
+ 20
+169.13636363636363
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+824.3550614105757
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+762.7007833757143
+ 20
+166.0
+ 30
+0.0
+ 11
+824.3550614105757
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+762.7007833757143
+ 20
+166.0
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+834.3550614105757
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+824.3550614105757
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+834.3550614105757
+ 20
+166.0
+ 30
+0.0
+ 11
+834.3550614105757
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+824.3550614105757
+ 20
+166.0
+ 30
+0.0
+ 11
+834.3550614105757
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+735.7007833757143
+ 20
+166.0
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+735.7007833757143
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+762.7007833757143
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+674.0465053408527
+ 20
+166.0
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+735.7007833757143
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+674.0465053408527
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+664.0465053408527
+ 20
+166.0
+ 30
+0.0
+ 11
+674.0465053408527
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+664.0465053408527
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+664.0465053408527
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+674.0465053408527
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+664.0465053408527
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+762.7007833757143
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+735.7007833757143
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+762.7007833757143
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+762.7007833757143
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+735.7007833757143
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+762.7007833757143
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+762.7007833757143
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+735.7007833757143
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+735.7007833757143
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+735.7007833757143
+ 20
+0.0
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+762.7007833757143
+ 20
+0.0
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+762.7007833757143
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+831.8550614105757
+ 20
+154.90909090909093
+ 30
+0.0
+ 11
+826.8550614105757
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+826.8550614105757
+ 20
+154.90909090909093
+ 30
+0.0
+ 11
+826.8550614105757
+ 21
+143.8181818181818
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+826.8550614105757
+ 20
+143.8181818181818
+ 30
+0.0
+ 11
+831.8550614105757
+ 21
+143.8181818181818
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+831.8550614105757
+ 20
+127.1818181818182
+ 30
+0.0
+ 11
+826.8550614105757
+ 21
+127.1818181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+826.8550614105757
+ 20
+127.1818181818182
+ 30
+0.0
+ 11
+826.8550614105757
+ 21
+116.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+826.8550614105757
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+831.8550614105757
+ 21
+116.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+758.2007833757143
+ 20
+102.50000000000001
+ 30
+0.0
+ 11
+758.2007833757143
+ 21
+108.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+758.2007833757143
+ 20
+108.50000000000001
+ 30
+0.0
+ 11
+740.2007833757143
+ 21
+108.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+740.2007833757143
+ 20
+108.50000000000001
+ 30
+0.0
+ 11
+740.2007833757143
+ 21
+102.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+740.2007833757143
+ 20
+102.50000000000001
+ 30
+0.0
+ 11
+758.2007833757143
+ 21
+102.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+744.4507833757143
+ 20
+158.25000000000003
+ 30
+0.0
+ 11
+753.9507833757143
+ 21
+158.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+753.9507833757143
+ 20
+158.25000000000003
+ 30
+0.0
+ 11
+753.9507833757143
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+753.9507833757143
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+744.4507833757143
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+744.4507833757143
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+744.4507833757143
+ 21
+158.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+666.5465053408528
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+671.5465053408527
+ 21
+116.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+671.5465053408527
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+671.5465053408527
+ 21
+127.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+671.5465053408527
+ 20
+127.18181818181822
+ 30
+0.0
+ 11
+666.5465053408528
+ 21
+127.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+666.5465053408528
+ 20
+143.81818181818184
+ 30
+0.0
+ 11
+671.5465053408527
+ 21
+143.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+671.5465053408527
+ 20
+143.81818181818184
+ 30
+0.0
+ 11
+671.5465053408527
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+671.5465053408527
+ 20
+154.90909090909093
+ 30
+0.0
+ 11
+666.5465053408528
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+753.7007833757143
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+753.7007833757143
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+753.7007833757143
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+744.7007833757143
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+744.7007833757143
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+744.7007833757143
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+853.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+914.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+914.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+853.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+853.3550614105757
+ 20
+116.50000000000001
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+889.3550614105757
+ 20
+116.50000000000001
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+116.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+889.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+889.3550614105757
+ 21
+116.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+921.3550614105756
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+921.3550614105756
+ 20
+147.5
+ 30
+0.0
+ 11
+921.3550614105756
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+914.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+921.3550614105756
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+914.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+878.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+878.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+878.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+938.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+938.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+938.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+914.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+938.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+974.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+938.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+974.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+974.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+938.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+974.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+878.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+854.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+854.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+878.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+854.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+854.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+844.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+854.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+844.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+844.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+854.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+844.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+846.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+846.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+846.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+853.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+846.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+877.3550614105757
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+880.8550614105757
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+880.8550614105757
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+877.3550614105757
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+877.3550614105757
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+865.3550614105757
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+865.3550614105757
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+861.8550614105757
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+861.8550614105757
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+865.3550614105757
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+919.6050614105757
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+916.1050614105757
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.1050614105757
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+916.1050614105757
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.1050614105757
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+919.6050614105757
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+891.4693471248614
+ 20
+202.25000000000003
+ 30
+0.0
+ 11
+891.4693471248614
+ 21
+184.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+891.4693471248614
+ 20
+184.25
+ 30
+0.0
+ 11
+912.04077569629
+ 21
+184.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+912.04077569629
+ 20
+184.25
+ 30
+0.0
+ 11
+912.04077569629
+ 21
+202.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+912.04077569629
+ 20
+202.25000000000003
+ 30
+0.0
+ 11
+891.4693471248614
+ 21
+202.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+914.8550614105757
+ 20
+160.75000000000003
+ 30
+0.0
+ 11
+914.8550614105757
+ 21
+157.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+914.8550614105757
+ 20
+157.75000000000003
+ 30
+0.0
+ 11
+917.8550614105757
+ 21
+157.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+917.8550614105757
+ 20
+157.75000000000003
+ 30
+0.0
+ 11
+917.8550614105757
+ 21
+160.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+917.8550614105757
+ 20
+160.75000000000003
+ 30
+0.0
+ 11
+914.8550614105757
+ 21
+160.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+159.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+159.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+159.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+159.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+197.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+196.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+196.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+196.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+196.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+197.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+197.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+197.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+934.8550614105757
+ 20
+198.25000000000003
+ 30
+0.0
+ 11
+934.8550614105757
+ 21
+195.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+934.8550614105757
+ 20
+195.25000000000003
+ 30
+0.0
+ 11
+937.8550614105757
+ 21
+195.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+937.8550614105757
+ 20
+195.25000000000003
+ 30
+0.0
+ 11
+937.8550614105757
+ 21
+198.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+937.8550614105757
+ 20
+198.25000000000003
+ 30
+0.0
+ 11
+934.8550614105757
+ 21
+198.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+930.6050614105757
+ 20
+155.25000000000003
+ 30
+0.0
+ 11
+922.1050614105757
+ 21
+155.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+922.1050614105757
+ 20
+155.25000000000003
+ 30
+0.0
+ 11
+922.1050614105757
+ 21
+154.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+922.1050614105757
+ 20
+154.75
+ 30
+0.0
+ 11
+930.6050614105757
+ 21
+154.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+930.6050614105757
+ 20
+154.75
+ 30
+0.0
+ 11
+930.6050614105757
+ 21
+155.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+922.1050614105757
+ 20
+203.00000000000003
+ 30
+0.0
+ 11
+930.6050614105757
+ 21
+203.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+930.6050614105757
+ 20
+203.00000000000003
+ 30
+0.0
+ 11
+930.6050614105757
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+930.6050614105757
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+922.1050614105757
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+922.1050614105757
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+922.1050614105757
+ 21
+203.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+943.9093471248614
+ 20
+204.02
+ 30
+0.0
+ 11
+943.9093471248614
+ 21
+191.02
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+943.9093471248614
+ 20
+191.02
+ 30
+0.0
+ 11
+964.4807756962899
+ 21
+191.02
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+964.4807756962899
+ 20
+191.02
+ 30
+0.0
+ 11
+964.4807756962899
+ 21
+204.02
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+964.4807756962899
+ 20
+204.02
+ 30
+0.0
+ 11
+943.9093471248614
+ 21
+204.02
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+962.6050614105756
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+950.1050614105757
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+950.1050614105757
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+950.1050614105757
+ 21
+152.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+950.1050614105757
+ 20
+152.5
+ 30
+0.0
+ 11
+962.6050614105756
+ 21
+152.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+962.6050614105756
+ 20
+152.5
+ 30
+0.0
+ 11
+962.6050614105756
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+966.6050614105757
+ 20
+169.93181818181822
+ 30
+0.0
+ 11
+966.6050614105757
+ 21
+158.3409090909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+966.6050614105757
+ 20
+158.3409090909091
+ 30
+0.0
+ 11
+967.1050614105757
+ 21
+158.3409090909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+967.1050614105757
+ 20
+158.3409090909091
+ 30
+0.0
+ 11
+967.1050614105757
+ 21
+169.93181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+967.1050614105757
+ 20
+169.93181818181822
+ 30
+0.0
+ 11
+966.6050614105757
+ 21
+169.93181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+966.6050614105757
+ 20
+197.65909090909093
+ 30
+0.0
+ 11
+966.6050614105757
+ 21
+186.06818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+966.6050614105757
+ 20
+186.06818181818184
+ 30
+0.0
+ 11
+967.1050614105757
+ 21
+186.06818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+967.1050614105757
+ 20
+186.06818181818184
+ 30
+0.0
+ 11
+967.1050614105757
+ 21
+197.65909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+967.1050614105757
+ 20
+197.65909090909093
+ 30
+0.0
+ 11
+966.6050614105757
+ 21
+197.65909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+854.8550614105757
+ 20
+160.75000000000003
+ 30
+0.0
+ 11
+854.8550614105757
+ 21
+157.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+854.8550614105757
+ 20
+157.75000000000003
+ 30
+0.0
+ 11
+857.8550614105756
+ 21
+157.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+857.8550614105756
+ 20
+157.75000000000003
+ 30
+0.0
+ 11
+857.8550614105756
+ 21
+160.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+857.8550614105756
+ 20
+160.75000000000003
+ 30
+0.0
+ 11
+854.8550614105757
+ 21
+160.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+159.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+159.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+159.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+159.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+161.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+163.75
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+166.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+177.25
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+179.75
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+182.25
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+188.75
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+191.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+197.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+196.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+196.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+196.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+196.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+197.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+197.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+197.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+874.8550614105757
+ 20
+198.25000000000003
+ 30
+0.0
+ 11
+874.8550614105757
+ 21
+195.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+874.8550614105757
+ 20
+195.25000000000003
+ 30
+0.0
+ 11
+877.8550614105757
+ 21
+195.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+877.8550614105757
+ 20
+195.25000000000003
+ 30
+0.0
+ 11
+877.8550614105757
+ 21
+198.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+877.8550614105757
+ 20
+198.25000000000003
+ 30
+0.0
+ 11
+874.8550614105757
+ 21
+198.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+870.6050614105757
+ 20
+155.25000000000003
+ 30
+0.0
+ 11
+862.1050614105756
+ 21
+155.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+862.1050614105756
+ 20
+155.25000000000003
+ 30
+0.0
+ 11
+862.1050614105756
+ 21
+154.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+862.1050614105756
+ 20
+154.75
+ 30
+0.0
+ 11
+870.6050614105757
+ 21
+154.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+870.6050614105757
+ 20
+154.75
+ 30
+0.0
+ 11
+870.6050614105757
+ 21
+155.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+862.1050614105756
+ 20
+203.00000000000003
+ 30
+0.0
+ 11
+870.6050614105757
+ 21
+203.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+870.6050614105757
+ 20
+203.00000000000003
+ 30
+0.0
+ 11
+870.6050614105757
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+870.6050614105757
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+862.1050614105756
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+862.1050614105756
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+862.1050614105756
+ 21
+203.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+846.8550614105757
+ 20
+158.59090909090912
+ 30
+0.0
+ 11
+851.8550614105757
+ 21
+158.59090909090912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+851.8550614105757
+ 20
+158.59090909090912
+ 30
+0.0
+ 11
+851.8550614105757
+ 21
+169.68181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+851.8550614105757
+ 20
+169.68181818181822
+ 30
+0.0
+ 11
+846.8550614105757
+ 21
+169.68181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+846.8550614105757
+ 20
+186.31818181818184
+ 30
+0.0
+ 11
+851.8550614105757
+ 21
+186.31818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+851.8550614105757
+ 20
+186.31818181818184
+ 30
+0.0
+ 11
+851.8550614105757
+ 21
+197.40909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+851.8550614105757
+ 20
+197.40909090909093
+ 30
+0.0
+ 11
+846.8550614105757
+ 21
+197.40909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+848.1050614105757
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+851.6050614105757
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+851.6050614105757
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+851.6050614105757
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+851.6050614105757
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+848.1050614105757
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithManyDCMounts/graph-lasercutter.svg b/rocolib/builders/output/BoatWithManyDCMounts/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..53e6ed0b9d7867e3f64028f6af03db76e4fe084a
--- /dev/null
+++ b/rocolib/builders/output/BoatWithManyDCMounts/graph-lasercutter.svg
@@ -0,0 +1,787 @@
+<?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="576.777244mm" version="1.1" viewBox="0.000000 0.000000 974.355061 576.777244" width="974.355061mm">
+  <defs/>
+  <line stroke="#000000" x1="216.02325267042636" x2="186.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="216.02325267042636" x2="216.02325267042636" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="186.0232526704264" x2="216.02325267042636" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="186.0232526704264" x2="186.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="216.02325267042636" x2="226.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="226.0232526704264" x2="226.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="226.0232526704264" x2="216.02325267042636" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="226.0232526704264" x2="226.0232526704264" y1="90.50000000000001" y2="20.5"/>
+  <line stroke="#000000" x1="216.02325267042636" x2="216.02325267042636" y1="20.5" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="216.02325267042636" x2="216.02325267042636" y1="14.5" y2="20.5"/>
+  <line stroke="#000000" x1="226.0232526704264" x2="216.02325267042636" y1="14.5" y2="14.5"/>
+  <line stroke="#000000" x1="226.0232526704264" x2="226.0232526704264" y1="20.5" y2="14.5"/>
+  <line stroke="#000000" x1="256.0232526704264" x2="226.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="256.0232526704264" x2="256.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="226.0232526704264" x2="256.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="256.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="266.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="256.0232526704264" x2="266.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="216.02325267042636" x2="216.02325267042636" y1="180.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="226.0232526704264" x2="226.0232526704264" y1="250.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="126.02325267042639" x2="86.02325267042637" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="176.0232526704264" x2="136.02325267042636" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="216.02325267042636" x2="176.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="226.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="266.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042637" x2="86.02325267042637" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="126.02325267042639" x2="126.02325267042639" y1="180.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="136.02325267042636" x2="126.02325267042639" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="136.02325267042636" x2="136.02325267042636" y1="250.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="126.02325267042639" x2="136.02325267042636" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="136.02325267042636" x2="136.02325267042636" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="126.02325267042639" x2="126.02325267042639" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="136.02325267042636" x2="136.02325267042636" y1="90.50000000000001" y2="20.5"/>
+  <line stroke="#000000" x1="126.02325267042639" x2="126.02325267042639" y1="20.5" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="126.02325267042639" x2="126.02325267042639" y1="14.5" y2="20.5"/>
+  <line stroke="#000000" x1="136.02325267042636" x2="126.02325267042639" y1="14.5" y2="14.5"/>
+  <line stroke="#000000" x1="136.02325267042636" x2="136.02325267042636" y1="20.5" y2="14.5"/>
+  <line stroke="#000000" x1="166.02325267042636" x2="136.02325267042636" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.02325267042636" x2="166.02325267042636" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="136.02325267042636" x2="166.02325267042636" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="176.0232526704264" x2="166.02325267042636" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="176.0232526704264" x2="176.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="166.02325267042636" x2="176.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="126.02325267042639" x2="96.02325267042637" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="96.02325267042637" x2="126.02325267042639" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.02325267042637" x2="96.02325267042637" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="86.02325267042637" x2="96.02325267042637" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042637" x2="86.02325267042637" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="96.02325267042637" x2="86.02325267042637" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="388.0232526704264" x2="327.02325267042636" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="568.0232526704264" x2="568.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042637" x2="86.02325267042637" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="266.0232526704264" y1="240.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="327.02325267042636" x2="266.0232526704264" y1="240.50000000000003" y2="240.50000000000003"/>
+  <line stroke="#000000" x1="327.02325267042636" x2="327.02325267042636" y1="250.50000000000003" y2="240.50000000000003"/>
+  <line stroke="#000000" x1="428.0232526704264" x2="388.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="478.0232526704264" x2="438.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="518.0232526704265" x2="478.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="568.0232526704264" x2="528.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="568.0232526704264" x2="568.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="388.0232526704264" x2="388.0232526704264" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="428.0232526704264" x2="428.0232526704264" y1="180.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="438.0232526704264" x2="428.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="438.0232526704264" x2="438.0232526704264" y1="250.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="428.0232526704264" x2="438.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="438.0232526704264" x2="438.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="428.0232526704264" x2="428.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="438.0232526704264" x2="438.0232526704264" y1="90.50000000000001" y2="20.5"/>
+  <line stroke="#000000" x1="428.0232526704264" x2="428.0232526704264" y1="20.5" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="428.0232526704264" x2="428.0232526704264" y1="14.5" y2="20.5"/>
+  <line stroke="#000000" x1="438.0232526704264" x2="428.0232526704264" y1="14.5" y2="14.5"/>
+  <line stroke="#000000" x1="438.0232526704264" x2="438.0232526704264" y1="20.5" y2="14.5"/>
+  <line stroke="#000000" x1="468.0232526704264" x2="438.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="468.0232526704264" x2="468.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="438.0232526704264" x2="468.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="478.0232526704264" x2="468.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="478.0232526704264" x2="478.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="468.0232526704264" x2="478.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="428.0232526704264" x2="398.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="398.0232526704264" x2="428.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="398.0232526704264" x2="398.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="388.0232526704264" x2="398.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="388.0232526704264" x2="388.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="398.0232526704264" x2="388.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="518.0232526704265" x2="518.0232526704265" y1="180.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="528.0232526704264" x2="518.0232526704265" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="528.0232526704264" x2="528.0232526704264" y1="250.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="518.0232526704265" x2="528.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="528.0232526704264" x2="528.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="518.0232526704265" x2="518.0232526704265" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="528.0232526704264" x2="528.0232526704264" y1="90.50000000000001" y2="20.5"/>
+  <line stroke="#000000" x1="518.0232526704265" x2="518.0232526704265" y1="20.5" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="518.0232526704265" x2="518.0232526704265" y1="14.5" y2="20.5"/>
+  <line stroke="#000000" x1="528.0232526704264" x2="518.0232526704265" y1="14.5" y2="14.5"/>
+  <line stroke="#000000" x1="528.0232526704264" x2="528.0232526704264" y1="20.5" y2="14.5"/>
+  <line stroke="#000000" x1="558.0232526704264" x2="528.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="558.0232526704264" x2="558.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="528.0232526704264" x2="558.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="568.0232526704264" x2="558.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="568.0232526704264" x2="568.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="558.0232526704264" x2="568.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="518.0232526704265" x2="488.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="488.0232526704264" x2="518.0232526704265" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="488.0232526704264" x2="488.0232526704264" y1="180.50000000000003" y2="90.50000000000001"/>
+  <line stroke="#000000" x1="478.0232526704264" x2="488.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="478.0232526704264" x2="478.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="488.0232526704264" x2="478.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042637" x2="568.0232526704264" y1="320.50000000000006" y2="320.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042637" x2="86.02325267042637" y1="250.50000000000003" y2="320.50000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="33.508881852264786" x2="86.02325267042637" y1="250.50000000000003" y2="320.50000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="33.508881852264786" x2="86.02325267042637" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="33.508881852264786" x2="18.818104996527182" y1="250.50000000000003" y2="300.9176577976636"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="18.818104996527182" x2="86.02325267042637" y1="300.9176577976636" y2="320.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="5.684341886080803e-14" x2="86.02325267042637" y1="365.5" y2="320.50000000000006"/>
+  <line stroke="#000000" x1="4.127328140789616" x2="5.684341886080803e-14" y1="351.33531559532713" y2="365.5"/>
+  <line stroke="#000000" x1="18.818104996527182" x2="4.127328140789616" y1="300.9176577976636" y2="351.33531559532713"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042637" x2="86.02325267042634" y1="320.50000000000006" y2="365.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042634" x2="86.02325267042632" y1="365.50000000000006" y2="410.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.8421709430404014e-14" x2="86.02325267042632" y1="365.5" y2="410.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042632" x2="568.0232526704265" y1="410.50000000000006" y2="410.50000000000034"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="568.0232526704265" x2="568.0232526704265" y1="365.50000000000034" y2="320.50000000000034"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="568.0232526704265" x2="568.0232526704265" y1="410.50000000000034" y2="365.50000000000034"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="654.0465053408527" x2="568.0232526704265" y1="365.5000000000004" y2="320.50000000000034"/>
+  <line stroke="#000000" x1="649.9191772000632" x2="635.2284003443256" y1="351.33531559532753" y2="300.91765779766394"/>
+  <line stroke="#000000" x1="654.0465053408527" x2="649.9191772000632" y1="365.5000000000004" y2="351.33531559532753"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="568.0232526704265" x2="635.2284003443256" y1="320.50000000000034" y2="300.91765779766394"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="568.0232526704265" x2="620.5376234885883" y1="320.50000000000034" y2="250.50000000000037"/>
+  <line stroke="#000000" x1="635.2284003443257" x2="620.5376234885883" y1="300.917657797664" y2="250.50000000000037"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="568.0232526704265" x2="620.5376234885883" y1="250.5000000000003" y2="250.50000000000037"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="568.0232526704265" x2="568.0232526704265" y1="320.50000000000034" y2="250.5000000000003"/>
+  <line stroke="#000000" x1="568.0232526704266" x2="568.0232526704266" y1="232.99520972727979" y2="250.5000000000003"/>
+  <line stroke="#000000" x1="620.5376234885883" x2="568.0232526704266" y1="232.99520972727984" y2="232.99520972727979"/>
+  <line stroke="#000000" x1="620.5376234885883" x2="620.5376234885883" y1="250.50000000000037" y2="232.99520972727984"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="654.0465053408527" x2="568.0232526704264" y1="365.5000000000004" y2="410.50000000000034"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="635.2284003443256" x2="568.0232526704264" y1="430.0823422023368" y2="410.50000000000034"/>
+  <line stroke="#000000" x1="649.9191772000632" x2="654.0465053408527" y1="379.6646844046732" y2="365.5000000000004"/>
+  <line stroke="#000000" x1="635.2284003443256" x2="649.9191772000632" y1="430.0823422023368" y2="379.6646844046732"/>
+  <line stroke="#000000" x1="620.537623488588" x2="635.2284003443256" y1="480.50000000000034" y2="430.0823422023368"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.537623488588" x2="568.0232526704265" y1="480.50000000000034" y2="410.50000000000034"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="568.0232526704265" x2="568.0232526704265" y1="480.50000000000034" y2="410.50000000000034"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.537623488588" x2="568.0232526704265" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042633" x2="86.02325267042632" y1="410.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042632" x2="33.50888185226472" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042633" x2="33.50888185226472" y1="410.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="86.02325267042632" x2="86.02325267042632" y1="498.0047902727208" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="33.50888185226472" x2="86.02325267042632" y1="498.0047902727208" y2="498.0047902727208"/>
+  <line stroke="#000000" x1="33.50888185226472" x2="33.50888185226472" y1="480.5000000000003" y2="498.0047902727208"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042633" x2="18.818104996527126" y1="410.5000000000003" y2="430.08234220233675"/>
+  <line stroke="#000000" x1="18.818104996527126" x2="33.50888185226472" y1="430.08234220233675" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="4.127328140789559" x2="18.818104996527126" y1="379.6646844046731" y2="430.0823422023367"/>
+  <line stroke="#000000" x1="0.0" x2="4.127328140789559" y1="365.5000000000003" y2="379.6646844046731"/>
+  <line stroke="#000000" x1="327.02325267042636" x2="388.0232526704264" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="86.02325267042632" x2="86.02325267042632" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="568.0232526704265" x2="568.0232526704265" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="528.0232526704265" x2="568.0232526704265" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="518.0232526704266" x2="528.0232526704265" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="478.0232526704265" x2="518.0232526704266" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="438.0232526704264" x2="478.0232526704265" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="428.0232526704264" x2="438.0232526704264" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="388.0232526704264" x2="428.0232526704264" y1="480.5000000000003" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="388.0232526704264" x2="388.0232526704264" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="568.0232526704265" x2="568.0232526704265" y1="480.50000000000034" y2="480.50000000000034"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.02325267042636" x2="266.0232526704264" y1="516.6386219991855" y2="516.6386219991855"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="266.0232526704264" y1="480.5000000000003" y2="516.6386219991855"/>
+  <line stroke="#000000" x1="327.02325267042636" x2="327.02325267042636" y1="516.6386219991855" y2="480.5000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.0232526704264" x2="327.02325267042636" y1="540.6386219991855" y2="540.6386219991855"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.0232526704264" x2="266.0232526704264" y1="540.6386219991855" y2="516.6386219991855"/>
+  <line stroke="#000000" x1="327.02325267042636" x2="327.02325267042636" y1="576.7772439983707" y2="540.6386219991855"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="327.02325267042636" y1="576.7772439983707" y2="576.7772439983707"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="266.0232526704264" y1="540.6386219991855" y2="576.7772439983707"/>
+  <line stroke="#000000" x1="256.02325267042636" x2="266.0232526704264" y1="540.6386219991855" y2="540.6386219991855"/>
+  <line stroke="#000000" x1="256.0232526704264" x2="256.02325267042636" y1="516.6386219991855" y2="540.6386219991855"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="256.0232526704264" y1="516.6386219991855" y2="516.6386219991855"/>
+  <line stroke="#000000" x1="337.02325267042636" x2="327.02325267042636" y1="516.6386219991855" y2="516.6386219991855"/>
+  <line stroke="#000000" x1="337.02325267042636" x2="337.02325267042636" y1="540.6386219991855" y2="516.6386219991855"/>
+  <line stroke="#000000" x1="327.02325267042636" x2="337.02325267042636" y1="540.6386219991855" y2="540.6386219991855"/>
+  <line stroke="#000000" x1="226.0232526704264" x2="266.0232526704264" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="216.02325267042636" x2="226.0232526704264" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="176.0232526704264" x2="216.02325267042636" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="136.02325267042633" x2="176.0232526704264" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="126.02325267042634" x2="136.02325267042633" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="86.02325267042634" x2="126.02325267042634" y1="480.5000000000002" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="480.5000000000002" y2="480.5000000000002"/>
+  <line stroke="#000000" x1="266.0232526704264" x2="266.0232526704264" y1="480.5000000000003" y2="480.5000000000003"/>
+  <line stroke="#000000" x1="620.537623488588" x2="620.537623488588" y1="498.00479027272087" y2="480.50000000000034"/>
+  <line stroke="#000000" x1="568.0232526704265" x2="620.537623488588" y1="498.00479027272087" y2="498.00479027272087"/>
+  <line stroke="#000000" x1="568.0232526704265" x2="568.0232526704265" y1="480.50000000000034" y2="498.00479027272087"/>
+  <line stroke="#000000" x1="33.508881852264786" x2="33.508881852264786" y1="232.9952097272795" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042637" x2="33.508881852264786" y1="232.9952097272795" y2="232.9952097272795"/>
+  <line stroke="#000000" x1="86.02325267042637" x2="86.02325267042637" y1="250.50000000000003" y2="232.9952097272795"/>
+  <line stroke="#000000" x1="176.0232526704264" x2="186.0232526704264" y1="180.50000000000003" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="176.0232526704264" x2="176.0232526704264" y1="90.50000000000001" y2="180.50000000000003"/>
+  <line stroke="#000000" x1="186.0232526704264" x2="176.0232526704264" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#888888" x1="187.0232526704264" x2="195.0232526704264" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="195.0232526704264" x2="195.0232526704264" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="195.0232526704264" x2="187.0232526704264" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="187.0232526704264" x2="187.0232526704264" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="222.68991933709302" x2="222.68991933709302" y1="16.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="222.68991933709302" x2="219.35658600375973" y1="19.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="219.35658600375973" x2="219.35658600375973" y1="19.000000000000004" y2="16.000000000000004"/>
+  <line stroke="#888888" x1="247.0232526704264" x2="255.0232526704264" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="255.0232526704264" x2="255.0232526704264" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="255.0232526704264" x2="247.0232526704264" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="247.0232526704264" x2="247.0232526704264" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="258.2732526704264" x2="258.2732526704264" y1="123.47727272727273" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="258.2732526704264" x2="258.7732526704264" y1="106.61363636363636" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="258.7732526704264" x2="258.7732526704264" y1="106.61363636363636" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="258.7732526704264" x2="258.2732526704264" y1="123.47727272727273" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="258.2732526704264" x2="258.2732526704264" y1="164.38636363636363" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="258.2732526704264" x2="258.7732526704264" y1="147.52272727272728" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="258.7732526704264" x2="258.7732526704264" y1="147.52272727272728" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="258.7732526704264" x2="258.2732526704264" y1="164.38636363636363" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="132.68991933709307" x2="132.68991933709307" y1="16.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="132.68991933709307" x2="129.3565860037597" y1="19.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="129.3565860037597" x2="129.3565860037597" y1="19.000000000000004" y2="16.000000000000004"/>
+  <line stroke="#888888" x1="157.02325267042636" x2="165.0232526704264" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="165.0232526704264" x2="165.0232526704264" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="165.0232526704264" x2="157.02325267042636" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="157.02325267042636" x2="157.02325267042636" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="168.27325267042636" x2="168.27325267042636" y1="123.47727272727273" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="168.27325267042636" x2="168.7732526704264" y1="106.61363636363636" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="168.7732526704264" x2="168.7732526704264" y1="106.61363636363636" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="168.7732526704264" x2="168.27325267042636" y1="123.47727272727273" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="168.27325267042636" x2="168.27325267042636" y1="164.38636363636363" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="168.27325267042636" x2="168.7732526704264" y1="147.52272727272728" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="168.7732526704264" x2="168.7732526704264" y1="147.52272727272728" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="168.7732526704264" x2="168.27325267042636" y1="164.38636363636363" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="97.02325267042637" x2="105.02325267042637" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="105.02325267042637" x2="105.02325267042637" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="105.02325267042637" x2="97.02325267042637" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="97.02325267042637" x2="97.02325267042637" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="88.52325267042636" x2="88.52325267042636" y1="106.86363636363637" y2="101.86363636363637"/>
+  <line stroke="#888888" x1="88.52325267042636" x2="93.52325267042637" y1="101.86363636363637" y2="106.86363636363637"/>
+  <line stroke="#888888" x1="93.52325267042637" x2="93.52325267042637" y1="106.86363636363637" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="93.52325267042637" x2="88.52325267042636" y1="123.22727272727273" y2="128.22727272727272"/>
+  <line stroke="#888888" x1="88.52325267042636" x2="88.52325267042636" y1="128.22727272727272" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="88.52325267042636" x2="88.52325267042636" y1="147.77272727272728" y2="142.77272727272728"/>
+  <line stroke="#888888" x1="88.52325267042636" x2="93.52325267042637" y1="142.77272727272728" y2="147.77272727272728"/>
+  <line stroke="#888888" x1="93.52325267042637" x2="93.52325267042637" y1="147.77272727272728" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="93.52325267042637" x2="88.52325267042636" y1="164.13636363636363" y2="169.13636363636363"/>
+  <line stroke="#888888" x1="88.52325267042636" x2="88.52325267042636" y1="169.13636363636363" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="349.4550708522446" x2="337.86416176133554" y1="258.25000000000006" y2="258.25000000000006"/>
+  <line stroke="#888888" x1="337.86416176133554" x2="337.86416176133554" y1="258.25000000000006" y2="257.75"/>
+  <line stroke="#888888" x1="337.86416176133554" x2="349.4550708522446" y1="257.75" y2="257.75"/>
+  <line stroke="#888888" x1="349.4550708522446" x2="349.4550708522446" y1="257.75" y2="258.25000000000006"/>
+  <line stroke="#888888" x1="377.18234357951735" x2="365.59143448860823" y1="258.25000000000006" y2="258.25000000000006"/>
+  <line stroke="#888888" x1="365.59143448860823" x2="365.59143448860823" y1="258.25000000000006" y2="257.75"/>
+  <line stroke="#888888" x1="365.59143448860823" x2="377.18234357951735" y1="257.75" y2="257.75"/>
+  <line stroke="#888888" x1="377.18234357951735" x2="377.18234357951735" y1="257.75" y2="258.25000000000006"/>
+  <line stroke="#888888" x1="315.9323435795173" x2="315.9323435795173" y1="243.00000000000003" y2="248.00000000000006"/>
+  <line stroke="#888888" x1="315.9323435795173" x2="304.84143448860823" y1="248.00000000000006" y2="248.00000000000006"/>
+  <line stroke="#888888" x1="304.84143448860823" x2="304.84143448860823" y1="248.00000000000006" y2="243.00000000000003"/>
+  <line stroke="#888888" x1="288.20507085224455" x2="288.20507085224455" y1="243.00000000000003" y2="248.00000000000006"/>
+  <line stroke="#888888" x1="288.20507085224455" x2="277.11416176133554" y1="248.00000000000006" y2="248.00000000000006"/>
+  <line stroke="#888888" x1="277.11416176133554" x2="277.11416176133554" y1="248.00000000000006" y2="243.00000000000003"/>
+  <line stroke="#888888" x1="434.68991933709304" x2="434.68991933709304" y1="16.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="434.68991933709304" x2="431.3565860037598" y1="19.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="431.3565860037598" x2="431.3565860037598" y1="19.000000000000004" y2="16.000000000000004"/>
+  <line stroke="#888888" x1="459.0232526704264" x2="467.0232526704264" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="467.0232526704264" x2="467.0232526704264" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="467.0232526704264" x2="459.0232526704264" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="459.0232526704264" x2="459.0232526704264" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="470.2732526704264" x2="470.2732526704264" y1="123.47727272727273" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="470.2732526704264" x2="470.7732526704264" y1="106.61363636363636" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="470.7732526704264" x2="470.7732526704264" y1="106.61363636363636" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="470.7732526704264" x2="470.2732526704264" y1="123.47727272727273" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="470.2732526704264" x2="470.2732526704264" y1="164.38636363636363" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="470.2732526704264" x2="470.7732526704264" y1="147.52272727272728" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="470.7732526704264" x2="470.7732526704264" y1="147.52272727272728" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="470.7732526704264" x2="470.2732526704264" y1="164.38636363636363" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="399.0232526704264" x2="407.0232526704264" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="407.0232526704264" x2="407.0232526704264" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="407.0232526704264" x2="399.0232526704264" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="399.0232526704264" x2="399.0232526704264" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="390.5232526704264" x2="390.5232526704264" y1="106.86363636363637" y2="101.86363636363637"/>
+  <line stroke="#888888" x1="390.5232526704264" x2="395.52325267042636" y1="101.86363636363637" y2="106.86363636363637"/>
+  <line stroke="#888888" x1="395.52325267042636" x2="395.52325267042636" y1="106.86363636363637" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="395.52325267042636" x2="390.5232526704264" y1="123.22727272727273" y2="128.22727272727272"/>
+  <line stroke="#888888" x1="390.5232526704264" x2="390.5232526704264" y1="128.22727272727272" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="390.5232526704264" x2="390.5232526704264" y1="147.77272727272728" y2="142.77272727272728"/>
+  <line stroke="#888888" x1="390.5232526704264" x2="395.52325267042636" y1="142.77272727272728" y2="147.77272727272728"/>
+  <line stroke="#888888" x1="395.52325267042636" x2="395.52325267042636" y1="147.77272727272728" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="395.52325267042636" x2="390.5232526704264" y1="164.13636363636363" y2="169.13636363636363"/>
+  <line stroke="#888888" x1="390.5232526704264" x2="390.5232526704264" y1="169.13636363636363" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="524.689919337093" x2="524.689919337093" y1="16.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="524.689919337093" x2="521.3565860037598" y1="19.000000000000004" y2="19.000000000000004"/>
+  <line stroke="#888888" x1="521.3565860037598" x2="521.3565860037598" y1="19.000000000000004" y2="16.000000000000004"/>
+  <line stroke="#888888" x1="549.0232526704264" x2="557.0232526704265" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="557.0232526704265" x2="557.0232526704265" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="557.0232526704265" x2="549.0232526704264" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="549.0232526704264" x2="549.0232526704264" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="560.2732526704265" x2="560.2732526704265" y1="123.47727272727273" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="560.2732526704265" x2="560.7732526704265" y1="106.61363636363636" y2="106.61363636363636"/>
+  <line stroke="#888888" x1="560.7732526704265" x2="560.7732526704265" y1="106.61363636363636" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="560.7732526704265" x2="560.2732526704265" y1="123.47727272727273" y2="123.47727272727273"/>
+  <line stroke="#888888" x1="560.2732526704265" x2="560.2732526704265" y1="164.38636363636363" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="560.2732526704265" x2="560.7732526704265" y1="147.52272727272728" y2="147.52272727272728"/>
+  <line stroke="#888888" x1="560.7732526704265" x2="560.7732526704265" y1="147.52272727272728" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="560.7732526704265" x2="560.2732526704265" y1="164.38636363636363" y2="164.38636363636363"/>
+  <line stroke="#888888" x1="489.0232526704264" x2="497.0232526704264" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="497.0232526704264" x2="497.0232526704264" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="497.0232526704264" x2="489.0232526704264" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="489.0232526704264" x2="489.0232526704264" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="480.5232526704264" x2="480.5232526704264" y1="106.86363636363637" y2="101.86363636363637"/>
+  <line stroke="#888888" x1="480.5232526704264" x2="485.5232526704264" y1="101.86363636363637" y2="106.86363636363637"/>
+  <line stroke="#888888" x1="485.5232526704264" x2="485.5232526704264" y1="106.86363636363637" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="485.5232526704264" x2="480.5232526704264" y1="123.22727272727273" y2="128.22727272727272"/>
+  <line stroke="#888888" x1="480.5232526704264" x2="480.5232526704264" y1="128.22727272727272" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="480.5232526704264" x2="480.5232526704264" y1="147.77272727272728" y2="142.77272727272728"/>
+  <line stroke="#888888" x1="480.5232526704264" x2="485.5232526704264" y1="142.77272727272728" y2="147.77272727272728"/>
+  <line stroke="#888888" x1="485.5232526704264" x2="485.5232526704264" y1="147.77272727272728" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="485.5232526704264" x2="480.5232526704264" y1="164.13636363636363" y2="169.13636363636363"/>
+  <line stroke="#888888" x1="480.5232526704264" x2="480.5232526704264" y1="169.13636363636363" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="26.835549148350456" x2="21.79874965689743" y1="321.2261564960398" y2="338.5120791976936"/>
+  <line stroke="#888888" x1="21.79874965689743" x2="21.318712887798146" y1="338.5120791976936" y2="338.37220532481973"/>
+  <line stroke="#888888" x1="21.318712887798146" x2="26.35551237925117" y1="338.37220532481973" y2="321.08628262316597"/>
+  <line stroke="#888888" x1="26.35551237925117" x2="26.835549148350456" y1="321.08628262316597" y2="321.2261564960398"/>
+  <line stroke="#888888" x1="632.2477556839555" x2="627.2109561925024" y1="338.5120791976939" y2="321.22615649604006"/>
+  <line stroke="#888888" x1="627.2109561925024" x2="627.6909929616016" y1="321.22615649604006" y2="321.08628262316626"/>
+  <line stroke="#888888" x1="627.6909929616016" x2="632.7277924530547" y1="321.08628262316626" y2="338.37220532482"/>
+  <line stroke="#888888" x1="632.7277924530547" x2="632.2477556839555" y1="338.37220532482" y2="338.5120791976939"/>
+  <line stroke="#888888" x1="603.0328332158676" x2="603.0328332158676" y1="237.37140729545996" y2="246.12380243182022"/>
+  <line stroke="#888888" x1="603.0328332158676" x2="585.5280429431472" y1="246.12380243182022" y2="246.1238024318202"/>
+  <line stroke="#888888" x1="585.5280429431472" x2="585.5280429431472" y1="246.1238024318202" y2="237.37140729545993"/>
+  <line stroke="#888888" x1="627.2109561925023" x2="632.2477556839555" y1="409.7738435039606" y2="392.4879208023068"/>
+  <line stroke="#888888" x1="632.2477556839555" x2="632.7277924530547" y1="392.4879208023068" y2="392.62779467518067"/>
+  <line stroke="#888888" x1="632.7277924530547" x2="627.6909929616015" y1="392.62779467518067" y2="409.9137173768344"/>
+  <line stroke="#888888" x1="627.6909929616015" x2="627.2109561925023" y1="409.9137173768344" y2="409.7738435039606"/>
+  <line stroke="#888888" x1="51.013672124985256" x2="51.013672124985256" y1="493.62859270454067" y2="484.87619756818043"/>
+  <line stroke="#888888" x1="51.013672124985256" x2="68.51846239770579" y1="484.87619756818043" y2="484.87619756818043"/>
+  <line stroke="#888888" x1="68.51846239770579" x2="68.51846239770579" y1="484.87619756818043" y2="493.62859270454067"/>
+  <line stroke="#888888" x1="21.798749656897375" x2="26.8355491483504" y1="392.48792080230663" y2="409.7738435039605"/>
+  <line stroke="#888888" x1="26.8355491483504" x2="26.355512379251113" y1="409.7738435039605" y2="409.9137173768343"/>
+  <line stroke="#888888" x1="26.355512379251113" x2="21.318712887798085" y1="409.9137173768343" y2="392.62779467518044"/>
+  <line stroke="#888888" x1="21.318712887798085" x2="21.798749656897375" y1="392.62779467518044" y2="392.48792080230663"/>
+  <line stroke="#888888" x1="365.59143448860823" x2="377.18234357951735" y1="472.7500000000003" y2="472.7500000000003"/>
+  <line stroke="#888888" x1="377.18234357951735" x2="377.18234357951735" y1="472.7500000000003" y2="473.2500000000003"/>
+  <line stroke="#888888" x1="377.18234357951735" x2="365.59143448860823" y1="473.2500000000003" y2="473.2500000000003"/>
+  <line stroke="#888888" x1="365.59143448860823" x2="365.59143448860823" y1="473.2500000000003" y2="472.7500000000003"/>
+  <line stroke="#888888" x1="337.86416176133554" x2="349.4550708522446" y1="472.7500000000003" y2="472.7500000000003"/>
+  <line stroke="#888888" x1="349.4550708522446" x2="349.4550708522446" y1="472.7500000000003" y2="473.2500000000003"/>
+  <line stroke="#888888" x1="349.4550708522446" x2="337.86416176133554" y1="473.2500000000003" y2="473.2500000000003"/>
+  <line stroke="#888888" x1="337.86416176133554" x2="337.86416176133554" y1="473.2500000000003" y2="472.7500000000003"/>
+  <line stroke="#888888" x1="521.1065860037598" x2="524.9399193370932" y1="475.75000000000034" y2="475.75000000000034"/>
+  <line stroke="#888888" x1="524.9399193370932" x2="524.9399193370932" y1="475.75000000000034" y2="476.25000000000034"/>
+  <line stroke="#888888" x1="524.9399193370932" x2="521.1065860037598" y1="476.25000000000034" y2="476.25000000000034"/>
+  <line stroke="#888888" x1="521.1065860037598" x2="521.1065860037598" y1="476.25000000000034" y2="475.75000000000034"/>
+  <line stroke="#888888" x1="431.1065860037598" x2="434.9399193370931" y1="475.75000000000034" y2="475.75000000000034"/>
+  <line stroke="#888888" x1="434.9399193370931" x2="434.9399193370931" y1="475.75000000000034" y2="476.25000000000034"/>
+  <line stroke="#888888" x1="434.9399193370931" x2="431.1065860037598" y1="476.25000000000034" y2="476.25000000000034"/>
+  <line stroke="#888888" x1="431.1065860037598" x2="431.1065860037598" y1="476.25000000000034" y2="475.75000000000034"/>
+  <line stroke="#888888" x1="309.02325267042636" x2="298.0232526704264" y1="535.1386219991855" y2="535.1386219991855"/>
+  <line stroke="#888888" x1="298.0232526704264" x2="298.0232526704264" y1="535.1386219991855" y2="522.1386219991855"/>
+  <line stroke="#888888" x1="298.0232526704264" x2="309.02325267042636" y1="522.1386219991855" y2="522.1386219991855"/>
+  <line stroke="#888888" x1="309.02325267042636" x2="309.02325267042636" y1="522.1386219991855" y2="535.1386219991855"/>
+  <line stroke="#888888" x1="277.52325267042636" x2="271.5232526704264" y1="533.6386219991856" y2="533.6386219991856"/>
+  <line stroke="#888888" x1="271.5232526704264" x2="271.5232526704264" y1="533.6386219991856" y2="523.6386219991856"/>
+  <line stroke="#888888" x1="271.5232526704264" x2="277.52325267042636" y1="523.6386219991856" y2="523.6386219991856"/>
+  <line stroke="#888888" x1="277.52325267042636" x2="277.52325267042636" y1="523.6386219991856" y2="533.6386219991856"/>
+  <line stroke="#888888" x1="304.59143448860823" x2="316.1823435795173" y1="569.0272439983709" y2="569.0272439983709"/>
+  <line stroke="#888888" x1="316.1823435795173" x2="316.1823435795173" y1="569.0272439983709" y2="569.5272439983709"/>
+  <line stroke="#888888" x1="316.1823435795173" x2="304.59143448860823" y1="569.5272439983709" y2="569.5272439983709"/>
+  <line stroke="#888888" x1="304.59143448860823" x2="304.59143448860823" y1="569.5272439983709" y2="569.0272439983709"/>
+  <line stroke="#888888" x1="276.8641617613354" x2="288.4550708522445" y1="569.027243998371" y2="569.0272439983709"/>
+  <line stroke="#888888" x1="288.4550708522445" x2="288.4550708522445" y1="569.0272439983709" y2="569.5272439983709"/>
+  <line stroke="#888888" x1="288.4550708522445" x2="276.8641617613354" y1="569.5272439983709" y2="569.527243998371"/>
+  <line stroke="#888888" x1="276.8641617613354" x2="276.8641617613354" y1="569.527243998371" y2="569.027243998371"/>
+  <line stroke="#888888" x1="258.5232526704264" x2="263.5232526704264" y1="524.6386219991856" y2="524.6386219991856"/>
+  <line stroke="#888888" x1="263.5232526704264" x2="263.5232526704264" y1="524.6386219991856" y2="532.6386219991856"/>
+  <line stroke="#888888" x1="263.5232526704264" x2="258.5232526704264" y1="532.6386219991856" y2="532.6386219991856"/>
+  <line stroke="#888888" x1="334.5232526704264" x2="329.5232526704264" y1="532.6386219991856" y2="532.6386219991856"/>
+  <line stroke="#888888" x1="329.5232526704264" x2="329.5232526704264" y1="532.6386219991856" y2="524.6386219991856"/>
+  <line stroke="#888888" x1="329.5232526704264" x2="334.5232526704264" y1="524.6386219991856" y2="524.6386219991856"/>
+  <line stroke="#888888" x1="219.1065860037597" x2="222.93991933709304" y1="475.7500000000003" y2="475.7500000000003"/>
+  <line stroke="#888888" x1="222.93991933709304" x2="222.93991933709304" y1="475.7500000000003" y2="476.2500000000003"/>
+  <line stroke="#888888" x1="222.93991933709304" x2="219.1065860037597" y1="476.2500000000003" y2="476.2500000000003"/>
+  <line stroke="#888888" x1="219.1065860037597" x2="219.1065860037597" y1="476.2500000000003" y2="475.7500000000003"/>
+  <line stroke="#888888" x1="129.1065860037597" x2="132.93991933709302" y1="475.7500000000003" y2="475.7500000000003"/>
+  <line stroke="#888888" x1="132.93991933709302" x2="132.93991933709302" y1="475.7500000000003" y2="476.2500000000003"/>
+  <line stroke="#888888" x1="132.93991933709302" x2="129.1065860037597" y1="476.2500000000003" y2="476.2500000000003"/>
+  <line stroke="#888888" x1="129.1065860037597" x2="129.1065860037597" y1="476.2500000000003" y2="475.7500000000003"/>
+  <line stroke="#888888" x1="585.528042943147" x2="585.528042943147" y1="493.6285927045408" y2="484.8761975681805"/>
+  <line stroke="#888888" x1="585.528042943147" x2="603.0328332158675" y1="484.8761975681805" y2="484.8761975681805"/>
+  <line stroke="#888888" x1="603.0328332158675" x2="603.0328332158675" y1="484.8761975681805" y2="493.6285927045408"/>
+  <line stroke="#888888" x1="68.51846239770585" x2="68.51846239770585" y1="237.37140729545965" y2="246.12380243181988"/>
+  <line stroke="#888888" x1="68.51846239770585" x2="51.01367212498531" y1="246.12380243181988" y2="246.12380243181988"/>
+  <line stroke="#888888" x1="51.01367212498531" x2="51.01367212498531" y1="246.12380243181988" y2="237.37140729545965"/>
+  <line stroke="#888888" x1="178.5232526704264" x2="178.5232526704264" y1="106.86363636363637" y2="101.86363636363637"/>
+  <line stroke="#888888" x1="178.5232526704264" x2="183.5232526704264" y1="101.86363636363637" y2="106.86363636363637"/>
+  <line stroke="#888888" x1="183.5232526704264" x2="183.5232526704264" y1="106.86363636363637" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="183.5232526704264" x2="178.5232526704264" y1="123.22727272727273" y2="128.22727272727272"/>
+  <line stroke="#888888" x1="178.5232526704264" x2="178.5232526704264" y1="128.22727272727272" y2="123.22727272727273"/>
+  <line stroke="#888888" x1="178.5232526704264" x2="178.5232526704264" y1="147.77272727272728" y2="142.77272727272728"/>
+  <line stroke="#888888" x1="178.5232526704264" x2="183.5232526704264" y1="142.77272727272728" y2="147.77272727272728"/>
+  <line stroke="#888888" x1="183.5232526704264" x2="183.5232526704264" y1="147.77272727272728" y2="164.13636363636363"/>
+  <line stroke="#888888" x1="183.5232526704264" x2="178.5232526704264" y1="164.13636363636363" y2="169.13636363636363"/>
+  <line stroke="#888888" x1="178.5232526704264" x2="178.5232526704264" y1="169.13636363636363" y2="164.13636363636363"/>
+  <line stroke="#000000" x1="824.3550614105757" x2="762.7007833757143" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="762.7007833757143" x2="824.3550614105757" y1="166.0" y2="166.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="762.7007833757143" x2="762.7007833757143" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="834.3550614105757" x2="824.3550614105757" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="834.3550614105757" x2="834.3550614105757" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="824.3550614105757" x2="834.3550614105757" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="735.7007833757143" x2="762.7007833757143" y1="166.0" y2="166.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="735.7007833757143" x2="735.7007833757143" y1="105.00000000000001" y2="166.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="762.7007833757143" x2="735.7007833757143" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="674.0465053408527" x2="735.7007833757143" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="735.7007833757143" x2="674.0465053408527" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="664.0465053408527" x2="674.0465053408527" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="664.0465053408527" x2="664.0465053408527" y1="105.00000000000001" y2="166.0"/>
+  <line stroke="#000000" x1="674.0465053408527" x2="664.0465053408527" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="762.7007833757143" x2="762.7007833757143" y1="105.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="735.7007833757143" x2="735.7007833757143" y1="88.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="762.7007833757143" x2="735.7007833757143" y1="88.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="762.7007833757143" x2="762.7007833757143" y1="88.00000000000001" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="735.7007833757143" x2="735.7007833757143" y1="27.000000000000004" y2="88.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="762.7007833757143" x2="735.7007833757143" y1="27.000000000000004" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="762.7007833757143" x2="762.7007833757143" y1="27.000000000000004" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="735.7007833757143" x2="735.7007833757143" y1="10.000000000000002" y2="27.000000000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="735.7007833757143" x2="762.7007833757143" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="735.7007833757143" x2="735.7007833757143" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="762.7007833757143" x2="735.7007833757143" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="762.7007833757143" x2="762.7007833757143" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="831.8550614105757" x2="826.8550614105757" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="826.8550614105757" x2="826.8550614105757" y1="154.90909090909093" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="826.8550614105757" x2="831.8550614105757" y1="143.8181818181818" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="831.8550614105757" x2="826.8550614105757" y1="127.1818181818182" y2="127.1818181818182"/>
+  <line stroke="#888888" x1="826.8550614105757" x2="826.8550614105757" y1="127.1818181818182" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="826.8550614105757" x2="831.8550614105757" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="758.2007833757143" x2="758.2007833757143" y1="102.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="758.2007833757143" x2="740.2007833757143" y1="108.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="740.2007833757143" x2="740.2007833757143" y1="108.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="740.2007833757143" x2="758.2007833757143" y1="102.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="744.4507833757143" x2="753.9507833757143" y1="158.25000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="753.9507833757143" x2="753.9507833757143" y1="158.25000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="753.9507833757143" x2="744.4507833757143" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="744.4507833757143" x2="744.4507833757143" y1="158.75000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="666.5465053408528" x2="671.5465053408527" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="671.5465053408527" x2="671.5465053408527" y1="116.09090909090911" y2="127.18181818181822"/>
+  <line stroke="#888888" x1="671.5465053408527" x2="666.5465053408528" y1="127.18181818181822" y2="127.18181818181822"/>
+  <line stroke="#888888" x1="666.5465053408528" x2="671.5465053408527" y1="143.81818181818184" y2="143.81818181818184"/>
+  <line stroke="#888888" x1="671.5465053408527" x2="671.5465053408527" y1="143.81818181818184" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="671.5465053408527" x2="666.5465053408528" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="753.7007833757143" x2="753.7007833757143" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="753.7007833757143" x2="744.7007833757143" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="744.7007833757143" x2="744.7007833757143" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="853.3550614105757" x2="914.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="914.3550614105757" x2="914.3550614105757" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="914.3550614105757" x2="853.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="853.3550614105757" x2="853.3550614105757" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="853.3550614105757" x2="853.3550614105757" y1="116.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="889.3550614105757" x2="853.3550614105757" y1="116.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="889.3550614105757" x2="889.3550614105757" y1="123.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="921.3550614105756" x2="914.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="921.3550614105756" x2="921.3550614105756" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="914.3550614105757" x2="921.3550614105756" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="914.3550614105757" x2="914.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="878.3550614105757" x2="914.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="878.3550614105757" x2="878.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="938.3550614105757" x2="914.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="938.3550614105757" x2="938.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="914.3550614105757" x2="938.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="974.3550614105757" x2="938.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="974.3550614105757" x2="974.3550614105757" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="938.3550614105757" x2="974.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="878.3550614105757" x2="854.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="854.3550614105757" x2="878.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="854.3550614105757" x2="854.3550614105757" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="844.3550614105757" x2="854.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="844.3550614105757" x2="844.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="854.3550614105757" x2="844.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="846.3550614105757" x2="853.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="846.3550614105757" x2="846.3550614105757" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#000000" x1="853.3550614105757" x2="846.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#888888" x1="877.3550614105757" x2="880.8550614105757" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="880.8550614105757" x2="877.3550614105757" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="877.3550614105757" x2="865.3550614105757" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="865.3550614105757" x2="861.8550614105757" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="861.8550614105757" x2="865.3550614105757" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="919.6050614105757" x2="916.1050614105757" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="916.1050614105757" x2="916.1050614105757" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="916.1050614105757" x2="919.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="891.4693471248614" x2="891.4693471248614" y1="202.25000000000003" y2="184.25"/>
+  <line stroke="#888888" x1="891.4693471248614" x2="912.04077569629" y1="184.25" y2="184.25"/>
+  <line stroke="#888888" x1="912.04077569629" x2="912.04077569629" y1="184.25" y2="202.25000000000003"/>
+  <line stroke="#888888" x1="912.04077569629" x2="891.4693471248614" y1="202.25000000000003" y2="202.25000000000003"/>
+  <line stroke="#888888" x1="914.8550614105757" x2="914.8550614105757" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="914.8550614105757" x2="917.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="917.8550614105757" x2="917.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="917.8550614105757" x2="914.8550614105757" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="935.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="935.8550614105757" x2="936.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="936.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="936.8550614105757" x2="935.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="915.8550614105757" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="915.8550614105757" x2="916.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="916.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="916.8550614105757" x2="915.8550614105757" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="934.8550614105757" x2="934.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="934.8550614105757" x2="937.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="937.8550614105757" x2="937.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="937.8550614105757" x2="934.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="930.6050614105757" x2="922.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="922.1050614105757" x2="922.1050614105757" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="922.1050614105757" x2="930.6050614105757" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="930.6050614105757" x2="930.6050614105757" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="922.1050614105757" x2="930.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="930.6050614105757" x2="930.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="930.6050614105757" x2="922.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="922.1050614105757" x2="922.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="943.9093471248614" x2="943.9093471248614" y1="204.02" y2="191.02"/>
+  <line stroke="#888888" x1="943.9093471248614" x2="964.4807756962899" y1="191.02" y2="191.02"/>
+  <line stroke="#888888" x1="964.4807756962899" x2="964.4807756962899" y1="191.02" y2="204.02"/>
+  <line stroke="#888888" x1="964.4807756962899" x2="943.9093471248614" y1="204.02" y2="204.02"/>
+  <line stroke="#888888" x1="962.6050614105756" x2="950.1050614105757" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="950.1050614105757" x2="950.1050614105757" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="950.1050614105757" x2="962.6050614105756" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="962.6050614105756" x2="962.6050614105756" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="966.6050614105757" x2="966.6050614105757" y1="169.93181818181822" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="966.6050614105757" x2="967.1050614105757" y1="158.3409090909091" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="967.1050614105757" x2="967.1050614105757" y1="158.3409090909091" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="967.1050614105757" x2="966.6050614105757" y1="169.93181818181822" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="966.6050614105757" x2="966.6050614105757" y1="197.65909090909093" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="966.6050614105757" x2="967.1050614105757" y1="186.06818181818184" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="967.1050614105757" x2="967.1050614105757" y1="186.06818181818184" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="967.1050614105757" x2="966.6050614105757" y1="197.65909090909093" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="854.8550614105757" x2="854.8550614105757" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="854.8550614105757" x2="857.8550614105756" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="857.8550614105756" x2="857.8550614105756" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="857.8550614105756" x2="854.8550614105757" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="875.8550614105756" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="875.8550614105756" x2="876.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="876.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="876.8550614105757" x2="875.8550614105756" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="855.8550614105757" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="855.8550614105757" x2="856.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="856.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="856.8550614105757" x2="855.8550614105757" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="874.8550614105757" x2="874.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="874.8550614105757" x2="877.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="877.8550614105757" x2="877.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="877.8550614105757" x2="874.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="870.6050614105757" x2="862.1050614105756" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="862.1050614105756" x2="862.1050614105756" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="862.1050614105756" x2="870.6050614105757" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="870.6050614105757" x2="870.6050614105757" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="862.1050614105756" x2="870.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="870.6050614105757" x2="870.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="870.6050614105757" x2="862.1050614105756" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="862.1050614105756" x2="862.1050614105756" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="846.8550614105757" x2="851.8550614105757" y1="158.59090909090912" y2="158.59090909090912"/>
+  <line stroke="#888888" x1="851.8550614105757" x2="851.8550614105757" y1="158.59090909090912" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="851.8550614105757" x2="846.8550614105757" y1="169.68181818181822" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="846.8550614105757" x2="851.8550614105757" y1="186.31818181818184" y2="186.31818181818184"/>
+  <line stroke="#888888" x1="851.8550614105757" x2="851.8550614105757" y1="186.31818181818184" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="851.8550614105757" x2="846.8550614105757" y1="197.40909090909093" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="848.1050614105757" x2="851.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="851.6050614105757" x2="851.6050614105757" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="851.6050614105757" x2="848.1050614105757" y1="139.50000000000003" y2="139.50000000000003"/>
+</svg>
diff --git a/rocolib/builders/output/BoatWithManyDCMounts/graph-model.png b/rocolib/builders/output/BoatWithManyDCMounts/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..5cd2c6ae93317dac7706b758b7a0a618886bb39a
Binary files /dev/null and b/rocolib/builders/output/BoatWithManyDCMounts/graph-model.png differ
diff --git a/rocolib/builders/output/BoatWithManyDCMounts/graph-model.stl b/rocolib/builders/output/BoatWithManyDCMounts/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..51435b0628009295eca32928bd657bf1a8609a38
--- /dev/null
+++ b/rocolib/builders/output/BoatWithManyDCMounts/graph-model.stl
@@ -0,0 +1,4258 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 0.0000
+vertex -0.0140 -0.0040 0.0000
+vertex -0.0140 0.0040 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 -0.0040 0.0000
+vertex -0.0150 -0.0450 0.0000
+vertex -0.0060 -0.0040 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 0.0000
+vertex -0.0140 0.0040 0.0000
+vertex -0.0060 0.0040 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 0.0040 0.0000
+vertex -0.0150 0.0450 0.0000
+vertex -0.0150 -0.0450 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 -0.0040 0.0000
+vertex 0.0150 -0.0450 0.0000
+vertex 0.0150 0.0450 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 0.0000
+vertex -0.0060 -0.0040 0.0000
+vertex -0.0150 -0.0450 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 0.0040 0.0000
+vertex 0.0150 0.0450 0.0000
+vertex -0.0150 0.0450 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 0.0000
+vertex -0.0060 0.0040 0.0000
+vertex -0.0060 -0.0040 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 0.0000
+vertex 0.0150 -0.0450 0.0000
+vertex 0.0150 -0.0450 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 -0.0100
+vertex 0.0150 0.0450 -0.0100
+vertex 0.0150 0.0450 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 -0.0100
+vertex -0.0060 -0.0040 -0.0100
+vertex -0.0060 0.0040 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 -0.0040 -0.0100
+vertex 0.0150 -0.0450 -0.0100
+vertex -0.0150 -0.0450 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 -0.0100
+vertex -0.0060 0.0040 -0.0100
+vertex -0.0150 0.0450 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 0.0040 -0.0100
+vertex 0.0150 0.0450 -0.0100
+vertex 0.0150 -0.0450 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 -0.0040 -0.0100
+vertex -0.0150 -0.0450 -0.0100
+vertex -0.0150 0.0450 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 -0.0100
+vertex -0.0140 -0.0040 -0.0100
+vertex -0.0060 -0.0040 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 0.0040 -0.0100
+vertex -0.0150 0.0450 -0.0100
+vertex -0.0060 0.0040 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 -0.0100
+vertex -0.0140 0.0040 -0.0100
+vertex -0.0140 -0.0040 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 -0.0100
+vertex -0.0150 -0.0450 -0.0100
+vertex -0.0150 -0.0450 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 -0.0000
+vertex -0.0150 0.0450 -0.0000
+vertex -0.0150 0.0450 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 -0.0450 0.0000
+vertex 0.0850 -0.0450 -0.0100
+vertex 0.0150 -0.0450 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 -0.0100
+vertex 0.0150 -0.0450 0.0000
+vertex 0.0850 -0.0450 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0450 -0.0100
+vertex 0.0850 0.0450 0.0000
+vertex 0.0150 0.0450 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 0.0000
+vertex 0.0150 0.0450 -0.0100
+vertex 0.0850 0.0450 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0308 0.0305 0.0000
+vertex -0.0308 -0.0305 0.0000
+vertex 0.0308 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0308 -0.0305 0.0000
+vertex 0.0308 0.0305 0.0000
+vertex -0.0308 0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 -0.0305 0.0191
+vertex -0.0499 0.0305 0.0191
+vertex -0.0499 0.0305 0.0807
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 0.0305 0.0807
+vertex -0.0499 -0.0305 0.0807
+vertex -0.0499 -0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 0.0305 0.0191
+vertex -0.0308 0.0305 -0.0000
+vertex -0.0428 0.0305 -0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0428 0.0305 -0.0120
+vertex -0.0619 0.0305 0.0071
+vertex -0.0499 0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0619 0.0305 0.0071
+vertex -0.0428 0.0305 -0.0120
+vertex -0.0428 -0.0305 -0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0428 -0.0305 -0.0120
+vertex -0.0619 -0.0305 0.0071
+vertex -0.0619 0.0305 0.0071
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0619 -0.0305 0.0071
+vertex -0.0428 -0.0305 -0.0120
+vertex -0.0308 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0308 -0.0305 0.0000
+vertex -0.0499 -0.0305 0.0191
+vertex -0.0619 -0.0305 0.0071
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0340 -0.0330 0.0032
+vertex -0.0467 -0.0305 0.0159
+vertex -0.0467 -0.0330 0.0159
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0308 -0.0305 0.0000
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0340 -0.0305 0.0032
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0308 0.0305 0.0000
+vertex -0.0499 0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0308 0.0305 0.0000
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0308 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0467 -0.0270 0.0159
+vertex -0.0499 0.0305 0.0191
+vertex -0.0499 -0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 0.0305 0.0191
+vertex -0.0467 -0.0270 0.0159
+vertex -0.0340 -0.0270 0.0032
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 -0.0305 0.0191
+vertex -0.0467 -0.0305 0.0159
+vertex -0.0467 -0.0270 0.0159
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0467 -0.0305 0.0159
+vertex -0.0340 -0.0330 0.0032
+vertex -0.0340 -0.0305 0.0032
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1550 0.1350 -0.3520
+vertex 0.1550 0.1350 0.1300
+vertex 0.1550 0.0450 0.1300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1550 0.0450 0.1300
+vertex 0.1550 0.0450 -0.3520
+vertex 0.1550 0.1350 -0.3520
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.1350 -0.3520
+vertex 0.0850 0.1350 0.1300
+vertex 0.1550 0.1350 0.1300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1550 0.1350 0.1300
+vertex 0.1550 0.1350 -0.3520
+vertex 0.0850 0.1350 -0.3520
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1550 0.0450 -0.3520
+vertex 0.1550 0.0450 0.1300
+vertex 0.0850 0.0450 0.1300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0450 0.1300
+vertex 0.0850 0.0450 -0.3520
+vertex 0.1550 0.0450 -0.3520
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1550 0.1350 0.1300
+vertex 0.0850 0.1350 0.1300
+vertex 0.0850 0.0999 0.1690
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0999 0.1690
+vertex 0.0850 0.0900 0.1800
+vertex 0.1550 0.1350 0.1300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1550 0.0900 0.1300
+vertex 0.1550 0.1350 0.1300
+vertex 0.0850 0.0900 0.1800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1550 0.0900 0.1300
+vertex 0.0850 0.0900 0.1800
+vertex 0.1550 0.0450 0.1300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0801 0.1690
+vertex 0.0850 0.0450 0.1300
+vertex 0.1550 0.0450 0.1300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1550 0.0450 0.1300
+vertex 0.0850 0.0900 0.1800
+vertex 0.0850 0.0801 0.1690
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.1350 0.1300
+vertex 0.1550 0.1350 0.1300
+vertex 0.0850 0.0999 0.1690
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.1350 0.1300
+vertex 0.0850 0.0999 0.1690
+vertex 0.1550 0.1350 0.1300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0450 0.1300
+vertex 0.0850 0.0801 0.1690
+vertex 0.1550 0.0450 0.1300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0450 0.1300
+vertex 0.1550 0.0450 0.1300
+vertex 0.0850 0.0801 0.1690
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1550 0.0450 -0.3520
+vertex 0.0850 0.0450 -0.3520
+vertex 0.0850 0.0801 -0.3910
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0801 -0.3910
+vertex 0.0850 0.0900 -0.4020
+vertex 0.1550 0.0450 -0.3520
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1550 0.0900 -0.3520
+vertex 0.1550 0.0450 -0.3520
+vertex 0.0850 0.0900 -0.4020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1550 0.0900 -0.3520
+vertex 0.0850 0.0900 -0.4020
+vertex 0.1550 0.1350 -0.3520
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0999 -0.3910
+vertex 0.0850 0.1350 -0.3520
+vertex 0.1550 0.1350 -0.3520
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1550 0.1350 -0.3520
+vertex 0.0850 0.0900 -0.4020
+vertex 0.0850 0.0999 -0.3910
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0450 -0.3520
+vertex 0.1550 0.0450 -0.3520
+vertex 0.0850 0.0801 -0.3910
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0450 -0.3520
+vertex 0.0850 0.0801 -0.3910
+vertex 0.1550 0.0450 -0.3520
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.1350 -0.3520
+vertex 0.0850 0.0999 -0.3910
+vertex 0.1550 0.1350 -0.3520
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.1350 -0.3520
+vertex 0.1550 0.1350 -0.3520
+vertex 0.0850 0.0999 -0.3910
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 0.0120 0.0000
+vertex -0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 0.0120 0.0000
+vertex -0.0305 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.1350 -0.1110
+vertex 0.0489 0.1350 -0.1110
+vertex 0.0489 0.1350 -0.0500
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0489 0.1350 -0.0500
+vertex 0.0850 0.1350 -0.0500
+vertex 0.0850 0.1350 -0.1110
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0319 0.0819 -0.0500
+vertex 0.0319 0.1180 -0.0500
+vertex 0.0319 0.1180 -0.1110
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0319 0.1180 -0.1110
+vertex 0.0319 0.0819 -0.1110
+vertex 0.0319 0.0819 -0.0500
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0319 0.1180 -0.1110
+vertex 0.0358 0.1219 -0.0820
+vertex 0.0358 0.1219 -0.0930
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0358 0.1219 -0.0820
+vertex 0.0319 0.1180 -0.1110
+vertex 0.0319 0.1180 -0.0500
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0319 0.1180 -0.1110
+vertex 0.0358 0.1219 -0.0930
+vertex 0.0450 0.1311 -0.0930
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0489 0.1350 -0.1110
+vertex 0.0450 0.1311 -0.0930
+vertex 0.0450 0.1311 -0.0820
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.1311 -0.0930
+vertex 0.0489 0.1350 -0.1110
+vertex 0.0319 0.1180 -0.1110
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0489 0.1350 -0.1110
+vertex 0.0450 0.1311 -0.0820
+vertex 0.0489 0.1350 -0.0500
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0358 0.1219 -0.0820
+vertex 0.0368 0.1230 -0.0615
+vertex 0.0450 0.1311 -0.0820
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0368 0.1230 -0.0615
+vertex 0.0319 0.1180 -0.0500
+vertex 0.0368 0.1230 -0.0555
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0319 0.1180 -0.0500
+vertex 0.0368 0.1230 -0.0615
+vertex 0.0358 0.1219 -0.0820
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0368 0.1230 -0.0555
+vertex 0.0319 0.1180 -0.0500
+vertex 0.0489 0.1350 -0.0500
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0439 0.1301 -0.0615
+vertex 0.0439 0.1301 -0.0555
+vertex 0.0489 0.1350 -0.0500
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0489 0.1350 -0.0500
+vertex 0.0439 0.1301 -0.0555
+vertex 0.0368 0.1230 -0.0555
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0439 0.1301 -0.0615
+vertex 0.0489 0.1350 -0.0500
+vertex 0.0450 0.1311 -0.0820
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0368 0.1230 -0.0615
+vertex 0.0439 0.1301 -0.0615
+vertex 0.0450 0.1311 -0.0820
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0115 -0.0103
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0138
+vertex -0.0055 -0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0115 -0.0103
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0148
+vertex -0.0055 -0.0105 -0.0163
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0163
+vertex -0.0055 -0.0105 -0.0148
+vertex -0.0055 -0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0173
+vertex -0.0055 -0.0105 -0.0187
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0187
+vertex -0.0055 -0.0105 -0.0173
+vertex -0.0055 -0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0163
+vertex -0.0055 -0.0105 -0.0173
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0187
+vertex -0.0055 -0.0105 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0198
+vertex -0.0055 -0.0105 -0.0213
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0213
+vertex -0.0055 -0.0105 -0.0198
+vertex -0.0055 -0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0222
+vertex -0.0055 -0.0105 -0.0238
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0238
+vertex -0.0055 -0.0105 -0.0222
+vertex -0.0055 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0213
+vertex -0.0055 -0.0105 -0.0222
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0248
+vertex -0.0055 -0.0105 -0.0262
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0262
+vertex -0.0055 -0.0105 -0.0248
+vertex -0.0055 -0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0272
+vertex -0.0055 -0.0105 -0.0288
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0288
+vertex -0.0055 -0.0105 -0.0272
+vertex -0.0055 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0262
+vertex -0.0055 -0.0105 -0.0272
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0238
+vertex -0.0055 -0.0105 -0.0248
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0288
+vertex -0.0055 -0.0105 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0163
+vertex -0.0055 -0.0105 -0.0163
+vertex -0.0055 -0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0148
+vertex -0.0055 -0.0095 -0.0138
+vertex -0.0055 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0187
+vertex -0.0055 -0.0105 -0.0187
+vertex -0.0055 -0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0173
+vertex -0.0055 -0.0095 -0.0163
+vertex -0.0055 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0148
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0173
+vertex -0.0055 0.0095 -0.0173
+vertex -0.0055 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 -0.0085 -0.0103
+vertex -0.0055 0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0213
+vertex -0.0055 -0.0105 -0.0213
+vertex -0.0055 -0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0187
+vertex -0.0055 -0.0095 -0.0198
+vertex -0.0055 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0198
+vertex -0.0055 0.0095 -0.0198
+vertex -0.0055 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0138
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0138
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0238
+vertex -0.0055 -0.0105 -0.0238
+vertex -0.0055 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0213
+vertex -0.0055 -0.0095 -0.0222
+vertex -0.0055 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0248
+vertex -0.0055 -0.0095 -0.0262
+vertex -0.0055 -0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0238
+vertex -0.0055 -0.0095 -0.0222
+vertex -0.0055 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0248
+vertex -0.0055 -0.0095 -0.0262
+vertex -0.0055 -0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0272
+vertex -0.0055 -0.0095 -0.0288
+vertex -0.0055 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0288
+vertex -0.0055 -0.0095 -0.0298
+vertex -0.0055 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0272
+vertex -0.0055 -0.0095 -0.0262
+vertex -0.0055 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0288
+vertex -0.0055 -0.0105 -0.0288
+vertex -0.0055 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0248
+vertex -0.0055 -0.0095 -0.0238
+vertex -0.0055 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0298
+vertex -0.0055 -0.0095 -0.0298
+vertex -0.0055 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0298
+vertex -0.0055 0.0095 -0.0298
+vertex -0.0055 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 -0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0298
+vertex -0.0055 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0338
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0348
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0323
+vertex -0.0055 -0.0095 -0.0323
+vertex -0.0055 -0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0348
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0362
+vertex -0.0055 -0.0105 -0.0372
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0387
+vertex -0.0055 -0.0105 -0.0398
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0372
+vertex -0.0055 -0.0095 -0.0372
+vertex -0.0055 -0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0372
+vertex -0.0055 -0.0105 -0.0387
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0348
+vertex -0.0055 -0.0095 -0.0348
+vertex -0.0055 -0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0348
+vertex -0.0055 -0.0105 -0.0362
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0413
+vertex -0.0055 -0.0105 -0.0423
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0438
+vertex -0.0055 -0.0105 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0438
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0423
+vertex -0.0055 -0.0095 -0.0423
+vertex -0.0055 -0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0413
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0447
+vertex -0.0055 -0.0105 -0.0462
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0462
+vertex -0.0055 -0.0105 -0.0447
+vertex -0.0055 -0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0473
+vertex -0.0055 -0.0105 -0.0488
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0488
+vertex -0.0055 -0.0105 -0.0473
+vertex -0.0055 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0462
+vertex -0.0055 -0.0105 -0.0473
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0488
+vertex -0.0055 -0.0105 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0398
+vertex -0.0055 -0.0095 -0.0398
+vertex -0.0055 -0.0105 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0323
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0338
+vertex -0.0055 -0.0105 -0.0338
+vertex -0.0055 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0312
+vertex -0.0055 -0.0095 -0.0323
+vertex -0.0055 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0362
+vertex -0.0055 -0.0105 -0.0362
+vertex -0.0055 -0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0338
+vertex -0.0055 -0.0095 -0.0348
+vertex -0.0055 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0338
+vertex -0.0055 -0.0095 -0.0323
+vertex -0.0055 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0387
+vertex -0.0055 -0.0105 -0.0387
+vertex -0.0055 -0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0362
+vertex -0.0055 -0.0095 -0.0372
+vertex -0.0055 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0413
+vertex -0.0055 -0.0105 -0.0413
+vertex -0.0055 -0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0387
+vertex -0.0055 -0.0095 -0.0398
+vertex -0.0055 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0387
+vertex -0.0055 -0.0095 -0.0372
+vertex -0.0055 0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0362
+vertex -0.0055 -0.0095 -0.0348
+vertex -0.0055 0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 -0.0105 -0.0438
+vertex -0.0055 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0413
+vertex -0.0055 -0.0095 -0.0423
+vertex -0.0055 -0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0447
+vertex -0.0055 -0.0095 -0.0462
+vertex -0.0055 -0.0105 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 -0.0095 -0.0423
+vertex -0.0055 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 -0.0095 -0.0462
+vertex -0.0055 -0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 -0.0095 -0.0488
+vertex -0.0055 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 -0.0095 -0.0498
+vertex -0.0055 -0.0095 -0.0488
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0473
+vertex -0.0055 -0.0095 -0.0462
+vertex -0.0055 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0488
+vertex -0.0055 -0.0105 -0.0488
+vertex -0.0055 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0447
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0498
+vertex -0.0055 -0.0095 -0.0498
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0413
+vertex -0.0055 -0.0095 -0.0398
+vertex -0.0055 0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0312
+vertex -0.0055 -0.0105 -0.0298
+vertex -0.0055 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0095 -0.0498
+vertex -0.0055 0.0085 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0173
+vertex -0.0055 -0.0095 -0.0173
+vertex -0.0055 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0138
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0123
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0163
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0123
+vertex -0.0055 0.0105 -0.0123
+vertex -0.0055 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0148
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0187
+vertex -0.0055 -0.0095 -0.0187
+vertex -0.0055 0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0213
+vertex -0.0055 -0.0095 -0.0213
+vertex -0.0055 0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0173
+vertex -0.0055 0.0105 -0.0173
+vertex -0.0055 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0198
+vertex -0.0055 -0.0095 -0.0198
+vertex -0.0055 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0148
+vertex -0.0055 0.0105 -0.0148
+vertex -0.0055 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0173
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0238
+vertex -0.0055 -0.0095 -0.0238
+vertex -0.0055 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0262
+vertex -0.0055 -0.0095 -0.0262
+vertex -0.0055 0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0222
+vertex -0.0055 0.0105 -0.0222
+vertex -0.0055 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0248
+vertex -0.0055 -0.0095 -0.0248
+vertex -0.0055 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0288
+vertex -0.0055 -0.0095 -0.0288
+vertex -0.0055 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0312
+vertex -0.0055 -0.0095 -0.0312
+vertex -0.0055 0.0095 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0272
+vertex -0.0055 0.0105 -0.0272
+vertex -0.0055 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0298
+vertex -0.0055 -0.0095 -0.0298
+vertex -0.0055 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0248
+vertex -0.0055 0.0105 -0.0248
+vertex -0.0055 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0272
+vertex -0.0055 -0.0095 -0.0272
+vertex -0.0055 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0198
+vertex -0.0055 0.0105 -0.0198
+vertex -0.0055 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0222
+vertex -0.0055 -0.0095 -0.0222
+vertex -0.0055 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0123
+vertex -0.0055 0.0105 -0.0112
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0148
+vertex -0.0055 0.0105 -0.0138
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0123
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0123
+vertex -0.0055 0.0105 -0.0138
+vertex -0.0055 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0163
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0163
+vertex -0.0055 0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0173
+vertex -0.0055 0.0105 -0.0187
+vertex -0.0055 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0187
+vertex -0.0055 0.0105 -0.0173
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0198
+vertex -0.0055 0.0105 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0112
+vertex -0.0055 0.0095 -0.0112
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0148
+vertex -0.0055 0.0105 -0.0163
+vertex -0.0055 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0198
+vertex -0.0055 0.0105 -0.0213
+vertex -0.0055 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0213
+vertex -0.0055 0.0105 -0.0198
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0222
+vertex -0.0055 0.0105 -0.0238
+vertex -0.0055 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0238
+vertex -0.0055 0.0105 -0.0222
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0213
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0248
+vertex -0.0055 0.0105 -0.0262
+vertex -0.0055 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0262
+vertex -0.0055 0.0105 -0.0248
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0272
+vertex -0.0055 0.0105 -0.0288
+vertex -0.0055 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0288
+vertex -0.0055 0.0105 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0298
+vertex -0.0055 0.0105 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0272
+vertex -0.0055 0.0105 -0.0262
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0238
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0112
+vertex -0.0055 -0.0085 -0.0103
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0298
+vertex -0.0055 0.0105 -0.0298
+vertex -0.0055 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0338
+vertex -0.0055 -0.0095 -0.0338
+vertex -0.0055 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0362
+vertex -0.0055 -0.0095 -0.0362
+vertex -0.0055 0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0323
+vertex -0.0055 0.0105 -0.0323
+vertex -0.0055 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0348
+vertex -0.0055 -0.0095 -0.0348
+vertex -0.0055 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0387
+vertex -0.0055 -0.0095 -0.0387
+vertex -0.0055 0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0413
+vertex -0.0055 -0.0095 -0.0413
+vertex -0.0055 0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0372
+vertex -0.0055 0.0105 -0.0372
+vertex -0.0055 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0398
+vertex -0.0055 -0.0095 -0.0398
+vertex -0.0055 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0348
+vertex -0.0055 0.0105 -0.0348
+vertex -0.0055 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0372
+vertex -0.0055 -0.0095 -0.0372
+vertex -0.0055 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0438
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 0.0085 -0.0508
+vertex -0.0055 -0.0095 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 0.0095 -0.0438
+vertex -0.0055 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0423
+vertex -0.0055 0.0095 -0.0413
+vertex -0.0055 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0438
+vertex -0.0055 0.0095 -0.0447
+vertex -0.0055 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0462
+vertex -0.0055 0.0095 -0.0473
+vertex -0.0055 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0447
+vertex -0.0055 0.0105 -0.0447
+vertex -0.0055 0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0447
+vertex -0.0055 0.0095 -0.0462
+vertex -0.0055 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0423
+vertex -0.0055 0.0105 -0.0423
+vertex -0.0055 0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0473
+vertex -0.0055 0.0105 -0.0473
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0398
+vertex -0.0055 0.0105 -0.0398
+vertex -0.0055 0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0323
+vertex -0.0055 0.0095 -0.0312
+vertex -0.0055 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0323
+vertex -0.0055 0.0105 -0.0312
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0348
+vertex -0.0055 0.0105 -0.0338
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0323
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0323
+vertex -0.0055 0.0105 -0.0338
+vertex -0.0055 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0372
+vertex -0.0055 0.0105 -0.0362
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0398
+vertex -0.0055 0.0105 -0.0387
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0372
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0372
+vertex -0.0055 0.0105 -0.0387
+vertex -0.0055 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0348
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0348
+vertex -0.0055 0.0105 -0.0362
+vertex -0.0055 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0423
+vertex -0.0055 0.0105 -0.0413
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0447
+vertex -0.0055 0.0105 -0.0438
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0423
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0423
+vertex -0.0055 0.0105 -0.0438
+vertex -0.0055 0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0473
+vertex -0.0055 0.0105 -0.0462
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0120 -0.0610
+vertex -0.0055 0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 -0.0610
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 -0.0610
+vertex -0.0055 0.0085 -0.0508
+vertex -0.0055 0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0462
+vertex -0.0055 0.0105 -0.0447
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0413
+vertex -0.0055 0.0105 -0.0398
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0447
+vertex -0.0055 0.0105 -0.0462
+vertex -0.0055 0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0312
+vertex -0.0055 0.0105 -0.0298
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0398
+vertex -0.0055 0.0105 -0.0413
+vertex -0.0055 0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0312
+vertex -0.0055 0.0095 -0.0298
+vertex -0.0055 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0085 -0.0508
+vertex -0.0055 0.0120 -0.0610
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0123
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 0.0000
+vertex 0.0076 0.0120 -0.0367
+vertex -0.0055 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0076 0.0120 -0.0367
+vertex -0.0055 0.0120 0.0000
+vertex 0.0305 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 -0.0610
+vertex 0.0076 0.0120 -0.0548
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0076 0.0120 -0.0548
+vertex -0.0055 0.0120 -0.0610
+vertex 0.0076 0.0120 -0.0367
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0282 0.0120 -0.0367
+vertex 0.0305 0.0120 0.0000
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 0.0000
+vertex 0.0282 0.0120 -0.0367
+vertex 0.0076 0.0120 -0.0367
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0282 0.0120 -0.0548
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0076 0.0120 -0.0548
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0282 0.0120 -0.0548
+vertex 0.0282 0.0120 -0.0367
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 0.0000
+vertex 0.0305 0.0115 -0.0103
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0138
+vertex 0.0305 0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0115 -0.0103
+vertex 0.0305 0.0120 0.0000
+vertex 0.0305 0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 0.0000
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0148
+vertex 0.0305 0.0105 -0.0163
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0163
+vertex 0.0305 0.0105 -0.0148
+vertex 0.0305 0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0173
+vertex 0.0305 0.0105 -0.0187
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0187
+vertex 0.0305 0.0105 -0.0173
+vertex 0.0305 0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0163
+vertex 0.0305 0.0105 -0.0173
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0187
+vertex 0.0305 0.0105 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0198
+vertex 0.0305 0.0105 -0.0213
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0213
+vertex 0.0305 0.0105 -0.0198
+vertex 0.0305 0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0222
+vertex 0.0305 0.0105 -0.0238
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0238
+vertex 0.0305 0.0105 -0.0222
+vertex 0.0305 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0213
+vertex 0.0305 0.0105 -0.0222
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0248
+vertex 0.0305 0.0105 -0.0262
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0262
+vertex 0.0305 0.0105 -0.0248
+vertex 0.0305 0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0272
+vertex 0.0305 0.0105 -0.0288
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0288
+vertex 0.0305 0.0105 -0.0272
+vertex 0.0305 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0262
+vertex 0.0305 0.0105 -0.0272
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0238
+vertex 0.0305 0.0105 -0.0248
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0288
+vertex 0.0305 0.0105 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0163
+vertex 0.0305 0.0105 -0.0163
+vertex 0.0305 0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0148
+vertex 0.0305 0.0095 -0.0138
+vertex 0.0305 0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0187
+vertex 0.0305 0.0105 -0.0187
+vertex 0.0305 0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0173
+vertex 0.0305 0.0095 -0.0163
+vertex 0.0305 0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0148
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0173
+vertex 0.0305 -0.0095 -0.0173
+vertex 0.0305 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 0.0085 -0.0103
+vertex 0.0305 -0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0213
+vertex 0.0305 0.0105 -0.0213
+vertex 0.0305 0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0187
+vertex 0.0305 0.0095 -0.0198
+vertex 0.0305 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0198
+vertex 0.0305 -0.0095 -0.0198
+vertex 0.0305 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0138
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0138
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0238
+vertex 0.0305 0.0105 -0.0238
+vertex 0.0305 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0213
+vertex 0.0305 0.0095 -0.0222
+vertex 0.0305 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0248
+vertex 0.0305 0.0095 -0.0262
+vertex 0.0305 0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0238
+vertex 0.0305 0.0095 -0.0222
+vertex 0.0305 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0248
+vertex 0.0305 0.0095 -0.0262
+vertex 0.0305 0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0272
+vertex 0.0305 0.0095 -0.0288
+vertex 0.0305 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0288
+vertex 0.0305 0.0095 -0.0298
+vertex 0.0305 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0272
+vertex 0.0305 0.0095 -0.0262
+vertex 0.0305 -0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0288
+vertex 0.0305 0.0105 -0.0288
+vertex 0.0305 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0248
+vertex 0.0305 0.0095 -0.0238
+vertex 0.0305 -0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0298
+vertex 0.0305 0.0095 -0.0298
+vertex 0.0305 0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0298
+vertex 0.0305 -0.0095 -0.0298
+vertex 0.0305 0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 0.0000
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0298
+vertex 0.0305 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0338
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0348
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0323
+vertex 0.0305 0.0095 -0.0323
+vertex 0.0305 0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0348
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0362
+vertex 0.0305 0.0105 -0.0372
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0387
+vertex 0.0305 0.0105 -0.0398
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0372
+vertex 0.0305 0.0095 -0.0372
+vertex 0.0305 0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0372
+vertex 0.0305 0.0105 -0.0387
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0348
+vertex 0.0305 0.0095 -0.0348
+vertex 0.0305 0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0348
+vertex 0.0305 0.0105 -0.0362
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0413
+vertex 0.0305 0.0105 -0.0423
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0305 0.0105 -0.0438
+vertex 0.0305 0.0105 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0438
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0305 0.0105 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0423
+vertex 0.0305 0.0095 -0.0423
+vertex 0.0305 0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0413
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0305 0.0105 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0447
+vertex 0.0305 0.0105 -0.0462
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0462
+vertex 0.0305 0.0105 -0.0447
+vertex 0.0305 0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0473
+vertex 0.0305 0.0105 -0.0488
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0488
+vertex 0.0305 0.0105 -0.0473
+vertex 0.0305 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0462
+vertex 0.0305 0.0105 -0.0473
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0305 0.0105 -0.0488
+vertex 0.0305 0.0105 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0398
+vertex 0.0305 0.0095 -0.0398
+vertex 0.0305 0.0105 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0323
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0338
+vertex 0.0305 0.0105 -0.0338
+vertex 0.0305 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0312
+vertex 0.0305 0.0095 -0.0323
+vertex 0.0305 0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0362
+vertex 0.0305 0.0105 -0.0362
+vertex 0.0305 0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0338
+vertex 0.0305 0.0095 -0.0348
+vertex 0.0305 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0338
+vertex 0.0305 0.0095 -0.0323
+vertex 0.0305 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0387
+vertex 0.0305 0.0105 -0.0387
+vertex 0.0305 0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0362
+vertex 0.0305 0.0095 -0.0372
+vertex 0.0305 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0413
+vertex 0.0305 0.0105 -0.0413
+vertex 0.0305 0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0387
+vertex 0.0305 0.0095 -0.0398
+vertex 0.0305 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0387
+vertex 0.0305 0.0095 -0.0372
+vertex 0.0305 -0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0362
+vertex 0.0305 0.0095 -0.0348
+vertex 0.0305 -0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0438
+vertex 0.0305 0.0105 -0.0438
+vertex 0.0305 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0413
+vertex 0.0305 0.0095 -0.0423
+vertex 0.0305 0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0447
+vertex 0.0305 0.0095 -0.0462
+vertex 0.0305 0.0105 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0438
+vertex 0.0305 0.0095 -0.0423
+vertex 0.0305 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0085 -0.0478
+vertex 0.0305 0.0095 -0.0462
+vertex 0.0305 0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0085 -0.0478
+vertex 0.0305 0.0095 -0.0488
+vertex 0.0305 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0085 -0.0478
+vertex 0.0305 0.0095 -0.0498
+vertex 0.0305 0.0095 -0.0488
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0473
+vertex 0.0305 0.0095 -0.0462
+vertex 0.0305 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0488
+vertex 0.0305 0.0105 -0.0488
+vertex 0.0305 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0447
+vertex 0.0305 0.0095 -0.0438
+vertex 0.0305 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0498
+vertex 0.0305 0.0095 -0.0498
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0413
+vertex 0.0305 0.0095 -0.0398
+vertex 0.0305 -0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0312
+vertex 0.0305 0.0105 -0.0298
+vertex 0.0305 0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0305 0.0095 -0.0498
+vertex 0.0305 -0.0085 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0173
+vertex 0.0305 0.0095 -0.0173
+vertex 0.0305 0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0138
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 -0.0095 -0.0123
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0163
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 -0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0123
+vertex 0.0305 -0.0105 -0.0123
+vertex 0.0305 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0148
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0187
+vertex 0.0305 0.0095 -0.0187
+vertex 0.0305 -0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0213
+vertex 0.0305 0.0095 -0.0213
+vertex 0.0305 -0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0173
+vertex 0.0305 -0.0105 -0.0173
+vertex 0.0305 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0198
+vertex 0.0305 0.0095 -0.0198
+vertex 0.0305 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0148
+vertex 0.0305 -0.0105 -0.0148
+vertex 0.0305 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0173
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0238
+vertex 0.0305 0.0095 -0.0238
+vertex 0.0305 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0262
+vertex 0.0305 0.0095 -0.0262
+vertex 0.0305 -0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0222
+vertex 0.0305 -0.0105 -0.0222
+vertex 0.0305 -0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0248
+vertex 0.0305 0.0095 -0.0248
+vertex 0.0305 -0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0288
+vertex 0.0305 0.0095 -0.0288
+vertex 0.0305 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0312
+vertex 0.0305 0.0095 -0.0312
+vertex 0.0305 -0.0095 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0272
+vertex 0.0305 -0.0105 -0.0272
+vertex 0.0305 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0298
+vertex 0.0305 0.0095 -0.0298
+vertex 0.0305 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0248
+vertex 0.0305 -0.0105 -0.0248
+vertex 0.0305 -0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0272
+vertex 0.0305 0.0095 -0.0272
+vertex 0.0305 -0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0198
+vertex 0.0305 -0.0105 -0.0198
+vertex 0.0305 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0222
+vertex 0.0305 0.0095 -0.0222
+vertex 0.0305 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0123
+vertex 0.0305 -0.0105 -0.0112
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0148
+vertex 0.0305 -0.0105 -0.0138
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0123
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0105 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0123
+vertex 0.0305 -0.0105 -0.0138
+vertex 0.0305 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0163
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0105 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0105 -0.0163
+vertex 0.0305 -0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0173
+vertex 0.0305 -0.0105 -0.0187
+vertex 0.0305 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0187
+vertex 0.0305 -0.0105 -0.0173
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0105 -0.0198
+vertex 0.0305 -0.0105 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0112
+vertex 0.0305 -0.0095 -0.0112
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0148
+vertex 0.0305 -0.0105 -0.0163
+vertex 0.0305 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0198
+vertex 0.0305 -0.0105 -0.0213
+vertex 0.0305 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0213
+vertex 0.0305 -0.0105 -0.0198
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0222
+vertex 0.0305 -0.0105 -0.0238
+vertex 0.0305 -0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0238
+vertex 0.0305 -0.0105 -0.0222
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0213
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0105 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0248
+vertex 0.0305 -0.0105 -0.0262
+vertex 0.0305 -0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0262
+vertex 0.0305 -0.0105 -0.0248
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0272
+vertex 0.0305 -0.0105 -0.0288
+vertex 0.0305 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0288
+vertex 0.0305 -0.0105 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0298
+vertex 0.0305 -0.0105 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0272
+vertex 0.0305 -0.0105 -0.0262
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0238
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0105 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0112
+vertex 0.0305 0.0085 -0.0103
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0298
+vertex 0.0305 -0.0105 -0.0298
+vertex 0.0305 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0338
+vertex 0.0305 0.0095 -0.0338
+vertex 0.0305 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0362
+vertex 0.0305 0.0095 -0.0362
+vertex 0.0305 -0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0323
+vertex 0.0305 -0.0105 -0.0323
+vertex 0.0305 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0348
+vertex 0.0305 0.0095 -0.0348
+vertex 0.0305 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0387
+vertex 0.0305 0.0095 -0.0387
+vertex 0.0305 -0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0413
+vertex 0.0305 0.0095 -0.0413
+vertex 0.0305 -0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0372
+vertex 0.0305 -0.0105 -0.0372
+vertex 0.0305 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0398
+vertex 0.0305 0.0095 -0.0398
+vertex 0.0305 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0348
+vertex 0.0305 -0.0105 -0.0348
+vertex 0.0305 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0372
+vertex 0.0305 0.0095 -0.0372
+vertex 0.0305 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0438
+vertex 0.0305 0.0095 -0.0438
+vertex 0.0305 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0085 -0.0478
+vertex 0.0305 -0.0085 -0.0508
+vertex 0.0305 0.0095 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0085 -0.0478
+vertex 0.0305 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0438
+vertex 0.0305 -0.0095 -0.0438
+vertex 0.0305 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0423
+vertex 0.0305 -0.0095 -0.0413
+vertex 0.0305 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0438
+vertex 0.0305 -0.0095 -0.0447
+vertex 0.0305 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0462
+vertex 0.0305 -0.0095 -0.0473
+vertex 0.0305 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0447
+vertex 0.0305 -0.0105 -0.0447
+vertex 0.0305 -0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0447
+vertex 0.0305 -0.0095 -0.0462
+vertex 0.0305 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0423
+vertex 0.0305 -0.0105 -0.0423
+vertex 0.0305 -0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0473
+vertex 0.0305 -0.0105 -0.0473
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0398
+vertex 0.0305 -0.0105 -0.0398
+vertex 0.0305 -0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0323
+vertex 0.0305 -0.0095 -0.0312
+vertex 0.0305 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0323
+vertex 0.0305 -0.0105 -0.0312
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0348
+vertex 0.0305 -0.0105 -0.0338
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0323
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0323
+vertex 0.0305 -0.0105 -0.0338
+vertex 0.0305 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0372
+vertex 0.0305 -0.0105 -0.0362
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0398
+vertex 0.0305 -0.0105 -0.0387
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0372
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0372
+vertex 0.0305 -0.0105 -0.0387
+vertex 0.0305 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0348
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0348
+vertex 0.0305 -0.0105 -0.0362
+vertex 0.0305 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0423
+vertex 0.0305 -0.0105 -0.0413
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0447
+vertex 0.0305 -0.0105 -0.0438
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0423
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0423
+vertex 0.0305 -0.0105 -0.0438
+vertex 0.0305 -0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0473
+vertex 0.0305 -0.0105 -0.0462
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0305 -0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0305 -0.0085 -0.0508
+vertex 0.0305 -0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0462
+vertex 0.0305 -0.0105 -0.0447
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0413
+vertex 0.0305 -0.0105 -0.0398
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0447
+vertex 0.0305 -0.0105 -0.0462
+vertex 0.0305 -0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0312
+vertex 0.0305 -0.0105 -0.0298
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0398
+vertex 0.0305 -0.0105 -0.0413
+vertex 0.0305 -0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0312
+vertex 0.0305 -0.0095 -0.0298
+vertex 0.0305 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0085 -0.0508
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0123
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 -0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0249 -0.0120 -0.0435
+vertex 0.0305 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0249 -0.0120 -0.0435
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0044 -0.0120 -0.0435
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0249 -0.0120 -0.0565
+vertex 0.0044 -0.0120 -0.0565
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0249 -0.0120 -0.0565
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0249 -0.0120 -0.0435
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0044 -0.0120 -0.0435
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 0.0000
+vertex 0.0044 -0.0120 -0.0435
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0044 -0.0120 -0.0565
+vertex -0.0055 -0.0120 -0.0610
+vertex 0.0305 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 -0.0610
+vertex 0.0044 -0.0120 -0.0565
+vertex 0.0044 -0.0120 -0.0435
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 0.0900
+vertex -0.0140 -0.0040 0.0900
+vertex -0.0140 0.0040 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 -0.0040 0.0900
+vertex -0.0150 -0.0450 0.0900
+vertex -0.0060 -0.0040 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 0.0900
+vertex -0.0140 0.0040 0.0900
+vertex -0.0060 0.0040 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 0.0040 0.0900
+vertex -0.0150 0.0450 0.0900
+vertex -0.0150 -0.0450 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 -0.0040 0.0900
+vertex 0.0150 -0.0450 0.0900
+vertex 0.0150 0.0450 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 0.0900
+vertex -0.0060 -0.0040 0.0900
+vertex -0.0150 -0.0450 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 0.0040 0.0900
+vertex 0.0150 0.0450 0.0900
+vertex -0.0150 0.0450 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 0.0900
+vertex -0.0060 0.0040 0.0900
+vertex -0.0060 -0.0040 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 0.0900
+vertex 0.0150 -0.0450 0.0900
+vertex 0.0150 -0.0450 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 0.0800
+vertex 0.0150 0.0450 0.0800
+vertex 0.0150 0.0450 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 0.0800
+vertex -0.0060 -0.0040 0.0800
+vertex -0.0060 0.0040 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 -0.0040 0.0800
+vertex 0.0150 -0.0450 0.0800
+vertex -0.0150 -0.0450 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 0.0800
+vertex -0.0060 0.0040 0.0800
+vertex -0.0150 0.0450 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 0.0040 0.0800
+vertex 0.0150 0.0450 0.0800
+vertex 0.0150 -0.0450 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 -0.0040 0.0800
+vertex -0.0150 -0.0450 0.0800
+vertex -0.0150 0.0450 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 0.0800
+vertex -0.0140 -0.0040 0.0800
+vertex -0.0060 -0.0040 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 0.0040 0.0800
+vertex -0.0150 0.0450 0.0800
+vertex -0.0060 0.0040 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 0.0800
+vertex -0.0140 0.0040 0.0800
+vertex -0.0140 -0.0040 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 0.0800
+vertex -0.0150 -0.0450 0.0800
+vertex -0.0150 -0.0450 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 0.0900
+vertex -0.0150 0.0450 0.0900
+vertex -0.0150 0.0450 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 -0.0450 0.0900
+vertex 0.0850 -0.0450 0.0800
+vertex 0.0150 -0.0450 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 0.0800
+vertex 0.0150 -0.0450 0.0900
+vertex 0.0850 -0.0450 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0450 0.0800
+vertex 0.0850 0.0450 0.0900
+vertex 0.0150 0.0450 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 0.0900
+vertex 0.0150 0.0450 0.0800
+vertex 0.0850 0.0450 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 -0.3020
+vertex -0.0140 -0.0040 -0.3020
+vertex -0.0140 0.0040 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 -0.0040 -0.3020
+vertex -0.0150 -0.0450 -0.3020
+vertex -0.0060 -0.0040 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 -0.3020
+vertex -0.0140 0.0040 -0.3020
+vertex -0.0060 0.0040 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 0.0040 -0.3020
+vertex -0.0150 0.0450 -0.3020
+vertex -0.0150 -0.0450 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 -0.0040 -0.3020
+vertex 0.0150 -0.0450 -0.3020
+vertex 0.0150 0.0450 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 -0.3020
+vertex -0.0060 -0.0040 -0.3020
+vertex -0.0150 -0.0450 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 0.0040 -0.3020
+vertex 0.0150 0.0450 -0.3020
+vertex -0.0150 0.0450 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 -0.3020
+vertex -0.0060 0.0040 -0.3020
+vertex -0.0060 -0.0040 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 -0.3020
+vertex 0.0150 -0.0450 -0.3020
+vertex 0.0150 -0.0450 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 -0.3120
+vertex 0.0150 0.0450 -0.3120
+vertex 0.0150 0.0450 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 -0.3120
+vertex -0.0060 -0.0040 -0.3120
+vertex -0.0060 0.0040 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 -0.0040 -0.3120
+vertex 0.0150 -0.0450 -0.3120
+vertex -0.0150 -0.0450 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 -0.3120
+vertex -0.0060 0.0040 -0.3120
+vertex -0.0150 0.0450 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 0.0040 -0.3120
+vertex 0.0150 0.0450 -0.3120
+vertex 0.0150 -0.0450 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 -0.0040 -0.3120
+vertex -0.0150 -0.0450 -0.3120
+vertex -0.0150 0.0450 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 -0.3120
+vertex -0.0140 -0.0040 -0.3120
+vertex -0.0060 -0.0040 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 0.0040 -0.3120
+vertex -0.0150 0.0450 -0.3120
+vertex -0.0060 0.0040 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 -0.3120
+vertex -0.0140 0.0040 -0.3120
+vertex -0.0140 -0.0040 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 -0.3120
+vertex -0.0150 -0.0450 -0.3120
+vertex -0.0150 -0.0450 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 -0.3020
+vertex -0.0150 0.0450 -0.3020
+vertex -0.0150 0.0450 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 -0.0450 -0.3020
+vertex 0.0850 -0.0450 -0.3120
+vertex 0.0150 -0.0450 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 -0.3120
+vertex 0.0150 -0.0450 -0.3020
+vertex 0.0850 -0.0450 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0450 -0.3120
+vertex 0.0850 0.0450 -0.3020
+vertex 0.0150 0.0450 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 -0.3020
+vertex 0.0150 0.0450 -0.3120
+vertex 0.0850 0.0450 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 -0.2120
+vertex -0.0140 -0.0040 -0.2120
+vertex -0.0140 0.0040 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 -0.0040 -0.2120
+vertex -0.0150 -0.0450 -0.2120
+vertex -0.0060 -0.0040 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 -0.2120
+vertex -0.0140 0.0040 -0.2120
+vertex -0.0060 0.0040 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 0.0040 -0.2120
+vertex -0.0150 0.0450 -0.2120
+vertex -0.0150 -0.0450 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 -0.0040 -0.2120
+vertex 0.0150 -0.0450 -0.2120
+vertex 0.0150 0.0450 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 -0.2120
+vertex -0.0060 -0.0040 -0.2120
+vertex -0.0150 -0.0450 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 0.0040 -0.2120
+vertex 0.0150 0.0450 -0.2120
+vertex -0.0150 0.0450 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 -0.2120
+vertex -0.0060 0.0040 -0.2120
+vertex -0.0060 -0.0040 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 -0.2120
+vertex 0.0150 -0.0450 -0.2120
+vertex 0.0150 -0.0450 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 -0.2220
+vertex 0.0150 0.0450 -0.2220
+vertex 0.0150 0.0450 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 -0.2220
+vertex -0.0060 -0.0040 -0.2220
+vertex -0.0060 0.0040 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 -0.0040 -0.2220
+vertex 0.0150 -0.0450 -0.2220
+vertex -0.0150 -0.0450 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 -0.2220
+vertex -0.0060 0.0040 -0.2220
+vertex -0.0150 0.0450 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 0.0040 -0.2220
+vertex 0.0150 0.0450 -0.2220
+vertex 0.0150 -0.0450 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 -0.0040 -0.2220
+vertex -0.0150 -0.0450 -0.2220
+vertex -0.0150 0.0450 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 -0.2220
+vertex -0.0140 -0.0040 -0.2220
+vertex -0.0060 -0.0040 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 0.0040 -0.2220
+vertex -0.0150 0.0450 -0.2220
+vertex -0.0060 0.0040 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 -0.2220
+vertex -0.0140 0.0040 -0.2220
+vertex -0.0140 -0.0040 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 -0.2220
+vertex -0.0150 -0.0450 -0.2220
+vertex -0.0150 -0.0450 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 -0.2120
+vertex -0.0150 0.0450 -0.2120
+vertex -0.0150 0.0450 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 -0.0450 -0.2120
+vertex 0.0850 -0.0450 -0.2220
+vertex 0.0150 -0.0450 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0450 -0.2220
+vertex 0.0150 -0.0450 -0.2120
+vertex 0.0850 -0.0450 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0450 -0.2220
+vertex 0.0850 0.0450 -0.2120
+vertex 0.0150 0.0450 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0450 -0.2120
+vertex 0.0150 0.0450 -0.2220
+vertex 0.0850 0.0450 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 -0.0100
+vertex -0.0150 -0.0450 0.0000
+vertex -0.0150 0.0450 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 0.0000
+vertex -0.0150 0.0450 -0.0100
+vertex -0.0150 -0.0450 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0308 0.0205 -0.0000
+vertex -0.0308 0.0305 -0.0000
+vertex -0.0499 0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 0.0305 0.0191
+vertex -0.0499 0.0205 0.0191
+vertex -0.0308 0.0205 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1024 0.1012 0.1703
+vertex 0.0850 0.0999 0.1690
+vertex 0.0850 0.1350 0.1300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.1350 0.1300
+vertex 0.1024 0.1364 0.1312
+vertex 0.1024 0.1012 0.1703
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1024 0.0436 0.1312
+vertex 0.0850 0.0450 0.1300
+vertex 0.0850 0.0801 0.1690
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0801 0.1690
+vertex 0.1024 0.0788 0.1703
+vertex 0.1024 0.0436 0.1312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1024 0.0788 -0.3923
+vertex 0.0850 0.0801 -0.3910
+vertex 0.0850 0.0450 -0.3520
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0450 -0.3520
+vertex 0.1024 0.0436 -0.3532
+vertex 0.1024 0.0788 -0.3923
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1024 0.1364 -0.3532
+vertex 0.0850 0.1350 -0.3520
+vertex 0.0850 0.0999 -0.3910
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0999 -0.3910
+vertex 0.1024 0.1012 -0.3923
+vertex 0.1024 0.1364 -0.3532
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0408 0.0305 0.0000
+vertex 0.0308 0.0305 0.0000
+vertex 0.0308 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0308 -0.0305 0.0000
+vertex 0.0408 -0.0305 0.0000
+vertex 0.0408 0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 -0.0305 0.0907
+vertex -0.0499 -0.0305 0.0807
+vertex -0.0499 0.0305 0.0807
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 0.0305 0.0807
+vertex -0.0499 0.0305 0.0907
+vertex -0.0499 -0.0305 0.0907
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0750 0.0450 -0.1110
+vertex 0.0850 0.0450 -0.1110
+vertex 0.0850 0.0450 -0.0500
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 0.0450 -0.0500
+vertex 0.0750 0.0450 -0.0500
+vertex 0.0750 0.0450 -0.1110
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0319 0.1180 -0.1210
+vertex 0.0319 0.1180 -0.1110
+vertex 0.0489 0.1350 -0.1110
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0489 0.1350 -0.1110
+vertex 0.0489 0.1350 -0.1210
+vertex 0.0319 0.1180 -0.1210
+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.0559 0.1279 -0.0500
+vertex 0.0489 0.1350 -0.0500
+vertex 0.0319 0.1180 -0.0500
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0319 0.1180 -0.0500
+vertex 0.0390 0.1110 -0.0500
+vertex 0.0559 0.1279 -0.0500
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0120 -0.0070
+vertex -0.0305 -0.0120 0.0000
+vertex -0.0305 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 0.0120 0.0000
+vertex -0.0305 0.0120 -0.0070
+vertex -0.0305 -0.0120 -0.0070
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0055 -0.0120 -0.0070
+vertex 0.0055 -0.0120 0.0000
+vertex -0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0120 0.0000
+vertex -0.0305 -0.0120 -0.0070
+vertex 0.0055 -0.0120 -0.0070
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0045 -0.0120 -0.0000
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 -0.0610
+vertex 0.0045 -0.0120 -0.0610
+vertex 0.0045 -0.0120 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 0.0800
+vertex -0.0150 -0.0450 0.0900
+vertex -0.0150 0.0450 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 0.0900
+vertex -0.0150 0.0450 0.0800
+vertex -0.0150 -0.0450 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 -0.3120
+vertex -0.0150 -0.0450 -0.3020
+vertex -0.0150 0.0450 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 -0.3020
+vertex -0.0150 0.0450 -0.3120
+vertex -0.0150 -0.0450 -0.3120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0450 -0.2220
+vertex -0.0150 -0.0450 -0.2120
+vertex -0.0150 0.0450 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0450 -0.2120
+vertex -0.0150 0.0450 -0.2220
+vertex -0.0150 -0.0450 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0910 -0.0450 0.0800
+vertex 0.0850 -0.0450 0.0800
+vertex 0.0850 -0.0450 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 -0.0450 0.0900
+vertex 0.0910 -0.0450 0.0900
+vertex 0.0910 -0.0450 0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0910 -0.0450 -0.0100
+vertex 0.0850 -0.0450 -0.0100
+vertex 0.0850 -0.0450 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 -0.0450 0.0000
+vertex 0.0910 -0.0450 0.0000
+vertex 0.0910 -0.0450 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0910 -0.0450 -0.2220
+vertex 0.0850 -0.0450 -0.2220
+vertex 0.0850 -0.0450 -0.2120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 -0.0450 -0.2120
+vertex 0.0910 -0.0450 -0.2120
+vertex 0.0910 -0.0450 -0.2220
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0910 -0.0450 -0.3120
+vertex 0.0850 -0.0450 -0.3120
+vertex 0.0850 -0.0450 -0.3020
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0850 -0.0450 -0.3020
+vertex 0.0910 -0.0450 -0.3020
+vertex 0.0910 -0.0450 -0.3120
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/builders/output/BoatWithManyDCMounts/graph-silhouette.dxf b/rocolib/builders/output/BoatWithManyDCMounts/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..8813a9082929d5f0021ff4b0a6d50d3e57ab9eb0
--- /dev/null
+++ b/rocolib/builders/output/BoatWithManyDCMounts/graph-silhouette.dxf
@@ -0,0 +1,15170 @@
+  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
+216.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+186.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+216.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+186.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+186.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+216.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+226.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+226.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.02325267042636
+ 20
+20.5
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.02325267042636
+ 20
+14.5
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.0232526704264
+ 20
+14.5
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.0232526704264
+ 20
+20.5
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+256.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+256.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+256.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+256.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+256.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+256.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.02325267042636
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.02325267042639
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.02325267042636
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042637
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.02325267042639
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+136.02325267042636
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.02325267042636
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+126.02325267042639
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+136.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+126.02325267042639
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.02325267042639
+ 20
+20.5
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.02325267042639
+ 20
+14.5
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.02325267042636
+ 20
+14.5
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.02325267042636
+ 20
+20.5
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+136.02325267042636
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.02325267042636
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+166.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.02325267042636
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+166.02325267042636
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+166.02325267042636
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.02325267042636
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.02325267042639
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+96.02325267042637
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.02325267042637
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+126.02325267042639
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+96.02325267042637
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+96.02325267042637
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042637
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+96.02325267042637
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042637
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.02325267042637
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042637
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+240.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.02325267042636
+ 20
+240.50000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+240.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.02325267042636
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+240.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+478.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+518.0232526704265
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+438.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+428.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+438.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+428.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.0232526704264
+ 20
+20.5
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.0232526704264
+ 20
+14.5
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.0232526704264
+ 20
+14.5
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.0232526704264
+ 20
+20.5
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+468.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+468.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+468.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+468.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+478.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+468.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+478.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+468.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+398.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+398.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+398.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+398.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+398.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+398.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+518.0232526704265
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+528.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0232526704264
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+518.0232526704265
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+528.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+518.0232526704265
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+518.0232526704265
+ 20
+20.5
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+518.0232526704265
+ 20
+14.5
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0232526704264
+ 20
+14.5
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0232526704264
+ 20
+20.5
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+14.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+528.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+558.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+558.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+558.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+558.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+558.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+518.0232526704265
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+488.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+488.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+518.0232526704265
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+488.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+488.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+478.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+488.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+478.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+488.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+478.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042637
+ 20
+320.50000000000006
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042637
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+33.508881852264786
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+33.508881852264786
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.508881852264786
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+18.818104996527182
+ 21
+300.9176577976636
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+18.818104996527182
+ 20
+300.9176577976636
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+5.684341886080803e-14
+ 20
+365.5
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+320.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.127328140789616
+ 20
+351.33531559532713
+ 30
+0.0
+ 11
+5.684341886080803e-14
+ 21
+365.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+18.818104996527182
+ 20
+300.9176577976636
+ 30
+0.0
+ 11
+4.127328140789616
+ 21
+351.33531559532713
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042637
+ 20
+320.50000000000006
+ 30
+0.0
+ 11
+86.02325267042634
+ 21
+365.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042634
+ 20
+365.50000000000006
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+410.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+2.8421709430404014e-14
+ 20
+365.5
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+410.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042632
+ 20
+410.50000000000006
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0232526704265
+ 20
+365.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+320.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0232526704265
+ 20
+410.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+365.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+654.0465053408527
+ 20
+365.5000000000004
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+320.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+649.9191772000632
+ 20
+351.33531559532753
+ 30
+0.0
+ 11
+635.2284003443256
+ 21
+300.91765779766394
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+654.0465053408527
+ 20
+365.5000000000004
+ 30
+0.0
+ 11
+649.9191772000632
+ 21
+351.33531559532753
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0232526704265
+ 20
+320.50000000000034
+ 30
+0.0
+ 11
+635.2284003443256
+ 21
+300.91765779766394
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+568.0232526704265
+ 20
+320.50000000000034
+ 30
+0.0
+ 11
+620.5376234885883
+ 21
+250.50000000000037
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+635.2284003443257
+ 20
+300.917657797664
+ 30
+0.0
+ 11
+620.5376234885883
+ 21
+250.50000000000037
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+568.0232526704265
+ 20
+250.5000000000003
+ 30
+0.0
+ 11
+620.5376234885883
+ 21
+250.50000000000037
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0232526704265
+ 20
+320.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+250.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704266
+ 20
+232.99520972727979
+ 30
+0.0
+ 11
+568.0232526704266
+ 21
+250.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.5376234885883
+ 20
+232.99520972727984
+ 30
+0.0
+ 11
+568.0232526704266
+ 21
+232.99520972727979
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.5376234885883
+ 20
+250.50000000000037
+ 30
+0.0
+ 11
+620.5376234885883
+ 21
+232.99520972727984
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+654.0465053408527
+ 20
+365.5000000000004
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+635.2284003443256
+ 20
+430.0823422023368
+ 30
+0.0
+ 11
+568.0232526704264
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+649.9191772000632
+ 20
+379.6646844046732
+ 30
+0.0
+ 11
+654.0465053408527
+ 21
+365.5000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+635.2284003443256
+ 20
+430.0823422023368
+ 30
+0.0
+ 11
+649.9191772000632
+ 21
+379.6646844046732
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.537623488588
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+635.2284003443256
+ 21
+430.0823422023368
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+620.537623488588
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+410.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+620.537623488588
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042633
+ 20
+410.5000000000003
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+86.02325267042632
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+33.50888185226472
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+86.02325267042633
+ 20
+410.5000000000003
+ 30
+0.0
+ 11
+33.50888185226472
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042632
+ 20
+498.0047902727208
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.50888185226472
+ 20
+498.0047902727208
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+498.0047902727208
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.50888185226472
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+33.50888185226472
+ 21
+498.0047902727208
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+86.02325267042633
+ 20
+410.5000000000003
+ 30
+0.0
+ 11
+18.818104996527126
+ 21
+430.08234220233675
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+18.818104996527126
+ 20
+430.08234220233675
+ 30
+0.0
+ 11
+33.50888185226472
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.127328140789559
+ 20
+379.6646844046731
+ 30
+0.0
+ 11
+18.818104996527126
+ 21
+430.0823422023367
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+365.5000000000003
+ 30
+0.0
+ 11
+4.127328140789559
+ 21
+379.6646844046731
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.02325267042636
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042632
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+86.02325267042632
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+528.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+518.0232526704266
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+528.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+478.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+518.0232526704266
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.0232526704264
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+478.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.0232526704264
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+438.0232526704264
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+428.0232526704264
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+388.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+388.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+327.02325267042636
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.02325267042636
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+266.0232526704264
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+266.0232526704264
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.02325267042636
+ 20
+576.7772439983707
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+576.7772439983707
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+576.7772439983707
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+576.7772439983707
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+256.02325267042636
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+256.0232526704264
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+256.02325267042636
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+256.0232526704264
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.02325267042636
+ 20
+516.6386219991855
+ 30
+0.0
+ 11
+327.02325267042636
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.02325267042636
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+337.02325267042636
+ 21
+516.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.02325267042636
+ 20
+540.6386219991855
+ 30
+0.0
+ 11
+337.02325267042636
+ 21
+540.6386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.02325267042636
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+226.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+216.02325267042636
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.02325267042633
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.02325267042634
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+136.02325267042633
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042634
+ 20
+480.5000000000002
+ 30
+0.0
+ 11
+126.02325267042634
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042634
+ 20
+480.5000000000002
+ 30
+0.0
+ 11
+86.02325267042634
+ 21
+480.5000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.0232526704264
+ 20
+480.5000000000003
+ 30
+0.0
+ 11
+266.0232526704264
+ 21
+480.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.537623488588
+ 20
+498.00479027272087
+ 30
+0.0
+ 11
+620.537623488588
+ 21
+480.50000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704265
+ 20
+498.00479027272087
+ 30
+0.0
+ 11
+620.537623488588
+ 21
+498.00479027272087
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0232526704265
+ 20
+480.50000000000034
+ 30
+0.0
+ 11
+568.0232526704265
+ 21
+498.00479027272087
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.508881852264786
+ 20
+232.9952097272795
+ 30
+0.0
+ 11
+33.508881852264786
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042637
+ 20
+232.9952097272795
+ 30
+0.0
+ 11
+33.508881852264786
+ 21
+232.9952097272795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042637
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+86.02325267042637
+ 21
+232.9952097272795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.0232526704264
+ 20
+180.50000000000003
+ 30
+0.0
+ 11
+186.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+180.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.0232526704264
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+176.0232526704264
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+187.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+195.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+195.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+195.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+195.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+187.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+187.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+187.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.68991933709302
+ 20
+16.000000000000004
+ 30
+0.0
+ 11
+222.68991933709302
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.68991933709302
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+219.35658600375973
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+219.35658600375973
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+219.35658600375973
+ 21
+16.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+255.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+255.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+247.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+247.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.2732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+258.2732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.2732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+258.7732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.7732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+258.7732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.7732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+258.2732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.2732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+258.2732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.2732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+258.7732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.7732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+258.7732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.7732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+258.2732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.68991933709307
+ 20
+16.000000000000004
+ 30
+0.0
+ 11
+132.68991933709307
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.68991933709307
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+129.3565860037597
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.3565860037597
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+129.3565860037597
+ 21
+16.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.02325267042636
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+165.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+165.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+157.02325267042636
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.02325267042636
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+157.02325267042636
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.27325267042636
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+168.27325267042636
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.27325267042636
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+168.7732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.7732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+168.7732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.7732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+168.27325267042636
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.27325267042636
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+168.27325267042636
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.27325267042636
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+168.7732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.7732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+168.7732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.7732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+168.27325267042636
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.02325267042637
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+105.02325267042637
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.02325267042637
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+105.02325267042637
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.02325267042637
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+97.02325267042637
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.02325267042637
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+97.02325267042637
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+88.52325267042636
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+101.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+88.52325267042636
+ 20
+101.86363636363637
+ 30
+0.0
+ 11
+93.52325267042637
+ 21
+106.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.52325267042637
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+93.52325267042637
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.52325267042637
+ 20
+123.22727272727273
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+128.22727272727272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+88.52325267042636
+ 20
+128.22727272727272
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+88.52325267042636
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+142.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+88.52325267042636
+ 20
+142.77272727272728
+ 30
+0.0
+ 11
+93.52325267042637
+ 21
+147.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.52325267042637
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+93.52325267042637
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.52325267042637
+ 20
+164.13636363636363
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+169.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+88.52325267042636
+ 20
+169.13636363636363
+ 30
+0.0
+ 11
+88.52325267042636
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.4550708522446
+ 20
+258.25000000000006
+ 30
+0.0
+ 11
+337.86416176133554
+ 21
+258.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.86416176133554
+ 20
+258.25000000000006
+ 30
+0.0
+ 11
+337.86416176133554
+ 21
+257.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.86416176133554
+ 20
+257.75
+ 30
+0.0
+ 11
+349.4550708522446
+ 21
+257.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.4550708522446
+ 20
+257.75
+ 30
+0.0
+ 11
+349.4550708522446
+ 21
+258.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.18234357951735
+ 20
+258.25000000000006
+ 30
+0.0
+ 11
+365.59143448860823
+ 21
+258.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.59143448860823
+ 20
+258.25000000000006
+ 30
+0.0
+ 11
+365.59143448860823
+ 21
+257.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.59143448860823
+ 20
+257.75
+ 30
+0.0
+ 11
+377.18234357951735
+ 21
+257.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.18234357951735
+ 20
+257.75
+ 30
+0.0
+ 11
+377.18234357951735
+ 21
+258.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+315.9323435795173
+ 20
+243.00000000000003
+ 30
+0.0
+ 11
+315.9323435795173
+ 21
+248.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+315.9323435795173
+ 20
+248.00000000000006
+ 30
+0.0
+ 11
+304.84143448860823
+ 21
+248.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+304.84143448860823
+ 20
+248.00000000000006
+ 30
+0.0
+ 11
+304.84143448860823
+ 21
+243.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+288.20507085224455
+ 20
+243.00000000000003
+ 30
+0.0
+ 11
+288.20507085224455
+ 21
+248.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+288.20507085224455
+ 20
+248.00000000000006
+ 30
+0.0
+ 11
+277.11416176133554
+ 21
+248.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+277.11416176133554
+ 20
+248.00000000000006
+ 30
+0.0
+ 11
+277.11416176133554
+ 21
+243.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+434.68991933709304
+ 20
+16.000000000000004
+ 30
+0.0
+ 11
+434.68991933709304
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+434.68991933709304
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+431.3565860037598
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+431.3565860037598
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+431.3565860037598
+ 21
+16.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+459.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+467.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+467.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+467.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+467.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+459.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+459.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+459.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.2732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+470.2732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.2732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+470.7732526704264
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.7732526704264
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+470.7732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.7732526704264
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+470.2732526704264
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.2732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+470.2732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.2732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+470.7732526704264
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.7732526704264
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+470.7732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+470.7732526704264
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+470.2732526704264
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+407.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+407.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+399.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+399.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+399.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+101.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.5232526704264
+ 20
+101.86363636363637
+ 30
+0.0
+ 11
+395.52325267042636
+ 21
+106.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.52325267042636
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+395.52325267042636
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.52325267042636
+ 20
+123.22727272727273
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+128.22727272727272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.5232526704264
+ 20
+128.22727272727272
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+142.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.5232526704264
+ 20
+142.77272727272728
+ 30
+0.0
+ 11
+395.52325267042636
+ 21
+147.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.52325267042636
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+395.52325267042636
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+395.52325267042636
+ 20
+164.13636363636363
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+169.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.5232526704264
+ 20
+169.13636363636363
+ 30
+0.0
+ 11
+390.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.689919337093
+ 20
+16.000000000000004
+ 30
+0.0
+ 11
+524.689919337093
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.689919337093
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+521.3565860037598
+ 21
+19.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+521.3565860037598
+ 20
+19.000000000000004
+ 30
+0.0
+ 11
+521.3565860037598
+ 21
+16.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+549.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+557.0232526704265
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+557.0232526704265
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+557.0232526704265
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+557.0232526704265
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+549.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+549.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+549.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2732526704265
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+560.2732526704265
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2732526704265
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+560.7732526704265
+ 21
+106.61363636363636
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.7732526704265
+ 20
+106.61363636363636
+ 30
+0.0
+ 11
+560.7732526704265
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.7732526704265
+ 20
+123.47727272727273
+ 30
+0.0
+ 11
+560.2732526704265
+ 21
+123.47727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2732526704265
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+560.2732526704265
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2732526704265
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+560.7732526704265
+ 21
+147.52272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.7732526704265
+ 20
+147.52272727272728
+ 30
+0.0
+ 11
+560.7732526704265
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.7732526704265
+ 20
+164.38636363636363
+ 30
+0.0
+ 11
+560.2732526704265
+ 21
+164.38636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+497.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+497.0232526704264
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+497.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+497.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+489.0232526704264
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.0232526704264
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+489.0232526704264
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+480.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+101.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+480.5232526704264
+ 20
+101.86363636363637
+ 30
+0.0
+ 11
+485.5232526704264
+ 21
+106.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+485.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+485.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+485.5232526704264
+ 20
+123.22727272727273
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+128.22727272727272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+480.5232526704264
+ 20
+128.22727272727272
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+480.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+142.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+480.5232526704264
+ 20
+142.77272727272728
+ 30
+0.0
+ 11
+485.5232526704264
+ 21
+147.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+485.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+485.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+485.5232526704264
+ 20
+164.13636363636363
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+169.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+480.5232526704264
+ 20
+169.13636363636363
+ 30
+0.0
+ 11
+480.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.835549148350456
+ 20
+321.2261564960398
+ 30
+0.0
+ 11
+21.79874965689743
+ 21
+338.5120791976936
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.79874965689743
+ 20
+338.5120791976936
+ 30
+0.0
+ 11
+21.318712887798146
+ 21
+338.37220532481973
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.318712887798146
+ 20
+338.37220532481973
+ 30
+0.0
+ 11
+26.35551237925117
+ 21
+321.08628262316597
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.35551237925117
+ 20
+321.08628262316597
+ 30
+0.0
+ 11
+26.835549148350456
+ 21
+321.2261564960398
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+632.2477556839555
+ 20
+338.5120791976939
+ 30
+0.0
+ 11
+627.2109561925024
+ 21
+321.22615649604006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+627.2109561925024
+ 20
+321.22615649604006
+ 30
+0.0
+ 11
+627.6909929616016
+ 21
+321.08628262316626
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+627.6909929616016
+ 20
+321.08628262316626
+ 30
+0.0
+ 11
+632.7277924530547
+ 21
+338.37220532482
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+632.7277924530547
+ 20
+338.37220532482
+ 30
+0.0
+ 11
+632.2477556839555
+ 21
+338.5120791976939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+603.0328332158676
+ 20
+237.37140729545996
+ 30
+0.0
+ 11
+603.0328332158676
+ 21
+246.12380243182022
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+603.0328332158676
+ 20
+246.12380243182022
+ 30
+0.0
+ 11
+585.5280429431472
+ 21
+246.1238024318202
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+585.5280429431472
+ 20
+246.1238024318202
+ 30
+0.0
+ 11
+585.5280429431472
+ 21
+237.37140729545993
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+627.2109561925023
+ 20
+409.7738435039606
+ 30
+0.0
+ 11
+632.2477556839555
+ 21
+392.4879208023068
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+632.2477556839555
+ 20
+392.4879208023068
+ 30
+0.0
+ 11
+632.7277924530547
+ 21
+392.62779467518067
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+632.7277924530547
+ 20
+392.62779467518067
+ 30
+0.0
+ 11
+627.6909929616015
+ 21
+409.9137173768344
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+627.6909929616015
+ 20
+409.9137173768344
+ 30
+0.0
+ 11
+627.2109561925023
+ 21
+409.7738435039606
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.013672124985256
+ 20
+493.62859270454067
+ 30
+0.0
+ 11
+51.013672124985256
+ 21
+484.87619756818043
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.013672124985256
+ 20
+484.87619756818043
+ 30
+0.0
+ 11
+68.51846239770579
+ 21
+484.87619756818043
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.51846239770579
+ 20
+484.87619756818043
+ 30
+0.0
+ 11
+68.51846239770579
+ 21
+493.62859270454067
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.798749656897375
+ 20
+392.48792080230663
+ 30
+0.0
+ 11
+26.8355491483504
+ 21
+409.7738435039605
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.8355491483504
+ 20
+409.7738435039605
+ 30
+0.0
+ 11
+26.355512379251113
+ 21
+409.9137173768343
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.355512379251113
+ 20
+409.9137173768343
+ 30
+0.0
+ 11
+21.318712887798085
+ 21
+392.62779467518044
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.318712887798085
+ 20
+392.62779467518044
+ 30
+0.0
+ 11
+21.798749656897375
+ 21
+392.48792080230663
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.59143448860823
+ 20
+472.7500000000003
+ 30
+0.0
+ 11
+377.18234357951735
+ 21
+472.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.18234357951735
+ 20
+472.7500000000003
+ 30
+0.0
+ 11
+377.18234357951735
+ 21
+473.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.18234357951735
+ 20
+473.2500000000003
+ 30
+0.0
+ 11
+365.59143448860823
+ 21
+473.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.59143448860823
+ 20
+473.2500000000003
+ 30
+0.0
+ 11
+365.59143448860823
+ 21
+472.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.86416176133554
+ 20
+472.7500000000003
+ 30
+0.0
+ 11
+349.4550708522446
+ 21
+472.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.4550708522446
+ 20
+472.7500000000003
+ 30
+0.0
+ 11
+349.4550708522446
+ 21
+473.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.4550708522446
+ 20
+473.2500000000003
+ 30
+0.0
+ 11
+337.86416176133554
+ 21
+473.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.86416176133554
+ 20
+473.2500000000003
+ 30
+0.0
+ 11
+337.86416176133554
+ 21
+472.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+521.1065860037598
+ 20
+475.75000000000034
+ 30
+0.0
+ 11
+524.9399193370932
+ 21
+475.75000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.9399193370932
+ 20
+475.75000000000034
+ 30
+0.0
+ 11
+524.9399193370932
+ 21
+476.25000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.9399193370932
+ 20
+476.25000000000034
+ 30
+0.0
+ 11
+521.1065860037598
+ 21
+476.25000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+521.1065860037598
+ 20
+476.25000000000034
+ 30
+0.0
+ 11
+521.1065860037598
+ 21
+475.75000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+431.1065860037598
+ 20
+475.75000000000034
+ 30
+0.0
+ 11
+434.9399193370931
+ 21
+475.75000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+434.9399193370931
+ 20
+475.75000000000034
+ 30
+0.0
+ 11
+434.9399193370931
+ 21
+476.25000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+434.9399193370931
+ 20
+476.25000000000034
+ 30
+0.0
+ 11
+431.1065860037598
+ 21
+476.25000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+431.1065860037598
+ 20
+476.25000000000034
+ 30
+0.0
+ 11
+431.1065860037598
+ 21
+475.75000000000034
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+309.02325267042636
+ 20
+535.1386219991855
+ 30
+0.0
+ 11
+298.0232526704264
+ 21
+535.1386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+298.0232526704264
+ 20
+535.1386219991855
+ 30
+0.0
+ 11
+298.0232526704264
+ 21
+522.1386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+298.0232526704264
+ 20
+522.1386219991855
+ 30
+0.0
+ 11
+309.02325267042636
+ 21
+522.1386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+309.02325267042636
+ 20
+522.1386219991855
+ 30
+0.0
+ 11
+309.02325267042636
+ 21
+535.1386219991855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+277.52325267042636
+ 20
+533.6386219991856
+ 30
+0.0
+ 11
+271.5232526704264
+ 21
+533.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+271.5232526704264
+ 20
+533.6386219991856
+ 30
+0.0
+ 11
+271.5232526704264
+ 21
+523.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+271.5232526704264
+ 20
+523.6386219991856
+ 30
+0.0
+ 11
+277.52325267042636
+ 21
+523.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+277.52325267042636
+ 20
+523.6386219991856
+ 30
+0.0
+ 11
+277.52325267042636
+ 21
+533.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+304.59143448860823
+ 20
+569.0272439983709
+ 30
+0.0
+ 11
+316.1823435795173
+ 21
+569.0272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+316.1823435795173
+ 20
+569.0272439983709
+ 30
+0.0
+ 11
+316.1823435795173
+ 21
+569.5272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+316.1823435795173
+ 20
+569.5272439983709
+ 30
+0.0
+ 11
+304.59143448860823
+ 21
+569.5272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+304.59143448860823
+ 20
+569.5272439983709
+ 30
+0.0
+ 11
+304.59143448860823
+ 21
+569.0272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.8641617613354
+ 20
+569.027243998371
+ 30
+0.0
+ 11
+288.4550708522445
+ 21
+569.0272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+288.4550708522445
+ 20
+569.0272439983709
+ 30
+0.0
+ 11
+288.4550708522445
+ 21
+569.5272439983709
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+288.4550708522445
+ 20
+569.5272439983709
+ 30
+0.0
+ 11
+276.8641617613354
+ 21
+569.527243998371
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.8641617613354
+ 20
+569.527243998371
+ 30
+0.0
+ 11
+276.8641617613354
+ 21
+569.027243998371
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+258.5232526704264
+ 20
+524.6386219991856
+ 30
+0.0
+ 11
+263.5232526704264
+ 21
+524.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+263.5232526704264
+ 20
+524.6386219991856
+ 30
+0.0
+ 11
+263.5232526704264
+ 21
+532.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+263.5232526704264
+ 20
+532.6386219991856
+ 30
+0.0
+ 11
+258.5232526704264
+ 21
+532.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.5232526704264
+ 20
+532.6386219991856
+ 30
+0.0
+ 11
+329.5232526704264
+ 21
+532.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.5232526704264
+ 20
+532.6386219991856
+ 30
+0.0
+ 11
+329.5232526704264
+ 21
+524.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.5232526704264
+ 20
+524.6386219991856
+ 30
+0.0
+ 11
+334.5232526704264
+ 21
+524.6386219991856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+219.1065860037597
+ 20
+475.7500000000003
+ 30
+0.0
+ 11
+222.93991933709304
+ 21
+475.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.93991933709304
+ 20
+475.7500000000003
+ 30
+0.0
+ 11
+222.93991933709304
+ 21
+476.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.93991933709304
+ 20
+476.2500000000003
+ 30
+0.0
+ 11
+219.1065860037597
+ 21
+476.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+219.1065860037597
+ 20
+476.2500000000003
+ 30
+0.0
+ 11
+219.1065860037597
+ 21
+475.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.1065860037597
+ 20
+475.7500000000003
+ 30
+0.0
+ 11
+132.93991933709302
+ 21
+475.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.93991933709302
+ 20
+475.7500000000003
+ 30
+0.0
+ 11
+132.93991933709302
+ 21
+476.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.93991933709302
+ 20
+476.2500000000003
+ 30
+0.0
+ 11
+129.1065860037597
+ 21
+476.2500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.1065860037597
+ 20
+476.2500000000003
+ 30
+0.0
+ 11
+129.1065860037597
+ 21
+475.7500000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+585.528042943147
+ 20
+493.6285927045408
+ 30
+0.0
+ 11
+585.528042943147
+ 21
+484.8761975681805
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+585.528042943147
+ 20
+484.8761975681805
+ 30
+0.0
+ 11
+603.0328332158675
+ 21
+484.8761975681805
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+603.0328332158675
+ 20
+484.8761975681805
+ 30
+0.0
+ 11
+603.0328332158675
+ 21
+493.6285927045408
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.51846239770585
+ 20
+237.37140729545965
+ 30
+0.0
+ 11
+68.51846239770585
+ 21
+246.12380243181988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.51846239770585
+ 20
+246.12380243181988
+ 30
+0.0
+ 11
+51.01367212498531
+ 21
+246.12380243181988
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.01367212498531
+ 20
+246.12380243181988
+ 30
+0.0
+ 11
+51.01367212498531
+ 21
+237.37140729545965
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+101.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.5232526704264
+ 20
+101.86363636363637
+ 30
+0.0
+ 11
+183.5232526704264
+ 21
+106.86363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+183.5232526704264
+ 20
+106.86363636363637
+ 30
+0.0
+ 11
+183.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+183.5232526704264
+ 20
+123.22727272727273
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+128.22727272727272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.5232526704264
+ 20
+128.22727272727272
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+123.22727272727273
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+142.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.5232526704264
+ 20
+142.77272727272728
+ 30
+0.0
+ 11
+183.5232526704264
+ 21
+147.77272727272728
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+183.5232526704264
+ 20
+147.77272727272728
+ 30
+0.0
+ 11
+183.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+183.5232526704264
+ 20
+164.13636363636363
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+169.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.5232526704264
+ 20
+169.13636363636363
+ 30
+0.0
+ 11
+178.5232526704264
+ 21
+164.13636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+824.3550614105757
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+762.7007833757143
+ 20
+166.0
+ 30
+0.0
+ 11
+824.3550614105757
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+762.7007833757143
+ 20
+166.0
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+834.3550614105757
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+824.3550614105757
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+834.3550614105757
+ 20
+166.0
+ 30
+0.0
+ 11
+834.3550614105757
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+824.3550614105757
+ 20
+166.0
+ 30
+0.0
+ 11
+834.3550614105757
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+735.7007833757143
+ 20
+166.0
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+735.7007833757143
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+762.7007833757143
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+674.0465053408527
+ 20
+166.0
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+735.7007833757143
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+674.0465053408527
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+664.0465053408527
+ 20
+166.0
+ 30
+0.0
+ 11
+674.0465053408527
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+664.0465053408527
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+664.0465053408527
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+674.0465053408527
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+664.0465053408527
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+762.7007833757143
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+735.7007833757143
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+762.7007833757143
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+762.7007833757143
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+735.7007833757143
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+762.7007833757143
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+762.7007833757143
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+735.7007833757143
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+735.7007833757143
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+735.7007833757143
+ 20
+0.0
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+762.7007833757143
+ 20
+0.0
+ 30
+0.0
+ 11
+735.7007833757143
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+762.7007833757143
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+762.7007833757143
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+831.8550614105757
+ 20
+154.90909090909093
+ 30
+0.0
+ 11
+826.8550614105757
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+826.8550614105757
+ 20
+154.90909090909093
+ 30
+0.0
+ 11
+826.8550614105757
+ 21
+143.8181818181818
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+826.8550614105757
+ 20
+143.8181818181818
+ 30
+0.0
+ 11
+831.8550614105757
+ 21
+143.8181818181818
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+831.8550614105757
+ 20
+127.1818181818182
+ 30
+0.0
+ 11
+826.8550614105757
+ 21
+127.1818181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+826.8550614105757
+ 20
+127.1818181818182
+ 30
+0.0
+ 11
+826.8550614105757
+ 21
+116.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+826.8550614105757
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+831.8550614105757
+ 21
+116.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+758.2007833757143
+ 20
+102.50000000000001
+ 30
+0.0
+ 11
+758.2007833757143
+ 21
+108.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+758.2007833757143
+ 20
+108.50000000000001
+ 30
+0.0
+ 11
+740.2007833757143
+ 21
+108.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+740.2007833757143
+ 20
+108.50000000000001
+ 30
+0.0
+ 11
+740.2007833757143
+ 21
+102.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+740.2007833757143
+ 20
+102.50000000000001
+ 30
+0.0
+ 11
+758.2007833757143
+ 21
+102.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+744.4507833757143
+ 20
+158.25000000000003
+ 30
+0.0
+ 11
+753.9507833757143
+ 21
+158.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+753.9507833757143
+ 20
+158.25000000000003
+ 30
+0.0
+ 11
+753.9507833757143
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+753.9507833757143
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+744.4507833757143
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+744.4507833757143
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+744.4507833757143
+ 21
+158.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+666.5465053408528
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+671.5465053408527
+ 21
+116.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+671.5465053408527
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+671.5465053408527
+ 21
+127.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+671.5465053408527
+ 20
+127.18181818181822
+ 30
+0.0
+ 11
+666.5465053408528
+ 21
+127.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+666.5465053408528
+ 20
+143.81818181818184
+ 30
+0.0
+ 11
+671.5465053408527
+ 21
+143.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+671.5465053408527
+ 20
+143.81818181818184
+ 30
+0.0
+ 11
+671.5465053408527
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+671.5465053408527
+ 20
+154.90909090909093
+ 30
+0.0
+ 11
+666.5465053408528
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+753.7007833757143
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+753.7007833757143
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+753.7007833757143
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+744.7007833757143
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+744.7007833757143
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+744.7007833757143
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+853.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+914.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+914.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+853.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+853.3550614105757
+ 20
+116.50000000000001
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+889.3550614105757
+ 20
+116.50000000000001
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+116.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+889.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+889.3550614105757
+ 21
+116.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+921.3550614105756
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+921.3550614105756
+ 20
+147.5
+ 30
+0.0
+ 11
+921.3550614105756
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+914.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+921.3550614105756
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+914.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+878.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+878.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+878.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+938.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+914.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+938.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+938.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+914.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+938.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+974.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+938.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+974.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+974.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+938.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+974.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+878.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+854.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+854.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+878.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+854.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+854.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+844.3550614105757
+ 20
+208.50000000000003
+ 30
+0.0
+ 11
+854.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+844.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+844.3550614105757
+ 21
+208.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+854.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+844.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+846.3550614105757
+ 20
+147.5
+ 30
+0.0
+ 11
+853.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+846.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+846.3550614105757
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+853.3550614105757
+ 20
+123.50000000000001
+ 30
+0.0
+ 11
+846.3550614105757
+ 21
+123.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+877.3550614105757
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+880.8550614105757
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+880.8550614105757
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+877.3550614105757
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+877.3550614105757
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+865.3550614105757
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+865.3550614105757
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+861.8550614105757
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+861.8550614105757
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+865.3550614105757
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+919.6050614105757
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+916.1050614105757
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.1050614105757
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+916.1050614105757
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.1050614105757
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+919.6050614105757
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+891.4693471248614
+ 20
+202.25000000000003
+ 30
+0.0
+ 11
+891.4693471248614
+ 21
+184.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+891.4693471248614
+ 20
+184.25
+ 30
+0.0
+ 11
+912.04077569629
+ 21
+184.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+912.04077569629
+ 20
+184.25
+ 30
+0.0
+ 11
+912.04077569629
+ 21
+202.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+912.04077569629
+ 20
+202.25000000000003
+ 30
+0.0
+ 11
+891.4693471248614
+ 21
+202.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+914.8550614105757
+ 20
+160.75000000000003
+ 30
+0.0
+ 11
+914.8550614105757
+ 21
+157.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+914.8550614105757
+ 20
+157.75000000000003
+ 30
+0.0
+ 11
+917.8550614105757
+ 21
+157.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+917.8550614105757
+ 20
+157.75000000000003
+ 30
+0.0
+ 11
+917.8550614105757
+ 21
+160.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+917.8550614105757
+ 20
+160.75000000000003
+ 30
+0.0
+ 11
+914.8550614105757
+ 21
+160.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+159.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+159.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+159.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+159.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+935.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+936.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+936.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+935.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+197.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+196.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+915.8550614105757
+ 20
+196.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+196.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+196.25000000000003
+ 30
+0.0
+ 11
+916.8550614105757
+ 21
+197.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+916.8550614105757
+ 20
+197.25000000000003
+ 30
+0.0
+ 11
+915.8550614105757
+ 21
+197.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+934.8550614105757
+ 20
+198.25000000000003
+ 30
+0.0
+ 11
+934.8550614105757
+ 21
+195.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+934.8550614105757
+ 20
+195.25000000000003
+ 30
+0.0
+ 11
+937.8550614105757
+ 21
+195.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+937.8550614105757
+ 20
+195.25000000000003
+ 30
+0.0
+ 11
+937.8550614105757
+ 21
+198.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+937.8550614105757
+ 20
+198.25000000000003
+ 30
+0.0
+ 11
+934.8550614105757
+ 21
+198.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+930.6050614105757
+ 20
+155.25000000000003
+ 30
+0.0
+ 11
+922.1050614105757
+ 21
+155.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+922.1050614105757
+ 20
+155.25000000000003
+ 30
+0.0
+ 11
+922.1050614105757
+ 21
+154.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+922.1050614105757
+ 20
+154.75
+ 30
+0.0
+ 11
+930.6050614105757
+ 21
+154.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+930.6050614105757
+ 20
+154.75
+ 30
+0.0
+ 11
+930.6050614105757
+ 21
+155.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+922.1050614105757
+ 20
+203.00000000000003
+ 30
+0.0
+ 11
+930.6050614105757
+ 21
+203.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+930.6050614105757
+ 20
+203.00000000000003
+ 30
+0.0
+ 11
+930.6050614105757
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+930.6050614105757
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+922.1050614105757
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+922.1050614105757
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+922.1050614105757
+ 21
+203.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+943.9093471248614
+ 20
+204.02
+ 30
+0.0
+ 11
+943.9093471248614
+ 21
+191.02
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+943.9093471248614
+ 20
+191.02
+ 30
+0.0
+ 11
+964.4807756962899
+ 21
+191.02
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+964.4807756962899
+ 20
+191.02
+ 30
+0.0
+ 11
+964.4807756962899
+ 21
+204.02
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+964.4807756962899
+ 20
+204.02
+ 30
+0.0
+ 11
+943.9093471248614
+ 21
+204.02
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+962.6050614105756
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+950.1050614105757
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+950.1050614105757
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+950.1050614105757
+ 21
+152.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+950.1050614105757
+ 20
+152.5
+ 30
+0.0
+ 11
+962.6050614105756
+ 21
+152.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+962.6050614105756
+ 20
+152.5
+ 30
+0.0
+ 11
+962.6050614105756
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+966.6050614105757
+ 20
+169.93181818181822
+ 30
+0.0
+ 11
+966.6050614105757
+ 21
+158.3409090909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+966.6050614105757
+ 20
+158.3409090909091
+ 30
+0.0
+ 11
+967.1050614105757
+ 21
+158.3409090909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+967.1050614105757
+ 20
+158.3409090909091
+ 30
+0.0
+ 11
+967.1050614105757
+ 21
+169.93181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+967.1050614105757
+ 20
+169.93181818181822
+ 30
+0.0
+ 11
+966.6050614105757
+ 21
+169.93181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+966.6050614105757
+ 20
+197.65909090909093
+ 30
+0.0
+ 11
+966.6050614105757
+ 21
+186.06818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+966.6050614105757
+ 20
+186.06818181818184
+ 30
+0.0
+ 11
+967.1050614105757
+ 21
+186.06818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+967.1050614105757
+ 20
+186.06818181818184
+ 30
+0.0
+ 11
+967.1050614105757
+ 21
+197.65909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+967.1050614105757
+ 20
+197.65909090909093
+ 30
+0.0
+ 11
+966.6050614105757
+ 21
+197.65909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+854.8550614105757
+ 20
+160.75000000000003
+ 30
+0.0
+ 11
+854.8550614105757
+ 21
+157.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+854.8550614105757
+ 20
+157.75000000000003
+ 30
+0.0
+ 11
+857.8550614105756
+ 21
+157.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+857.8550614105756
+ 20
+157.75000000000003
+ 30
+0.0
+ 11
+857.8550614105756
+ 21
+160.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+857.8550614105756
+ 20
+160.75000000000003
+ 30
+0.0
+ 11
+854.8550614105757
+ 21
+160.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+159.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+158.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+158.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+159.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+159.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+159.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+161.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+161.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+161.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+162.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+162.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+163.75
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+163.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+163.75
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+164.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+164.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+166.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+166.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+167.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+167.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+168.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+168.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+169.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+169.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+171.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+171.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+172.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+172.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+173.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+173.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+174.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+174.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+177.25
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+176.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+176.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+177.25
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+177.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+179.75
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+178.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+178.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+179.75
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+179.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+182.25
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+181.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+181.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+182.25
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+182.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+183.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+183.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+184.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+184.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+186.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+186.25000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+187.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+187.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+188.75
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+188.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+188.75
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+189.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+189.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+191.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+191.25
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+192.25000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+192.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+875.8550614105756
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+193.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+193.75000000000003
+ 30
+0.0
+ 11
+876.8550614105757
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+876.8550614105757
+ 20
+194.75000000000003
+ 30
+0.0
+ 11
+875.8550614105756
+ 21
+194.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+197.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+196.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+855.8550614105757
+ 20
+196.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+196.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+196.25000000000003
+ 30
+0.0
+ 11
+856.8550614105757
+ 21
+197.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+856.8550614105757
+ 20
+197.25000000000003
+ 30
+0.0
+ 11
+855.8550614105757
+ 21
+197.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+874.8550614105757
+ 20
+198.25000000000003
+ 30
+0.0
+ 11
+874.8550614105757
+ 21
+195.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+874.8550614105757
+ 20
+195.25000000000003
+ 30
+0.0
+ 11
+877.8550614105757
+ 21
+195.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+877.8550614105757
+ 20
+195.25000000000003
+ 30
+0.0
+ 11
+877.8550614105757
+ 21
+198.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+877.8550614105757
+ 20
+198.25000000000003
+ 30
+0.0
+ 11
+874.8550614105757
+ 21
+198.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+870.6050614105757
+ 20
+155.25000000000003
+ 30
+0.0
+ 11
+862.1050614105756
+ 21
+155.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+862.1050614105756
+ 20
+155.25000000000003
+ 30
+0.0
+ 11
+862.1050614105756
+ 21
+154.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+862.1050614105756
+ 20
+154.75
+ 30
+0.0
+ 11
+870.6050614105757
+ 21
+154.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+870.6050614105757
+ 20
+154.75
+ 30
+0.0
+ 11
+870.6050614105757
+ 21
+155.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+862.1050614105756
+ 20
+203.00000000000003
+ 30
+0.0
+ 11
+870.6050614105757
+ 21
+203.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+870.6050614105757
+ 20
+203.00000000000003
+ 30
+0.0
+ 11
+870.6050614105757
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+870.6050614105757
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+862.1050614105756
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+862.1050614105756
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+862.1050614105756
+ 21
+203.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+846.8550614105757
+ 20
+158.59090909090912
+ 30
+0.0
+ 11
+851.8550614105757
+ 21
+158.59090909090912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+851.8550614105757
+ 20
+158.59090909090912
+ 30
+0.0
+ 11
+851.8550614105757
+ 21
+169.68181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+851.8550614105757
+ 20
+169.68181818181822
+ 30
+0.0
+ 11
+846.8550614105757
+ 21
+169.68181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+846.8550614105757
+ 20
+186.31818181818184
+ 30
+0.0
+ 11
+851.8550614105757
+ 21
+186.31818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+851.8550614105757
+ 20
+186.31818181818184
+ 30
+0.0
+ 11
+851.8550614105757
+ 21
+197.40909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+851.8550614105757
+ 20
+197.40909090909093
+ 30
+0.0
+ 11
+846.8550614105757
+ 21
+197.40909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+848.1050614105757
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+851.6050614105757
+ 21
+131.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+851.6050614105757
+ 20
+131.50000000000003
+ 30
+0.0
+ 11
+851.6050614105757
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+851.6050614105757
+ 20
+139.50000000000003
+ 30
+0.0
+ 11
+848.1050614105757
+ 21
+139.50000000000003
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithManyDCMounts/tree.png b/rocolib/builders/output/BoatWithManyDCMounts/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..a54944d2b48bd1e0da1e62e7a98d0b2702dd1088
Binary files /dev/null and b/rocolib/builders/output/BoatWithManyDCMounts/tree.png differ
diff --git a/rocolib/builders/output/BoatWithServoMount/graph-anim.svg b/rocolib/builders/output/BoatWithServoMount/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..22754e6adddbaecc9d32aade915297543e1c103a
--- /dev/null
+++ b/rocolib/builders/output/BoatWithServoMount/graph-anim.svg
@@ -0,0 +1,189 @@
+<?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="356.046506mm" version="1.1" viewBox="0.000000 0.000000 465.000000 356.046506" width="465.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="415.00000000000017" x2="379.00000000000017" y1="166.023253" y2="166.023253"/>
+  <line opacity="0.5" stroke="#ff0000" x1="415.00000000000017" x2="415.00000000000017" y1="166.023253" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="379.00000000000017" x2="415.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="460.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="460.00000000000017" x2="415.00000000000017" y1="166.023253" y2="166.023253"/>
+  <line stroke="#000000" x1="465.00000000000017" x2="460.00000000000017" y1="166.023253" y2="166.023253"/>
+  <line stroke="#000000" x1="465.00000000000017" x2="465.00000000000017" y1="190.02325300000004" y2="166.023253"/>
+  <line stroke="#000000" x1="460.00000000000017" x2="465.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="379.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
+  <line opacity="1.0" stroke="#0000ff" x1="345.0000000000001" x2="345.0000000000001" y1="166.023253" y2="190.02325300000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="379.00000000000017" x2="345.0000000000001" y1="166.023253" y2="166.023253"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="166.023253" y2="86.02325300000003"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="270.02325300000007" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="270.02325300000007" y2="270.02325300000007"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="86.02325300000003" y2="86.02325300000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="275.00000000000017" x2="275.00000000000017" y1="270.02325300000007" y2="86.02325300000003"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="275.00000000000017" x2="345.0000000000001" y1="270.02325300000007" y2="270.02325300000007"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="345.0000000000001" x2="345.0000000000001" y1="270.02325300000007" y2="322.53762381816165"/>
+  <line opacity="1.0" stroke="#ff0000" x1="275.00000000000017" x2="345.0000000000001" y1="270.02325300000007" y2="322.53762381816165"/>
+  <line stroke="#000000" x1="362.5047902727207" x2="345.0000000000001" y1="270.02325300000007" y2="270.02325300000007"/>
+  <line stroke="#000000" x1="362.5047902727207" x2="362.5047902727207" y1="322.53762381816165" y2="270.02325300000007"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="362.5047902727207" y1="322.53762381816165" y2="322.53762381816165"/>
+  <line opacity="1.0" stroke="#0000ff" x1="275.00000000000017" x2="294.58234220233663" y1="270.02325300000007" y2="337.2284006738992"/>
+  <line stroke="#000000" x1="294.58234220233663" x2="345.0000000000001" y1="337.2284006738992" y2="322.53762381816165"/>
+  <line stroke="#000000" x1="244.16468440467298" x2="294.58234220233663" y1="351.9191775296368" y2="337.2284006738992"/>
+  <line stroke="#000000" x1="230.00000000000014" x2="244.16468440467298" y1="356.04650567042637" y2="351.9191775296368"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="230.00000000000014" x2="275.00000000000017" y1="356.04650567042637" y2="270.02325300000007"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="230.0000000000001" x2="275.00000000000017" y1="270.0232530000001" y2="270.02325300000007"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="185.0000000000001" x2="230.0000000000001" y1="270.0232530000001" y2="270.0232530000001"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="230.00000000000014" x2="185.00000000000009" y1="356.04650567042637" y2="270.0232530000001"/>
+  <line opacity="1.0" stroke="#0000ff" x1="165.4176577976637" x2="185.00000000000009" y1="337.2284006738993" y2="270.0232530000001"/>
+  <line stroke="#000000" x1="215.83531559532727" x2="230.00000000000014" y1="351.91917752963684" y2="356.04650567042637"/>
+  <line stroke="#000000" x1="165.4176577976637" x2="215.83531559532727" y1="337.2284006738993" y2="351.91917752963684"/>
+  <line stroke="#000000" x1="115.00000000000013" x2="165.41765779766374" y1="322.53762381816176" y2="337.2284006738993"/>
+  <line opacity="1.0" stroke="#ff0000" x1="115.00000000000013" x2="185.00000000000009" y1="322.53762381816176" y2="270.0232530000001"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="115.00000000000007" x2="185.0000000000001" y1="270.0232530000002" y2="270.0232530000001"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="115.00000000000013" x2="115.00000000000007" y1="322.53762381816176" y2="270.0232530000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="185.0000000000001" x2="184.99999999999997" y1="270.0232530000001" y2="86.02325299999998"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000007" y1="190.0232530000001" y2="270.0232530000002"/>
+  <line opacity="1.0" stroke="#0000ff" x1="115.00000000000001" x2="114.99999999999996" y1="190.0232530000001" y2="166.02325300000007"/>
+  <line stroke="#000000" x1="114.9999999999999" x2="114.99999999999996" y1="86.02325300000004" y2="166.02325300000007"/>
+  <line stroke="#000000" x1="114.9999999999999" x2="114.9999999999999" y1="86.02325300000004" y2="86.02325300000004"/>
+  <line stroke="#000000" x1="115.00000000000007" x2="115.00000000000007" y1="270.0232530000002" y2="270.0232530000002"/>
+  <line stroke="#000000" x1="81.00000000000001" x2="115.00000000000001" y1="190.02325300000015" y2="190.0232530000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="115.00000000000001" x2="81.00000000000001" y1="166.02325300000007" y2="166.0232530000001"/>
+  <line stroke="#000000" x1="45.0" x2="81.00000000000001" y1="190.02325300000018" y2="190.02325300000015"/>
+  <line opacity="0.5" stroke="#ff0000" x1="45.0" x2="45.0" y1="190.02325300000018" y2="166.02325300000018"/>
+  <line stroke="#000000" x1="81.00000000000001" x2="45.0" y1="166.0232530000001" y2="166.02325300000018"/>
+  <line stroke="#000000" x1="45.0" x2="0.0" y1="166.02325300000018" y2="166.0232530000002"/>
+  <line stroke="#000000" x1="0.0" x2="45.0" y1="190.0232530000002" y2="190.02325300000018"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="166.0232530000002" y2="190.0232530000002"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="166.02325300000007" y2="146.0232530000001"/>
+  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="146.02325300000012" y2="166.0232530000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="115.00000000000001" x2="81.00000000000001" y1="146.0232530000001" y2="146.02325300000012"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="146.0232530000001" y2="122.02325300000007"/>
+  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="122.0232530000001" y2="146.02325300000012"/>
+  <line opacity="0.5" stroke="#0000ff" x1="115.00000000000001" x2="81.00000000000001" y1="122.02325300000007" y2="122.0232530000001"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="122.02325300000007" y2="102.02325300000007"/>
+  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="102.02325300000008" y2="122.02325300000011"/>
+  <line opacity="0.5" stroke="#0000ff" x1="81.00000000000001" x2="115.00000000000001" y1="102.02325300000008" y2="102.02325300000007"/>
+  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="92.02325300000007" y2="102.02325300000008"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="81.00000000000001" y1="92.02325300000004" y2="92.02325300000007"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="102.02325300000005" y2="92.02325300000004"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="184.9999999999999" x2="114.9999999999999" y1="86.02325299999997" y2="86.02325300000004"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="114.9999999999999" x2="114.99999999999984" y1="86.02325300000004" y2="33.50888218183843"/>
+  <line opacity="1.0" stroke="#ff0000" x1="184.9999999999999" x2="114.99999999999984" y1="86.02325299999997" y2="33.50888218183843"/>
+  <line stroke="#000000" x1="97.49520972727937" x2="114.9999999999999" y1="86.02325300000005" y2="86.02325300000004"/>
+  <line stroke="#000000" x1="97.49520972727932" x2="97.49520972727937" y1="33.508882181838466" y2="86.02325300000005"/>
+  <line stroke="#000000" x1="114.99999999999984" x2="97.49520972727932" y1="33.50888218183843" y2="33.508882181838466"/>
+  <line opacity="1.0" stroke="#0000ff" x1="184.99999999999997" x2="165.41765779766345" y1="86.02325299999998" y2="18.81810532610081"/>
+  <line stroke="#000000" x1="165.41765779766345" x2="114.99999999999984" y1="18.81810532610081" y2="33.50888218183843"/>
+  <line stroke="#000000" x1="215.83531559532696" x2="165.41765779766342" y1="4.127328470363154" y2="18.81810532610078"/>
+  <line stroke="#000000" x1="229.99999999999986" x2="215.83531559532696" y1="3.2957356665974663e-07" y2="4.127328470363154"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="229.99999999999986" x2="184.99999999999994" y1="3.2957356665974663e-07" y2="86.02325299999997"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="229.99999999999994" x2="184.99999999999994" y1="86.02325299999991" y2="86.02325299999997"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="275.0" x2="229.99999999999994" y1="86.02325299999983" y2="86.02325299999988"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="229.99999999999983" x2="275.0" y1="3.2957356665974663e-07" y2="86.02325299999983"/>
+  <line opacity="1.0" stroke="#0000ff" x1="294.5823422023363" x2="275.0" y1="18.818105326100554" y2="86.02325299999981"/>
+  <line stroke="#000000" x1="244.16468440467267" x2="229.99999999999983" y1="4.127328470363068" y2="3.2957353823803714e-07"/>
+  <line stroke="#000000" x1="294.5823422023363" x2="244.16468440467267" y1="18.818105326100554" y2="4.127328470363068"/>
+  <line stroke="#000000" x1="344.9999999999999" x2="294.5823422023363" y1="33.50888218183806" y2="18.81810532610058"/>
+  <line opacity="1.0" stroke="#ff0000" x1="344.9999999999999" x2="275.0" y1="33.50888218183806" y2="86.02325299999983"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="345.0" x2="274.99999999999994" y1="86.02325299999968" y2="86.02325299999983"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="344.9999999999999" x2="345.0" y1="33.50888218183806" y2="86.02325299999968"/>
+  <line stroke="#000000" x1="362.5047902727204" x2="344.9999999999999" y1="33.50888218183804" y2="33.50888218183806"/>
+  <line stroke="#000000" x1="362.5047902727205" x2="362.5047902727204" y1="86.02325299999966" y2="33.50888218183804"/>
+  <line stroke="#000000" x1="345.0" x2="362.5047902727205" y1="86.02325299999968" y2="86.02325299999966"/>
+  <line stroke="#000000" x1="97.4952097272796" x2="115.00000000000013" y1="322.53762381816176" y2="322.53762381816176"/>
+  <line stroke="#000000" x1="97.49520972727954" x2="97.4952097272796" y1="270.0232530000002" y2="322.53762381816176"/>
+  <line stroke="#000000" x1="115.00000000000007" x2="97.49520972727954" y1="270.0232530000002" y2="270.0232530000002"/>
+  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="166.023253" y2="146.023253"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="146.023253" y2="166.023253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="379.00000000000017" x2="345.0000000000001" y1="146.023253" y2="146.023253"/>
+  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="146.023253" y2="122.02325300000003"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="122.02325300000003" y2="146.023253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="379.00000000000017" x2="345.0000000000001" y1="122.02325300000003" y2="122.02325300000003"/>
+  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="122.02325300000003" y2="102.02325300000003"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="102.02325300000003" y2="122.02325300000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="345.0000000000001" x2="379.00000000000017" y1="102.02325300000003" y2="102.02325300000003"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="92.02325300000001" y2="102.02325300000003"/>
+  <line stroke="#000000" x1="379.00000000000017" x2="345.0000000000001" y1="92.02325300000001" y2="92.02325300000001"/>
+  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="102.02325300000003" y2="92.02325300000001"/>
+  <line stroke="#888888" x1="463.7500000000001" x2="463.7500000000001" y1="182.023253" y2="184.523253"/>
+  <line stroke="#888888" x1="463.7500000000001" x2="461.25000000000017" y1="184.523253" y2="182.023253"/>
+  <line stroke="#888888" x1="461.25000000000017" x2="461.25000000000017" y1="182.023253" y2="174.02325300000004"/>
+  <line stroke="#888888" x1="461.25000000000017" x2="463.7500000000001" y1="174.02325300000004" y2="171.52325300000004"/>
+  <line stroke="#888888" x1="463.7500000000001" x2="463.7500000000001" y1="171.52325300000004" y2="174.02325300000004"/>
+  <line stroke="#888888" x1="356.0833333333335" x2="367.9166666666668" y1="182.273253" y2="182.273253"/>
+  <line stroke="#888888" x1="367.9166666666668" x2="367.9166666666668" y1="182.273253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="367.9166666666668" x2="356.0833333333335" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="356.0833333333335" x2="356.0833333333335" y1="182.77325300000004" y2="182.273253"/>
+  <line stroke="#888888" x1="358.1285927045405" x2="349.3761975681803" y1="305.0328335454411" y2="305.0328335454411"/>
+  <line stroke="#888888" x1="349.3761975681803" x2="349.3761975681803" y1="305.0328335454411" y2="287.5280432727206"/>
+  <line stroke="#888888" x1="349.3761975681803" x2="358.1285927045405" y1="287.5280432727206" y2="287.5280432727206"/>
+  <line stroke="#888888" x1="256.9879208023066" x2="274.2738435039604" y1="334.247756013529" y2="329.2109565220759"/>
+  <line stroke="#888888" x1="274.2738435039604" x2="274.41371737683426" y1="329.2109565220759" y2="329.6909932911753"/>
+  <line stroke="#888888" x1="274.41371737683426" x2="257.1277946751804" y1="329.6909932911753" y2="334.7277927826282"/>
+  <line stroke="#888888" x1="257.1277946751804" x2="256.9879208023066" y1="334.7277927826282" y2="334.247756013529"/>
+  <line stroke="#888888" x1="185.72615649603986" x2="203.0120791976937" y1="329.21095652207595" y2="334.247756013529"/>
+  <line stroke="#888888" x1="203.0120791976937" x2="202.87220532481987" y1="334.247756013529" y2="334.7277927826283"/>
+  <line stroke="#888888" x1="202.87220532481987" x2="185.58628262316603" y1="334.7277927826283" y2="329.6909932911753"/>
+  <line stroke="#888888" x1="185.58628262316603" x2="185.72615649603986" y1="329.6909932911753" y2="329.21095652207595"/>
+  <line stroke="#888888" x1="92.08333333333333" x2="103.9166666666667" y1="182.27325300000012" y2="182.27325300000012"/>
+  <line stroke="#888888" x1="103.9166666666667" x2="103.9166666666667" y1="182.27325300000012" y2="182.77325300000012"/>
+  <line stroke="#888888" x1="103.9166666666667" x2="92.08333333333333" y1="182.77325300000012" y2="182.77325300000012"/>
+  <line stroke="#888888" x1="92.08333333333333" x2="92.08333333333333" y1="182.77325300000012" y2="182.27325300000012"/>
+  <line stroke="#888888" x1="4.000000000000001" x2="4.000000000000001" y1="173.7732530000002" y2="182.2732530000002"/>
+  <line stroke="#888888" x1="4.000000000000001" x2="3.5000000000000004" y1="182.2732530000002" y2="182.2732530000002"/>
+  <line stroke="#888888" x1="3.5000000000000004" x2="3.5000000000000004" y1="182.2732530000002" y2="173.7732530000002"/>
+  <line stroke="#888888" x1="3.5000000000000004" x2="4.000000000000001" y1="173.7732530000002" y2="173.7732530000002"/>
+  <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="147.0232530000001" y2="151.0232530000001"/>
+  <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="151.0232530000001" y2="151.02325300000012"/>
+  <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="151.02325300000012" y2="147.02325300000012"/>
+  <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="147.02325300000012" y2="147.0232530000001"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="102.50000000000001" y1="159.02325300000007" y2="163.0232530000001"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="93.50000000000001" y1="163.0232530000001" y2="163.02325300000012"/>
+  <line stroke="#888888" x1="93.50000000000001" x2="93.50000000000001" y1="163.02325300000012" y2="159.0232530000001"/>
+  <line stroke="#888888" x1="93.50000000000001" x2="102.50000000000001" y1="159.0232530000001" y2="159.02325300000007"/>
+  <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="122.52325300000008" y2="145.52325300000007"/>
+  <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="145.52325300000007" y2="145.5232530000001"/>
+  <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="145.5232530000001" y2="122.52325300000008"/>
+  <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="122.52325300000008" y2="122.52325300000008"/>
+  <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="117.02325300000008" y2="121.02325300000008"/>
+  <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="121.02325300000008" y2="121.02325300000008"/>
+  <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="121.02325300000008" y2="117.02325300000008"/>
+  <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="117.02325300000008" y2="117.02325300000008"/>
+  <line stroke="#888888" x1="103.6666666666667" x2="103.6666666666667" y1="94.52325300000007" y2="99.52325300000007"/>
+  <line stroke="#888888" x1="103.6666666666667" x2="92.33333333333331" y1="99.52325300000007" y2="99.52325300000008"/>
+  <line stroke="#888888" x1="92.33333333333331" x2="92.33333333333331" y1="99.52325300000008" y2="94.52325300000008"/>
+  <line stroke="#888888" x1="101.87140729545946" x2="110.6238024318197" y1="51.013672454558964" y2="51.013672454558964"/>
+  <line stroke="#888888" x1="110.6238024318197" x2="110.62380243181975" y1="51.013672454558964" y2="68.5184627272795"/>
+  <line stroke="#888888" x1="110.62380243181975" x2="101.87140729545952" y1="68.5184627272795" y2="68.5184627272795"/>
+  <line stroke="#888888" x1="203.01207919769342" x2="185.72615649603964" y1="21.798749986470966" y2="26.835549477924022"/>
+  <line stroke="#888888" x1="185.72615649603964" x2="185.5862826231658" y1="26.835549477924022" y2="26.355512708824737"/>
+  <line stroke="#888888" x1="185.5862826231658" x2="202.8722053248196" y1="26.355512708824737" y2="21.318713217371684"/>
+  <line stroke="#888888" x1="202.8722053248196" x2="203.01207919769342" y1="21.318713217371684" y2="21.798749986470966"/>
+  <line stroke="#888888" x1="274.27384350396005" x2="256.9879208023063" y1="26.835549477923852" y2="21.798749986470856"/>
+  <line stroke="#888888" x1="256.9879208023063" x2="257.12779467518016" y1="21.798749986470856" y2="21.31871321737157"/>
+  <line stroke="#888888" x1="257.12779467518016" x2="274.4137173768339" y1="21.31871321737157" y2="26.355512708824563"/>
+  <line stroke="#888888" x1="274.4137173768339" x2="274.27384350396005" y1="26.355512708824563" y2="26.835549477923852"/>
+  <line stroke="#888888" x1="358.1285927045404" x2="349.3761975681801" y1="68.5184627272791" y2="68.51846272727911"/>
+  <line stroke="#888888" x1="349.3761975681801" x2="349.3761975681801" y1="68.51846272727911" y2="51.013672454558595"/>
+  <line stroke="#888888" x1="349.3761975681801" x2="358.1285927045403" y1="51.013672454558595" y2="51.01367245455858"/>
+  <line stroke="#888888" x1="101.87140729545968" x2="110.62380243181993" y1="287.5280432727207" y2="287.5280432727207"/>
+  <line stroke="#888888" x1="110.62380243181993" x2="110.62380243181998" y1="287.5280432727207" y2="305.03283354544124"/>
+  <line stroke="#888888" x1="110.62380243181998" x2="101.87140729545975" y1="305.03283354544124" y2="305.03283354544124"/>
+  <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="147.02325300000004" y2="151.02325300000004"/>
+  <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="151.02325300000004" y2="151.02325300000004"/>
+  <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="151.02325300000004" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="147.02325300000004" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="366.50000000000017" x2="366.50000000000017" y1="159.023253" y2="163.02325300000004"/>
+  <line stroke="#888888" x1="366.50000000000017" x2="357.50000000000017" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#888888" x1="357.50000000000017" x2="357.50000000000017" y1="163.02325300000004" y2="159.023253"/>
+  <line stroke="#888888" x1="357.50000000000017" x2="366.50000000000017" y1="159.023253" y2="159.023253"/>
+  <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="122.52325300000003" y2="145.523253"/>
+  <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="145.523253" y2="145.523253"/>
+  <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="145.523253" y2="122.52325300000003"/>
+  <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="122.52325300000003" y2="122.52325300000003"/>
+  <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="117.02325300000003" y2="121.02325300000003"/>
+  <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="121.02325300000003" y2="121.02325300000003"/>
+  <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="121.02325300000003" y2="117.02325300000003"/>
+  <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="117.02325300000003" y2="117.02325300000003"/>
+  <line stroke="#888888" x1="367.6666666666668" x2="367.6666666666668" y1="94.52325300000001" y2="99.52325300000003"/>
+  <line stroke="#888888" x1="367.6666666666668" x2="356.3333333333335" y1="99.52325300000003" y2="99.52325300000003"/>
+  <line stroke="#888888" x1="356.3333333333335" x2="356.3333333333335" y1="99.52325300000003" y2="94.52325300000001"/>
+</svg>
diff --git a/rocolib/builders/output/BoatWithServoMount/graph-autofold-default.dxf b/rocolib/builders/output/BoatWithServoMount/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..0ba27694d96cd204320e635eb2b09e4d3c8d7cdc
--- /dev/null
+++ b/rocolib/builders/output/BoatWithServoMount/graph-autofold-default.dxf
@@ -0,0 +1,4438 @@
+  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
+180
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+41.987212495816664
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-174
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-180
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+57.019129652304315
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+54.462322208025626
+ 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
+415.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+415.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+415.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+379.00000000000017
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+415.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+415.00000000000017
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+460.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+460.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+415.00000000000017
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+465.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+460.00000000000017
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+465.00000000000017
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+465.00000000000017
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+460.00000000000017
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+465.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0000000000001
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+345.0000000000001
+ 20
+166.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+379.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0000000000001
+ 20
+166.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0000000000001
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0000000000001
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0000000000001
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+275.00000000000017
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+275.00000000000017
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+275.00000000000017
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+345.0000000000001
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+322.53762381816165
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+275.00000000000017
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+322.53762381816165
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+362.5047902727207
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+362.5047902727207
+ 20
+322.53762381816165
+ 30
+0.0
+ 11
+362.5047902727207
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0000000000001
+ 20
+322.53762381816165
+ 30
+0.0
+ 11
+362.5047902727207
+ 21
+322.53762381816165
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+275.00000000000017
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+294.58234220233663
+ 21
+337.2284006738992
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+294.58234220233663
+ 20
+337.2284006738992
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+322.53762381816165
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+244.16468440467298
+ 20
+351.9191775296368
+ 30
+0.0
+ 11
+294.58234220233663
+ 21
+337.2284006738992
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+230.00000000000014
+ 20
+356.04650567042637
+ 30
+0.0
+ 11
+244.16468440467298
+ 21
+351.9191775296368
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+230.00000000000014
+ 20
+356.04650567042637
+ 30
+0.0
+ 11
+275.00000000000017
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+230.0000000000001
+ 20
+270.0232530000001
+ 30
+0.0
+ 11
+275.00000000000017
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+185.0000000000001
+ 20
+270.0232530000001
+ 30
+0.0
+ 11
+230.0000000000001
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+230.00000000000014
+ 20
+356.04650567042637
+ 30
+0.0
+ 11
+185.00000000000009
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+165.4176577976637
+ 20
+337.2284006738993
+ 30
+0.0
+ 11
+185.00000000000009
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+215.83531559532727
+ 20
+351.91917752963684
+ 30
+0.0
+ 11
+230.00000000000014
+ 21
+356.04650567042637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.4176577976637
+ 20
+337.2284006738993
+ 30
+0.0
+ 11
+215.83531559532727
+ 21
+351.91917752963684
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000013
+ 20
+322.53762381816176
+ 30
+0.0
+ 11
+165.41765779766374
+ 21
+337.2284006738993
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+115.00000000000013
+ 20
+322.53762381816176
+ 30
+0.0
+ 11
+185.00000000000009
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+115.00000000000007
+ 20
+270.0232530000002
+ 30
+0.0
+ 11
+185.0000000000001
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+115.00000000000013
+ 20
+322.53762381816176
+ 30
+0.0
+ 11
+115.00000000000007
+ 21
+270.0232530000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+185.0000000000001
+ 20
+270.0232530000001
+ 30
+0.0
+ 11
+184.99999999999997
+ 21
+86.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+190.0232530000001
+ 30
+0.0
+ 11
+115.00000000000007
+ 21
+270.0232530000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+115.00000000000001
+ 20
+190.0232530000001
+ 30
+0.0
+ 11
+114.99999999999996
+ 21
+166.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+114.9999999999999
+ 20
+86.02325300000004
+ 30
+0.0
+ 11
+114.99999999999996
+ 21
+166.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+114.9999999999999
+ 20
+86.02325300000004
+ 30
+0.0
+ 11
+114.9999999999999
+ 21
+86.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000007
+ 20
+270.0232530000002
+ 30
+0.0
+ 11
+115.00000000000007
+ 21
+270.0232530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.00000000000001
+ 20
+190.02325300000015
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+190.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+115.00000000000001
+ 20
+166.02325300000007
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+166.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+45.0
+ 20
+190.02325300000018
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+190.02325300000015
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+45.0
+ 20
+190.02325300000018
+ 30
+0.0
+ 11
+45.0
+ 21
+166.02325300000018
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.00000000000001
+ 20
+166.0232530000001
+ 30
+0.0
+ 11
+45.0
+ 21
+166.02325300000018
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+45.0
+ 20
+166.02325300000018
+ 30
+0.0
+ 11
+0.0
+ 21
+166.0232530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+190.0232530000002
+ 30
+0.0
+ 11
+45.0
+ 21
+190.02325300000018
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+166.0232530000002
+ 30
+0.0
+ 11
+0.0
+ 21
+190.0232530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+166.02325300000007
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+146.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.00000000000001
+ 20
+146.02325300000012
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+166.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+115.00000000000001
+ 20
+146.0232530000001
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+146.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+146.0232530000001
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+122.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.00000000000001
+ 20
+122.0232530000001
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+146.02325300000012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+115.00000000000001
+ 20
+122.02325300000007
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+122.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+122.02325300000007
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+102.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.00000000000001
+ 20
+102.02325300000008
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+122.02325300000011
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+81.00000000000001
+ 20
+102.02325300000008
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+102.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.00000000000001
+ 20
+92.02325300000007
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+102.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+92.02325300000004
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+92.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+102.02325300000005
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+92.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+184.9999999999999
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+114.9999999999999
+ 21
+86.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+114.9999999999999
+ 20
+86.02325300000004
+ 30
+0.0
+ 11
+114.99999999999984
+ 21
+33.50888218183843
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+184.9999999999999
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+114.99999999999984
+ 21
+33.50888218183843
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+97.49520972727937
+ 20
+86.02325300000005
+ 30
+0.0
+ 11
+114.9999999999999
+ 21
+86.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+97.49520972727932
+ 20
+33.508882181838466
+ 30
+0.0
+ 11
+97.49520972727937
+ 21
+86.02325300000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+114.99999999999984
+ 20
+33.50888218183843
+ 30
+0.0
+ 11
+97.49520972727932
+ 21
+33.508882181838466
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+184.99999999999997
+ 20
+86.02325299999998
+ 30
+0.0
+ 11
+165.41765779766345
+ 21
+18.81810532610081
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.41765779766345
+ 20
+18.81810532610081
+ 30
+0.0
+ 11
+114.99999999999984
+ 21
+33.50888218183843
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+215.83531559532696
+ 20
+4.127328470363154
+ 30
+0.0
+ 11
+165.41765779766342
+ 21
+18.81810532610078
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+229.99999999999986
+ 20
+3.2957356665974663e-07
+ 30
+0.0
+ 11
+215.83531559532696
+ 21
+4.127328470363154
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+229.99999999999986
+ 20
+3.2957356665974663e-07
+ 30
+0.0
+ 11
+184.99999999999994
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+229.99999999999994
+ 20
+86.02325299999991
+ 30
+0.0
+ 11
+184.99999999999994
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+275.0
+ 20
+86.02325299999983
+ 30
+0.0
+ 11
+229.99999999999994
+ 21
+86.02325299999988
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+229.99999999999983
+ 20
+3.2957356665974663e-07
+ 30
+0.0
+ 11
+275.0
+ 21
+86.02325299999983
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+294.5823422023363
+ 20
+18.818105326100554
+ 30
+0.0
+ 11
+275.0
+ 21
+86.02325299999981
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+244.16468440467267
+ 20
+4.127328470363068
+ 30
+0.0
+ 11
+229.99999999999983
+ 21
+3.2957353823803714e-07
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+294.5823422023363
+ 20
+18.818105326100554
+ 30
+0.0
+ 11
+244.16468440467267
+ 21
+4.127328470363068
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.9999999999999
+ 20
+33.50888218183806
+ 30
+0.0
+ 11
+294.5823422023363
+ 21
+18.81810532610058
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+344.9999999999999
+ 20
+33.50888218183806
+ 30
+0.0
+ 11
+275.0
+ 21
+86.02325299999983
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+345.0
+ 20
+86.02325299999968
+ 30
+0.0
+ 11
+274.99999999999994
+ 21
+86.02325299999983
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+344.9999999999999
+ 20
+33.50888218183806
+ 30
+0.0
+ 11
+345.0
+ 21
+86.02325299999968
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+362.5047902727204
+ 20
+33.50888218183804
+ 30
+0.0
+ 11
+344.9999999999999
+ 21
+33.50888218183806
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+362.5047902727205
+ 20
+86.02325299999966
+ 30
+0.0
+ 11
+362.5047902727204
+ 21
+33.50888218183804
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0
+ 20
+86.02325299999968
+ 30
+0.0
+ 11
+362.5047902727205
+ 21
+86.02325299999966
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+97.4952097272796
+ 20
+322.53762381816176
+ 30
+0.0
+ 11
+115.00000000000013
+ 21
+322.53762381816176
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+97.49520972727954
+ 20
+270.0232530000002
+ 30
+0.0
+ 11
+97.4952097272796
+ 21
+322.53762381816176
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000007
+ 20
+270.0232530000002
+ 30
+0.0
+ 11
+97.49520972727954
+ 21
+270.0232530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+379.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+146.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0000000000001
+ 20
+146.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+379.00000000000017
+ 20
+146.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+146.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+379.00000000000017
+ 20
+146.023253
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+122.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0000000000001
+ 20
+122.02325300000003
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+146.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+379.00000000000017
+ 20
+122.02325300000003
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+122.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+379.00000000000017
+ 20
+122.02325300000003
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+102.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0000000000001
+ 20
+102.02325300000003
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+122.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+345.0000000000001
+ 20
+102.02325300000003
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+102.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0000000000001
+ 20
+92.02325300000001
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+102.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+379.00000000000017
+ 20
+92.02325300000001
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+92.02325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+379.00000000000017
+ 20
+102.02325300000003
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+92.02325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+463.7500000000001
+ 20
+182.023253
+ 30
+0.0
+ 11
+463.7500000000001
+ 21
+184.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+463.7500000000001
+ 20
+184.523253
+ 30
+0.0
+ 11
+461.25000000000017
+ 21
+182.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+461.25000000000017
+ 20
+182.023253
+ 30
+0.0
+ 11
+461.25000000000017
+ 21
+174.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+461.25000000000017
+ 20
+174.02325300000004
+ 30
+0.0
+ 11
+463.7500000000001
+ 21
+171.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+463.7500000000001
+ 20
+171.52325300000004
+ 30
+0.0
+ 11
+463.7500000000001
+ 21
+174.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+356.0833333333335
+ 20
+182.273253
+ 30
+0.0
+ 11
+367.9166666666668
+ 21
+182.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+367.9166666666668
+ 20
+182.273253
+ 30
+0.0
+ 11
+367.9166666666668
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+367.9166666666668
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+356.0833333333335
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+356.0833333333335
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+356.0833333333335
+ 21
+182.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+358.1285927045405
+ 20
+305.0328335454411
+ 30
+0.0
+ 11
+349.3761975681803
+ 21
+305.0328335454411
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+349.3761975681803
+ 20
+305.0328335454411
+ 30
+0.0
+ 11
+349.3761975681803
+ 21
+287.5280432727206
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+349.3761975681803
+ 20
+287.5280432727206
+ 30
+0.0
+ 11
+358.1285927045405
+ 21
+287.5280432727206
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+256.9879208023066
+ 20
+334.247756013529
+ 30
+0.0
+ 11
+274.2738435039604
+ 21
+329.2109565220759
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+274.2738435039604
+ 20
+329.2109565220759
+ 30
+0.0
+ 11
+274.41371737683426
+ 21
+329.6909932911753
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+274.41371737683426
+ 20
+329.6909932911753
+ 30
+0.0
+ 11
+257.1277946751804
+ 21
+334.7277927826282
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+257.1277946751804
+ 20
+334.7277927826282
+ 30
+0.0
+ 11
+256.9879208023066
+ 21
+334.247756013529
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+185.72615649603986
+ 20
+329.21095652207595
+ 30
+0.0
+ 11
+203.0120791976937
+ 21
+334.247756013529
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.0120791976937
+ 20
+334.247756013529
+ 30
+0.0
+ 11
+202.87220532481987
+ 21
+334.7277927826283
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.87220532481987
+ 20
+334.7277927826283
+ 30
+0.0
+ 11
+185.58628262316603
+ 21
+329.6909932911753
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+185.58628262316603
+ 20
+329.6909932911753
+ 30
+0.0
+ 11
+185.72615649603986
+ 21
+329.21095652207595
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.08333333333333
+ 20
+182.27325300000012
+ 30
+0.0
+ 11
+103.9166666666667
+ 21
+182.27325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+103.9166666666667
+ 20
+182.27325300000012
+ 30
+0.0
+ 11
+103.9166666666667
+ 21
+182.77325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+103.9166666666667
+ 20
+182.77325300000012
+ 30
+0.0
+ 11
+92.08333333333333
+ 21
+182.77325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.08333333333333
+ 20
+182.77325300000012
+ 30
+0.0
+ 11
+92.08333333333333
+ 21
+182.27325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+4.000000000000001
+ 20
+173.7732530000002
+ 30
+0.0
+ 11
+4.000000000000001
+ 21
+182.2732530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+4.000000000000001
+ 20
+182.2732530000002
+ 30
+0.0
+ 11
+3.5000000000000004
+ 21
+182.2732530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+3.5000000000000004
+ 20
+182.2732530000002
+ 30
+0.0
+ 11
+3.5000000000000004
+ 21
+173.7732530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+3.5000000000000004
+ 20
+173.7732530000002
+ 30
+0.0
+ 11
+4.000000000000001
+ 21
+173.7732530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+104.00000000000001
+ 20
+147.0232530000001
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+151.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+104.00000000000001
+ 20
+151.0232530000001
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+151.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.00000000000001
+ 20
+151.02325300000012
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+147.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.00000000000001
+ 20
+147.02325300000012
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+147.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.50000000000001
+ 20
+159.02325300000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+163.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.50000000000001
+ 20
+163.0232530000001
+ 30
+0.0
+ 11
+93.50000000000001
+ 21
+163.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.50000000000001
+ 20
+163.02325300000012
+ 30
+0.0
+ 11
+93.50000000000001
+ 21
+159.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.50000000000001
+ 20
+159.0232530000001
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+159.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+104.00000000000001
+ 20
+122.52325300000008
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+145.52325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+104.00000000000001
+ 20
+145.52325300000007
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+145.5232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.00000000000001
+ 20
+145.5232530000001
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+122.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.00000000000001
+ 20
+122.52325300000008
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+122.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+104.00000000000001
+ 20
+117.02325300000008
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+121.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+104.00000000000001
+ 20
+121.02325300000008
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+121.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.00000000000001
+ 20
+121.02325300000008
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+117.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.00000000000001
+ 20
+117.02325300000008
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+117.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+103.6666666666667
+ 20
+94.52325300000007
+ 30
+0.0
+ 11
+103.6666666666667
+ 21
+99.52325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+103.6666666666667
+ 20
+99.52325300000007
+ 30
+0.0
+ 11
+92.33333333333331
+ 21
+99.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.33333333333331
+ 20
+99.52325300000008
+ 30
+0.0
+ 11
+92.33333333333331
+ 21
+94.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.87140729545946
+ 20
+51.013672454558964
+ 30
+0.0
+ 11
+110.6238024318197
+ 21
+51.013672454558964
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.6238024318197
+ 20
+51.013672454558964
+ 30
+0.0
+ 11
+110.62380243181975
+ 21
+68.5184627272795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.62380243181975
+ 20
+68.5184627272795
+ 30
+0.0
+ 11
+101.87140729545952
+ 21
+68.5184627272795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.01207919769342
+ 20
+21.798749986470966
+ 30
+0.0
+ 11
+185.72615649603964
+ 21
+26.835549477924022
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+185.72615649603964
+ 20
+26.835549477924022
+ 30
+0.0
+ 11
+185.5862826231658
+ 21
+26.355512708824737
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+185.5862826231658
+ 20
+26.355512708824737
+ 30
+0.0
+ 11
+202.8722053248196
+ 21
+21.318713217371684
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.8722053248196
+ 20
+21.318713217371684
+ 30
+0.0
+ 11
+203.01207919769342
+ 21
+21.798749986470966
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+274.27384350396005
+ 20
+26.835549477923852
+ 30
+0.0
+ 11
+256.9879208023063
+ 21
+21.798749986470856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+256.9879208023063
+ 20
+21.798749986470856
+ 30
+0.0
+ 11
+257.12779467518016
+ 21
+21.31871321737157
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+257.12779467518016
+ 20
+21.31871321737157
+ 30
+0.0
+ 11
+274.4137173768339
+ 21
+26.355512708824563
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+274.4137173768339
+ 20
+26.355512708824563
+ 30
+0.0
+ 11
+274.27384350396005
+ 21
+26.835549477923852
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+358.1285927045404
+ 20
+68.5184627272791
+ 30
+0.0
+ 11
+349.3761975681801
+ 21
+68.51846272727911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+349.3761975681801
+ 20
+68.51846272727911
+ 30
+0.0
+ 11
+349.3761975681801
+ 21
+51.013672454558595
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+349.3761975681801
+ 20
+51.013672454558595
+ 30
+0.0
+ 11
+358.1285927045403
+ 21
+51.01367245455858
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.87140729545968
+ 20
+287.5280432727207
+ 30
+0.0
+ 11
+110.62380243181993
+ 21
+287.5280432727207
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.62380243181993
+ 20
+287.5280432727207
+ 30
+0.0
+ 11
+110.62380243181998
+ 21
+305.03283354544124
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.62380243181998
+ 20
+305.03283354544124
+ 30
+0.0
+ 11
+101.87140729545975
+ 21
+305.03283354544124
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+368.0000000000001
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+151.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+368.0000000000001
+ 20
+151.02325300000004
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+151.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+356.00000000000017
+ 20
+151.02325300000004
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+356.00000000000017
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+366.50000000000017
+ 20
+159.023253
+ 30
+0.0
+ 11
+366.50000000000017
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+366.50000000000017
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+357.50000000000017
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+357.50000000000017
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+357.50000000000017
+ 21
+159.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+357.50000000000017
+ 20
+159.023253
+ 30
+0.0
+ 11
+366.50000000000017
+ 21
+159.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+368.0000000000001
+ 20
+122.52325300000003
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+145.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+368.0000000000001
+ 20
+145.523253
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+145.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+356.00000000000017
+ 20
+145.523253
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+122.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+356.00000000000017
+ 20
+122.52325300000003
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+122.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+368.0000000000001
+ 20
+117.02325300000003
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+121.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+368.0000000000001
+ 20
+121.02325300000003
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+121.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+356.00000000000017
+ 20
+121.02325300000003
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+117.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+356.00000000000017
+ 20
+117.02325300000003
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+117.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+367.6666666666668
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+367.6666666666668
+ 21
+99.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+367.6666666666668
+ 20
+99.52325300000003
+ 30
+0.0
+ 11
+356.3333333333335
+ 21
+99.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+356.3333333333335
+ 20
+99.52325300000003
+ 30
+0.0
+ 11
+356.3333333333335
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithServoMount/graph-autofold-graph.dxf b/rocolib/builders/output/BoatWithServoMount/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..d16ab559563fac24df7c70abf6e30e7d9ee2f2a5
--- /dev/null
+++ b/rocolib/builders/output/BoatWithServoMount/graph-autofold-graph.dxf
@@ -0,0 +1,4348 @@
+  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
+415.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+415.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+415.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.00000000000017
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+415.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.00000000000017
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+460.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+460.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+415.00000000000017
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+465.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+460.00000000000017
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+465.00000000000017
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+465.00000000000017
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+460.00000000000017
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+465.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+345.0000000000001
+ 20
+166.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+379.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+166.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+275.00000000000017
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+275.00000000000017
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+275.00000000000017
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+345.0000000000001
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+322.53762381816165
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+275.00000000000017
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+322.53762381816165
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+362.5047902727207
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+362.5047902727207
+ 20
+322.53762381816165
+ 30
+0.0
+ 11
+362.5047902727207
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+322.53762381816165
+ 30
+0.0
+ 11
+362.5047902727207
+ 21
+322.53762381816165
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+275.00000000000017
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+294.58234220233663
+ 21
+337.2284006738992
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+294.58234220233663
+ 20
+337.2284006738992
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+322.53762381816165
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+244.16468440467298
+ 20
+351.9191775296368
+ 30
+0.0
+ 11
+294.58234220233663
+ 21
+337.2284006738992
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.00000000000014
+ 20
+356.04650567042637
+ 30
+0.0
+ 11
+244.16468440467298
+ 21
+351.9191775296368
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+230.00000000000014
+ 20
+356.04650567042637
+ 30
+0.0
+ 11
+275.00000000000017
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+230.0000000000001
+ 20
+270.0232530000001
+ 30
+0.0
+ 11
+275.00000000000017
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+185.0000000000001
+ 20
+270.0232530000001
+ 30
+0.0
+ 11
+230.0000000000001
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+230.00000000000014
+ 20
+356.04650567042637
+ 30
+0.0
+ 11
+185.00000000000009
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+165.4176577976637
+ 20
+337.2284006738993
+ 30
+0.0
+ 11
+185.00000000000009
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.83531559532727
+ 20
+351.91917752963684
+ 30
+0.0
+ 11
+230.00000000000014
+ 21
+356.04650567042637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.4176577976637
+ 20
+337.2284006738993
+ 30
+0.0
+ 11
+215.83531559532727
+ 21
+351.91917752963684
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000013
+ 20
+322.53762381816176
+ 30
+0.0
+ 11
+165.41765779766374
+ 21
+337.2284006738993
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+115.00000000000013
+ 20
+322.53762381816176
+ 30
+0.0
+ 11
+185.00000000000009
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+115.00000000000007
+ 20
+270.0232530000002
+ 30
+0.0
+ 11
+185.0000000000001
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+115.00000000000013
+ 20
+322.53762381816176
+ 30
+0.0
+ 11
+115.00000000000007
+ 21
+270.0232530000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+185.0000000000001
+ 20
+270.0232530000001
+ 30
+0.0
+ 11
+184.99999999999997
+ 21
+86.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+190.0232530000001
+ 30
+0.0
+ 11
+115.00000000000007
+ 21
+270.0232530000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+115.00000000000001
+ 20
+190.0232530000001
+ 30
+0.0
+ 11
+114.99999999999996
+ 21
+166.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.9999999999999
+ 20
+86.02325300000004
+ 30
+0.0
+ 11
+114.99999999999996
+ 21
+166.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.9999999999999
+ 20
+86.02325300000004
+ 30
+0.0
+ 11
+114.9999999999999
+ 21
+86.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000007
+ 20
+270.0232530000002
+ 30
+0.0
+ 11
+115.00000000000007
+ 21
+270.0232530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.00000000000001
+ 20
+190.02325300000015
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+190.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+115.00000000000001
+ 20
+166.02325300000007
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+166.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.0
+ 20
+190.02325300000018
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+190.02325300000015
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+45.0
+ 20
+190.02325300000018
+ 30
+0.0
+ 11
+45.0
+ 21
+166.02325300000018
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.00000000000001
+ 20
+166.0232530000001
+ 30
+0.0
+ 11
+45.0
+ 21
+166.02325300000018
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.0
+ 20
+166.02325300000018
+ 30
+0.0
+ 11
+0.0
+ 21
+166.0232530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+190.0232530000002
+ 30
+0.0
+ 11
+45.0
+ 21
+190.02325300000018
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+166.0232530000002
+ 30
+0.0
+ 11
+0.0
+ 21
+190.0232530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+166.02325300000007
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+146.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.00000000000001
+ 20
+146.02325300000012
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+166.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+115.00000000000001
+ 20
+146.0232530000001
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+146.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+146.0232530000001
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+122.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.00000000000001
+ 20
+122.0232530000001
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+146.02325300000012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+115.00000000000001
+ 20
+122.02325300000007
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+122.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+122.02325300000007
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+102.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.00000000000001
+ 20
+102.02325300000008
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+122.02325300000011
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+81.00000000000001
+ 20
+102.02325300000008
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+102.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.00000000000001
+ 20
+92.02325300000007
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+102.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+92.02325300000004
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+92.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+102.02325300000005
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+92.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+184.9999999999999
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+114.9999999999999
+ 21
+86.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+114.9999999999999
+ 20
+86.02325300000004
+ 30
+0.0
+ 11
+114.99999999999984
+ 21
+33.50888218183843
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+184.9999999999999
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+114.99999999999984
+ 21
+33.50888218183843
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.49520972727937
+ 20
+86.02325300000005
+ 30
+0.0
+ 11
+114.9999999999999
+ 21
+86.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.49520972727932
+ 20
+33.508882181838466
+ 30
+0.0
+ 11
+97.49520972727937
+ 21
+86.02325300000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.99999999999984
+ 20
+33.50888218183843
+ 30
+0.0
+ 11
+97.49520972727932
+ 21
+33.508882181838466
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+184.99999999999997
+ 20
+86.02325299999998
+ 30
+0.0
+ 11
+165.41765779766345
+ 21
+18.81810532610081
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.41765779766345
+ 20
+18.81810532610081
+ 30
+0.0
+ 11
+114.99999999999984
+ 21
+33.50888218183843
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.83531559532696
+ 20
+4.127328470363154
+ 30
+0.0
+ 11
+165.41765779766342
+ 21
+18.81810532610078
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+229.99999999999986
+ 20
+3.2957356665974663e-07
+ 30
+0.0
+ 11
+215.83531559532696
+ 21
+4.127328470363154
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+229.99999999999986
+ 20
+3.2957356665974663e-07
+ 30
+0.0
+ 11
+184.99999999999994
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+229.99999999999994
+ 20
+86.02325299999991
+ 30
+0.0
+ 11
+184.99999999999994
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+275.0
+ 20
+86.02325299999983
+ 30
+0.0
+ 11
+229.99999999999994
+ 21
+86.02325299999988
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+229.99999999999983
+ 20
+3.2957356665974663e-07
+ 30
+0.0
+ 11
+275.0
+ 21
+86.02325299999983
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+294.5823422023363
+ 20
+18.818105326100554
+ 30
+0.0
+ 11
+275.0
+ 21
+86.02325299999981
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+244.16468440467267
+ 20
+4.127328470363068
+ 30
+0.0
+ 11
+229.99999999999983
+ 21
+3.2957353823803714e-07
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+294.5823422023363
+ 20
+18.818105326100554
+ 30
+0.0
+ 11
+244.16468440467267
+ 21
+4.127328470363068
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.9999999999999
+ 20
+33.50888218183806
+ 30
+0.0
+ 11
+294.5823422023363
+ 21
+18.81810532610058
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+344.9999999999999
+ 20
+33.50888218183806
+ 30
+0.0
+ 11
+275.0
+ 21
+86.02325299999983
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+345.0
+ 20
+86.02325299999968
+ 30
+0.0
+ 11
+274.99999999999994
+ 21
+86.02325299999983
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+344.9999999999999
+ 20
+33.50888218183806
+ 30
+0.0
+ 11
+345.0
+ 21
+86.02325299999968
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+362.5047902727204
+ 20
+33.50888218183804
+ 30
+0.0
+ 11
+344.9999999999999
+ 21
+33.50888218183806
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+362.5047902727205
+ 20
+86.02325299999966
+ 30
+0.0
+ 11
+362.5047902727204
+ 21
+33.50888218183804
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0
+ 20
+86.02325299999968
+ 30
+0.0
+ 11
+362.5047902727205
+ 21
+86.02325299999966
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.4952097272796
+ 20
+322.53762381816176
+ 30
+0.0
+ 11
+115.00000000000013
+ 21
+322.53762381816176
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.49520972727954
+ 20
+270.0232530000002
+ 30
+0.0
+ 11
+97.4952097272796
+ 21
+322.53762381816176
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000007
+ 20
+270.0232530000002
+ 30
+0.0
+ 11
+97.49520972727954
+ 21
+270.0232530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+146.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+146.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+379.00000000000017
+ 20
+146.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+146.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.00000000000017
+ 20
+146.023253
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+122.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+122.02325300000003
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+146.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+379.00000000000017
+ 20
+122.02325300000003
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+122.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.00000000000017
+ 20
+122.02325300000003
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+102.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+102.02325300000003
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+122.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+345.0000000000001
+ 20
+102.02325300000003
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+102.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+92.02325300000001
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+102.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.00000000000017
+ 20
+92.02325300000001
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+92.02325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.00000000000017
+ 20
+102.02325300000003
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+92.02325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+463.7500000000001
+ 20
+182.023253
+ 30
+0.0
+ 11
+463.7500000000001
+ 21
+184.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+463.7500000000001
+ 20
+184.523253
+ 30
+0.0
+ 11
+461.25000000000017
+ 21
+182.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+461.25000000000017
+ 20
+182.023253
+ 30
+0.0
+ 11
+461.25000000000017
+ 21
+174.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+461.25000000000017
+ 20
+174.02325300000004
+ 30
+0.0
+ 11
+463.7500000000001
+ 21
+171.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+463.7500000000001
+ 20
+171.52325300000004
+ 30
+0.0
+ 11
+463.7500000000001
+ 21
+174.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.0833333333335
+ 20
+182.273253
+ 30
+0.0
+ 11
+367.9166666666668
+ 21
+182.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.9166666666668
+ 20
+182.273253
+ 30
+0.0
+ 11
+367.9166666666668
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.9166666666668
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+356.0833333333335
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.0833333333335
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+356.0833333333335
+ 21
+182.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+358.1285927045405
+ 20
+305.0328335454411
+ 30
+0.0
+ 11
+349.3761975681803
+ 21
+305.0328335454411
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.3761975681803
+ 20
+305.0328335454411
+ 30
+0.0
+ 11
+349.3761975681803
+ 21
+287.5280432727206
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.3761975681803
+ 20
+287.5280432727206
+ 30
+0.0
+ 11
+358.1285927045405
+ 21
+287.5280432727206
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+256.9879208023066
+ 20
+334.247756013529
+ 30
+0.0
+ 11
+274.2738435039604
+ 21
+329.2109565220759
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+274.2738435039604
+ 20
+329.2109565220759
+ 30
+0.0
+ 11
+274.41371737683426
+ 21
+329.6909932911753
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+274.41371737683426
+ 20
+329.6909932911753
+ 30
+0.0
+ 11
+257.1277946751804
+ 21
+334.7277927826282
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+257.1277946751804
+ 20
+334.7277927826282
+ 30
+0.0
+ 11
+256.9879208023066
+ 21
+334.247756013529
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+185.72615649603986
+ 20
+329.21095652207595
+ 30
+0.0
+ 11
+203.0120791976937
+ 21
+334.247756013529
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.0120791976937
+ 20
+334.247756013529
+ 30
+0.0
+ 11
+202.87220532481987
+ 21
+334.7277927826283
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.87220532481987
+ 20
+334.7277927826283
+ 30
+0.0
+ 11
+185.58628262316603
+ 21
+329.6909932911753
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+185.58628262316603
+ 20
+329.6909932911753
+ 30
+0.0
+ 11
+185.72615649603986
+ 21
+329.21095652207595
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.08333333333333
+ 20
+182.27325300000012
+ 30
+0.0
+ 11
+103.9166666666667
+ 21
+182.27325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.9166666666667
+ 20
+182.27325300000012
+ 30
+0.0
+ 11
+103.9166666666667
+ 21
+182.77325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.9166666666667
+ 20
+182.77325300000012
+ 30
+0.0
+ 11
+92.08333333333333
+ 21
+182.77325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.08333333333333
+ 20
+182.77325300000012
+ 30
+0.0
+ 11
+92.08333333333333
+ 21
+182.27325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.000000000000001
+ 20
+173.7732530000002
+ 30
+0.0
+ 11
+4.000000000000001
+ 21
+182.2732530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.000000000000001
+ 20
+182.2732530000002
+ 30
+0.0
+ 11
+3.5000000000000004
+ 21
+182.2732530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+3.5000000000000004
+ 20
+182.2732530000002
+ 30
+0.0
+ 11
+3.5000000000000004
+ 21
+173.7732530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+3.5000000000000004
+ 20
+173.7732530000002
+ 30
+0.0
+ 11
+4.000000000000001
+ 21
+173.7732530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.00000000000001
+ 20
+147.0232530000001
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+151.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.00000000000001
+ 20
+151.0232530000001
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+151.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.00000000000001
+ 20
+151.02325300000012
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+147.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.00000000000001
+ 20
+147.02325300000012
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+147.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.50000000000001
+ 20
+159.02325300000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+163.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.50000000000001
+ 20
+163.0232530000001
+ 30
+0.0
+ 11
+93.50000000000001
+ 21
+163.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.50000000000001
+ 20
+163.02325300000012
+ 30
+0.0
+ 11
+93.50000000000001
+ 21
+159.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.50000000000001
+ 20
+159.0232530000001
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+159.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.00000000000001
+ 20
+122.52325300000008
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+145.52325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.00000000000001
+ 20
+145.52325300000007
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+145.5232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.00000000000001
+ 20
+145.5232530000001
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+122.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.00000000000001
+ 20
+122.52325300000008
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+122.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.00000000000001
+ 20
+117.02325300000008
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+121.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.00000000000001
+ 20
+121.02325300000008
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+121.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.00000000000001
+ 20
+121.02325300000008
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+117.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.00000000000001
+ 20
+117.02325300000008
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+117.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.6666666666667
+ 20
+94.52325300000007
+ 30
+0.0
+ 11
+103.6666666666667
+ 21
+99.52325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.6666666666667
+ 20
+99.52325300000007
+ 30
+0.0
+ 11
+92.33333333333331
+ 21
+99.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.33333333333331
+ 20
+99.52325300000008
+ 30
+0.0
+ 11
+92.33333333333331
+ 21
+94.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.87140729545946
+ 20
+51.013672454558964
+ 30
+0.0
+ 11
+110.6238024318197
+ 21
+51.013672454558964
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.6238024318197
+ 20
+51.013672454558964
+ 30
+0.0
+ 11
+110.62380243181975
+ 21
+68.5184627272795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.62380243181975
+ 20
+68.5184627272795
+ 30
+0.0
+ 11
+101.87140729545952
+ 21
+68.5184627272795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.01207919769342
+ 20
+21.798749986470966
+ 30
+0.0
+ 11
+185.72615649603964
+ 21
+26.835549477924022
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+185.72615649603964
+ 20
+26.835549477924022
+ 30
+0.0
+ 11
+185.5862826231658
+ 21
+26.355512708824737
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+185.5862826231658
+ 20
+26.355512708824737
+ 30
+0.0
+ 11
+202.8722053248196
+ 21
+21.318713217371684
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.8722053248196
+ 20
+21.318713217371684
+ 30
+0.0
+ 11
+203.01207919769342
+ 21
+21.798749986470966
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+274.27384350396005
+ 20
+26.835549477923852
+ 30
+0.0
+ 11
+256.9879208023063
+ 21
+21.798749986470856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+256.9879208023063
+ 20
+21.798749986470856
+ 30
+0.0
+ 11
+257.12779467518016
+ 21
+21.31871321737157
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+257.12779467518016
+ 20
+21.31871321737157
+ 30
+0.0
+ 11
+274.4137173768339
+ 21
+26.355512708824563
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+274.4137173768339
+ 20
+26.355512708824563
+ 30
+0.0
+ 11
+274.27384350396005
+ 21
+26.835549477923852
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+358.1285927045404
+ 20
+68.5184627272791
+ 30
+0.0
+ 11
+349.3761975681801
+ 21
+68.51846272727911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.3761975681801
+ 20
+68.51846272727911
+ 30
+0.0
+ 11
+349.3761975681801
+ 21
+51.013672454558595
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.3761975681801
+ 20
+51.013672454558595
+ 30
+0.0
+ 11
+358.1285927045403
+ 21
+51.01367245455858
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.87140729545968
+ 20
+287.5280432727207
+ 30
+0.0
+ 11
+110.62380243181993
+ 21
+287.5280432727207
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.62380243181993
+ 20
+287.5280432727207
+ 30
+0.0
+ 11
+110.62380243181998
+ 21
+305.03283354544124
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.62380243181998
+ 20
+305.03283354544124
+ 30
+0.0
+ 11
+101.87140729545975
+ 21
+305.03283354544124
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.0000000000001
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+151.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.0000000000001
+ 20
+151.02325300000004
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+151.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.00000000000017
+ 20
+151.02325300000004
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.00000000000017
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.50000000000017
+ 20
+159.023253
+ 30
+0.0
+ 11
+366.50000000000017
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.50000000000017
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+357.50000000000017
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+357.50000000000017
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+357.50000000000017
+ 21
+159.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+357.50000000000017
+ 20
+159.023253
+ 30
+0.0
+ 11
+366.50000000000017
+ 21
+159.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.0000000000001
+ 20
+122.52325300000003
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+145.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.0000000000001
+ 20
+145.523253
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+145.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.00000000000017
+ 20
+145.523253
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+122.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.00000000000017
+ 20
+122.52325300000003
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+122.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.0000000000001
+ 20
+117.02325300000003
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+121.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.0000000000001
+ 20
+121.02325300000003
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+121.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.00000000000017
+ 20
+121.02325300000003
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+117.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.00000000000017
+ 20
+117.02325300000003
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+117.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.6666666666668
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+367.6666666666668
+ 21
+99.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.6666666666668
+ 20
+99.52325300000003
+ 30
+0.0
+ 11
+356.3333333333335
+ 21
+99.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.3333333333335
+ 20
+99.52325300000003
+ 30
+0.0
+ 11
+356.3333333333335
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithServoMount/graph-lasercutter.svg b/rocolib/builders/output/BoatWithServoMount/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ed2a4a6d336990b0406ca9a74c4c16930223bbe4
--- /dev/null
+++ b/rocolib/builders/output/BoatWithServoMount/graph-lasercutter.svg
@@ -0,0 +1,189 @@
+<?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="356.046506mm" version="1.1" viewBox="0.000000 0.000000 465.000000 356.046506" width="465.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="415.00000000000017" x2="379.00000000000017" y1="166.023253" y2="166.023253"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="415.00000000000017" x2="415.00000000000017" y1="166.023253" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="379.00000000000017" x2="415.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="460.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="460.00000000000017" x2="415.00000000000017" y1="166.023253" y2="166.023253"/>
+  <line stroke="#000000" x1="465.00000000000017" x2="460.00000000000017" y1="166.023253" y2="166.023253"/>
+  <line stroke="#000000" x1="465.00000000000017" x2="465.00000000000017" y1="190.02325300000004" y2="166.023253"/>
+  <line stroke="#000000" x1="460.00000000000017" x2="465.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="379.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0000000000001" x2="345.0000000000001" y1="166.023253" y2="190.02325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="379.00000000000017" x2="345.0000000000001" y1="166.023253" y2="166.023253"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="166.023253" y2="86.02325300000003"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="270.02325300000007" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="270.02325300000007" y2="270.02325300000007"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="86.02325300000003" y2="86.02325300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="275.00000000000017" y1="270.02325300000007" y2="86.02325300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="345.0000000000001" y1="270.02325300000007" y2="270.02325300000007"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0000000000001" x2="345.0000000000001" y1="270.02325300000007" y2="322.53762381816165"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="345.0000000000001" y1="270.02325300000007" y2="322.53762381816165"/>
+  <line stroke="#000000" x1="362.5047902727207" x2="345.0000000000001" y1="270.02325300000007" y2="270.02325300000007"/>
+  <line stroke="#000000" x1="362.5047902727207" x2="362.5047902727207" y1="322.53762381816165" y2="270.02325300000007"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="362.5047902727207" y1="322.53762381816165" y2="322.53762381816165"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="294.58234220233663" y1="270.02325300000007" y2="337.2284006738992"/>
+  <line stroke="#000000" x1="294.58234220233663" x2="345.0000000000001" y1="337.2284006738992" y2="322.53762381816165"/>
+  <line stroke="#000000" x1="244.16468440467298" x2="294.58234220233663" y1="351.9191775296368" y2="337.2284006738992"/>
+  <line stroke="#000000" x1="230.00000000000014" x2="244.16468440467298" y1="356.04650567042637" y2="351.9191775296368"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.00000000000014" x2="275.00000000000017" y1="356.04650567042637" y2="270.02325300000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.0000000000001" x2="275.00000000000017" y1="270.0232530000001" y2="270.02325300000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="185.0000000000001" x2="230.0000000000001" y1="270.0232530000001" y2="270.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.00000000000014" x2="185.00000000000009" y1="356.04650567042637" y2="270.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="165.4176577976637" x2="185.00000000000009" y1="337.2284006738993" y2="270.0232530000001"/>
+  <line stroke="#000000" x1="215.83531559532727" x2="230.00000000000014" y1="351.91917752963684" y2="356.04650567042637"/>
+  <line stroke="#000000" x1="165.4176577976637" x2="215.83531559532727" y1="337.2284006738993" y2="351.91917752963684"/>
+  <line stroke="#000000" x1="115.00000000000013" x2="165.41765779766374" y1="322.53762381816176" y2="337.2284006738993"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000013" x2="185.00000000000009" y1="322.53762381816176" y2="270.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000007" x2="185.0000000000001" y1="270.0232530000002" y2="270.0232530000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000013" x2="115.00000000000007" y1="322.53762381816176" y2="270.0232530000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="185.0000000000001" x2="184.99999999999997" y1="270.0232530000001" y2="86.02325299999998"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000007" y1="190.0232530000001" y2="270.0232530000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="114.99999999999996" y1="190.0232530000001" y2="166.02325300000007"/>
+  <line stroke="#000000" x1="114.9999999999999" x2="114.99999999999996" y1="86.02325300000004" y2="166.02325300000007"/>
+  <line stroke="#000000" x1="114.9999999999999" x2="114.9999999999999" y1="86.02325300000004" y2="86.02325300000004"/>
+  <line stroke="#000000" x1="115.00000000000007" x2="115.00000000000007" y1="270.0232530000002" y2="270.0232530000002"/>
+  <line stroke="#000000" x1="81.00000000000001" x2="115.00000000000001" y1="190.02325300000015" y2="190.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="81.00000000000001" y1="166.02325300000007" y2="166.0232530000001"/>
+  <line stroke="#000000" x1="45.0" x2="81.00000000000001" y1="190.02325300000018" y2="190.02325300000015"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="45.0" x2="45.0" y1="190.02325300000018" y2="166.02325300000018"/>
+  <line stroke="#000000" x1="81.00000000000001" x2="45.0" y1="166.0232530000001" y2="166.02325300000018"/>
+  <line stroke="#000000" x1="45.0" x2="0.0" y1="166.02325300000018" y2="166.0232530000002"/>
+  <line stroke="#000000" x1="0.0" x2="45.0" y1="190.0232530000002" y2="190.02325300000018"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="166.0232530000002" y2="190.0232530000002"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="166.02325300000007" y2="146.0232530000001"/>
+  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="146.02325300000012" y2="166.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="81.00000000000001" y1="146.0232530000001" y2="146.02325300000012"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="146.0232530000001" y2="122.02325300000007"/>
+  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="122.0232530000001" y2="146.02325300000012"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="81.00000000000001" y1="122.02325300000007" y2="122.0232530000001"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="122.02325300000007" y2="102.02325300000007"/>
+  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="102.02325300000008" y2="122.02325300000011"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="81.00000000000001" x2="115.00000000000001" y1="102.02325300000008" y2="102.02325300000007"/>
+  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="92.02325300000007" y2="102.02325300000008"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="81.00000000000001" y1="92.02325300000004" y2="92.02325300000007"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="102.02325300000005" y2="92.02325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.9999999999999" x2="114.9999999999999" y1="86.02325299999997" y2="86.02325300000004"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="114.9999999999999" x2="114.99999999999984" y1="86.02325300000004" y2="33.50888218183843"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.9999999999999" x2="114.99999999999984" y1="86.02325299999997" y2="33.50888218183843"/>
+  <line stroke="#000000" x1="97.49520972727937" x2="114.9999999999999" y1="86.02325300000005" y2="86.02325300000004"/>
+  <line stroke="#000000" x1="97.49520972727932" x2="97.49520972727937" y1="33.508882181838466" y2="86.02325300000005"/>
+  <line stroke="#000000" x1="114.99999999999984" x2="97.49520972727932" y1="33.50888218183843" y2="33.508882181838466"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.99999999999997" x2="165.41765779766345" y1="86.02325299999998" y2="18.81810532610081"/>
+  <line stroke="#000000" x1="165.41765779766345" x2="114.99999999999984" y1="18.81810532610081" y2="33.50888218183843"/>
+  <line stroke="#000000" x1="215.83531559532696" x2="165.41765779766342" y1="4.127328470363154" y2="18.81810532610078"/>
+  <line stroke="#000000" x1="229.99999999999986" x2="215.83531559532696" y1="3.2957356665974663e-07" y2="4.127328470363154"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="229.99999999999986" x2="184.99999999999994" y1="3.2957356665974663e-07" y2="86.02325299999997"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="229.99999999999994" x2="184.99999999999994" y1="86.02325299999991" y2="86.02325299999997"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.0" x2="229.99999999999994" y1="86.02325299999983" y2="86.02325299999988"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="229.99999999999983" x2="275.0" y1="3.2957356665974663e-07" y2="86.02325299999983"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="294.5823422023363" x2="275.0" y1="18.818105326100554" y2="86.02325299999981"/>
+  <line stroke="#000000" x1="244.16468440467267" x2="229.99999999999983" y1="4.127328470363068" y2="3.2957353823803714e-07"/>
+  <line stroke="#000000" x1="294.5823422023363" x2="244.16468440467267" y1="18.818105326100554" y2="4.127328470363068"/>
+  <line stroke="#000000" x1="344.9999999999999" x2="294.5823422023363" y1="33.50888218183806" y2="18.81810532610058"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.9999999999999" x2="275.0" y1="33.50888218183806" y2="86.02325299999983"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0" x2="274.99999999999994" y1="86.02325299999968" y2="86.02325299999983"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.9999999999999" x2="345.0" y1="33.50888218183806" y2="86.02325299999968"/>
+  <line stroke="#000000" x1="362.5047902727204" x2="344.9999999999999" y1="33.50888218183804" y2="33.50888218183806"/>
+  <line stroke="#000000" x1="362.5047902727205" x2="362.5047902727204" y1="86.02325299999966" y2="33.50888218183804"/>
+  <line stroke="#000000" x1="345.0" x2="362.5047902727205" y1="86.02325299999968" y2="86.02325299999966"/>
+  <line stroke="#000000" x1="97.4952097272796" x2="115.00000000000013" y1="322.53762381816176" y2="322.53762381816176"/>
+  <line stroke="#000000" x1="97.49520972727954" x2="97.4952097272796" y1="270.0232530000002" y2="322.53762381816176"/>
+  <line stroke="#000000" x1="115.00000000000007" x2="97.49520972727954" y1="270.0232530000002" y2="270.0232530000002"/>
+  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="166.023253" y2="146.023253"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="146.023253" y2="166.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="379.00000000000017" x2="345.0000000000001" y1="146.023253" y2="146.023253"/>
+  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="146.023253" y2="122.02325300000003"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="122.02325300000003" y2="146.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="379.00000000000017" x2="345.0000000000001" y1="122.02325300000003" y2="122.02325300000003"/>
+  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="122.02325300000003" y2="102.02325300000003"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="102.02325300000003" y2="122.02325300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0000000000001" x2="379.00000000000017" y1="102.02325300000003" y2="102.02325300000003"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="92.02325300000001" y2="102.02325300000003"/>
+  <line stroke="#000000" x1="379.00000000000017" x2="345.0000000000001" y1="92.02325300000001" y2="92.02325300000001"/>
+  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="102.02325300000003" y2="92.02325300000001"/>
+  <line stroke="#888888" x1="463.7500000000001" x2="463.7500000000001" y1="182.023253" y2="184.523253"/>
+  <line stroke="#888888" x1="463.7500000000001" x2="461.25000000000017" y1="184.523253" y2="182.023253"/>
+  <line stroke="#888888" x1="461.25000000000017" x2="461.25000000000017" y1="182.023253" y2="174.02325300000004"/>
+  <line stroke="#888888" x1="461.25000000000017" x2="463.7500000000001" y1="174.02325300000004" y2="171.52325300000004"/>
+  <line stroke="#888888" x1="463.7500000000001" x2="463.7500000000001" y1="171.52325300000004" y2="174.02325300000004"/>
+  <line stroke="#888888" x1="356.0833333333335" x2="367.9166666666668" y1="182.273253" y2="182.273253"/>
+  <line stroke="#888888" x1="367.9166666666668" x2="367.9166666666668" y1="182.273253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="367.9166666666668" x2="356.0833333333335" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="356.0833333333335" x2="356.0833333333335" y1="182.77325300000004" y2="182.273253"/>
+  <line stroke="#888888" x1="358.1285927045405" x2="349.3761975681803" y1="305.0328335454411" y2="305.0328335454411"/>
+  <line stroke="#888888" x1="349.3761975681803" x2="349.3761975681803" y1="305.0328335454411" y2="287.5280432727206"/>
+  <line stroke="#888888" x1="349.3761975681803" x2="358.1285927045405" y1="287.5280432727206" y2="287.5280432727206"/>
+  <line stroke="#888888" x1="256.9879208023066" x2="274.2738435039604" y1="334.247756013529" y2="329.2109565220759"/>
+  <line stroke="#888888" x1="274.2738435039604" x2="274.41371737683426" y1="329.2109565220759" y2="329.6909932911753"/>
+  <line stroke="#888888" x1="274.41371737683426" x2="257.1277946751804" y1="329.6909932911753" y2="334.7277927826282"/>
+  <line stroke="#888888" x1="257.1277946751804" x2="256.9879208023066" y1="334.7277927826282" y2="334.247756013529"/>
+  <line stroke="#888888" x1="185.72615649603986" x2="203.0120791976937" y1="329.21095652207595" y2="334.247756013529"/>
+  <line stroke="#888888" x1="203.0120791976937" x2="202.87220532481987" y1="334.247756013529" y2="334.7277927826283"/>
+  <line stroke="#888888" x1="202.87220532481987" x2="185.58628262316603" y1="334.7277927826283" y2="329.6909932911753"/>
+  <line stroke="#888888" x1="185.58628262316603" x2="185.72615649603986" y1="329.6909932911753" y2="329.21095652207595"/>
+  <line stroke="#888888" x1="92.08333333333333" x2="103.9166666666667" y1="182.27325300000012" y2="182.27325300000012"/>
+  <line stroke="#888888" x1="103.9166666666667" x2="103.9166666666667" y1="182.27325300000012" y2="182.77325300000012"/>
+  <line stroke="#888888" x1="103.9166666666667" x2="92.08333333333333" y1="182.77325300000012" y2="182.77325300000012"/>
+  <line stroke="#888888" x1="92.08333333333333" x2="92.08333333333333" y1="182.77325300000012" y2="182.27325300000012"/>
+  <line stroke="#888888" x1="4.000000000000001" x2="4.000000000000001" y1="173.7732530000002" y2="182.2732530000002"/>
+  <line stroke="#888888" x1="4.000000000000001" x2="3.5000000000000004" y1="182.2732530000002" y2="182.2732530000002"/>
+  <line stroke="#888888" x1="3.5000000000000004" x2="3.5000000000000004" y1="182.2732530000002" y2="173.7732530000002"/>
+  <line stroke="#888888" x1="3.5000000000000004" x2="4.000000000000001" y1="173.7732530000002" y2="173.7732530000002"/>
+  <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="147.0232530000001" y2="151.0232530000001"/>
+  <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="151.0232530000001" y2="151.02325300000012"/>
+  <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="151.02325300000012" y2="147.02325300000012"/>
+  <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="147.02325300000012" y2="147.0232530000001"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="102.50000000000001" y1="159.02325300000007" y2="163.0232530000001"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="93.50000000000001" y1="163.0232530000001" y2="163.02325300000012"/>
+  <line stroke="#888888" x1="93.50000000000001" x2="93.50000000000001" y1="163.02325300000012" y2="159.0232530000001"/>
+  <line stroke="#888888" x1="93.50000000000001" x2="102.50000000000001" y1="159.0232530000001" y2="159.02325300000007"/>
+  <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="122.52325300000008" y2="145.52325300000007"/>
+  <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="145.52325300000007" y2="145.5232530000001"/>
+  <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="145.5232530000001" y2="122.52325300000008"/>
+  <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="122.52325300000008" y2="122.52325300000008"/>
+  <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="117.02325300000008" y2="121.02325300000008"/>
+  <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="121.02325300000008" y2="121.02325300000008"/>
+  <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="121.02325300000008" y2="117.02325300000008"/>
+  <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="117.02325300000008" y2="117.02325300000008"/>
+  <line stroke="#888888" x1="103.6666666666667" x2="103.6666666666667" y1="94.52325300000007" y2="99.52325300000007"/>
+  <line stroke="#888888" x1="103.6666666666667" x2="92.33333333333331" y1="99.52325300000007" y2="99.52325300000008"/>
+  <line stroke="#888888" x1="92.33333333333331" x2="92.33333333333331" y1="99.52325300000008" y2="94.52325300000008"/>
+  <line stroke="#888888" x1="101.87140729545946" x2="110.6238024318197" y1="51.013672454558964" y2="51.013672454558964"/>
+  <line stroke="#888888" x1="110.6238024318197" x2="110.62380243181975" y1="51.013672454558964" y2="68.5184627272795"/>
+  <line stroke="#888888" x1="110.62380243181975" x2="101.87140729545952" y1="68.5184627272795" y2="68.5184627272795"/>
+  <line stroke="#888888" x1="203.01207919769342" x2="185.72615649603964" y1="21.798749986470966" y2="26.835549477924022"/>
+  <line stroke="#888888" x1="185.72615649603964" x2="185.5862826231658" y1="26.835549477924022" y2="26.355512708824737"/>
+  <line stroke="#888888" x1="185.5862826231658" x2="202.8722053248196" y1="26.355512708824737" y2="21.318713217371684"/>
+  <line stroke="#888888" x1="202.8722053248196" x2="203.01207919769342" y1="21.318713217371684" y2="21.798749986470966"/>
+  <line stroke="#888888" x1="274.27384350396005" x2="256.9879208023063" y1="26.835549477923852" y2="21.798749986470856"/>
+  <line stroke="#888888" x1="256.9879208023063" x2="257.12779467518016" y1="21.798749986470856" y2="21.31871321737157"/>
+  <line stroke="#888888" x1="257.12779467518016" x2="274.4137173768339" y1="21.31871321737157" y2="26.355512708824563"/>
+  <line stroke="#888888" x1="274.4137173768339" x2="274.27384350396005" y1="26.355512708824563" y2="26.835549477923852"/>
+  <line stroke="#888888" x1="358.1285927045404" x2="349.3761975681801" y1="68.5184627272791" y2="68.51846272727911"/>
+  <line stroke="#888888" x1="349.3761975681801" x2="349.3761975681801" y1="68.51846272727911" y2="51.013672454558595"/>
+  <line stroke="#888888" x1="349.3761975681801" x2="358.1285927045403" y1="51.013672454558595" y2="51.01367245455858"/>
+  <line stroke="#888888" x1="101.87140729545968" x2="110.62380243181993" y1="287.5280432727207" y2="287.5280432727207"/>
+  <line stroke="#888888" x1="110.62380243181993" x2="110.62380243181998" y1="287.5280432727207" y2="305.03283354544124"/>
+  <line stroke="#888888" x1="110.62380243181998" x2="101.87140729545975" y1="305.03283354544124" y2="305.03283354544124"/>
+  <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="147.02325300000004" y2="151.02325300000004"/>
+  <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="151.02325300000004" y2="151.02325300000004"/>
+  <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="151.02325300000004" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="147.02325300000004" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="366.50000000000017" x2="366.50000000000017" y1="159.023253" y2="163.02325300000004"/>
+  <line stroke="#888888" x1="366.50000000000017" x2="357.50000000000017" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#888888" x1="357.50000000000017" x2="357.50000000000017" y1="163.02325300000004" y2="159.023253"/>
+  <line stroke="#888888" x1="357.50000000000017" x2="366.50000000000017" y1="159.023253" y2="159.023253"/>
+  <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="122.52325300000003" y2="145.523253"/>
+  <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="145.523253" y2="145.523253"/>
+  <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="145.523253" y2="122.52325300000003"/>
+  <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="122.52325300000003" y2="122.52325300000003"/>
+  <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="117.02325300000003" y2="121.02325300000003"/>
+  <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="121.02325300000003" y2="121.02325300000003"/>
+  <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="121.02325300000003" y2="117.02325300000003"/>
+  <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="117.02325300000003" y2="117.02325300000003"/>
+  <line stroke="#888888" x1="367.6666666666668" x2="367.6666666666668" y1="94.52325300000001" y2="99.52325300000003"/>
+  <line stroke="#888888" x1="367.6666666666668" x2="356.3333333333335" y1="99.52325300000003" y2="99.52325300000003"/>
+  <line stroke="#888888" x1="356.3333333333335" x2="356.3333333333335" y1="99.52325300000003" y2="94.52325300000001"/>
+</svg>
diff --git a/rocolib/builders/output/BoatWithServoMount/graph-model.png b/rocolib/builders/output/BoatWithServoMount/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..caf419d9794ca09a7f0dd5bbc2dc59e1c3355f19
Binary files /dev/null and b/rocolib/builders/output/BoatWithServoMount/graph-model.png differ
diff --git a/rocolib/builders/output/BoatWithServoMount/graph-model.stl b/rocolib/builders/output/BoatWithServoMount/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..95246624b4a162b1d8bf188d3b8d463dee0d899a
--- /dev/null
+++ b/rocolib/builders/output/BoatWithServoMount/graph-model.stl
@@ -0,0 +1,786 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 0.0000
+vertex -0.0180 -0.0120 0.0000
+vertex 0.0180 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0120 0.0000
+vertex 0.0180 0.0120 0.0000
+vertex -0.0180 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 0.0900
+vertex -0.0180 0.0120 0.0900
+vertex 0.0180 0.0120 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0120 0.0900
+vertex 0.0180 -0.0120 0.0900
+vertex -0.0180 -0.0120 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0920 -0.0000
+vertex 0.0180 0.0920 0.0000
+vertex 0.0180 0.0920 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0920 0.0900
+vertex 0.0180 -0.0920 0.0900
+vertex 0.0180 -0.0920 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0920 0.0000
+vertex -0.0520 0.0920 0.0000
+vertex 0.0180 0.0920 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0920 -0.0000
+vertex 0.0180 -0.0920 -0.0000
+vertex -0.0520 -0.0920 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0920 0.0900
+vertex 0.0180 0.0920 0.0900
+vertex -0.0520 0.0920 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0920 0.0900
+vertex -0.0520 -0.0920 0.0900
+vertex 0.0180 -0.0920 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0920 -0.0000
+vertex -0.0520 0.0920 -0.0000
+vertex -0.0520 0.1310 0.0351
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.1310 0.0351
+vertex -0.0520 0.1420 0.0450
+vertex 0.0180 0.0920 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0920 0.0450
+vertex 0.0180 0.0920 -0.0000
+vertex -0.0520 0.1420 0.0450
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0920 0.0450
+vertex -0.0520 0.1420 0.0450
+vertex 0.0180 0.0920 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.1310 0.0549
+vertex -0.0520 0.0920 0.0900
+vertex 0.0180 0.0920 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0920 0.0900
+vertex -0.0520 0.1420 0.0450
+vertex -0.0520 0.1310 0.0549
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0920 -0.0000
+vertex 0.0180 0.0920 -0.0000
+vertex -0.0520 0.1310 0.0351
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0920 0.0000
+vertex -0.0520 0.1310 0.0351
+vertex 0.0180 0.0920 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0920 0.0900
+vertex -0.0520 0.1310 0.0549
+vertex 0.0180 0.0920 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0920 0.0900
+vertex 0.0180 0.0920 0.0900
+vertex -0.0520 0.1310 0.0549
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0920 0.0900
+vertex -0.0520 -0.0920 0.0900
+vertex -0.0520 -0.1310 0.0549
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.1310 0.0549
+vertex -0.0520 -0.1420 0.0450
+vertex 0.0180 -0.0920 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0920 0.0450
+vertex 0.0180 -0.0920 0.0900
+vertex -0.0520 -0.1420 0.0450
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0920 0.0450
+vertex -0.0520 -0.1420 0.0450
+vertex 0.0180 -0.0920 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.1310 0.0351
+vertex -0.0520 -0.0920 -0.0000
+vertex 0.0180 -0.0920 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0920 -0.0000
+vertex -0.0520 -0.1420 0.0450
+vertex -0.0520 -0.1310 0.0351
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0920 0.0900
+vertex 0.0180 -0.0920 0.0900
+vertex -0.0520 -0.1310 0.0549
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0920 0.0900
+vertex -0.0520 -0.1310 0.0549
+vertex 0.0180 -0.0920 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0920 -0.0000
+vertex -0.0520 -0.1310 0.0351
+vertex 0.0180 -0.0920 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0920 -0.0000
+vertex 0.0180 -0.0920 -0.0000
+vertex -0.0520 -0.1310 0.0351
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0120 0.0450
+vertex 0.0180 0.0120 0.0450
+vertex 0.0180 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0120 0.0000
+vertex 0.0180 -0.0120 0.0000
+vertex 0.0180 -0.0120 0.0450
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0120 0.0450
+vertex 0.0180 -0.0120 0.0450
+vertex 0.0180 -0.0120 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0120 0.0900
+vertex 0.0180 0.0120 0.0900
+vertex 0.0180 0.0120 0.0450
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 -0.0000
+vertex -0.0290 0.0120 -0.0150
+vertex -0.0410 0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 0.0120 -0.0150
+vertex -0.0180 0.0120 -0.0000
+vertex -0.0180 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 -0.0000
+vertex -0.0410 0.0120 -0.0150
+vertex -0.0520 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 0.0120 -0.0150
+vertex -0.0520 0.0120 -0.0000
+vertex -0.0180 0.0120 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 0.0120 -0.0190
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0520 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0290 0.0120 -0.0190
+vertex -0.0290 0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 0.0120 -0.0190
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0410 0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0410 0.0120 -0.0190
+vertex -0.0290 0.0120 -0.0190
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0290 0.0115 -0.0200
+vertex -0.0410 0.0115 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 0.0115 -0.0200
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0180 -0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0410 0.0115 -0.0200
+vertex -0.0410 -0.0115 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 0.0115 -0.0200
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0180 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 -0.0115 -0.0200
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0520 -0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0290 -0.0115 -0.0200
+vertex -0.0290 0.0115 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 -0.0115 -0.0200
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0520 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0410 -0.0115 -0.0200
+vertex -0.0290 -0.0115 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0290 -0.0120 -0.0150
+vertex -0.0290 -0.0120 -0.0190
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 -0.0120 -0.0150
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0180 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0290 -0.0120 -0.0190
+vertex -0.0410 -0.0120 -0.0190
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0410 -0.0120 -0.0190
+vertex -0.0410 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 -0.0120 -0.0190
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0180 -0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0410 -0.0120 -0.0150
+vertex -0.0520 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 -0.0120 -0.0150
+vertex -0.0305 -0.0120 -0.0070
+vertex -0.0410 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0120 -0.0070
+vertex -0.0180 -0.0120 0.0000
+vertex -0.0305 -0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 0.0000
+vertex -0.0305 -0.0120 -0.0070
+vertex -0.0290 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0120 -0.0030
+vertex -0.0180 -0.0120 0.0000
+vertex -0.0520 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0395 -0.0120 -0.0070
+vertex -0.0395 -0.0120 -0.0030
+vertex -0.0520 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 0.0000
+vertex -0.0395 -0.0120 -0.0030
+vertex -0.0305 -0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0395 -0.0120 -0.0070
+vertex -0.0520 -0.0120 0.0000
+vertex -0.0410 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0120 -0.0070
+vertex -0.0395 -0.0120 -0.0070
+vertex -0.0410 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 0.0000
+vertex -0.0180 -0.0120 0.0000
+vertex -0.0180 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 0.0000
+vertex -0.0520 0.0120 0.0000
+vertex -0.0520 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 0.0900
+vertex -0.0410 0.0120 0.1050
+vertex -0.0290 0.0120 0.1050
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 0.0120 0.1050
+vertex -0.0520 0.0120 0.0900
+vertex -0.0520 0.0120 0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 0.0900
+vertex -0.0290 0.0120 0.1050
+vertex -0.0180 0.0120 0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 0.0120 0.1050
+vertex -0.0180 0.0120 0.0900
+vertex -0.0520 0.0120 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 0.0120 0.1090
+vertex -0.0520 0.0120 0.1100
+vertex -0.0180 0.0120 0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 0.1100
+vertex -0.0410 0.0120 0.1090
+vertex -0.0410 0.0120 0.1050
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 0.0120 0.1090
+vertex -0.0180 0.0120 0.1100
+vertex -0.0290 0.0120 0.1050
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 0.1100
+vertex -0.0290 0.0120 0.1090
+vertex -0.0410 0.0120 0.1090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 0.1100
+vertex -0.0410 0.0115 0.1100
+vertex -0.0290 0.0115 0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 0.0115 0.1100
+vertex -0.0520 0.0120 0.1100
+vertex -0.0520 -0.0120 0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 0.1100
+vertex -0.0290 0.0115 0.1100
+vertex -0.0290 -0.0115 0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 0.0115 0.1100
+vertex -0.0180 0.0120 0.1100
+vertex -0.0520 0.0120 0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 -0.0115 0.1100
+vertex -0.0520 -0.0120 0.1100
+vertex -0.0180 -0.0120 0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 0.1100
+vertex -0.0410 -0.0115 0.1100
+vertex -0.0410 0.0115 0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 -0.0115 0.1100
+vertex -0.0180 -0.0120 0.1100
+vertex -0.0180 0.0120 0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 0.1100
+vertex -0.0290 -0.0115 0.1100
+vertex -0.0410 -0.0115 0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 0.1100
+vertex -0.0410 -0.0120 0.1050
+vertex -0.0410 -0.0120 0.1090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 -0.0120 0.1050
+vertex -0.0520 -0.0120 0.1100
+vertex -0.0520 -0.0120 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 0.1100
+vertex -0.0410 -0.0120 0.1090
+vertex -0.0290 -0.0120 0.1090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 0.1100
+vertex -0.0290 -0.0120 0.1090
+vertex -0.0290 -0.0120 0.1050
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 -0.0120 0.1090
+vertex -0.0180 -0.0120 0.1100
+vertex -0.0520 -0.0120 0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 0.1100
+vertex -0.0290 -0.0120 0.1050
+vertex -0.0180 -0.0120 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 -0.0120 0.1050
+vertex -0.0395 -0.0120 0.0970
+vertex -0.0290 -0.0120 0.1050
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0395 -0.0120 0.0970
+vertex -0.0520 -0.0120 0.0900
+vertex -0.0395 -0.0120 0.0930
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 0.0900
+vertex -0.0395 -0.0120 0.0970
+vertex -0.0410 -0.0120 0.1050
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0395 -0.0120 0.0930
+vertex -0.0520 -0.0120 0.0900
+vertex -0.0180 -0.0120 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0120 0.0970
+vertex -0.0305 -0.0120 0.0930
+vertex -0.0180 -0.0120 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 0.0900
+vertex -0.0305 -0.0120 0.0930
+vertex -0.0395 -0.0120 0.0930
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0120 0.0970
+vertex -0.0180 -0.0120 0.0900
+vertex -0.0290 -0.0120 0.1050
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0395 -0.0120 0.0970
+vertex -0.0305 -0.0120 0.0970
+vertex -0.0290 -0.0120 0.1050
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 0.0900
+vertex -0.0520 -0.0120 0.0900
+vertex -0.0520 0.0120 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 0.0900
+vertex -0.0180 0.0120 0.0900
+vertex -0.0180 -0.0120 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0346 0.1323 0.0338
+vertex -0.0520 0.1310 0.0351
+vertex -0.0520 0.0920 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0920 0.0000
+vertex -0.0346 0.0932 -0.0014
+vertex -0.0346 0.1323 0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0346 0.0932 0.0914
+vertex -0.0520 0.0920 0.0900
+vertex -0.0520 0.1310 0.0549
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.1310 0.0549
+vertex -0.0346 0.1323 0.0562
+vertex -0.0346 0.0932 0.0914
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0346 -0.1323 0.0562
+vertex -0.0520 -0.1310 0.0549
+vertex -0.0520 -0.0920 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0920 0.0900
+vertex -0.0346 -0.0932 0.0914
+vertex -0.0346 -0.1323 0.0562
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0346 -0.0932 -0.0014
+vertex -0.0520 -0.0920 -0.0000
+vertex -0.0520 -0.1310 0.0351
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.1310 0.0351
+vertex -0.0346 -0.1323 0.0338
+vertex -0.0346 -0.0932 -0.0014
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0120 0.0500
+vertex 0.0180 0.0120 0.0450
+vertex 0.0180 -0.0120 0.0450
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0120 0.0450
+vertex 0.0180 -0.0120 0.0500
+vertex 0.0180 0.0120 0.0500
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0020 -0.0000
+vertex -0.0180 0.0120 -0.0000
+vertex -0.0520 0.0120 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 -0.0000
+vertex -0.0520 0.0020 -0.0000
+vertex -0.0180 0.0020 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0020 0.0900
+vertex -0.0520 0.0120 0.0900
+vertex -0.0180 0.0120 0.0900
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 0.0900
+vertex -0.0180 0.0020 0.0900
+vertex -0.0520 0.0020 0.0900
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/builders/output/BoatWithServoMount/graph-silhouette.dxf b/rocolib/builders/output/BoatWithServoMount/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..df822849dae8d2997dde58a9e288066ebf3a8b15
--- /dev/null
+++ b/rocolib/builders/output/BoatWithServoMount/graph-silhouette.dxf
@@ -0,0 +1,4348 @@
+  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
+415.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+415.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+415.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.00000000000017
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+415.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.00000000000017
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+460.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+460.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+415.00000000000017
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+465.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+460.00000000000017
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+465.00000000000017
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+465.00000000000017
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+460.00000000000017
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+465.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+190.02325300000004
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+345.0000000000001
+ 20
+166.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+379.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+166.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+190.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+275.00000000000017
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+275.00000000000017
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+275.00000000000017
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+345.0000000000001
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+322.53762381816165
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+275.00000000000017
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+322.53762381816165
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+362.5047902727207
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+362.5047902727207
+ 20
+322.53762381816165
+ 30
+0.0
+ 11
+362.5047902727207
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+322.53762381816165
+ 30
+0.0
+ 11
+362.5047902727207
+ 21
+322.53762381816165
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+275.00000000000017
+ 20
+270.02325300000007
+ 30
+0.0
+ 11
+294.58234220233663
+ 21
+337.2284006738992
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+294.58234220233663
+ 20
+337.2284006738992
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+322.53762381816165
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+244.16468440467298
+ 20
+351.9191775296368
+ 30
+0.0
+ 11
+294.58234220233663
+ 21
+337.2284006738992
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.00000000000014
+ 20
+356.04650567042637
+ 30
+0.0
+ 11
+244.16468440467298
+ 21
+351.9191775296368
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+230.00000000000014
+ 20
+356.04650567042637
+ 30
+0.0
+ 11
+275.00000000000017
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+230.0000000000001
+ 20
+270.0232530000001
+ 30
+0.0
+ 11
+275.00000000000017
+ 21
+270.02325300000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+185.0000000000001
+ 20
+270.0232530000001
+ 30
+0.0
+ 11
+230.0000000000001
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+230.00000000000014
+ 20
+356.04650567042637
+ 30
+0.0
+ 11
+185.00000000000009
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+165.4176577976637
+ 20
+337.2284006738993
+ 30
+0.0
+ 11
+185.00000000000009
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.83531559532727
+ 20
+351.91917752963684
+ 30
+0.0
+ 11
+230.00000000000014
+ 21
+356.04650567042637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.4176577976637
+ 20
+337.2284006738993
+ 30
+0.0
+ 11
+215.83531559532727
+ 21
+351.91917752963684
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000013
+ 20
+322.53762381816176
+ 30
+0.0
+ 11
+165.41765779766374
+ 21
+337.2284006738993
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+115.00000000000013
+ 20
+322.53762381816176
+ 30
+0.0
+ 11
+185.00000000000009
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+115.00000000000007
+ 20
+270.0232530000002
+ 30
+0.0
+ 11
+185.0000000000001
+ 21
+270.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+115.00000000000013
+ 20
+322.53762381816176
+ 30
+0.0
+ 11
+115.00000000000007
+ 21
+270.0232530000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+185.0000000000001
+ 20
+270.0232530000001
+ 30
+0.0
+ 11
+184.99999999999997
+ 21
+86.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+190.0232530000001
+ 30
+0.0
+ 11
+115.00000000000007
+ 21
+270.0232530000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+115.00000000000001
+ 20
+190.0232530000001
+ 30
+0.0
+ 11
+114.99999999999996
+ 21
+166.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.9999999999999
+ 20
+86.02325300000004
+ 30
+0.0
+ 11
+114.99999999999996
+ 21
+166.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.9999999999999
+ 20
+86.02325300000004
+ 30
+0.0
+ 11
+114.9999999999999
+ 21
+86.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000007
+ 20
+270.0232530000002
+ 30
+0.0
+ 11
+115.00000000000007
+ 21
+270.0232530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.00000000000001
+ 20
+190.02325300000015
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+190.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+115.00000000000001
+ 20
+166.02325300000007
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+166.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.0
+ 20
+190.02325300000018
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+190.02325300000015
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+45.0
+ 20
+190.02325300000018
+ 30
+0.0
+ 11
+45.0
+ 21
+166.02325300000018
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.00000000000001
+ 20
+166.0232530000001
+ 30
+0.0
+ 11
+45.0
+ 21
+166.02325300000018
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.0
+ 20
+166.02325300000018
+ 30
+0.0
+ 11
+0.0
+ 21
+166.0232530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+190.0232530000002
+ 30
+0.0
+ 11
+45.0
+ 21
+190.02325300000018
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+166.0232530000002
+ 30
+0.0
+ 11
+0.0
+ 21
+190.0232530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+166.02325300000007
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+146.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.00000000000001
+ 20
+146.02325300000012
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+166.0232530000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+115.00000000000001
+ 20
+146.0232530000001
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+146.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+146.0232530000001
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+122.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.00000000000001
+ 20
+122.0232530000001
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+146.02325300000012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+115.00000000000001
+ 20
+122.02325300000007
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+122.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+122.02325300000007
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+102.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.00000000000001
+ 20
+102.02325300000008
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+122.02325300000011
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+81.00000000000001
+ 20
+102.02325300000008
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+102.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.00000000000001
+ 20
+92.02325300000007
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+102.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+92.02325300000004
+ 30
+0.0
+ 11
+81.00000000000001
+ 21
+92.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+102.02325300000005
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+92.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+184.9999999999999
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+114.9999999999999
+ 21
+86.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+114.9999999999999
+ 20
+86.02325300000004
+ 30
+0.0
+ 11
+114.99999999999984
+ 21
+33.50888218183843
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+184.9999999999999
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+114.99999999999984
+ 21
+33.50888218183843
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.49520972727937
+ 20
+86.02325300000005
+ 30
+0.0
+ 11
+114.9999999999999
+ 21
+86.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.49520972727932
+ 20
+33.508882181838466
+ 30
+0.0
+ 11
+97.49520972727937
+ 21
+86.02325300000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.99999999999984
+ 20
+33.50888218183843
+ 30
+0.0
+ 11
+97.49520972727932
+ 21
+33.508882181838466
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+184.99999999999997
+ 20
+86.02325299999998
+ 30
+0.0
+ 11
+165.41765779766345
+ 21
+18.81810532610081
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.41765779766345
+ 20
+18.81810532610081
+ 30
+0.0
+ 11
+114.99999999999984
+ 21
+33.50888218183843
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.83531559532696
+ 20
+4.127328470363154
+ 30
+0.0
+ 11
+165.41765779766342
+ 21
+18.81810532610078
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+229.99999999999986
+ 20
+3.2957356665974663e-07
+ 30
+0.0
+ 11
+215.83531559532696
+ 21
+4.127328470363154
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+229.99999999999986
+ 20
+3.2957356665974663e-07
+ 30
+0.0
+ 11
+184.99999999999994
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+229.99999999999994
+ 20
+86.02325299999991
+ 30
+0.0
+ 11
+184.99999999999994
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+275.0
+ 20
+86.02325299999983
+ 30
+0.0
+ 11
+229.99999999999994
+ 21
+86.02325299999988
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+229.99999999999983
+ 20
+3.2957356665974663e-07
+ 30
+0.0
+ 11
+275.0
+ 21
+86.02325299999983
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+294.5823422023363
+ 20
+18.818105326100554
+ 30
+0.0
+ 11
+275.0
+ 21
+86.02325299999981
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+244.16468440467267
+ 20
+4.127328470363068
+ 30
+0.0
+ 11
+229.99999999999983
+ 21
+3.2957353823803714e-07
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+294.5823422023363
+ 20
+18.818105326100554
+ 30
+0.0
+ 11
+244.16468440467267
+ 21
+4.127328470363068
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.9999999999999
+ 20
+33.50888218183806
+ 30
+0.0
+ 11
+294.5823422023363
+ 21
+18.81810532610058
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+344.9999999999999
+ 20
+33.50888218183806
+ 30
+0.0
+ 11
+275.0
+ 21
+86.02325299999983
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+345.0
+ 20
+86.02325299999968
+ 30
+0.0
+ 11
+274.99999999999994
+ 21
+86.02325299999983
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+344.9999999999999
+ 20
+33.50888218183806
+ 30
+0.0
+ 11
+345.0
+ 21
+86.02325299999968
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+362.5047902727204
+ 20
+33.50888218183804
+ 30
+0.0
+ 11
+344.9999999999999
+ 21
+33.50888218183806
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+362.5047902727205
+ 20
+86.02325299999966
+ 30
+0.0
+ 11
+362.5047902727204
+ 21
+33.50888218183804
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0
+ 20
+86.02325299999968
+ 30
+0.0
+ 11
+362.5047902727205
+ 21
+86.02325299999966
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.4952097272796
+ 20
+322.53762381816176
+ 30
+0.0
+ 11
+115.00000000000013
+ 21
+322.53762381816176
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.49520972727954
+ 20
+270.0232530000002
+ 30
+0.0
+ 11
+97.4952097272796
+ 21
+322.53762381816176
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000007
+ 20
+270.0232530000002
+ 30
+0.0
+ 11
+97.49520972727954
+ 21
+270.0232530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.00000000000017
+ 20
+166.023253
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+146.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+146.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+166.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+379.00000000000017
+ 20
+146.023253
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+146.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.00000000000017
+ 20
+146.023253
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+122.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+122.02325300000003
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+146.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+379.00000000000017
+ 20
+122.02325300000003
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+122.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.00000000000017
+ 20
+122.02325300000003
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+102.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+102.02325300000003
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+122.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+345.0000000000001
+ 20
+102.02325300000003
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+102.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0000000000001
+ 20
+92.02325300000001
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+102.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.00000000000017
+ 20
+92.02325300000001
+ 30
+0.0
+ 11
+345.0000000000001
+ 21
+92.02325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.00000000000017
+ 20
+102.02325300000003
+ 30
+0.0
+ 11
+379.00000000000017
+ 21
+92.02325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+463.7500000000001
+ 20
+182.023253
+ 30
+0.0
+ 11
+463.7500000000001
+ 21
+184.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+463.7500000000001
+ 20
+184.523253
+ 30
+0.0
+ 11
+461.25000000000017
+ 21
+182.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+461.25000000000017
+ 20
+182.023253
+ 30
+0.0
+ 11
+461.25000000000017
+ 21
+174.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+461.25000000000017
+ 20
+174.02325300000004
+ 30
+0.0
+ 11
+463.7500000000001
+ 21
+171.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+463.7500000000001
+ 20
+171.52325300000004
+ 30
+0.0
+ 11
+463.7500000000001
+ 21
+174.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.0833333333335
+ 20
+182.273253
+ 30
+0.0
+ 11
+367.9166666666668
+ 21
+182.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.9166666666668
+ 20
+182.273253
+ 30
+0.0
+ 11
+367.9166666666668
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.9166666666668
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+356.0833333333335
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.0833333333335
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+356.0833333333335
+ 21
+182.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+358.1285927045405
+ 20
+305.0328335454411
+ 30
+0.0
+ 11
+349.3761975681803
+ 21
+305.0328335454411
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.3761975681803
+ 20
+305.0328335454411
+ 30
+0.0
+ 11
+349.3761975681803
+ 21
+287.5280432727206
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.3761975681803
+ 20
+287.5280432727206
+ 30
+0.0
+ 11
+358.1285927045405
+ 21
+287.5280432727206
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+256.9879208023066
+ 20
+334.247756013529
+ 30
+0.0
+ 11
+274.2738435039604
+ 21
+329.2109565220759
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+274.2738435039604
+ 20
+329.2109565220759
+ 30
+0.0
+ 11
+274.41371737683426
+ 21
+329.6909932911753
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+274.41371737683426
+ 20
+329.6909932911753
+ 30
+0.0
+ 11
+257.1277946751804
+ 21
+334.7277927826282
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+257.1277946751804
+ 20
+334.7277927826282
+ 30
+0.0
+ 11
+256.9879208023066
+ 21
+334.247756013529
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+185.72615649603986
+ 20
+329.21095652207595
+ 30
+0.0
+ 11
+203.0120791976937
+ 21
+334.247756013529
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.0120791976937
+ 20
+334.247756013529
+ 30
+0.0
+ 11
+202.87220532481987
+ 21
+334.7277927826283
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.87220532481987
+ 20
+334.7277927826283
+ 30
+0.0
+ 11
+185.58628262316603
+ 21
+329.6909932911753
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+185.58628262316603
+ 20
+329.6909932911753
+ 30
+0.0
+ 11
+185.72615649603986
+ 21
+329.21095652207595
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.08333333333333
+ 20
+182.27325300000012
+ 30
+0.0
+ 11
+103.9166666666667
+ 21
+182.27325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.9166666666667
+ 20
+182.27325300000012
+ 30
+0.0
+ 11
+103.9166666666667
+ 21
+182.77325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.9166666666667
+ 20
+182.77325300000012
+ 30
+0.0
+ 11
+92.08333333333333
+ 21
+182.77325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.08333333333333
+ 20
+182.77325300000012
+ 30
+0.0
+ 11
+92.08333333333333
+ 21
+182.27325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.000000000000001
+ 20
+173.7732530000002
+ 30
+0.0
+ 11
+4.000000000000001
+ 21
+182.2732530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.000000000000001
+ 20
+182.2732530000002
+ 30
+0.0
+ 11
+3.5000000000000004
+ 21
+182.2732530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+3.5000000000000004
+ 20
+182.2732530000002
+ 30
+0.0
+ 11
+3.5000000000000004
+ 21
+173.7732530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+3.5000000000000004
+ 20
+173.7732530000002
+ 30
+0.0
+ 11
+4.000000000000001
+ 21
+173.7732530000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.00000000000001
+ 20
+147.0232530000001
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+151.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.00000000000001
+ 20
+151.0232530000001
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+151.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.00000000000001
+ 20
+151.02325300000012
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+147.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.00000000000001
+ 20
+147.02325300000012
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+147.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.50000000000001
+ 20
+159.02325300000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+163.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.50000000000001
+ 20
+163.0232530000001
+ 30
+0.0
+ 11
+93.50000000000001
+ 21
+163.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.50000000000001
+ 20
+163.02325300000012
+ 30
+0.0
+ 11
+93.50000000000001
+ 21
+159.0232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.50000000000001
+ 20
+159.0232530000001
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+159.02325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.00000000000001
+ 20
+122.52325300000008
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+145.52325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.00000000000001
+ 20
+145.52325300000007
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+145.5232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.00000000000001
+ 20
+145.5232530000001
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+122.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.00000000000001
+ 20
+122.52325300000008
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+122.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.00000000000001
+ 20
+117.02325300000008
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+121.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.00000000000001
+ 20
+121.02325300000008
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+121.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.00000000000001
+ 20
+121.02325300000008
+ 30
+0.0
+ 11
+92.00000000000001
+ 21
+117.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.00000000000001
+ 20
+117.02325300000008
+ 30
+0.0
+ 11
+104.00000000000001
+ 21
+117.02325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.6666666666667
+ 20
+94.52325300000007
+ 30
+0.0
+ 11
+103.6666666666667
+ 21
+99.52325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.6666666666667
+ 20
+99.52325300000007
+ 30
+0.0
+ 11
+92.33333333333331
+ 21
+99.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.33333333333331
+ 20
+99.52325300000008
+ 30
+0.0
+ 11
+92.33333333333331
+ 21
+94.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.87140729545946
+ 20
+51.013672454558964
+ 30
+0.0
+ 11
+110.6238024318197
+ 21
+51.013672454558964
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.6238024318197
+ 20
+51.013672454558964
+ 30
+0.0
+ 11
+110.62380243181975
+ 21
+68.5184627272795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.62380243181975
+ 20
+68.5184627272795
+ 30
+0.0
+ 11
+101.87140729545952
+ 21
+68.5184627272795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.01207919769342
+ 20
+21.798749986470966
+ 30
+0.0
+ 11
+185.72615649603964
+ 21
+26.835549477924022
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+185.72615649603964
+ 20
+26.835549477924022
+ 30
+0.0
+ 11
+185.5862826231658
+ 21
+26.355512708824737
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+185.5862826231658
+ 20
+26.355512708824737
+ 30
+0.0
+ 11
+202.8722053248196
+ 21
+21.318713217371684
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.8722053248196
+ 20
+21.318713217371684
+ 30
+0.0
+ 11
+203.01207919769342
+ 21
+21.798749986470966
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+274.27384350396005
+ 20
+26.835549477923852
+ 30
+0.0
+ 11
+256.9879208023063
+ 21
+21.798749986470856
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+256.9879208023063
+ 20
+21.798749986470856
+ 30
+0.0
+ 11
+257.12779467518016
+ 21
+21.31871321737157
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+257.12779467518016
+ 20
+21.31871321737157
+ 30
+0.0
+ 11
+274.4137173768339
+ 21
+26.355512708824563
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+274.4137173768339
+ 20
+26.355512708824563
+ 30
+0.0
+ 11
+274.27384350396005
+ 21
+26.835549477923852
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+358.1285927045404
+ 20
+68.5184627272791
+ 30
+0.0
+ 11
+349.3761975681801
+ 21
+68.51846272727911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.3761975681801
+ 20
+68.51846272727911
+ 30
+0.0
+ 11
+349.3761975681801
+ 21
+51.013672454558595
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+349.3761975681801
+ 20
+51.013672454558595
+ 30
+0.0
+ 11
+358.1285927045403
+ 21
+51.01367245455858
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.87140729545968
+ 20
+287.5280432727207
+ 30
+0.0
+ 11
+110.62380243181993
+ 21
+287.5280432727207
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.62380243181993
+ 20
+287.5280432727207
+ 30
+0.0
+ 11
+110.62380243181998
+ 21
+305.03283354544124
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.62380243181998
+ 20
+305.03283354544124
+ 30
+0.0
+ 11
+101.87140729545975
+ 21
+305.03283354544124
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.0000000000001
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+151.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.0000000000001
+ 20
+151.02325300000004
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+151.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.00000000000017
+ 20
+151.02325300000004
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.00000000000017
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.50000000000017
+ 20
+159.023253
+ 30
+0.0
+ 11
+366.50000000000017
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.50000000000017
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+357.50000000000017
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+357.50000000000017
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+357.50000000000017
+ 21
+159.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+357.50000000000017
+ 20
+159.023253
+ 30
+0.0
+ 11
+366.50000000000017
+ 21
+159.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.0000000000001
+ 20
+122.52325300000003
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+145.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.0000000000001
+ 20
+145.523253
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+145.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.00000000000017
+ 20
+145.523253
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+122.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.00000000000017
+ 20
+122.52325300000003
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+122.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.0000000000001
+ 20
+117.02325300000003
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+121.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.0000000000001
+ 20
+121.02325300000003
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+121.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.00000000000017
+ 20
+121.02325300000003
+ 30
+0.0
+ 11
+356.00000000000017
+ 21
+117.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.00000000000017
+ 20
+117.02325300000003
+ 30
+0.0
+ 11
+368.0000000000001
+ 21
+117.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.6666666666668
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+367.6666666666668
+ 21
+99.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+367.6666666666668
+ 20
+99.52325300000003
+ 30
+0.0
+ 11
+356.3333333333335
+ 21
+99.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+356.3333333333335
+ 20
+99.52325300000003
+ 30
+0.0
+ 11
+356.3333333333335
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithServoMount/tree.png b/rocolib/builders/output/BoatWithServoMount/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..b927d9b00a6b946c0fc6a6ec523464af0a0c55b8
Binary files /dev/null and b/rocolib/builders/output/BoatWithServoMount/tree.png differ
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-anim.svg b/rocolib/builders/output/BoatWithStackBattery/graph-anim.svg
index f038e10b54e084ced24eff2b1419d2abd3658ba3..dbf29776c164def94439b644f5d4378d2310f878 100644
--- a/rocolib/builders/output/BoatWithStackBattery/graph-anim.svg
+++ b/rocolib/builders/output/BoatWithStackBattery/graph-anim.svg
@@ -1,539 +1,539 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="302.046506mm" version="1.1" viewBox="0.000000 0.000000 664.090590 302.046506" width="664.090590mm">
+<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="654.046506mm" version="1.1" viewBox="0.000000 0.000000 664.090590 654.046506" width="664.090590mm">
   <defs/>
-  <line stroke="#000000" x1="160.30855606972293" x2="98.65427803486146" y1="120.52325300000003" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="160.30855606972293" y1="181.52325300000004" y2="181.52325300000004"/>
-  <line opacity="0.25" stroke="#ff0000" x1="98.65427803486146" x2="98.65427803486146" y1="181.52325300000004" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="170.30855606972293" x2="160.30855606972293" y1="120.52325300000003" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="170.30855606972293" x2="170.30855606972293" y1="181.52325300000004" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="160.30855606972293" x2="170.30855606972293" y1="181.52325300000004" y2="181.52325300000004"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="98.65427803486146" y1="181.52325300000004" y2="181.52325300000004"/>
-  <line opacity="0.25" stroke="#ff0000" x1="71.65427803486145" x2="71.65427803486145" y1="120.52325300000003" y2="181.52325300000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="120.52325300000003" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="10.000000000000002" x2="71.65427803486145" y1="181.52325300000004" y2="181.52325300000004"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="10.000000000000002" y1="120.52325300000003" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="181.52325300000004" y2="181.52325300000004"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="120.52325300000003" y2="181.52325300000004"/>
-  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="120.52325300000003" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="120.52325300000003" y2="103.52325300000001"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="103.52325300000001" y2="120.52325300000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="103.52325300000001" y2="103.52325300000001"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="103.52325300000001" y2="42.52325300000002"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="42.52325300000002" y2="103.52325300000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="42.52325300000002" y2="42.52325300000002"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="42.52325300000002" y2="25.523253000000015"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="25.523253000000015" y2="42.52325300000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="71.65427803486145" x2="98.65427803486146" y1="25.523253000000015" y2="25.523253000000015"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="15.523253000000013" y2="25.523253000000015"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="71.65427803486145" y1="15.523253000000013" y2="15.523253000000013"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="25.523253000000015" y2="15.523253000000013"/>
-  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="170.43234390909095" y2="170.43234390909095"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="170.43234390909095" y2="159.34143481818182"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="159.34143481818182" y2="159.34143481818182"/>
-  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="142.7050711818182" y2="142.7050711818182"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="142.7050711818182" y2="131.61416209090913"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="131.61416209090913" y2="131.61416209090913"/>
-  <line stroke="#888888" x1="94.15427803486146" x2="94.15427803486146" y1="118.02325300000003" y2="124.02325300000003"/>
-  <line stroke="#888888" x1="94.15427803486146" x2="76.15427803486145" y1="124.02325300000003" y2="124.02325300000003"/>
-  <line stroke="#888888" x1="76.15427803486145" x2="76.15427803486145" y1="124.02325300000003" y2="118.02325300000003"/>
-  <line stroke="#888888" x1="76.15427803486145" x2="94.15427803486146" y1="118.02325300000003" y2="118.02325300000003"/>
-  <line stroke="#888888" x1="80.40427803486146" x2="89.90427803486145" y1="173.77325300000004" y2="173.77325300000004"/>
-  <line stroke="#888888" x1="89.90427803486145" x2="89.90427803486145" y1="173.77325300000004" y2="174.27325300000004"/>
-  <line stroke="#888888" x1="89.90427803486145" x2="80.40427803486146" y1="174.27325300000004" y2="174.27325300000004"/>
-  <line stroke="#888888" x1="80.40427803486146" x2="80.40427803486146" y1="174.27325300000004" y2="173.77325300000004"/>
-  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="131.61416209090913" y2="131.61416209090913"/>
-  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="131.61416209090913" y2="142.7050711818182"/>
-  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="142.7050711818182" y2="142.7050711818182"/>
-  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="159.34143481818185" y2="159.34143481818185"/>
-  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="159.34143481818185" y2="170.43234390909095"/>
-  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="170.43234390909095" y2="170.43234390909095"/>
-  <line stroke="#888888" x1="89.65427803486146" x2="89.65427803486146" y1="18.023253000000015" y2="23.02325300000001"/>
-  <line stroke="#888888" x1="89.65427803486146" x2="80.65427803486146" y1="23.02325300000001" y2="23.02325300000001"/>
-  <line stroke="#888888" x1="80.65427803486146" x2="80.65427803486146" y1="23.02325300000001" y2="18.023253000000015"/>
-  <line opacity="0.5" stroke="#0000ff" x1="436.5858000680936" x2="436.5858000680936" y1="86.02325300000003" y2="216.023253"/>
-  <line opacity="0.5" stroke="#0000ff" x1="346.5858000680936" x2="346.5858000680936" y1="86.02325300000003" y2="216.023253"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="391.5858000680936" x2="346.5858000680936" y1="86.02325300000003" y2="86.02325300000003"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="436.5858000680936" x2="391.5858000680936" y1="86.02325300000003" y2="86.02325300000003"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="391.5858000680936" x2="346.5858000680936" y1="3.2957373719000316e-07" y2="86.02325300000003"/>
-  <line stroke="#000000" x1="377.4211156634208" x2="327.0034578657572" y1="4.127328470363296" y2="18.818105326100866"/>
-  <line stroke="#000000" x1="391.5858000680936" x2="377.4211156634208" y1="3.295737656117126e-07" y2="4.127328470363296"/>
-  <line opacity="1.0" stroke="#0000ff" x1="346.5858000680936" x2="327.0034578657572" y1="86.02325300000005" y2="18.818105326100866"/>
-  <line opacity="1.0" stroke="#ff0000" x1="346.5858000680936" x2="276.5858000680936" y1="86.02325300000003" y2="33.50888218183837"/>
-  <line stroke="#000000" x1="327.0034578657572" x2="276.5858000680936" y1="18.818105326100834" y2="33.50888218183837"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="276.58580006809353" x2="276.5858000680936" y1="86.02325299999998" y2="33.508882181838395"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="346.5858000680936" x2="276.58580006809353" y1="86.02325300000003" y2="86.02325299999998"/>
-  <line stroke="#000000" x1="259.08100979537306" x2="276.58580006809353" y1="86.02325299999997" y2="86.02325299999997"/>
-  <line stroke="#000000" x1="259.08100979537306" x2="259.08100979537306" y1="33.508882181838366" y2="86.02325299999997"/>
-  <line stroke="#000000" x1="276.5858000680936" x2="259.08100979537306" y1="33.50888218183837" y2="33.508882181838366"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="276.5858000680935" x2="346.58580006809353" y1="216.023253" y2="216.02325300000004"/>
-  <line opacity="1.0" stroke="#ff0000" x1="276.5858000680934" x2="346.58580006809353" y1="268.53762381816165" y2="216.02325300000004"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="276.5858000680934" x2="276.5858000680935" y1="268.53762381816165" y2="216.023253"/>
-  <line stroke="#000000" x1="276.58580006809336" x2="327.003457865757" y1="268.53762381816165" y2="283.2284006738992"/>
-  <line opacity="1.0" stroke="#0000ff" x1="327.003457865757" x2="346.58580006809353" y1="283.2284006738992" y2="216.02325300000004"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="391.5858000680934" x2="346.58580006809353" y1="302.04650567042637" y2="216.02325300000004"/>
-  <line stroke="#000000" x1="377.42111566342055" x2="391.5858000680934" y1="297.9191775296369" y2="302.04650567042637"/>
-  <line stroke="#000000" x1="327.003457865757" x2="377.42111566342055" y1="283.22840067389916" y2="297.9191775296369"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="346.58580006809353" x2="391.58580006809353" y1="216.023253" y2="216.02325300000007"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="391.58580006809353" x2="436.58580006809353" y1="216.02325300000012" y2="216.02325300000018"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="391.5858000680934" x2="436.58580006809353" y1="302.04650567042637" y2="216.02325300000018"/>
-  <line stroke="#000000" x1="405.7504844727662" x2="456.1681422704299" y1="297.9191775296369" y2="283.2284006738994"/>
-  <line stroke="#000000" x1="391.5858000680934" x2="405.7504844727662" y1="302.04650567042637" y2="297.9191775296369"/>
-  <line opacity="1.0" stroke="#0000ff" x1="436.58580006809353" x2="456.1681422704299" y1="216.02325300000018" y2="283.2284006738994"/>
-  <line opacity="1.0" stroke="#ff0000" x1="436.58580006809353" x2="506.5858000680934" y1="216.02325300000018" y2="268.5376238181619"/>
-  <line stroke="#000000" x1="456.1681422704298" x2="506.5858000680934" y1="283.2284006738994" y2="268.5376238181619"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="506.58580006809353" x2="506.5858000680934" y1="216.02325300000032" y2="268.5376238181619"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="436.58580006809353" x2="506.58580006809353" y1="216.02325300000018" y2="216.02325300000032"/>
-  <line stroke="#000000" x1="524.0905903408142" x2="506.58580006809353" y1="216.02325300000035" y2="216.02325300000032"/>
-  <line stroke="#000000" x1="524.090590340814" x2="524.0905903408142" y1="268.53762381816193" y2="216.02325300000035"/>
-  <line stroke="#000000" x1="506.5858000680934" x2="524.090590340814" y1="268.5376238181619" y2="268.53762381816193"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="506.58580006809376" x2="436.58580006809376" y1="86.02325300000027" y2="86.02325300000012"/>
-  <line opacity="1.0" stroke="#ff0000" x1="506.5858000680939" x2="436.58580006809376" y1="33.50888218183868" y2="86.02325300000012"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="506.5858000680939" x2="506.58580006809376" y1="33.50888218183868" y2="86.02325300000027"/>
-  <line stroke="#000000" x1="506.5858000680939" x2="456.16814227043034" y1="33.50888218183864" y2="18.818105326100948"/>
-  <line opacity="1.0" stroke="#0000ff" x1="456.16814227043034" x2="436.58580006809376" y1="18.818105326100948" y2="86.02325300000011"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="391.585800068094" x2="436.58580006809376" y1="3.295737087682938e-07" y2="86.02325300000012"/>
-  <line stroke="#000000" x1="405.7504844727668" x2="391.585800068094" y1="4.127328470363296" y2="3.295737087682938e-07"/>
-  <line stroke="#000000" x1="456.16814227043034" x2="405.7504844727668" y1="18.81810532610098" y2="4.127328470363296"/>
-  <line stroke="#000000" x1="524.0905903408144" x2="506.5858000680939" y1="33.50888218183872" y2="33.508882181838686"/>
-  <line stroke="#000000" x1="524.0905903408144" x2="524.0905903408144" y1="86.02325300000031" y2="33.50888218183872"/>
-  <line stroke="#000000" x1="506.58580006809376" x2="524.0905903408144" y1="86.02325300000028" y2="86.02325300000031"/>
-  <line stroke="#000000" x1="506.58580006809376" x2="506.58580006809376" y1="90.02325300000027" y2="86.02325300000028"/>
-  <line stroke="#000000" x1="506.58580006809353" x2="506.58580006809365" y1="212.02325300000032" y2="151.0232530000003"/>
-  <line stroke="#000000" x1="506.58580006809353" x2="506.58580006809353" y1="216.02325300000032" y2="212.02325300000032"/>
-  <line stroke="#000000" x1="506.58580006809353" x2="506.58580006809353" y1="216.02325300000032" y2="216.02325300000032"/>
-  <line stroke="#000000" x1="506.58580006809376" x2="506.58580006809376" y1="86.02325300000028" y2="86.02325300000028"/>
-  <line stroke="#000000" x1="516.5858000680937" x2="506.58580006809376" y1="90.02325300000031" y2="90.02325300000027"/>
-  <line stroke="#000000" x1="516.5858000680937" x2="516.5858000680937" y1="151.0232530000003" y2="90.02325300000031"/>
-  <line stroke="#000000" x1="506.58580006809365" x2="516.5858000680937" y1="151.0232530000003" y2="151.0232530000003"/>
-  <line stroke="#000000" x1="259.0810097953729" x2="276.5858000680934" y1="268.53762381816165" y2="268.53762381816165"/>
-  <line stroke="#000000" x1="259.0810097953729" x2="259.0810097953729" y1="216.02325299999998" y2="268.53762381816165"/>
-  <line stroke="#000000" x1="276.5858000680935" x2="259.0810097953729" y1="216.023253" y2="216.02325299999998"/>
-  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="212.023253" y2="216.023253"/>
-  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="151.02325299999998" y2="212.023253"/>
-  <line stroke="#000000" x1="276.58580006809353" x2="276.58580006809353" y1="86.02325299999997" y2="90.02325299999995"/>
-  <line stroke="#000000" x1="276.58580006809353" x2="276.58580006809353" y1="86.02325299999997" y2="86.02325299999997"/>
-  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="216.023253" y2="216.023253"/>
-  <line opacity="0.25" stroke="#0000ff" x1="240.44717806890822" x2="240.44717806890824" y1="151.02325299999998" y2="90.02325299999994"/>
-  <line stroke="#000000" x1="276.58580006809353" x2="240.44717806890824" y1="90.02325299999995" y2="90.02325299999994"/>
-  <line stroke="#000000" x1="240.44717806890822" x2="276.5858000680935" y1="151.02325299999998" y2="151.02325299999998"/>
-  <line opacity="0.25" stroke="#0000ff" x1="216.44717806890824" x2="216.44717806890822" y1="90.02325299999993" y2="151.02325299999995"/>
-  <line opacity="0.5" stroke="#0000ff" x1="216.44717806890824" x2="240.44717806890827" y1="90.02325299999993" y2="90.02325299999994"/>
-  <line stroke="#000000" x1="180.3085560697229" x2="216.44717806890822" y1="151.0232529999999" y2="151.02325299999995"/>
-  <line stroke="#000000" x1="180.30855606972295" x2="180.3085560697229" y1="90.02325299999991" y2="151.0232529999999"/>
-  <line stroke="#000000" x1="216.44717806890824" x2="180.30855606972295" y1="90.02325299999993" y2="90.02325299999991"/>
-  <line stroke="#000000" x1="216.44717806890824" x2="216.44717806890824" y1="80.02325299999991" y2="90.02325299999994"/>
-  <line stroke="#000000" x1="240.44717806890824" x2="216.44717806890824" y1="80.02325299999993" y2="80.02325299999991"/>
-  <line stroke="#000000" x1="240.44717806890824" x2="240.44717806890824" y1="90.02325299999994" y2="80.02325299999993"/>
-  <line stroke="#000000" x1="240.44717806890822" x2="240.44717806890822" y1="161.02325299999998" y2="151.02325299999998"/>
-  <line stroke="#000000" x1="216.44717806890822" x2="240.44717806890822" y1="161.02325299999995" y2="161.02325299999998"/>
-  <line stroke="#000000" x1="216.44717806890822" x2="216.44717806890822" y1="151.02325299999995" y2="161.02325299999995"/>
-  <line stroke="#888888" x1="364.5978792657871" x2="347.31195656413337" y1="21.798749986471112" y2="26.83554947792412"/>
-  <line stroke="#888888" x1="347.31195656413337" x2="347.17208269125956" y1="26.83554947792412" y2="26.355512708824836"/>
-  <line stroke="#888888" x1="347.17208269125956" x2="364.4580053929133" y1="26.355512708824836" y2="21.318713217371826"/>
-  <line stroke="#888888" x1="364.4580053929133" x2="364.5978792657871" y1="21.318713217371826" y2="21.798749986471112"/>
-  <line stroke="#888888" x1="263.45720736355315" x2="272.2096024999135" y1="51.01367245455889" y2="51.0136724545589"/>
-  <line stroke="#888888" x1="272.2096024999135" x2="272.20960249991344" y1="51.0136724545589" y2="68.51846272727943"/>
-  <line stroke="#888888" x1="272.20960249991344" x2="263.45720736355315" y1="68.51846272727943" y2="68.51846272727941"/>
-  <line stroke="#888888" x1="347.3119565641332" x2="364.597879265787" y1="275.210956522076" y2="280.247756013529"/>
-  <line stroke="#888888" x1="364.597879265787" x2="364.45800539291315" y1="280.247756013529" y2="280.7277927826283"/>
-  <line stroke="#888888" x1="364.45800539291315" x2="347.1720826912594" y1="280.7277927826283" y2="275.69099329117523"/>
-  <line stroke="#888888" x1="347.1720826912594" x2="347.3119565641332" y1="275.69099329117523" y2="275.210956522076"/>
-  <line stroke="#888888" x1="418.5737208703999" x2="435.8596435720537" y1="280.2477560135291" y2="275.2109565220761"/>
-  <line stroke="#888888" x1="435.8596435720537" x2="435.9995174449275" y1="275.2109565220761" y2="275.69099329117535"/>
-  <line stroke="#888888" x1="435.9995174449275" x2="418.7135947432737" y1="275.69099329117535" y2="280.72779278262834"/>
-  <line stroke="#888888" x1="418.7135947432737" x2="418.5737208703999" y1="280.72779278262834" y2="280.2477560135291"/>
-  <line stroke="#888888" x1="519.7143927726339" x2="510.9619976362736" y1="251.0328335454414" y2="251.03283354544138"/>
-  <line stroke="#888888" x1="510.9619976362736" x2="510.9619976362736" y1="251.03283354544138" y2="233.52804327272085"/>
-  <line stroke="#888888" x1="510.9619976362736" x2="519.7143927726339" y1="233.52804327272085" y2="233.52804327272088"/>
-  <line stroke="#888888" x1="435.85964357205415" x2="418.57372087040034" y1="26.835549477924193" y2="21.79874998647114"/>
-  <line stroke="#888888" x1="418.57372087040034" x2="418.7135947432742" y1="21.79874998647114" y2="21.318713217371855"/>
-  <line stroke="#888888" x1="418.7135947432742" x2="435.99951744492796" y1="21.318713217371855" y2="26.35551270882492"/>
-  <line stroke="#888888" x1="435.99951744492796" x2="435.85964357205415" y1="26.35551270882492" y2="26.835549477924193"/>
-  <line stroke="#888888" x1="519.7143927726343" x2="510.9619976362739" y1="68.51846272727978" y2="68.51846272727977"/>
-  <line stroke="#888888" x1="510.9619976362739" x2="510.96199763627396" y1="68.51846272727977" y2="51.013672454559234"/>
-  <line stroke="#888888" x1="510.96199763627396" x2="519.7143927726343" y1="51.013672454559234" y2="51.01367245455925"/>
-  <line stroke="#888888" x1="498.83580006809365" x2="498.83580006809365" y1="173.45507118181848" y2="161.8641620909094"/>
-  <line stroke="#888888" x1="498.83580006809365" x2="499.33580006809365" y1="161.8641620909094" y2="161.8641620909094"/>
-  <line stroke="#888888" x1="499.33580006809365" x2="499.33580006809365" y1="161.8641620909094" y2="173.45507118181848"/>
-  <line stroke="#888888" x1="499.33580006809365" x2="498.83580006809365" y1="173.45507118181848" y2="173.45507118181848"/>
-  <line stroke="#888888" x1="498.83580006809353" x2="498.83580006809365" y1="201.1823439090912" y2="189.59143481818214"/>
-  <line stroke="#888888" x1="498.83580006809365" x2="499.3358000680936" y1="189.59143481818214" y2="189.59143481818214"/>
-  <line stroke="#888888" x1="499.3358000680936" x2="499.33580006809353" y1="189.59143481818214" y2="201.1823439090912"/>
-  <line stroke="#888888" x1="499.33580006809353" x2="498.83580006809353" y1="201.1823439090912" y2="201.1823439090912"/>
-  <line stroke="#888888" x1="514.0858000680936" x2="509.08580006809365" y1="139.93234390909123" y2="139.93234390909123"/>
-  <line stroke="#888888" x1="509.08580006809365" x2="509.0858000680937" y1="139.93234390909123" y2="128.8414348181821"/>
-  <line stroke="#888888" x1="509.0858000680937" x2="514.0858000680936" y1="128.8414348181821" y2="128.8414348181821"/>
-  <line stroke="#888888" x1="514.0858000680938" x2="509.0858000680937" y1="112.20507118181847" y2="112.20507118181847"/>
-  <line stroke="#888888" x1="509.0858000680937" x2="509.08580006809376" y1="112.20507118181847" y2="101.11416209090936"/>
-  <line stroke="#888888" x1="509.08580006809376" x2="514.0858000680938" y1="101.11416209090936" y2="101.11416209090936"/>
-  <line stroke="#888888" x1="263.4572073635531" x2="272.2096024999134" y1="233.5280432727205" y2="233.52804327272054"/>
-  <line stroke="#888888" x1="272.2096024999134" x2="272.20960249991333" y1="233.52804327272054" y2="251.03283354544106"/>
-  <line stroke="#888888" x1="272.20960249991333" x2="263.4572073635531" y1="251.03283354544106" y2="251.03283354544104"/>
-  <line stroke="#888888" x1="284.33580006809353" x2="284.33580006809353" y1="189.59143481818182" y2="201.18234390909092"/>
-  <line stroke="#888888" x1="284.33580006809353" x2="283.83580006809353" y1="201.18234390909092" y2="201.18234390909092"/>
-  <line stroke="#888888" x1="283.83580006809353" x2="283.83580006809353" y1="201.18234390909092" y2="189.59143481818182"/>
-  <line stroke="#888888" x1="283.83580006809353" x2="284.33580006809353" y1="189.59143481818182" y2="189.59143481818182"/>
-  <line stroke="#888888" x1="284.33580006809353" x2="284.33580006809353" y1="161.86416209090908" y2="173.45507118181817"/>
-  <line stroke="#888888" x1="284.33580006809353" x2="283.83580006809353" y1="173.45507118181817" y2="173.45507118181817"/>
-  <line stroke="#888888" x1="283.83580006809353" x2="283.83580006809353" y1="173.45507118181817" y2="161.86416209090908"/>
-  <line stroke="#888888" x1="283.83580006809353" x2="284.33580006809353" y1="161.86416209090908" y2="161.86416209090908"/>
-  <line stroke="#888888" x1="221.94717806890824" x2="221.94717806890824" y1="133.02325299999995" y2="122.02325299999994"/>
-  <line stroke="#888888" x1="221.94717806890824" x2="234.94717806890824" y1="122.02325299999994" y2="122.02325299999994"/>
-  <line stroke="#888888" x1="234.94717806890824" x2="234.94717806890824" y1="122.02325299999994" y2="133.02325299999995"/>
-  <line stroke="#888888" x1="234.94717806890824" x2="221.94717806890824" y1="133.02325299999995" y2="133.02325299999995"/>
-  <line stroke="#888888" x1="223.44717806890822" x2="223.44717806890824" y1="101.52325299999994" y2="95.52325299999994"/>
-  <line stroke="#888888" x1="223.44717806890824" x2="233.44717806890827" y1="95.52325299999994" y2="95.52325299999994"/>
-  <line stroke="#888888" x1="233.44717806890827" x2="233.44717806890824" y1="95.52325299999994" y2="101.52325299999994"/>
-  <line stroke="#888888" x1="233.44717806890824" x2="223.44717806890822" y1="101.52325299999994" y2="101.52325299999994"/>
-  <line stroke="#888888" x1="188.05855606972293" x2="188.05855606972293" y1="128.5914348181817" y2="140.1823439090908"/>
-  <line stroke="#888888" x1="188.05855606972293" x2="187.55855606972293" y1="140.1823439090908" y2="140.1823439090908"/>
-  <line stroke="#888888" x1="187.55855606972293" x2="187.55855606972293" y1="140.1823439090908" y2="128.5914348181817"/>
-  <line stroke="#888888" x1="187.55855606972293" x2="188.05855606972293" y1="128.5914348181817" y2="128.5914348181817"/>
-  <line stroke="#888888" x1="188.05855606972293" x2="188.05855606972293" y1="100.864162090909" y2="112.45507118181808"/>
-  <line stroke="#888888" x1="188.05855606972293" x2="187.55855606972293" y1="112.45507118181808" y2="112.45507118181808"/>
-  <line stroke="#888888" x1="187.55855606972293" x2="187.55855606972293" y1="112.45507118181808" y2="100.864162090909"/>
-  <line stroke="#888888" x1="187.55855606972293" x2="188.05855606972293" y1="100.864162090909" y2="100.864162090909"/>
-  <line stroke="#888888" x1="232.44717806890824" x2="232.44717806890824" y1="82.52325299999994" y2="87.52325299999994"/>
-  <line stroke="#888888" x1="232.44717806890824" x2="224.44717806890824" y1="87.52325299999994" y2="87.52325299999994"/>
-  <line stroke="#888888" x1="224.44717806890824" x2="224.44717806890824" y1="87.52325299999994" y2="82.52325299999991"/>
-  <line stroke="#888888" x1="224.44717806890822" x2="224.44717806890822" y1="158.52325299999995" y2="153.52325299999995"/>
-  <line stroke="#888888" x1="224.44717806890822" x2="232.44717806890822" y1="153.52325299999995" y2="153.52325299999995"/>
-  <line stroke="#888888" x1="232.44717806890822" x2="232.44717806890822" y1="153.52325299999995" y2="158.52325299999998"/>
-  <line opacity="0.5" stroke="#0000ff" x1="543.0905903408144" x2="604.0905903408143" y1="139.023253" y2="139.023253"/>
-  <line opacity="0.5" stroke="#0000ff" x1="604.0905903408143" x2="604.0905903408143" y1="139.023253" y2="163.02325300000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="604.0905903408143" x2="543.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="543.0905903408144" x2="543.0905903408144" y1="163.02325300000004" y2="139.023253"/>
-  <line stroke="#000000" x1="543.0905903408144" x2="543.0905903408144" y1="132.023253" y2="139.023253"/>
-  <line stroke="#000000" x1="579.0905903408144" x2="543.0905903408144" y1="132.023253" y2="132.023253"/>
-  <line stroke="#000000" x1="579.0905903408144" x2="579.0905903408144" y1="139.023253" y2="132.023253"/>
-  <line stroke="#000000" x1="611.0905903408143" x2="604.0905903408143" y1="139.023253" y2="139.023253"/>
-  <line stroke="#000000" x1="611.0905903408143" x2="611.0905903408143" y1="163.02325300000004" y2="139.023253"/>
-  <line stroke="#000000" x1="604.0905903408143" x2="611.0905903408143" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="604.0905903408143" x2="604.0905903408143" y1="163.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="568.0905903408143" x2="604.0905903408143" y1="224.02325300000004" y2="224.02325300000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="568.0905903408143" x2="568.0905903408143" y1="163.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="628.0905903408144" x2="604.0905903408143" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="628.0905903408144" x2="628.0905903408144" y1="163.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="604.0905903408143" x2="628.0905903408144" y1="224.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="664.0905903408144" x2="628.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="664.0905903408144" x2="664.0905903408144" y1="224.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="628.0905903408144" x2="664.0905903408144" y1="224.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="568.0905903408143" x2="544.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="544.0905903408144" x2="568.0905903408143" y1="224.02325300000004" y2="224.02325300000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="544.0905903408144" x2="544.0905903408144" y1="224.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="534.0905903408144" x2="544.0905903408144" y1="224.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="534.0905903408144" x2="534.0905903408144" y1="163.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="544.0905903408144" x2="534.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="536.0905903408143" x2="543.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="536.0905903408143" x2="536.0905903408143" y1="139.023253" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="543.0905903408144" x2="536.0905903408143" y1="139.023253" y2="139.023253"/>
-  <line stroke="#888888" x1="567.0905903408143" x2="570.5905903408144" y1="133.77325300000004" y2="133.77325300000004"/>
-  <line stroke="#888888" x1="570.5905903408144" x2="567.0905903408143" y1="133.77325300000004" y2="137.27325300000004"/>
-  <line stroke="#888888" x1="567.0905903408143" x2="555.0905903408144" y1="137.27325300000004" y2="137.27325300000004"/>
-  <line stroke="#888888" x1="555.0905903408144" x2="551.5905903408144" y1="137.27325300000004" y2="133.77325300000004"/>
-  <line stroke="#888888" x1="551.5905903408144" x2="555.0905903408144" y1="133.77325300000004" y2="133.77325300000004"/>
-  <line stroke="#888888" x1="609.3405903408144" x2="605.8405903408143" y1="155.023253" y2="155.023253"/>
-  <line stroke="#888888" x1="605.8405903408143" x2="605.8405903408143" y1="155.023253" y2="147.02325300000004"/>
-  <line stroke="#888888" x1="605.8405903408143" x2="609.3405903408144" y1="147.02325300000004" y2="147.02325300000004"/>
-  <line stroke="#888888" x1="581.2048760551" x2="581.2048760551" y1="217.77325300000004" y2="199.77325300000004"/>
-  <line stroke="#888888" x1="581.2048760551" x2="601.7763046265287" y1="199.77325300000004" y2="199.77325300000004"/>
-  <line stroke="#888888" x1="601.7763046265287" x2="601.7763046265287" y1="199.77325300000004" y2="217.77325300000004"/>
-  <line stroke="#888888" x1="601.7763046265287" x2="581.2048760551" y1="217.77325300000004" y2="217.77325300000004"/>
-  <line stroke="#888888" x1="604.5905903408143" x2="604.5905903408143" y1="176.27325300000004" y2="173.27325300000004"/>
-  <line stroke="#888888" x1="604.5905903408143" x2="607.5905903408144" y1="173.27325300000004" y2="173.27325300000004"/>
-  <line stroke="#888888" x1="607.5905903408144" x2="607.5905903408144" y1="173.27325300000004" y2="176.27325300000004"/>
-  <line stroke="#888888" x1="607.5905903408144" x2="604.5905903408143" y1="176.27325300000004" y2="176.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="175.273253" y2="174.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="174.27325300000004" y2="174.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="174.27325300000004" y2="175.273253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="175.273253" y2="175.273253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="177.773253" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="176.77325300000004" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="176.77325300000004" y2="177.773253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="177.773253" y2="177.773253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="177.773253" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="176.77325300000004" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="176.77325300000004" y2="177.773253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="177.773253" y2="177.773253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="180.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="179.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="179.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="180.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="180.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="179.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="179.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="180.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="182.77325300000004" y2="181.773253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="181.773253" y2="181.773253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="181.773253" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="182.77325300000004" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="182.77325300000004" y2="181.773253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="181.773253" y2="181.773253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="181.773253" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="182.77325300000004" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="185.27325300000004" y2="184.273253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="184.273253" y2="184.273253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="184.273253" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="185.27325300000004" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="185.27325300000004" y2="184.273253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="184.273253" y2="184.273253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="184.273253" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="185.27325300000004" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="187.77325300000004" y2="186.773253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="186.773253" y2="186.773253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="186.773253" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="187.77325300000004" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="187.77325300000004" y2="186.773253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="186.773253" y2="186.773253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="186.773253" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="187.77325300000004" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="190.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="189.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="189.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="190.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="190.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="189.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="189.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="190.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="192.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="191.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="191.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="192.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="192.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="191.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="191.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="192.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="195.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="194.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="194.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="195.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="195.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="194.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="194.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="195.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="197.773253" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="196.77325300000004" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="196.77325300000004" y2="197.773253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="197.773253" y2="197.773253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="197.773253" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="196.77325300000004" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="196.77325300000004" y2="197.773253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="197.773253" y2="197.773253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="200.273253" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="199.27325300000004" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="199.27325300000004" y2="200.273253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="200.273253" y2="200.273253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="200.273253" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="199.27325300000004" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="199.27325300000004" y2="200.273253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="200.273253" y2="200.273253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="202.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="201.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="201.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="202.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="202.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="201.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="201.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="202.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="205.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="204.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="204.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="205.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="205.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="204.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="204.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="205.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="207.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="206.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="206.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="207.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="207.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="206.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="206.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="207.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="210.27325300000004" y2="209.273253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="209.273253" y2="209.273253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="209.273253" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="210.27325300000004" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="210.27325300000004" y2="209.273253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="209.273253" y2="209.273253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="209.273253" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="210.27325300000004" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="212.77325300000004" y2="211.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="211.77325300000004" y2="211.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="211.77325300000004" y2="212.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="212.77325300000004" y2="212.77325300000004"/>
-  <line stroke="#888888" x1="624.5905903408144" x2="624.5905903408144" y1="213.773253" y2="210.77325300000004"/>
-  <line stroke="#888888" x1="624.5905903408144" x2="627.5905903408144" y1="210.77325300000004" y2="210.77325300000004"/>
-  <line stroke="#888888" x1="627.5905903408144" x2="627.5905903408144" y1="210.77325300000004" y2="213.773253"/>
-  <line stroke="#888888" x1="627.5905903408144" x2="624.5905903408144" y1="213.773253" y2="213.773253"/>
-  <line stroke="#888888" x1="620.3405903408144" x2="611.8405903408144" y1="170.773253" y2="170.773253"/>
-  <line stroke="#888888" x1="611.8405903408144" x2="611.8405903408144" y1="170.773253" y2="170.27325300000004"/>
-  <line stroke="#888888" x1="611.8405903408144" x2="620.3405903408144" y1="170.27325300000004" y2="170.27325300000004"/>
-  <line stroke="#888888" x1="620.3405903408144" x2="620.3405903408144" y1="170.27325300000004" y2="170.773253"/>
-  <line stroke="#888888" x1="611.8405903408144" x2="620.3405903408144" y1="218.523253" y2="218.523253"/>
-  <line stroke="#888888" x1="620.3405903408144" x2="620.3405903408144" y1="218.523253" y2="219.02325300000004"/>
-  <line stroke="#888888" x1="620.3405903408144" x2="611.8405903408144" y1="219.02325300000004" y2="219.02325300000004"/>
-  <line stroke="#888888" x1="611.8405903408144" x2="611.8405903408144" y1="219.02325300000004" y2="218.523253"/>
-  <line stroke="#888888" x1="633.6448760551" x2="633.6448760551" y1="219.54325300000002" y2="206.54325300000002"/>
-  <line stroke="#888888" x1="633.6448760551" x2="654.2163046265287" y1="206.54325300000002" y2="206.54325300000002"/>
-  <line stroke="#888888" x1="654.2163046265287" x2="654.2163046265287" y1="206.54325300000002" y2="219.54325300000002"/>
-  <line stroke="#888888" x1="654.2163046265287" x2="633.6448760551" y1="219.54325300000002" y2="219.54325300000002"/>
-  <line stroke="#888888" x1="652.3405903408143" x2="639.8405903408144" y1="168.523253" y2="168.523253"/>
-  <line stroke="#888888" x1="639.8405903408144" x2="639.8405903408144" y1="168.523253" y2="168.023253"/>
-  <line stroke="#888888" x1="639.8405903408144" x2="652.3405903408143" y1="168.023253" y2="168.023253"/>
-  <line stroke="#888888" x1="652.3405903408143" x2="652.3405903408143" y1="168.023253" y2="168.523253"/>
-  <line stroke="#888888" x1="656.3405903408144" x2="656.3405903408144" y1="185.45507118181823" y2="173.8641620909091"/>
-  <line stroke="#888888" x1="656.3405903408144" x2="656.8405903408144" y1="173.8641620909091" y2="173.8641620909091"/>
-  <line stroke="#888888" x1="656.8405903408144" x2="656.8405903408144" y1="173.8641620909091" y2="185.45507118181823"/>
-  <line stroke="#888888" x1="656.8405903408144" x2="656.3405903408144" y1="185.45507118181823" y2="185.45507118181823"/>
-  <line stroke="#888888" x1="656.3405903408144" x2="656.3405903408144" y1="213.18234390909095" y2="201.59143481818185"/>
-  <line stroke="#888888" x1="656.3405903408144" x2="656.8405903408144" y1="201.59143481818185" y2="201.59143481818185"/>
-  <line stroke="#888888" x1="656.8405903408144" x2="656.8405903408144" y1="201.59143481818185" y2="213.18234390909095"/>
-  <line stroke="#888888" x1="656.8405903408144" x2="656.3405903408144" y1="213.18234390909095" y2="213.18234390909095"/>
-  <line stroke="#888888" x1="544.5905903408144" x2="544.5905903408144" y1="176.27325300000004" y2="173.27325300000004"/>
-  <line stroke="#888888" x1="544.5905903408144" x2="547.5905903408143" y1="173.27325300000004" y2="173.27325300000004"/>
-  <line stroke="#888888" x1="547.5905903408143" x2="547.5905903408143" y1="173.27325300000004" y2="176.27325300000004"/>
-  <line stroke="#888888" x1="547.5905903408143" x2="544.5905903408144" y1="176.27325300000004" y2="176.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="175.273253" y2="174.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="174.27325300000004" y2="174.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="174.27325300000004" y2="175.273253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="175.273253" y2="175.273253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="177.773253" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="176.77325300000004" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="176.77325300000004" y2="177.773253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="177.773253" y2="177.773253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="177.773253" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="176.77325300000004" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="176.77325300000004" y2="177.773253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="177.773253" y2="177.773253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="180.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="179.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="179.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="180.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="180.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="179.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="179.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="180.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="182.77325300000004" y2="181.773253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="181.773253" y2="181.773253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="181.773253" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="182.77325300000004" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="182.77325300000004" y2="181.773253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="181.773253" y2="181.773253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="181.773253" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="182.77325300000004" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="185.27325300000004" y2="184.273253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="184.273253" y2="184.273253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="184.273253" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="185.27325300000004" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="185.27325300000004" y2="184.273253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="184.273253" y2="184.273253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="184.273253" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="185.27325300000004" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="187.77325300000004" y2="186.773253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="186.773253" y2="186.773253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="186.773253" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="187.77325300000004" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="187.77325300000004" y2="186.773253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="186.773253" y2="186.773253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="186.773253" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="187.77325300000004" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="190.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="189.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="189.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="190.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="190.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="189.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="189.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="190.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="192.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="191.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="191.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="192.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="192.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="191.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="191.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="192.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="195.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="194.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="194.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="195.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="195.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="194.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="194.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="195.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="197.773253" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="196.77325300000004" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="196.77325300000004" y2="197.773253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="197.773253" y2="197.773253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="197.773253" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="196.77325300000004" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="196.77325300000004" y2="197.773253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="197.773253" y2="197.773253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="200.273253" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="199.27325300000004" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="199.27325300000004" y2="200.273253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="200.273253" y2="200.273253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="200.273253" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="199.27325300000004" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="199.27325300000004" y2="200.273253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="200.273253" y2="200.273253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="202.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="201.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="201.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="202.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="202.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="201.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="201.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="202.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="205.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="204.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="204.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="205.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="205.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="204.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="204.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="205.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="207.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="206.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="206.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="207.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="207.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="206.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="206.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="207.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="210.27325300000004" y2="209.273253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="209.273253" y2="209.273253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="209.273253" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="210.27325300000004" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="210.27325300000004" y2="209.273253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="209.273253" y2="209.273253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="209.273253" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="210.27325300000004" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="212.77325300000004" y2="211.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="211.77325300000004" y2="211.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="211.77325300000004" y2="212.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="212.77325300000004" y2="212.77325300000004"/>
-  <line stroke="#888888" x1="564.5905903408143" x2="564.5905903408143" y1="213.773253" y2="210.77325300000004"/>
-  <line stroke="#888888" x1="564.5905903408143" x2="567.5905903408143" y1="210.77325300000004" y2="210.77325300000004"/>
-  <line stroke="#888888" x1="567.5905903408143" x2="567.5905903408143" y1="210.77325300000004" y2="213.773253"/>
-  <line stroke="#888888" x1="567.5905903408143" x2="564.5905903408143" y1="213.773253" y2="213.773253"/>
-  <line stroke="#888888" x1="560.3405903408143" x2="551.8405903408143" y1="170.773253" y2="170.773253"/>
-  <line stroke="#888888" x1="551.8405903408143" x2="551.8405903408143" y1="170.773253" y2="170.27325300000004"/>
-  <line stroke="#888888" x1="551.8405903408143" x2="560.3405903408143" y1="170.27325300000004" y2="170.27325300000004"/>
-  <line stroke="#888888" x1="560.3405903408143" x2="560.3405903408143" y1="170.27325300000004" y2="170.773253"/>
-  <line stroke="#888888" x1="551.8405903408143" x2="560.3405903408143" y1="218.523253" y2="218.523253"/>
-  <line stroke="#888888" x1="560.3405903408143" x2="560.3405903408143" y1="218.523253" y2="219.02325300000004"/>
-  <line stroke="#888888" x1="560.3405903408143" x2="551.8405903408143" y1="219.02325300000004" y2="219.02325300000004"/>
-  <line stroke="#888888" x1="551.8405903408143" x2="551.8405903408143" y1="219.02325300000004" y2="218.523253"/>
-  <line stroke="#888888" x1="536.5905903408143" x2="541.5905903408144" y1="174.1141620909091" y2="174.1141620909091"/>
-  <line stroke="#888888" x1="541.5905903408144" x2="541.5905903408144" y1="174.1141620909091" y2="185.20507118181823"/>
-  <line stroke="#888888" x1="541.5905903408144" x2="536.5905903408143" y1="185.20507118181823" y2="185.20507118181823"/>
-  <line stroke="#888888" x1="536.5905903408143" x2="541.5905903408144" y1="201.84143481818185" y2="201.84143481818185"/>
-  <line stroke="#888888" x1="541.5905903408144" x2="541.5905903408144" y1="201.84143481818185" y2="212.93234390909092"/>
-  <line stroke="#888888" x1="541.5905903408144" x2="536.5905903408143" y1="212.93234390909092" y2="212.93234390909092"/>
-  <line stroke="#888888" x1="537.8405903408144" x2="541.3405903408144" y1="147.02325300000004" y2="147.02325300000004"/>
-  <line stroke="#888888" x1="541.3405903408144" x2="541.3405903408144" y1="147.02325300000004" y2="155.023253"/>
-  <line stroke="#888888" x1="541.3405903408144" x2="537.8405903408144" y1="155.023253" y2="155.023253"/>
+  <line stroke="#000000" x1="160.30855606972293" x2="98.65427803486146" y1="296.52325300000007" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="160.30855606972293" y1="357.523253" y2="357.523253"/>
+  <line opacity="0.25" stroke="#ff0000" x1="98.65427803486146" x2="98.65427803486146" y1="357.523253" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="170.30855606972293" x2="160.30855606972293" y1="296.52325300000007" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="170.30855606972293" x2="170.30855606972293" y1="357.523253" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="160.30855606972293" x2="170.30855606972293" y1="357.523253" y2="357.523253"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="98.65427803486146" y1="357.523253" y2="357.523253"/>
+  <line opacity="0.25" stroke="#ff0000" x1="71.65427803486145" x2="71.65427803486145" y1="296.52325300000007" y2="357.523253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="296.52325300000007" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="71.65427803486145" y1="357.523253" y2="357.523253"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="10.000000000000002" y1="296.52325300000007" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="357.523253" y2="357.523253"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="296.52325300000007" y2="357.523253"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="296.52325300000007" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="296.52325300000007" y2="279.523253"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="279.523253" y2="296.52325300000007"/>
+  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="279.523253" y2="279.523253"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="279.523253" y2="218.523253"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="218.523253" y2="279.523253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="218.523253" y2="218.523253"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="218.523253" y2="201.52325300000004"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="201.52325300000004" y2="218.523253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="71.65427803486145" x2="98.65427803486146" y1="201.52325300000004" y2="201.52325300000004"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="191.52325300000004" y2="201.52325300000004"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="71.65427803486145" y1="191.52325300000004" y2="191.52325300000004"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="201.52325300000004" y2="191.52325300000004"/>
+  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="346.432343909091" y2="346.432343909091"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="346.432343909091" y2="335.3414348181819"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="335.3414348181819" y2="335.3414348181819"/>
+  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="318.7050711818182" y2="318.7050711818182"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="318.7050711818182" y2="307.61416209090913"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="307.61416209090913" y2="307.61416209090913"/>
+  <line stroke="#888888" x1="94.15427803486146" x2="94.15427803486146" y1="294.023253" y2="300.02325300000007"/>
+  <line stroke="#888888" x1="94.15427803486146" x2="76.15427803486145" y1="300.02325300000007" y2="300.02325300000007"/>
+  <line stroke="#888888" x1="76.15427803486145" x2="76.15427803486145" y1="300.02325300000007" y2="294.023253"/>
+  <line stroke="#888888" x1="76.15427803486145" x2="94.15427803486146" y1="294.023253" y2="294.023253"/>
+  <line stroke="#888888" x1="80.40427803486146" x2="89.90427803486145" y1="349.77325300000007" y2="349.77325300000007"/>
+  <line stroke="#888888" x1="89.90427803486145" x2="89.90427803486145" y1="349.77325300000007" y2="350.27325300000007"/>
+  <line stroke="#888888" x1="89.90427803486145" x2="80.40427803486146" y1="350.27325300000007" y2="350.27325300000007"/>
+  <line stroke="#888888" x1="80.40427803486146" x2="80.40427803486146" y1="350.27325300000007" y2="349.77325300000007"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="307.6141620909092" y2="307.6141620909092"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="307.6141620909092" y2="318.7050711818182"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="318.7050711818182" y2="318.7050711818182"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="335.3414348181819" y2="335.3414348181819"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="335.3414348181819" y2="346.432343909091"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="346.432343909091" y2="346.432343909091"/>
+  <line stroke="#888888" x1="89.65427803486146" x2="89.65427803486146" y1="194.02325300000004" y2="199.02325300000004"/>
+  <line stroke="#888888" x1="89.65427803486146" x2="80.65427803486146" y1="199.02325300000004" y2="199.02325300000004"/>
+  <line stroke="#888888" x1="80.65427803486146" x2="80.65427803486146" y1="199.02325300000004" y2="194.02325300000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="436.5858000680937" x2="436.5858000680937" y1="86.02325300000003" y2="568.0232530000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="346.5858000680937" x2="346.5858000680937" y1="86.02325300000003" y2="568.0232530000001"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="391.5858000680937" x2="346.5858000680937" y1="86.02325300000003" y2="86.02325300000003"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="436.5858000680937" x2="391.5858000680937" y1="86.02325300000003" y2="86.02325300000003"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="391.5858000680937" x2="346.5858000680937" y1="3.295737656117126e-07" y2="86.02325300000003"/>
+  <line stroke="#000000" x1="377.4211156634209" x2="327.0034578657573" y1="4.127328470363296" y2="18.818105326100866"/>
+  <line stroke="#000000" x1="391.5858000680937" x2="377.4211156634209" y1="3.295737656117126e-07" y2="4.127328470363296"/>
+  <line opacity="1.0" stroke="#0000ff" x1="346.5858000680937" x2="327.0034578657573" y1="86.02325300000005" y2="18.818105326100866"/>
+  <line opacity="1.0" stroke="#ff0000" x1="346.5858000680937" x2="276.58580006809376" y1="86.02325300000005" y2="33.50888218183843"/>
+  <line stroke="#000000" x1="327.0034578657573" x2="276.58580006809376" y1="18.818105326100866" y2="33.50888218183843"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="276.5858000680937" x2="276.58580006809376" y1="86.02325299999997" y2="33.50888218183837"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="346.5858000680937" x2="276.5858000680937" y1="86.023253" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="259.0810097953732" x2="276.5858000680937" y1="86.02325299999997" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="259.0810097953732" x2="259.0810097953732" y1="33.50888218183837" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="276.58580006809376" x2="259.0810097953732" y1="33.50888218183837" y2="33.50888218183837"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="276.58580006809336" x2="346.5858000680934" y1="568.0232530000001" y2="568.0232530000001"/>
+  <line opacity="1.0" stroke="#ff0000" x1="276.5858000680933" x2="346.5858000680934" y1="620.5376238181617" y2="568.0232530000001"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="276.5858000680933" x2="276.58580006809336" y1="620.5376238181617" y2="568.0232530000001"/>
+  <line stroke="#000000" x1="276.5858000680933" x2="327.00345786575684" y1="620.5376238181617" y2="635.2284006738995"/>
+  <line opacity="1.0" stroke="#0000ff" x1="327.00345786575684" x2="346.5858000680934" y1="635.2284006738995" y2="568.0232530000001"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="391.5858000680933" x2="346.5858000680934" y1="654.0465056704267" y2="568.0232530000003"/>
+  <line stroke="#000000" x1="377.42111566342044" x2="391.5858000680933" y1="649.919177529637" y2="654.0465056704267"/>
+  <line stroke="#000000" x1="327.00345786575684" x2="377.42111566342044" y1="635.2284006738994" y2="649.919177529637"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="346.5858000680934" x2="391.5858000680934" y1="568.0232530000001" y2="568.0232530000003"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="391.5858000680934" x2="436.5858000680934" y1="568.0232530000003" y2="568.0232530000004"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="391.5858000680933" x2="436.5858000680934" y1="654.0465056704267" y2="568.0232530000004"/>
+  <line stroke="#000000" x1="405.7504844727661" x2="456.16814227042977" y1="649.919177529637" y2="635.2284006738995"/>
+  <line stroke="#000000" x1="391.5858000680933" x2="405.7504844727661" y1="654.0465056704267" y2="649.919177529637"/>
+  <line opacity="1.0" stroke="#0000ff" x1="436.5858000680934" x2="456.16814227042977" y1="568.0232530000004" y2="635.2284006738995"/>
+  <line opacity="1.0" stroke="#ff0000" x1="436.5858000680934" x2="506.5858000680933" y1="568.0232530000004" y2="620.537623818162"/>
+  <line stroke="#000000" x1="456.1681422704297" x2="506.5858000680933" y1="635.2284006738995" y2="620.537623818162"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="506.5858000680934" x2="506.58580006809336" y1="568.0232530000005" y2="620.5376238181622"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="436.5858000680934" x2="506.5858000680934" y1="568.0232530000004" y2="568.0232530000005"/>
+  <line stroke="#000000" x1="524.090590340814" x2="506.5858000680934" y1="568.0232530000005" y2="568.0232530000004"/>
+  <line stroke="#000000" x1="524.0905903408138" x2="524.090590340814" y1="620.5376238181622" y2="568.0232530000005"/>
+  <line stroke="#000000" x1="506.5858000680933" x2="524.0905903408138" y1="620.537623818162" y2="620.5376238181622"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="506.58580006809433" x2="436.5858000680943" y1="86.02325300000028" y2="86.02325300000012"/>
+  <line opacity="1.0" stroke="#ff0000" x1="506.58580006809444" x2="436.5858000680943" y1="33.508882181838665" y2="86.0232530000001"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="506.58580006809444" x2="506.58580006809433" y1="33.508882181838665" y2="86.02325300000025"/>
+  <line stroke="#000000" x1="506.58580006809444" x2="456.1681422704309" y1="33.508882181838665" y2="18.81810532610098"/>
+  <line opacity="1.0" stroke="#0000ff" x1="456.1681422704309" x2="436.5858000680943" y1="18.81810532610098" y2="86.02325300000012"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="391.5858000680945" x2="436.5858000680943" y1="3.295737087682938e-07" y2="86.02325300000012"/>
+  <line stroke="#000000" x1="405.75048447276737" x2="391.5858000680945" y1="4.127328470363296" y2="3.295737087682938e-07"/>
+  <line stroke="#000000" x1="456.1681422704309" x2="405.75048447276737" y1="18.81810532610098" y2="4.127328470363296"/>
+  <line stroke="#000000" x1="524.0905903408149" x2="506.58580006809444" y1="33.50888218183872" y2="33.508882181838665"/>
+  <line stroke="#000000" x1="524.0905903408147" x2="524.0905903408149" y1="86.02325300000028" y2="33.50888218183872"/>
+  <line stroke="#000000" x1="506.58580006809433" x2="524.0905903408147" y1="86.02325300000025" y2="86.02325300000028"/>
+  <line stroke="#000000" x1="506.585800068094" x2="506.58580006809433" y1="266.02325300000035" y2="86.02325300000025"/>
+  <line stroke="#000000" x1="506.58580006809376" x2="506.5858000680939" y1="388.0232530000003" y2="327.02325300000035"/>
+  <line stroke="#000000" x1="506.5858000680934" x2="506.58580006809376" y1="568.0232530000004" y2="388.0232530000003"/>
+  <line stroke="#000000" x1="506.5858000680934" x2="506.5858000680934" y1="568.0232530000004" y2="568.0232530000004"/>
+  <line stroke="#000000" x1="506.58580006809433" x2="506.58580006809433" y1="86.02325300000025" y2="86.02325300000025"/>
+  <line stroke="#000000" x1="516.5858000680939" x2="506.585800068094" y1="266.02325300000035" y2="266.02325300000035"/>
+  <line stroke="#000000" x1="516.5858000680938" x2="516.5858000680939" y1="327.02325300000035" y2="266.02325300000035"/>
+  <line stroke="#000000" x1="506.5858000680939" x2="516.5858000680938" y1="327.02325300000035" y2="327.02325300000035"/>
+  <line stroke="#000000" x1="259.0810097953728" x2="276.5858000680933" y1="620.5376238181617" y2="620.5376238181617"/>
+  <line stroke="#000000" x1="259.08100979537284" x2="259.0810097953728" y1="568.0232530000001" y2="620.5376238181617"/>
+  <line stroke="#000000" x1="276.58580006809336" x2="259.08100979537284" y1="568.0232530000001" y2="568.0232530000001"/>
+  <line stroke="#000000" x1="276.5858000680935" x2="276.58580006809336" y1="388.0232530000001" y2="568.0232530000001"/>
+  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="327.02325300000007" y2="388.0232530000001"/>
+  <line stroke="#000000" x1="276.5858000680937" x2="276.58580006809353" y1="86.02325299999997" y2="266.02325300000007"/>
+  <line stroke="#000000" x1="276.5858000680937" x2="276.5858000680937" y1="86.02325299999997" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="276.58580006809336" x2="276.58580006809336" y1="568.0232530000001" y2="568.0232530000001"/>
+  <line opacity="0.25" stroke="#0000ff" x1="240.44717806890822" x2="240.44717806890824" y1="327.02325300000007" y2="266.023253"/>
+  <line stroke="#000000" x1="276.58580006809353" x2="240.44717806890824" y1="266.02325300000007" y2="266.023253"/>
+  <line stroke="#000000" x1="240.44717806890822" x2="276.5858000680935" y1="327.02325300000007" y2="327.02325300000007"/>
+  <line opacity="0.25" stroke="#0000ff" x1="216.44717806890824" x2="216.44717806890822" y1="266.023253" y2="327.023253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="216.44717806890824" x2="240.44717806890827" y1="266.023253" y2="266.023253"/>
+  <line stroke="#000000" x1="180.3085560697229" x2="216.44717806890822" y1="327.023253" y2="327.023253"/>
+  <line stroke="#000000" x1="180.30855606972295" x2="180.3085560697229" y1="266.023253" y2="327.023253"/>
+  <line stroke="#000000" x1="216.44717806890824" x2="180.30855606972295" y1="266.023253" y2="266.023253"/>
+  <line stroke="#000000" x1="216.44717806890824" x2="216.44717806890824" y1="256.02325299999995" y2="266.023253"/>
+  <line stroke="#000000" x1="240.44717806890824" x2="216.44717806890824" y1="256.02325299999995" y2="256.02325299999995"/>
+  <line stroke="#000000" x1="240.44717806890824" x2="240.44717806890824" y1="266.023253" y2="256.02325299999995"/>
+  <line stroke="#000000" x1="240.44717806890822" x2="240.44717806890822" y1="337.02325300000007" y2="327.02325300000007"/>
+  <line stroke="#000000" x1="216.44717806890822" x2="240.44717806890822" y1="337.023253" y2="337.02325300000007"/>
+  <line stroke="#000000" x1="216.44717806890822" x2="216.44717806890822" y1="327.023253" y2="337.023253"/>
+  <line stroke="#888888" x1="364.59787926578724" x2="347.3119565641334" y1="21.79874998647114" y2="26.835549477924136"/>
+  <line stroke="#888888" x1="347.3119565641334" x2="347.1720826912596" y1="26.835549477924136" y2="26.35551270882485"/>
+  <line stroke="#888888" x1="347.1720826912596" x2="364.4580053929134" y1="26.35551270882485" y2="21.318713217371794"/>
+  <line stroke="#888888" x1="364.4580053929134" x2="364.59787926578724" y1="21.318713217371794" y2="21.79874998647114"/>
+  <line stroke="#888888" x1="263.45720736355327" x2="272.2096024999136" y1="51.0136724545589" y2="51.0136724545589"/>
+  <line stroke="#888888" x1="272.2096024999136" x2="272.20960249991356" y1="51.0136724545589" y2="68.51846272727943"/>
+  <line stroke="#888888" x1="272.20960249991356" x2="263.45720736355327" y1="68.51846272727943" y2="68.51846272727943"/>
+  <line stroke="#888888" x1="347.31195656413314" x2="364.5978792657869" y1="627.2109565220761" y2="632.2477560135293"/>
+  <line stroke="#888888" x1="364.5978792657869" x2="364.4580053929131" y1="632.2477560135293" y2="632.7277927826285"/>
+  <line stroke="#888888" x1="364.4580053929131" x2="347.1720826912593" y1="632.7277927826285" y2="627.6909932911755"/>
+  <line stroke="#888888" x1="347.1720826912593" x2="347.31195656413314" y1="627.6909932911755" y2="627.2109565220761"/>
+  <line stroke="#888888" x1="418.57372087039977" x2="435.8596435720536" y1="632.2477560135293" y2="627.2109565220762"/>
+  <line stroke="#888888" x1="435.8596435720536" x2="435.9995174449274" y1="627.2109565220762" y2="627.6909932911755"/>
+  <line stroke="#888888" x1="435.9995174449274" x2="418.7135947432736" y1="627.6909932911755" y2="632.7277927826285"/>
+  <line stroke="#888888" x1="418.7135947432736" x2="418.57372087039977" y1="632.7277927826285" y2="632.2477560135293"/>
+  <line stroke="#888888" x1="519.7143927726338" x2="510.9619976362735" y1="603.0328335454415" y2="603.0328335454415"/>
+  <line stroke="#888888" x1="510.9619976362735" x2="510.96199763627357" y1="603.0328335454415" y2="585.528043272721"/>
+  <line stroke="#888888" x1="510.96199763627357" x2="519.7143927726339" y1="585.528043272721" y2="585.528043272721"/>
+  <line stroke="#888888" x1="435.85964357205467" x2="418.5737208704009" y1="26.835549477924193" y2="21.79874998647114"/>
+  <line stroke="#888888" x1="418.5737208704009" x2="418.7135947432747" y1="21.79874998647114" y2="21.318713217371855"/>
+  <line stroke="#888888" x1="418.7135947432747" x2="435.99951744492853" y1="21.318713217371855" y2="26.355512708824907"/>
+  <line stroke="#888888" x1="435.99951744492853" x2="435.85964357205467" y1="26.355512708824907" y2="26.835549477924193"/>
+  <line stroke="#888888" x1="519.7143927726348" x2="510.9619976362745" y1="68.51846272727973" y2="68.51846272727973"/>
+  <line stroke="#888888" x1="510.9619976362745" x2="510.96199763627453" y1="68.51846272727973" y2="51.01367245455919"/>
+  <line stroke="#888888" x1="510.96199763627453" x2="519.7143927726348" y1="51.01367245455919" y2="51.01367245455919"/>
+  <line stroke="#888888" x1="498.8358000680938" x2="498.8358000680938" y1="349.4550711818184" y2="337.8641620909094"/>
+  <line stroke="#888888" x1="498.8358000680938" x2="499.3358000680938" y1="337.8641620909094" y2="337.8641620909095"/>
+  <line stroke="#888888" x1="499.3358000680938" x2="499.3358000680938" y1="337.8641620909095" y2="349.4550711818185"/>
+  <line stroke="#888888" x1="499.3358000680938" x2="498.8358000680938" y1="349.4550711818185" y2="349.4550711818184"/>
+  <line stroke="#888888" x1="498.83580006809376" x2="498.83580006809376" y1="377.18234390909123" y2="365.5914348181821"/>
+  <line stroke="#888888" x1="498.83580006809376" x2="499.33580006809376" y1="365.5914348181821" y2="365.59143481818217"/>
+  <line stroke="#888888" x1="499.33580006809376" x2="499.33580006809376" y1="365.59143481818217" y2="377.1823439090913"/>
+  <line stroke="#888888" x1="499.33580006809376" x2="498.83580006809376" y1="377.1823439090913" y2="377.18234390909123"/>
+  <line stroke="#888888" x1="514.0858000680939" x2="509.0858000680939" y1="315.9323439090912" y2="315.9323439090912"/>
+  <line stroke="#888888" x1="509.0858000680939" x2="509.0858000680939" y1="315.9323439090912" y2="304.84143481818217"/>
+  <line stroke="#888888" x1="509.0858000680939" x2="514.0858000680939" y1="304.84143481818217" y2="304.84143481818217"/>
+  <line stroke="#888888" x1="514.085800068094" x2="509.08580006809393" y1="288.20507118181854" y2="288.2050711818185"/>
+  <line stroke="#888888" x1="509.08580006809393" x2="509.08580006809393" y1="288.2050711818185" y2="277.11416209090936"/>
+  <line stroke="#888888" x1="509.08580006809393" x2="514.085800068094" y1="277.11416209090936" y2="277.11416209090936"/>
+  <line stroke="#888888" x1="263.457207363553" x2="272.2096024999133" y1="585.5280432727208" y2="585.5280432727208"/>
+  <line stroke="#888888" x1="272.2096024999133" x2="272.2096024999133" y1="585.5280432727208" y2="603.0328335454411"/>
+  <line stroke="#888888" x1="272.2096024999133" x2="263.457207363553" y1="603.0328335454411" y2="603.0328335454411"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="284.33580006809353" y1="365.5914348181819" y2="377.182343909091"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="283.83580006809353" y1="377.182343909091" y2="377.182343909091"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="283.83580006809353" y1="377.182343909091" y2="365.5914348181819"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="284.33580006809353" y1="365.5914348181819" y2="365.5914348181819"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="284.33580006809353" y1="337.8641620909091" y2="349.45507118181825"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="283.83580006809353" y1="349.45507118181825" y2="349.45507118181825"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="283.83580006809353" y1="349.45507118181825" y2="337.8641620909091"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="284.33580006809353" y1="337.8641620909091" y2="337.8641620909091"/>
+  <line stroke="#888888" x1="221.94717806890824" x2="221.94717806890824" y1="309.023253" y2="298.02325299999995"/>
+  <line stroke="#888888" x1="221.94717806890824" x2="234.94717806890824" y1="298.02325299999995" y2="298.02325299999995"/>
+  <line stroke="#888888" x1="234.94717806890824" x2="234.94717806890824" y1="298.02325299999995" y2="309.023253"/>
+  <line stroke="#888888" x1="234.94717806890824" x2="221.94717806890824" y1="309.023253" y2="309.023253"/>
+  <line stroke="#888888" x1="223.44717806890822" x2="223.44717806890824" y1="277.523253" y2="271.52325299999995"/>
+  <line stroke="#888888" x1="223.44717806890824" x2="233.44717806890827" y1="271.52325299999995" y2="271.52325299999995"/>
+  <line stroke="#888888" x1="233.44717806890827" x2="233.44717806890824" y1="271.52325299999995" y2="277.523253"/>
+  <line stroke="#888888" x1="233.44717806890824" x2="223.44717806890822" y1="277.523253" y2="277.523253"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="188.05855606972293" y1="304.59143481818177" y2="316.1823439090909"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="187.55855606972293" y1="316.1823439090909" y2="316.1823439090909"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="187.55855606972293" y1="316.1823439090909" y2="304.59143481818177"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="188.05855606972293" y1="304.59143481818177" y2="304.59143481818177"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="188.05855606972293" y1="276.8641620909091" y2="288.45507118181814"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="187.55855606972293" y1="288.45507118181814" y2="288.45507118181814"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="187.55855606972293" y1="288.45507118181814" y2="276.8641620909091"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="188.05855606972293" y1="276.8641620909091" y2="276.8641620909091"/>
+  <line stroke="#888888" x1="232.44717806890824" x2="232.44717806890824" y1="258.523253" y2="263.523253"/>
+  <line stroke="#888888" x1="232.44717806890824" x2="224.44717806890824" y1="263.523253" y2="263.523253"/>
+  <line stroke="#888888" x1="224.44717806890824" x2="224.44717806890824" y1="263.523253" y2="258.523253"/>
+  <line stroke="#888888" x1="224.44717806890822" x2="224.44717806890822" y1="334.52325299999995" y2="329.52325299999995"/>
+  <line stroke="#888888" x1="224.44717806890822" x2="232.44717806890822" y1="329.52325299999995" y2="329.52325299999995"/>
+  <line stroke="#888888" x1="232.44717806890822" x2="232.44717806890822" y1="329.52325299999995" y2="334.52325299999995"/>
+  <line opacity="0.5" stroke="#0000ff" x1="543.090590340815" x2="604.090590340815" y1="315.02325300000007" y2="315.02325300000007"/>
+  <line opacity="0.5" stroke="#0000ff" x1="604.090590340815" x2="604.090590340815" y1="315.02325300000007" y2="339.023253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="604.090590340815" x2="543.090590340815" y1="339.023253" y2="339.023253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="543.090590340815" x2="543.090590340815" y1="339.023253" y2="315.02325300000007"/>
+  <line stroke="#000000" x1="543.090590340815" x2="543.090590340815" y1="308.02325300000007" y2="315.02325300000007"/>
+  <line stroke="#000000" x1="579.090590340815" x2="543.090590340815" y1="308.02325300000007" y2="308.02325300000007"/>
+  <line stroke="#000000" x1="579.090590340815" x2="579.090590340815" y1="315.02325300000007" y2="308.02325300000007"/>
+  <line stroke="#000000" x1="611.0905903408149" x2="604.090590340815" y1="315.02325300000007" y2="315.02325300000007"/>
+  <line stroke="#000000" x1="611.0905903408149" x2="611.0905903408149" y1="339.023253" y2="315.02325300000007"/>
+  <line stroke="#000000" x1="604.090590340815" x2="611.0905903408149" y1="339.023253" y2="339.023253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="604.090590340815" x2="604.090590340815" y1="339.023253" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="568.090590340815" x2="604.090590340815" y1="400.02325300000007" y2="400.02325300000007"/>
+  <line opacity="0.5" stroke="#0000ff" x1="568.090590340815" x2="568.090590340815" y1="339.023253" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="628.0905903408149" x2="604.090590340815" y1="339.023253" y2="339.023253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="628.0905903408149" x2="628.0905903408149" y1="339.023253" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="604.090590340815" x2="628.0905903408149" y1="400.02325300000007" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="664.0905903408149" x2="628.0905903408149" y1="339.023253" y2="339.023253"/>
+  <line stroke="#000000" x1="664.0905903408149" x2="664.0905903408149" y1="400.02325300000007" y2="339.023253"/>
+  <line stroke="#000000" x1="628.0905903408149" x2="664.0905903408149" y1="400.02325300000007" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="568.090590340815" x2="544.0905903408149" y1="339.023253" y2="339.023253"/>
+  <line stroke="#000000" x1="544.0905903408149" x2="568.090590340815" y1="400.02325300000007" y2="400.02325300000007"/>
+  <line opacity="0.5" stroke="#0000ff" x1="544.0905903408149" x2="544.0905903408149" y1="400.02325300000007" y2="339.023253"/>
+  <line stroke="#000000" x1="534.0905903408149" x2="544.0905903408149" y1="400.02325300000007" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="534.0905903408149" x2="534.0905903408149" y1="339.023253" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="544.0905903408149" x2="534.0905903408149" y1="339.023253" y2="339.023253"/>
+  <line stroke="#000000" x1="536.090590340815" x2="543.090590340815" y1="339.023253" y2="339.023253"/>
+  <line stroke="#000000" x1="536.090590340815" x2="536.090590340815" y1="315.02325300000007" y2="339.023253"/>
+  <line stroke="#000000" x1="543.090590340815" x2="536.090590340815" y1="315.02325300000007" y2="315.02325300000007"/>
+  <line stroke="#888888" x1="567.090590340815" x2="570.590590340815" y1="309.77325300000007" y2="309.77325300000007"/>
+  <line stroke="#888888" x1="570.590590340815" x2="567.090590340815" y1="309.77325300000007" y2="313.27325300000007"/>
+  <line stroke="#888888" x1="567.090590340815" x2="555.0905903408149" y1="313.27325300000007" y2="313.27325300000007"/>
+  <line stroke="#888888" x1="555.0905903408149" x2="551.590590340815" y1="313.27325300000007" y2="309.77325300000007"/>
+  <line stroke="#888888" x1="551.590590340815" x2="555.0905903408149" y1="309.77325300000007" y2="309.77325300000007"/>
+  <line stroke="#888888" x1="609.340590340815" x2="605.8405903408149" y1="331.02325300000007" y2="331.02325300000007"/>
+  <line stroke="#888888" x1="605.8405903408149" x2="605.8405903408149" y1="331.02325300000007" y2="323.02325300000007"/>
+  <line stroke="#888888" x1="605.8405903408149" x2="609.340590340815" y1="323.02325300000007" y2="323.02325300000007"/>
+  <line stroke="#888888" x1="581.2048760551007" x2="581.2048760551007" y1="393.773253" y2="375.773253"/>
+  <line stroke="#888888" x1="581.2048760551007" x2="601.7763046265293" y1="375.773253" y2="375.773253"/>
+  <line stroke="#888888" x1="601.7763046265293" x2="601.7763046265293" y1="375.773253" y2="393.773253"/>
+  <line stroke="#888888" x1="601.7763046265293" x2="581.2048760551007" y1="393.773253" y2="393.773253"/>
+  <line stroke="#888888" x1="604.590590340815" x2="604.590590340815" y1="352.273253" y2="349.27325300000007"/>
+  <line stroke="#888888" x1="604.590590340815" x2="607.590590340815" y1="349.27325300000007" y2="349.27325300000007"/>
+  <line stroke="#888888" x1="607.590590340815" x2="607.590590340815" y1="349.27325300000007" y2="352.273253"/>
+  <line stroke="#888888" x1="607.590590340815" x2="604.590590340815" y1="352.273253" y2="352.273253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="351.27325300000007" y2="350.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="350.27325300000007" y2="350.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="350.27325300000007" y2="351.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="351.27325300000007" y2="351.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="353.77325300000007" y2="352.773253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="352.773253" y2="352.773253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="352.773253" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="353.77325300000007" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="353.77325300000007" y2="352.773253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="352.773253" y2="352.773253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="352.773253" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="353.77325300000007" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="356.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="355.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="355.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="356.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="356.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="355.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="355.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="356.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="358.77325300000007" y2="357.773253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="357.773253" y2="357.773253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="357.773253" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="358.77325300000007" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="358.77325300000007" y2="357.773253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="357.773253" y2="357.773253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="357.773253" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="358.77325300000007" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="361.273253" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="360.27325300000007" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="360.27325300000007" y2="361.273253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="361.273253" y2="361.273253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="361.273253" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="360.27325300000007" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="360.27325300000007" y2="361.273253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="361.273253" y2="361.273253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="363.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="362.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="362.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="363.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="363.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="362.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="362.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="363.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="366.273253" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="365.27325300000007" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="365.27325300000007" y2="366.273253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="366.273253" y2="366.273253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="366.273253" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="365.27325300000007" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="365.27325300000007" y2="366.273253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="366.273253" y2="366.273253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="368.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="367.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="367.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="368.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="368.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="367.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="367.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="368.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="371.273253" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="370.27325300000007" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="370.27325300000007" y2="371.273253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="371.273253" y2="371.273253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="371.273253" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="370.27325300000007" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="370.27325300000007" y2="371.273253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="371.273253" y2="371.273253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="373.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="372.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="372.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="373.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="373.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="372.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="372.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="373.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="376.27325300000007" y2="375.273253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="375.273253" y2="375.273253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="375.273253" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="376.27325300000007" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="376.27325300000007" y2="375.273253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="375.273253" y2="375.273253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="375.273253" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="376.27325300000007" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="378.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="377.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="377.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="378.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="378.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="377.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="377.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="378.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="381.27325300000007" y2="380.273253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="380.273253" y2="380.273253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="380.273253" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="381.27325300000007" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="381.27325300000007" y2="380.273253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="380.273253" y2="380.273253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="380.273253" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="381.27325300000007" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="383.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="382.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="382.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="383.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="383.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="382.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="382.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="383.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="386.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="385.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="385.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="386.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="386.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="385.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="385.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="386.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="388.773253" y2="387.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="387.77325300000007" y2="387.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="387.77325300000007" y2="388.773253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="388.773253" y2="388.773253"/>
+  <line stroke="#888888" x1="624.590590340815" x2="624.590590340815" y1="389.77325300000007" y2="386.77325300000007"/>
+  <line stroke="#888888" x1="624.590590340815" x2="627.5905903408149" y1="386.77325300000007" y2="386.77325300000007"/>
+  <line stroke="#888888" x1="627.5905903408149" x2="627.5905903408149" y1="386.77325300000007" y2="389.77325300000007"/>
+  <line stroke="#888888" x1="627.5905903408149" x2="624.590590340815" y1="389.77325300000007" y2="389.77325300000007"/>
+  <line stroke="#888888" x1="620.340590340815" x2="611.840590340815" y1="346.77325300000007" y2="346.77325300000007"/>
+  <line stroke="#888888" x1="611.840590340815" x2="611.840590340815" y1="346.77325300000007" y2="346.27325300000007"/>
+  <line stroke="#888888" x1="611.840590340815" x2="620.340590340815" y1="346.27325300000007" y2="346.27325300000007"/>
+  <line stroke="#888888" x1="620.340590340815" x2="620.340590340815" y1="346.27325300000007" y2="346.77325300000007"/>
+  <line stroke="#888888" x1="611.840590340815" x2="620.340590340815" y1="394.52325300000007" y2="394.52325300000007"/>
+  <line stroke="#888888" x1="620.340590340815" x2="620.340590340815" y1="394.52325300000007" y2="395.02325300000007"/>
+  <line stroke="#888888" x1="620.340590340815" x2="611.840590340815" y1="395.02325300000007" y2="395.02325300000007"/>
+  <line stroke="#888888" x1="611.840590340815" x2="611.840590340815" y1="395.02325300000007" y2="394.52325300000007"/>
+  <line stroke="#888888" x1="633.6448760551007" x2="633.6448760551007" y1="395.54325300000005" y2="382.54325300000005"/>
+  <line stroke="#888888" x1="633.6448760551007" x2="654.2163046265292" y1="382.54325300000005" y2="382.54325300000005"/>
+  <line stroke="#888888" x1="654.2163046265292" x2="654.2163046265292" y1="382.54325300000005" y2="395.54325300000005"/>
+  <line stroke="#888888" x1="654.2163046265292" x2="633.6448760551007" y1="395.54325300000005" y2="395.54325300000005"/>
+  <line stroke="#888888" x1="652.340590340815" x2="639.8405903408149" y1="344.52325300000007" y2="344.52325300000007"/>
+  <line stroke="#888888" x1="639.8405903408149" x2="639.8405903408149" y1="344.52325300000007" y2="344.023253"/>
+  <line stroke="#888888" x1="639.8405903408149" x2="652.340590340815" y1="344.023253" y2="344.023253"/>
+  <line stroke="#888888" x1="652.340590340815" x2="652.340590340815" y1="344.023253" y2="344.52325300000007"/>
+  <line stroke="#888888" x1="656.340590340815" x2="656.340590340815" y1="361.45507118181825" y2="349.86416209090913"/>
+  <line stroke="#888888" x1="656.340590340815" x2="656.840590340815" y1="349.86416209090913" y2="349.86416209090913"/>
+  <line stroke="#888888" x1="656.840590340815" x2="656.840590340815" y1="349.86416209090913" y2="361.45507118181825"/>
+  <line stroke="#888888" x1="656.840590340815" x2="656.340590340815" y1="361.45507118181825" y2="361.45507118181825"/>
+  <line stroke="#888888" x1="656.340590340815" x2="656.340590340815" y1="389.182343909091" y2="377.5914348181818"/>
+  <line stroke="#888888" x1="656.340590340815" x2="656.840590340815" y1="377.5914348181818" y2="377.5914348181818"/>
+  <line stroke="#888888" x1="656.840590340815" x2="656.840590340815" y1="377.5914348181818" y2="389.182343909091"/>
+  <line stroke="#888888" x1="656.840590340815" x2="656.340590340815" y1="389.182343909091" y2="389.182343909091"/>
+  <line stroke="#888888" x1="544.5905903408149" x2="544.5905903408149" y1="352.273253" y2="349.27325300000007"/>
+  <line stroke="#888888" x1="544.5905903408149" x2="547.5905903408149" y1="349.27325300000007" y2="349.27325300000007"/>
+  <line stroke="#888888" x1="547.5905903408149" x2="547.5905903408149" y1="349.27325300000007" y2="352.273253"/>
+  <line stroke="#888888" x1="547.5905903408149" x2="544.5905903408149" y1="352.273253" y2="352.273253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="351.27325300000007" y2="350.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="350.27325300000007" y2="350.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="350.27325300000007" y2="351.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="351.27325300000007" y2="351.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="353.77325300000007" y2="352.773253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="352.773253" y2="352.773253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="352.773253" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="353.77325300000007" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="353.77325300000007" y2="352.773253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="352.773253" y2="352.773253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="352.773253" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="353.77325300000007" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="356.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="355.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="355.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="356.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="356.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="355.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="355.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="356.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="358.77325300000007" y2="357.773253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="357.773253" y2="357.773253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="357.773253" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="358.77325300000007" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="358.77325300000007" y2="357.773253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="357.773253" y2="357.773253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="357.773253" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="358.77325300000007" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="361.273253" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="360.27325300000007" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="360.27325300000007" y2="361.273253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="361.273253" y2="361.273253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="361.273253" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="360.27325300000007" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="360.27325300000007" y2="361.273253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="361.273253" y2="361.273253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="363.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="362.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="362.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="363.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="363.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="362.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="362.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="363.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="366.273253" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="365.27325300000007" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="365.27325300000007" y2="366.273253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="366.273253" y2="366.273253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="366.273253" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="365.27325300000007" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="365.27325300000007" y2="366.273253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="366.273253" y2="366.273253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="368.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="367.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="367.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="368.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="368.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="367.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="367.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="368.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="371.273253" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="370.27325300000007" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="370.27325300000007" y2="371.273253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="371.273253" y2="371.273253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="371.273253" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="370.27325300000007" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="370.27325300000007" y2="371.273253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="371.273253" y2="371.273253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="373.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="372.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="372.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="373.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="373.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="372.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="372.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="373.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="376.27325300000007" y2="375.273253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="375.273253" y2="375.273253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="375.273253" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="376.27325300000007" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="376.27325300000007" y2="375.273253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="375.273253" y2="375.273253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="375.273253" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="376.27325300000007" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="378.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="377.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="377.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="378.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="378.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="377.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="377.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="378.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="381.27325300000007" y2="380.273253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="380.273253" y2="380.273253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="380.273253" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="381.27325300000007" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="381.27325300000007" y2="380.273253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="380.273253" y2="380.273253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="380.273253" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="381.27325300000007" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="383.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="382.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="382.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="383.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="383.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="382.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="382.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="383.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="386.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="385.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="385.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="386.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="386.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="385.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="385.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="386.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="388.773253" y2="387.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="387.77325300000007" y2="387.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="387.77325300000007" y2="388.773253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="388.773253" y2="388.773253"/>
+  <line stroke="#888888" x1="564.5905903408149" x2="564.5905903408149" y1="389.77325300000007" y2="386.77325300000007"/>
+  <line stroke="#888888" x1="564.5905903408149" x2="567.590590340815" y1="386.77325300000007" y2="386.77325300000007"/>
+  <line stroke="#888888" x1="567.590590340815" x2="567.590590340815" y1="386.77325300000007" y2="389.77325300000007"/>
+  <line stroke="#888888" x1="567.590590340815" x2="564.5905903408149" y1="389.77325300000007" y2="389.77325300000007"/>
+  <line stroke="#888888" x1="560.3405903408149" x2="551.8405903408149" y1="346.77325300000007" y2="346.77325300000007"/>
+  <line stroke="#888888" x1="551.8405903408149" x2="551.8405903408149" y1="346.77325300000007" y2="346.27325300000007"/>
+  <line stroke="#888888" x1="551.8405903408149" x2="560.3405903408149" y1="346.27325300000007" y2="346.27325300000007"/>
+  <line stroke="#888888" x1="560.3405903408149" x2="560.3405903408149" y1="346.27325300000007" y2="346.77325300000007"/>
+  <line stroke="#888888" x1="551.8405903408149" x2="560.3405903408149" y1="394.52325300000007" y2="394.52325300000007"/>
+  <line stroke="#888888" x1="560.3405903408149" x2="560.3405903408149" y1="394.52325300000007" y2="395.02325300000007"/>
+  <line stroke="#888888" x1="560.3405903408149" x2="551.8405903408149" y1="395.02325300000007" y2="395.02325300000007"/>
+  <line stroke="#888888" x1="551.8405903408149" x2="551.8405903408149" y1="395.02325300000007" y2="394.52325300000007"/>
+  <line stroke="#888888" x1="536.590590340815" x2="541.5905903408149" y1="350.11416209090913" y2="350.11416209090913"/>
+  <line stroke="#888888" x1="541.5905903408149" x2="541.5905903408149" y1="350.11416209090913" y2="361.20507118181825"/>
+  <line stroke="#888888" x1="541.5905903408149" x2="536.590590340815" y1="361.20507118181825" y2="361.20507118181825"/>
+  <line stroke="#888888" x1="536.590590340815" x2="541.5905903408149" y1="377.8414348181818" y2="377.8414348181818"/>
+  <line stroke="#888888" x1="541.5905903408149" x2="541.5905903408149" y1="377.8414348181818" y2="388.932343909091"/>
+  <line stroke="#888888" x1="541.5905903408149" x2="536.590590340815" y1="388.932343909091" y2="388.932343909091"/>
+  <line stroke="#888888" x1="537.8405903408149" x2="541.340590340815" y1="323.02325300000007" y2="323.02325300000007"/>
+  <line stroke="#888888" x1="541.340590340815" x2="541.340590340815" y1="323.02325300000007" y2="331.02325300000007"/>
+  <line stroke="#888888" x1="541.340590340815" x2="537.8405903408149" y1="331.02325300000007" y2="331.02325300000007"/>
 </svg>
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-autofold-default.dxf b/rocolib/builders/output/BoatWithStackBattery/graph-autofold-default.dxf
index 9c02b01a9d9307284e6ee99d8caf3ac258ca7c2a..c15a451209a33f47378dcc8215d61560b7903a7a 100644
--- a/rocolib/builders/output/BoatWithStackBattery/graph-autofold-default.dxf
+++ b/rocolib/builders/output/BoatWithStackBattery/graph-autofold-default.dxf
@@ -1045,13 +1045,13 @@ cut
  10
 160.30855606972293
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 98.65427803486146
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1063,13 +1063,13 @@ cut
  10
 98.65427803486146
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 160.30855606972293
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1083,13 +1083,13 @@ DOTTED
  10
 98.65427803486146
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 98.65427803486146
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1101,13 +1101,13 @@ cut
  10
 170.30855606972293
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 160.30855606972293
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1119,13 +1119,13 @@ cut
  10
 170.30855606972293
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 170.30855606972293
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1137,13 +1137,13 @@ cut
  10
 160.30855606972293
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 170.30855606972293
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1155,13 +1155,13 @@ cut
  10
 71.65427803486145
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 98.65427803486146
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1175,13 +1175,13 @@ DOTTED
  10
 71.65427803486145
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 71.65427803486145
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1195,13 +1195,13 @@ DOTTED
  10
 98.65427803486146
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 71.65427803486145
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1213,13 +1213,13 @@ cut
  10
 10.000000000000002
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 71.65427803486145
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1231,13 +1231,13 @@ cut
  10
 71.65427803486145
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 10.000000000000002
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1249,13 +1249,13 @@ cut
  10
 0.0
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 10.000000000000002
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1267,13 +1267,13 @@ cut
  10
 0.0
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 0.0
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1285,13 +1285,13 @@ cut
  10
 10.000000000000002
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 0.0
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1303,13 +1303,13 @@ cut
  10
 98.65427803486146
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 98.65427803486146
  21
-103.52325300000001
+279.523253
  31
 0.0
   0
@@ -1321,13 +1321,13 @@ cut
  10
 71.65427803486145
  20
-103.52325300000001
+279.523253
  30
 0.0
  11
 71.65427803486145
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1341,13 +1341,13 @@ DOTTED
  10
 98.65427803486146
  20
-103.52325300000001
+279.523253
  30
 0.0
  11
 71.65427803486145
  21
-103.52325300000001
+279.523253
  31
 0.0
   0
@@ -1359,13 +1359,13 @@ cut
  10
 98.65427803486146
  20
-103.52325300000001
+279.523253
  30
 0.0
  11
 98.65427803486146
  21
-42.52325300000002
+218.523253
  31
 0.0
   0
@@ -1377,13 +1377,13 @@ cut
  10
 71.65427803486145
  20
-42.52325300000002
+218.523253
  30
 0.0
  11
 71.65427803486145
  21
-103.52325300000001
+279.523253
  31
 0.0
   0
@@ -1397,13 +1397,13 @@ DOTTED
  10
 98.65427803486146
  20
-42.52325300000002
+218.523253
  30
 0.0
  11
 71.65427803486145
  21
-42.52325300000002
+218.523253
  31
 0.0
   0
@@ -1415,13 +1415,13 @@ cut
  10
 98.65427803486146
  20
-42.52325300000002
+218.523253
  30
 0.0
  11
 98.65427803486146
  21
-25.523253000000015
+201.52325300000004
  31
 0.0
   0
@@ -1433,13 +1433,13 @@ cut
  10
 71.65427803486145
  20
-25.523253000000015
+201.52325300000004
  30
 0.0
  11
 71.65427803486145
  21
-42.52325300000002
+218.523253
  31
 0.0
   0
@@ -1453,13 +1453,13 @@ DOTTED
  10
 71.65427803486145
  20
-25.523253000000015
+201.52325300000004
  30
 0.0
  11
 98.65427803486146
  21
-25.523253000000015
+201.52325300000004
  31
 0.0
   0
@@ -1471,13 +1471,13 @@ cut
  10
 71.65427803486145
  20
-15.523253000000013
+191.52325300000004
  30
 0.0
  11
 71.65427803486145
  21
-25.523253000000015
+201.52325300000004
  31
 0.0
   0
@@ -1489,13 +1489,13 @@ cut
  10
 98.65427803486146
  20
-15.523253000000013
+191.52325300000004
  30
 0.0
  11
 71.65427803486145
  21
-15.523253000000013
+191.52325300000004
  31
 0.0
   0
@@ -1507,13 +1507,13 @@ cut
  10
 98.65427803486146
  20
-25.523253000000015
+201.52325300000004
  30
 0.0
  11
 98.65427803486146
  21
-15.523253000000013
+191.52325300000004
  31
 0.0
   0
@@ -1525,13 +1525,13 @@ cut
  10
 167.80855606972293
  20
-170.43234390909095
+346.432343909091
  30
 0.0
  11
 162.80855606972293
  21
-170.43234390909095
+346.432343909091
  31
 0.0
   0
@@ -1543,13 +1543,13 @@ cut
  10
 162.80855606972293
  20
-170.43234390909095
+346.432343909091
  30
 0.0
  11
 162.80855606972293
  21
-159.34143481818182
+335.3414348181819
  31
 0.0
   0
@@ -1561,13 +1561,13 @@ cut
  10
 162.80855606972293
  20
-159.34143481818182
+335.3414348181819
  30
 0.0
  11
 167.80855606972293
  21
-159.34143481818182
+335.3414348181819
  31
 0.0
   0
@@ -1579,13 +1579,13 @@ cut
  10
 167.80855606972293
  20
-142.7050711818182
+318.7050711818182
  30
 0.0
  11
 162.80855606972293
  21
-142.7050711818182
+318.7050711818182
  31
 0.0
   0
@@ -1597,13 +1597,13 @@ cut
  10
 162.80855606972293
  20
-142.7050711818182
+318.7050711818182
  30
 0.0
  11
 162.80855606972293
  21
-131.61416209090913
+307.61416209090913
  31
 0.0
   0
@@ -1615,13 +1615,13 @@ cut
  10
 162.80855606972293
  20
-131.61416209090913
+307.61416209090913
  30
 0.0
  11
 167.80855606972293
  21
-131.61416209090913
+307.61416209090913
  31
 0.0
   0
@@ -1633,13 +1633,13 @@ cut
  10
 94.15427803486146
  20
-118.02325300000003
+294.023253
  30
 0.0
  11
 94.15427803486146
  21
-124.02325300000003
+300.02325300000007
  31
 0.0
   0
@@ -1651,13 +1651,13 @@ cut
  10
 94.15427803486146
  20
-124.02325300000003
+300.02325300000007
  30
 0.0
  11
 76.15427803486145
  21
-124.02325300000003
+300.02325300000007
  31
 0.0
   0
@@ -1669,13 +1669,13 @@ cut
  10
 76.15427803486145
  20
-124.02325300000003
+300.02325300000007
  30
 0.0
  11
 76.15427803486145
  21
-118.02325300000003
+294.023253
  31
 0.0
   0
@@ -1687,13 +1687,13 @@ cut
  10
 76.15427803486145
  20
-118.02325300000003
+294.023253
  30
 0.0
  11
 94.15427803486146
  21
-118.02325300000003
+294.023253
  31
 0.0
   0
@@ -1705,13 +1705,13 @@ cut
  10
 80.40427803486146
  20
-173.77325300000004
+349.77325300000007
  30
 0.0
  11
 89.90427803486145
  21
-173.77325300000004
+349.77325300000007
  31
 0.0
   0
@@ -1723,13 +1723,13 @@ cut
  10
 89.90427803486145
  20
-173.77325300000004
+349.77325300000007
  30
 0.0
  11
 89.90427803486145
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -1741,13 +1741,13 @@ cut
  10
 89.90427803486145
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
 80.40427803486146
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -1759,13 +1759,13 @@ cut
  10
 80.40427803486146
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
 80.40427803486146
  21
-173.77325300000004
+349.77325300000007
  31
 0.0
   0
@@ -1777,13 +1777,13 @@ cut
  10
 2.5000000000000004
  20
-131.61416209090913
+307.6141620909092
  30
 0.0
  11
 7.500000000000001
  21
-131.61416209090913
+307.6141620909092
  31
 0.0
   0
@@ -1795,13 +1795,13 @@ cut
  10
 7.500000000000001
  20
-131.61416209090913
+307.6141620909092
  30
 0.0
  11
 7.500000000000001
  21
-142.7050711818182
+318.7050711818182
  31
 0.0
   0
@@ -1813,13 +1813,13 @@ cut
  10
 7.500000000000001
  20
-142.7050711818182
+318.7050711818182
  30
 0.0
  11
 2.5000000000000004
  21
-142.7050711818182
+318.7050711818182
  31
 0.0
   0
@@ -1831,13 +1831,13 @@ cut
  10
 2.5000000000000004
  20
-159.34143481818185
+335.3414348181819
  30
 0.0
  11
 7.500000000000001
  21
-159.34143481818185
+335.3414348181819
  31
 0.0
   0
@@ -1849,13 +1849,13 @@ cut
  10
 7.500000000000001
  20
-159.34143481818185
+335.3414348181819
  30
 0.0
  11
 7.500000000000001
  21
-170.43234390909095
+346.432343909091
  31
 0.0
   0
@@ -1867,13 +1867,13 @@ cut
  10
 7.500000000000001
  20
-170.43234390909095
+346.432343909091
  30
 0.0
  11
 2.5000000000000004
  21
-170.43234390909095
+346.432343909091
  31
 0.0
   0
@@ -1885,13 +1885,13 @@ cut
  10
 89.65427803486146
  20
-18.023253000000015
+194.02325300000004
  30
 0.0
  11
 89.65427803486146
  21
-23.02325300000001
+199.02325300000004
  31
 0.0
   0
@@ -1903,13 +1903,13 @@ cut
  10
 89.65427803486146
  20
-23.02325300000001
+199.02325300000004
  30
 0.0
  11
 80.65427803486146
  21
-23.02325300000001
+199.02325300000004
  31
 0.0
   0
@@ -1921,13 +1921,13 @@ cut
  10
 80.65427803486146
  20
-23.02325300000001
+199.02325300000004
  30
 0.0
  11
 80.65427803486146
  21
-18.023253000000015
+194.02325300000004
  31
 0.0
   0
@@ -1939,15 +1939,15 @@ DOTTED
   8
 90
  10
-436.5858000680936
+436.5858000680937
  20
 86.02325300000003
  30
 0.0
  11
-436.5858000680936
+436.5858000680937
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -1959,15 +1959,15 @@ DOTTED
   8
 90
  10
-346.5858000680936
+346.5858000680937
  20
 86.02325300000003
  30
 0.0
  11
-346.5858000680936
+346.5858000680937
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -1979,13 +1979,13 @@ DOTTED
   8
 54.462322208025626
  10
-391.5858000680936
+391.5858000680937
  20
 86.02325300000003
  30
 0.0
  11
-346.5858000680936
+346.5858000680937
  21
 86.02325300000003
  31
@@ -1999,13 +1999,13 @@ DOTTED
   8
 54.462322208025626
  10
-436.5858000680936
+436.5858000680937
  20
 86.02325300000003
  30
 0.0
  11
-391.5858000680936
+391.5858000680937
  21
 86.02325300000003
  31
@@ -2019,13 +2019,13 @@ DOTTED
   8
 57.019129652304315
  10
-391.5858000680936
+391.5858000680937
  20
-3.2957373719000316e-07
+3.295737656117126e-07
  30
 0.0
  11
-346.5858000680936
+346.5858000680937
  21
 86.02325300000003
  31
@@ -2037,13 +2037,13 @@ LINE
   8
 cut
  10
-377.4211156634208
+377.4211156634209
  20
 4.127328470363296
  30
 0.0
  11
-327.0034578657572
+327.0034578657573
  21
 18.818105326100866
  31
@@ -2055,13 +2055,13 @@ LINE
   8
 cut
  10
-391.5858000680936
+391.5858000680937
  20
 3.295737656117126e-07
  30
 0.0
  11
-377.4211156634208
+377.4211156634209
  21
 4.127328470363296
  31
@@ -2075,13 +2075,13 @@ DOTTED
   8
 180
  10
-346.5858000680936
+346.5858000680937
  20
 86.02325300000005
  30
 0.0
  11
-327.0034578657572
+327.0034578657573
  21
 18.818105326100866
  31
@@ -2095,15 +2095,15 @@ DOTTED
   8
 -180
  10
-346.5858000680936
+346.5858000680937
  20
-86.02325300000003
+86.02325300000005
  30
 0.0
  11
-276.5858000680936
+276.58580006809376
  21
-33.50888218183837
+33.50888218183843
  31
 0.0
   0
@@ -2113,15 +2113,15 @@ LINE
   8
 cut
  10
-327.0034578657572
+327.0034578657573
  20
-18.818105326100834
+18.818105326100866
  30
 0.0
  11
-276.5858000680936
+276.58580006809376
  21
-33.50888218183837
+33.50888218183843
  31
 0.0
   0
@@ -2133,15 +2133,15 @@ DOTTED
   8
 -174
  10
-276.58580006809353
+276.5858000680937
  20
-86.02325299999998
+86.02325299999997
  30
 0.0
  11
-276.5858000680936
+276.58580006809376
  21
-33.508882181838395
+33.50888218183837
  31
 0.0
   0
@@ -2153,15 +2153,15 @@ DOTTED
   8
 41.987212495816664
  10
-346.5858000680936
+346.5858000680937
  20
-86.02325300000003
+86.023253
  30
 0.0
  11
-276.58580006809353
+276.5858000680937
  21
-86.02325299999998
+86.02325299999997
  31
 0.0
   0
@@ -2171,13 +2171,13 @@ LINE
   8
 cut
  10
-259.08100979537306
+259.0810097953732
  20
 86.02325299999997
  30
 0.0
  11
-276.58580006809353
+276.5858000680937
  21
 86.02325299999997
  31
@@ -2189,13 +2189,13 @@ LINE
   8
 cut
  10
-259.08100979537306
+259.0810097953732
  20
-33.508882181838366
+33.50888218183837
  30
 0.0
  11
-259.08100979537306
+259.0810097953732
  21
 86.02325299999997
  31
@@ -2207,15 +2207,15 @@ LINE
   8
 cut
  10
-276.5858000680936
+276.58580006809376
  20
 33.50888218183837
  30
 0.0
  11
-259.08100979537306
+259.0810097953732
  21
-33.508882181838366
+33.50888218183837
  31
 0.0
   0
@@ -2227,15 +2227,15 @@ DOTTED
   8
 41.987212495816664
  10
-276.5858000680935
+276.58580006809336
  20
-216.023253
+568.0232530000001
  30
 0.0
  11
-346.58580006809353
+346.5858000680934
  21
-216.02325300000004
+568.0232530000001
  31
 0.0
   0
@@ -2247,15 +2247,15 @@ DOTTED
   8
 -180
  10
-276.5858000680934
+276.5858000680933
  20
-268.53762381816165
+620.5376238181617
  30
 0.0
  11
-346.58580006809353
+346.5858000680934
  21
-216.02325300000004
+568.0232530000001
  31
 0.0
   0
@@ -2267,15 +2267,15 @@ DOTTED
   8
 -174
  10
-276.5858000680934
+276.5858000680933
  20
-268.53762381816165
+620.5376238181617
  30
 0.0
  11
-276.5858000680935
+276.58580006809336
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -2285,15 +2285,15 @@ LINE
   8
 cut
  10
-276.58580006809336
+276.5858000680933
  20
-268.53762381816165
+620.5376238181617
  30
 0.0
  11
-327.003457865757
+327.00345786575684
  21
-283.2284006738992
+635.2284006738995
  31
 0.0
   0
@@ -2305,15 +2305,15 @@ DOTTED
   8
 180
  10
-327.003457865757
+327.00345786575684
  20
-283.2284006738992
+635.2284006738995
  30
 0.0
  11
-346.58580006809353
+346.5858000680934
  21
-216.02325300000004
+568.0232530000001
  31
 0.0
   0
@@ -2325,15 +2325,15 @@ DOTTED
   8
 57.019129652304315
  10
-391.5858000680934
+391.5858000680933
  20
-302.04650567042637
+654.0465056704267
  30
 0.0
  11
-346.58580006809353
+346.5858000680934
  21
-216.02325300000004
+568.0232530000003
  31
 0.0
   0
@@ -2343,15 +2343,15 @@ LINE
   8
 cut
  10
-377.42111566342055
+377.42111566342044
  20
-297.9191775296369
+649.919177529637
  30
 0.0
  11
-391.5858000680934
+391.5858000680933
  21
-302.04650567042637
+654.0465056704267
  31
 0.0
   0
@@ -2361,15 +2361,15 @@ LINE
   8
 cut
  10
-327.003457865757
+327.00345786575684
  20
-283.22840067389916
+635.2284006738994
  30
 0.0
  11
-377.42111566342055
+377.42111566342044
  21
-297.9191775296369
+649.919177529637
  31
 0.0
   0
@@ -2381,15 +2381,15 @@ DOTTED
   8
 54.462322208025626
  10
-346.58580006809353
+346.5858000680934
  20
-216.023253
+568.0232530000001
  30
 0.0
  11
-391.58580006809353
+391.5858000680934
  21
-216.02325300000007
+568.0232530000003
  31
 0.0
   0
@@ -2401,15 +2401,15 @@ DOTTED
   8
 54.462322208025626
  10
-391.58580006809353
+391.5858000680934
  20
-216.02325300000012
+568.0232530000003
  30
 0.0
  11
-436.58580006809353
+436.5858000680934
  21
-216.02325300000018
+568.0232530000004
  31
 0.0
   0
@@ -2421,15 +2421,15 @@ DOTTED
   8
 57.019129652304315
  10
-391.5858000680934
+391.5858000680933
  20
-302.04650567042637
+654.0465056704267
  30
 0.0
  11
-436.58580006809353
+436.5858000680934
  21
-216.02325300000018
+568.0232530000004
  31
 0.0
   0
@@ -2439,15 +2439,15 @@ LINE
   8
 cut
  10
-405.7504844727662
+405.7504844727661
  20
-297.9191775296369
+649.919177529637
  30
 0.0
  11
-456.1681422704299
+456.16814227042977
  21
-283.2284006738994
+635.2284006738995
  31
 0.0
   0
@@ -2457,15 +2457,15 @@ LINE
   8
 cut
  10
-391.5858000680934
+391.5858000680933
  20
-302.04650567042637
+654.0465056704267
  30
 0.0
  11
-405.7504844727662
+405.7504844727661
  21
-297.9191775296369
+649.919177529637
  31
 0.0
   0
@@ -2477,15 +2477,15 @@ DOTTED
   8
 180
  10
-436.58580006809353
+436.5858000680934
  20
-216.02325300000018
+568.0232530000004
  30
 0.0
  11
-456.1681422704299
+456.16814227042977
  21
-283.2284006738994
+635.2284006738995
  31
 0.0
   0
@@ -2497,15 +2497,15 @@ DOTTED
   8
 -180
  10
-436.58580006809353
+436.5858000680934
  20
-216.02325300000018
+568.0232530000004
  30
 0.0
  11
-506.5858000680934
+506.5858000680933
  21
-268.5376238181619
+620.537623818162
  31
 0.0
   0
@@ -2515,15 +2515,15 @@ LINE
   8
 cut
  10
-456.1681422704298
+456.1681422704297
  20
-283.2284006738994
+635.2284006738995
  30
 0.0
  11
-506.5858000680934
+506.5858000680933
  21
-268.5376238181619
+620.537623818162
  31
 0.0
   0
@@ -2535,15 +2535,15 @@ DOTTED
   8
 -174
  10
-506.58580006809353
+506.5858000680934
  20
-216.02325300000032
+568.0232530000005
  30
 0.0
  11
-506.5858000680934
+506.58580006809336
  21
-268.5376238181619
+620.5376238181622
  31
 0.0
   0
@@ -2555,15 +2555,15 @@ DOTTED
   8
 41.987212495816664
  10
-436.58580006809353
+436.5858000680934
  20
-216.02325300000018
+568.0232530000004
  30
 0.0
  11
-506.58580006809353
+506.5858000680934
  21
-216.02325300000032
+568.0232530000005
  31
 0.0
   0
@@ -2573,15 +2573,15 @@ LINE
   8
 cut
  10
-524.0905903408142
+524.090590340814
  20
-216.02325300000035
+568.0232530000005
  30
 0.0
  11
-506.58580006809353
+506.5858000680934
  21
-216.02325300000032
+568.0232530000004
  31
 0.0
   0
@@ -2591,15 +2591,15 @@ LINE
   8
 cut
  10
-524.090590340814
+524.0905903408138
  20
-268.53762381816193
+620.5376238181622
  30
 0.0
  11
-524.0905903408142
+524.090590340814
  21
-216.02325300000035
+568.0232530000005
  31
 0.0
   0
@@ -2609,15 +2609,15 @@ LINE
   8
 cut
  10
-506.5858000680934
+506.5858000680933
  20
-268.5376238181619
+620.537623818162
  30
 0.0
  11
-524.090590340814
+524.0905903408138
  21
-268.53762381816193
+620.5376238181622
  31
 0.0
   0
@@ -2629,13 +2629,13 @@ DOTTED
   8
 41.987212495816664
  10
-506.58580006809376
+506.58580006809433
  20
-86.02325300000027
+86.02325300000028
  30
 0.0
  11
-436.58580006809376
+436.5858000680943
  21
 86.02325300000012
  31
@@ -2649,15 +2649,15 @@ DOTTED
   8
 -180
  10
-506.5858000680939
+506.58580006809444
  20
-33.50888218183868
+33.508882181838665
  30
 0.0
  11
-436.58580006809376
+436.5858000680943
  21
-86.02325300000012
+86.0232530000001
  31
 0.0
   0
@@ -2669,15 +2669,15 @@ DOTTED
   8
 -174
  10
-506.5858000680939
+506.58580006809444
  20
-33.50888218183868
+33.508882181838665
  30
 0.0
  11
-506.58580006809376
+506.58580006809433
  21
-86.02325300000027
+86.02325300000025
  31
 0.0
   0
@@ -2687,15 +2687,15 @@ LINE
   8
 cut
  10
-506.5858000680939
+506.58580006809444
  20
-33.50888218183864
+33.508882181838665
  30
 0.0
  11
-456.16814227043034
+456.1681422704309
  21
-18.818105326100948
+18.81810532610098
  31
 0.0
   0
@@ -2707,15 +2707,15 @@ DOTTED
   8
 180
  10
-456.16814227043034
+456.1681422704309
  20
-18.818105326100948
+18.81810532610098
  30
 0.0
  11
-436.58580006809376
+436.5858000680943
  21
-86.02325300000011
+86.02325300000012
  31
 0.0
   0
@@ -2727,13 +2727,13 @@ DOTTED
   8
 57.019129652304315
  10
-391.585800068094
+391.5858000680945
  20
 3.295737087682938e-07
  30
 0.0
  11
-436.58580006809376
+436.5858000680943
  21
 86.02325300000012
  31
@@ -2745,13 +2745,13 @@ LINE
   8
 cut
  10
-405.7504844727668
+405.75048447276737
  20
 4.127328470363296
  30
 0.0
  11
-391.585800068094
+391.5858000680945
  21
 3.295737087682938e-07
  31
@@ -2763,13 +2763,13 @@ LINE
   8
 cut
  10
-456.16814227043034
+456.1681422704309
  20
 18.81810532610098
  30
 0.0
  11
-405.7504844727668
+405.75048447276737
  21
 4.127328470363296
  31
@@ -2781,15 +2781,15 @@ LINE
   8
 cut
  10
-524.0905903408144
+524.0905903408149
  20
 33.50888218183872
  30
 0.0
  11
-506.5858000680939
+506.58580006809444
  21
-33.508882181838686
+33.508882181838665
  31
 0.0
   0
@@ -2799,13 +2799,13 @@ LINE
   8
 cut
  10
-524.0905903408144
+524.0905903408147
  20
-86.02325300000031
+86.02325300000028
  30
 0.0
  11
-524.0905903408144
+524.0905903408149
  21
 33.50888218183872
  31
@@ -2817,15 +2817,15 @@ LINE
   8
 cut
  10
-506.58580006809376
+506.58580006809433
  20
-86.02325300000028
+86.02325300000025
  30
 0.0
  11
-524.0905903408144
+524.0905903408147
  21
-86.02325300000031
+86.02325300000028
  31
 0.0
   0
@@ -2835,15 +2835,15 @@ LINE
   8
 cut
  10
-506.58580006809376
+506.585800068094
  20
-90.02325300000027
+266.02325300000035
  30
 0.0
  11
-506.58580006809376
+506.58580006809433
  21
-86.02325300000028
+86.02325300000025
  31
 0.0
   0
@@ -2853,15 +2853,15 @@ LINE
   8
 cut
  10
-506.58580006809353
+506.58580006809376
  20
-212.02325300000032
+388.0232530000003
  30
 0.0
  11
-506.58580006809365
+506.5858000680939
  21
-151.0232530000003
+327.02325300000035
  31
 0.0
   0
@@ -2871,15 +2871,15 @@ LINE
   8
 cut
  10
-506.58580006809353
+506.5858000680934
  20
-216.02325300000032
+568.0232530000004
  30
 0.0
  11
-506.58580006809353
+506.58580006809376
  21
-212.02325300000032
+388.0232530000003
  31
 0.0
   0
@@ -2889,15 +2889,15 @@ LINE
   8
 cut
  10
-506.58580006809353
+506.5858000680934
  20
-216.02325300000032
+568.0232530000004
  30
 0.0
  11
-506.58580006809353
+506.5858000680934
  21
-216.02325300000032
+568.0232530000004
  31
 0.0
   0
@@ -2907,15 +2907,15 @@ LINE
   8
 cut
  10
-506.58580006809376
+506.58580006809433
  20
-86.02325300000028
+86.02325300000025
  30
 0.0
  11
-506.58580006809376
+506.58580006809433
  21
-86.02325300000028
+86.02325300000025
  31
 0.0
   0
@@ -2925,15 +2925,15 @@ LINE
   8
 cut
  10
-516.5858000680937
+516.5858000680939
  20
-90.02325300000031
+266.02325300000035
  30
 0.0
  11
-506.58580006809376
+506.585800068094
  21
-90.02325300000027
+266.02325300000035
  31
 0.0
   0
@@ -2943,15 +2943,15 @@ LINE
   8
 cut
  10
-516.5858000680937
+516.5858000680938
  20
-151.0232530000003
+327.02325300000035
  30
 0.0
  11
-516.5858000680937
+516.5858000680939
  21
-90.02325300000031
+266.02325300000035
  31
 0.0
   0
@@ -2961,15 +2961,15 @@ LINE
   8
 cut
  10
-506.58580006809365
+506.5858000680939
  20
-151.0232530000003
+327.02325300000035
  30
 0.0
  11
-516.5858000680937
+516.5858000680938
  21
-151.0232530000003
+327.02325300000035
  31
 0.0
   0
@@ -2979,15 +2979,15 @@ LINE
   8
 cut
  10
-259.0810097953729
+259.0810097953728
  20
-268.53762381816165
+620.5376238181617
  30
 0.0
  11
-276.5858000680934
+276.5858000680933
  21
-268.53762381816165
+620.5376238181617
  31
 0.0
   0
@@ -2997,15 +2997,15 @@ LINE
   8
 cut
  10
-259.0810097953729
+259.08100979537284
  20
-216.02325299999998
+568.0232530000001
  30
 0.0
  11
-259.0810097953729
+259.0810097953728
  21
-268.53762381816165
+620.5376238181617
  31
 0.0
   0
@@ -3015,15 +3015,15 @@ LINE
   8
 cut
  10
-276.5858000680935
+276.58580006809336
  20
-216.023253
+568.0232530000001
  30
 0.0
  11
-259.0810097953729
+259.08100979537284
  21
-216.02325299999998
+568.0232530000001
  31
 0.0
   0
@@ -3035,13 +3035,13 @@ cut
  10
 276.5858000680935
  20
-212.023253
+388.0232530000001
  30
 0.0
  11
-276.5858000680935
+276.58580006809336
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -3053,13 +3053,13 @@ cut
  10
 276.5858000680935
  20
-151.02325299999998
+327.02325300000007
  30
 0.0
  11
 276.5858000680935
  21
-212.023253
+388.0232530000001
  31
 0.0
   0
@@ -3069,7 +3069,7 @@ LINE
   8
 cut
  10
-276.58580006809353
+276.5858000680937
  20
 86.02325299999997
  30
@@ -3077,7 +3077,7 @@ cut
  11
 276.58580006809353
  21
-90.02325299999995
+266.02325300000007
  31
 0.0
   0
@@ -3087,13 +3087,13 @@ LINE
   8
 cut
  10
-276.58580006809353
+276.5858000680937
  20
 86.02325299999997
  30
 0.0
  11
-276.58580006809353
+276.5858000680937
  21
 86.02325299999997
  31
@@ -3105,15 +3105,15 @@ LINE
   8
 cut
  10
-276.5858000680935
+276.58580006809336
  20
-216.023253
+568.0232530000001
  30
 0.0
  11
-276.5858000680935
+276.58580006809336
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -3127,13 +3127,13 @@ DOTTED
  10
 240.44717806890822
  20
-151.02325299999998
+327.02325300000007
  30
 0.0
  11
 240.44717806890824
  21
-90.02325299999994
+266.023253
  31
 0.0
   0
@@ -3145,13 +3145,13 @@ cut
  10
 276.58580006809353
  20
-90.02325299999995
+266.02325300000007
  30
 0.0
  11
 240.44717806890824
  21
-90.02325299999994
+266.023253
  31
 0.0
   0
@@ -3163,13 +3163,13 @@ cut
  10
 240.44717806890822
  20
-151.02325299999998
+327.02325300000007
  30
 0.0
  11
 276.5858000680935
  21
-151.02325299999998
+327.02325300000007
  31
 0.0
   0
@@ -3183,13 +3183,13 @@ DOTTED
  10
 216.44717806890824
  20
-90.02325299999993
+266.023253
  30
 0.0
  11
 216.44717806890822
  21
-151.02325299999995
+327.023253
  31
 0.0
   0
@@ -3203,13 +3203,13 @@ DOTTED
  10
 216.44717806890824
  20
-90.02325299999993
+266.023253
  30
 0.0
  11
 240.44717806890827
  21
-90.02325299999994
+266.023253
  31
 0.0
   0
@@ -3221,13 +3221,13 @@ cut
  10
 180.3085560697229
  20
-151.0232529999999
+327.023253
  30
 0.0
  11
 216.44717806890822
  21
-151.02325299999995
+327.023253
  31
 0.0
   0
@@ -3239,13 +3239,13 @@ cut
  10
 180.30855606972295
  20
-90.02325299999991
+266.023253
  30
 0.0
  11
 180.3085560697229
  21
-151.0232529999999
+327.023253
  31
 0.0
   0
@@ -3257,13 +3257,13 @@ cut
  10
 216.44717806890824
  20
-90.02325299999993
+266.023253
  30
 0.0
  11
 180.30855606972295
  21
-90.02325299999991
+266.023253
  31
 0.0
   0
@@ -3275,13 +3275,13 @@ cut
  10
 216.44717806890824
  20
-80.02325299999991
+256.02325299999995
  30
 0.0
  11
 216.44717806890824
  21
-90.02325299999994
+266.023253
  31
 0.0
   0
@@ -3293,13 +3293,13 @@ cut
  10
 240.44717806890824
  20
-80.02325299999993
+256.02325299999995
  30
 0.0
  11
 216.44717806890824
  21
-80.02325299999991
+256.02325299999995
  31
 0.0
   0
@@ -3311,13 +3311,13 @@ cut
  10
 240.44717806890824
  20
-90.02325299999994
+266.023253
  30
 0.0
  11
 240.44717806890824
  21
-80.02325299999993
+256.02325299999995
  31
 0.0
   0
@@ -3329,13 +3329,13 @@ cut
  10
 240.44717806890822
  20
-161.02325299999998
+337.02325300000007
  30
 0.0
  11
 240.44717806890822
  21
-151.02325299999998
+327.02325300000007
  31
 0.0
   0
@@ -3347,13 +3347,13 @@ cut
  10
 216.44717806890822
  20
-161.02325299999995
+337.023253
  30
 0.0
  11
 240.44717806890822
  21
-161.02325299999998
+337.02325300000007
  31
 0.0
   0
@@ -3365,13 +3365,13 @@ cut
  10
 216.44717806890822
  20
-151.02325299999995
+327.023253
  30
 0.0
  11
 216.44717806890822
  21
-161.02325299999995
+337.023253
  31
 0.0
   0
@@ -3381,15 +3381,15 @@ LINE
   8
 cut
  10
-364.5978792657871
+364.59787926578724
  20
-21.798749986471112
+21.79874998647114
  30
 0.0
  11
-347.31195656413337
+347.3119565641334
  21
-26.83554947792412
+26.835549477924136
  31
 0.0
   0
@@ -3399,15 +3399,15 @@ LINE
   8
 cut
  10
-347.31195656413337
+347.3119565641334
  20
-26.83554947792412
+26.835549477924136
  30
 0.0
  11
-347.17208269125956
+347.1720826912596
  21
-26.355512708824836
+26.35551270882485
  31
 0.0
   0
@@ -3417,15 +3417,15 @@ LINE
   8
 cut
  10
-347.17208269125956
+347.1720826912596
  20
-26.355512708824836
+26.35551270882485
  30
 0.0
  11
-364.4580053929133
+364.4580053929134
  21
-21.318713217371826
+21.318713217371794
  31
 0.0
   0
@@ -3435,15 +3435,15 @@ LINE
   8
 cut
  10
-364.4580053929133
+364.4580053929134
  20
-21.318713217371826
+21.318713217371794
  30
 0.0
  11
-364.5978792657871
+364.59787926578724
  21
-21.798749986471112
+21.79874998647114
  31
 0.0
   0
@@ -3453,13 +3453,13 @@ LINE
   8
 cut
  10
-263.45720736355315
+263.45720736355327
  20
-51.01367245455889
+51.0136724545589
  30
 0.0
  11
-272.2096024999135
+272.2096024999136
  21
 51.0136724545589
  31
@@ -3471,13 +3471,13 @@ LINE
   8
 cut
  10
-272.2096024999135
+272.2096024999136
  20
 51.0136724545589
  30
 0.0
  11
-272.20960249991344
+272.20960249991356
  21
 68.51846272727943
  31
@@ -3489,15 +3489,15 @@ LINE
   8
 cut
  10
-272.20960249991344
+272.20960249991356
  20
 68.51846272727943
  30
 0.0
  11
-263.45720736355315
+263.45720736355327
  21
-68.51846272727941
+68.51846272727943
  31
 0.0
   0
@@ -3507,15 +3507,15 @@ LINE
   8
 cut
  10
-347.3119565641332
+347.31195656413314
  20
-275.210956522076
+627.2109565220761
  30
 0.0
  11
-364.597879265787
+364.5978792657869
  21
-280.247756013529
+632.2477560135293
  31
 0.0
   0
@@ -3525,15 +3525,15 @@ LINE
   8
 cut
  10
-364.597879265787
+364.5978792657869
  20
-280.247756013529
+632.2477560135293
  30
 0.0
  11
-364.45800539291315
+364.4580053929131
  21
-280.7277927826283
+632.7277927826285
  31
 0.0
   0
@@ -3543,15 +3543,15 @@ LINE
   8
 cut
  10
-364.45800539291315
+364.4580053929131
  20
-280.7277927826283
+632.7277927826285
  30
 0.0
  11
-347.1720826912594
+347.1720826912593
  21
-275.69099329117523
+627.6909932911755
  31
 0.0
   0
@@ -3561,15 +3561,15 @@ LINE
   8
 cut
  10
-347.1720826912594
+347.1720826912593
  20
-275.69099329117523
+627.6909932911755
  30
 0.0
  11
-347.3119565641332
+347.31195656413314
  21
-275.210956522076
+627.2109565220761
  31
 0.0
   0
@@ -3579,15 +3579,15 @@ LINE
   8
 cut
  10
-418.5737208703999
+418.57372087039977
  20
-280.2477560135291
+632.2477560135293
  30
 0.0
  11
-435.8596435720537
+435.8596435720536
  21
-275.2109565220761
+627.2109565220762
  31
 0.0
   0
@@ -3597,15 +3597,15 @@ LINE
   8
 cut
  10
-435.8596435720537
+435.8596435720536
  20
-275.2109565220761
+627.2109565220762
  30
 0.0
  11
-435.9995174449275
+435.9995174449274
  21
-275.69099329117535
+627.6909932911755
  31
 0.0
   0
@@ -3615,15 +3615,15 @@ LINE
   8
 cut
  10
-435.9995174449275
+435.9995174449274
  20
-275.69099329117535
+627.6909932911755
  30
 0.0
  11
-418.7135947432737
+418.7135947432736
  21
-280.72779278262834
+632.7277927826285
  31
 0.0
   0
@@ -3633,15 +3633,15 @@ LINE
   8
 cut
  10
-418.7135947432737
+418.7135947432736
  20
-280.72779278262834
+632.7277927826285
  30
 0.0
  11
-418.5737208703999
+418.57372087039977
  21
-280.2477560135291
+632.2477560135293
  31
 0.0
   0
@@ -3651,15 +3651,15 @@ LINE
   8
 cut
  10
-519.7143927726339
+519.7143927726338
  20
-251.0328335454414
+603.0328335454415
  30
 0.0
  11
-510.9619976362736
+510.9619976362735
  21
-251.03283354544138
+603.0328335454415
  31
 0.0
   0
@@ -3669,15 +3669,15 @@ LINE
   8
 cut
  10
-510.9619976362736
+510.9619976362735
  20
-251.03283354544138
+603.0328335454415
  30
 0.0
  11
-510.9619976362736
+510.96199763627357
  21
-233.52804327272085
+585.528043272721
  31
 0.0
   0
@@ -3687,15 +3687,15 @@ LINE
   8
 cut
  10
-510.9619976362736
+510.96199763627357
  20
-233.52804327272085
+585.528043272721
  30
 0.0
  11
 519.7143927726339
  21
-233.52804327272088
+585.528043272721
  31
 0.0
   0
@@ -3705,13 +3705,13 @@ LINE
   8
 cut
  10
-435.85964357205415
+435.85964357205467
  20
 26.835549477924193
  30
 0.0
  11
-418.57372087040034
+418.5737208704009
  21
 21.79874998647114
  31
@@ -3723,13 +3723,13 @@ LINE
   8
 cut
  10
-418.57372087040034
+418.5737208704009
  20
 21.79874998647114
  30
 0.0
  11
-418.7135947432742
+418.7135947432747
  21
 21.318713217371855
  31
@@ -3741,15 +3741,15 @@ LINE
   8
 cut
  10
-418.7135947432742
+418.7135947432747
  20
 21.318713217371855
  30
 0.0
  11
-435.99951744492796
+435.99951744492853
  21
-26.35551270882492
+26.355512708824907
  31
 0.0
   0
@@ -3759,13 +3759,13 @@ LINE
   8
 cut
  10
-435.99951744492796
+435.99951744492853
  20
-26.35551270882492
+26.355512708824907
  30
 0.0
  11
-435.85964357205415
+435.85964357205467
  21
 26.835549477924193
  31
@@ -3777,15 +3777,15 @@ LINE
   8
 cut
  10
-519.7143927726343
+519.7143927726348
  20
-68.51846272727978
+68.51846272727973
  30
 0.0
  11
-510.9619976362739
+510.9619976362745
  21
-68.51846272727977
+68.51846272727973
  31
 0.0
   0
@@ -3795,15 +3795,15 @@ LINE
   8
 cut
  10
-510.9619976362739
+510.9619976362745
  20
-68.51846272727977
+68.51846272727973
  30
 0.0
  11
-510.96199763627396
+510.96199763627453
  21
-51.013672454559234
+51.01367245455919
  31
 0.0
   0
@@ -3813,15 +3813,15 @@ LINE
   8
 cut
  10
-510.96199763627396
+510.96199763627453
  20
-51.013672454559234
+51.01367245455919
  30
 0.0
  11
-519.7143927726343
+519.7143927726348
  21
-51.01367245455925
+51.01367245455919
  31
 0.0
   0
@@ -3831,15 +3831,15 @@ LINE
   8
 cut
  10
-498.83580006809365
+498.8358000680938
  20
-173.45507118181848
+349.4550711818184
  30
 0.0
  11
-498.83580006809365
+498.8358000680938
  21
-161.8641620909094
+337.8641620909094
  31
 0.0
   0
@@ -3849,15 +3849,15 @@ LINE
   8
 cut
  10
-498.83580006809365
+498.8358000680938
  20
-161.8641620909094
+337.8641620909094
  30
 0.0
  11
-499.33580006809365
+499.3358000680938
  21
-161.8641620909094
+337.8641620909095
  31
 0.0
   0
@@ -3867,15 +3867,15 @@ LINE
   8
 cut
  10
-499.33580006809365
+499.3358000680938
  20
-161.8641620909094
+337.8641620909095
  30
 0.0
  11
-499.33580006809365
+499.3358000680938
  21
-173.45507118181848
+349.4550711818185
  31
 0.0
   0
@@ -3885,15 +3885,15 @@ LINE
   8
 cut
  10
-499.33580006809365
+499.3358000680938
  20
-173.45507118181848
+349.4550711818185
  30
 0.0
  11
-498.83580006809365
+498.8358000680938
  21
-173.45507118181848
+349.4550711818184
  31
 0.0
   0
@@ -3903,15 +3903,15 @@ LINE
   8
 cut
  10
-498.83580006809353
+498.83580006809376
  20
-201.1823439090912
+377.18234390909123
  30
 0.0
  11
-498.83580006809365
+498.83580006809376
  21
-189.59143481818214
+365.5914348181821
  31
 0.0
   0
@@ -3921,15 +3921,15 @@ LINE
   8
 cut
  10
-498.83580006809365
+498.83580006809376
  20
-189.59143481818214
+365.5914348181821
  30
 0.0
  11
-499.3358000680936
+499.33580006809376
  21
-189.59143481818214
+365.59143481818217
  31
 0.0
   0
@@ -3939,15 +3939,15 @@ LINE
   8
 cut
  10
-499.3358000680936
+499.33580006809376
  20
-189.59143481818214
+365.59143481818217
  30
 0.0
  11
-499.33580006809353
+499.33580006809376
  21
-201.1823439090912
+377.1823439090913
  31
 0.0
   0
@@ -3957,15 +3957,15 @@ LINE
   8
 cut
  10
-499.33580006809353
+499.33580006809376
  20
-201.1823439090912
+377.1823439090913
  30
 0.0
  11
-498.83580006809353
+498.83580006809376
  21
-201.1823439090912
+377.18234390909123
  31
 0.0
   0
@@ -3975,15 +3975,15 @@ LINE
   8
 cut
  10
-514.0858000680936
+514.0858000680939
  20
-139.93234390909123
+315.9323439090912
  30
 0.0
  11
-509.08580006809365
+509.0858000680939
  21
-139.93234390909123
+315.9323439090912
  31
 0.0
   0
@@ -3993,15 +3993,15 @@ LINE
   8
 cut
  10
-509.08580006809365
+509.0858000680939
  20
-139.93234390909123
+315.9323439090912
  30
 0.0
  11
-509.0858000680937
+509.0858000680939
  21
-128.8414348181821
+304.84143481818217
  31
 0.0
   0
@@ -4011,15 +4011,15 @@ LINE
   8
 cut
  10
-509.0858000680937
+509.0858000680939
  20
-128.8414348181821
+304.84143481818217
  30
 0.0
  11
-514.0858000680936
+514.0858000680939
  21
-128.8414348181821
+304.84143481818217
  31
 0.0
   0
@@ -4029,15 +4029,15 @@ LINE
   8
 cut
  10
-514.0858000680938
+514.085800068094
  20
-112.20507118181847
+288.20507118181854
  30
 0.0
  11
-509.0858000680937
+509.08580006809393
  21
-112.20507118181847
+288.2050711818185
  31
 0.0
   0
@@ -4047,15 +4047,15 @@ LINE
   8
 cut
  10
-509.0858000680937
+509.08580006809393
  20
-112.20507118181847
+288.2050711818185
  30
 0.0
  11
-509.08580006809376
+509.08580006809393
  21
-101.11416209090936
+277.11416209090936
  31
 0.0
   0
@@ -4065,15 +4065,15 @@ LINE
   8
 cut
  10
-509.08580006809376
+509.08580006809393
  20
-101.11416209090936
+277.11416209090936
  30
 0.0
  11
-514.0858000680938
+514.085800068094
  21
-101.11416209090936
+277.11416209090936
  31
 0.0
   0
@@ -4083,15 +4083,15 @@ LINE
   8
 cut
  10
-263.4572073635531
+263.457207363553
  20
-233.5280432727205
+585.5280432727208
  30
 0.0
  11
-272.2096024999134
+272.2096024999133
  21
-233.52804327272054
+585.5280432727208
  31
 0.0
   0
@@ -4101,15 +4101,15 @@ LINE
   8
 cut
  10
-272.2096024999134
+272.2096024999133
  20
-233.52804327272054
+585.5280432727208
  30
 0.0
  11
-272.20960249991333
+272.2096024999133
  21
-251.03283354544106
+603.0328335454411
  31
 0.0
   0
@@ -4119,15 +4119,15 @@ LINE
   8
 cut
  10
-272.20960249991333
+272.2096024999133
  20
-251.03283354544106
+603.0328335454411
  30
 0.0
  11
-263.4572073635531
+263.457207363553
  21
-251.03283354544104
+603.0328335454411
  31
 0.0
   0
@@ -4139,13 +4139,13 @@ cut
  10
 284.33580006809353
  20
-189.59143481818182
+365.5914348181819
  30
 0.0
  11
 284.33580006809353
  21
-201.18234390909092
+377.182343909091
  31
 0.0
   0
@@ -4157,13 +4157,13 @@ cut
  10
 284.33580006809353
  20
-201.18234390909092
+377.182343909091
  30
 0.0
  11
 283.83580006809353
  21
-201.18234390909092
+377.182343909091
  31
 0.0
   0
@@ -4175,13 +4175,13 @@ cut
  10
 283.83580006809353
  20
-201.18234390909092
+377.182343909091
  30
 0.0
  11
 283.83580006809353
  21
-189.59143481818182
+365.5914348181819
  31
 0.0
   0
@@ -4193,13 +4193,13 @@ cut
  10
 283.83580006809353
  20
-189.59143481818182
+365.5914348181819
  30
 0.0
  11
 284.33580006809353
  21
-189.59143481818182
+365.5914348181819
  31
 0.0
   0
@@ -4211,13 +4211,13 @@ cut
  10
 284.33580006809353
  20
-161.86416209090908
+337.8641620909091
  30
 0.0
  11
 284.33580006809353
  21
-173.45507118181817
+349.45507118181825
  31
 0.0
   0
@@ -4229,13 +4229,13 @@ cut
  10
 284.33580006809353
  20
-173.45507118181817
+349.45507118181825
  30
 0.0
  11
 283.83580006809353
  21
-173.45507118181817
+349.45507118181825
  31
 0.0
   0
@@ -4247,13 +4247,13 @@ cut
  10
 283.83580006809353
  20
-173.45507118181817
+349.45507118181825
  30
 0.0
  11
 283.83580006809353
  21
-161.86416209090908
+337.8641620909091
  31
 0.0
   0
@@ -4265,13 +4265,13 @@ cut
  10
 283.83580006809353
  20
-161.86416209090908
+337.8641620909091
  30
 0.0
  11
 284.33580006809353
  21
-161.86416209090908
+337.8641620909091
  31
 0.0
   0
@@ -4283,13 +4283,13 @@ cut
  10
 221.94717806890824
  20
-133.02325299999995
+309.023253
  30
 0.0
  11
 221.94717806890824
  21
-122.02325299999994
+298.02325299999995
  31
 0.0
   0
@@ -4301,13 +4301,13 @@ cut
  10
 221.94717806890824
  20
-122.02325299999994
+298.02325299999995
  30
 0.0
  11
 234.94717806890824
  21
-122.02325299999994
+298.02325299999995
  31
 0.0
   0
@@ -4319,13 +4319,13 @@ cut
  10
 234.94717806890824
  20
-122.02325299999994
+298.02325299999995
  30
 0.0
  11
 234.94717806890824
  21
-133.02325299999995
+309.023253
  31
 0.0
   0
@@ -4337,13 +4337,13 @@ cut
  10
 234.94717806890824
  20
-133.02325299999995
+309.023253
  30
 0.0
  11
 221.94717806890824
  21
-133.02325299999995
+309.023253
  31
 0.0
   0
@@ -4355,13 +4355,13 @@ cut
  10
 223.44717806890822
  20
-101.52325299999994
+277.523253
  30
 0.0
  11
 223.44717806890824
  21
-95.52325299999994
+271.52325299999995
  31
 0.0
   0
@@ -4373,13 +4373,13 @@ cut
  10
 223.44717806890824
  20
-95.52325299999994
+271.52325299999995
  30
 0.0
  11
 233.44717806890827
  21
-95.52325299999994
+271.52325299999995
  31
 0.0
   0
@@ -4391,13 +4391,13 @@ cut
  10
 233.44717806890827
  20
-95.52325299999994
+271.52325299999995
  30
 0.0
  11
 233.44717806890824
  21
-101.52325299999994
+277.523253
  31
 0.0
   0
@@ -4409,13 +4409,13 @@ cut
  10
 233.44717806890824
  20
-101.52325299999994
+277.523253
  30
 0.0
  11
 223.44717806890822
  21
-101.52325299999994
+277.523253
  31
 0.0
   0
@@ -4427,13 +4427,13 @@ cut
  10
 188.05855606972293
  20
-128.5914348181817
+304.59143481818177
  30
 0.0
  11
 188.05855606972293
  21
-140.1823439090908
+316.1823439090909
  31
 0.0
   0
@@ -4445,13 +4445,13 @@ cut
  10
 188.05855606972293
  20
-140.1823439090908
+316.1823439090909
  30
 0.0
  11
 187.55855606972293
  21
-140.1823439090908
+316.1823439090909
  31
 0.0
   0
@@ -4463,13 +4463,13 @@ cut
  10
 187.55855606972293
  20
-140.1823439090908
+316.1823439090909
  30
 0.0
  11
 187.55855606972293
  21
-128.5914348181817
+304.59143481818177
  31
 0.0
   0
@@ -4481,13 +4481,13 @@ cut
  10
 187.55855606972293
  20
-128.5914348181817
+304.59143481818177
  30
 0.0
  11
 188.05855606972293
  21
-128.5914348181817
+304.59143481818177
  31
 0.0
   0
@@ -4499,13 +4499,13 @@ cut
  10
 188.05855606972293
  20
-100.864162090909
+276.8641620909091
  30
 0.0
  11
 188.05855606972293
  21
-112.45507118181808
+288.45507118181814
  31
 0.0
   0
@@ -4517,13 +4517,13 @@ cut
  10
 188.05855606972293
  20
-112.45507118181808
+288.45507118181814
  30
 0.0
  11
 187.55855606972293
  21
-112.45507118181808
+288.45507118181814
  31
 0.0
   0
@@ -4535,13 +4535,13 @@ cut
  10
 187.55855606972293
  20
-112.45507118181808
+288.45507118181814
  30
 0.0
  11
 187.55855606972293
  21
-100.864162090909
+276.8641620909091
  31
 0.0
   0
@@ -4553,13 +4553,13 @@ cut
  10
 187.55855606972293
  20
-100.864162090909
+276.8641620909091
  30
 0.0
  11
 188.05855606972293
  21
-100.864162090909
+276.8641620909091
  31
 0.0
   0
@@ -4571,13 +4571,13 @@ cut
  10
 232.44717806890824
  20
-82.52325299999994
+258.523253
  30
 0.0
  11
 232.44717806890824
  21
-87.52325299999994
+263.523253
  31
 0.0
   0
@@ -4589,13 +4589,13 @@ cut
  10
 232.44717806890824
  20
-87.52325299999994
+263.523253
  30
 0.0
  11
 224.44717806890824
  21
-87.52325299999994
+263.523253
  31
 0.0
   0
@@ -4607,13 +4607,13 @@ cut
  10
 224.44717806890824
  20
-87.52325299999994
+263.523253
  30
 0.0
  11
 224.44717806890824
  21
-82.52325299999991
+258.523253
  31
 0.0
   0
@@ -4625,13 +4625,13 @@ cut
  10
 224.44717806890822
  20
-158.52325299999995
+334.52325299999995
  30
 0.0
  11
 224.44717806890822
  21
-153.52325299999995
+329.52325299999995
  31
 0.0
   0
@@ -4643,13 +4643,13 @@ cut
  10
 224.44717806890822
  20
-153.52325299999995
+329.52325299999995
  30
 0.0
  11
 232.44717806890822
  21
-153.52325299999995
+329.52325299999995
  31
 0.0
   0
@@ -4661,13 +4661,13 @@ cut
  10
 232.44717806890822
  20
-153.52325299999995
+329.52325299999995
  30
 0.0
  11
 232.44717806890822
  21
-158.52325299999998
+334.52325299999995
  31
 0.0
   0
@@ -4679,15 +4679,15 @@ DOTTED
   8
 90
  10
-543.0905903408144
+543.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4699,15 +4699,15 @@ DOTTED
   8
 90
  10
-604.0905903408143
+604.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4719,15 +4719,15 @@ DOTTED
   8
 90
  10
-604.0905903408143
+604.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4739,15 +4739,15 @@ DOTTED
   8
 90
  10
-543.0905903408144
+543.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4757,15 +4757,15 @@ LINE
   8
 cut
  10
-543.0905903408144
+543.090590340815
  20
-132.023253
+308.02325300000007
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4775,15 +4775,15 @@ LINE
   8
 cut
  10
-579.0905903408144
+579.090590340815
  20
-132.023253
+308.02325300000007
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-132.023253
+308.02325300000007
  31
 0.0
   0
@@ -4793,15 +4793,15 @@ LINE
   8
 cut
  10
-579.0905903408144
+579.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-579.0905903408144
+579.090590340815
  21
-132.023253
+308.02325300000007
  31
 0.0
   0
@@ -4811,15 +4811,15 @@ LINE
   8
 cut
  10
-611.0905903408143
+611.0905903408149
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4829,15 +4829,15 @@ LINE
   8
 cut
  10
-611.0905903408143
+611.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-611.0905903408143
+611.0905903408149
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4847,15 +4847,15 @@ LINE
   8
 cut
  10
-604.0905903408143
+604.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-611.0905903408143
+611.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4867,15 +4867,15 @@ DOTTED
   8
 90
  10
-604.0905903408143
+604.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4885,15 +4885,15 @@ LINE
   8
 cut
  10
-568.0905903408143
+568.090590340815
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4905,15 +4905,15 @@ DOTTED
   8
 90
  10
-568.0905903408143
+568.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-568.0905903408143
+568.090590340815
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4923,15 +4923,15 @@ LINE
   8
 cut
  10
-628.0905903408144
+628.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4943,15 +4943,15 @@ DOTTED
   8
 90
  10
-628.0905903408144
+628.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-628.0905903408144
+628.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4961,15 +4961,15 @@ LINE
   8
 cut
  10
-604.0905903408143
+604.090590340815
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-628.0905903408144
+628.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4979,15 +4979,15 @@ LINE
   8
 cut
  10
-664.0905903408144
+664.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-628.0905903408144
+628.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4997,15 +4997,15 @@ LINE
   8
 cut
  10
-664.0905903408144
+664.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-664.0905903408144
+664.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -5015,15 +5015,15 @@ LINE
   8
 cut
  10
-628.0905903408144
+628.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-664.0905903408144
+664.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -5033,15 +5033,15 @@ LINE
   8
 cut
  10
-568.0905903408143
+568.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-544.0905903408144
+544.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -5051,15 +5051,15 @@ LINE
   8
 cut
  10
-544.0905903408144
+544.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-568.0905903408143
+568.090590340815
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -5071,15 +5071,15 @@ DOTTED
   8
 90
  10
-544.0905903408144
+544.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-544.0905903408144
+544.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -5089,15 +5089,15 @@ LINE
   8
 cut
  10
-534.0905903408144
+534.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-544.0905903408144
+544.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -5107,15 +5107,15 @@ LINE
   8
 cut
  10
-534.0905903408144
+534.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-534.0905903408144
+534.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -5125,15 +5125,15 @@ LINE
   8
 cut
  10
-544.0905903408144
+544.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-534.0905903408144
+534.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -5143,15 +5143,15 @@ LINE
   8
 cut
  10
-536.0905903408143
+536.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -5161,15 +5161,15 @@ LINE
   8
 cut
  10
-536.0905903408143
+536.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-536.0905903408143
+536.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -5179,15 +5179,15 @@ LINE
   8
 cut
  10
-543.0905903408144
+543.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-536.0905903408143
+536.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -5197,15 +5197,15 @@ LINE
   8
 cut
  10
-567.0905903408143
+567.090590340815
  20
-133.77325300000004
+309.77325300000007
  30
 0.0
  11
-570.5905903408144
+570.590590340815
  21
-133.77325300000004
+309.77325300000007
  31
 0.0
   0
@@ -5215,15 +5215,15 @@ LINE
   8
 cut
  10
-570.5905903408144
+570.590590340815
  20
-133.77325300000004
+309.77325300000007
  30
 0.0
  11
-567.0905903408143
+567.090590340815
  21
-137.27325300000004
+313.27325300000007
  31
 0.0
   0
@@ -5233,15 +5233,15 @@ LINE
   8
 cut
  10
-567.0905903408143
+567.090590340815
  20
-137.27325300000004
+313.27325300000007
  30
 0.0
  11
-555.0905903408144
+555.0905903408149
  21
-137.27325300000004
+313.27325300000007
  31
 0.0
   0
@@ -5251,15 +5251,15 @@ LINE
   8
 cut
  10
-555.0905903408144
+555.0905903408149
  20
-137.27325300000004
+313.27325300000007
  30
 0.0
  11
-551.5905903408144
+551.590590340815
  21
-133.77325300000004
+309.77325300000007
  31
 0.0
   0
@@ -5269,15 +5269,15 @@ LINE
   8
 cut
  10
-551.5905903408144
+551.590590340815
  20
-133.77325300000004
+309.77325300000007
  30
 0.0
  11
-555.0905903408144
+555.0905903408149
  21
-133.77325300000004
+309.77325300000007
  31
 0.0
   0
@@ -5287,15 +5287,15 @@ LINE
   8
 cut
  10
-609.3405903408144
+609.340590340815
  20
-155.023253
+331.02325300000007
  30
 0.0
  11
-605.8405903408143
+605.8405903408149
  21
-155.023253
+331.02325300000007
  31
 0.0
   0
@@ -5305,15 +5305,15 @@ LINE
   8
 cut
  10
-605.8405903408143
+605.8405903408149
  20
-155.023253
+331.02325300000007
  30
 0.0
  11
-605.8405903408143
+605.8405903408149
  21
-147.02325300000004
+323.02325300000007
  31
 0.0
   0
@@ -5323,15 +5323,15 @@ LINE
   8
 cut
  10
-605.8405903408143
+605.8405903408149
  20
-147.02325300000004
+323.02325300000007
  30
 0.0
  11
-609.3405903408144
+609.340590340815
  21
-147.02325300000004
+323.02325300000007
  31
 0.0
   0
@@ -5341,15 +5341,15 @@ LINE
   8
 cut
  10
-581.2048760551
+581.2048760551007
  20
-217.77325300000004
+393.773253
  30
 0.0
  11
-581.2048760551
+581.2048760551007
  21
-199.77325300000004
+375.773253
  31
 0.0
   0
@@ -5359,15 +5359,15 @@ LINE
   8
 cut
  10
-581.2048760551
+581.2048760551007
  20
-199.77325300000004
+375.773253
  30
 0.0
  11
-601.7763046265287
+601.7763046265293
  21
-199.77325300000004
+375.773253
  31
 0.0
   0
@@ -5377,15 +5377,15 @@ LINE
   8
 cut
  10
-601.7763046265287
+601.7763046265293
  20
-199.77325300000004
+375.773253
  30
 0.0
  11
-601.7763046265287
+601.7763046265293
  21
-217.77325300000004
+393.773253
  31
 0.0
   0
@@ -5395,15 +5395,15 @@ LINE
   8
 cut
  10
-601.7763046265287
+601.7763046265293
  20
-217.77325300000004
+393.773253
  30
 0.0
  11
-581.2048760551
+581.2048760551007
  21
-217.77325300000004
+393.773253
  31
 0.0
   0
@@ -5413,15 +5413,15 @@ LINE
   8
 cut
  10
-604.5905903408143
+604.590590340815
  20
-176.27325300000004
+352.273253
  30
 0.0
  11
-604.5905903408143
+604.590590340815
  21
-173.27325300000004
+349.27325300000007
  31
 0.0
   0
@@ -5431,15 +5431,15 @@ LINE
   8
 cut
  10
-604.5905903408143
+604.590590340815
  20
-173.27325300000004
+349.27325300000007
  30
 0.0
  11
-607.5905903408144
+607.590590340815
  21
-173.27325300000004
+349.27325300000007
  31
 0.0
   0
@@ -5449,15 +5449,15 @@ LINE
   8
 cut
  10
-607.5905903408144
+607.590590340815
  20
-173.27325300000004
+349.27325300000007
  30
 0.0
  11
-607.5905903408144
+607.590590340815
  21
-176.27325300000004
+352.273253
  31
 0.0
   0
@@ -5467,15 +5467,15 @@ LINE
   8
 cut
  10
-607.5905903408144
+607.590590340815
  20
-176.27325300000004
+352.273253
  30
 0.0
  11
-604.5905903408143
+604.590590340815
  21
-176.27325300000004
+352.273253
  31
 0.0
   0
@@ -5485,15 +5485,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-175.273253
+351.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -5503,15 +5503,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -5521,15 +5521,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-175.273253
+351.27325300000007
  31
 0.0
   0
@@ -5539,15 +5539,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-175.273253
+351.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-175.273253
+351.27325300000007
  31
 0.0
   0
@@ -5557,15 +5557,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -5575,15 +5575,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -5593,15 +5593,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -5611,15 +5611,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -5629,15 +5629,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -5647,15 +5647,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -5665,15 +5665,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -5683,15 +5683,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -5701,15 +5701,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -5719,15 +5719,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -5737,15 +5737,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -5755,15 +5755,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -5773,15 +5773,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -5791,15 +5791,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -5809,15 +5809,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -5827,15 +5827,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -5845,15 +5845,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -5863,15 +5863,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-181.773253
+357.773253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -5881,15 +5881,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-181.773253
+357.773253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -5899,15 +5899,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -5917,15 +5917,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -5935,15 +5935,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-181.773253
+357.773253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -5953,15 +5953,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-181.773253
+357.773253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -5971,15 +5971,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -5989,15 +5989,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -6007,15 +6007,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -6025,15 +6025,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -6043,15 +6043,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -6061,15 +6061,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -6079,15 +6079,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -6097,15 +6097,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -6115,15 +6115,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -6133,15 +6133,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -6151,15 +6151,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -6169,15 +6169,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -6187,15 +6187,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -6205,15 +6205,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -6223,15 +6223,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -6241,15 +6241,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -6259,15 +6259,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -6277,15 +6277,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -6295,15 +6295,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -6313,15 +6313,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -6331,15 +6331,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -6349,15 +6349,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -6367,15 +6367,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -6385,15 +6385,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -6403,15 +6403,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -6421,15 +6421,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -6439,15 +6439,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -6457,15 +6457,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -6475,15 +6475,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -6493,15 +6493,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -6511,15 +6511,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -6529,15 +6529,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -6547,15 +6547,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -6565,15 +6565,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -6583,15 +6583,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -6601,15 +6601,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -6619,15 +6619,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -6637,15 +6637,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -6655,15 +6655,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -6673,15 +6673,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -6691,15 +6691,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -6709,15 +6709,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -6727,15 +6727,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -6745,15 +6745,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -6763,15 +6763,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -6781,15 +6781,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -6799,15 +6799,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -6817,15 +6817,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -6835,15 +6835,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -6853,15 +6853,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -6871,15 +6871,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -6889,15 +6889,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -6907,15 +6907,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -6925,15 +6925,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -6943,15 +6943,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -6961,15 +6961,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -6979,15 +6979,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -6997,15 +6997,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -7015,15 +7015,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -7033,15 +7033,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -7051,15 +7051,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -7069,15 +7069,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -7087,15 +7087,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -7105,15 +7105,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -7123,15 +7123,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -7141,15 +7141,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -7159,15 +7159,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -7177,15 +7177,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -7195,15 +7195,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -7213,15 +7213,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -7231,15 +7231,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -7249,15 +7249,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -7267,15 +7267,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -7285,15 +7285,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -7303,15 +7303,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -7321,15 +7321,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -7339,15 +7339,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -7357,15 +7357,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -7375,15 +7375,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -7393,15 +7393,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -7411,15 +7411,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -7429,15 +7429,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -7447,15 +7447,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -7465,15 +7465,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -7483,15 +7483,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -7501,15 +7501,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -7519,15 +7519,15 @@ LINE
   8
 cut
  10
-625.5905903408144
+625.590590340815
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -7537,15 +7537,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -7555,15 +7555,15 @@ LINE
   8
 cut
  10
-626.5905903408144
+626.5905903408149
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -7573,15 +7573,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-212.77325300000004
+388.773253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-211.77325300000004
+387.77325300000007
  31
 0.0
   0
@@ -7591,15 +7591,15 @@ LINE
   8
 cut
  10
-605.5905903408144
+605.590590340815
  20
-211.77325300000004
+387.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-211.77325300000004
+387.77325300000007
  31
 0.0
   0
@@ -7609,15 +7609,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-211.77325300000004
+387.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-212.77325300000004
+388.773253
  31
 0.0
   0
@@ -7627,15 +7627,15 @@ LINE
   8
 cut
  10
-606.5905903408144
+606.590590340815
  20
-212.77325300000004
+388.773253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-212.77325300000004
+388.773253
  31
 0.0
   0
@@ -7645,15 +7645,15 @@ LINE
   8
 cut
  10
-624.5905903408144
+624.590590340815
  20
-213.773253
+389.77325300000007
  30
 0.0
  11
-624.5905903408144
+624.590590340815
  21
-210.77325300000004
+386.77325300000007
  31
 0.0
   0
@@ -7663,15 +7663,15 @@ LINE
   8
 cut
  10
-624.5905903408144
+624.590590340815
  20
-210.77325300000004
+386.77325300000007
  30
 0.0
  11
-627.5905903408144
+627.5905903408149
  21
-210.77325300000004
+386.77325300000007
  31
 0.0
   0
@@ -7681,15 +7681,15 @@ LINE
   8
 cut
  10
-627.5905903408144
+627.5905903408149
  20
-210.77325300000004
+386.77325300000007
  30
 0.0
  11
-627.5905903408144
+627.5905903408149
  21
-213.773253
+389.77325300000007
  31
 0.0
   0
@@ -7699,15 +7699,15 @@ LINE
   8
 cut
  10
-627.5905903408144
+627.5905903408149
  20
-213.773253
+389.77325300000007
  30
 0.0
  11
-624.5905903408144
+624.590590340815
  21
-213.773253
+389.77325300000007
  31
 0.0
   0
@@ -7717,15 +7717,15 @@ LINE
   8
 cut
  10
-620.3405903408144
+620.340590340815
  20
-170.773253
+346.77325300000007
  30
 0.0
  11
-611.8405903408144
+611.840590340815
  21
-170.773253
+346.77325300000007
  31
 0.0
   0
@@ -7735,15 +7735,15 @@ LINE
   8
 cut
  10
-611.8405903408144
+611.840590340815
  20
-170.773253
+346.77325300000007
  30
 0.0
  11
-611.8405903408144
+611.840590340815
  21
-170.27325300000004
+346.27325300000007
  31
 0.0
   0
@@ -7753,15 +7753,15 @@ LINE
   8
 cut
  10
-611.8405903408144
+611.840590340815
  20
-170.27325300000004
+346.27325300000007
  30
 0.0
  11
-620.3405903408144
+620.340590340815
  21
-170.27325300000004
+346.27325300000007
  31
 0.0
   0
@@ -7771,15 +7771,15 @@ LINE
   8
 cut
  10
-620.3405903408144
+620.340590340815
  20
-170.27325300000004
+346.27325300000007
  30
 0.0
  11
-620.3405903408144
+620.340590340815
  21
-170.773253
+346.77325300000007
  31
 0.0
   0
@@ -7789,15 +7789,15 @@ LINE
   8
 cut
  10
-611.8405903408144
+611.840590340815
  20
-218.523253
+394.52325300000007
  30
 0.0
  11
-620.3405903408144
+620.340590340815
  21
-218.523253
+394.52325300000007
  31
 0.0
   0
@@ -7807,15 +7807,15 @@ LINE
   8
 cut
  10
-620.3405903408144
+620.340590340815
  20
-218.523253
+394.52325300000007
  30
 0.0
  11
-620.3405903408144
+620.340590340815
  21
-219.02325300000004
+395.02325300000007
  31
 0.0
   0
@@ -7825,15 +7825,15 @@ LINE
   8
 cut
  10
-620.3405903408144
+620.340590340815
  20
-219.02325300000004
+395.02325300000007
  30
 0.0
  11
-611.8405903408144
+611.840590340815
  21
-219.02325300000004
+395.02325300000007
  31
 0.0
   0
@@ -7843,15 +7843,15 @@ LINE
   8
 cut
  10
-611.8405903408144
+611.840590340815
  20
-219.02325300000004
+395.02325300000007
  30
 0.0
  11
-611.8405903408144
+611.840590340815
  21
-218.523253
+394.52325300000007
  31
 0.0
   0
@@ -7861,15 +7861,15 @@ LINE
   8
 cut
  10
-633.6448760551
+633.6448760551007
  20
-219.54325300000002
+395.54325300000005
  30
 0.0
  11
-633.6448760551
+633.6448760551007
  21
-206.54325300000002
+382.54325300000005
  31
 0.0
   0
@@ -7879,15 +7879,15 @@ LINE
   8
 cut
  10
-633.6448760551
+633.6448760551007
  20
-206.54325300000002
+382.54325300000005
  30
 0.0
  11
-654.2163046265287
+654.2163046265292
  21
-206.54325300000002
+382.54325300000005
  31
 0.0
   0
@@ -7897,15 +7897,15 @@ LINE
   8
 cut
  10
-654.2163046265287
+654.2163046265292
  20
-206.54325300000002
+382.54325300000005
  30
 0.0
  11
-654.2163046265287
+654.2163046265292
  21
-219.54325300000002
+395.54325300000005
  31
 0.0
   0
@@ -7915,15 +7915,15 @@ LINE
   8
 cut
  10
-654.2163046265287
+654.2163046265292
  20
-219.54325300000002
+395.54325300000005
  30
 0.0
  11
-633.6448760551
+633.6448760551007
  21
-219.54325300000002
+395.54325300000005
  31
 0.0
   0
@@ -7933,15 +7933,15 @@ LINE
   8
 cut
  10
-652.3405903408143
+652.340590340815
  20
-168.523253
+344.52325300000007
  30
 0.0
  11
-639.8405903408144
+639.8405903408149
  21
-168.523253
+344.52325300000007
  31
 0.0
   0
@@ -7951,15 +7951,15 @@ LINE
   8
 cut
  10
-639.8405903408144
+639.8405903408149
  20
-168.523253
+344.52325300000007
  30
 0.0
  11
-639.8405903408144
+639.8405903408149
  21
-168.023253
+344.023253
  31
 0.0
   0
@@ -7969,15 +7969,15 @@ LINE
   8
 cut
  10
-639.8405903408144
+639.8405903408149
  20
-168.023253
+344.023253
  30
 0.0
  11
-652.3405903408143
+652.340590340815
  21
-168.023253
+344.023253
  31
 0.0
   0
@@ -7987,15 +7987,15 @@ LINE
   8
 cut
  10
-652.3405903408143
+652.340590340815
  20
-168.023253
+344.023253
  30
 0.0
  11
-652.3405903408143
+652.340590340815
  21
-168.523253
+344.52325300000007
  31
 0.0
   0
@@ -8005,15 +8005,15 @@ LINE
   8
 cut
  10
-656.3405903408144
+656.340590340815
  20
-185.45507118181823
+361.45507118181825
  30
 0.0
  11
-656.3405903408144
+656.340590340815
  21
-173.8641620909091
+349.86416209090913
  31
 0.0
   0
@@ -8023,15 +8023,15 @@ LINE
   8
 cut
  10
-656.3405903408144
+656.340590340815
  20
-173.8641620909091
+349.86416209090913
  30
 0.0
  11
-656.8405903408144
+656.840590340815
  21
-173.8641620909091
+349.86416209090913
  31
 0.0
   0
@@ -8041,15 +8041,15 @@ LINE
   8
 cut
  10
-656.8405903408144
+656.840590340815
  20
-173.8641620909091
+349.86416209090913
  30
 0.0
  11
-656.8405903408144
+656.840590340815
  21
-185.45507118181823
+361.45507118181825
  31
 0.0
   0
@@ -8059,15 +8059,15 @@ LINE
   8
 cut
  10
-656.8405903408144
+656.840590340815
  20
-185.45507118181823
+361.45507118181825
  30
 0.0
  11
-656.3405903408144
+656.340590340815
  21
-185.45507118181823
+361.45507118181825
  31
 0.0
   0
@@ -8077,15 +8077,15 @@ LINE
   8
 cut
  10
-656.3405903408144
+656.340590340815
  20
-213.18234390909095
+389.182343909091
  30
 0.0
  11
-656.3405903408144
+656.340590340815
  21
-201.59143481818185
+377.5914348181818
  31
 0.0
   0
@@ -8095,15 +8095,15 @@ LINE
   8
 cut
  10
-656.3405903408144
+656.340590340815
  20
-201.59143481818185
+377.5914348181818
  30
 0.0
  11
-656.8405903408144
+656.840590340815
  21
-201.59143481818185
+377.5914348181818
  31
 0.0
   0
@@ -8113,15 +8113,15 @@ LINE
   8
 cut
  10
-656.8405903408144
+656.840590340815
  20
-201.59143481818185
+377.5914348181818
  30
 0.0
  11
-656.8405903408144
+656.840590340815
  21
-213.18234390909095
+389.182343909091
  31
 0.0
   0
@@ -8131,15 +8131,15 @@ LINE
   8
 cut
  10
-656.8405903408144
+656.840590340815
  20
-213.18234390909095
+389.182343909091
  30
 0.0
  11
-656.3405903408144
+656.340590340815
  21
-213.18234390909095
+389.182343909091
  31
 0.0
   0
@@ -8149,15 +8149,15 @@ LINE
   8
 cut
  10
-544.5905903408144
+544.5905903408149
  20
-176.27325300000004
+352.273253
  30
 0.0
  11
-544.5905903408144
+544.5905903408149
  21
-173.27325300000004
+349.27325300000007
  31
 0.0
   0
@@ -8167,15 +8167,15 @@ LINE
   8
 cut
  10
-544.5905903408144
+544.5905903408149
  20
-173.27325300000004
+349.27325300000007
  30
 0.0
  11
-547.5905903408143
+547.5905903408149
  21
-173.27325300000004
+349.27325300000007
  31
 0.0
   0
@@ -8185,15 +8185,15 @@ LINE
   8
 cut
  10
-547.5905903408143
+547.5905903408149
  20
-173.27325300000004
+349.27325300000007
  30
 0.0
  11
-547.5905903408143
+547.5905903408149
  21
-176.27325300000004
+352.273253
  31
 0.0
   0
@@ -8203,15 +8203,15 @@ LINE
   8
 cut
  10
-547.5905903408143
+547.5905903408149
  20
-176.27325300000004
+352.273253
  30
 0.0
  11
-544.5905903408144
+544.5905903408149
  21
-176.27325300000004
+352.273253
  31
 0.0
   0
@@ -8221,15 +8221,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-175.273253
+351.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -8239,15 +8239,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -8257,15 +8257,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-175.273253
+351.27325300000007
  31
 0.0
   0
@@ -8275,15 +8275,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-175.273253
+351.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-175.273253
+351.27325300000007
  31
 0.0
   0
@@ -8293,15 +8293,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -8311,15 +8311,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -8329,15 +8329,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -8347,15 +8347,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -8365,15 +8365,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -8383,15 +8383,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -8401,15 +8401,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -8419,15 +8419,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -8437,15 +8437,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -8455,15 +8455,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -8473,15 +8473,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -8491,15 +8491,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -8509,15 +8509,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -8527,15 +8527,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -8545,15 +8545,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -8563,15 +8563,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -8581,15 +8581,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -8599,15 +8599,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-181.773253
+357.773253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -8617,15 +8617,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-181.773253
+357.773253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -8635,15 +8635,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -8653,15 +8653,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -8671,15 +8671,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-181.773253
+357.773253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -8689,15 +8689,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-181.773253
+357.773253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -8707,15 +8707,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -8725,15 +8725,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -8743,15 +8743,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -8761,15 +8761,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -8779,15 +8779,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -8797,15 +8797,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -8815,15 +8815,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -8833,15 +8833,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -8851,15 +8851,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -8869,15 +8869,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -8887,15 +8887,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -8905,15 +8905,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -8923,15 +8923,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -8941,15 +8941,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -8959,15 +8959,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -8977,15 +8977,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -8995,15 +8995,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -9013,15 +9013,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -9031,15 +9031,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -9049,15 +9049,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -9067,15 +9067,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -9085,15 +9085,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -9103,15 +9103,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -9121,15 +9121,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -9139,15 +9139,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -9157,15 +9157,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -9175,15 +9175,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -9193,15 +9193,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -9211,15 +9211,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -9229,15 +9229,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -9247,15 +9247,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -9265,15 +9265,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -9283,15 +9283,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -9301,15 +9301,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -9319,15 +9319,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -9337,15 +9337,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -9355,15 +9355,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -9373,15 +9373,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -9391,15 +9391,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -9409,15 +9409,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -9427,15 +9427,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -9445,15 +9445,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -9463,15 +9463,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -9481,15 +9481,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -9499,15 +9499,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -9517,15 +9517,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -9535,15 +9535,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -9553,15 +9553,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -9571,15 +9571,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -9589,15 +9589,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -9607,15 +9607,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -9625,15 +9625,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -9643,15 +9643,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -9661,15 +9661,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -9679,15 +9679,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -9697,15 +9697,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -9715,15 +9715,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -9733,15 +9733,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -9751,15 +9751,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -9769,15 +9769,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -9787,15 +9787,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -9805,15 +9805,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -9823,15 +9823,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -9841,15 +9841,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -9859,15 +9859,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -9877,15 +9877,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -9895,15 +9895,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -9913,15 +9913,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -9931,15 +9931,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -9949,15 +9949,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -9967,15 +9967,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -9985,15 +9985,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -10003,15 +10003,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -10021,15 +10021,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -10039,15 +10039,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -10057,15 +10057,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -10075,15 +10075,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -10093,15 +10093,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -10111,15 +10111,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -10129,15 +10129,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -10147,15 +10147,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -10165,15 +10165,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -10183,15 +10183,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -10201,15 +10201,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -10219,15 +10219,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -10237,15 +10237,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -10255,15 +10255,15 @@ LINE
   8
 cut
  10
-565.5905903408143
+565.5905903408149
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -10273,15 +10273,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -10291,15 +10291,15 @@ LINE
   8
 cut
  10
-566.5905903408143
+566.590590340815
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -10309,15 +10309,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-212.77325300000004
+388.773253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-211.77325300000004
+387.77325300000007
  31
 0.0
   0
@@ -10327,15 +10327,15 @@ LINE
   8
 cut
  10
-545.5905903408144
+545.5905903408149
  20
-211.77325300000004
+387.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-211.77325300000004
+387.77325300000007
  31
 0.0
   0
@@ -10345,15 +10345,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-211.77325300000004
+387.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-212.77325300000004
+388.773253
  31
 0.0
   0
@@ -10363,15 +10363,15 @@ LINE
   8
 cut
  10
-546.5905903408143
+546.5905903408149
  20
-212.77325300000004
+388.773253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-212.77325300000004
+388.773253
  31
 0.0
   0
@@ -10381,15 +10381,15 @@ LINE
   8
 cut
  10
-564.5905903408143
+564.5905903408149
  20
-213.773253
+389.77325300000007
  30
 0.0
  11
-564.5905903408143
+564.5905903408149
  21
-210.77325300000004
+386.77325300000007
  31
 0.0
   0
@@ -10399,15 +10399,15 @@ LINE
   8
 cut
  10
-564.5905903408143
+564.5905903408149
  20
-210.77325300000004
+386.77325300000007
  30
 0.0
  11
-567.5905903408143
+567.590590340815
  21
-210.77325300000004
+386.77325300000007
  31
 0.0
   0
@@ -10417,15 +10417,15 @@ LINE
   8
 cut
  10
-567.5905903408143
+567.590590340815
  20
-210.77325300000004
+386.77325300000007
  30
 0.0
  11
-567.5905903408143
+567.590590340815
  21
-213.773253
+389.77325300000007
  31
 0.0
   0
@@ -10435,15 +10435,15 @@ LINE
   8
 cut
  10
-567.5905903408143
+567.590590340815
  20
-213.773253
+389.77325300000007
  30
 0.0
  11
-564.5905903408143
+564.5905903408149
  21
-213.773253
+389.77325300000007
  31
 0.0
   0
@@ -10453,15 +10453,15 @@ LINE
   8
 cut
  10
-560.3405903408143
+560.3405903408149
  20
-170.773253
+346.77325300000007
  30
 0.0
  11
-551.8405903408143
+551.8405903408149
  21
-170.773253
+346.77325300000007
  31
 0.0
   0
@@ -10471,15 +10471,15 @@ LINE
   8
 cut
  10
-551.8405903408143
+551.8405903408149
  20
-170.773253
+346.77325300000007
  30
 0.0
  11
-551.8405903408143
+551.8405903408149
  21
-170.27325300000004
+346.27325300000007
  31
 0.0
   0
@@ -10489,15 +10489,15 @@ LINE
   8
 cut
  10
-551.8405903408143
+551.8405903408149
  20
-170.27325300000004
+346.27325300000007
  30
 0.0
  11
-560.3405903408143
+560.3405903408149
  21
-170.27325300000004
+346.27325300000007
  31
 0.0
   0
@@ -10507,15 +10507,15 @@ LINE
   8
 cut
  10
-560.3405903408143
+560.3405903408149
  20
-170.27325300000004
+346.27325300000007
  30
 0.0
  11
-560.3405903408143
+560.3405903408149
  21
-170.773253
+346.77325300000007
  31
 0.0
   0
@@ -10525,15 +10525,15 @@ LINE
   8
 cut
  10
-551.8405903408143
+551.8405903408149
  20
-218.523253
+394.52325300000007
  30
 0.0
  11
-560.3405903408143
+560.3405903408149
  21
-218.523253
+394.52325300000007
  31
 0.0
   0
@@ -10543,15 +10543,15 @@ LINE
   8
 cut
  10
-560.3405903408143
+560.3405903408149
  20
-218.523253
+394.52325300000007
  30
 0.0
  11
-560.3405903408143
+560.3405903408149
  21
-219.02325300000004
+395.02325300000007
  31
 0.0
   0
@@ -10561,15 +10561,15 @@ LINE
   8
 cut
  10
-560.3405903408143
+560.3405903408149
  20
-219.02325300000004
+395.02325300000007
  30
 0.0
  11
-551.8405903408143
+551.8405903408149
  21
-219.02325300000004
+395.02325300000007
  31
 0.0
   0
@@ -10579,15 +10579,15 @@ LINE
   8
 cut
  10
-551.8405903408143
+551.8405903408149
  20
-219.02325300000004
+395.02325300000007
  30
 0.0
  11
-551.8405903408143
+551.8405903408149
  21
-218.523253
+394.52325300000007
  31
 0.0
   0
@@ -10597,15 +10597,15 @@ LINE
   8
 cut
  10
-536.5905903408143
+536.590590340815
  20
-174.1141620909091
+350.11416209090913
  30
 0.0
  11
-541.5905903408144
+541.5905903408149
  21
-174.1141620909091
+350.11416209090913
  31
 0.0
   0
@@ -10615,15 +10615,15 @@ LINE
   8
 cut
  10
-541.5905903408144
+541.5905903408149
  20
-174.1141620909091
+350.11416209090913
  30
 0.0
  11
-541.5905903408144
+541.5905903408149
  21
-185.20507118181823
+361.20507118181825
  31
 0.0
   0
@@ -10633,15 +10633,15 @@ LINE
   8
 cut
  10
-541.5905903408144
+541.5905903408149
  20
-185.20507118181823
+361.20507118181825
  30
 0.0
  11
-536.5905903408143
+536.590590340815
  21
-185.20507118181823
+361.20507118181825
  31
 0.0
   0
@@ -10651,15 +10651,15 @@ LINE
   8
 cut
  10
-536.5905903408143
+536.590590340815
  20
-201.84143481818185
+377.8414348181818
  30
 0.0
  11
-541.5905903408144
+541.5905903408149
  21
-201.84143481818185
+377.8414348181818
  31
 0.0
   0
@@ -10669,15 +10669,15 @@ LINE
   8
 cut
  10
-541.5905903408144
+541.5905903408149
  20
-201.84143481818185
+377.8414348181818
  30
 0.0
  11
-541.5905903408144
+541.5905903408149
  21
-212.93234390909092
+388.932343909091
  31
 0.0
   0
@@ -10687,15 +10687,15 @@ LINE
   8
 cut
  10
-541.5905903408144
+541.5905903408149
  20
-212.93234390909092
+388.932343909091
  30
 0.0
  11
-536.5905903408143
+536.590590340815
  21
-212.93234390909092
+388.932343909091
  31
 0.0
   0
@@ -10705,15 +10705,15 @@ LINE
   8
 cut
  10
-537.8405903408144
+537.8405903408149
  20
-147.02325300000004
+323.02325300000007
  30
 0.0
  11
-541.3405903408144
+541.340590340815
  21
-147.02325300000004
+323.02325300000007
  31
 0.0
   0
@@ -10723,15 +10723,15 @@ LINE
   8
 cut
  10
-541.3405903408144
+541.340590340815
  20
-147.02325300000004
+323.02325300000007
  30
 0.0
  11
-541.3405903408144
+541.340590340815
  21
-155.023253
+331.02325300000007
  31
 0.0
   0
@@ -10741,15 +10741,15 @@ LINE
   8
 cut
  10
-541.3405903408144
+541.340590340815
  20
-155.023253
+331.02325300000007
  30
 0.0
  11
-537.8405903408144
+537.8405903408149
  21
-155.023253
+331.02325300000007
  31
 0.0
   0
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-autofold-graph.dxf b/rocolib/builders/output/BoatWithStackBattery/graph-autofold-graph.dxf
index 9df8a03cf77df3eba706f4414c0441a384c2af40..174f6cf233a965e85698dcd3372f5deb1b23cd50 100644
--- a/rocolib/builders/output/BoatWithStackBattery/graph-autofold-graph.dxf
+++ b/rocolib/builders/output/BoatWithStackBattery/graph-autofold-graph.dxf
@@ -945,13 +945,13 @@ LINE
  10
 160.30855606972293
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 98.65427803486146
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -963,13 +963,13 @@ LINE
  10
 98.65427803486146
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 160.30855606972293
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -983,13 +983,13 @@ DOTTED
  10
 98.65427803486146
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 98.65427803486146
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1001,13 +1001,13 @@ LINE
  10
 170.30855606972293
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 160.30855606972293
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1019,13 +1019,13 @@ LINE
  10
 170.30855606972293
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 170.30855606972293
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1037,13 +1037,13 @@ LINE
  10
 160.30855606972293
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 170.30855606972293
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1055,13 +1055,13 @@ LINE
  10
 71.65427803486145
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 98.65427803486146
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1075,13 +1075,13 @@ DOTTED
  10
 71.65427803486145
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 71.65427803486145
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1095,13 +1095,13 @@ DOTTED
  10
 98.65427803486146
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 71.65427803486145
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1113,13 +1113,13 @@ LINE
  10
 10.000000000000002
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 71.65427803486145
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1131,13 +1131,13 @@ LINE
  10
 71.65427803486145
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 10.000000000000002
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1149,13 +1149,13 @@ LINE
  10
 0.0
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 10.000000000000002
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1167,13 +1167,13 @@ LINE
  10
 0.0
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 0.0
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1185,13 +1185,13 @@ LINE
  10
 10.000000000000002
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 0.0
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1203,13 +1203,13 @@ LINE
  10
 98.65427803486146
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 98.65427803486146
  21
-103.52325300000001
+279.523253
  31
 0.0
   0
@@ -1221,13 +1221,13 @@ LINE
  10
 71.65427803486145
  20
-103.52325300000001
+279.523253
  30
 0.0
  11
 71.65427803486145
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1241,13 +1241,13 @@ DOTTED
  10
 98.65427803486146
  20
-103.52325300000001
+279.523253
  30
 0.0
  11
 71.65427803486145
  21
-103.52325300000001
+279.523253
  31
 0.0
   0
@@ -1259,13 +1259,13 @@ LINE
  10
 98.65427803486146
  20
-103.52325300000001
+279.523253
  30
 0.0
  11
 98.65427803486146
  21
-42.52325300000002
+218.523253
  31
 0.0
   0
@@ -1277,13 +1277,13 @@ LINE
  10
 71.65427803486145
  20
-42.52325300000002
+218.523253
  30
 0.0
  11
 71.65427803486145
  21
-103.52325300000001
+279.523253
  31
 0.0
   0
@@ -1297,13 +1297,13 @@ DOTTED
  10
 98.65427803486146
  20
-42.52325300000002
+218.523253
  30
 0.0
  11
 71.65427803486145
  21
-42.52325300000002
+218.523253
  31
 0.0
   0
@@ -1315,13 +1315,13 @@ LINE
  10
 98.65427803486146
  20
-42.52325300000002
+218.523253
  30
 0.0
  11
 98.65427803486146
  21
-25.523253000000015
+201.52325300000004
  31
 0.0
   0
@@ -1333,13 +1333,13 @@ LINE
  10
 71.65427803486145
  20
-25.523253000000015
+201.52325300000004
  30
 0.0
  11
 71.65427803486145
  21
-42.52325300000002
+218.523253
  31
 0.0
   0
@@ -1353,13 +1353,13 @@ DOTTED
  10
 71.65427803486145
  20
-25.523253000000015
+201.52325300000004
  30
 0.0
  11
 98.65427803486146
  21
-25.523253000000015
+201.52325300000004
  31
 0.0
   0
@@ -1371,13 +1371,13 @@ LINE
  10
 71.65427803486145
  20
-15.523253000000013
+191.52325300000004
  30
 0.0
  11
 71.65427803486145
  21
-25.523253000000015
+201.52325300000004
  31
 0.0
   0
@@ -1389,13 +1389,13 @@ LINE
  10
 98.65427803486146
  20
-15.523253000000013
+191.52325300000004
  30
 0.0
  11
 71.65427803486145
  21
-15.523253000000013
+191.52325300000004
  31
 0.0
   0
@@ -1407,13 +1407,13 @@ LINE
  10
 98.65427803486146
  20
-25.523253000000015
+201.52325300000004
  30
 0.0
  11
 98.65427803486146
  21
-15.523253000000013
+191.52325300000004
  31
 0.0
   0
@@ -1425,13 +1425,13 @@ LINE
  10
 167.80855606972293
  20
-170.43234390909095
+346.432343909091
  30
 0.0
  11
 162.80855606972293
  21
-170.43234390909095
+346.432343909091
  31
 0.0
   0
@@ -1443,13 +1443,13 @@ LINE
  10
 162.80855606972293
  20
-170.43234390909095
+346.432343909091
  30
 0.0
  11
 162.80855606972293
  21
-159.34143481818182
+335.3414348181819
  31
 0.0
   0
@@ -1461,13 +1461,13 @@ LINE
  10
 162.80855606972293
  20
-159.34143481818182
+335.3414348181819
  30
 0.0
  11
 167.80855606972293
  21
-159.34143481818182
+335.3414348181819
  31
 0.0
   0
@@ -1479,13 +1479,13 @@ LINE
  10
 167.80855606972293
  20
-142.7050711818182
+318.7050711818182
  30
 0.0
  11
 162.80855606972293
  21
-142.7050711818182
+318.7050711818182
  31
 0.0
   0
@@ -1497,13 +1497,13 @@ LINE
  10
 162.80855606972293
  20
-142.7050711818182
+318.7050711818182
  30
 0.0
  11
 162.80855606972293
  21
-131.61416209090913
+307.61416209090913
  31
 0.0
   0
@@ -1515,13 +1515,13 @@ LINE
  10
 162.80855606972293
  20
-131.61416209090913
+307.61416209090913
  30
 0.0
  11
 167.80855606972293
  21
-131.61416209090913
+307.61416209090913
  31
 0.0
   0
@@ -1533,13 +1533,13 @@ LINE
  10
 94.15427803486146
  20
-118.02325300000003
+294.023253
  30
 0.0
  11
 94.15427803486146
  21
-124.02325300000003
+300.02325300000007
  31
 0.0
   0
@@ -1551,13 +1551,13 @@ LINE
  10
 94.15427803486146
  20
-124.02325300000003
+300.02325300000007
  30
 0.0
  11
 76.15427803486145
  21
-124.02325300000003
+300.02325300000007
  31
 0.0
   0
@@ -1569,13 +1569,13 @@ LINE
  10
 76.15427803486145
  20
-124.02325300000003
+300.02325300000007
  30
 0.0
  11
 76.15427803486145
  21
-118.02325300000003
+294.023253
  31
 0.0
   0
@@ -1587,13 +1587,13 @@ LINE
  10
 76.15427803486145
  20
-118.02325300000003
+294.023253
  30
 0.0
  11
 94.15427803486146
  21
-118.02325300000003
+294.023253
  31
 0.0
   0
@@ -1605,13 +1605,13 @@ LINE
  10
 80.40427803486146
  20
-173.77325300000004
+349.77325300000007
  30
 0.0
  11
 89.90427803486145
  21
-173.77325300000004
+349.77325300000007
  31
 0.0
   0
@@ -1623,13 +1623,13 @@ LINE
  10
 89.90427803486145
  20
-173.77325300000004
+349.77325300000007
  30
 0.0
  11
 89.90427803486145
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -1641,13 +1641,13 @@ LINE
  10
 89.90427803486145
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
 80.40427803486146
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -1659,13 +1659,13 @@ LINE
  10
 80.40427803486146
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
 80.40427803486146
  21
-173.77325300000004
+349.77325300000007
  31
 0.0
   0
@@ -1677,13 +1677,13 @@ LINE
  10
 2.5000000000000004
  20
-131.61416209090913
+307.6141620909092
  30
 0.0
  11
 7.500000000000001
  21
-131.61416209090913
+307.6141620909092
  31
 0.0
   0
@@ -1695,13 +1695,13 @@ LINE
  10
 7.500000000000001
  20
-131.61416209090913
+307.6141620909092
  30
 0.0
  11
 7.500000000000001
  21
-142.7050711818182
+318.7050711818182
  31
 0.0
   0
@@ -1713,13 +1713,13 @@ LINE
  10
 7.500000000000001
  20
-142.7050711818182
+318.7050711818182
  30
 0.0
  11
 2.5000000000000004
  21
-142.7050711818182
+318.7050711818182
  31
 0.0
   0
@@ -1731,13 +1731,13 @@ LINE
  10
 2.5000000000000004
  20
-159.34143481818185
+335.3414348181819
  30
 0.0
  11
 7.500000000000001
  21
-159.34143481818185
+335.3414348181819
  31
 0.0
   0
@@ -1749,13 +1749,13 @@ LINE
  10
 7.500000000000001
  20
-159.34143481818185
+335.3414348181819
  30
 0.0
  11
 7.500000000000001
  21
-170.43234390909095
+346.432343909091
  31
 0.0
   0
@@ -1767,13 +1767,13 @@ LINE
  10
 7.500000000000001
  20
-170.43234390909095
+346.432343909091
  30
 0.0
  11
 2.5000000000000004
  21
-170.43234390909095
+346.432343909091
  31
 0.0
   0
@@ -1785,13 +1785,13 @@ LINE
  10
 89.65427803486146
  20
-18.023253000000015
+194.02325300000004
  30
 0.0
  11
 89.65427803486146
  21
-23.02325300000001
+199.02325300000004
  31
 0.0
   0
@@ -1803,13 +1803,13 @@ LINE
  10
 89.65427803486146
  20
-23.02325300000001
+199.02325300000004
  30
 0.0
  11
 80.65427803486146
  21
-23.02325300000001
+199.02325300000004
  31
 0.0
   0
@@ -1821,13 +1821,13 @@ LINE
  10
 80.65427803486146
  20
-23.02325300000001
+199.02325300000004
  30
 0.0
  11
 80.65427803486146
  21
-18.023253000000015
+194.02325300000004
  31
 0.0
   0
@@ -1839,15 +1839,15 @@ DOTTED
   8
 0
  10
-436.5858000680936
+436.5858000680937
  20
 86.02325300000003
  30
 0.0
  11
-436.5858000680936
+436.5858000680937
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -1859,15 +1859,15 @@ DOTTED
   8
 0
  10
-346.5858000680936
+346.5858000680937
  20
 86.02325300000003
  30
 0.0
  11
-346.5858000680936
+346.5858000680937
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -1879,13 +1879,13 @@ DOTTED
   8
 0
  10
-391.5858000680936
+391.5858000680937
  20
 86.02325300000003
  30
 0.0
  11
-346.5858000680936
+346.5858000680937
  21
 86.02325300000003
  31
@@ -1899,13 +1899,13 @@ DOTTED
   8
 0
  10
-436.5858000680936
+436.5858000680937
  20
 86.02325300000003
  30
 0.0
  11
-391.5858000680936
+391.5858000680937
  21
 86.02325300000003
  31
@@ -1919,13 +1919,13 @@ DOTTED
   8
 0
  10
-391.5858000680936
+391.5858000680937
  20
-3.2957373719000316e-07
+3.295737656117126e-07
  30
 0.0
  11
-346.5858000680936
+346.5858000680937
  21
 86.02325300000003
  31
@@ -1937,13 +1937,13 @@ LINE
   8
 0
  10
-377.4211156634208
+377.4211156634209
  20
 4.127328470363296
  30
 0.0
  11
-327.0034578657572
+327.0034578657573
  21
 18.818105326100866
  31
@@ -1955,13 +1955,13 @@ LINE
   8
 0
  10
-391.5858000680936
+391.5858000680937
  20
 3.295737656117126e-07
  30
 0.0
  11
-377.4211156634208
+377.4211156634209
  21
 4.127328470363296
  31
@@ -1975,13 +1975,13 @@ DOTTED
   8
 0
  10
-346.5858000680936
+346.5858000680937
  20
 86.02325300000005
  30
 0.0
  11
-327.0034578657572
+327.0034578657573
  21
 18.818105326100866
  31
@@ -1995,15 +1995,15 @@ DOTTED
   8
 0
  10
-346.5858000680936
+346.5858000680937
  20
-86.02325300000003
+86.02325300000005
  30
 0.0
  11
-276.5858000680936
+276.58580006809376
  21
-33.50888218183837
+33.50888218183843
  31
 0.0
   0
@@ -2013,15 +2013,15 @@ LINE
   8
 0
  10
-327.0034578657572
+327.0034578657573
  20
-18.818105326100834
+18.818105326100866
  30
 0.0
  11
-276.5858000680936
+276.58580006809376
  21
-33.50888218183837
+33.50888218183843
  31
 0.0
   0
@@ -2033,15 +2033,15 @@ DOTTED
   8
 0
  10
-276.58580006809353
+276.5858000680937
  20
-86.02325299999998
+86.02325299999997
  30
 0.0
  11
-276.5858000680936
+276.58580006809376
  21
-33.508882181838395
+33.50888218183837
  31
 0.0
   0
@@ -2053,15 +2053,15 @@ DOTTED
   8
 0
  10
-346.5858000680936
+346.5858000680937
  20
-86.02325300000003
+86.023253
  30
 0.0
  11
-276.58580006809353
+276.5858000680937
  21
-86.02325299999998
+86.02325299999997
  31
 0.0
   0
@@ -2071,13 +2071,13 @@ LINE
   8
 0
  10
-259.08100979537306
+259.0810097953732
  20
 86.02325299999997
  30
 0.0
  11
-276.58580006809353
+276.5858000680937
  21
 86.02325299999997
  31
@@ -2089,13 +2089,13 @@ LINE
   8
 0
  10
-259.08100979537306
+259.0810097953732
  20
-33.508882181838366
+33.50888218183837
  30
 0.0
  11
-259.08100979537306
+259.0810097953732
  21
 86.02325299999997
  31
@@ -2107,15 +2107,15 @@ LINE
   8
 0
  10
-276.5858000680936
+276.58580006809376
  20
 33.50888218183837
  30
 0.0
  11
-259.08100979537306
+259.0810097953732
  21
-33.508882181838366
+33.50888218183837
  31
 0.0
   0
@@ -2127,15 +2127,15 @@ DOTTED
   8
 0
  10
-276.5858000680935
+276.58580006809336
  20
-216.023253
+568.0232530000001
  30
 0.0
  11
-346.58580006809353
+346.5858000680934
  21
-216.02325300000004
+568.0232530000001
  31
 0.0
   0
@@ -2147,15 +2147,15 @@ DOTTED
   8
 0
  10
-276.5858000680934
+276.5858000680933
  20
-268.53762381816165
+620.5376238181617
  30
 0.0
  11
-346.58580006809353
+346.5858000680934
  21
-216.02325300000004
+568.0232530000001
  31
 0.0
   0
@@ -2167,15 +2167,15 @@ DOTTED
   8
 0
  10
-276.5858000680934
+276.5858000680933
  20
-268.53762381816165
+620.5376238181617
  30
 0.0
  11
-276.5858000680935
+276.58580006809336
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -2185,15 +2185,15 @@ LINE
   8
 0
  10
-276.58580006809336
+276.5858000680933
  20
-268.53762381816165
+620.5376238181617
  30
 0.0
  11
-327.003457865757
+327.00345786575684
  21
-283.2284006738992
+635.2284006738995
  31
 0.0
   0
@@ -2205,15 +2205,15 @@ DOTTED
   8
 0
  10
-327.003457865757
+327.00345786575684
  20
-283.2284006738992
+635.2284006738995
  30
 0.0
  11
-346.58580006809353
+346.5858000680934
  21
-216.02325300000004
+568.0232530000001
  31
 0.0
   0
@@ -2225,15 +2225,15 @@ DOTTED
   8
 0
  10
-391.5858000680934
+391.5858000680933
  20
-302.04650567042637
+654.0465056704267
  30
 0.0
  11
-346.58580006809353
+346.5858000680934
  21
-216.02325300000004
+568.0232530000003
  31
 0.0
   0
@@ -2243,15 +2243,15 @@ LINE
   8
 0
  10
-377.42111566342055
+377.42111566342044
  20
-297.9191775296369
+649.919177529637
  30
 0.0
  11
-391.5858000680934
+391.5858000680933
  21
-302.04650567042637
+654.0465056704267
  31
 0.0
   0
@@ -2261,15 +2261,15 @@ LINE
   8
 0
  10
-327.003457865757
+327.00345786575684
  20
-283.22840067389916
+635.2284006738994
  30
 0.0
  11
-377.42111566342055
+377.42111566342044
  21
-297.9191775296369
+649.919177529637
  31
 0.0
   0
@@ -2281,15 +2281,15 @@ DOTTED
   8
 0
  10
-346.58580006809353
+346.5858000680934
  20
-216.023253
+568.0232530000001
  30
 0.0
  11
-391.58580006809353
+391.5858000680934
  21
-216.02325300000007
+568.0232530000003
  31
 0.0
   0
@@ -2301,15 +2301,15 @@ DOTTED
   8
 0
  10
-391.58580006809353
+391.5858000680934
  20
-216.02325300000012
+568.0232530000003
  30
 0.0
  11
-436.58580006809353
+436.5858000680934
  21
-216.02325300000018
+568.0232530000004
  31
 0.0
   0
@@ -2321,15 +2321,15 @@ DOTTED
   8
 0
  10
-391.5858000680934
+391.5858000680933
  20
-302.04650567042637
+654.0465056704267
  30
 0.0
  11
-436.58580006809353
+436.5858000680934
  21
-216.02325300000018
+568.0232530000004
  31
 0.0
   0
@@ -2339,15 +2339,15 @@ LINE
   8
 0
  10
-405.7504844727662
+405.7504844727661
  20
-297.9191775296369
+649.919177529637
  30
 0.0
  11
-456.1681422704299
+456.16814227042977
  21
-283.2284006738994
+635.2284006738995
  31
 0.0
   0
@@ -2357,15 +2357,15 @@ LINE
   8
 0
  10
-391.5858000680934
+391.5858000680933
  20
-302.04650567042637
+654.0465056704267
  30
 0.0
  11
-405.7504844727662
+405.7504844727661
  21
-297.9191775296369
+649.919177529637
  31
 0.0
   0
@@ -2377,15 +2377,15 @@ DOTTED
   8
 0
  10
-436.58580006809353
+436.5858000680934
  20
-216.02325300000018
+568.0232530000004
  30
 0.0
  11
-456.1681422704299
+456.16814227042977
  21
-283.2284006738994
+635.2284006738995
  31
 0.0
   0
@@ -2397,15 +2397,15 @@ DOTTED
   8
 0
  10
-436.58580006809353
+436.5858000680934
  20
-216.02325300000018
+568.0232530000004
  30
 0.0
  11
-506.5858000680934
+506.5858000680933
  21
-268.5376238181619
+620.537623818162
  31
 0.0
   0
@@ -2415,15 +2415,15 @@ LINE
   8
 0
  10
-456.1681422704298
+456.1681422704297
  20
-283.2284006738994
+635.2284006738995
  30
 0.0
  11
-506.5858000680934
+506.5858000680933
  21
-268.5376238181619
+620.537623818162
  31
 0.0
   0
@@ -2435,15 +2435,15 @@ DOTTED
   8
 0
  10
-506.58580006809353
+506.5858000680934
  20
-216.02325300000032
+568.0232530000005
  30
 0.0
  11
-506.5858000680934
+506.58580006809336
  21
-268.5376238181619
+620.5376238181622
  31
 0.0
   0
@@ -2455,15 +2455,15 @@ DOTTED
   8
 0
  10
-436.58580006809353
+436.5858000680934
  20
-216.02325300000018
+568.0232530000004
  30
 0.0
  11
-506.58580006809353
+506.5858000680934
  21
-216.02325300000032
+568.0232530000005
  31
 0.0
   0
@@ -2473,15 +2473,15 @@ LINE
   8
 0
  10
-524.0905903408142
+524.090590340814
  20
-216.02325300000035
+568.0232530000005
  30
 0.0
  11
-506.58580006809353
+506.5858000680934
  21
-216.02325300000032
+568.0232530000004
  31
 0.0
   0
@@ -2491,15 +2491,15 @@ LINE
   8
 0
  10
-524.090590340814
+524.0905903408138
  20
-268.53762381816193
+620.5376238181622
  30
 0.0
  11
-524.0905903408142
+524.090590340814
  21
-216.02325300000035
+568.0232530000005
  31
 0.0
   0
@@ -2509,15 +2509,15 @@ LINE
   8
 0
  10
-506.5858000680934
+506.5858000680933
  20
-268.5376238181619
+620.537623818162
  30
 0.0
  11
-524.090590340814
+524.0905903408138
  21
-268.53762381816193
+620.5376238181622
  31
 0.0
   0
@@ -2529,13 +2529,13 @@ DOTTED
   8
 0
  10
-506.58580006809376
+506.58580006809433
  20
-86.02325300000027
+86.02325300000028
  30
 0.0
  11
-436.58580006809376
+436.5858000680943
  21
 86.02325300000012
  31
@@ -2549,15 +2549,15 @@ DOTTED
   8
 0
  10
-506.5858000680939
+506.58580006809444
  20
-33.50888218183868
+33.508882181838665
  30
 0.0
  11
-436.58580006809376
+436.5858000680943
  21
-86.02325300000012
+86.0232530000001
  31
 0.0
   0
@@ -2569,15 +2569,15 @@ DOTTED
   8
 0
  10
-506.5858000680939
+506.58580006809444
  20
-33.50888218183868
+33.508882181838665
  30
 0.0
  11
-506.58580006809376
+506.58580006809433
  21
-86.02325300000027
+86.02325300000025
  31
 0.0
   0
@@ -2587,15 +2587,15 @@ LINE
   8
 0
  10
-506.5858000680939
+506.58580006809444
  20
-33.50888218183864
+33.508882181838665
  30
 0.0
  11
-456.16814227043034
+456.1681422704309
  21
-18.818105326100948
+18.81810532610098
  31
 0.0
   0
@@ -2607,15 +2607,15 @@ DOTTED
   8
 0
  10
-456.16814227043034
+456.1681422704309
  20
-18.818105326100948
+18.81810532610098
  30
 0.0
  11
-436.58580006809376
+436.5858000680943
  21
-86.02325300000011
+86.02325300000012
  31
 0.0
   0
@@ -2627,13 +2627,13 @@ DOTTED
   8
 0
  10
-391.585800068094
+391.5858000680945
  20
 3.295737087682938e-07
  30
 0.0
  11
-436.58580006809376
+436.5858000680943
  21
 86.02325300000012
  31
@@ -2645,13 +2645,13 @@ LINE
   8
 0
  10
-405.7504844727668
+405.75048447276737
  20
 4.127328470363296
  30
 0.0
  11
-391.585800068094
+391.5858000680945
  21
 3.295737087682938e-07
  31
@@ -2663,13 +2663,13 @@ LINE
   8
 0
  10
-456.16814227043034
+456.1681422704309
  20
 18.81810532610098
  30
 0.0
  11
-405.7504844727668
+405.75048447276737
  21
 4.127328470363296
  31
@@ -2681,15 +2681,15 @@ LINE
   8
 0
  10
-524.0905903408144
+524.0905903408149
  20
 33.50888218183872
  30
 0.0
  11
-506.5858000680939
+506.58580006809444
  21
-33.508882181838686
+33.508882181838665
  31
 0.0
   0
@@ -2699,13 +2699,13 @@ LINE
   8
 0
  10
-524.0905903408144
+524.0905903408147
  20
-86.02325300000031
+86.02325300000028
  30
 0.0
  11
-524.0905903408144
+524.0905903408149
  21
 33.50888218183872
  31
@@ -2717,15 +2717,15 @@ LINE
   8
 0
  10
-506.58580006809376
+506.58580006809433
  20
-86.02325300000028
+86.02325300000025
  30
 0.0
  11
-524.0905903408144
+524.0905903408147
  21
-86.02325300000031
+86.02325300000028
  31
 0.0
   0
@@ -2735,15 +2735,15 @@ LINE
   8
 0
  10
-506.58580006809376
+506.585800068094
  20
-90.02325300000027
+266.02325300000035
  30
 0.0
  11
-506.58580006809376
+506.58580006809433
  21
-86.02325300000028
+86.02325300000025
  31
 0.0
   0
@@ -2753,15 +2753,15 @@ LINE
   8
 0
  10
-506.58580006809353
+506.58580006809376
  20
-212.02325300000032
+388.0232530000003
  30
 0.0
  11
-506.58580006809365
+506.5858000680939
  21
-151.0232530000003
+327.02325300000035
  31
 0.0
   0
@@ -2771,15 +2771,15 @@ LINE
   8
 0
  10
-506.58580006809353
+506.5858000680934
  20
-216.02325300000032
+568.0232530000004
  30
 0.0
  11
-506.58580006809353
+506.58580006809376
  21
-212.02325300000032
+388.0232530000003
  31
 0.0
   0
@@ -2789,15 +2789,15 @@ LINE
   8
 0
  10
-506.58580006809353
+506.5858000680934
  20
-216.02325300000032
+568.0232530000004
  30
 0.0
  11
-506.58580006809353
+506.5858000680934
  21
-216.02325300000032
+568.0232530000004
  31
 0.0
   0
@@ -2807,15 +2807,15 @@ LINE
   8
 0
  10
-506.58580006809376
+506.58580006809433
  20
-86.02325300000028
+86.02325300000025
  30
 0.0
  11
-506.58580006809376
+506.58580006809433
  21
-86.02325300000028
+86.02325300000025
  31
 0.0
   0
@@ -2825,15 +2825,15 @@ LINE
   8
 0
  10
-516.5858000680937
+516.5858000680939
  20
-90.02325300000031
+266.02325300000035
  30
 0.0
  11
-506.58580006809376
+506.585800068094
  21
-90.02325300000027
+266.02325300000035
  31
 0.0
   0
@@ -2843,15 +2843,15 @@ LINE
   8
 0
  10
-516.5858000680937
+516.5858000680938
  20
-151.0232530000003
+327.02325300000035
  30
 0.0
  11
-516.5858000680937
+516.5858000680939
  21
-90.02325300000031
+266.02325300000035
  31
 0.0
   0
@@ -2861,15 +2861,15 @@ LINE
   8
 0
  10
-506.58580006809365
+506.5858000680939
  20
-151.0232530000003
+327.02325300000035
  30
 0.0
  11
-516.5858000680937
+516.5858000680938
  21
-151.0232530000003
+327.02325300000035
  31
 0.0
   0
@@ -2879,15 +2879,15 @@ LINE
   8
 0
  10
-259.0810097953729
+259.0810097953728
  20
-268.53762381816165
+620.5376238181617
  30
 0.0
  11
-276.5858000680934
+276.5858000680933
  21
-268.53762381816165
+620.5376238181617
  31
 0.0
   0
@@ -2897,15 +2897,15 @@ LINE
   8
 0
  10
-259.0810097953729
+259.08100979537284
  20
-216.02325299999998
+568.0232530000001
  30
 0.0
  11
-259.0810097953729
+259.0810097953728
  21
-268.53762381816165
+620.5376238181617
  31
 0.0
   0
@@ -2915,15 +2915,15 @@ LINE
   8
 0
  10
-276.5858000680935
+276.58580006809336
  20
-216.023253
+568.0232530000001
  30
 0.0
  11
-259.0810097953729
+259.08100979537284
  21
-216.02325299999998
+568.0232530000001
  31
 0.0
   0
@@ -2935,13 +2935,13 @@ LINE
  10
 276.5858000680935
  20
-212.023253
+388.0232530000001
  30
 0.0
  11
-276.5858000680935
+276.58580006809336
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -2953,13 +2953,13 @@ LINE
  10
 276.5858000680935
  20
-151.02325299999998
+327.02325300000007
  30
 0.0
  11
 276.5858000680935
  21
-212.023253
+388.0232530000001
  31
 0.0
   0
@@ -2969,7 +2969,7 @@ LINE
   8
 0
  10
-276.58580006809353
+276.5858000680937
  20
 86.02325299999997
  30
@@ -2977,7 +2977,7 @@ LINE
  11
 276.58580006809353
  21
-90.02325299999995
+266.02325300000007
  31
 0.0
   0
@@ -2987,13 +2987,13 @@ LINE
   8
 0
  10
-276.58580006809353
+276.5858000680937
  20
 86.02325299999997
  30
 0.0
  11
-276.58580006809353
+276.5858000680937
  21
 86.02325299999997
  31
@@ -3005,15 +3005,15 @@ LINE
   8
 0
  10
-276.5858000680935
+276.58580006809336
  20
-216.023253
+568.0232530000001
  30
 0.0
  11
-276.5858000680935
+276.58580006809336
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -3027,13 +3027,13 @@ DOTTED
  10
 240.44717806890822
  20
-151.02325299999998
+327.02325300000007
  30
 0.0
  11
 240.44717806890824
  21
-90.02325299999994
+266.023253
  31
 0.0
   0
@@ -3045,13 +3045,13 @@ LINE
  10
 276.58580006809353
  20
-90.02325299999995
+266.02325300000007
  30
 0.0
  11
 240.44717806890824
  21
-90.02325299999994
+266.023253
  31
 0.0
   0
@@ -3063,13 +3063,13 @@ LINE
  10
 240.44717806890822
  20
-151.02325299999998
+327.02325300000007
  30
 0.0
  11
 276.5858000680935
  21
-151.02325299999998
+327.02325300000007
  31
 0.0
   0
@@ -3083,13 +3083,13 @@ DOTTED
  10
 216.44717806890824
  20
-90.02325299999993
+266.023253
  30
 0.0
  11
 216.44717806890822
  21
-151.02325299999995
+327.023253
  31
 0.0
   0
@@ -3103,13 +3103,13 @@ DOTTED
  10
 216.44717806890824
  20
-90.02325299999993
+266.023253
  30
 0.0
  11
 240.44717806890827
  21
-90.02325299999994
+266.023253
  31
 0.0
   0
@@ -3121,13 +3121,13 @@ LINE
  10
 180.3085560697229
  20
-151.0232529999999
+327.023253
  30
 0.0
  11
 216.44717806890822
  21
-151.02325299999995
+327.023253
  31
 0.0
   0
@@ -3139,13 +3139,13 @@ LINE
  10
 180.30855606972295
  20
-90.02325299999991
+266.023253
  30
 0.0
  11
 180.3085560697229
  21
-151.0232529999999
+327.023253
  31
 0.0
   0
@@ -3157,13 +3157,13 @@ LINE
  10
 216.44717806890824
  20
-90.02325299999993
+266.023253
  30
 0.0
  11
 180.30855606972295
  21
-90.02325299999991
+266.023253
  31
 0.0
   0
@@ -3175,13 +3175,13 @@ LINE
  10
 216.44717806890824
  20
-80.02325299999991
+256.02325299999995
  30
 0.0
  11
 216.44717806890824
  21
-90.02325299999994
+266.023253
  31
 0.0
   0
@@ -3193,13 +3193,13 @@ LINE
  10
 240.44717806890824
  20
-80.02325299999993
+256.02325299999995
  30
 0.0
  11
 216.44717806890824
  21
-80.02325299999991
+256.02325299999995
  31
 0.0
   0
@@ -3211,13 +3211,13 @@ LINE
  10
 240.44717806890824
  20
-90.02325299999994
+266.023253
  30
 0.0
  11
 240.44717806890824
  21
-80.02325299999993
+256.02325299999995
  31
 0.0
   0
@@ -3229,13 +3229,13 @@ LINE
  10
 240.44717806890822
  20
-161.02325299999998
+337.02325300000007
  30
 0.0
  11
 240.44717806890822
  21
-151.02325299999998
+327.02325300000007
  31
 0.0
   0
@@ -3247,13 +3247,13 @@ LINE
  10
 216.44717806890822
  20
-161.02325299999995
+337.023253
  30
 0.0
  11
 240.44717806890822
  21
-161.02325299999998
+337.02325300000007
  31
 0.0
   0
@@ -3265,13 +3265,13 @@ LINE
  10
 216.44717806890822
  20
-151.02325299999995
+327.023253
  30
 0.0
  11
 216.44717806890822
  21
-161.02325299999995
+337.023253
  31
 0.0
   0
@@ -3281,15 +3281,15 @@ LINE
   8
 0
  10
-364.5978792657871
+364.59787926578724
  20
-21.798749986471112
+21.79874998647114
  30
 0.0
  11
-347.31195656413337
+347.3119565641334
  21
-26.83554947792412
+26.835549477924136
  31
 0.0
   0
@@ -3299,15 +3299,15 @@ LINE
   8
 0
  10
-347.31195656413337
+347.3119565641334
  20
-26.83554947792412
+26.835549477924136
  30
 0.0
  11
-347.17208269125956
+347.1720826912596
  21
-26.355512708824836
+26.35551270882485
  31
 0.0
   0
@@ -3317,15 +3317,15 @@ LINE
   8
 0
  10
-347.17208269125956
+347.1720826912596
  20
-26.355512708824836
+26.35551270882485
  30
 0.0
  11
-364.4580053929133
+364.4580053929134
  21
-21.318713217371826
+21.318713217371794
  31
 0.0
   0
@@ -3335,15 +3335,15 @@ LINE
   8
 0
  10
-364.4580053929133
+364.4580053929134
  20
-21.318713217371826
+21.318713217371794
  30
 0.0
  11
-364.5978792657871
+364.59787926578724
  21
-21.798749986471112
+21.79874998647114
  31
 0.0
   0
@@ -3353,13 +3353,13 @@ LINE
   8
 0
  10
-263.45720736355315
+263.45720736355327
  20
-51.01367245455889
+51.0136724545589
  30
 0.0
  11
-272.2096024999135
+272.2096024999136
  21
 51.0136724545589
  31
@@ -3371,13 +3371,13 @@ LINE
   8
 0
  10
-272.2096024999135
+272.2096024999136
  20
 51.0136724545589
  30
 0.0
  11
-272.20960249991344
+272.20960249991356
  21
 68.51846272727943
  31
@@ -3389,15 +3389,15 @@ LINE
   8
 0
  10
-272.20960249991344
+272.20960249991356
  20
 68.51846272727943
  30
 0.0
  11
-263.45720736355315
+263.45720736355327
  21
-68.51846272727941
+68.51846272727943
  31
 0.0
   0
@@ -3407,15 +3407,15 @@ LINE
   8
 0
  10
-347.3119565641332
+347.31195656413314
  20
-275.210956522076
+627.2109565220761
  30
 0.0
  11
-364.597879265787
+364.5978792657869
  21
-280.247756013529
+632.2477560135293
  31
 0.0
   0
@@ -3425,15 +3425,15 @@ LINE
   8
 0
  10
-364.597879265787
+364.5978792657869
  20
-280.247756013529
+632.2477560135293
  30
 0.0
  11
-364.45800539291315
+364.4580053929131
  21
-280.7277927826283
+632.7277927826285
  31
 0.0
   0
@@ -3443,15 +3443,15 @@ LINE
   8
 0
  10
-364.45800539291315
+364.4580053929131
  20
-280.7277927826283
+632.7277927826285
  30
 0.0
  11
-347.1720826912594
+347.1720826912593
  21
-275.69099329117523
+627.6909932911755
  31
 0.0
   0
@@ -3461,15 +3461,15 @@ LINE
   8
 0
  10
-347.1720826912594
+347.1720826912593
  20
-275.69099329117523
+627.6909932911755
  30
 0.0
  11
-347.3119565641332
+347.31195656413314
  21
-275.210956522076
+627.2109565220761
  31
 0.0
   0
@@ -3479,15 +3479,15 @@ LINE
   8
 0
  10
-418.5737208703999
+418.57372087039977
  20
-280.2477560135291
+632.2477560135293
  30
 0.0
  11
-435.8596435720537
+435.8596435720536
  21
-275.2109565220761
+627.2109565220762
  31
 0.0
   0
@@ -3497,15 +3497,15 @@ LINE
   8
 0
  10
-435.8596435720537
+435.8596435720536
  20
-275.2109565220761
+627.2109565220762
  30
 0.0
  11
-435.9995174449275
+435.9995174449274
  21
-275.69099329117535
+627.6909932911755
  31
 0.0
   0
@@ -3515,15 +3515,15 @@ LINE
   8
 0
  10
-435.9995174449275
+435.9995174449274
  20
-275.69099329117535
+627.6909932911755
  30
 0.0
  11
-418.7135947432737
+418.7135947432736
  21
-280.72779278262834
+632.7277927826285
  31
 0.0
   0
@@ -3533,15 +3533,15 @@ LINE
   8
 0
  10
-418.7135947432737
+418.7135947432736
  20
-280.72779278262834
+632.7277927826285
  30
 0.0
  11
-418.5737208703999
+418.57372087039977
  21
-280.2477560135291
+632.2477560135293
  31
 0.0
   0
@@ -3551,15 +3551,15 @@ LINE
   8
 0
  10
-519.7143927726339
+519.7143927726338
  20
-251.0328335454414
+603.0328335454415
  30
 0.0
  11
-510.9619976362736
+510.9619976362735
  21
-251.03283354544138
+603.0328335454415
  31
 0.0
   0
@@ -3569,15 +3569,15 @@ LINE
   8
 0
  10
-510.9619976362736
+510.9619976362735
  20
-251.03283354544138
+603.0328335454415
  30
 0.0
  11
-510.9619976362736
+510.96199763627357
  21
-233.52804327272085
+585.528043272721
  31
 0.0
   0
@@ -3587,15 +3587,15 @@ LINE
   8
 0
  10
-510.9619976362736
+510.96199763627357
  20
-233.52804327272085
+585.528043272721
  30
 0.0
  11
 519.7143927726339
  21
-233.52804327272088
+585.528043272721
  31
 0.0
   0
@@ -3605,13 +3605,13 @@ LINE
   8
 0
  10
-435.85964357205415
+435.85964357205467
  20
 26.835549477924193
  30
 0.0
  11
-418.57372087040034
+418.5737208704009
  21
 21.79874998647114
  31
@@ -3623,13 +3623,13 @@ LINE
   8
 0
  10
-418.57372087040034
+418.5737208704009
  20
 21.79874998647114
  30
 0.0
  11
-418.7135947432742
+418.7135947432747
  21
 21.318713217371855
  31
@@ -3641,15 +3641,15 @@ LINE
   8
 0
  10
-418.7135947432742
+418.7135947432747
  20
 21.318713217371855
  30
 0.0
  11
-435.99951744492796
+435.99951744492853
  21
-26.35551270882492
+26.355512708824907
  31
 0.0
   0
@@ -3659,13 +3659,13 @@ LINE
   8
 0
  10
-435.99951744492796
+435.99951744492853
  20
-26.35551270882492
+26.355512708824907
  30
 0.0
  11
-435.85964357205415
+435.85964357205467
  21
 26.835549477924193
  31
@@ -3677,15 +3677,15 @@ LINE
   8
 0
  10
-519.7143927726343
+519.7143927726348
  20
-68.51846272727978
+68.51846272727973
  30
 0.0
  11
-510.9619976362739
+510.9619976362745
  21
-68.51846272727977
+68.51846272727973
  31
 0.0
   0
@@ -3695,15 +3695,15 @@ LINE
   8
 0
  10
-510.9619976362739
+510.9619976362745
  20
-68.51846272727977
+68.51846272727973
  30
 0.0
  11
-510.96199763627396
+510.96199763627453
  21
-51.013672454559234
+51.01367245455919
  31
 0.0
   0
@@ -3713,15 +3713,15 @@ LINE
   8
 0
  10
-510.96199763627396
+510.96199763627453
  20
-51.013672454559234
+51.01367245455919
  30
 0.0
  11
-519.7143927726343
+519.7143927726348
  21
-51.01367245455925
+51.01367245455919
  31
 0.0
   0
@@ -3731,15 +3731,15 @@ LINE
   8
 0
  10
-498.83580006809365
+498.8358000680938
  20
-173.45507118181848
+349.4550711818184
  30
 0.0
  11
-498.83580006809365
+498.8358000680938
  21
-161.8641620909094
+337.8641620909094
  31
 0.0
   0
@@ -3749,15 +3749,15 @@ LINE
   8
 0
  10
-498.83580006809365
+498.8358000680938
  20
-161.8641620909094
+337.8641620909094
  30
 0.0
  11
-499.33580006809365
+499.3358000680938
  21
-161.8641620909094
+337.8641620909095
  31
 0.0
   0
@@ -3767,15 +3767,15 @@ LINE
   8
 0
  10
-499.33580006809365
+499.3358000680938
  20
-161.8641620909094
+337.8641620909095
  30
 0.0
  11
-499.33580006809365
+499.3358000680938
  21
-173.45507118181848
+349.4550711818185
  31
 0.0
   0
@@ -3785,15 +3785,15 @@ LINE
   8
 0
  10
-499.33580006809365
+499.3358000680938
  20
-173.45507118181848
+349.4550711818185
  30
 0.0
  11
-498.83580006809365
+498.8358000680938
  21
-173.45507118181848
+349.4550711818184
  31
 0.0
   0
@@ -3803,15 +3803,15 @@ LINE
   8
 0
  10
-498.83580006809353
+498.83580006809376
  20
-201.1823439090912
+377.18234390909123
  30
 0.0
  11
-498.83580006809365
+498.83580006809376
  21
-189.59143481818214
+365.5914348181821
  31
 0.0
   0
@@ -3821,15 +3821,15 @@ LINE
   8
 0
  10
-498.83580006809365
+498.83580006809376
  20
-189.59143481818214
+365.5914348181821
  30
 0.0
  11
-499.3358000680936
+499.33580006809376
  21
-189.59143481818214
+365.59143481818217
  31
 0.0
   0
@@ -3839,15 +3839,15 @@ LINE
   8
 0
  10
-499.3358000680936
+499.33580006809376
  20
-189.59143481818214
+365.59143481818217
  30
 0.0
  11
-499.33580006809353
+499.33580006809376
  21
-201.1823439090912
+377.1823439090913
  31
 0.0
   0
@@ -3857,15 +3857,15 @@ LINE
   8
 0
  10
-499.33580006809353
+499.33580006809376
  20
-201.1823439090912
+377.1823439090913
  30
 0.0
  11
-498.83580006809353
+498.83580006809376
  21
-201.1823439090912
+377.18234390909123
  31
 0.0
   0
@@ -3875,15 +3875,15 @@ LINE
   8
 0
  10
-514.0858000680936
+514.0858000680939
  20
-139.93234390909123
+315.9323439090912
  30
 0.0
  11
-509.08580006809365
+509.0858000680939
  21
-139.93234390909123
+315.9323439090912
  31
 0.0
   0
@@ -3893,15 +3893,15 @@ LINE
   8
 0
  10
-509.08580006809365
+509.0858000680939
  20
-139.93234390909123
+315.9323439090912
  30
 0.0
  11
-509.0858000680937
+509.0858000680939
  21
-128.8414348181821
+304.84143481818217
  31
 0.0
   0
@@ -3911,15 +3911,15 @@ LINE
   8
 0
  10
-509.0858000680937
+509.0858000680939
  20
-128.8414348181821
+304.84143481818217
  30
 0.0
  11
-514.0858000680936
+514.0858000680939
  21
-128.8414348181821
+304.84143481818217
  31
 0.0
   0
@@ -3929,15 +3929,15 @@ LINE
   8
 0
  10
-514.0858000680938
+514.085800068094
  20
-112.20507118181847
+288.20507118181854
  30
 0.0
  11
-509.0858000680937
+509.08580006809393
  21
-112.20507118181847
+288.2050711818185
  31
 0.0
   0
@@ -3947,15 +3947,15 @@ LINE
   8
 0
  10
-509.0858000680937
+509.08580006809393
  20
-112.20507118181847
+288.2050711818185
  30
 0.0
  11
-509.08580006809376
+509.08580006809393
  21
-101.11416209090936
+277.11416209090936
  31
 0.0
   0
@@ -3965,15 +3965,15 @@ LINE
   8
 0
  10
-509.08580006809376
+509.08580006809393
  20
-101.11416209090936
+277.11416209090936
  30
 0.0
  11
-514.0858000680938
+514.085800068094
  21
-101.11416209090936
+277.11416209090936
  31
 0.0
   0
@@ -3983,15 +3983,15 @@ LINE
   8
 0
  10
-263.4572073635531
+263.457207363553
  20
-233.5280432727205
+585.5280432727208
  30
 0.0
  11
-272.2096024999134
+272.2096024999133
  21
-233.52804327272054
+585.5280432727208
  31
 0.0
   0
@@ -4001,15 +4001,15 @@ LINE
   8
 0
  10
-272.2096024999134
+272.2096024999133
  20
-233.52804327272054
+585.5280432727208
  30
 0.0
  11
-272.20960249991333
+272.2096024999133
  21
-251.03283354544106
+603.0328335454411
  31
 0.0
   0
@@ -4019,15 +4019,15 @@ LINE
   8
 0
  10
-272.20960249991333
+272.2096024999133
  20
-251.03283354544106
+603.0328335454411
  30
 0.0
  11
-263.4572073635531
+263.457207363553
  21
-251.03283354544104
+603.0328335454411
  31
 0.0
   0
@@ -4039,13 +4039,13 @@ LINE
  10
 284.33580006809353
  20
-189.59143481818182
+365.5914348181819
  30
 0.0
  11
 284.33580006809353
  21
-201.18234390909092
+377.182343909091
  31
 0.0
   0
@@ -4057,13 +4057,13 @@ LINE
  10
 284.33580006809353
  20
-201.18234390909092
+377.182343909091
  30
 0.0
  11
 283.83580006809353
  21
-201.18234390909092
+377.182343909091
  31
 0.0
   0
@@ -4075,13 +4075,13 @@ LINE
  10
 283.83580006809353
  20
-201.18234390909092
+377.182343909091
  30
 0.0
  11
 283.83580006809353
  21
-189.59143481818182
+365.5914348181819
  31
 0.0
   0
@@ -4093,13 +4093,13 @@ LINE
  10
 283.83580006809353
  20
-189.59143481818182
+365.5914348181819
  30
 0.0
  11
 284.33580006809353
  21
-189.59143481818182
+365.5914348181819
  31
 0.0
   0
@@ -4111,13 +4111,13 @@ LINE
  10
 284.33580006809353
  20
-161.86416209090908
+337.8641620909091
  30
 0.0
  11
 284.33580006809353
  21
-173.45507118181817
+349.45507118181825
  31
 0.0
   0
@@ -4129,13 +4129,13 @@ LINE
  10
 284.33580006809353
  20
-173.45507118181817
+349.45507118181825
  30
 0.0
  11
 283.83580006809353
  21
-173.45507118181817
+349.45507118181825
  31
 0.0
   0
@@ -4147,13 +4147,13 @@ LINE
  10
 283.83580006809353
  20
-173.45507118181817
+349.45507118181825
  30
 0.0
  11
 283.83580006809353
  21
-161.86416209090908
+337.8641620909091
  31
 0.0
   0
@@ -4165,13 +4165,13 @@ LINE
  10
 283.83580006809353
  20
-161.86416209090908
+337.8641620909091
  30
 0.0
  11
 284.33580006809353
  21
-161.86416209090908
+337.8641620909091
  31
 0.0
   0
@@ -4183,13 +4183,13 @@ LINE
  10
 221.94717806890824
  20
-133.02325299999995
+309.023253
  30
 0.0
  11
 221.94717806890824
  21
-122.02325299999994
+298.02325299999995
  31
 0.0
   0
@@ -4201,13 +4201,13 @@ LINE
  10
 221.94717806890824
  20
-122.02325299999994
+298.02325299999995
  30
 0.0
  11
 234.94717806890824
  21
-122.02325299999994
+298.02325299999995
  31
 0.0
   0
@@ -4219,13 +4219,13 @@ LINE
  10
 234.94717806890824
  20
-122.02325299999994
+298.02325299999995
  30
 0.0
  11
 234.94717806890824
  21
-133.02325299999995
+309.023253
  31
 0.0
   0
@@ -4237,13 +4237,13 @@ LINE
  10
 234.94717806890824
  20
-133.02325299999995
+309.023253
  30
 0.0
  11
 221.94717806890824
  21
-133.02325299999995
+309.023253
  31
 0.0
   0
@@ -4255,13 +4255,13 @@ LINE
  10
 223.44717806890822
  20
-101.52325299999994
+277.523253
  30
 0.0
  11
 223.44717806890824
  21
-95.52325299999994
+271.52325299999995
  31
 0.0
   0
@@ -4273,13 +4273,13 @@ LINE
  10
 223.44717806890824
  20
-95.52325299999994
+271.52325299999995
  30
 0.0
  11
 233.44717806890827
  21
-95.52325299999994
+271.52325299999995
  31
 0.0
   0
@@ -4291,13 +4291,13 @@ LINE
  10
 233.44717806890827
  20
-95.52325299999994
+271.52325299999995
  30
 0.0
  11
 233.44717806890824
  21
-101.52325299999994
+277.523253
  31
 0.0
   0
@@ -4309,13 +4309,13 @@ LINE
  10
 233.44717806890824
  20
-101.52325299999994
+277.523253
  30
 0.0
  11
 223.44717806890822
  21
-101.52325299999994
+277.523253
  31
 0.0
   0
@@ -4327,13 +4327,13 @@ LINE
  10
 188.05855606972293
  20
-128.5914348181817
+304.59143481818177
  30
 0.0
  11
 188.05855606972293
  21
-140.1823439090908
+316.1823439090909
  31
 0.0
   0
@@ -4345,13 +4345,13 @@ LINE
  10
 188.05855606972293
  20
-140.1823439090908
+316.1823439090909
  30
 0.0
  11
 187.55855606972293
  21
-140.1823439090908
+316.1823439090909
  31
 0.0
   0
@@ -4363,13 +4363,13 @@ LINE
  10
 187.55855606972293
  20
-140.1823439090908
+316.1823439090909
  30
 0.0
  11
 187.55855606972293
  21
-128.5914348181817
+304.59143481818177
  31
 0.0
   0
@@ -4381,13 +4381,13 @@ LINE
  10
 187.55855606972293
  20
-128.5914348181817
+304.59143481818177
  30
 0.0
  11
 188.05855606972293
  21
-128.5914348181817
+304.59143481818177
  31
 0.0
   0
@@ -4399,13 +4399,13 @@ LINE
  10
 188.05855606972293
  20
-100.864162090909
+276.8641620909091
  30
 0.0
  11
 188.05855606972293
  21
-112.45507118181808
+288.45507118181814
  31
 0.0
   0
@@ -4417,13 +4417,13 @@ LINE
  10
 188.05855606972293
  20
-112.45507118181808
+288.45507118181814
  30
 0.0
  11
 187.55855606972293
  21
-112.45507118181808
+288.45507118181814
  31
 0.0
   0
@@ -4435,13 +4435,13 @@ LINE
  10
 187.55855606972293
  20
-112.45507118181808
+288.45507118181814
  30
 0.0
  11
 187.55855606972293
  21
-100.864162090909
+276.8641620909091
  31
 0.0
   0
@@ -4453,13 +4453,13 @@ LINE
  10
 187.55855606972293
  20
-100.864162090909
+276.8641620909091
  30
 0.0
  11
 188.05855606972293
  21
-100.864162090909
+276.8641620909091
  31
 0.0
   0
@@ -4471,13 +4471,13 @@ LINE
  10
 232.44717806890824
  20
-82.52325299999994
+258.523253
  30
 0.0
  11
 232.44717806890824
  21
-87.52325299999994
+263.523253
  31
 0.0
   0
@@ -4489,13 +4489,13 @@ LINE
  10
 232.44717806890824
  20
-87.52325299999994
+263.523253
  30
 0.0
  11
 224.44717806890824
  21
-87.52325299999994
+263.523253
  31
 0.0
   0
@@ -4507,13 +4507,13 @@ LINE
  10
 224.44717806890824
  20
-87.52325299999994
+263.523253
  30
 0.0
  11
 224.44717806890824
  21
-82.52325299999991
+258.523253
  31
 0.0
   0
@@ -4525,13 +4525,13 @@ LINE
  10
 224.44717806890822
  20
-158.52325299999995
+334.52325299999995
  30
 0.0
  11
 224.44717806890822
  21
-153.52325299999995
+329.52325299999995
  31
 0.0
   0
@@ -4543,13 +4543,13 @@ LINE
  10
 224.44717806890822
  20
-153.52325299999995
+329.52325299999995
  30
 0.0
  11
 232.44717806890822
  21
-153.52325299999995
+329.52325299999995
  31
 0.0
   0
@@ -4561,13 +4561,13 @@ LINE
  10
 232.44717806890822
  20
-153.52325299999995
+329.52325299999995
  30
 0.0
  11
 232.44717806890822
  21
-158.52325299999998
+334.52325299999995
  31
 0.0
   0
@@ -4579,15 +4579,15 @@ DOTTED
   8
 0
  10
-543.0905903408144
+543.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4599,15 +4599,15 @@ DOTTED
   8
 0
  10
-604.0905903408143
+604.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4619,15 +4619,15 @@ DOTTED
   8
 0
  10
-604.0905903408143
+604.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4639,15 +4639,15 @@ DOTTED
   8
 0
  10
-543.0905903408144
+543.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4657,15 +4657,15 @@ LINE
   8
 0
  10
-543.0905903408144
+543.090590340815
  20
-132.023253
+308.02325300000007
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4675,15 +4675,15 @@ LINE
   8
 0
  10
-579.0905903408144
+579.090590340815
  20
-132.023253
+308.02325300000007
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-132.023253
+308.02325300000007
  31
 0.0
   0
@@ -4693,15 +4693,15 @@ LINE
   8
 0
  10
-579.0905903408144
+579.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-579.0905903408144
+579.090590340815
  21
-132.023253
+308.02325300000007
  31
 0.0
   0
@@ -4711,15 +4711,15 @@ LINE
   8
 0
  10
-611.0905903408143
+611.0905903408149
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4729,15 +4729,15 @@ LINE
   8
 0
  10
-611.0905903408143
+611.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-611.0905903408143
+611.0905903408149
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4747,15 +4747,15 @@ LINE
   8
 0
  10
-604.0905903408143
+604.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-611.0905903408143
+611.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4767,15 +4767,15 @@ DOTTED
   8
 0
  10
-604.0905903408143
+604.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4785,15 +4785,15 @@ LINE
   8
 0
  10
-568.0905903408143
+568.090590340815
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4805,15 +4805,15 @@ DOTTED
   8
 0
  10
-568.0905903408143
+568.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-568.0905903408143
+568.090590340815
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4823,15 +4823,15 @@ LINE
   8
 0
  10
-628.0905903408144
+628.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4843,15 +4843,15 @@ DOTTED
   8
 0
  10
-628.0905903408144
+628.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-628.0905903408144
+628.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4861,15 +4861,15 @@ LINE
   8
 0
  10
-604.0905903408143
+604.090590340815
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-628.0905903408144
+628.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4879,15 +4879,15 @@ LINE
   8
 0
  10
-664.0905903408144
+664.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-628.0905903408144
+628.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4897,15 +4897,15 @@ LINE
   8
 0
  10
-664.0905903408144
+664.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-664.0905903408144
+664.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4915,15 +4915,15 @@ LINE
   8
 0
  10
-628.0905903408144
+628.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-664.0905903408144
+664.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4933,15 +4933,15 @@ LINE
   8
 0
  10
-568.0905903408143
+568.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-544.0905903408144
+544.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4951,15 +4951,15 @@ LINE
   8
 0
  10
-544.0905903408144
+544.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-568.0905903408143
+568.090590340815
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4971,15 +4971,15 @@ DOTTED
   8
 0
  10
-544.0905903408144
+544.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-544.0905903408144
+544.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4989,15 +4989,15 @@ LINE
   8
 0
  10
-534.0905903408144
+534.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-544.0905903408144
+544.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -5007,15 +5007,15 @@ LINE
   8
 0
  10
-534.0905903408144
+534.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-534.0905903408144
+534.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -5025,15 +5025,15 @@ LINE
   8
 0
  10
-544.0905903408144
+544.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-534.0905903408144
+534.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -5043,15 +5043,15 @@ LINE
   8
 0
  10
-536.0905903408143
+536.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -5061,15 +5061,15 @@ LINE
   8
 0
  10
-536.0905903408143
+536.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-536.0905903408143
+536.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -5079,15 +5079,15 @@ LINE
   8
 0
  10
-543.0905903408144
+543.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-536.0905903408143
+536.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -5097,15 +5097,15 @@ LINE
   8
 0
  10
-567.0905903408143
+567.090590340815
  20
-133.77325300000004
+309.77325300000007
  30
 0.0
  11
-570.5905903408144
+570.590590340815
  21
-133.77325300000004
+309.77325300000007
  31
 0.0
   0
@@ -5115,15 +5115,15 @@ LINE
   8
 0
  10
-570.5905903408144
+570.590590340815
  20
-133.77325300000004
+309.77325300000007
  30
 0.0
  11
-567.0905903408143
+567.090590340815
  21
-137.27325300000004
+313.27325300000007
  31
 0.0
   0
@@ -5133,15 +5133,15 @@ LINE
   8
 0
  10
-567.0905903408143
+567.090590340815
  20
-137.27325300000004
+313.27325300000007
  30
 0.0
  11
-555.0905903408144
+555.0905903408149
  21
-137.27325300000004
+313.27325300000007
  31
 0.0
   0
@@ -5151,15 +5151,15 @@ LINE
   8
 0
  10
-555.0905903408144
+555.0905903408149
  20
-137.27325300000004
+313.27325300000007
  30
 0.0
  11
-551.5905903408144
+551.590590340815
  21
-133.77325300000004
+309.77325300000007
  31
 0.0
   0
@@ -5169,15 +5169,15 @@ LINE
   8
 0
  10
-551.5905903408144
+551.590590340815
  20
-133.77325300000004
+309.77325300000007
  30
 0.0
  11
-555.0905903408144
+555.0905903408149
  21
-133.77325300000004
+309.77325300000007
  31
 0.0
   0
@@ -5187,15 +5187,15 @@ LINE
   8
 0
  10
-609.3405903408144
+609.340590340815
  20
-155.023253
+331.02325300000007
  30
 0.0
  11
-605.8405903408143
+605.8405903408149
  21
-155.023253
+331.02325300000007
  31
 0.0
   0
@@ -5205,15 +5205,15 @@ LINE
   8
 0
  10
-605.8405903408143
+605.8405903408149
  20
-155.023253
+331.02325300000007
  30
 0.0
  11
-605.8405903408143
+605.8405903408149
  21
-147.02325300000004
+323.02325300000007
  31
 0.0
   0
@@ -5223,15 +5223,15 @@ LINE
   8
 0
  10
-605.8405903408143
+605.8405903408149
  20
-147.02325300000004
+323.02325300000007
  30
 0.0
  11
-609.3405903408144
+609.340590340815
  21
-147.02325300000004
+323.02325300000007
  31
 0.0
   0
@@ -5241,15 +5241,15 @@ LINE
   8
 0
  10
-581.2048760551
+581.2048760551007
  20
-217.77325300000004
+393.773253
  30
 0.0
  11
-581.2048760551
+581.2048760551007
  21
-199.77325300000004
+375.773253
  31
 0.0
   0
@@ -5259,15 +5259,15 @@ LINE
   8
 0
  10
-581.2048760551
+581.2048760551007
  20
-199.77325300000004
+375.773253
  30
 0.0
  11
-601.7763046265287
+601.7763046265293
  21
-199.77325300000004
+375.773253
  31
 0.0
   0
@@ -5277,15 +5277,15 @@ LINE
   8
 0
  10
-601.7763046265287
+601.7763046265293
  20
-199.77325300000004
+375.773253
  30
 0.0
  11
-601.7763046265287
+601.7763046265293
  21
-217.77325300000004
+393.773253
  31
 0.0
   0
@@ -5295,15 +5295,15 @@ LINE
   8
 0
  10
-601.7763046265287
+601.7763046265293
  20
-217.77325300000004
+393.773253
  30
 0.0
  11
-581.2048760551
+581.2048760551007
  21
-217.77325300000004
+393.773253
  31
 0.0
   0
@@ -5313,15 +5313,15 @@ LINE
   8
 0
  10
-604.5905903408143
+604.590590340815
  20
-176.27325300000004
+352.273253
  30
 0.0
  11
-604.5905903408143
+604.590590340815
  21
-173.27325300000004
+349.27325300000007
  31
 0.0
   0
@@ -5331,15 +5331,15 @@ LINE
   8
 0
  10
-604.5905903408143
+604.590590340815
  20
-173.27325300000004
+349.27325300000007
  30
 0.0
  11
-607.5905903408144
+607.590590340815
  21
-173.27325300000004
+349.27325300000007
  31
 0.0
   0
@@ -5349,15 +5349,15 @@ LINE
   8
 0
  10
-607.5905903408144
+607.590590340815
  20
-173.27325300000004
+349.27325300000007
  30
 0.0
  11
-607.5905903408144
+607.590590340815
  21
-176.27325300000004
+352.273253
  31
 0.0
   0
@@ -5367,15 +5367,15 @@ LINE
   8
 0
  10
-607.5905903408144
+607.590590340815
  20
-176.27325300000004
+352.273253
  30
 0.0
  11
-604.5905903408143
+604.590590340815
  21
-176.27325300000004
+352.273253
  31
 0.0
   0
@@ -5385,15 +5385,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-175.273253
+351.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -5403,15 +5403,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -5421,15 +5421,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-175.273253
+351.27325300000007
  31
 0.0
   0
@@ -5439,15 +5439,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-175.273253
+351.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-175.273253
+351.27325300000007
  31
 0.0
   0
@@ -5457,15 +5457,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -5475,15 +5475,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -5493,15 +5493,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -5511,15 +5511,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -5529,15 +5529,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -5547,15 +5547,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -5565,15 +5565,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -5583,15 +5583,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -5601,15 +5601,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -5619,15 +5619,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -5637,15 +5637,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -5655,15 +5655,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -5673,15 +5673,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -5691,15 +5691,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -5709,15 +5709,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -5727,15 +5727,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -5745,15 +5745,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -5763,15 +5763,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-181.773253
+357.773253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -5781,15 +5781,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-181.773253
+357.773253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -5799,15 +5799,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -5817,15 +5817,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -5835,15 +5835,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-181.773253
+357.773253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -5853,15 +5853,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-181.773253
+357.773253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -5871,15 +5871,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -5889,15 +5889,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -5907,15 +5907,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -5925,15 +5925,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -5943,15 +5943,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -5961,15 +5961,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -5979,15 +5979,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -5997,15 +5997,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -6015,15 +6015,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -6033,15 +6033,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -6051,15 +6051,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -6069,15 +6069,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -6087,15 +6087,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -6105,15 +6105,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -6123,15 +6123,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -6141,15 +6141,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -6159,15 +6159,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -6177,15 +6177,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -6195,15 +6195,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -6213,15 +6213,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -6231,15 +6231,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -6249,15 +6249,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -6267,15 +6267,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -6285,15 +6285,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -6303,15 +6303,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -6321,15 +6321,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -6339,15 +6339,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -6357,15 +6357,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -6375,15 +6375,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -6393,15 +6393,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -6411,15 +6411,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -6429,15 +6429,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -6447,15 +6447,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -6465,15 +6465,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -6483,15 +6483,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -6501,15 +6501,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -6519,15 +6519,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -6537,15 +6537,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -6555,15 +6555,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -6573,15 +6573,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -6591,15 +6591,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -6609,15 +6609,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -6627,15 +6627,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -6645,15 +6645,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -6663,15 +6663,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -6681,15 +6681,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -6699,15 +6699,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -6717,15 +6717,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -6735,15 +6735,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -6753,15 +6753,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -6771,15 +6771,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -6789,15 +6789,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -6807,15 +6807,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -6825,15 +6825,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -6843,15 +6843,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -6861,15 +6861,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -6879,15 +6879,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -6897,15 +6897,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -6915,15 +6915,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -6933,15 +6933,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -6951,15 +6951,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -6969,15 +6969,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -6987,15 +6987,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -7005,15 +7005,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -7023,15 +7023,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -7041,15 +7041,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -7059,15 +7059,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -7077,15 +7077,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -7095,15 +7095,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -7113,15 +7113,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -7131,15 +7131,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -7149,15 +7149,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -7167,15 +7167,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -7185,15 +7185,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -7203,15 +7203,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -7221,15 +7221,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -7239,15 +7239,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -7257,15 +7257,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -7275,15 +7275,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -7293,15 +7293,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -7311,15 +7311,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -7329,15 +7329,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -7347,15 +7347,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -7365,15 +7365,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -7383,15 +7383,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -7401,15 +7401,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -7419,15 +7419,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -7437,15 +7437,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -7455,15 +7455,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -7473,15 +7473,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-212.77325300000004
+388.773253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-211.77325300000004
+387.77325300000007
  31
 0.0
   0
@@ -7491,15 +7491,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-211.77325300000004
+387.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-211.77325300000004
+387.77325300000007
  31
 0.0
   0
@@ -7509,15 +7509,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-211.77325300000004
+387.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-212.77325300000004
+388.773253
  31
 0.0
   0
@@ -7527,15 +7527,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-212.77325300000004
+388.773253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-212.77325300000004
+388.773253
  31
 0.0
   0
@@ -7545,15 +7545,15 @@ LINE
   8
 0
  10
-624.5905903408144
+624.590590340815
  20
-213.773253
+389.77325300000007
  30
 0.0
  11
-624.5905903408144
+624.590590340815
  21
-210.77325300000004
+386.77325300000007
  31
 0.0
   0
@@ -7563,15 +7563,15 @@ LINE
   8
 0
  10
-624.5905903408144
+624.590590340815
  20
-210.77325300000004
+386.77325300000007
  30
 0.0
  11
-627.5905903408144
+627.5905903408149
  21
-210.77325300000004
+386.77325300000007
  31
 0.0
   0
@@ -7581,15 +7581,15 @@ LINE
   8
 0
  10
-627.5905903408144
+627.5905903408149
  20
-210.77325300000004
+386.77325300000007
  30
 0.0
  11
-627.5905903408144
+627.5905903408149
  21
-213.773253
+389.77325300000007
  31
 0.0
   0
@@ -7599,15 +7599,15 @@ LINE
   8
 0
  10
-627.5905903408144
+627.5905903408149
  20
-213.773253
+389.77325300000007
  30
 0.0
  11
-624.5905903408144
+624.590590340815
  21
-213.773253
+389.77325300000007
  31
 0.0
   0
@@ -7617,15 +7617,15 @@ LINE
   8
 0
  10
-620.3405903408144
+620.340590340815
  20
-170.773253
+346.77325300000007
  30
 0.0
  11
-611.8405903408144
+611.840590340815
  21
-170.773253
+346.77325300000007
  31
 0.0
   0
@@ -7635,15 +7635,15 @@ LINE
   8
 0
  10
-611.8405903408144
+611.840590340815
  20
-170.773253
+346.77325300000007
  30
 0.0
  11
-611.8405903408144
+611.840590340815
  21
-170.27325300000004
+346.27325300000007
  31
 0.0
   0
@@ -7653,15 +7653,15 @@ LINE
   8
 0
  10
-611.8405903408144
+611.840590340815
  20
-170.27325300000004
+346.27325300000007
  30
 0.0
  11
-620.3405903408144
+620.340590340815
  21
-170.27325300000004
+346.27325300000007
  31
 0.0
   0
@@ -7671,15 +7671,15 @@ LINE
   8
 0
  10
-620.3405903408144
+620.340590340815
  20
-170.27325300000004
+346.27325300000007
  30
 0.0
  11
-620.3405903408144
+620.340590340815
  21
-170.773253
+346.77325300000007
  31
 0.0
   0
@@ -7689,15 +7689,15 @@ LINE
   8
 0
  10
-611.8405903408144
+611.840590340815
  20
-218.523253
+394.52325300000007
  30
 0.0
  11
-620.3405903408144
+620.340590340815
  21
-218.523253
+394.52325300000007
  31
 0.0
   0
@@ -7707,15 +7707,15 @@ LINE
   8
 0
  10
-620.3405903408144
+620.340590340815
  20
-218.523253
+394.52325300000007
  30
 0.0
  11
-620.3405903408144
+620.340590340815
  21
-219.02325300000004
+395.02325300000007
  31
 0.0
   0
@@ -7725,15 +7725,15 @@ LINE
   8
 0
  10
-620.3405903408144
+620.340590340815
  20
-219.02325300000004
+395.02325300000007
  30
 0.0
  11
-611.8405903408144
+611.840590340815
  21
-219.02325300000004
+395.02325300000007
  31
 0.0
   0
@@ -7743,15 +7743,15 @@ LINE
   8
 0
  10
-611.8405903408144
+611.840590340815
  20
-219.02325300000004
+395.02325300000007
  30
 0.0
  11
-611.8405903408144
+611.840590340815
  21
-218.523253
+394.52325300000007
  31
 0.0
   0
@@ -7761,15 +7761,15 @@ LINE
   8
 0
  10
-633.6448760551
+633.6448760551007
  20
-219.54325300000002
+395.54325300000005
  30
 0.0
  11
-633.6448760551
+633.6448760551007
  21
-206.54325300000002
+382.54325300000005
  31
 0.0
   0
@@ -7779,15 +7779,15 @@ LINE
   8
 0
  10
-633.6448760551
+633.6448760551007
  20
-206.54325300000002
+382.54325300000005
  30
 0.0
  11
-654.2163046265287
+654.2163046265292
  21
-206.54325300000002
+382.54325300000005
  31
 0.0
   0
@@ -7797,15 +7797,15 @@ LINE
   8
 0
  10
-654.2163046265287
+654.2163046265292
  20
-206.54325300000002
+382.54325300000005
  30
 0.0
  11
-654.2163046265287
+654.2163046265292
  21
-219.54325300000002
+395.54325300000005
  31
 0.0
   0
@@ -7815,15 +7815,15 @@ LINE
   8
 0
  10
-654.2163046265287
+654.2163046265292
  20
-219.54325300000002
+395.54325300000005
  30
 0.0
  11
-633.6448760551
+633.6448760551007
  21
-219.54325300000002
+395.54325300000005
  31
 0.0
   0
@@ -7833,15 +7833,15 @@ LINE
   8
 0
  10
-652.3405903408143
+652.340590340815
  20
-168.523253
+344.52325300000007
  30
 0.0
  11
-639.8405903408144
+639.8405903408149
  21
-168.523253
+344.52325300000007
  31
 0.0
   0
@@ -7851,15 +7851,15 @@ LINE
   8
 0
  10
-639.8405903408144
+639.8405903408149
  20
-168.523253
+344.52325300000007
  30
 0.0
  11
-639.8405903408144
+639.8405903408149
  21
-168.023253
+344.023253
  31
 0.0
   0
@@ -7869,15 +7869,15 @@ LINE
   8
 0
  10
-639.8405903408144
+639.8405903408149
  20
-168.023253
+344.023253
  30
 0.0
  11
-652.3405903408143
+652.340590340815
  21
-168.023253
+344.023253
  31
 0.0
   0
@@ -7887,15 +7887,15 @@ LINE
   8
 0
  10
-652.3405903408143
+652.340590340815
  20
-168.023253
+344.023253
  30
 0.0
  11
-652.3405903408143
+652.340590340815
  21
-168.523253
+344.52325300000007
  31
 0.0
   0
@@ -7905,15 +7905,15 @@ LINE
   8
 0
  10
-656.3405903408144
+656.340590340815
  20
-185.45507118181823
+361.45507118181825
  30
 0.0
  11
-656.3405903408144
+656.340590340815
  21
-173.8641620909091
+349.86416209090913
  31
 0.0
   0
@@ -7923,15 +7923,15 @@ LINE
   8
 0
  10
-656.3405903408144
+656.340590340815
  20
-173.8641620909091
+349.86416209090913
  30
 0.0
  11
-656.8405903408144
+656.840590340815
  21
-173.8641620909091
+349.86416209090913
  31
 0.0
   0
@@ -7941,15 +7941,15 @@ LINE
   8
 0
  10
-656.8405903408144
+656.840590340815
  20
-173.8641620909091
+349.86416209090913
  30
 0.0
  11
-656.8405903408144
+656.840590340815
  21
-185.45507118181823
+361.45507118181825
  31
 0.0
   0
@@ -7959,15 +7959,15 @@ LINE
   8
 0
  10
-656.8405903408144
+656.840590340815
  20
-185.45507118181823
+361.45507118181825
  30
 0.0
  11
-656.3405903408144
+656.340590340815
  21
-185.45507118181823
+361.45507118181825
  31
 0.0
   0
@@ -7977,15 +7977,15 @@ LINE
   8
 0
  10
-656.3405903408144
+656.340590340815
  20
-213.18234390909095
+389.182343909091
  30
 0.0
  11
-656.3405903408144
+656.340590340815
  21
-201.59143481818185
+377.5914348181818
  31
 0.0
   0
@@ -7995,15 +7995,15 @@ LINE
   8
 0
  10
-656.3405903408144
+656.340590340815
  20
-201.59143481818185
+377.5914348181818
  30
 0.0
  11
-656.8405903408144
+656.840590340815
  21
-201.59143481818185
+377.5914348181818
  31
 0.0
   0
@@ -8013,15 +8013,15 @@ LINE
   8
 0
  10
-656.8405903408144
+656.840590340815
  20
-201.59143481818185
+377.5914348181818
  30
 0.0
  11
-656.8405903408144
+656.840590340815
  21
-213.18234390909095
+389.182343909091
  31
 0.0
   0
@@ -8031,15 +8031,15 @@ LINE
   8
 0
  10
-656.8405903408144
+656.840590340815
  20
-213.18234390909095
+389.182343909091
  30
 0.0
  11
-656.3405903408144
+656.340590340815
  21
-213.18234390909095
+389.182343909091
  31
 0.0
   0
@@ -8049,15 +8049,15 @@ LINE
   8
 0
  10
-544.5905903408144
+544.5905903408149
  20
-176.27325300000004
+352.273253
  30
 0.0
  11
-544.5905903408144
+544.5905903408149
  21
-173.27325300000004
+349.27325300000007
  31
 0.0
   0
@@ -8067,15 +8067,15 @@ LINE
   8
 0
  10
-544.5905903408144
+544.5905903408149
  20
-173.27325300000004
+349.27325300000007
  30
 0.0
  11
-547.5905903408143
+547.5905903408149
  21
-173.27325300000004
+349.27325300000007
  31
 0.0
   0
@@ -8085,15 +8085,15 @@ LINE
   8
 0
  10
-547.5905903408143
+547.5905903408149
  20
-173.27325300000004
+349.27325300000007
  30
 0.0
  11
-547.5905903408143
+547.5905903408149
  21
-176.27325300000004
+352.273253
  31
 0.0
   0
@@ -8103,15 +8103,15 @@ LINE
   8
 0
  10
-547.5905903408143
+547.5905903408149
  20
-176.27325300000004
+352.273253
  30
 0.0
  11
-544.5905903408144
+544.5905903408149
  21
-176.27325300000004
+352.273253
  31
 0.0
   0
@@ -8121,15 +8121,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-175.273253
+351.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -8139,15 +8139,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -8157,15 +8157,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-175.273253
+351.27325300000007
  31
 0.0
   0
@@ -8175,15 +8175,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-175.273253
+351.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-175.273253
+351.27325300000007
  31
 0.0
   0
@@ -8193,15 +8193,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -8211,15 +8211,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -8229,15 +8229,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -8247,15 +8247,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -8265,15 +8265,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -8283,15 +8283,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -8301,15 +8301,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -8319,15 +8319,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -8337,15 +8337,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -8355,15 +8355,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -8373,15 +8373,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -8391,15 +8391,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -8409,15 +8409,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -8427,15 +8427,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -8445,15 +8445,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -8463,15 +8463,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -8481,15 +8481,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -8499,15 +8499,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-181.773253
+357.773253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -8517,15 +8517,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-181.773253
+357.773253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -8535,15 +8535,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -8553,15 +8553,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -8571,15 +8571,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-181.773253
+357.773253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -8589,15 +8589,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-181.773253
+357.773253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -8607,15 +8607,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -8625,15 +8625,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -8643,15 +8643,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -8661,15 +8661,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -8679,15 +8679,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -8697,15 +8697,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -8715,15 +8715,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -8733,15 +8733,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -8751,15 +8751,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -8769,15 +8769,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -8787,15 +8787,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -8805,15 +8805,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -8823,15 +8823,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -8841,15 +8841,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -8859,15 +8859,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -8877,15 +8877,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -8895,15 +8895,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -8913,15 +8913,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -8931,15 +8931,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -8949,15 +8949,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -8967,15 +8967,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -8985,15 +8985,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -9003,15 +9003,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -9021,15 +9021,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -9039,15 +9039,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -9057,15 +9057,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -9075,15 +9075,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -9093,15 +9093,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -9111,15 +9111,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -9129,15 +9129,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -9147,15 +9147,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -9165,15 +9165,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -9183,15 +9183,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -9201,15 +9201,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -9219,15 +9219,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -9237,15 +9237,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -9255,15 +9255,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -9273,15 +9273,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -9291,15 +9291,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -9309,15 +9309,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -9327,15 +9327,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -9345,15 +9345,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -9363,15 +9363,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -9381,15 +9381,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -9399,15 +9399,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -9417,15 +9417,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -9435,15 +9435,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -9453,15 +9453,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -9471,15 +9471,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -9489,15 +9489,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -9507,15 +9507,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -9525,15 +9525,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -9543,15 +9543,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -9561,15 +9561,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -9579,15 +9579,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -9597,15 +9597,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -9615,15 +9615,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -9633,15 +9633,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -9651,15 +9651,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -9669,15 +9669,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -9687,15 +9687,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -9705,15 +9705,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -9723,15 +9723,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -9741,15 +9741,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -9759,15 +9759,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -9777,15 +9777,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -9795,15 +9795,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -9813,15 +9813,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -9831,15 +9831,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -9849,15 +9849,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -9867,15 +9867,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -9885,15 +9885,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -9903,15 +9903,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -9921,15 +9921,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -9939,15 +9939,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -9957,15 +9957,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -9975,15 +9975,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -9993,15 +9993,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -10011,15 +10011,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -10029,15 +10029,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -10047,15 +10047,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -10065,15 +10065,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -10083,15 +10083,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -10101,15 +10101,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -10119,15 +10119,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -10137,15 +10137,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -10155,15 +10155,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -10173,15 +10173,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -10191,15 +10191,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -10209,15 +10209,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-212.77325300000004
+388.773253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-211.77325300000004
+387.77325300000007
  31
 0.0
   0
@@ -10227,15 +10227,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-211.77325300000004
+387.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-211.77325300000004
+387.77325300000007
  31
 0.0
   0
@@ -10245,15 +10245,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-211.77325300000004
+387.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-212.77325300000004
+388.773253
  31
 0.0
   0
@@ -10263,15 +10263,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-212.77325300000004
+388.773253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-212.77325300000004
+388.773253
  31
 0.0
   0
@@ -10281,15 +10281,15 @@ LINE
   8
 0
  10
-564.5905903408143
+564.5905903408149
  20
-213.773253
+389.77325300000007
  30
 0.0
  11
-564.5905903408143
+564.5905903408149
  21
-210.77325300000004
+386.77325300000007
  31
 0.0
   0
@@ -10299,15 +10299,15 @@ LINE
   8
 0
  10
-564.5905903408143
+564.5905903408149
  20
-210.77325300000004
+386.77325300000007
  30
 0.0
  11
-567.5905903408143
+567.590590340815
  21
-210.77325300000004
+386.77325300000007
  31
 0.0
   0
@@ -10317,15 +10317,15 @@ LINE
   8
 0
  10
-567.5905903408143
+567.590590340815
  20
-210.77325300000004
+386.77325300000007
  30
 0.0
  11
-567.5905903408143
+567.590590340815
  21
-213.773253
+389.77325300000007
  31
 0.0
   0
@@ -10335,15 +10335,15 @@ LINE
   8
 0
  10
-567.5905903408143
+567.590590340815
  20
-213.773253
+389.77325300000007
  30
 0.0
  11
-564.5905903408143
+564.5905903408149
  21
-213.773253
+389.77325300000007
  31
 0.0
   0
@@ -10353,15 +10353,15 @@ LINE
   8
 0
  10
-560.3405903408143
+560.3405903408149
  20
-170.773253
+346.77325300000007
  30
 0.0
  11
-551.8405903408143
+551.8405903408149
  21
-170.773253
+346.77325300000007
  31
 0.0
   0
@@ -10371,15 +10371,15 @@ LINE
   8
 0
  10
-551.8405903408143
+551.8405903408149
  20
-170.773253
+346.77325300000007
  30
 0.0
  11
-551.8405903408143
+551.8405903408149
  21
-170.27325300000004
+346.27325300000007
  31
 0.0
   0
@@ -10389,15 +10389,15 @@ LINE
   8
 0
  10
-551.8405903408143
+551.8405903408149
  20
-170.27325300000004
+346.27325300000007
  30
 0.0
  11
-560.3405903408143
+560.3405903408149
  21
-170.27325300000004
+346.27325300000007
  31
 0.0
   0
@@ -10407,15 +10407,15 @@ LINE
   8
 0
  10
-560.3405903408143
+560.3405903408149
  20
-170.27325300000004
+346.27325300000007
  30
 0.0
  11
-560.3405903408143
+560.3405903408149
  21
-170.773253
+346.77325300000007
  31
 0.0
   0
@@ -10425,15 +10425,15 @@ LINE
   8
 0
  10
-551.8405903408143
+551.8405903408149
  20
-218.523253
+394.52325300000007
  30
 0.0
  11
-560.3405903408143
+560.3405903408149
  21
-218.523253
+394.52325300000007
  31
 0.0
   0
@@ -10443,15 +10443,15 @@ LINE
   8
 0
  10
-560.3405903408143
+560.3405903408149
  20
-218.523253
+394.52325300000007
  30
 0.0
  11
-560.3405903408143
+560.3405903408149
  21
-219.02325300000004
+395.02325300000007
  31
 0.0
   0
@@ -10461,15 +10461,15 @@ LINE
   8
 0
  10
-560.3405903408143
+560.3405903408149
  20
-219.02325300000004
+395.02325300000007
  30
 0.0
  11
-551.8405903408143
+551.8405903408149
  21
-219.02325300000004
+395.02325300000007
  31
 0.0
   0
@@ -10479,15 +10479,15 @@ LINE
   8
 0
  10
-551.8405903408143
+551.8405903408149
  20
-219.02325300000004
+395.02325300000007
  30
 0.0
  11
-551.8405903408143
+551.8405903408149
  21
-218.523253
+394.52325300000007
  31
 0.0
   0
@@ -10497,15 +10497,15 @@ LINE
   8
 0
  10
-536.5905903408143
+536.590590340815
  20
-174.1141620909091
+350.11416209090913
  30
 0.0
  11
-541.5905903408144
+541.5905903408149
  21
-174.1141620909091
+350.11416209090913
  31
 0.0
   0
@@ -10515,15 +10515,15 @@ LINE
   8
 0
  10
-541.5905903408144
+541.5905903408149
  20
-174.1141620909091
+350.11416209090913
  30
 0.0
  11
-541.5905903408144
+541.5905903408149
  21
-185.20507118181823
+361.20507118181825
  31
 0.0
   0
@@ -10533,15 +10533,15 @@ LINE
   8
 0
  10
-541.5905903408144
+541.5905903408149
  20
-185.20507118181823
+361.20507118181825
  30
 0.0
  11
-536.5905903408143
+536.590590340815
  21
-185.20507118181823
+361.20507118181825
  31
 0.0
   0
@@ -10551,15 +10551,15 @@ LINE
   8
 0
  10
-536.5905903408143
+536.590590340815
  20
-201.84143481818185
+377.8414348181818
  30
 0.0
  11
-541.5905903408144
+541.5905903408149
  21
-201.84143481818185
+377.8414348181818
  31
 0.0
   0
@@ -10569,15 +10569,15 @@ LINE
   8
 0
  10
-541.5905903408144
+541.5905903408149
  20
-201.84143481818185
+377.8414348181818
  30
 0.0
  11
-541.5905903408144
+541.5905903408149
  21
-212.93234390909092
+388.932343909091
  31
 0.0
   0
@@ -10587,15 +10587,15 @@ LINE
   8
 0
  10
-541.5905903408144
+541.5905903408149
  20
-212.93234390909092
+388.932343909091
  30
 0.0
  11
-536.5905903408143
+536.590590340815
  21
-212.93234390909092
+388.932343909091
  31
 0.0
   0
@@ -10605,15 +10605,15 @@ LINE
   8
 0
  10
-537.8405903408144
+537.8405903408149
  20
-147.02325300000004
+323.02325300000007
  30
 0.0
  11
-541.3405903408144
+541.340590340815
  21
-147.02325300000004
+323.02325300000007
  31
 0.0
   0
@@ -10623,15 +10623,15 @@ LINE
   8
 0
  10
-541.3405903408144
+541.340590340815
  20
-147.02325300000004
+323.02325300000007
  30
 0.0
  11
-541.3405903408144
+541.340590340815
  21
-155.023253
+331.02325300000007
  31
 0.0
   0
@@ -10641,15 +10641,15 @@ LINE
   8
 0
  10
-541.3405903408144
+541.340590340815
  20
-155.023253
+331.02325300000007
  30
 0.0
  11
-537.8405903408144
+537.8405903408149
  21
-155.023253
+331.02325300000007
  31
 0.0
   0
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-lasercutter.svg b/rocolib/builders/output/BoatWithStackBattery/graph-lasercutter.svg
index 59f76ddc730f45be8a1df09a4c9b34b376736127..d4224b921651e89fcad7bf464c3f215c9187bef1 100644
--- a/rocolib/builders/output/BoatWithStackBattery/graph-lasercutter.svg
+++ b/rocolib/builders/output/BoatWithStackBattery/graph-lasercutter.svg
@@ -1,539 +1,539 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="302.046506mm" version="1.1" viewBox="0.000000 0.000000 664.090590 302.046506" width="664.090590mm">
+<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="654.046506mm" version="1.1" viewBox="0.000000 0.000000 664.090590 654.046506" width="664.090590mm">
   <defs/>
-  <line stroke="#000000" x1="160.30855606972293" x2="98.65427803486146" y1="120.52325300000003" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="160.30855606972293" y1="181.52325300000004" y2="181.52325300000004"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="98.65427803486146" y1="181.52325300000004" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="170.30855606972293" x2="160.30855606972293" y1="120.52325300000003" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="170.30855606972293" x2="170.30855606972293" y1="181.52325300000004" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="160.30855606972293" x2="170.30855606972293" y1="181.52325300000004" y2="181.52325300000004"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="98.65427803486146" y1="181.52325300000004" y2="181.52325300000004"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="71.65427803486145" x2="71.65427803486145" y1="120.52325300000003" y2="181.52325300000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="120.52325300000003" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="10.000000000000002" x2="71.65427803486145" y1="181.52325300000004" y2="181.52325300000004"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="10.000000000000002" y1="120.52325300000003" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="181.52325300000004" y2="181.52325300000004"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="120.52325300000003" y2="181.52325300000004"/>
-  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="120.52325300000003" y2="120.52325300000003"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="120.52325300000003" y2="103.52325300000001"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="103.52325300000001" y2="120.52325300000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="103.52325300000001" y2="103.52325300000001"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="103.52325300000001" y2="42.52325300000002"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="42.52325300000002" y2="103.52325300000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="42.52325300000002" y2="42.52325300000002"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="42.52325300000002" y2="25.523253000000015"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="25.523253000000015" y2="42.52325300000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="71.65427803486145" x2="98.65427803486146" y1="25.523253000000015" y2="25.523253000000015"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="15.523253000000013" y2="25.523253000000015"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="71.65427803486145" y1="15.523253000000013" y2="15.523253000000013"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="25.523253000000015" y2="15.523253000000013"/>
-  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="170.43234390909095" y2="170.43234390909095"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="170.43234390909095" y2="159.34143481818182"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="159.34143481818182" y2="159.34143481818182"/>
-  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="142.7050711818182" y2="142.7050711818182"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="142.7050711818182" y2="131.61416209090913"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="131.61416209090913" y2="131.61416209090913"/>
-  <line stroke="#888888" x1="94.15427803486146" x2="94.15427803486146" y1="118.02325300000003" y2="124.02325300000003"/>
-  <line stroke="#888888" x1="94.15427803486146" x2="76.15427803486145" y1="124.02325300000003" y2="124.02325300000003"/>
-  <line stroke="#888888" x1="76.15427803486145" x2="76.15427803486145" y1="124.02325300000003" y2="118.02325300000003"/>
-  <line stroke="#888888" x1="76.15427803486145" x2="94.15427803486146" y1="118.02325300000003" y2="118.02325300000003"/>
-  <line stroke="#888888" x1="80.40427803486146" x2="89.90427803486145" y1="173.77325300000004" y2="173.77325300000004"/>
-  <line stroke="#888888" x1="89.90427803486145" x2="89.90427803486145" y1="173.77325300000004" y2="174.27325300000004"/>
-  <line stroke="#888888" x1="89.90427803486145" x2="80.40427803486146" y1="174.27325300000004" y2="174.27325300000004"/>
-  <line stroke="#888888" x1="80.40427803486146" x2="80.40427803486146" y1="174.27325300000004" y2="173.77325300000004"/>
-  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="131.61416209090913" y2="131.61416209090913"/>
-  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="131.61416209090913" y2="142.7050711818182"/>
-  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="142.7050711818182" y2="142.7050711818182"/>
-  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="159.34143481818185" y2="159.34143481818185"/>
-  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="159.34143481818185" y2="170.43234390909095"/>
-  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="170.43234390909095" y2="170.43234390909095"/>
-  <line stroke="#888888" x1="89.65427803486146" x2="89.65427803486146" y1="18.023253000000015" y2="23.02325300000001"/>
-  <line stroke="#888888" x1="89.65427803486146" x2="80.65427803486146" y1="23.02325300000001" y2="23.02325300000001"/>
-  <line stroke="#888888" x1="80.65427803486146" x2="80.65427803486146" y1="23.02325300000001" y2="18.023253000000015"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.5858000680936" x2="436.5858000680936" y1="86.02325300000003" y2="216.023253"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680936" x2="346.5858000680936" y1="86.02325300000003" y2="216.023253"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680936" x2="346.5858000680936" y1="86.02325300000003" y2="86.02325300000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.5858000680936" x2="391.5858000680936" y1="86.02325300000003" y2="86.02325300000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680936" x2="346.5858000680936" y1="3.2957373719000316e-07" y2="86.02325300000003"/>
-  <line stroke="#000000" x1="377.4211156634208" x2="327.0034578657572" y1="4.127328470363296" y2="18.818105326100866"/>
-  <line stroke="#000000" x1="391.5858000680936" x2="377.4211156634208" y1="3.295737656117126e-07" y2="4.127328470363296"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680936" x2="327.0034578657572" y1="86.02325300000005" y2="18.818105326100866"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680936" x2="276.5858000680936" y1="86.02325300000003" y2="33.50888218183837"/>
-  <line stroke="#000000" x1="327.0034578657572" x2="276.5858000680936" y1="18.818105326100834" y2="33.50888218183837"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="276.58580006809353" x2="276.5858000680936" y1="86.02325299999998" y2="33.508882181838395"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680936" x2="276.58580006809353" y1="86.02325300000003" y2="86.02325299999998"/>
-  <line stroke="#000000" x1="259.08100979537306" x2="276.58580006809353" y1="86.02325299999997" y2="86.02325299999997"/>
-  <line stroke="#000000" x1="259.08100979537306" x2="259.08100979537306" y1="33.508882181838366" y2="86.02325299999997"/>
-  <line stroke="#000000" x1="276.5858000680936" x2="259.08100979537306" y1="33.50888218183837" y2="33.508882181838366"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="276.5858000680935" x2="346.58580006809353" y1="216.023253" y2="216.02325300000004"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="276.5858000680934" x2="346.58580006809353" y1="268.53762381816165" y2="216.02325300000004"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="276.5858000680934" x2="276.5858000680935" y1="268.53762381816165" y2="216.023253"/>
-  <line stroke="#000000" x1="276.58580006809336" x2="327.003457865757" y1="268.53762381816165" y2="283.2284006738992"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.003457865757" x2="346.58580006809353" y1="283.2284006738992" y2="216.02325300000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680934" x2="346.58580006809353" y1="302.04650567042637" y2="216.02325300000004"/>
-  <line stroke="#000000" x1="377.42111566342055" x2="391.5858000680934" y1="297.9191775296369" y2="302.04650567042637"/>
-  <line stroke="#000000" x1="327.003457865757" x2="377.42111566342055" y1="283.22840067389916" y2="297.9191775296369"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.58580006809353" x2="391.58580006809353" y1="216.023253" y2="216.02325300000007"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.58580006809353" x2="436.58580006809353" y1="216.02325300000012" y2="216.02325300000018"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680934" x2="436.58580006809353" y1="302.04650567042637" y2="216.02325300000018"/>
-  <line stroke="#000000" x1="405.7504844727662" x2="456.1681422704299" y1="297.9191775296369" y2="283.2284006738994"/>
-  <line stroke="#000000" x1="391.5858000680934" x2="405.7504844727662" y1="302.04650567042637" y2="297.9191775296369"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.58580006809353" x2="456.1681422704299" y1="216.02325300000018" y2="283.2284006738994"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.58580006809353" x2="506.5858000680934" y1="216.02325300000018" y2="268.5376238181619"/>
-  <line stroke="#000000" x1="456.1681422704298" x2="506.5858000680934" y1="283.2284006738994" y2="268.5376238181619"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.58580006809353" x2="506.5858000680934" y1="216.02325300000032" y2="268.5376238181619"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.58580006809353" x2="506.58580006809353" y1="216.02325300000018" y2="216.02325300000032"/>
-  <line stroke="#000000" x1="524.0905903408142" x2="506.58580006809353" y1="216.02325300000035" y2="216.02325300000032"/>
-  <line stroke="#000000" x1="524.090590340814" x2="524.0905903408142" y1="268.53762381816193" y2="216.02325300000035"/>
-  <line stroke="#000000" x1="506.5858000680934" x2="524.090590340814" y1="268.5376238181619" y2="268.53762381816193"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.58580006809376" x2="436.58580006809376" y1="86.02325300000027" y2="86.02325300000012"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.5858000680939" x2="436.58580006809376" y1="33.50888218183868" y2="86.02325300000012"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.5858000680939" x2="506.58580006809376" y1="33.50888218183868" y2="86.02325300000027"/>
-  <line stroke="#000000" x1="506.5858000680939" x2="456.16814227043034" y1="33.50888218183864" y2="18.818105326100948"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="456.16814227043034" x2="436.58580006809376" y1="18.818105326100948" y2="86.02325300000011"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.585800068094" x2="436.58580006809376" y1="3.295737087682938e-07" y2="86.02325300000012"/>
-  <line stroke="#000000" x1="405.7504844727668" x2="391.585800068094" y1="4.127328470363296" y2="3.295737087682938e-07"/>
-  <line stroke="#000000" x1="456.16814227043034" x2="405.7504844727668" y1="18.81810532610098" y2="4.127328470363296"/>
-  <line stroke="#000000" x1="524.0905903408144" x2="506.5858000680939" y1="33.50888218183872" y2="33.508882181838686"/>
-  <line stroke="#000000" x1="524.0905903408144" x2="524.0905903408144" y1="86.02325300000031" y2="33.50888218183872"/>
-  <line stroke="#000000" x1="506.58580006809376" x2="524.0905903408144" y1="86.02325300000028" y2="86.02325300000031"/>
-  <line stroke="#000000" x1="506.58580006809376" x2="506.58580006809376" y1="90.02325300000027" y2="86.02325300000028"/>
-  <line stroke="#000000" x1="506.58580006809353" x2="506.58580006809365" y1="212.02325300000032" y2="151.0232530000003"/>
-  <line stroke="#000000" x1="506.58580006809353" x2="506.58580006809353" y1="216.02325300000032" y2="212.02325300000032"/>
-  <line stroke="#000000" x1="506.58580006809353" x2="506.58580006809353" y1="216.02325300000032" y2="216.02325300000032"/>
-  <line stroke="#000000" x1="506.58580006809376" x2="506.58580006809376" y1="86.02325300000028" y2="86.02325300000028"/>
-  <line stroke="#000000" x1="516.5858000680937" x2="506.58580006809376" y1="90.02325300000031" y2="90.02325300000027"/>
-  <line stroke="#000000" x1="516.5858000680937" x2="516.5858000680937" y1="151.0232530000003" y2="90.02325300000031"/>
-  <line stroke="#000000" x1="506.58580006809365" x2="516.5858000680937" y1="151.0232530000003" y2="151.0232530000003"/>
-  <line stroke="#000000" x1="259.0810097953729" x2="276.5858000680934" y1="268.53762381816165" y2="268.53762381816165"/>
-  <line stroke="#000000" x1="259.0810097953729" x2="259.0810097953729" y1="216.02325299999998" y2="268.53762381816165"/>
-  <line stroke="#000000" x1="276.5858000680935" x2="259.0810097953729" y1="216.023253" y2="216.02325299999998"/>
-  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="212.023253" y2="216.023253"/>
-  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="151.02325299999998" y2="212.023253"/>
-  <line stroke="#000000" x1="276.58580006809353" x2="276.58580006809353" y1="86.02325299999997" y2="90.02325299999995"/>
-  <line stroke="#000000" x1="276.58580006809353" x2="276.58580006809353" y1="86.02325299999997" y2="86.02325299999997"/>
-  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="216.023253" y2="216.023253"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="240.44717806890822" x2="240.44717806890824" y1="151.02325299999998" y2="90.02325299999994"/>
-  <line stroke="#000000" x1="276.58580006809353" x2="240.44717806890824" y1="90.02325299999995" y2="90.02325299999994"/>
-  <line stroke="#000000" x1="240.44717806890822" x2="276.5858000680935" y1="151.02325299999998" y2="151.02325299999998"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="216.44717806890824" x2="216.44717806890822" y1="90.02325299999993" y2="151.02325299999995"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="216.44717806890824" x2="240.44717806890827" y1="90.02325299999993" y2="90.02325299999994"/>
-  <line stroke="#000000" x1="180.3085560697229" x2="216.44717806890822" y1="151.0232529999999" y2="151.02325299999995"/>
-  <line stroke="#000000" x1="180.30855606972295" x2="180.3085560697229" y1="90.02325299999991" y2="151.0232529999999"/>
-  <line stroke="#000000" x1="216.44717806890824" x2="180.30855606972295" y1="90.02325299999993" y2="90.02325299999991"/>
-  <line stroke="#000000" x1="216.44717806890824" x2="216.44717806890824" y1="80.02325299999991" y2="90.02325299999994"/>
-  <line stroke="#000000" x1="240.44717806890824" x2="216.44717806890824" y1="80.02325299999993" y2="80.02325299999991"/>
-  <line stroke="#000000" x1="240.44717806890824" x2="240.44717806890824" y1="90.02325299999994" y2="80.02325299999993"/>
-  <line stroke="#000000" x1="240.44717806890822" x2="240.44717806890822" y1="161.02325299999998" y2="151.02325299999998"/>
-  <line stroke="#000000" x1="216.44717806890822" x2="240.44717806890822" y1="161.02325299999995" y2="161.02325299999998"/>
-  <line stroke="#000000" x1="216.44717806890822" x2="216.44717806890822" y1="151.02325299999995" y2="161.02325299999995"/>
-  <line stroke="#888888" x1="364.5978792657871" x2="347.31195656413337" y1="21.798749986471112" y2="26.83554947792412"/>
-  <line stroke="#888888" x1="347.31195656413337" x2="347.17208269125956" y1="26.83554947792412" y2="26.355512708824836"/>
-  <line stroke="#888888" x1="347.17208269125956" x2="364.4580053929133" y1="26.355512708824836" y2="21.318713217371826"/>
-  <line stroke="#888888" x1="364.4580053929133" x2="364.5978792657871" y1="21.318713217371826" y2="21.798749986471112"/>
-  <line stroke="#888888" x1="263.45720736355315" x2="272.2096024999135" y1="51.01367245455889" y2="51.0136724545589"/>
-  <line stroke="#888888" x1="272.2096024999135" x2="272.20960249991344" y1="51.0136724545589" y2="68.51846272727943"/>
-  <line stroke="#888888" x1="272.20960249991344" x2="263.45720736355315" y1="68.51846272727943" y2="68.51846272727941"/>
-  <line stroke="#888888" x1="347.3119565641332" x2="364.597879265787" y1="275.210956522076" y2="280.247756013529"/>
-  <line stroke="#888888" x1="364.597879265787" x2="364.45800539291315" y1="280.247756013529" y2="280.7277927826283"/>
-  <line stroke="#888888" x1="364.45800539291315" x2="347.1720826912594" y1="280.7277927826283" y2="275.69099329117523"/>
-  <line stroke="#888888" x1="347.1720826912594" x2="347.3119565641332" y1="275.69099329117523" y2="275.210956522076"/>
-  <line stroke="#888888" x1="418.5737208703999" x2="435.8596435720537" y1="280.2477560135291" y2="275.2109565220761"/>
-  <line stroke="#888888" x1="435.8596435720537" x2="435.9995174449275" y1="275.2109565220761" y2="275.69099329117535"/>
-  <line stroke="#888888" x1="435.9995174449275" x2="418.7135947432737" y1="275.69099329117535" y2="280.72779278262834"/>
-  <line stroke="#888888" x1="418.7135947432737" x2="418.5737208703999" y1="280.72779278262834" y2="280.2477560135291"/>
-  <line stroke="#888888" x1="519.7143927726339" x2="510.9619976362736" y1="251.0328335454414" y2="251.03283354544138"/>
-  <line stroke="#888888" x1="510.9619976362736" x2="510.9619976362736" y1="251.03283354544138" y2="233.52804327272085"/>
-  <line stroke="#888888" x1="510.9619976362736" x2="519.7143927726339" y1="233.52804327272085" y2="233.52804327272088"/>
-  <line stroke="#888888" x1="435.85964357205415" x2="418.57372087040034" y1="26.835549477924193" y2="21.79874998647114"/>
-  <line stroke="#888888" x1="418.57372087040034" x2="418.7135947432742" y1="21.79874998647114" y2="21.318713217371855"/>
-  <line stroke="#888888" x1="418.7135947432742" x2="435.99951744492796" y1="21.318713217371855" y2="26.35551270882492"/>
-  <line stroke="#888888" x1="435.99951744492796" x2="435.85964357205415" y1="26.35551270882492" y2="26.835549477924193"/>
-  <line stroke="#888888" x1="519.7143927726343" x2="510.9619976362739" y1="68.51846272727978" y2="68.51846272727977"/>
-  <line stroke="#888888" x1="510.9619976362739" x2="510.96199763627396" y1="68.51846272727977" y2="51.013672454559234"/>
-  <line stroke="#888888" x1="510.96199763627396" x2="519.7143927726343" y1="51.013672454559234" y2="51.01367245455925"/>
-  <line stroke="#888888" x1="498.83580006809365" x2="498.83580006809365" y1="173.45507118181848" y2="161.8641620909094"/>
-  <line stroke="#888888" x1="498.83580006809365" x2="499.33580006809365" y1="161.8641620909094" y2="161.8641620909094"/>
-  <line stroke="#888888" x1="499.33580006809365" x2="499.33580006809365" y1="161.8641620909094" y2="173.45507118181848"/>
-  <line stroke="#888888" x1="499.33580006809365" x2="498.83580006809365" y1="173.45507118181848" y2="173.45507118181848"/>
-  <line stroke="#888888" x1="498.83580006809353" x2="498.83580006809365" y1="201.1823439090912" y2="189.59143481818214"/>
-  <line stroke="#888888" x1="498.83580006809365" x2="499.3358000680936" y1="189.59143481818214" y2="189.59143481818214"/>
-  <line stroke="#888888" x1="499.3358000680936" x2="499.33580006809353" y1="189.59143481818214" y2="201.1823439090912"/>
-  <line stroke="#888888" x1="499.33580006809353" x2="498.83580006809353" y1="201.1823439090912" y2="201.1823439090912"/>
-  <line stroke="#888888" x1="514.0858000680936" x2="509.08580006809365" y1="139.93234390909123" y2="139.93234390909123"/>
-  <line stroke="#888888" x1="509.08580006809365" x2="509.0858000680937" y1="139.93234390909123" y2="128.8414348181821"/>
-  <line stroke="#888888" x1="509.0858000680937" x2="514.0858000680936" y1="128.8414348181821" y2="128.8414348181821"/>
-  <line stroke="#888888" x1="514.0858000680938" x2="509.0858000680937" y1="112.20507118181847" y2="112.20507118181847"/>
-  <line stroke="#888888" x1="509.0858000680937" x2="509.08580006809376" y1="112.20507118181847" y2="101.11416209090936"/>
-  <line stroke="#888888" x1="509.08580006809376" x2="514.0858000680938" y1="101.11416209090936" y2="101.11416209090936"/>
-  <line stroke="#888888" x1="263.4572073635531" x2="272.2096024999134" y1="233.5280432727205" y2="233.52804327272054"/>
-  <line stroke="#888888" x1="272.2096024999134" x2="272.20960249991333" y1="233.52804327272054" y2="251.03283354544106"/>
-  <line stroke="#888888" x1="272.20960249991333" x2="263.4572073635531" y1="251.03283354544106" y2="251.03283354544104"/>
-  <line stroke="#888888" x1="284.33580006809353" x2="284.33580006809353" y1="189.59143481818182" y2="201.18234390909092"/>
-  <line stroke="#888888" x1="284.33580006809353" x2="283.83580006809353" y1="201.18234390909092" y2="201.18234390909092"/>
-  <line stroke="#888888" x1="283.83580006809353" x2="283.83580006809353" y1="201.18234390909092" y2="189.59143481818182"/>
-  <line stroke="#888888" x1="283.83580006809353" x2="284.33580006809353" y1="189.59143481818182" y2="189.59143481818182"/>
-  <line stroke="#888888" x1="284.33580006809353" x2="284.33580006809353" y1="161.86416209090908" y2="173.45507118181817"/>
-  <line stroke="#888888" x1="284.33580006809353" x2="283.83580006809353" y1="173.45507118181817" y2="173.45507118181817"/>
-  <line stroke="#888888" x1="283.83580006809353" x2="283.83580006809353" y1="173.45507118181817" y2="161.86416209090908"/>
-  <line stroke="#888888" x1="283.83580006809353" x2="284.33580006809353" y1="161.86416209090908" y2="161.86416209090908"/>
-  <line stroke="#888888" x1="221.94717806890824" x2="221.94717806890824" y1="133.02325299999995" y2="122.02325299999994"/>
-  <line stroke="#888888" x1="221.94717806890824" x2="234.94717806890824" y1="122.02325299999994" y2="122.02325299999994"/>
-  <line stroke="#888888" x1="234.94717806890824" x2="234.94717806890824" y1="122.02325299999994" y2="133.02325299999995"/>
-  <line stroke="#888888" x1="234.94717806890824" x2="221.94717806890824" y1="133.02325299999995" y2="133.02325299999995"/>
-  <line stroke="#888888" x1="223.44717806890822" x2="223.44717806890824" y1="101.52325299999994" y2="95.52325299999994"/>
-  <line stroke="#888888" x1="223.44717806890824" x2="233.44717806890827" y1="95.52325299999994" y2="95.52325299999994"/>
-  <line stroke="#888888" x1="233.44717806890827" x2="233.44717806890824" y1="95.52325299999994" y2="101.52325299999994"/>
-  <line stroke="#888888" x1="233.44717806890824" x2="223.44717806890822" y1="101.52325299999994" y2="101.52325299999994"/>
-  <line stroke="#888888" x1="188.05855606972293" x2="188.05855606972293" y1="128.5914348181817" y2="140.1823439090908"/>
-  <line stroke="#888888" x1="188.05855606972293" x2="187.55855606972293" y1="140.1823439090908" y2="140.1823439090908"/>
-  <line stroke="#888888" x1="187.55855606972293" x2="187.55855606972293" y1="140.1823439090908" y2="128.5914348181817"/>
-  <line stroke="#888888" x1="187.55855606972293" x2="188.05855606972293" y1="128.5914348181817" y2="128.5914348181817"/>
-  <line stroke="#888888" x1="188.05855606972293" x2="188.05855606972293" y1="100.864162090909" y2="112.45507118181808"/>
-  <line stroke="#888888" x1="188.05855606972293" x2="187.55855606972293" y1="112.45507118181808" y2="112.45507118181808"/>
-  <line stroke="#888888" x1="187.55855606972293" x2="187.55855606972293" y1="112.45507118181808" y2="100.864162090909"/>
-  <line stroke="#888888" x1="187.55855606972293" x2="188.05855606972293" y1="100.864162090909" y2="100.864162090909"/>
-  <line stroke="#888888" x1="232.44717806890824" x2="232.44717806890824" y1="82.52325299999994" y2="87.52325299999994"/>
-  <line stroke="#888888" x1="232.44717806890824" x2="224.44717806890824" y1="87.52325299999994" y2="87.52325299999994"/>
-  <line stroke="#888888" x1="224.44717806890824" x2="224.44717806890824" y1="87.52325299999994" y2="82.52325299999991"/>
-  <line stroke="#888888" x1="224.44717806890822" x2="224.44717806890822" y1="158.52325299999995" y2="153.52325299999995"/>
-  <line stroke="#888888" x1="224.44717806890822" x2="232.44717806890822" y1="153.52325299999995" y2="153.52325299999995"/>
-  <line stroke="#888888" x1="232.44717806890822" x2="232.44717806890822" y1="153.52325299999995" y2="158.52325299999998"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.0905903408144" x2="604.0905903408143" y1="139.023253" y2="139.023253"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.0905903408143" x2="604.0905903408143" y1="139.023253" y2="163.02325300000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.0905903408143" x2="543.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.0905903408144" x2="543.0905903408144" y1="163.02325300000004" y2="139.023253"/>
-  <line stroke="#000000" x1="543.0905903408144" x2="543.0905903408144" y1="132.023253" y2="139.023253"/>
-  <line stroke="#000000" x1="579.0905903408144" x2="543.0905903408144" y1="132.023253" y2="132.023253"/>
-  <line stroke="#000000" x1="579.0905903408144" x2="579.0905903408144" y1="139.023253" y2="132.023253"/>
-  <line stroke="#000000" x1="611.0905903408143" x2="604.0905903408143" y1="139.023253" y2="139.023253"/>
-  <line stroke="#000000" x1="611.0905903408143" x2="611.0905903408143" y1="163.02325300000004" y2="139.023253"/>
-  <line stroke="#000000" x1="604.0905903408143" x2="611.0905903408143" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.0905903408143" x2="604.0905903408143" y1="163.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="568.0905903408143" x2="604.0905903408143" y1="224.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="568.0905903408143" x2="568.0905903408143" y1="163.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="628.0905903408144" x2="604.0905903408143" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="628.0905903408144" x2="628.0905903408144" y1="163.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="604.0905903408143" x2="628.0905903408144" y1="224.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="664.0905903408144" x2="628.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="664.0905903408144" x2="664.0905903408144" y1="224.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="628.0905903408144" x2="664.0905903408144" y1="224.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="568.0905903408143" x2="544.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="544.0905903408144" x2="568.0905903408143" y1="224.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="544.0905903408144" x2="544.0905903408144" y1="224.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="534.0905903408144" x2="544.0905903408144" y1="224.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="534.0905903408144" x2="534.0905903408144" y1="163.02325300000004" y2="224.02325300000004"/>
-  <line stroke="#000000" x1="544.0905903408144" x2="534.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="536.0905903408143" x2="543.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="536.0905903408143" x2="536.0905903408143" y1="139.023253" y2="163.02325300000004"/>
-  <line stroke="#000000" x1="543.0905903408144" x2="536.0905903408143" y1="139.023253" y2="139.023253"/>
-  <line stroke="#888888" x1="567.0905903408143" x2="570.5905903408144" y1="133.77325300000004" y2="133.77325300000004"/>
-  <line stroke="#888888" x1="570.5905903408144" x2="567.0905903408143" y1="133.77325300000004" y2="137.27325300000004"/>
-  <line stroke="#888888" x1="567.0905903408143" x2="555.0905903408144" y1="137.27325300000004" y2="137.27325300000004"/>
-  <line stroke="#888888" x1="555.0905903408144" x2="551.5905903408144" y1="137.27325300000004" y2="133.77325300000004"/>
-  <line stroke="#888888" x1="551.5905903408144" x2="555.0905903408144" y1="133.77325300000004" y2="133.77325300000004"/>
-  <line stroke="#888888" x1="609.3405903408144" x2="605.8405903408143" y1="155.023253" y2="155.023253"/>
-  <line stroke="#888888" x1="605.8405903408143" x2="605.8405903408143" y1="155.023253" y2="147.02325300000004"/>
-  <line stroke="#888888" x1="605.8405903408143" x2="609.3405903408144" y1="147.02325300000004" y2="147.02325300000004"/>
-  <line stroke="#888888" x1="581.2048760551" x2="581.2048760551" y1="217.77325300000004" y2="199.77325300000004"/>
-  <line stroke="#888888" x1="581.2048760551" x2="601.7763046265287" y1="199.77325300000004" y2="199.77325300000004"/>
-  <line stroke="#888888" x1="601.7763046265287" x2="601.7763046265287" y1="199.77325300000004" y2="217.77325300000004"/>
-  <line stroke="#888888" x1="601.7763046265287" x2="581.2048760551" y1="217.77325300000004" y2="217.77325300000004"/>
-  <line stroke="#888888" x1="604.5905903408143" x2="604.5905903408143" y1="176.27325300000004" y2="173.27325300000004"/>
-  <line stroke="#888888" x1="604.5905903408143" x2="607.5905903408144" y1="173.27325300000004" y2="173.27325300000004"/>
-  <line stroke="#888888" x1="607.5905903408144" x2="607.5905903408144" y1="173.27325300000004" y2="176.27325300000004"/>
-  <line stroke="#888888" x1="607.5905903408144" x2="604.5905903408143" y1="176.27325300000004" y2="176.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="175.273253" y2="174.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="174.27325300000004" y2="174.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="174.27325300000004" y2="175.273253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="175.273253" y2="175.273253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="177.773253" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="176.77325300000004" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="176.77325300000004" y2="177.773253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="177.773253" y2="177.773253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="177.773253" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="176.77325300000004" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="176.77325300000004" y2="177.773253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="177.773253" y2="177.773253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="180.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="179.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="179.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="180.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="180.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="179.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="179.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="180.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="182.77325300000004" y2="181.773253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="181.773253" y2="181.773253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="181.773253" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="182.77325300000004" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="182.77325300000004" y2="181.773253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="181.773253" y2="181.773253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="181.773253" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="182.77325300000004" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="185.27325300000004" y2="184.273253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="184.273253" y2="184.273253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="184.273253" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="185.27325300000004" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="185.27325300000004" y2="184.273253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="184.273253" y2="184.273253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="184.273253" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="185.27325300000004" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="187.77325300000004" y2="186.773253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="186.773253" y2="186.773253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="186.773253" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="187.77325300000004" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="187.77325300000004" y2="186.773253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="186.773253" y2="186.773253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="186.773253" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="187.77325300000004" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="190.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="189.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="189.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="190.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="190.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="189.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="189.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="190.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="192.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="191.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="191.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="192.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="192.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="191.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="191.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="192.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="195.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="194.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="194.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="195.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="195.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="194.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="194.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="195.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="197.773253" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="196.77325300000004" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="196.77325300000004" y2="197.773253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="197.773253" y2="197.773253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="197.773253" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="196.77325300000004" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="196.77325300000004" y2="197.773253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="197.773253" y2="197.773253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="200.273253" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="199.27325300000004" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="199.27325300000004" y2="200.273253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="200.273253" y2="200.273253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="200.273253" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="199.27325300000004" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="199.27325300000004" y2="200.273253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="200.273253" y2="200.273253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="202.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="201.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="201.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="202.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="202.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="201.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="201.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="202.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="205.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="204.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="204.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="205.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="205.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="204.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="204.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="205.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="207.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="206.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="206.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="207.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="207.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="206.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="206.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="207.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="210.27325300000004" y2="209.273253"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="209.273253" y2="209.273253"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="209.273253" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="210.27325300000004" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="210.27325300000004" y2="209.273253"/>
-  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="209.273253" y2="209.273253"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="209.273253" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="210.27325300000004" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="212.77325300000004" y2="211.77325300000004"/>
-  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="211.77325300000004" y2="211.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="211.77325300000004" y2="212.77325300000004"/>
-  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="212.77325300000004" y2="212.77325300000004"/>
-  <line stroke="#888888" x1="624.5905903408144" x2="624.5905903408144" y1="213.773253" y2="210.77325300000004"/>
-  <line stroke="#888888" x1="624.5905903408144" x2="627.5905903408144" y1="210.77325300000004" y2="210.77325300000004"/>
-  <line stroke="#888888" x1="627.5905903408144" x2="627.5905903408144" y1="210.77325300000004" y2="213.773253"/>
-  <line stroke="#888888" x1="627.5905903408144" x2="624.5905903408144" y1="213.773253" y2="213.773253"/>
-  <line stroke="#888888" x1="620.3405903408144" x2="611.8405903408144" y1="170.773253" y2="170.773253"/>
-  <line stroke="#888888" x1="611.8405903408144" x2="611.8405903408144" y1="170.773253" y2="170.27325300000004"/>
-  <line stroke="#888888" x1="611.8405903408144" x2="620.3405903408144" y1="170.27325300000004" y2="170.27325300000004"/>
-  <line stroke="#888888" x1="620.3405903408144" x2="620.3405903408144" y1="170.27325300000004" y2="170.773253"/>
-  <line stroke="#888888" x1="611.8405903408144" x2="620.3405903408144" y1="218.523253" y2="218.523253"/>
-  <line stroke="#888888" x1="620.3405903408144" x2="620.3405903408144" y1="218.523253" y2="219.02325300000004"/>
-  <line stroke="#888888" x1="620.3405903408144" x2="611.8405903408144" y1="219.02325300000004" y2="219.02325300000004"/>
-  <line stroke="#888888" x1="611.8405903408144" x2="611.8405903408144" y1="219.02325300000004" y2="218.523253"/>
-  <line stroke="#888888" x1="633.6448760551" x2="633.6448760551" y1="219.54325300000002" y2="206.54325300000002"/>
-  <line stroke="#888888" x1="633.6448760551" x2="654.2163046265287" y1="206.54325300000002" y2="206.54325300000002"/>
-  <line stroke="#888888" x1="654.2163046265287" x2="654.2163046265287" y1="206.54325300000002" y2="219.54325300000002"/>
-  <line stroke="#888888" x1="654.2163046265287" x2="633.6448760551" y1="219.54325300000002" y2="219.54325300000002"/>
-  <line stroke="#888888" x1="652.3405903408143" x2="639.8405903408144" y1="168.523253" y2="168.523253"/>
-  <line stroke="#888888" x1="639.8405903408144" x2="639.8405903408144" y1="168.523253" y2="168.023253"/>
-  <line stroke="#888888" x1="639.8405903408144" x2="652.3405903408143" y1="168.023253" y2="168.023253"/>
-  <line stroke="#888888" x1="652.3405903408143" x2="652.3405903408143" y1="168.023253" y2="168.523253"/>
-  <line stroke="#888888" x1="656.3405903408144" x2="656.3405903408144" y1="185.45507118181823" y2="173.8641620909091"/>
-  <line stroke="#888888" x1="656.3405903408144" x2="656.8405903408144" y1="173.8641620909091" y2="173.8641620909091"/>
-  <line stroke="#888888" x1="656.8405903408144" x2="656.8405903408144" y1="173.8641620909091" y2="185.45507118181823"/>
-  <line stroke="#888888" x1="656.8405903408144" x2="656.3405903408144" y1="185.45507118181823" y2="185.45507118181823"/>
-  <line stroke="#888888" x1="656.3405903408144" x2="656.3405903408144" y1="213.18234390909095" y2="201.59143481818185"/>
-  <line stroke="#888888" x1="656.3405903408144" x2="656.8405903408144" y1="201.59143481818185" y2="201.59143481818185"/>
-  <line stroke="#888888" x1="656.8405903408144" x2="656.8405903408144" y1="201.59143481818185" y2="213.18234390909095"/>
-  <line stroke="#888888" x1="656.8405903408144" x2="656.3405903408144" y1="213.18234390909095" y2="213.18234390909095"/>
-  <line stroke="#888888" x1="544.5905903408144" x2="544.5905903408144" y1="176.27325300000004" y2="173.27325300000004"/>
-  <line stroke="#888888" x1="544.5905903408144" x2="547.5905903408143" y1="173.27325300000004" y2="173.27325300000004"/>
-  <line stroke="#888888" x1="547.5905903408143" x2="547.5905903408143" y1="173.27325300000004" y2="176.27325300000004"/>
-  <line stroke="#888888" x1="547.5905903408143" x2="544.5905903408144" y1="176.27325300000004" y2="176.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="175.273253" y2="174.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="174.27325300000004" y2="174.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="174.27325300000004" y2="175.273253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="175.273253" y2="175.273253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="177.773253" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="176.77325300000004" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="176.77325300000004" y2="177.773253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="177.773253" y2="177.773253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="177.773253" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="176.77325300000004" y2="176.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="176.77325300000004" y2="177.773253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="177.773253" y2="177.773253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="180.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="179.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="179.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="180.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="180.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="179.27325300000004" y2="179.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="179.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="180.27325300000004" y2="180.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="182.77325300000004" y2="181.773253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="181.773253" y2="181.773253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="181.773253" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="182.77325300000004" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="182.77325300000004" y2="181.773253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="181.773253" y2="181.773253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="181.773253" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="182.77325300000004" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="185.27325300000004" y2="184.273253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="184.273253" y2="184.273253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="184.273253" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="185.27325300000004" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="185.27325300000004" y2="184.273253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="184.273253" y2="184.273253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="184.273253" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="185.27325300000004" y2="185.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="187.77325300000004" y2="186.773253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="186.773253" y2="186.773253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="186.773253" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="187.77325300000004" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="187.77325300000004" y2="186.773253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="186.773253" y2="186.773253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="186.773253" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="187.77325300000004" y2="187.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="190.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="189.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="189.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="190.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="190.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="189.27325300000004" y2="189.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="189.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="190.27325300000004" y2="190.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="192.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="191.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="191.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="192.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="192.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="191.77325300000004" y2="191.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="191.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="192.77325300000004" y2="192.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="195.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="194.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="194.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="195.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="195.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="194.27325300000004" y2="194.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="194.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="195.27325300000004" y2="195.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="197.773253" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="196.77325300000004" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="196.77325300000004" y2="197.773253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="197.773253" y2="197.773253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="197.773253" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="196.77325300000004" y2="196.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="196.77325300000004" y2="197.773253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="197.773253" y2="197.773253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="200.273253" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="199.27325300000004" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="199.27325300000004" y2="200.273253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="200.273253" y2="200.273253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="200.273253" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="199.27325300000004" y2="199.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="199.27325300000004" y2="200.273253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="200.273253" y2="200.273253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="202.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="201.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="201.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="202.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="202.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="201.77325300000004" y2="201.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="201.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="202.77325300000004" y2="202.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="205.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="204.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="204.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="205.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="205.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="204.27325300000004" y2="204.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="204.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="205.27325300000004" y2="205.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="207.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="206.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="206.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="207.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="207.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="206.77325300000004" y2="206.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="206.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="207.77325300000004" y2="207.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="210.27325300000004" y2="209.273253"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="209.273253" y2="209.273253"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="209.273253" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="210.27325300000004" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="210.27325300000004" y2="209.273253"/>
-  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="209.273253" y2="209.273253"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="209.273253" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="210.27325300000004" y2="210.27325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="212.77325300000004" y2="211.77325300000004"/>
-  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="211.77325300000004" y2="211.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="211.77325300000004" y2="212.77325300000004"/>
-  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="212.77325300000004" y2="212.77325300000004"/>
-  <line stroke="#888888" x1="564.5905903408143" x2="564.5905903408143" y1="213.773253" y2="210.77325300000004"/>
-  <line stroke="#888888" x1="564.5905903408143" x2="567.5905903408143" y1="210.77325300000004" y2="210.77325300000004"/>
-  <line stroke="#888888" x1="567.5905903408143" x2="567.5905903408143" y1="210.77325300000004" y2="213.773253"/>
-  <line stroke="#888888" x1="567.5905903408143" x2="564.5905903408143" y1="213.773253" y2="213.773253"/>
-  <line stroke="#888888" x1="560.3405903408143" x2="551.8405903408143" y1="170.773253" y2="170.773253"/>
-  <line stroke="#888888" x1="551.8405903408143" x2="551.8405903408143" y1="170.773253" y2="170.27325300000004"/>
-  <line stroke="#888888" x1="551.8405903408143" x2="560.3405903408143" y1="170.27325300000004" y2="170.27325300000004"/>
-  <line stroke="#888888" x1="560.3405903408143" x2="560.3405903408143" y1="170.27325300000004" y2="170.773253"/>
-  <line stroke="#888888" x1="551.8405903408143" x2="560.3405903408143" y1="218.523253" y2="218.523253"/>
-  <line stroke="#888888" x1="560.3405903408143" x2="560.3405903408143" y1="218.523253" y2="219.02325300000004"/>
-  <line stroke="#888888" x1="560.3405903408143" x2="551.8405903408143" y1="219.02325300000004" y2="219.02325300000004"/>
-  <line stroke="#888888" x1="551.8405903408143" x2="551.8405903408143" y1="219.02325300000004" y2="218.523253"/>
-  <line stroke="#888888" x1="536.5905903408143" x2="541.5905903408144" y1="174.1141620909091" y2="174.1141620909091"/>
-  <line stroke="#888888" x1="541.5905903408144" x2="541.5905903408144" y1="174.1141620909091" y2="185.20507118181823"/>
-  <line stroke="#888888" x1="541.5905903408144" x2="536.5905903408143" y1="185.20507118181823" y2="185.20507118181823"/>
-  <line stroke="#888888" x1="536.5905903408143" x2="541.5905903408144" y1="201.84143481818185" y2="201.84143481818185"/>
-  <line stroke="#888888" x1="541.5905903408144" x2="541.5905903408144" y1="201.84143481818185" y2="212.93234390909092"/>
-  <line stroke="#888888" x1="541.5905903408144" x2="536.5905903408143" y1="212.93234390909092" y2="212.93234390909092"/>
-  <line stroke="#888888" x1="537.8405903408144" x2="541.3405903408144" y1="147.02325300000004" y2="147.02325300000004"/>
-  <line stroke="#888888" x1="541.3405903408144" x2="541.3405903408144" y1="147.02325300000004" y2="155.023253"/>
-  <line stroke="#888888" x1="541.3405903408144" x2="537.8405903408144" y1="155.023253" y2="155.023253"/>
+  <line stroke="#000000" x1="160.30855606972293" x2="98.65427803486146" y1="296.52325300000007" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="160.30855606972293" y1="357.523253" y2="357.523253"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="98.65427803486146" y1="357.523253" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="170.30855606972293" x2="160.30855606972293" y1="296.52325300000007" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="170.30855606972293" x2="170.30855606972293" y1="357.523253" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="160.30855606972293" x2="170.30855606972293" y1="357.523253" y2="357.523253"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="98.65427803486146" y1="357.523253" y2="357.523253"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="71.65427803486145" x2="71.65427803486145" y1="296.52325300000007" y2="357.523253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="296.52325300000007" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="71.65427803486145" y1="357.523253" y2="357.523253"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="10.000000000000002" y1="296.52325300000007" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="357.523253" y2="357.523253"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="296.52325300000007" y2="357.523253"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="296.52325300000007" y2="296.52325300000007"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="296.52325300000007" y2="279.523253"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="279.523253" y2="296.52325300000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="279.523253" y2="279.523253"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="279.523253" y2="218.523253"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="218.523253" y2="279.523253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="218.523253" y2="218.523253"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="218.523253" y2="201.52325300000004"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="201.52325300000004" y2="218.523253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="71.65427803486145" x2="98.65427803486146" y1="201.52325300000004" y2="201.52325300000004"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="191.52325300000004" y2="201.52325300000004"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="71.65427803486145" y1="191.52325300000004" y2="191.52325300000004"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="201.52325300000004" y2="191.52325300000004"/>
+  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="346.432343909091" y2="346.432343909091"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="346.432343909091" y2="335.3414348181819"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="335.3414348181819" y2="335.3414348181819"/>
+  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="318.7050711818182" y2="318.7050711818182"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="318.7050711818182" y2="307.61416209090913"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="307.61416209090913" y2="307.61416209090913"/>
+  <line stroke="#888888" x1="94.15427803486146" x2="94.15427803486146" y1="294.023253" y2="300.02325300000007"/>
+  <line stroke="#888888" x1="94.15427803486146" x2="76.15427803486145" y1="300.02325300000007" y2="300.02325300000007"/>
+  <line stroke="#888888" x1="76.15427803486145" x2="76.15427803486145" y1="300.02325300000007" y2="294.023253"/>
+  <line stroke="#888888" x1="76.15427803486145" x2="94.15427803486146" y1="294.023253" y2="294.023253"/>
+  <line stroke="#888888" x1="80.40427803486146" x2="89.90427803486145" y1="349.77325300000007" y2="349.77325300000007"/>
+  <line stroke="#888888" x1="89.90427803486145" x2="89.90427803486145" y1="349.77325300000007" y2="350.27325300000007"/>
+  <line stroke="#888888" x1="89.90427803486145" x2="80.40427803486146" y1="350.27325300000007" y2="350.27325300000007"/>
+  <line stroke="#888888" x1="80.40427803486146" x2="80.40427803486146" y1="350.27325300000007" y2="349.77325300000007"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="307.6141620909092" y2="307.6141620909092"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="307.6141620909092" y2="318.7050711818182"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="318.7050711818182" y2="318.7050711818182"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="335.3414348181819" y2="335.3414348181819"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="335.3414348181819" y2="346.432343909091"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="346.432343909091" y2="346.432343909091"/>
+  <line stroke="#888888" x1="89.65427803486146" x2="89.65427803486146" y1="194.02325300000004" y2="199.02325300000004"/>
+  <line stroke="#888888" x1="89.65427803486146" x2="80.65427803486146" y1="199.02325300000004" y2="199.02325300000004"/>
+  <line stroke="#888888" x1="80.65427803486146" x2="80.65427803486146" y1="199.02325300000004" y2="194.02325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.5858000680937" x2="436.5858000680937" y1="86.02325300000003" y2="568.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680937" x2="346.5858000680937" y1="86.02325300000003" y2="568.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680937" x2="346.5858000680937" y1="86.02325300000003" y2="86.02325300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.5858000680937" x2="391.5858000680937" y1="86.02325300000003" y2="86.02325300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680937" x2="346.5858000680937" y1="3.295737656117126e-07" y2="86.02325300000003"/>
+  <line stroke="#000000" x1="377.4211156634209" x2="327.0034578657573" y1="4.127328470363296" y2="18.818105326100866"/>
+  <line stroke="#000000" x1="391.5858000680937" x2="377.4211156634209" y1="3.295737656117126e-07" y2="4.127328470363296"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680937" x2="327.0034578657573" y1="86.02325300000005" y2="18.818105326100866"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680937" x2="276.58580006809376" y1="86.02325300000005" y2="33.50888218183843"/>
+  <line stroke="#000000" x1="327.0034578657573" x2="276.58580006809376" y1="18.818105326100866" y2="33.50888218183843"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="276.5858000680937" x2="276.58580006809376" y1="86.02325299999997" y2="33.50888218183837"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680937" x2="276.5858000680937" y1="86.023253" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="259.0810097953732" x2="276.5858000680937" y1="86.02325299999997" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="259.0810097953732" x2="259.0810097953732" y1="33.50888218183837" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="276.58580006809376" x2="259.0810097953732" y1="33.50888218183837" y2="33.50888218183837"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="276.58580006809336" x2="346.5858000680934" y1="568.0232530000001" y2="568.0232530000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="276.5858000680933" x2="346.5858000680934" y1="620.5376238181617" y2="568.0232530000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="276.5858000680933" x2="276.58580006809336" y1="620.5376238181617" y2="568.0232530000001"/>
+  <line stroke="#000000" x1="276.5858000680933" x2="327.00345786575684" y1="620.5376238181617" y2="635.2284006738995"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.00345786575684" x2="346.5858000680934" y1="635.2284006738995" y2="568.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680933" x2="346.5858000680934" y1="654.0465056704267" y2="568.0232530000003"/>
+  <line stroke="#000000" x1="377.42111566342044" x2="391.5858000680933" y1="649.919177529637" y2="654.0465056704267"/>
+  <line stroke="#000000" x1="327.00345786575684" x2="377.42111566342044" y1="635.2284006738994" y2="649.919177529637"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680934" x2="391.5858000680934" y1="568.0232530000001" y2="568.0232530000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680934" x2="436.5858000680934" y1="568.0232530000003" y2="568.0232530000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680933" x2="436.5858000680934" y1="654.0465056704267" y2="568.0232530000004"/>
+  <line stroke="#000000" x1="405.7504844727661" x2="456.16814227042977" y1="649.919177529637" y2="635.2284006738995"/>
+  <line stroke="#000000" x1="391.5858000680933" x2="405.7504844727661" y1="654.0465056704267" y2="649.919177529637"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.5858000680934" x2="456.16814227042977" y1="568.0232530000004" y2="635.2284006738995"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.5858000680934" x2="506.5858000680933" y1="568.0232530000004" y2="620.537623818162"/>
+  <line stroke="#000000" x1="456.1681422704297" x2="506.5858000680933" y1="635.2284006738995" y2="620.537623818162"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.5858000680934" x2="506.58580006809336" y1="568.0232530000005" y2="620.5376238181622"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.5858000680934" x2="506.5858000680934" y1="568.0232530000004" y2="568.0232530000005"/>
+  <line stroke="#000000" x1="524.090590340814" x2="506.5858000680934" y1="568.0232530000005" y2="568.0232530000004"/>
+  <line stroke="#000000" x1="524.0905903408138" x2="524.090590340814" y1="620.5376238181622" y2="568.0232530000005"/>
+  <line stroke="#000000" x1="506.5858000680933" x2="524.0905903408138" y1="620.537623818162" y2="620.5376238181622"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.58580006809433" x2="436.5858000680943" y1="86.02325300000028" y2="86.02325300000012"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.58580006809444" x2="436.5858000680943" y1="33.508882181838665" y2="86.0232530000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.58580006809444" x2="506.58580006809433" y1="33.508882181838665" y2="86.02325300000025"/>
+  <line stroke="#000000" x1="506.58580006809444" x2="456.1681422704309" y1="33.508882181838665" y2="18.81810532610098"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="456.1681422704309" x2="436.5858000680943" y1="18.81810532610098" y2="86.02325300000012"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680945" x2="436.5858000680943" y1="3.295737087682938e-07" y2="86.02325300000012"/>
+  <line stroke="#000000" x1="405.75048447276737" x2="391.5858000680945" y1="4.127328470363296" y2="3.295737087682938e-07"/>
+  <line stroke="#000000" x1="456.1681422704309" x2="405.75048447276737" y1="18.81810532610098" y2="4.127328470363296"/>
+  <line stroke="#000000" x1="524.0905903408149" x2="506.58580006809444" y1="33.50888218183872" y2="33.508882181838665"/>
+  <line stroke="#000000" x1="524.0905903408147" x2="524.0905903408149" y1="86.02325300000028" y2="33.50888218183872"/>
+  <line stroke="#000000" x1="506.58580006809433" x2="524.0905903408147" y1="86.02325300000025" y2="86.02325300000028"/>
+  <line stroke="#000000" x1="506.585800068094" x2="506.58580006809433" y1="266.02325300000035" y2="86.02325300000025"/>
+  <line stroke="#000000" x1="506.58580006809376" x2="506.5858000680939" y1="388.0232530000003" y2="327.02325300000035"/>
+  <line stroke="#000000" x1="506.5858000680934" x2="506.58580006809376" y1="568.0232530000004" y2="388.0232530000003"/>
+  <line stroke="#000000" x1="506.5858000680934" x2="506.5858000680934" y1="568.0232530000004" y2="568.0232530000004"/>
+  <line stroke="#000000" x1="506.58580006809433" x2="506.58580006809433" y1="86.02325300000025" y2="86.02325300000025"/>
+  <line stroke="#000000" x1="516.5858000680939" x2="506.585800068094" y1="266.02325300000035" y2="266.02325300000035"/>
+  <line stroke="#000000" x1="516.5858000680938" x2="516.5858000680939" y1="327.02325300000035" y2="266.02325300000035"/>
+  <line stroke="#000000" x1="506.5858000680939" x2="516.5858000680938" y1="327.02325300000035" y2="327.02325300000035"/>
+  <line stroke="#000000" x1="259.0810097953728" x2="276.5858000680933" y1="620.5376238181617" y2="620.5376238181617"/>
+  <line stroke="#000000" x1="259.08100979537284" x2="259.0810097953728" y1="568.0232530000001" y2="620.5376238181617"/>
+  <line stroke="#000000" x1="276.58580006809336" x2="259.08100979537284" y1="568.0232530000001" y2="568.0232530000001"/>
+  <line stroke="#000000" x1="276.5858000680935" x2="276.58580006809336" y1="388.0232530000001" y2="568.0232530000001"/>
+  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="327.02325300000007" y2="388.0232530000001"/>
+  <line stroke="#000000" x1="276.5858000680937" x2="276.58580006809353" y1="86.02325299999997" y2="266.02325300000007"/>
+  <line stroke="#000000" x1="276.5858000680937" x2="276.5858000680937" y1="86.02325299999997" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="276.58580006809336" x2="276.58580006809336" y1="568.0232530000001" y2="568.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="240.44717806890822" x2="240.44717806890824" y1="327.02325300000007" y2="266.023253"/>
+  <line stroke="#000000" x1="276.58580006809353" x2="240.44717806890824" y1="266.02325300000007" y2="266.023253"/>
+  <line stroke="#000000" x1="240.44717806890822" x2="276.5858000680935" y1="327.02325300000007" y2="327.02325300000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="216.44717806890824" x2="216.44717806890822" y1="266.023253" y2="327.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="216.44717806890824" x2="240.44717806890827" y1="266.023253" y2="266.023253"/>
+  <line stroke="#000000" x1="180.3085560697229" x2="216.44717806890822" y1="327.023253" y2="327.023253"/>
+  <line stroke="#000000" x1="180.30855606972295" x2="180.3085560697229" y1="266.023253" y2="327.023253"/>
+  <line stroke="#000000" x1="216.44717806890824" x2="180.30855606972295" y1="266.023253" y2="266.023253"/>
+  <line stroke="#000000" x1="216.44717806890824" x2="216.44717806890824" y1="256.02325299999995" y2="266.023253"/>
+  <line stroke="#000000" x1="240.44717806890824" x2="216.44717806890824" y1="256.02325299999995" y2="256.02325299999995"/>
+  <line stroke="#000000" x1="240.44717806890824" x2="240.44717806890824" y1="266.023253" y2="256.02325299999995"/>
+  <line stroke="#000000" x1="240.44717806890822" x2="240.44717806890822" y1="337.02325300000007" y2="327.02325300000007"/>
+  <line stroke="#000000" x1="216.44717806890822" x2="240.44717806890822" y1="337.023253" y2="337.02325300000007"/>
+  <line stroke="#000000" x1="216.44717806890822" x2="216.44717806890822" y1="327.023253" y2="337.023253"/>
+  <line stroke="#888888" x1="364.59787926578724" x2="347.3119565641334" y1="21.79874998647114" y2="26.835549477924136"/>
+  <line stroke="#888888" x1="347.3119565641334" x2="347.1720826912596" y1="26.835549477924136" y2="26.35551270882485"/>
+  <line stroke="#888888" x1="347.1720826912596" x2="364.4580053929134" y1="26.35551270882485" y2="21.318713217371794"/>
+  <line stroke="#888888" x1="364.4580053929134" x2="364.59787926578724" y1="21.318713217371794" y2="21.79874998647114"/>
+  <line stroke="#888888" x1="263.45720736355327" x2="272.2096024999136" y1="51.0136724545589" y2="51.0136724545589"/>
+  <line stroke="#888888" x1="272.2096024999136" x2="272.20960249991356" y1="51.0136724545589" y2="68.51846272727943"/>
+  <line stroke="#888888" x1="272.20960249991356" x2="263.45720736355327" y1="68.51846272727943" y2="68.51846272727943"/>
+  <line stroke="#888888" x1="347.31195656413314" x2="364.5978792657869" y1="627.2109565220761" y2="632.2477560135293"/>
+  <line stroke="#888888" x1="364.5978792657869" x2="364.4580053929131" y1="632.2477560135293" y2="632.7277927826285"/>
+  <line stroke="#888888" x1="364.4580053929131" x2="347.1720826912593" y1="632.7277927826285" y2="627.6909932911755"/>
+  <line stroke="#888888" x1="347.1720826912593" x2="347.31195656413314" y1="627.6909932911755" y2="627.2109565220761"/>
+  <line stroke="#888888" x1="418.57372087039977" x2="435.8596435720536" y1="632.2477560135293" y2="627.2109565220762"/>
+  <line stroke="#888888" x1="435.8596435720536" x2="435.9995174449274" y1="627.2109565220762" y2="627.6909932911755"/>
+  <line stroke="#888888" x1="435.9995174449274" x2="418.7135947432736" y1="627.6909932911755" y2="632.7277927826285"/>
+  <line stroke="#888888" x1="418.7135947432736" x2="418.57372087039977" y1="632.7277927826285" y2="632.2477560135293"/>
+  <line stroke="#888888" x1="519.7143927726338" x2="510.9619976362735" y1="603.0328335454415" y2="603.0328335454415"/>
+  <line stroke="#888888" x1="510.9619976362735" x2="510.96199763627357" y1="603.0328335454415" y2="585.528043272721"/>
+  <line stroke="#888888" x1="510.96199763627357" x2="519.7143927726339" y1="585.528043272721" y2="585.528043272721"/>
+  <line stroke="#888888" x1="435.85964357205467" x2="418.5737208704009" y1="26.835549477924193" y2="21.79874998647114"/>
+  <line stroke="#888888" x1="418.5737208704009" x2="418.7135947432747" y1="21.79874998647114" y2="21.318713217371855"/>
+  <line stroke="#888888" x1="418.7135947432747" x2="435.99951744492853" y1="21.318713217371855" y2="26.355512708824907"/>
+  <line stroke="#888888" x1="435.99951744492853" x2="435.85964357205467" y1="26.355512708824907" y2="26.835549477924193"/>
+  <line stroke="#888888" x1="519.7143927726348" x2="510.9619976362745" y1="68.51846272727973" y2="68.51846272727973"/>
+  <line stroke="#888888" x1="510.9619976362745" x2="510.96199763627453" y1="68.51846272727973" y2="51.01367245455919"/>
+  <line stroke="#888888" x1="510.96199763627453" x2="519.7143927726348" y1="51.01367245455919" y2="51.01367245455919"/>
+  <line stroke="#888888" x1="498.8358000680938" x2="498.8358000680938" y1="349.4550711818184" y2="337.8641620909094"/>
+  <line stroke="#888888" x1="498.8358000680938" x2="499.3358000680938" y1="337.8641620909094" y2="337.8641620909095"/>
+  <line stroke="#888888" x1="499.3358000680938" x2="499.3358000680938" y1="337.8641620909095" y2="349.4550711818185"/>
+  <line stroke="#888888" x1="499.3358000680938" x2="498.8358000680938" y1="349.4550711818185" y2="349.4550711818184"/>
+  <line stroke="#888888" x1="498.83580006809376" x2="498.83580006809376" y1="377.18234390909123" y2="365.5914348181821"/>
+  <line stroke="#888888" x1="498.83580006809376" x2="499.33580006809376" y1="365.5914348181821" y2="365.59143481818217"/>
+  <line stroke="#888888" x1="499.33580006809376" x2="499.33580006809376" y1="365.59143481818217" y2="377.1823439090913"/>
+  <line stroke="#888888" x1="499.33580006809376" x2="498.83580006809376" y1="377.1823439090913" y2="377.18234390909123"/>
+  <line stroke="#888888" x1="514.0858000680939" x2="509.0858000680939" y1="315.9323439090912" y2="315.9323439090912"/>
+  <line stroke="#888888" x1="509.0858000680939" x2="509.0858000680939" y1="315.9323439090912" y2="304.84143481818217"/>
+  <line stroke="#888888" x1="509.0858000680939" x2="514.0858000680939" y1="304.84143481818217" y2="304.84143481818217"/>
+  <line stroke="#888888" x1="514.085800068094" x2="509.08580006809393" y1="288.20507118181854" y2="288.2050711818185"/>
+  <line stroke="#888888" x1="509.08580006809393" x2="509.08580006809393" y1="288.2050711818185" y2="277.11416209090936"/>
+  <line stroke="#888888" x1="509.08580006809393" x2="514.085800068094" y1="277.11416209090936" y2="277.11416209090936"/>
+  <line stroke="#888888" x1="263.457207363553" x2="272.2096024999133" y1="585.5280432727208" y2="585.5280432727208"/>
+  <line stroke="#888888" x1="272.2096024999133" x2="272.2096024999133" y1="585.5280432727208" y2="603.0328335454411"/>
+  <line stroke="#888888" x1="272.2096024999133" x2="263.457207363553" y1="603.0328335454411" y2="603.0328335454411"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="284.33580006809353" y1="365.5914348181819" y2="377.182343909091"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="283.83580006809353" y1="377.182343909091" y2="377.182343909091"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="283.83580006809353" y1="377.182343909091" y2="365.5914348181819"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="284.33580006809353" y1="365.5914348181819" y2="365.5914348181819"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="284.33580006809353" y1="337.8641620909091" y2="349.45507118181825"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="283.83580006809353" y1="349.45507118181825" y2="349.45507118181825"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="283.83580006809353" y1="349.45507118181825" y2="337.8641620909091"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="284.33580006809353" y1="337.8641620909091" y2="337.8641620909091"/>
+  <line stroke="#888888" x1="221.94717806890824" x2="221.94717806890824" y1="309.023253" y2="298.02325299999995"/>
+  <line stroke="#888888" x1="221.94717806890824" x2="234.94717806890824" y1="298.02325299999995" y2="298.02325299999995"/>
+  <line stroke="#888888" x1="234.94717806890824" x2="234.94717806890824" y1="298.02325299999995" y2="309.023253"/>
+  <line stroke="#888888" x1="234.94717806890824" x2="221.94717806890824" y1="309.023253" y2="309.023253"/>
+  <line stroke="#888888" x1="223.44717806890822" x2="223.44717806890824" y1="277.523253" y2="271.52325299999995"/>
+  <line stroke="#888888" x1="223.44717806890824" x2="233.44717806890827" y1="271.52325299999995" y2="271.52325299999995"/>
+  <line stroke="#888888" x1="233.44717806890827" x2="233.44717806890824" y1="271.52325299999995" y2="277.523253"/>
+  <line stroke="#888888" x1="233.44717806890824" x2="223.44717806890822" y1="277.523253" y2="277.523253"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="188.05855606972293" y1="304.59143481818177" y2="316.1823439090909"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="187.55855606972293" y1="316.1823439090909" y2="316.1823439090909"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="187.55855606972293" y1="316.1823439090909" y2="304.59143481818177"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="188.05855606972293" y1="304.59143481818177" y2="304.59143481818177"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="188.05855606972293" y1="276.8641620909091" y2="288.45507118181814"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="187.55855606972293" y1="288.45507118181814" y2="288.45507118181814"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="187.55855606972293" y1="288.45507118181814" y2="276.8641620909091"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="188.05855606972293" y1="276.8641620909091" y2="276.8641620909091"/>
+  <line stroke="#888888" x1="232.44717806890824" x2="232.44717806890824" y1="258.523253" y2="263.523253"/>
+  <line stroke="#888888" x1="232.44717806890824" x2="224.44717806890824" y1="263.523253" y2="263.523253"/>
+  <line stroke="#888888" x1="224.44717806890824" x2="224.44717806890824" y1="263.523253" y2="258.523253"/>
+  <line stroke="#888888" x1="224.44717806890822" x2="224.44717806890822" y1="334.52325299999995" y2="329.52325299999995"/>
+  <line stroke="#888888" x1="224.44717806890822" x2="232.44717806890822" y1="329.52325299999995" y2="329.52325299999995"/>
+  <line stroke="#888888" x1="232.44717806890822" x2="232.44717806890822" y1="329.52325299999995" y2="334.52325299999995"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.090590340815" x2="604.090590340815" y1="315.02325300000007" y2="315.02325300000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.090590340815" x2="604.090590340815" y1="315.02325300000007" y2="339.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.090590340815" x2="543.090590340815" y1="339.023253" y2="339.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.090590340815" x2="543.090590340815" y1="339.023253" y2="315.02325300000007"/>
+  <line stroke="#000000" x1="543.090590340815" x2="543.090590340815" y1="308.02325300000007" y2="315.02325300000007"/>
+  <line stroke="#000000" x1="579.090590340815" x2="543.090590340815" y1="308.02325300000007" y2="308.02325300000007"/>
+  <line stroke="#000000" x1="579.090590340815" x2="579.090590340815" y1="315.02325300000007" y2="308.02325300000007"/>
+  <line stroke="#000000" x1="611.0905903408149" x2="604.090590340815" y1="315.02325300000007" y2="315.02325300000007"/>
+  <line stroke="#000000" x1="611.0905903408149" x2="611.0905903408149" y1="339.023253" y2="315.02325300000007"/>
+  <line stroke="#000000" x1="604.090590340815" x2="611.0905903408149" y1="339.023253" y2="339.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.090590340815" x2="604.090590340815" y1="339.023253" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="568.090590340815" x2="604.090590340815" y1="400.02325300000007" y2="400.02325300000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="568.090590340815" x2="568.090590340815" y1="339.023253" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="628.0905903408149" x2="604.090590340815" y1="339.023253" y2="339.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="628.0905903408149" x2="628.0905903408149" y1="339.023253" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="604.090590340815" x2="628.0905903408149" y1="400.02325300000007" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="664.0905903408149" x2="628.0905903408149" y1="339.023253" y2="339.023253"/>
+  <line stroke="#000000" x1="664.0905903408149" x2="664.0905903408149" y1="400.02325300000007" y2="339.023253"/>
+  <line stroke="#000000" x1="628.0905903408149" x2="664.0905903408149" y1="400.02325300000007" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="568.090590340815" x2="544.0905903408149" y1="339.023253" y2="339.023253"/>
+  <line stroke="#000000" x1="544.0905903408149" x2="568.090590340815" y1="400.02325300000007" y2="400.02325300000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="544.0905903408149" x2="544.0905903408149" y1="400.02325300000007" y2="339.023253"/>
+  <line stroke="#000000" x1="534.0905903408149" x2="544.0905903408149" y1="400.02325300000007" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="534.0905903408149" x2="534.0905903408149" y1="339.023253" y2="400.02325300000007"/>
+  <line stroke="#000000" x1="544.0905903408149" x2="534.0905903408149" y1="339.023253" y2="339.023253"/>
+  <line stroke="#000000" x1="536.090590340815" x2="543.090590340815" y1="339.023253" y2="339.023253"/>
+  <line stroke="#000000" x1="536.090590340815" x2="536.090590340815" y1="315.02325300000007" y2="339.023253"/>
+  <line stroke="#000000" x1="543.090590340815" x2="536.090590340815" y1="315.02325300000007" y2="315.02325300000007"/>
+  <line stroke="#888888" x1="567.090590340815" x2="570.590590340815" y1="309.77325300000007" y2="309.77325300000007"/>
+  <line stroke="#888888" x1="570.590590340815" x2="567.090590340815" y1="309.77325300000007" y2="313.27325300000007"/>
+  <line stroke="#888888" x1="567.090590340815" x2="555.0905903408149" y1="313.27325300000007" y2="313.27325300000007"/>
+  <line stroke="#888888" x1="555.0905903408149" x2="551.590590340815" y1="313.27325300000007" y2="309.77325300000007"/>
+  <line stroke="#888888" x1="551.590590340815" x2="555.0905903408149" y1="309.77325300000007" y2="309.77325300000007"/>
+  <line stroke="#888888" x1="609.340590340815" x2="605.8405903408149" y1="331.02325300000007" y2="331.02325300000007"/>
+  <line stroke="#888888" x1="605.8405903408149" x2="605.8405903408149" y1="331.02325300000007" y2="323.02325300000007"/>
+  <line stroke="#888888" x1="605.8405903408149" x2="609.340590340815" y1="323.02325300000007" y2="323.02325300000007"/>
+  <line stroke="#888888" x1="581.2048760551007" x2="581.2048760551007" y1="393.773253" y2="375.773253"/>
+  <line stroke="#888888" x1="581.2048760551007" x2="601.7763046265293" y1="375.773253" y2="375.773253"/>
+  <line stroke="#888888" x1="601.7763046265293" x2="601.7763046265293" y1="375.773253" y2="393.773253"/>
+  <line stroke="#888888" x1="601.7763046265293" x2="581.2048760551007" y1="393.773253" y2="393.773253"/>
+  <line stroke="#888888" x1="604.590590340815" x2="604.590590340815" y1="352.273253" y2="349.27325300000007"/>
+  <line stroke="#888888" x1="604.590590340815" x2="607.590590340815" y1="349.27325300000007" y2="349.27325300000007"/>
+  <line stroke="#888888" x1="607.590590340815" x2="607.590590340815" y1="349.27325300000007" y2="352.273253"/>
+  <line stroke="#888888" x1="607.590590340815" x2="604.590590340815" y1="352.273253" y2="352.273253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="351.27325300000007" y2="350.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="350.27325300000007" y2="350.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="350.27325300000007" y2="351.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="351.27325300000007" y2="351.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="353.77325300000007" y2="352.773253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="352.773253" y2="352.773253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="352.773253" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="353.77325300000007" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="353.77325300000007" y2="352.773253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="352.773253" y2="352.773253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="352.773253" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="353.77325300000007" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="356.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="355.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="355.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="356.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="356.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="355.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="355.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="356.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="358.77325300000007" y2="357.773253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="357.773253" y2="357.773253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="357.773253" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="358.77325300000007" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="358.77325300000007" y2="357.773253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="357.773253" y2="357.773253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="357.773253" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="358.77325300000007" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="361.273253" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="360.27325300000007" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="360.27325300000007" y2="361.273253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="361.273253" y2="361.273253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="361.273253" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="360.27325300000007" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="360.27325300000007" y2="361.273253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="361.273253" y2="361.273253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="363.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="362.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="362.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="363.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="363.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="362.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="362.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="363.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="366.273253" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="365.27325300000007" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="365.27325300000007" y2="366.273253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="366.273253" y2="366.273253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="366.273253" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="365.27325300000007" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="365.27325300000007" y2="366.273253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="366.273253" y2="366.273253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="368.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="367.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="367.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="368.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="368.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="367.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="367.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="368.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="371.273253" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="370.27325300000007" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="370.27325300000007" y2="371.273253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="371.273253" y2="371.273253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="371.273253" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="370.27325300000007" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="370.27325300000007" y2="371.273253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="371.273253" y2="371.273253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="373.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="372.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="372.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="373.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="373.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="372.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="372.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="373.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="376.27325300000007" y2="375.273253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="375.273253" y2="375.273253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="375.273253" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="376.27325300000007" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="376.27325300000007" y2="375.273253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="375.273253" y2="375.273253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="375.273253" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="376.27325300000007" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="378.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="377.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="377.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="378.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="378.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="377.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="377.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="378.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="381.27325300000007" y2="380.273253"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="380.273253" y2="380.273253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="380.273253" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="381.27325300000007" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="381.27325300000007" y2="380.273253"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="380.273253" y2="380.273253"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="380.273253" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="381.27325300000007" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="383.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="382.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="382.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="383.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="383.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="382.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="382.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="383.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="386.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="385.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="385.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="386.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="625.590590340815" y1="386.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="625.590590340815" x2="626.5905903408149" y1="385.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="626.5905903408149" y1="385.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="626.5905903408149" x2="625.590590340815" y1="386.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="605.590590340815" y1="388.773253" y2="387.77325300000007"/>
+  <line stroke="#888888" x1="605.590590340815" x2="606.590590340815" y1="387.77325300000007" y2="387.77325300000007"/>
+  <line stroke="#888888" x1="606.590590340815" x2="606.590590340815" y1="387.77325300000007" y2="388.773253"/>
+  <line stroke="#888888" x1="606.590590340815" x2="605.590590340815" y1="388.773253" y2="388.773253"/>
+  <line stroke="#888888" x1="624.590590340815" x2="624.590590340815" y1="389.77325300000007" y2="386.77325300000007"/>
+  <line stroke="#888888" x1="624.590590340815" x2="627.5905903408149" y1="386.77325300000007" y2="386.77325300000007"/>
+  <line stroke="#888888" x1="627.5905903408149" x2="627.5905903408149" y1="386.77325300000007" y2="389.77325300000007"/>
+  <line stroke="#888888" x1="627.5905903408149" x2="624.590590340815" y1="389.77325300000007" y2="389.77325300000007"/>
+  <line stroke="#888888" x1="620.340590340815" x2="611.840590340815" y1="346.77325300000007" y2="346.77325300000007"/>
+  <line stroke="#888888" x1="611.840590340815" x2="611.840590340815" y1="346.77325300000007" y2="346.27325300000007"/>
+  <line stroke="#888888" x1="611.840590340815" x2="620.340590340815" y1="346.27325300000007" y2="346.27325300000007"/>
+  <line stroke="#888888" x1="620.340590340815" x2="620.340590340815" y1="346.27325300000007" y2="346.77325300000007"/>
+  <line stroke="#888888" x1="611.840590340815" x2="620.340590340815" y1="394.52325300000007" y2="394.52325300000007"/>
+  <line stroke="#888888" x1="620.340590340815" x2="620.340590340815" y1="394.52325300000007" y2="395.02325300000007"/>
+  <line stroke="#888888" x1="620.340590340815" x2="611.840590340815" y1="395.02325300000007" y2="395.02325300000007"/>
+  <line stroke="#888888" x1="611.840590340815" x2="611.840590340815" y1="395.02325300000007" y2="394.52325300000007"/>
+  <line stroke="#888888" x1="633.6448760551007" x2="633.6448760551007" y1="395.54325300000005" y2="382.54325300000005"/>
+  <line stroke="#888888" x1="633.6448760551007" x2="654.2163046265292" y1="382.54325300000005" y2="382.54325300000005"/>
+  <line stroke="#888888" x1="654.2163046265292" x2="654.2163046265292" y1="382.54325300000005" y2="395.54325300000005"/>
+  <line stroke="#888888" x1="654.2163046265292" x2="633.6448760551007" y1="395.54325300000005" y2="395.54325300000005"/>
+  <line stroke="#888888" x1="652.340590340815" x2="639.8405903408149" y1="344.52325300000007" y2="344.52325300000007"/>
+  <line stroke="#888888" x1="639.8405903408149" x2="639.8405903408149" y1="344.52325300000007" y2="344.023253"/>
+  <line stroke="#888888" x1="639.8405903408149" x2="652.340590340815" y1="344.023253" y2="344.023253"/>
+  <line stroke="#888888" x1="652.340590340815" x2="652.340590340815" y1="344.023253" y2="344.52325300000007"/>
+  <line stroke="#888888" x1="656.340590340815" x2="656.340590340815" y1="361.45507118181825" y2="349.86416209090913"/>
+  <line stroke="#888888" x1="656.340590340815" x2="656.840590340815" y1="349.86416209090913" y2="349.86416209090913"/>
+  <line stroke="#888888" x1="656.840590340815" x2="656.840590340815" y1="349.86416209090913" y2="361.45507118181825"/>
+  <line stroke="#888888" x1="656.840590340815" x2="656.340590340815" y1="361.45507118181825" y2="361.45507118181825"/>
+  <line stroke="#888888" x1="656.340590340815" x2="656.340590340815" y1="389.182343909091" y2="377.5914348181818"/>
+  <line stroke="#888888" x1="656.340590340815" x2="656.840590340815" y1="377.5914348181818" y2="377.5914348181818"/>
+  <line stroke="#888888" x1="656.840590340815" x2="656.840590340815" y1="377.5914348181818" y2="389.182343909091"/>
+  <line stroke="#888888" x1="656.840590340815" x2="656.340590340815" y1="389.182343909091" y2="389.182343909091"/>
+  <line stroke="#888888" x1="544.5905903408149" x2="544.5905903408149" y1="352.273253" y2="349.27325300000007"/>
+  <line stroke="#888888" x1="544.5905903408149" x2="547.5905903408149" y1="349.27325300000007" y2="349.27325300000007"/>
+  <line stroke="#888888" x1="547.5905903408149" x2="547.5905903408149" y1="349.27325300000007" y2="352.273253"/>
+  <line stroke="#888888" x1="547.5905903408149" x2="544.5905903408149" y1="352.273253" y2="352.273253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="351.27325300000007" y2="350.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="350.27325300000007" y2="350.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="350.27325300000007" y2="351.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="351.27325300000007" y2="351.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="353.77325300000007" y2="352.773253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="352.773253" y2="352.773253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="352.773253" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="353.77325300000007" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="353.77325300000007" y2="352.773253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="352.773253" y2="352.773253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="352.773253" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="353.77325300000007" y2="353.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="356.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="355.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="355.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="356.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="356.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="355.27325300000007" y2="355.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="355.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="356.27325300000007" y2="356.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="358.77325300000007" y2="357.773253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="357.773253" y2="357.773253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="357.773253" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="358.77325300000007" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="358.77325300000007" y2="357.773253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="357.773253" y2="357.773253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="357.773253" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="358.77325300000007" y2="358.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="361.273253" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="360.27325300000007" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="360.27325300000007" y2="361.273253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="361.273253" y2="361.273253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="361.273253" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="360.27325300000007" y2="360.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="360.27325300000007" y2="361.273253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="361.273253" y2="361.273253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="363.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="362.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="362.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="363.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="363.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="362.77325300000007" y2="362.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="362.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="363.77325300000007" y2="363.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="366.273253" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="365.27325300000007" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="365.27325300000007" y2="366.273253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="366.273253" y2="366.273253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="366.273253" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="365.27325300000007" y2="365.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="365.27325300000007" y2="366.273253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="366.273253" y2="366.273253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="368.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="367.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="367.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="368.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="368.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="367.77325300000007" y2="367.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="367.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="368.77325300000007" y2="368.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="371.273253" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="370.27325300000007" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="370.27325300000007" y2="371.273253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="371.273253" y2="371.273253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="371.273253" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="370.27325300000007" y2="370.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="370.27325300000007" y2="371.273253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="371.273253" y2="371.273253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="373.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="372.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="372.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="373.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="373.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="372.77325300000007" y2="372.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="372.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="373.77325300000007" y2="373.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="376.27325300000007" y2="375.273253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="375.273253" y2="375.273253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="375.273253" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="376.27325300000007" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="376.27325300000007" y2="375.273253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="375.273253" y2="375.273253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="375.273253" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="376.27325300000007" y2="376.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="378.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="377.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="377.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="378.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="378.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="377.77325300000007" y2="377.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="377.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="378.77325300000007" y2="378.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="381.27325300000007" y2="380.273253"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="380.273253" y2="380.273253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="380.273253" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="381.27325300000007" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="381.27325300000007" y2="380.273253"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="380.273253" y2="380.273253"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="380.273253" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="381.27325300000007" y2="381.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="383.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="382.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="382.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="383.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="383.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="382.77325300000007" y2="382.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="382.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="383.77325300000007" y2="383.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="386.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="385.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="385.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="386.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="565.5905903408149" y1="386.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="565.5905903408149" x2="566.590590340815" y1="385.27325300000007" y2="385.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="566.590590340815" y1="385.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="566.590590340815" x2="565.5905903408149" y1="386.27325300000007" y2="386.27325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="545.5905903408149" y1="388.773253" y2="387.77325300000007"/>
+  <line stroke="#888888" x1="545.5905903408149" x2="546.5905903408149" y1="387.77325300000007" y2="387.77325300000007"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="546.5905903408149" y1="387.77325300000007" y2="388.773253"/>
+  <line stroke="#888888" x1="546.5905903408149" x2="545.5905903408149" y1="388.773253" y2="388.773253"/>
+  <line stroke="#888888" x1="564.5905903408149" x2="564.5905903408149" y1="389.77325300000007" y2="386.77325300000007"/>
+  <line stroke="#888888" x1="564.5905903408149" x2="567.590590340815" y1="386.77325300000007" y2="386.77325300000007"/>
+  <line stroke="#888888" x1="567.590590340815" x2="567.590590340815" y1="386.77325300000007" y2="389.77325300000007"/>
+  <line stroke="#888888" x1="567.590590340815" x2="564.5905903408149" y1="389.77325300000007" y2="389.77325300000007"/>
+  <line stroke="#888888" x1="560.3405903408149" x2="551.8405903408149" y1="346.77325300000007" y2="346.77325300000007"/>
+  <line stroke="#888888" x1="551.8405903408149" x2="551.8405903408149" y1="346.77325300000007" y2="346.27325300000007"/>
+  <line stroke="#888888" x1="551.8405903408149" x2="560.3405903408149" y1="346.27325300000007" y2="346.27325300000007"/>
+  <line stroke="#888888" x1="560.3405903408149" x2="560.3405903408149" y1="346.27325300000007" y2="346.77325300000007"/>
+  <line stroke="#888888" x1="551.8405903408149" x2="560.3405903408149" y1="394.52325300000007" y2="394.52325300000007"/>
+  <line stroke="#888888" x1="560.3405903408149" x2="560.3405903408149" y1="394.52325300000007" y2="395.02325300000007"/>
+  <line stroke="#888888" x1="560.3405903408149" x2="551.8405903408149" y1="395.02325300000007" y2="395.02325300000007"/>
+  <line stroke="#888888" x1="551.8405903408149" x2="551.8405903408149" y1="395.02325300000007" y2="394.52325300000007"/>
+  <line stroke="#888888" x1="536.590590340815" x2="541.5905903408149" y1="350.11416209090913" y2="350.11416209090913"/>
+  <line stroke="#888888" x1="541.5905903408149" x2="541.5905903408149" y1="350.11416209090913" y2="361.20507118181825"/>
+  <line stroke="#888888" x1="541.5905903408149" x2="536.590590340815" y1="361.20507118181825" y2="361.20507118181825"/>
+  <line stroke="#888888" x1="536.590590340815" x2="541.5905903408149" y1="377.8414348181818" y2="377.8414348181818"/>
+  <line stroke="#888888" x1="541.5905903408149" x2="541.5905903408149" y1="377.8414348181818" y2="388.932343909091"/>
+  <line stroke="#888888" x1="541.5905903408149" x2="536.590590340815" y1="388.932343909091" y2="388.932343909091"/>
+  <line stroke="#888888" x1="537.8405903408149" x2="541.340590340815" y1="323.02325300000007" y2="323.02325300000007"/>
+  <line stroke="#888888" x1="541.340590340815" x2="541.340590340815" y1="323.02325300000007" y2="331.02325300000007"/>
+  <line stroke="#888888" x1="541.340590340815" x2="537.8405903408149" y1="331.02325300000007" y2="331.02325300000007"/>
 </svg>
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-model.png b/rocolib/builders/output/BoatWithStackBattery/graph-model.png
index e4ea89f1cb49a4219ceb05c65d94685ff7384f54..cefeb28d58bbee29a6bc76866841a55ad93f3108 100644
Binary files a/rocolib/builders/output/BoatWithStackBattery/graph-model.png and b/rocolib/builders/output/BoatWithStackBattery/graph-model.png differ
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-model.stl b/rocolib/builders/output/BoatWithStackBattery/graph-model.stl
index c0f41518870c773a6c7f61832496908a0d8eb14b..9fd07200a030c888afc71b085bb769f82905197c 100644
--- a/rocolib/builders/output/BoatWithStackBattery/graph-model.stl
+++ b/rocolib/builders/output/BoatWithStackBattery/graph-model.stl
@@ -127,184 +127,184 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.0650 0.0000
-vertex -0.0450 -0.0650 0.0000
-vertex 0.0450 -0.0650 0.0000
+vertex -0.0450 0.2410 0.0000
+vertex -0.0450 -0.2410 0.0000
+vertex 0.0450 -0.2410 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0650 0.0000
-vertex 0.0450 0.0650 0.0000
-vertex -0.0450 0.0650 0.0000
+vertex 0.0450 -0.2410 0.0000
+vertex 0.0450 0.2410 0.0000
+vertex -0.0450 0.2410 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.0650 -0.0700
-vertex -0.0450 -0.0650 -0.0700
-vertex -0.0450 -0.0650 0.0000
+vertex -0.0450 0.2410 -0.0700
+vertex -0.0450 -0.2410 -0.0700
+vertex -0.0450 -0.2410 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0650 0.0000
-vertex -0.0450 0.0650 0.0000
-vertex -0.0450 0.0650 -0.0700
+vertex -0.0450 -0.2410 0.0000
+vertex -0.0450 0.2410 0.0000
+vertex -0.0450 0.2410 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.0650 0.0000
-vertex 0.0450 -0.0650 0.0000
-vertex 0.0450 -0.0650 -0.0700
+vertex 0.0450 0.2410 0.0000
+vertex 0.0450 -0.2410 0.0000
+vertex 0.0450 -0.2410 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0650 -0.0700
-vertex 0.0450 0.0650 -0.0700
-vertex 0.0450 0.0650 0.0000
+vertex 0.0450 -0.2410 -0.0700
+vertex 0.0450 0.2410 -0.0700
+vertex 0.0450 0.2410 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0650 0.0000
-vertex -0.0450 -0.0650 -0.0700
-vertex -0.0099 -0.1040 -0.0700
+vertex -0.0450 -0.2410 0.0000
+vertex -0.0450 -0.2410 -0.0700
+vertex -0.0099 -0.2800 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0099 -0.1040 -0.0700
-vertex 0.0000 -0.1150 -0.0700
-vertex -0.0450 -0.0650 0.0000
+vertex -0.0099 -0.2800 -0.0700
+vertex 0.0000 -0.2910 -0.0700
+vertex -0.0450 -0.2410 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0000 -0.0650 0.0000
-vertex -0.0450 -0.0650 0.0000
-vertex 0.0000 -0.1150 -0.0700
+vertex 0.0000 -0.2410 0.0000
+vertex -0.0450 -0.2410 0.0000
+vertex 0.0000 -0.2910 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0000 -0.0650 0.0000
-vertex -0.0000 -0.1150 -0.0700
-vertex 0.0450 -0.0650 0.0000
+vertex -0.0000 -0.2410 0.0000
+vertex -0.0000 -0.2910 -0.0700
+vertex 0.0450 -0.2410 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0099 -0.1040 -0.0700
-vertex 0.0450 -0.0650 -0.0700
-vertex 0.0450 -0.0650 0.0000
+vertex 0.0099 -0.2800 -0.0700
+vertex 0.0450 -0.2410 -0.0700
+vertex 0.0450 -0.2410 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0650 0.0000
-vertex -0.0000 -0.1150 -0.0700
-vertex 0.0099 -0.1040 -0.0700
+vertex 0.0450 -0.2410 0.0000
+vertex -0.0000 -0.2910 -0.0700
+vertex 0.0099 -0.2800 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0650 -0.0700
-vertex -0.0450 -0.0650 0.0000
-vertex -0.0099 -0.1040 -0.0700
+vertex -0.0450 -0.2410 -0.0700
+vertex -0.0450 -0.2410 0.0000
+vertex -0.0099 -0.2800 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0650 -0.0700
-vertex -0.0099 -0.1040 -0.0700
-vertex -0.0450 -0.0650 -0.0000
+vertex -0.0450 -0.2410 -0.0700
+vertex -0.0099 -0.2800 -0.0700
+vertex -0.0450 -0.2410 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0650 -0.0700
-vertex 0.0099 -0.1040 -0.0700
-vertex 0.0450 -0.0650 -0.0000
+vertex 0.0450 -0.2410 -0.0700
+vertex 0.0099 -0.2800 -0.0700
+vertex 0.0450 -0.2410 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0650 -0.0700
-vertex 0.0450 -0.0650 0.0000
-vertex 0.0099 -0.1040 -0.0700
+vertex 0.0450 -0.2410 -0.0700
+vertex 0.0450 -0.2410 0.0000
+vertex 0.0099 -0.2800 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.0650 0.0000
-vertex 0.0450 0.0650 -0.0700
-vertex 0.0099 0.1040 -0.0700
+vertex 0.0450 0.2410 0.0000
+vertex 0.0450 0.2410 -0.0700
+vertex 0.0099 0.2800 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0099 0.1040 -0.0700
-vertex 0.0000 0.1150 -0.0700
-vertex 0.0450 0.0650 0.0000
+vertex 0.0099 0.2800 -0.0700
+vertex 0.0000 0.2910 -0.0700
+vertex 0.0450 0.2410 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0000 0.0650 -0.0000
-vertex 0.0450 0.0650 -0.0000
-vertex 0.0000 0.1150 -0.0700
+vertex 0.0000 0.2410 -0.0000
+vertex 0.0450 0.2410 -0.0000
+vertex 0.0000 0.2910 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0000 0.0650 0.0000
-vertex 0.0000 0.1150 -0.0700
-vertex -0.0450 0.0650 0.0000
+vertex 0.0000 0.2410 0.0000
+vertex 0.0000 0.2910 -0.0700
+vertex -0.0450 0.2410 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0099 0.1040 -0.0700
-vertex -0.0450 0.0650 -0.0700
-vertex -0.0450 0.0650 0.0000
+vertex -0.0099 0.2800 -0.0700
+vertex -0.0450 0.2410 -0.0700
+vertex -0.0450 0.2410 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.0650 0.0000
-vertex 0.0000 0.1150 -0.0700
-vertex -0.0099 0.1040 -0.0700
+vertex -0.0450 0.2410 0.0000
+vertex 0.0000 0.2910 -0.0700
+vertex -0.0099 0.2800 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.0650 -0.0700
-vertex 0.0450 0.0650 0.0000
-vertex 0.0099 0.1040 -0.0700
+vertex 0.0450 0.2410 -0.0700
+vertex 0.0450 0.2410 0.0000
+vertex 0.0099 0.2800 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.0650 -0.0700
-vertex 0.0099 0.1040 -0.0700
-vertex 0.0450 0.0650 -0.0000
+vertex 0.0450 0.2410 -0.0700
+vertex 0.0099 0.2800 -0.0700
+vertex 0.0450 0.2410 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.0650 -0.0700
-vertex -0.0099 0.1040 -0.0700
-vertex -0.0450 0.0650 -0.0000
+vertex -0.0450 0.2410 -0.0700
+vertex -0.0099 0.2800 -0.0700
+vertex -0.0450 0.2410 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.0650 -0.0700
-vertex -0.0450 0.0650 0.0000
-vertex -0.0099 0.1040 -0.0700
+vertex -0.0450 0.2410 -0.0700
+vertex -0.0450 0.2410 0.0000
+vertex -0.0099 0.2800 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
@@ -323,8 +323,8 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.0000 -0.0700
-vertex -0.0450 0.0000 -0.1061
+vertex -0.0450 -0.0000 -0.0700
+vertex -0.0450 -0.0000 -0.1061
 vertex -0.0450 -0.0610 -0.1061
 endloop
 endfacet
@@ -332,26 +332,26 @@ facet normal 0 0 0
 outer loop
 vertex -0.0450 -0.0610 -0.1061
 vertex -0.0450 -0.0610 -0.0700
-vertex -0.0450 0.0000 -0.0700
+vertex -0.0450 -0.0000 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.0081 -0.0610 -0.1231
 vertex -0.0280 -0.0610 -0.1231
-vertex -0.0280 0.0000 -0.1231
+vertex -0.0280 -0.0000 -0.1231
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0280 0.0000 -0.1231
-vertex 0.0081 0.0000 -0.1231
+vertex -0.0280 -0.0000 -0.1231
+vertex 0.0081 -0.0000 -0.1231
 vertex 0.0081 -0.0610 -0.1231
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0280 0.0000 -0.1231
+vertex -0.0280 -0.0000 -0.1231
 vertex -0.0319 -0.0290 -0.1192
 vertex -0.0319 -0.0180 -0.1192
 endloop
@@ -359,20 +359,20 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex -0.0319 -0.0290 -0.1192
-vertex -0.0280 0.0000 -0.1231
+vertex -0.0280 -0.0000 -0.1231
 vertex -0.0280 -0.0610 -0.1231
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0280 0.0000 -0.1231
+vertex -0.0280 -0.0000 -0.1231
 vertex -0.0319 -0.0180 -0.1192
 vertex -0.0411 -0.0180 -0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.0000 -0.1061
+vertex -0.0450 -0.0000 -0.1061
 vertex -0.0411 -0.0180 -0.1100
 vertex -0.0411 -0.0290 -0.1100
 endloop
@@ -380,13 +380,13 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex -0.0411 -0.0180 -0.1100
-vertex -0.0450 0.0000 -0.1061
-vertex -0.0280 0.0000 -0.1231
+vertex -0.0450 -0.0000 -0.1061
+vertex -0.0280 -0.0000 -0.1231
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.0000 -0.1061
+vertex -0.0450 -0.0000 -0.1061
 vertex -0.0411 -0.0290 -0.1100
 vertex -0.0450 -0.0610 -0.1061
 endloop
@@ -3291,58 +3291,58 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0112 -0.1053 -0.0526
-vertex -0.0099 -0.1040 -0.0700
-vertex -0.0450 -0.0650 -0.0700
+vertex -0.0112 -0.2813 -0.0526
+vertex -0.0099 -0.2800 -0.0700
+vertex -0.0450 -0.2410 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0650 -0.0700
-vertex -0.0464 -0.0662 -0.0526
-vertex -0.0112 -0.1053 -0.0526
+vertex -0.0450 -0.2410 -0.0700
+vertex -0.0464 -0.2422 -0.0526
+vertex -0.0112 -0.2813 -0.0526
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0464 -0.0662 -0.0526
-vertex 0.0450 -0.0650 -0.0700
-vertex 0.0099 -0.1040 -0.0700
+vertex 0.0464 -0.2422 -0.0526
+vertex 0.0450 -0.2410 -0.0700
+vertex 0.0099 -0.2800 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0099 -0.1040 -0.0700
-vertex 0.0112 -0.1053 -0.0526
-vertex 0.0464 -0.0662 -0.0526
+vertex 0.0099 -0.2800 -0.0700
+vertex 0.0112 -0.2813 -0.0526
+vertex 0.0464 -0.2422 -0.0526
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0112 0.1053 -0.0526
-vertex 0.0099 0.1040 -0.0700
-vertex 0.0450 0.0650 -0.0700
+vertex 0.0112 0.2813 -0.0526
+vertex 0.0099 0.2800 -0.0700
+vertex 0.0450 0.2410 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.0650 -0.0700
-vertex 0.0464 0.0662 -0.0526
-vertex 0.0112 0.1053 -0.0526
+vertex 0.0450 0.2410 -0.0700
+vertex 0.0464 0.2422 -0.0526
+vertex 0.0112 0.2813 -0.0526
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0464 0.0662 -0.0526
-vertex -0.0450 0.0650 -0.0700
-vertex -0.0099 0.1040 -0.0700
+vertex -0.0464 0.2422 -0.0526
+vertex -0.0450 0.2410 -0.0700
+vertex -0.0099 0.2800 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0099 0.1040 -0.0700
-vertex -0.0112 0.1053 -0.0526
-vertex -0.0464 0.0662 -0.0526
+vertex -0.0099 0.2800 -0.0700
+vertex -0.0112 0.2813 -0.0526
+vertex -0.0464 0.2422 -0.0526
 endloop
 endfacet
 facet normal 0 0 0
@@ -3390,13 +3390,13 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex -0.0280 0.0100 -0.1231
-vertex -0.0280 0.0000 -0.1231
-vertex -0.0450 0.0000 -0.1061
+vertex -0.0280 -0.0000 -0.1231
+vertex -0.0450 -0.0000 -0.1061
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.0000 -0.1061
+vertex -0.0450 -0.0000 -0.1061
 vertex -0.0450 0.0100 -0.1061
 vertex -0.0280 0.0100 -0.1231
 endloop
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-silhouette.dxf b/rocolib/builders/output/BoatWithStackBattery/graph-silhouette.dxf
index 0bfe8e0c547a10d0a032bb697edd82a31826630c..01358313ccc44d967c0ab229cd082d1d49006668 100644
--- a/rocolib/builders/output/BoatWithStackBattery/graph-silhouette.dxf
+++ b/rocolib/builders/output/BoatWithStackBattery/graph-silhouette.dxf
@@ -945,13 +945,13 @@ LINE
  10
 160.30855606972293
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 98.65427803486146
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -963,13 +963,13 @@ LINE
  10
 98.65427803486146
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 160.30855606972293
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -983,13 +983,13 @@ DOTTED
  10
 98.65427803486146
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 98.65427803486146
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1001,13 +1001,13 @@ LINE
  10
 170.30855606972293
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 160.30855606972293
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1019,13 +1019,13 @@ LINE
  10
 170.30855606972293
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 170.30855606972293
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1037,13 +1037,13 @@ LINE
  10
 160.30855606972293
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 170.30855606972293
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1055,13 +1055,13 @@ LINE
  10
 71.65427803486145
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 98.65427803486146
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1075,13 +1075,13 @@ DOTTED
  10
 71.65427803486145
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 71.65427803486145
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1095,13 +1095,13 @@ DOTTED
  10
 98.65427803486146
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 71.65427803486145
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1113,13 +1113,13 @@ LINE
  10
 10.000000000000002
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 71.65427803486145
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1131,13 +1131,13 @@ LINE
  10
 71.65427803486145
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 10.000000000000002
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1149,13 +1149,13 @@ LINE
  10
 0.0
  20
-181.52325300000004
+357.523253
  30
 0.0
  11
 10.000000000000002
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1167,13 +1167,13 @@ LINE
  10
 0.0
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 0.0
  21
-181.52325300000004
+357.523253
  31
 0.0
   0
@@ -1185,13 +1185,13 @@ LINE
  10
 10.000000000000002
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 0.0
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1203,13 +1203,13 @@ LINE
  10
 98.65427803486146
  20
-120.52325300000003
+296.52325300000007
  30
 0.0
  11
 98.65427803486146
  21
-103.52325300000001
+279.523253
  31
 0.0
   0
@@ -1221,13 +1221,13 @@ LINE
  10
 71.65427803486145
  20
-103.52325300000001
+279.523253
  30
 0.0
  11
 71.65427803486145
  21
-120.52325300000003
+296.52325300000007
  31
 0.0
   0
@@ -1241,13 +1241,13 @@ DOTTED
  10
 98.65427803486146
  20
-103.52325300000001
+279.523253
  30
 0.0
  11
 71.65427803486145
  21
-103.52325300000001
+279.523253
  31
 0.0
   0
@@ -1259,13 +1259,13 @@ LINE
  10
 98.65427803486146
  20
-103.52325300000001
+279.523253
  30
 0.0
  11
 98.65427803486146
  21
-42.52325300000002
+218.523253
  31
 0.0
   0
@@ -1277,13 +1277,13 @@ LINE
  10
 71.65427803486145
  20
-42.52325300000002
+218.523253
  30
 0.0
  11
 71.65427803486145
  21
-103.52325300000001
+279.523253
  31
 0.0
   0
@@ -1297,13 +1297,13 @@ DOTTED
  10
 98.65427803486146
  20
-42.52325300000002
+218.523253
  30
 0.0
  11
 71.65427803486145
  21
-42.52325300000002
+218.523253
  31
 0.0
   0
@@ -1315,13 +1315,13 @@ LINE
  10
 98.65427803486146
  20
-42.52325300000002
+218.523253
  30
 0.0
  11
 98.65427803486146
  21
-25.523253000000015
+201.52325300000004
  31
 0.0
   0
@@ -1333,13 +1333,13 @@ LINE
  10
 71.65427803486145
  20
-25.523253000000015
+201.52325300000004
  30
 0.0
  11
 71.65427803486145
  21
-42.52325300000002
+218.523253
  31
 0.0
   0
@@ -1353,13 +1353,13 @@ DOTTED
  10
 71.65427803486145
  20
-25.523253000000015
+201.52325300000004
  30
 0.0
  11
 98.65427803486146
  21
-25.523253000000015
+201.52325300000004
  31
 0.0
   0
@@ -1371,13 +1371,13 @@ LINE
  10
 71.65427803486145
  20
-15.523253000000013
+191.52325300000004
  30
 0.0
  11
 71.65427803486145
  21
-25.523253000000015
+201.52325300000004
  31
 0.0
   0
@@ -1389,13 +1389,13 @@ LINE
  10
 98.65427803486146
  20
-15.523253000000013
+191.52325300000004
  30
 0.0
  11
 71.65427803486145
  21
-15.523253000000013
+191.52325300000004
  31
 0.0
   0
@@ -1407,13 +1407,13 @@ LINE
  10
 98.65427803486146
  20
-25.523253000000015
+201.52325300000004
  30
 0.0
  11
 98.65427803486146
  21
-15.523253000000013
+191.52325300000004
  31
 0.0
   0
@@ -1425,13 +1425,13 @@ LINE
  10
 167.80855606972293
  20
-170.43234390909095
+346.432343909091
  30
 0.0
  11
 162.80855606972293
  21
-170.43234390909095
+346.432343909091
  31
 0.0
   0
@@ -1443,13 +1443,13 @@ LINE
  10
 162.80855606972293
  20
-170.43234390909095
+346.432343909091
  30
 0.0
  11
 162.80855606972293
  21
-159.34143481818182
+335.3414348181819
  31
 0.0
   0
@@ -1461,13 +1461,13 @@ LINE
  10
 162.80855606972293
  20
-159.34143481818182
+335.3414348181819
  30
 0.0
  11
 167.80855606972293
  21
-159.34143481818182
+335.3414348181819
  31
 0.0
   0
@@ -1479,13 +1479,13 @@ LINE
  10
 167.80855606972293
  20
-142.7050711818182
+318.7050711818182
  30
 0.0
  11
 162.80855606972293
  21
-142.7050711818182
+318.7050711818182
  31
 0.0
   0
@@ -1497,13 +1497,13 @@ LINE
  10
 162.80855606972293
  20
-142.7050711818182
+318.7050711818182
  30
 0.0
  11
 162.80855606972293
  21
-131.61416209090913
+307.61416209090913
  31
 0.0
   0
@@ -1515,13 +1515,13 @@ LINE
  10
 162.80855606972293
  20
-131.61416209090913
+307.61416209090913
  30
 0.0
  11
 167.80855606972293
  21
-131.61416209090913
+307.61416209090913
  31
 0.0
   0
@@ -1533,13 +1533,13 @@ LINE
  10
 94.15427803486146
  20
-118.02325300000003
+294.023253
  30
 0.0
  11
 94.15427803486146
  21
-124.02325300000003
+300.02325300000007
  31
 0.0
   0
@@ -1551,13 +1551,13 @@ LINE
  10
 94.15427803486146
  20
-124.02325300000003
+300.02325300000007
  30
 0.0
  11
 76.15427803486145
  21
-124.02325300000003
+300.02325300000007
  31
 0.0
   0
@@ -1569,13 +1569,13 @@ LINE
  10
 76.15427803486145
  20
-124.02325300000003
+300.02325300000007
  30
 0.0
  11
 76.15427803486145
  21
-118.02325300000003
+294.023253
  31
 0.0
   0
@@ -1587,13 +1587,13 @@ LINE
  10
 76.15427803486145
  20
-118.02325300000003
+294.023253
  30
 0.0
  11
 94.15427803486146
  21
-118.02325300000003
+294.023253
  31
 0.0
   0
@@ -1605,13 +1605,13 @@ LINE
  10
 80.40427803486146
  20
-173.77325300000004
+349.77325300000007
  30
 0.0
  11
 89.90427803486145
  21
-173.77325300000004
+349.77325300000007
  31
 0.0
   0
@@ -1623,13 +1623,13 @@ LINE
  10
 89.90427803486145
  20
-173.77325300000004
+349.77325300000007
  30
 0.0
  11
 89.90427803486145
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -1641,13 +1641,13 @@ LINE
  10
 89.90427803486145
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
 80.40427803486146
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -1659,13 +1659,13 @@ LINE
  10
 80.40427803486146
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
 80.40427803486146
  21
-173.77325300000004
+349.77325300000007
  31
 0.0
   0
@@ -1677,13 +1677,13 @@ LINE
  10
 2.5000000000000004
  20
-131.61416209090913
+307.6141620909092
  30
 0.0
  11
 7.500000000000001
  21
-131.61416209090913
+307.6141620909092
  31
 0.0
   0
@@ -1695,13 +1695,13 @@ LINE
  10
 7.500000000000001
  20
-131.61416209090913
+307.6141620909092
  30
 0.0
  11
 7.500000000000001
  21
-142.7050711818182
+318.7050711818182
  31
 0.0
   0
@@ -1713,13 +1713,13 @@ LINE
  10
 7.500000000000001
  20
-142.7050711818182
+318.7050711818182
  30
 0.0
  11
 2.5000000000000004
  21
-142.7050711818182
+318.7050711818182
  31
 0.0
   0
@@ -1731,13 +1731,13 @@ LINE
  10
 2.5000000000000004
  20
-159.34143481818185
+335.3414348181819
  30
 0.0
  11
 7.500000000000001
  21
-159.34143481818185
+335.3414348181819
  31
 0.0
   0
@@ -1749,13 +1749,13 @@ LINE
  10
 7.500000000000001
  20
-159.34143481818185
+335.3414348181819
  30
 0.0
  11
 7.500000000000001
  21
-170.43234390909095
+346.432343909091
  31
 0.0
   0
@@ -1767,13 +1767,13 @@ LINE
  10
 7.500000000000001
  20
-170.43234390909095
+346.432343909091
  30
 0.0
  11
 2.5000000000000004
  21
-170.43234390909095
+346.432343909091
  31
 0.0
   0
@@ -1785,13 +1785,13 @@ LINE
  10
 89.65427803486146
  20
-18.023253000000015
+194.02325300000004
  30
 0.0
  11
 89.65427803486146
  21
-23.02325300000001
+199.02325300000004
  31
 0.0
   0
@@ -1803,13 +1803,13 @@ LINE
  10
 89.65427803486146
  20
-23.02325300000001
+199.02325300000004
  30
 0.0
  11
 80.65427803486146
  21
-23.02325300000001
+199.02325300000004
  31
 0.0
   0
@@ -1821,13 +1821,13 @@ LINE
  10
 80.65427803486146
  20
-23.02325300000001
+199.02325300000004
  30
 0.0
  11
 80.65427803486146
  21
-18.023253000000015
+194.02325300000004
  31
 0.0
   0
@@ -1839,15 +1839,15 @@ DOTTED
   8
 0
  10
-436.5858000680936
+436.5858000680937
  20
 86.02325300000003
  30
 0.0
  11
-436.5858000680936
+436.5858000680937
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -1859,15 +1859,15 @@ DOTTED
   8
 0
  10
-346.5858000680936
+346.5858000680937
  20
 86.02325300000003
  30
 0.0
  11
-346.5858000680936
+346.5858000680937
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -1879,13 +1879,13 @@ DOTTED
   8
 0
  10
-391.5858000680936
+391.5858000680937
  20
 86.02325300000003
  30
 0.0
  11
-346.5858000680936
+346.5858000680937
  21
 86.02325300000003
  31
@@ -1899,13 +1899,13 @@ DOTTED
   8
 0
  10
-436.5858000680936
+436.5858000680937
  20
 86.02325300000003
  30
 0.0
  11
-391.5858000680936
+391.5858000680937
  21
 86.02325300000003
  31
@@ -1919,13 +1919,13 @@ DOTTED
   8
 0
  10
-391.5858000680936
+391.5858000680937
  20
-3.2957373719000316e-07
+3.295737656117126e-07
  30
 0.0
  11
-346.5858000680936
+346.5858000680937
  21
 86.02325300000003
  31
@@ -1937,13 +1937,13 @@ LINE
   8
 0
  10
-377.4211156634208
+377.4211156634209
  20
 4.127328470363296
  30
 0.0
  11
-327.0034578657572
+327.0034578657573
  21
 18.818105326100866
  31
@@ -1955,13 +1955,13 @@ LINE
   8
 0
  10
-391.5858000680936
+391.5858000680937
  20
 3.295737656117126e-07
  30
 0.0
  11
-377.4211156634208
+377.4211156634209
  21
 4.127328470363296
  31
@@ -1975,13 +1975,13 @@ DOTTED
   8
 0
  10
-346.5858000680936
+346.5858000680937
  20
 86.02325300000005
  30
 0.0
  11
-327.0034578657572
+327.0034578657573
  21
 18.818105326100866
  31
@@ -1995,15 +1995,15 @@ DOTTED
   8
 0
  10
-346.5858000680936
+346.5858000680937
  20
-86.02325300000003
+86.02325300000005
  30
 0.0
  11
-276.5858000680936
+276.58580006809376
  21
-33.50888218183837
+33.50888218183843
  31
 0.0
   0
@@ -2013,15 +2013,15 @@ LINE
   8
 0
  10
-327.0034578657572
+327.0034578657573
  20
-18.818105326100834
+18.818105326100866
  30
 0.0
  11
-276.5858000680936
+276.58580006809376
  21
-33.50888218183837
+33.50888218183843
  31
 0.0
   0
@@ -2033,15 +2033,15 @@ DOTTED
   8
 0
  10
-276.58580006809353
+276.5858000680937
  20
-86.02325299999998
+86.02325299999997
  30
 0.0
  11
-276.5858000680936
+276.58580006809376
  21
-33.508882181838395
+33.50888218183837
  31
 0.0
   0
@@ -2053,15 +2053,15 @@ DOTTED
   8
 0
  10
-346.5858000680936
+346.5858000680937
  20
-86.02325300000003
+86.023253
  30
 0.0
  11
-276.58580006809353
+276.5858000680937
  21
-86.02325299999998
+86.02325299999997
  31
 0.0
   0
@@ -2071,13 +2071,13 @@ LINE
   8
 0
  10
-259.08100979537306
+259.0810097953732
  20
 86.02325299999997
  30
 0.0
  11
-276.58580006809353
+276.5858000680937
  21
 86.02325299999997
  31
@@ -2089,13 +2089,13 @@ LINE
   8
 0
  10
-259.08100979537306
+259.0810097953732
  20
-33.508882181838366
+33.50888218183837
  30
 0.0
  11
-259.08100979537306
+259.0810097953732
  21
 86.02325299999997
  31
@@ -2107,15 +2107,15 @@ LINE
   8
 0
  10
-276.5858000680936
+276.58580006809376
  20
 33.50888218183837
  30
 0.0
  11
-259.08100979537306
+259.0810097953732
  21
-33.508882181838366
+33.50888218183837
  31
 0.0
   0
@@ -2127,15 +2127,15 @@ DOTTED
   8
 0
  10
-276.5858000680935
+276.58580006809336
  20
-216.023253
+568.0232530000001
  30
 0.0
  11
-346.58580006809353
+346.5858000680934
  21
-216.02325300000004
+568.0232530000001
  31
 0.0
   0
@@ -2147,15 +2147,15 @@ DOTTED
   8
 0
  10
-276.5858000680934
+276.5858000680933
  20
-268.53762381816165
+620.5376238181617
  30
 0.0
  11
-346.58580006809353
+346.5858000680934
  21
-216.02325300000004
+568.0232530000001
  31
 0.0
   0
@@ -2167,15 +2167,15 @@ DOTTED
   8
 0
  10
-276.5858000680934
+276.5858000680933
  20
-268.53762381816165
+620.5376238181617
  30
 0.0
  11
-276.5858000680935
+276.58580006809336
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -2185,15 +2185,15 @@ LINE
   8
 0
  10
-276.58580006809336
+276.5858000680933
  20
-268.53762381816165
+620.5376238181617
  30
 0.0
  11
-327.003457865757
+327.00345786575684
  21
-283.2284006738992
+635.2284006738995
  31
 0.0
   0
@@ -2205,15 +2205,15 @@ DOTTED
   8
 0
  10
-327.003457865757
+327.00345786575684
  20
-283.2284006738992
+635.2284006738995
  30
 0.0
  11
-346.58580006809353
+346.5858000680934
  21
-216.02325300000004
+568.0232530000001
  31
 0.0
   0
@@ -2225,15 +2225,15 @@ DOTTED
   8
 0
  10
-391.5858000680934
+391.5858000680933
  20
-302.04650567042637
+654.0465056704267
  30
 0.0
  11
-346.58580006809353
+346.5858000680934
  21
-216.02325300000004
+568.0232530000003
  31
 0.0
   0
@@ -2243,15 +2243,15 @@ LINE
   8
 0
  10
-377.42111566342055
+377.42111566342044
  20
-297.9191775296369
+649.919177529637
  30
 0.0
  11
-391.5858000680934
+391.5858000680933
  21
-302.04650567042637
+654.0465056704267
  31
 0.0
   0
@@ -2261,15 +2261,15 @@ LINE
   8
 0
  10
-327.003457865757
+327.00345786575684
  20
-283.22840067389916
+635.2284006738994
  30
 0.0
  11
-377.42111566342055
+377.42111566342044
  21
-297.9191775296369
+649.919177529637
  31
 0.0
   0
@@ -2281,15 +2281,15 @@ DOTTED
   8
 0
  10
-346.58580006809353
+346.5858000680934
  20
-216.023253
+568.0232530000001
  30
 0.0
  11
-391.58580006809353
+391.5858000680934
  21
-216.02325300000007
+568.0232530000003
  31
 0.0
   0
@@ -2301,15 +2301,15 @@ DOTTED
   8
 0
  10
-391.58580006809353
+391.5858000680934
  20
-216.02325300000012
+568.0232530000003
  30
 0.0
  11
-436.58580006809353
+436.5858000680934
  21
-216.02325300000018
+568.0232530000004
  31
 0.0
   0
@@ -2321,15 +2321,15 @@ DOTTED
   8
 0
  10
-391.5858000680934
+391.5858000680933
  20
-302.04650567042637
+654.0465056704267
  30
 0.0
  11
-436.58580006809353
+436.5858000680934
  21
-216.02325300000018
+568.0232530000004
  31
 0.0
   0
@@ -2339,15 +2339,15 @@ LINE
   8
 0
  10
-405.7504844727662
+405.7504844727661
  20
-297.9191775296369
+649.919177529637
  30
 0.0
  11
-456.1681422704299
+456.16814227042977
  21
-283.2284006738994
+635.2284006738995
  31
 0.0
   0
@@ -2357,15 +2357,15 @@ LINE
   8
 0
  10
-391.5858000680934
+391.5858000680933
  20
-302.04650567042637
+654.0465056704267
  30
 0.0
  11
-405.7504844727662
+405.7504844727661
  21
-297.9191775296369
+649.919177529637
  31
 0.0
   0
@@ -2377,15 +2377,15 @@ DOTTED
   8
 0
  10
-436.58580006809353
+436.5858000680934
  20
-216.02325300000018
+568.0232530000004
  30
 0.0
  11
-456.1681422704299
+456.16814227042977
  21
-283.2284006738994
+635.2284006738995
  31
 0.0
   0
@@ -2397,15 +2397,15 @@ DOTTED
   8
 0
  10
-436.58580006809353
+436.5858000680934
  20
-216.02325300000018
+568.0232530000004
  30
 0.0
  11
-506.5858000680934
+506.5858000680933
  21
-268.5376238181619
+620.537623818162
  31
 0.0
   0
@@ -2415,15 +2415,15 @@ LINE
   8
 0
  10
-456.1681422704298
+456.1681422704297
  20
-283.2284006738994
+635.2284006738995
  30
 0.0
  11
-506.5858000680934
+506.5858000680933
  21
-268.5376238181619
+620.537623818162
  31
 0.0
   0
@@ -2435,15 +2435,15 @@ DOTTED
   8
 0
  10
-506.58580006809353
+506.5858000680934
  20
-216.02325300000032
+568.0232530000005
  30
 0.0
  11
-506.5858000680934
+506.58580006809336
  21
-268.5376238181619
+620.5376238181622
  31
 0.0
   0
@@ -2455,15 +2455,15 @@ DOTTED
   8
 0
  10
-436.58580006809353
+436.5858000680934
  20
-216.02325300000018
+568.0232530000004
  30
 0.0
  11
-506.58580006809353
+506.5858000680934
  21
-216.02325300000032
+568.0232530000005
  31
 0.0
   0
@@ -2473,15 +2473,15 @@ LINE
   8
 0
  10
-524.0905903408142
+524.090590340814
  20
-216.02325300000035
+568.0232530000005
  30
 0.0
  11
-506.58580006809353
+506.5858000680934
  21
-216.02325300000032
+568.0232530000004
  31
 0.0
   0
@@ -2491,15 +2491,15 @@ LINE
   8
 0
  10
-524.090590340814
+524.0905903408138
  20
-268.53762381816193
+620.5376238181622
  30
 0.0
  11
-524.0905903408142
+524.090590340814
  21
-216.02325300000035
+568.0232530000005
  31
 0.0
   0
@@ -2509,15 +2509,15 @@ LINE
   8
 0
  10
-506.5858000680934
+506.5858000680933
  20
-268.5376238181619
+620.537623818162
  30
 0.0
  11
-524.090590340814
+524.0905903408138
  21
-268.53762381816193
+620.5376238181622
  31
 0.0
   0
@@ -2529,13 +2529,13 @@ DOTTED
   8
 0
  10
-506.58580006809376
+506.58580006809433
  20
-86.02325300000027
+86.02325300000028
  30
 0.0
  11
-436.58580006809376
+436.5858000680943
  21
 86.02325300000012
  31
@@ -2549,15 +2549,15 @@ DOTTED
   8
 0
  10
-506.5858000680939
+506.58580006809444
  20
-33.50888218183868
+33.508882181838665
  30
 0.0
  11
-436.58580006809376
+436.5858000680943
  21
-86.02325300000012
+86.0232530000001
  31
 0.0
   0
@@ -2569,15 +2569,15 @@ DOTTED
   8
 0
  10
-506.5858000680939
+506.58580006809444
  20
-33.50888218183868
+33.508882181838665
  30
 0.0
  11
-506.58580006809376
+506.58580006809433
  21
-86.02325300000027
+86.02325300000025
  31
 0.0
   0
@@ -2587,15 +2587,15 @@ LINE
   8
 0
  10
-506.5858000680939
+506.58580006809444
  20
-33.50888218183864
+33.508882181838665
  30
 0.0
  11
-456.16814227043034
+456.1681422704309
  21
-18.818105326100948
+18.81810532610098
  31
 0.0
   0
@@ -2607,15 +2607,15 @@ DOTTED
   8
 0
  10
-456.16814227043034
+456.1681422704309
  20
-18.818105326100948
+18.81810532610098
  30
 0.0
  11
-436.58580006809376
+436.5858000680943
  21
-86.02325300000011
+86.02325300000012
  31
 0.0
   0
@@ -2627,13 +2627,13 @@ DOTTED
   8
 0
  10
-391.585800068094
+391.5858000680945
  20
 3.295737087682938e-07
  30
 0.0
  11
-436.58580006809376
+436.5858000680943
  21
 86.02325300000012
  31
@@ -2645,13 +2645,13 @@ LINE
   8
 0
  10
-405.7504844727668
+405.75048447276737
  20
 4.127328470363296
  30
 0.0
  11
-391.585800068094
+391.5858000680945
  21
 3.295737087682938e-07
  31
@@ -2663,13 +2663,13 @@ LINE
   8
 0
  10
-456.16814227043034
+456.1681422704309
  20
 18.81810532610098
  30
 0.0
  11
-405.7504844727668
+405.75048447276737
  21
 4.127328470363296
  31
@@ -2681,15 +2681,15 @@ LINE
   8
 0
  10
-524.0905903408144
+524.0905903408149
  20
 33.50888218183872
  30
 0.0
  11
-506.5858000680939
+506.58580006809444
  21
-33.508882181838686
+33.508882181838665
  31
 0.0
   0
@@ -2699,13 +2699,13 @@ LINE
   8
 0
  10
-524.0905903408144
+524.0905903408147
  20
-86.02325300000031
+86.02325300000028
  30
 0.0
  11
-524.0905903408144
+524.0905903408149
  21
 33.50888218183872
  31
@@ -2717,15 +2717,15 @@ LINE
   8
 0
  10
-506.58580006809376
+506.58580006809433
  20
-86.02325300000028
+86.02325300000025
  30
 0.0
  11
-524.0905903408144
+524.0905903408147
  21
-86.02325300000031
+86.02325300000028
  31
 0.0
   0
@@ -2735,15 +2735,15 @@ LINE
   8
 0
  10
-506.58580006809376
+506.585800068094
  20
-90.02325300000027
+266.02325300000035
  30
 0.0
  11
-506.58580006809376
+506.58580006809433
  21
-86.02325300000028
+86.02325300000025
  31
 0.0
   0
@@ -2753,15 +2753,15 @@ LINE
   8
 0
  10
-506.58580006809353
+506.58580006809376
  20
-212.02325300000032
+388.0232530000003
  30
 0.0
  11
-506.58580006809365
+506.5858000680939
  21
-151.0232530000003
+327.02325300000035
  31
 0.0
   0
@@ -2771,15 +2771,15 @@ LINE
   8
 0
  10
-506.58580006809353
+506.5858000680934
  20
-216.02325300000032
+568.0232530000004
  30
 0.0
  11
-506.58580006809353
+506.58580006809376
  21
-212.02325300000032
+388.0232530000003
  31
 0.0
   0
@@ -2789,15 +2789,15 @@ LINE
   8
 0
  10
-506.58580006809353
+506.5858000680934
  20
-216.02325300000032
+568.0232530000004
  30
 0.0
  11
-506.58580006809353
+506.5858000680934
  21
-216.02325300000032
+568.0232530000004
  31
 0.0
   0
@@ -2807,15 +2807,15 @@ LINE
   8
 0
  10
-506.58580006809376
+506.58580006809433
  20
-86.02325300000028
+86.02325300000025
  30
 0.0
  11
-506.58580006809376
+506.58580006809433
  21
-86.02325300000028
+86.02325300000025
  31
 0.0
   0
@@ -2825,15 +2825,15 @@ LINE
   8
 0
  10
-516.5858000680937
+516.5858000680939
  20
-90.02325300000031
+266.02325300000035
  30
 0.0
  11
-506.58580006809376
+506.585800068094
  21
-90.02325300000027
+266.02325300000035
  31
 0.0
   0
@@ -2843,15 +2843,15 @@ LINE
   8
 0
  10
-516.5858000680937
+516.5858000680938
  20
-151.0232530000003
+327.02325300000035
  30
 0.0
  11
-516.5858000680937
+516.5858000680939
  21
-90.02325300000031
+266.02325300000035
  31
 0.0
   0
@@ -2861,15 +2861,15 @@ LINE
   8
 0
  10
-506.58580006809365
+506.5858000680939
  20
-151.0232530000003
+327.02325300000035
  30
 0.0
  11
-516.5858000680937
+516.5858000680938
  21
-151.0232530000003
+327.02325300000035
  31
 0.0
   0
@@ -2879,15 +2879,15 @@ LINE
   8
 0
  10
-259.0810097953729
+259.0810097953728
  20
-268.53762381816165
+620.5376238181617
  30
 0.0
  11
-276.5858000680934
+276.5858000680933
  21
-268.53762381816165
+620.5376238181617
  31
 0.0
   0
@@ -2897,15 +2897,15 @@ LINE
   8
 0
  10
-259.0810097953729
+259.08100979537284
  20
-216.02325299999998
+568.0232530000001
  30
 0.0
  11
-259.0810097953729
+259.0810097953728
  21
-268.53762381816165
+620.5376238181617
  31
 0.0
   0
@@ -2915,15 +2915,15 @@ LINE
   8
 0
  10
-276.5858000680935
+276.58580006809336
  20
-216.023253
+568.0232530000001
  30
 0.0
  11
-259.0810097953729
+259.08100979537284
  21
-216.02325299999998
+568.0232530000001
  31
 0.0
   0
@@ -2935,13 +2935,13 @@ LINE
  10
 276.5858000680935
  20
-212.023253
+388.0232530000001
  30
 0.0
  11
-276.5858000680935
+276.58580006809336
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -2953,13 +2953,13 @@ LINE
  10
 276.5858000680935
  20
-151.02325299999998
+327.02325300000007
  30
 0.0
  11
 276.5858000680935
  21
-212.023253
+388.0232530000001
  31
 0.0
   0
@@ -2969,7 +2969,7 @@ LINE
   8
 0
  10
-276.58580006809353
+276.5858000680937
  20
 86.02325299999997
  30
@@ -2977,7 +2977,7 @@ LINE
  11
 276.58580006809353
  21
-90.02325299999995
+266.02325300000007
  31
 0.0
   0
@@ -2987,13 +2987,13 @@ LINE
   8
 0
  10
-276.58580006809353
+276.5858000680937
  20
 86.02325299999997
  30
 0.0
  11
-276.58580006809353
+276.5858000680937
  21
 86.02325299999997
  31
@@ -3005,15 +3005,15 @@ LINE
   8
 0
  10
-276.5858000680935
+276.58580006809336
  20
-216.023253
+568.0232530000001
  30
 0.0
  11
-276.5858000680935
+276.58580006809336
  21
-216.023253
+568.0232530000001
  31
 0.0
   0
@@ -3027,13 +3027,13 @@ DOTTED
  10
 240.44717806890822
  20
-151.02325299999998
+327.02325300000007
  30
 0.0
  11
 240.44717806890824
  21
-90.02325299999994
+266.023253
  31
 0.0
   0
@@ -3045,13 +3045,13 @@ LINE
  10
 276.58580006809353
  20
-90.02325299999995
+266.02325300000007
  30
 0.0
  11
 240.44717806890824
  21
-90.02325299999994
+266.023253
  31
 0.0
   0
@@ -3063,13 +3063,13 @@ LINE
  10
 240.44717806890822
  20
-151.02325299999998
+327.02325300000007
  30
 0.0
  11
 276.5858000680935
  21
-151.02325299999998
+327.02325300000007
  31
 0.0
   0
@@ -3083,13 +3083,13 @@ DOTTED
  10
 216.44717806890824
  20
-90.02325299999993
+266.023253
  30
 0.0
  11
 216.44717806890822
  21
-151.02325299999995
+327.023253
  31
 0.0
   0
@@ -3103,13 +3103,13 @@ DOTTED
  10
 216.44717806890824
  20
-90.02325299999993
+266.023253
  30
 0.0
  11
 240.44717806890827
  21
-90.02325299999994
+266.023253
  31
 0.0
   0
@@ -3121,13 +3121,13 @@ LINE
  10
 180.3085560697229
  20
-151.0232529999999
+327.023253
  30
 0.0
  11
 216.44717806890822
  21
-151.02325299999995
+327.023253
  31
 0.0
   0
@@ -3139,13 +3139,13 @@ LINE
  10
 180.30855606972295
  20
-90.02325299999991
+266.023253
  30
 0.0
  11
 180.3085560697229
  21
-151.0232529999999
+327.023253
  31
 0.0
   0
@@ -3157,13 +3157,13 @@ LINE
  10
 216.44717806890824
  20
-90.02325299999993
+266.023253
  30
 0.0
  11
 180.30855606972295
  21
-90.02325299999991
+266.023253
  31
 0.0
   0
@@ -3175,13 +3175,13 @@ LINE
  10
 216.44717806890824
  20
-80.02325299999991
+256.02325299999995
  30
 0.0
  11
 216.44717806890824
  21
-90.02325299999994
+266.023253
  31
 0.0
   0
@@ -3193,13 +3193,13 @@ LINE
  10
 240.44717806890824
  20
-80.02325299999993
+256.02325299999995
  30
 0.0
  11
 216.44717806890824
  21
-80.02325299999991
+256.02325299999995
  31
 0.0
   0
@@ -3211,13 +3211,13 @@ LINE
  10
 240.44717806890824
  20
-90.02325299999994
+266.023253
  30
 0.0
  11
 240.44717806890824
  21
-80.02325299999993
+256.02325299999995
  31
 0.0
   0
@@ -3229,13 +3229,13 @@ LINE
  10
 240.44717806890822
  20
-161.02325299999998
+337.02325300000007
  30
 0.0
  11
 240.44717806890822
  21
-151.02325299999998
+327.02325300000007
  31
 0.0
   0
@@ -3247,13 +3247,13 @@ LINE
  10
 216.44717806890822
  20
-161.02325299999995
+337.023253
  30
 0.0
  11
 240.44717806890822
  21
-161.02325299999998
+337.02325300000007
  31
 0.0
   0
@@ -3265,13 +3265,13 @@ LINE
  10
 216.44717806890822
  20
-151.02325299999995
+327.023253
  30
 0.0
  11
 216.44717806890822
  21
-161.02325299999995
+337.023253
  31
 0.0
   0
@@ -3281,15 +3281,15 @@ LINE
   8
 0
  10
-364.5978792657871
+364.59787926578724
  20
-21.798749986471112
+21.79874998647114
  30
 0.0
  11
-347.31195656413337
+347.3119565641334
  21
-26.83554947792412
+26.835549477924136
  31
 0.0
   0
@@ -3299,15 +3299,15 @@ LINE
   8
 0
  10
-347.31195656413337
+347.3119565641334
  20
-26.83554947792412
+26.835549477924136
  30
 0.0
  11
-347.17208269125956
+347.1720826912596
  21
-26.355512708824836
+26.35551270882485
  31
 0.0
   0
@@ -3317,15 +3317,15 @@ LINE
   8
 0
  10
-347.17208269125956
+347.1720826912596
  20
-26.355512708824836
+26.35551270882485
  30
 0.0
  11
-364.4580053929133
+364.4580053929134
  21
-21.318713217371826
+21.318713217371794
  31
 0.0
   0
@@ -3335,15 +3335,15 @@ LINE
   8
 0
  10
-364.4580053929133
+364.4580053929134
  20
-21.318713217371826
+21.318713217371794
  30
 0.0
  11
-364.5978792657871
+364.59787926578724
  21
-21.798749986471112
+21.79874998647114
  31
 0.0
   0
@@ -3353,13 +3353,13 @@ LINE
   8
 0
  10
-263.45720736355315
+263.45720736355327
  20
-51.01367245455889
+51.0136724545589
  30
 0.0
  11
-272.2096024999135
+272.2096024999136
  21
 51.0136724545589
  31
@@ -3371,13 +3371,13 @@ LINE
   8
 0
  10
-272.2096024999135
+272.2096024999136
  20
 51.0136724545589
  30
 0.0
  11
-272.20960249991344
+272.20960249991356
  21
 68.51846272727943
  31
@@ -3389,15 +3389,15 @@ LINE
   8
 0
  10
-272.20960249991344
+272.20960249991356
  20
 68.51846272727943
  30
 0.0
  11
-263.45720736355315
+263.45720736355327
  21
-68.51846272727941
+68.51846272727943
  31
 0.0
   0
@@ -3407,15 +3407,15 @@ LINE
   8
 0
  10
-347.3119565641332
+347.31195656413314
  20
-275.210956522076
+627.2109565220761
  30
 0.0
  11
-364.597879265787
+364.5978792657869
  21
-280.247756013529
+632.2477560135293
  31
 0.0
   0
@@ -3425,15 +3425,15 @@ LINE
   8
 0
  10
-364.597879265787
+364.5978792657869
  20
-280.247756013529
+632.2477560135293
  30
 0.0
  11
-364.45800539291315
+364.4580053929131
  21
-280.7277927826283
+632.7277927826285
  31
 0.0
   0
@@ -3443,15 +3443,15 @@ LINE
   8
 0
  10
-364.45800539291315
+364.4580053929131
  20
-280.7277927826283
+632.7277927826285
  30
 0.0
  11
-347.1720826912594
+347.1720826912593
  21
-275.69099329117523
+627.6909932911755
  31
 0.0
   0
@@ -3461,15 +3461,15 @@ LINE
   8
 0
  10
-347.1720826912594
+347.1720826912593
  20
-275.69099329117523
+627.6909932911755
  30
 0.0
  11
-347.3119565641332
+347.31195656413314
  21
-275.210956522076
+627.2109565220761
  31
 0.0
   0
@@ -3479,15 +3479,15 @@ LINE
   8
 0
  10
-418.5737208703999
+418.57372087039977
  20
-280.2477560135291
+632.2477560135293
  30
 0.0
  11
-435.8596435720537
+435.8596435720536
  21
-275.2109565220761
+627.2109565220762
  31
 0.0
   0
@@ -3497,15 +3497,15 @@ LINE
   8
 0
  10
-435.8596435720537
+435.8596435720536
  20
-275.2109565220761
+627.2109565220762
  30
 0.0
  11
-435.9995174449275
+435.9995174449274
  21
-275.69099329117535
+627.6909932911755
  31
 0.0
   0
@@ -3515,15 +3515,15 @@ LINE
   8
 0
  10
-435.9995174449275
+435.9995174449274
  20
-275.69099329117535
+627.6909932911755
  30
 0.0
  11
-418.7135947432737
+418.7135947432736
  21
-280.72779278262834
+632.7277927826285
  31
 0.0
   0
@@ -3533,15 +3533,15 @@ LINE
   8
 0
  10
-418.7135947432737
+418.7135947432736
  20
-280.72779278262834
+632.7277927826285
  30
 0.0
  11
-418.5737208703999
+418.57372087039977
  21
-280.2477560135291
+632.2477560135293
  31
 0.0
   0
@@ -3551,15 +3551,15 @@ LINE
   8
 0
  10
-519.7143927726339
+519.7143927726338
  20
-251.0328335454414
+603.0328335454415
  30
 0.0
  11
-510.9619976362736
+510.9619976362735
  21
-251.03283354544138
+603.0328335454415
  31
 0.0
   0
@@ -3569,15 +3569,15 @@ LINE
   8
 0
  10
-510.9619976362736
+510.9619976362735
  20
-251.03283354544138
+603.0328335454415
  30
 0.0
  11
-510.9619976362736
+510.96199763627357
  21
-233.52804327272085
+585.528043272721
  31
 0.0
   0
@@ -3587,15 +3587,15 @@ LINE
   8
 0
  10
-510.9619976362736
+510.96199763627357
  20
-233.52804327272085
+585.528043272721
  30
 0.0
  11
 519.7143927726339
  21
-233.52804327272088
+585.528043272721
  31
 0.0
   0
@@ -3605,13 +3605,13 @@ LINE
   8
 0
  10
-435.85964357205415
+435.85964357205467
  20
 26.835549477924193
  30
 0.0
  11
-418.57372087040034
+418.5737208704009
  21
 21.79874998647114
  31
@@ -3623,13 +3623,13 @@ LINE
   8
 0
  10
-418.57372087040034
+418.5737208704009
  20
 21.79874998647114
  30
 0.0
  11
-418.7135947432742
+418.7135947432747
  21
 21.318713217371855
  31
@@ -3641,15 +3641,15 @@ LINE
   8
 0
  10
-418.7135947432742
+418.7135947432747
  20
 21.318713217371855
  30
 0.0
  11
-435.99951744492796
+435.99951744492853
  21
-26.35551270882492
+26.355512708824907
  31
 0.0
   0
@@ -3659,13 +3659,13 @@ LINE
   8
 0
  10
-435.99951744492796
+435.99951744492853
  20
-26.35551270882492
+26.355512708824907
  30
 0.0
  11
-435.85964357205415
+435.85964357205467
  21
 26.835549477924193
  31
@@ -3677,15 +3677,15 @@ LINE
   8
 0
  10
-519.7143927726343
+519.7143927726348
  20
-68.51846272727978
+68.51846272727973
  30
 0.0
  11
-510.9619976362739
+510.9619976362745
  21
-68.51846272727977
+68.51846272727973
  31
 0.0
   0
@@ -3695,15 +3695,15 @@ LINE
   8
 0
  10
-510.9619976362739
+510.9619976362745
  20
-68.51846272727977
+68.51846272727973
  30
 0.0
  11
-510.96199763627396
+510.96199763627453
  21
-51.013672454559234
+51.01367245455919
  31
 0.0
   0
@@ -3713,15 +3713,15 @@ LINE
   8
 0
  10
-510.96199763627396
+510.96199763627453
  20
-51.013672454559234
+51.01367245455919
  30
 0.0
  11
-519.7143927726343
+519.7143927726348
  21
-51.01367245455925
+51.01367245455919
  31
 0.0
   0
@@ -3731,15 +3731,15 @@ LINE
   8
 0
  10
-498.83580006809365
+498.8358000680938
  20
-173.45507118181848
+349.4550711818184
  30
 0.0
  11
-498.83580006809365
+498.8358000680938
  21
-161.8641620909094
+337.8641620909094
  31
 0.0
   0
@@ -3749,15 +3749,15 @@ LINE
   8
 0
  10
-498.83580006809365
+498.8358000680938
  20
-161.8641620909094
+337.8641620909094
  30
 0.0
  11
-499.33580006809365
+499.3358000680938
  21
-161.8641620909094
+337.8641620909095
  31
 0.0
   0
@@ -3767,15 +3767,15 @@ LINE
   8
 0
  10
-499.33580006809365
+499.3358000680938
  20
-161.8641620909094
+337.8641620909095
  30
 0.0
  11
-499.33580006809365
+499.3358000680938
  21
-173.45507118181848
+349.4550711818185
  31
 0.0
   0
@@ -3785,15 +3785,15 @@ LINE
   8
 0
  10
-499.33580006809365
+499.3358000680938
  20
-173.45507118181848
+349.4550711818185
  30
 0.0
  11
-498.83580006809365
+498.8358000680938
  21
-173.45507118181848
+349.4550711818184
  31
 0.0
   0
@@ -3803,15 +3803,15 @@ LINE
   8
 0
  10
-498.83580006809353
+498.83580006809376
  20
-201.1823439090912
+377.18234390909123
  30
 0.0
  11
-498.83580006809365
+498.83580006809376
  21
-189.59143481818214
+365.5914348181821
  31
 0.0
   0
@@ -3821,15 +3821,15 @@ LINE
   8
 0
  10
-498.83580006809365
+498.83580006809376
  20
-189.59143481818214
+365.5914348181821
  30
 0.0
  11
-499.3358000680936
+499.33580006809376
  21
-189.59143481818214
+365.59143481818217
  31
 0.0
   0
@@ -3839,15 +3839,15 @@ LINE
   8
 0
  10
-499.3358000680936
+499.33580006809376
  20
-189.59143481818214
+365.59143481818217
  30
 0.0
  11
-499.33580006809353
+499.33580006809376
  21
-201.1823439090912
+377.1823439090913
  31
 0.0
   0
@@ -3857,15 +3857,15 @@ LINE
   8
 0
  10
-499.33580006809353
+499.33580006809376
  20
-201.1823439090912
+377.1823439090913
  30
 0.0
  11
-498.83580006809353
+498.83580006809376
  21
-201.1823439090912
+377.18234390909123
  31
 0.0
   0
@@ -3875,15 +3875,15 @@ LINE
   8
 0
  10
-514.0858000680936
+514.0858000680939
  20
-139.93234390909123
+315.9323439090912
  30
 0.0
  11
-509.08580006809365
+509.0858000680939
  21
-139.93234390909123
+315.9323439090912
  31
 0.0
   0
@@ -3893,15 +3893,15 @@ LINE
   8
 0
  10
-509.08580006809365
+509.0858000680939
  20
-139.93234390909123
+315.9323439090912
  30
 0.0
  11
-509.0858000680937
+509.0858000680939
  21
-128.8414348181821
+304.84143481818217
  31
 0.0
   0
@@ -3911,15 +3911,15 @@ LINE
   8
 0
  10
-509.0858000680937
+509.0858000680939
  20
-128.8414348181821
+304.84143481818217
  30
 0.0
  11
-514.0858000680936
+514.0858000680939
  21
-128.8414348181821
+304.84143481818217
  31
 0.0
   0
@@ -3929,15 +3929,15 @@ LINE
   8
 0
  10
-514.0858000680938
+514.085800068094
  20
-112.20507118181847
+288.20507118181854
  30
 0.0
  11
-509.0858000680937
+509.08580006809393
  21
-112.20507118181847
+288.2050711818185
  31
 0.0
   0
@@ -3947,15 +3947,15 @@ LINE
   8
 0
  10
-509.0858000680937
+509.08580006809393
  20
-112.20507118181847
+288.2050711818185
  30
 0.0
  11
-509.08580006809376
+509.08580006809393
  21
-101.11416209090936
+277.11416209090936
  31
 0.0
   0
@@ -3965,15 +3965,15 @@ LINE
   8
 0
  10
-509.08580006809376
+509.08580006809393
  20
-101.11416209090936
+277.11416209090936
  30
 0.0
  11
-514.0858000680938
+514.085800068094
  21
-101.11416209090936
+277.11416209090936
  31
 0.0
   0
@@ -3983,15 +3983,15 @@ LINE
   8
 0
  10
-263.4572073635531
+263.457207363553
  20
-233.5280432727205
+585.5280432727208
  30
 0.0
  11
-272.2096024999134
+272.2096024999133
  21
-233.52804327272054
+585.5280432727208
  31
 0.0
   0
@@ -4001,15 +4001,15 @@ LINE
   8
 0
  10
-272.2096024999134
+272.2096024999133
  20
-233.52804327272054
+585.5280432727208
  30
 0.0
  11
-272.20960249991333
+272.2096024999133
  21
-251.03283354544106
+603.0328335454411
  31
 0.0
   0
@@ -4019,15 +4019,15 @@ LINE
   8
 0
  10
-272.20960249991333
+272.2096024999133
  20
-251.03283354544106
+603.0328335454411
  30
 0.0
  11
-263.4572073635531
+263.457207363553
  21
-251.03283354544104
+603.0328335454411
  31
 0.0
   0
@@ -4039,13 +4039,13 @@ LINE
  10
 284.33580006809353
  20
-189.59143481818182
+365.5914348181819
  30
 0.0
  11
 284.33580006809353
  21
-201.18234390909092
+377.182343909091
  31
 0.0
   0
@@ -4057,13 +4057,13 @@ LINE
  10
 284.33580006809353
  20
-201.18234390909092
+377.182343909091
  30
 0.0
  11
 283.83580006809353
  21
-201.18234390909092
+377.182343909091
  31
 0.0
   0
@@ -4075,13 +4075,13 @@ LINE
  10
 283.83580006809353
  20
-201.18234390909092
+377.182343909091
  30
 0.0
  11
 283.83580006809353
  21
-189.59143481818182
+365.5914348181819
  31
 0.0
   0
@@ -4093,13 +4093,13 @@ LINE
  10
 283.83580006809353
  20
-189.59143481818182
+365.5914348181819
  30
 0.0
  11
 284.33580006809353
  21
-189.59143481818182
+365.5914348181819
  31
 0.0
   0
@@ -4111,13 +4111,13 @@ LINE
  10
 284.33580006809353
  20
-161.86416209090908
+337.8641620909091
  30
 0.0
  11
 284.33580006809353
  21
-173.45507118181817
+349.45507118181825
  31
 0.0
   0
@@ -4129,13 +4129,13 @@ LINE
  10
 284.33580006809353
  20
-173.45507118181817
+349.45507118181825
  30
 0.0
  11
 283.83580006809353
  21
-173.45507118181817
+349.45507118181825
  31
 0.0
   0
@@ -4147,13 +4147,13 @@ LINE
  10
 283.83580006809353
  20
-173.45507118181817
+349.45507118181825
  30
 0.0
  11
 283.83580006809353
  21
-161.86416209090908
+337.8641620909091
  31
 0.0
   0
@@ -4165,13 +4165,13 @@ LINE
  10
 283.83580006809353
  20
-161.86416209090908
+337.8641620909091
  30
 0.0
  11
 284.33580006809353
  21
-161.86416209090908
+337.8641620909091
  31
 0.0
   0
@@ -4183,13 +4183,13 @@ LINE
  10
 221.94717806890824
  20
-133.02325299999995
+309.023253
  30
 0.0
  11
 221.94717806890824
  21
-122.02325299999994
+298.02325299999995
  31
 0.0
   0
@@ -4201,13 +4201,13 @@ LINE
  10
 221.94717806890824
  20
-122.02325299999994
+298.02325299999995
  30
 0.0
  11
 234.94717806890824
  21
-122.02325299999994
+298.02325299999995
  31
 0.0
   0
@@ -4219,13 +4219,13 @@ LINE
  10
 234.94717806890824
  20
-122.02325299999994
+298.02325299999995
  30
 0.0
  11
 234.94717806890824
  21
-133.02325299999995
+309.023253
  31
 0.0
   0
@@ -4237,13 +4237,13 @@ LINE
  10
 234.94717806890824
  20
-133.02325299999995
+309.023253
  30
 0.0
  11
 221.94717806890824
  21
-133.02325299999995
+309.023253
  31
 0.0
   0
@@ -4255,13 +4255,13 @@ LINE
  10
 223.44717806890822
  20
-101.52325299999994
+277.523253
  30
 0.0
  11
 223.44717806890824
  21
-95.52325299999994
+271.52325299999995
  31
 0.0
   0
@@ -4273,13 +4273,13 @@ LINE
  10
 223.44717806890824
  20
-95.52325299999994
+271.52325299999995
  30
 0.0
  11
 233.44717806890827
  21
-95.52325299999994
+271.52325299999995
  31
 0.0
   0
@@ -4291,13 +4291,13 @@ LINE
  10
 233.44717806890827
  20
-95.52325299999994
+271.52325299999995
  30
 0.0
  11
 233.44717806890824
  21
-101.52325299999994
+277.523253
  31
 0.0
   0
@@ -4309,13 +4309,13 @@ LINE
  10
 233.44717806890824
  20
-101.52325299999994
+277.523253
  30
 0.0
  11
 223.44717806890822
  21
-101.52325299999994
+277.523253
  31
 0.0
   0
@@ -4327,13 +4327,13 @@ LINE
  10
 188.05855606972293
  20
-128.5914348181817
+304.59143481818177
  30
 0.0
  11
 188.05855606972293
  21
-140.1823439090908
+316.1823439090909
  31
 0.0
   0
@@ -4345,13 +4345,13 @@ LINE
  10
 188.05855606972293
  20
-140.1823439090908
+316.1823439090909
  30
 0.0
  11
 187.55855606972293
  21
-140.1823439090908
+316.1823439090909
  31
 0.0
   0
@@ -4363,13 +4363,13 @@ LINE
  10
 187.55855606972293
  20
-140.1823439090908
+316.1823439090909
  30
 0.0
  11
 187.55855606972293
  21
-128.5914348181817
+304.59143481818177
  31
 0.0
   0
@@ -4381,13 +4381,13 @@ LINE
  10
 187.55855606972293
  20
-128.5914348181817
+304.59143481818177
  30
 0.0
  11
 188.05855606972293
  21
-128.5914348181817
+304.59143481818177
  31
 0.0
   0
@@ -4399,13 +4399,13 @@ LINE
  10
 188.05855606972293
  20
-100.864162090909
+276.8641620909091
  30
 0.0
  11
 188.05855606972293
  21
-112.45507118181808
+288.45507118181814
  31
 0.0
   0
@@ -4417,13 +4417,13 @@ LINE
  10
 188.05855606972293
  20
-112.45507118181808
+288.45507118181814
  30
 0.0
  11
 187.55855606972293
  21
-112.45507118181808
+288.45507118181814
  31
 0.0
   0
@@ -4435,13 +4435,13 @@ LINE
  10
 187.55855606972293
  20
-112.45507118181808
+288.45507118181814
  30
 0.0
  11
 187.55855606972293
  21
-100.864162090909
+276.8641620909091
  31
 0.0
   0
@@ -4453,13 +4453,13 @@ LINE
  10
 187.55855606972293
  20
-100.864162090909
+276.8641620909091
  30
 0.0
  11
 188.05855606972293
  21
-100.864162090909
+276.8641620909091
  31
 0.0
   0
@@ -4471,13 +4471,13 @@ LINE
  10
 232.44717806890824
  20
-82.52325299999994
+258.523253
  30
 0.0
  11
 232.44717806890824
  21
-87.52325299999994
+263.523253
  31
 0.0
   0
@@ -4489,13 +4489,13 @@ LINE
  10
 232.44717806890824
  20
-87.52325299999994
+263.523253
  30
 0.0
  11
 224.44717806890824
  21
-87.52325299999994
+263.523253
  31
 0.0
   0
@@ -4507,13 +4507,13 @@ LINE
  10
 224.44717806890824
  20
-87.52325299999994
+263.523253
  30
 0.0
  11
 224.44717806890824
  21
-82.52325299999991
+258.523253
  31
 0.0
   0
@@ -4525,13 +4525,13 @@ LINE
  10
 224.44717806890822
  20
-158.52325299999995
+334.52325299999995
  30
 0.0
  11
 224.44717806890822
  21
-153.52325299999995
+329.52325299999995
  31
 0.0
   0
@@ -4543,13 +4543,13 @@ LINE
  10
 224.44717806890822
  20
-153.52325299999995
+329.52325299999995
  30
 0.0
  11
 232.44717806890822
  21
-153.52325299999995
+329.52325299999995
  31
 0.0
   0
@@ -4561,13 +4561,13 @@ LINE
  10
 232.44717806890822
  20
-153.52325299999995
+329.52325299999995
  30
 0.0
  11
 232.44717806890822
  21
-158.52325299999998
+334.52325299999995
  31
 0.0
   0
@@ -4579,15 +4579,15 @@ DOTTED
   8
 0
  10
-543.0905903408144
+543.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4599,15 +4599,15 @@ DOTTED
   8
 0
  10
-604.0905903408143
+604.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4619,15 +4619,15 @@ DOTTED
   8
 0
  10
-604.0905903408143
+604.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4639,15 +4639,15 @@ DOTTED
   8
 0
  10
-543.0905903408144
+543.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4657,15 +4657,15 @@ LINE
   8
 0
  10
-543.0905903408144
+543.090590340815
  20
-132.023253
+308.02325300000007
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4675,15 +4675,15 @@ LINE
   8
 0
  10
-579.0905903408144
+579.090590340815
  20
-132.023253
+308.02325300000007
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-132.023253
+308.02325300000007
  31
 0.0
   0
@@ -4693,15 +4693,15 @@ LINE
   8
 0
  10
-579.0905903408144
+579.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-579.0905903408144
+579.090590340815
  21
-132.023253
+308.02325300000007
  31
 0.0
   0
@@ -4711,15 +4711,15 @@ LINE
   8
 0
  10
-611.0905903408143
+611.0905903408149
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4729,15 +4729,15 @@ LINE
   8
 0
  10
-611.0905903408143
+611.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-611.0905903408143
+611.0905903408149
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -4747,15 +4747,15 @@ LINE
   8
 0
  10
-604.0905903408143
+604.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-611.0905903408143
+611.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4767,15 +4767,15 @@ DOTTED
   8
 0
  10
-604.0905903408143
+604.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4785,15 +4785,15 @@ LINE
   8
 0
  10
-568.0905903408143
+568.090590340815
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4805,15 +4805,15 @@ DOTTED
   8
 0
  10
-568.0905903408143
+568.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-568.0905903408143
+568.090590340815
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4823,15 +4823,15 @@ LINE
   8
 0
  10
-628.0905903408144
+628.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-604.0905903408143
+604.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4843,15 +4843,15 @@ DOTTED
   8
 0
  10
-628.0905903408144
+628.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-628.0905903408144
+628.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4861,15 +4861,15 @@ LINE
   8
 0
  10
-604.0905903408143
+604.090590340815
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-628.0905903408144
+628.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4879,15 +4879,15 @@ LINE
   8
 0
  10
-664.0905903408144
+664.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-628.0905903408144
+628.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4897,15 +4897,15 @@ LINE
   8
 0
  10
-664.0905903408144
+664.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-664.0905903408144
+664.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4915,15 +4915,15 @@ LINE
   8
 0
  10
-628.0905903408144
+628.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-664.0905903408144
+664.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4933,15 +4933,15 @@ LINE
   8
 0
  10
-568.0905903408143
+568.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-544.0905903408144
+544.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4951,15 +4951,15 @@ LINE
   8
 0
  10
-544.0905903408144
+544.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-568.0905903408143
+568.090590340815
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -4971,15 +4971,15 @@ DOTTED
   8
 0
  10
-544.0905903408144
+544.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-544.0905903408144
+544.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -4989,15 +4989,15 @@ LINE
   8
 0
  10
-534.0905903408144
+534.0905903408149
  20
-224.02325300000004
+400.02325300000007
  30
 0.0
  11
-544.0905903408144
+544.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -5007,15 +5007,15 @@ LINE
   8
 0
  10
-534.0905903408144
+534.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-534.0905903408144
+534.0905903408149
  21
-224.02325300000004
+400.02325300000007
  31
 0.0
   0
@@ -5025,15 +5025,15 @@ LINE
   8
 0
  10
-544.0905903408144
+544.0905903408149
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-534.0905903408144
+534.0905903408149
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -5043,15 +5043,15 @@ LINE
   8
 0
  10
-536.0905903408143
+536.090590340815
  20
-163.02325300000004
+339.023253
  30
 0.0
  11
-543.0905903408144
+543.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -5061,15 +5061,15 @@ LINE
   8
 0
  10
-536.0905903408143
+536.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-536.0905903408143
+536.090590340815
  21
-163.02325300000004
+339.023253
  31
 0.0
   0
@@ -5079,15 +5079,15 @@ LINE
   8
 0
  10
-543.0905903408144
+543.090590340815
  20
-139.023253
+315.02325300000007
  30
 0.0
  11
-536.0905903408143
+536.090590340815
  21
-139.023253
+315.02325300000007
  31
 0.0
   0
@@ -5097,15 +5097,15 @@ LINE
   8
 0
  10
-567.0905903408143
+567.090590340815
  20
-133.77325300000004
+309.77325300000007
  30
 0.0
  11
-570.5905903408144
+570.590590340815
  21
-133.77325300000004
+309.77325300000007
  31
 0.0
   0
@@ -5115,15 +5115,15 @@ LINE
   8
 0
  10
-570.5905903408144
+570.590590340815
  20
-133.77325300000004
+309.77325300000007
  30
 0.0
  11
-567.0905903408143
+567.090590340815
  21
-137.27325300000004
+313.27325300000007
  31
 0.0
   0
@@ -5133,15 +5133,15 @@ LINE
   8
 0
  10
-567.0905903408143
+567.090590340815
  20
-137.27325300000004
+313.27325300000007
  30
 0.0
  11
-555.0905903408144
+555.0905903408149
  21
-137.27325300000004
+313.27325300000007
  31
 0.0
   0
@@ -5151,15 +5151,15 @@ LINE
   8
 0
  10
-555.0905903408144
+555.0905903408149
  20
-137.27325300000004
+313.27325300000007
  30
 0.0
  11
-551.5905903408144
+551.590590340815
  21
-133.77325300000004
+309.77325300000007
  31
 0.0
   0
@@ -5169,15 +5169,15 @@ LINE
   8
 0
  10
-551.5905903408144
+551.590590340815
  20
-133.77325300000004
+309.77325300000007
  30
 0.0
  11
-555.0905903408144
+555.0905903408149
  21
-133.77325300000004
+309.77325300000007
  31
 0.0
   0
@@ -5187,15 +5187,15 @@ LINE
   8
 0
  10
-609.3405903408144
+609.340590340815
  20
-155.023253
+331.02325300000007
  30
 0.0
  11
-605.8405903408143
+605.8405903408149
  21
-155.023253
+331.02325300000007
  31
 0.0
   0
@@ -5205,15 +5205,15 @@ LINE
   8
 0
  10
-605.8405903408143
+605.8405903408149
  20
-155.023253
+331.02325300000007
  30
 0.0
  11
-605.8405903408143
+605.8405903408149
  21
-147.02325300000004
+323.02325300000007
  31
 0.0
   0
@@ -5223,15 +5223,15 @@ LINE
   8
 0
  10
-605.8405903408143
+605.8405903408149
  20
-147.02325300000004
+323.02325300000007
  30
 0.0
  11
-609.3405903408144
+609.340590340815
  21
-147.02325300000004
+323.02325300000007
  31
 0.0
   0
@@ -5241,15 +5241,15 @@ LINE
   8
 0
  10
-581.2048760551
+581.2048760551007
  20
-217.77325300000004
+393.773253
  30
 0.0
  11
-581.2048760551
+581.2048760551007
  21
-199.77325300000004
+375.773253
  31
 0.0
   0
@@ -5259,15 +5259,15 @@ LINE
   8
 0
  10
-581.2048760551
+581.2048760551007
  20
-199.77325300000004
+375.773253
  30
 0.0
  11
-601.7763046265287
+601.7763046265293
  21
-199.77325300000004
+375.773253
  31
 0.0
   0
@@ -5277,15 +5277,15 @@ LINE
   8
 0
  10
-601.7763046265287
+601.7763046265293
  20
-199.77325300000004
+375.773253
  30
 0.0
  11
-601.7763046265287
+601.7763046265293
  21
-217.77325300000004
+393.773253
  31
 0.0
   0
@@ -5295,15 +5295,15 @@ LINE
   8
 0
  10
-601.7763046265287
+601.7763046265293
  20
-217.77325300000004
+393.773253
  30
 0.0
  11
-581.2048760551
+581.2048760551007
  21
-217.77325300000004
+393.773253
  31
 0.0
   0
@@ -5313,15 +5313,15 @@ LINE
   8
 0
  10
-604.5905903408143
+604.590590340815
  20
-176.27325300000004
+352.273253
  30
 0.0
  11
-604.5905903408143
+604.590590340815
  21
-173.27325300000004
+349.27325300000007
  31
 0.0
   0
@@ -5331,15 +5331,15 @@ LINE
   8
 0
  10
-604.5905903408143
+604.590590340815
  20
-173.27325300000004
+349.27325300000007
  30
 0.0
  11
-607.5905903408144
+607.590590340815
  21
-173.27325300000004
+349.27325300000007
  31
 0.0
   0
@@ -5349,15 +5349,15 @@ LINE
   8
 0
  10
-607.5905903408144
+607.590590340815
  20
-173.27325300000004
+349.27325300000007
  30
 0.0
  11
-607.5905903408144
+607.590590340815
  21
-176.27325300000004
+352.273253
  31
 0.0
   0
@@ -5367,15 +5367,15 @@ LINE
   8
 0
  10
-607.5905903408144
+607.590590340815
  20
-176.27325300000004
+352.273253
  30
 0.0
  11
-604.5905903408143
+604.590590340815
  21
-176.27325300000004
+352.273253
  31
 0.0
   0
@@ -5385,15 +5385,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-175.273253
+351.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -5403,15 +5403,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -5421,15 +5421,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-175.273253
+351.27325300000007
  31
 0.0
   0
@@ -5439,15 +5439,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-175.273253
+351.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-175.273253
+351.27325300000007
  31
 0.0
   0
@@ -5457,15 +5457,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -5475,15 +5475,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -5493,15 +5493,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -5511,15 +5511,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -5529,15 +5529,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -5547,15 +5547,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -5565,15 +5565,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -5583,15 +5583,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -5601,15 +5601,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -5619,15 +5619,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -5637,15 +5637,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -5655,15 +5655,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -5673,15 +5673,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -5691,15 +5691,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -5709,15 +5709,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -5727,15 +5727,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -5745,15 +5745,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -5763,15 +5763,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-181.773253
+357.773253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -5781,15 +5781,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-181.773253
+357.773253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -5799,15 +5799,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -5817,15 +5817,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -5835,15 +5835,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-181.773253
+357.773253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -5853,15 +5853,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-181.773253
+357.773253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -5871,15 +5871,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -5889,15 +5889,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -5907,15 +5907,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -5925,15 +5925,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -5943,15 +5943,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -5961,15 +5961,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -5979,15 +5979,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -5997,15 +5997,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -6015,15 +6015,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -6033,15 +6033,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -6051,15 +6051,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -6069,15 +6069,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -6087,15 +6087,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -6105,15 +6105,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -6123,15 +6123,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -6141,15 +6141,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -6159,15 +6159,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -6177,15 +6177,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -6195,15 +6195,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -6213,15 +6213,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -6231,15 +6231,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -6249,15 +6249,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -6267,15 +6267,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -6285,15 +6285,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -6303,15 +6303,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -6321,15 +6321,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -6339,15 +6339,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -6357,15 +6357,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -6375,15 +6375,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -6393,15 +6393,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -6411,15 +6411,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -6429,15 +6429,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -6447,15 +6447,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -6465,15 +6465,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -6483,15 +6483,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -6501,15 +6501,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -6519,15 +6519,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -6537,15 +6537,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -6555,15 +6555,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -6573,15 +6573,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -6591,15 +6591,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -6609,15 +6609,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -6627,15 +6627,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -6645,15 +6645,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -6663,15 +6663,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -6681,15 +6681,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -6699,15 +6699,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -6717,15 +6717,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -6735,15 +6735,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -6753,15 +6753,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -6771,15 +6771,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -6789,15 +6789,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -6807,15 +6807,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -6825,15 +6825,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -6843,15 +6843,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -6861,15 +6861,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -6879,15 +6879,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -6897,15 +6897,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -6915,15 +6915,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -6933,15 +6933,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -6951,15 +6951,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -6969,15 +6969,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -6987,15 +6987,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -7005,15 +7005,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -7023,15 +7023,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -7041,15 +7041,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -7059,15 +7059,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -7077,15 +7077,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -7095,15 +7095,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -7113,15 +7113,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -7131,15 +7131,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -7149,15 +7149,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -7167,15 +7167,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -7185,15 +7185,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -7203,15 +7203,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -7221,15 +7221,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -7239,15 +7239,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -7257,15 +7257,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -7275,15 +7275,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -7293,15 +7293,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -7311,15 +7311,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -7329,15 +7329,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -7347,15 +7347,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -7365,15 +7365,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -7383,15 +7383,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -7401,15 +7401,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -7419,15 +7419,15 @@ LINE
   8
 0
  10
-625.5905903408144
+625.590590340815
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -7437,15 +7437,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-626.5905903408144
+626.5905903408149
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -7455,15 +7455,15 @@ LINE
   8
 0
  10
-626.5905903408144
+626.5905903408149
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-625.5905903408144
+625.590590340815
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -7473,15 +7473,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-212.77325300000004
+388.773253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-211.77325300000004
+387.77325300000007
  31
 0.0
   0
@@ -7491,15 +7491,15 @@ LINE
   8
 0
  10
-605.5905903408144
+605.590590340815
  20
-211.77325300000004
+387.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-211.77325300000004
+387.77325300000007
  31
 0.0
   0
@@ -7509,15 +7509,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-211.77325300000004
+387.77325300000007
  30
 0.0
  11
-606.5905903408144
+606.590590340815
  21
-212.77325300000004
+388.773253
  31
 0.0
   0
@@ -7527,15 +7527,15 @@ LINE
   8
 0
  10
-606.5905903408144
+606.590590340815
  20
-212.77325300000004
+388.773253
  30
 0.0
  11
-605.5905903408144
+605.590590340815
  21
-212.77325300000004
+388.773253
  31
 0.0
   0
@@ -7545,15 +7545,15 @@ LINE
   8
 0
  10
-624.5905903408144
+624.590590340815
  20
-213.773253
+389.77325300000007
  30
 0.0
  11
-624.5905903408144
+624.590590340815
  21
-210.77325300000004
+386.77325300000007
  31
 0.0
   0
@@ -7563,15 +7563,15 @@ LINE
   8
 0
  10
-624.5905903408144
+624.590590340815
  20
-210.77325300000004
+386.77325300000007
  30
 0.0
  11
-627.5905903408144
+627.5905903408149
  21
-210.77325300000004
+386.77325300000007
  31
 0.0
   0
@@ -7581,15 +7581,15 @@ LINE
   8
 0
  10
-627.5905903408144
+627.5905903408149
  20
-210.77325300000004
+386.77325300000007
  30
 0.0
  11
-627.5905903408144
+627.5905903408149
  21
-213.773253
+389.77325300000007
  31
 0.0
   0
@@ -7599,15 +7599,15 @@ LINE
   8
 0
  10
-627.5905903408144
+627.5905903408149
  20
-213.773253
+389.77325300000007
  30
 0.0
  11
-624.5905903408144
+624.590590340815
  21
-213.773253
+389.77325300000007
  31
 0.0
   0
@@ -7617,15 +7617,15 @@ LINE
   8
 0
  10
-620.3405903408144
+620.340590340815
  20
-170.773253
+346.77325300000007
  30
 0.0
  11
-611.8405903408144
+611.840590340815
  21
-170.773253
+346.77325300000007
  31
 0.0
   0
@@ -7635,15 +7635,15 @@ LINE
   8
 0
  10
-611.8405903408144
+611.840590340815
  20
-170.773253
+346.77325300000007
  30
 0.0
  11
-611.8405903408144
+611.840590340815
  21
-170.27325300000004
+346.27325300000007
  31
 0.0
   0
@@ -7653,15 +7653,15 @@ LINE
   8
 0
  10
-611.8405903408144
+611.840590340815
  20
-170.27325300000004
+346.27325300000007
  30
 0.0
  11
-620.3405903408144
+620.340590340815
  21
-170.27325300000004
+346.27325300000007
  31
 0.0
   0
@@ -7671,15 +7671,15 @@ LINE
   8
 0
  10
-620.3405903408144
+620.340590340815
  20
-170.27325300000004
+346.27325300000007
  30
 0.0
  11
-620.3405903408144
+620.340590340815
  21
-170.773253
+346.77325300000007
  31
 0.0
   0
@@ -7689,15 +7689,15 @@ LINE
   8
 0
  10
-611.8405903408144
+611.840590340815
  20
-218.523253
+394.52325300000007
  30
 0.0
  11
-620.3405903408144
+620.340590340815
  21
-218.523253
+394.52325300000007
  31
 0.0
   0
@@ -7707,15 +7707,15 @@ LINE
   8
 0
  10
-620.3405903408144
+620.340590340815
  20
-218.523253
+394.52325300000007
  30
 0.0
  11
-620.3405903408144
+620.340590340815
  21
-219.02325300000004
+395.02325300000007
  31
 0.0
   0
@@ -7725,15 +7725,15 @@ LINE
   8
 0
  10
-620.3405903408144
+620.340590340815
  20
-219.02325300000004
+395.02325300000007
  30
 0.0
  11
-611.8405903408144
+611.840590340815
  21
-219.02325300000004
+395.02325300000007
  31
 0.0
   0
@@ -7743,15 +7743,15 @@ LINE
   8
 0
  10
-611.8405903408144
+611.840590340815
  20
-219.02325300000004
+395.02325300000007
  30
 0.0
  11
-611.8405903408144
+611.840590340815
  21
-218.523253
+394.52325300000007
  31
 0.0
   0
@@ -7761,15 +7761,15 @@ LINE
   8
 0
  10
-633.6448760551
+633.6448760551007
  20
-219.54325300000002
+395.54325300000005
  30
 0.0
  11
-633.6448760551
+633.6448760551007
  21
-206.54325300000002
+382.54325300000005
  31
 0.0
   0
@@ -7779,15 +7779,15 @@ LINE
   8
 0
  10
-633.6448760551
+633.6448760551007
  20
-206.54325300000002
+382.54325300000005
  30
 0.0
  11
-654.2163046265287
+654.2163046265292
  21
-206.54325300000002
+382.54325300000005
  31
 0.0
   0
@@ -7797,15 +7797,15 @@ LINE
   8
 0
  10
-654.2163046265287
+654.2163046265292
  20
-206.54325300000002
+382.54325300000005
  30
 0.0
  11
-654.2163046265287
+654.2163046265292
  21
-219.54325300000002
+395.54325300000005
  31
 0.0
   0
@@ -7815,15 +7815,15 @@ LINE
   8
 0
  10
-654.2163046265287
+654.2163046265292
  20
-219.54325300000002
+395.54325300000005
  30
 0.0
  11
-633.6448760551
+633.6448760551007
  21
-219.54325300000002
+395.54325300000005
  31
 0.0
   0
@@ -7833,15 +7833,15 @@ LINE
   8
 0
  10
-652.3405903408143
+652.340590340815
  20
-168.523253
+344.52325300000007
  30
 0.0
  11
-639.8405903408144
+639.8405903408149
  21
-168.523253
+344.52325300000007
  31
 0.0
   0
@@ -7851,15 +7851,15 @@ LINE
   8
 0
  10
-639.8405903408144
+639.8405903408149
  20
-168.523253
+344.52325300000007
  30
 0.0
  11
-639.8405903408144
+639.8405903408149
  21
-168.023253
+344.023253
  31
 0.0
   0
@@ -7869,15 +7869,15 @@ LINE
   8
 0
  10
-639.8405903408144
+639.8405903408149
  20
-168.023253
+344.023253
  30
 0.0
  11
-652.3405903408143
+652.340590340815
  21
-168.023253
+344.023253
  31
 0.0
   0
@@ -7887,15 +7887,15 @@ LINE
   8
 0
  10
-652.3405903408143
+652.340590340815
  20
-168.023253
+344.023253
  30
 0.0
  11
-652.3405903408143
+652.340590340815
  21
-168.523253
+344.52325300000007
  31
 0.0
   0
@@ -7905,15 +7905,15 @@ LINE
   8
 0
  10
-656.3405903408144
+656.340590340815
  20
-185.45507118181823
+361.45507118181825
  30
 0.0
  11
-656.3405903408144
+656.340590340815
  21
-173.8641620909091
+349.86416209090913
  31
 0.0
   0
@@ -7923,15 +7923,15 @@ LINE
   8
 0
  10
-656.3405903408144
+656.340590340815
  20
-173.8641620909091
+349.86416209090913
  30
 0.0
  11
-656.8405903408144
+656.840590340815
  21
-173.8641620909091
+349.86416209090913
  31
 0.0
   0
@@ -7941,15 +7941,15 @@ LINE
   8
 0
  10
-656.8405903408144
+656.840590340815
  20
-173.8641620909091
+349.86416209090913
  30
 0.0
  11
-656.8405903408144
+656.840590340815
  21
-185.45507118181823
+361.45507118181825
  31
 0.0
   0
@@ -7959,15 +7959,15 @@ LINE
   8
 0
  10
-656.8405903408144
+656.840590340815
  20
-185.45507118181823
+361.45507118181825
  30
 0.0
  11
-656.3405903408144
+656.340590340815
  21
-185.45507118181823
+361.45507118181825
  31
 0.0
   0
@@ -7977,15 +7977,15 @@ LINE
   8
 0
  10
-656.3405903408144
+656.340590340815
  20
-213.18234390909095
+389.182343909091
  30
 0.0
  11
-656.3405903408144
+656.340590340815
  21
-201.59143481818185
+377.5914348181818
  31
 0.0
   0
@@ -7995,15 +7995,15 @@ LINE
   8
 0
  10
-656.3405903408144
+656.340590340815
  20
-201.59143481818185
+377.5914348181818
  30
 0.0
  11
-656.8405903408144
+656.840590340815
  21
-201.59143481818185
+377.5914348181818
  31
 0.0
   0
@@ -8013,15 +8013,15 @@ LINE
   8
 0
  10
-656.8405903408144
+656.840590340815
  20
-201.59143481818185
+377.5914348181818
  30
 0.0
  11
-656.8405903408144
+656.840590340815
  21
-213.18234390909095
+389.182343909091
  31
 0.0
   0
@@ -8031,15 +8031,15 @@ LINE
   8
 0
  10
-656.8405903408144
+656.840590340815
  20
-213.18234390909095
+389.182343909091
  30
 0.0
  11
-656.3405903408144
+656.340590340815
  21
-213.18234390909095
+389.182343909091
  31
 0.0
   0
@@ -8049,15 +8049,15 @@ LINE
   8
 0
  10
-544.5905903408144
+544.5905903408149
  20
-176.27325300000004
+352.273253
  30
 0.0
  11
-544.5905903408144
+544.5905903408149
  21
-173.27325300000004
+349.27325300000007
  31
 0.0
   0
@@ -8067,15 +8067,15 @@ LINE
   8
 0
  10
-544.5905903408144
+544.5905903408149
  20
-173.27325300000004
+349.27325300000007
  30
 0.0
  11
-547.5905903408143
+547.5905903408149
  21
-173.27325300000004
+349.27325300000007
  31
 0.0
   0
@@ -8085,15 +8085,15 @@ LINE
   8
 0
  10
-547.5905903408143
+547.5905903408149
  20
-173.27325300000004
+349.27325300000007
  30
 0.0
  11
-547.5905903408143
+547.5905903408149
  21
-176.27325300000004
+352.273253
  31
 0.0
   0
@@ -8103,15 +8103,15 @@ LINE
   8
 0
  10
-547.5905903408143
+547.5905903408149
  20
-176.27325300000004
+352.273253
  30
 0.0
  11
-544.5905903408144
+544.5905903408149
  21
-176.27325300000004
+352.273253
  31
 0.0
   0
@@ -8121,15 +8121,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-175.273253
+351.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -8139,15 +8139,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-174.27325300000004
+350.27325300000007
  31
 0.0
   0
@@ -8157,15 +8157,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-174.27325300000004
+350.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-175.273253
+351.27325300000007
  31
 0.0
   0
@@ -8175,15 +8175,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-175.273253
+351.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-175.273253
+351.27325300000007
  31
 0.0
   0
@@ -8193,15 +8193,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -8211,15 +8211,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -8229,15 +8229,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -8247,15 +8247,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -8265,15 +8265,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -8283,15 +8283,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-176.77325300000004
+352.773253
  31
 0.0
   0
@@ -8301,15 +8301,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-176.77325300000004
+352.773253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -8319,15 +8319,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-177.773253
+353.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-177.773253
+353.77325300000007
  31
 0.0
   0
@@ -8337,15 +8337,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -8355,15 +8355,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -8373,15 +8373,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -8391,15 +8391,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -8409,15 +8409,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -8427,15 +8427,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-179.27325300000004
+355.27325300000007
  31
 0.0
   0
@@ -8445,15 +8445,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-179.27325300000004
+355.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -8463,15 +8463,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-180.27325300000004
+356.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-180.27325300000004
+356.27325300000007
  31
 0.0
   0
@@ -8481,15 +8481,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -8499,15 +8499,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-181.773253
+357.773253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -8517,15 +8517,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-181.773253
+357.773253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -8535,15 +8535,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -8553,15 +8553,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -8571,15 +8571,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-181.773253
+357.773253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-181.773253
+357.773253
  31
 0.0
   0
@@ -8589,15 +8589,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-181.773253
+357.773253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -8607,15 +8607,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-182.77325300000004
+358.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-182.77325300000004
+358.77325300000007
  31
 0.0
   0
@@ -8625,15 +8625,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -8643,15 +8643,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -8661,15 +8661,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -8679,15 +8679,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -8697,15 +8697,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -8715,15 +8715,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-184.273253
+360.27325300000007
  31
 0.0
   0
@@ -8733,15 +8733,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-184.273253
+360.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -8751,15 +8751,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-185.27325300000004
+361.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-185.27325300000004
+361.273253
  31
 0.0
   0
@@ -8769,15 +8769,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -8787,15 +8787,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -8805,15 +8805,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -8823,15 +8823,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -8841,15 +8841,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -8859,15 +8859,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-186.773253
+362.77325300000007
  31
 0.0
   0
@@ -8877,15 +8877,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-186.773253
+362.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -8895,15 +8895,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-187.77325300000004
+363.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-187.77325300000004
+363.77325300000007
  31
 0.0
   0
@@ -8913,15 +8913,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -8931,15 +8931,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -8949,15 +8949,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -8967,15 +8967,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -8985,15 +8985,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -9003,15 +9003,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-189.27325300000004
+365.27325300000007
  31
 0.0
   0
@@ -9021,15 +9021,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-189.27325300000004
+365.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -9039,15 +9039,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-190.27325300000004
+366.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-190.27325300000004
+366.273253
  31
 0.0
   0
@@ -9057,15 +9057,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -9075,15 +9075,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -9093,15 +9093,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -9111,15 +9111,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -9129,15 +9129,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -9147,15 +9147,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-191.77325300000004
+367.77325300000007
  31
 0.0
   0
@@ -9165,15 +9165,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-191.77325300000004
+367.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -9183,15 +9183,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-192.77325300000004
+368.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-192.77325300000004
+368.77325300000007
  31
 0.0
   0
@@ -9201,15 +9201,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -9219,15 +9219,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -9237,15 +9237,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -9255,15 +9255,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -9273,15 +9273,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -9291,15 +9291,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-194.27325300000004
+370.27325300000007
  31
 0.0
   0
@@ -9309,15 +9309,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-194.27325300000004
+370.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -9327,15 +9327,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-195.27325300000004
+371.273253
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-195.27325300000004
+371.273253
  31
 0.0
   0
@@ -9345,15 +9345,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -9363,15 +9363,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -9381,15 +9381,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -9399,15 +9399,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -9417,15 +9417,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -9435,15 +9435,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-196.77325300000004
+372.77325300000007
  31
 0.0
   0
@@ -9453,15 +9453,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-196.77325300000004
+372.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -9471,15 +9471,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-197.773253
+373.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-197.773253
+373.77325300000007
  31
 0.0
   0
@@ -9489,15 +9489,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -9507,15 +9507,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -9525,15 +9525,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -9543,15 +9543,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -9561,15 +9561,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -9579,15 +9579,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-199.27325300000004
+375.273253
  31
 0.0
   0
@@ -9597,15 +9597,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-199.27325300000004
+375.273253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -9615,15 +9615,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-200.273253
+376.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-200.273253
+376.27325300000007
  31
 0.0
   0
@@ -9633,15 +9633,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -9651,15 +9651,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -9669,15 +9669,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -9687,15 +9687,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -9705,15 +9705,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -9723,15 +9723,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-201.77325300000004
+377.77325300000007
  31
 0.0
   0
@@ -9741,15 +9741,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-201.77325300000004
+377.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -9759,15 +9759,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-202.77325300000004
+378.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-202.77325300000004
+378.77325300000007
  31
 0.0
   0
@@ -9777,15 +9777,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -9795,15 +9795,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -9813,15 +9813,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -9831,15 +9831,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -9849,15 +9849,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -9867,15 +9867,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-204.27325300000004
+380.273253
  31
 0.0
   0
@@ -9885,15 +9885,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-204.27325300000004
+380.273253
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -9903,15 +9903,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-205.27325300000004
+381.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-205.27325300000004
+381.27325300000007
  31
 0.0
   0
@@ -9921,15 +9921,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -9939,15 +9939,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -9957,15 +9957,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -9975,15 +9975,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -9993,15 +9993,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -10011,15 +10011,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-206.77325300000004
+382.77325300000007
  31
 0.0
   0
@@ -10029,15 +10029,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-206.77325300000004
+382.77325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -10047,15 +10047,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-207.77325300000004
+383.77325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-207.77325300000004
+383.77325300000007
  31
 0.0
   0
@@ -10065,15 +10065,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -10083,15 +10083,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -10101,15 +10101,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -10119,15 +10119,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -10137,15 +10137,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -10155,15 +10155,15 @@ LINE
   8
 0
  10
-565.5905903408143
+565.5905903408149
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-209.273253
+385.27325300000007
  31
 0.0
   0
@@ -10173,15 +10173,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-209.273253
+385.27325300000007
  30
 0.0
  11
-566.5905903408143
+566.590590340815
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -10191,15 +10191,15 @@ LINE
   8
 0
  10
-566.5905903408143
+566.590590340815
  20
-210.27325300000004
+386.27325300000007
  30
 0.0
  11
-565.5905903408143
+565.5905903408149
  21
-210.27325300000004
+386.27325300000007
  31
 0.0
   0
@@ -10209,15 +10209,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-212.77325300000004
+388.773253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-211.77325300000004
+387.77325300000007
  31
 0.0
   0
@@ -10227,15 +10227,15 @@ LINE
   8
 0
  10
-545.5905903408144
+545.5905903408149
  20
-211.77325300000004
+387.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-211.77325300000004
+387.77325300000007
  31
 0.0
   0
@@ -10245,15 +10245,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-211.77325300000004
+387.77325300000007
  30
 0.0
  11
-546.5905903408143
+546.5905903408149
  21
-212.77325300000004
+388.773253
  31
 0.0
   0
@@ -10263,15 +10263,15 @@ LINE
   8
 0
  10
-546.5905903408143
+546.5905903408149
  20
-212.77325300000004
+388.773253
  30
 0.0
  11
-545.5905903408144
+545.5905903408149
  21
-212.77325300000004
+388.773253
  31
 0.0
   0
@@ -10281,15 +10281,15 @@ LINE
   8
 0
  10
-564.5905903408143
+564.5905903408149
  20
-213.773253
+389.77325300000007
  30
 0.0
  11
-564.5905903408143
+564.5905903408149
  21
-210.77325300000004
+386.77325300000007
  31
 0.0
   0
@@ -10299,15 +10299,15 @@ LINE
   8
 0
  10
-564.5905903408143
+564.5905903408149
  20
-210.77325300000004
+386.77325300000007
  30
 0.0
  11
-567.5905903408143
+567.590590340815
  21
-210.77325300000004
+386.77325300000007
  31
 0.0
   0
@@ -10317,15 +10317,15 @@ LINE
   8
 0
  10
-567.5905903408143
+567.590590340815
  20
-210.77325300000004
+386.77325300000007
  30
 0.0
  11
-567.5905903408143
+567.590590340815
  21
-213.773253
+389.77325300000007
  31
 0.0
   0
@@ -10335,15 +10335,15 @@ LINE
   8
 0
  10
-567.5905903408143
+567.590590340815
  20
-213.773253
+389.77325300000007
  30
 0.0
  11
-564.5905903408143
+564.5905903408149
  21
-213.773253
+389.77325300000007
  31
 0.0
   0
@@ -10353,15 +10353,15 @@ LINE
   8
 0
  10
-560.3405903408143
+560.3405903408149
  20
-170.773253
+346.77325300000007
  30
 0.0
  11
-551.8405903408143
+551.8405903408149
  21
-170.773253
+346.77325300000007
  31
 0.0
   0
@@ -10371,15 +10371,15 @@ LINE
   8
 0
  10
-551.8405903408143
+551.8405903408149
  20
-170.773253
+346.77325300000007
  30
 0.0
  11
-551.8405903408143
+551.8405903408149
  21
-170.27325300000004
+346.27325300000007
  31
 0.0
   0
@@ -10389,15 +10389,15 @@ LINE
   8
 0
  10
-551.8405903408143
+551.8405903408149
  20
-170.27325300000004
+346.27325300000007
  30
 0.0
  11
-560.3405903408143
+560.3405903408149
  21
-170.27325300000004
+346.27325300000007
  31
 0.0
   0
@@ -10407,15 +10407,15 @@ LINE
   8
 0
  10
-560.3405903408143
+560.3405903408149
  20
-170.27325300000004
+346.27325300000007
  30
 0.0
  11
-560.3405903408143
+560.3405903408149
  21
-170.773253
+346.77325300000007
  31
 0.0
   0
@@ -10425,15 +10425,15 @@ LINE
   8
 0
  10
-551.8405903408143
+551.8405903408149
  20
-218.523253
+394.52325300000007
  30
 0.0
  11
-560.3405903408143
+560.3405903408149
  21
-218.523253
+394.52325300000007
  31
 0.0
   0
@@ -10443,15 +10443,15 @@ LINE
   8
 0
  10
-560.3405903408143
+560.3405903408149
  20
-218.523253
+394.52325300000007
  30
 0.0
  11
-560.3405903408143
+560.3405903408149
  21
-219.02325300000004
+395.02325300000007
  31
 0.0
   0
@@ -10461,15 +10461,15 @@ LINE
   8
 0
  10
-560.3405903408143
+560.3405903408149
  20
-219.02325300000004
+395.02325300000007
  30
 0.0
  11
-551.8405903408143
+551.8405903408149
  21
-219.02325300000004
+395.02325300000007
  31
 0.0
   0
@@ -10479,15 +10479,15 @@ LINE
   8
 0
  10
-551.8405903408143
+551.8405903408149
  20
-219.02325300000004
+395.02325300000007
  30
 0.0
  11
-551.8405903408143
+551.8405903408149
  21
-218.523253
+394.52325300000007
  31
 0.0
   0
@@ -10497,15 +10497,15 @@ LINE
   8
 0
  10
-536.5905903408143
+536.590590340815
  20
-174.1141620909091
+350.11416209090913
  30
 0.0
  11
-541.5905903408144
+541.5905903408149
  21
-174.1141620909091
+350.11416209090913
  31
 0.0
   0
@@ -10515,15 +10515,15 @@ LINE
   8
 0
  10
-541.5905903408144
+541.5905903408149
  20
-174.1141620909091
+350.11416209090913
  30
 0.0
  11
-541.5905903408144
+541.5905903408149
  21
-185.20507118181823
+361.20507118181825
  31
 0.0
   0
@@ -10533,15 +10533,15 @@ LINE
   8
 0
  10
-541.5905903408144
+541.5905903408149
  20
-185.20507118181823
+361.20507118181825
  30
 0.0
  11
-536.5905903408143
+536.590590340815
  21
-185.20507118181823
+361.20507118181825
  31
 0.0
   0
@@ -10551,15 +10551,15 @@ LINE
   8
 0
  10
-536.5905903408143
+536.590590340815
  20
-201.84143481818185
+377.8414348181818
  30
 0.0
  11
-541.5905903408144
+541.5905903408149
  21
-201.84143481818185
+377.8414348181818
  31
 0.0
   0
@@ -10569,15 +10569,15 @@ LINE
   8
 0
  10
-541.5905903408144
+541.5905903408149
  20
-201.84143481818185
+377.8414348181818
  30
 0.0
  11
-541.5905903408144
+541.5905903408149
  21
-212.93234390909092
+388.932343909091
  31
 0.0
   0
@@ -10587,15 +10587,15 @@ LINE
   8
 0
  10
-541.5905903408144
+541.5905903408149
  20
-212.93234390909092
+388.932343909091
  30
 0.0
  11
-536.5905903408143
+536.590590340815
  21
-212.93234390909092
+388.932343909091
  31
 0.0
   0
@@ -10605,15 +10605,15 @@ LINE
   8
 0
  10
-537.8405903408144
+537.8405903408149
  20
-147.02325300000004
+323.02325300000007
  30
 0.0
  11
-541.3405903408144
+541.340590340815
  21
-147.02325300000004
+323.02325300000007
  31
 0.0
   0
@@ -10623,15 +10623,15 @@ LINE
   8
 0
  10
-541.3405903408144
+541.340590340815
  20
-147.02325300000004
+323.02325300000007
  30
 0.0
  11
-541.3405903408144
+541.340590340815
  21
-155.023253
+331.02325300000007
  31
 0.0
   0
@@ -10641,15 +10641,15 @@ LINE
   8
 0
  10
-541.3405903408144
+541.340590340815
  20
-155.023253
+331.02325300000007
  30
 0.0
  11
-537.8405903408144
+537.8405903408149
  21
-155.023253
+331.02325300000007
  31
 0.0
   0
diff --git a/rocolib/builders/output/BottomServoMount/graph-anim.svg b/rocolib/builders/output/BottomServoMount/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0ee3a00b498f44c45a48eba4a3c99971f65335e4
--- /dev/null
+++ b/rocolib/builders/output/BottomServoMount/graph-anim.svg
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="98.000000mm" version="1.1" viewBox="0.000000 0.000000 214.000000 98.000000" width="214.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="57.00000000000001" x2="0.0" y1="0.0" y2="0.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="57.00000000000001" x2="57.00000000000001" y1="0.0" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="0.0" x2="57.00000000000001" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="57.00000000000001" x2="90.0" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="90.0" x2="57.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="90.0" y1="0.0" y2="0.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="124.00000000000003" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="157.0" x2="124.00000000000003" y1="0.0" y2="0.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="157.0" x2="157.0" y1="24.000000000000004" y2="0.0"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="157.0" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="157.0" x2="214.0" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="214.0" x2="157.0" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="214.0" x2="214.0" y1="24.000000000000004" y2="0.0"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="24.000000000000004" y2="44.00000000000001"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="44.00000000000001" y2="24.000000000000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="124.00000000000003" y1="44.00000000000001" y2="44.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="44.00000000000001" y2="68.0"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="68.0" y2="44.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="124.00000000000003" y1="68.0" y2="68.0"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="68.0" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="88.00000000000001" y2="68.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="124.00000000000003" x2="90.0" y1="88.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="98.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="124.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="88.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#888888" x1="112.91666666666669" x2="101.08333333333336" y1="7.749999999999998" y2="7.750000000000002"/>
+  <line stroke="#888888" x1="101.08333333333336" x2="101.08333333333336" y1="7.750000000000002" y2="7.25"/>
+  <line stroke="#888888" x1="101.08333333333336" x2="112.91666666666669" y1="7.25" y2="7.249999999999998"/>
+  <line stroke="#888888" x1="112.91666666666669" x2="112.91666666666669" y1="7.249999999999998" y2="7.749999999999998"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="43.00000000000001" y2="39.00000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="39.00000000000001" y2="39.00000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="39.00000000000001" y2="43.00000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="43.00000000000001" y2="43.00000000000001"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="102.50000000000001" y1="31.000000000000007" y2="27.000000000000004"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="111.5" y1="27.000000000000004" y2="27.000000000000004"/>
+  <line stroke="#888888" x1="111.5" x2="111.5" y1="27.000000000000004" y2="31.000000000000007"/>
+  <line stroke="#888888" x1="111.5" x2="102.50000000000001" y1="31.000000000000007" y2="31.000000000000007"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="67.50000000000001" y2="44.50000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="44.50000000000001" y2="44.50000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="44.50000000000001" y2="67.50000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="67.50000000000001" y2="67.50000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="73.0" y2="69.00000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="69.00000000000001" y2="69.00000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="69.00000000000001" y2="73.0"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#888888" x1="101.33333333333336" x2="101.33333333333336" y1="95.5" y2="90.50000000000001"/>
+  <line stroke="#888888" x1="101.33333333333336" x2="112.66666666666669" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#888888" x1="112.66666666666669" x2="112.66666666666669" y1="90.50000000000001" y2="95.5"/>
+</svg>
diff --git a/rocolib/builders/output/BottomServoMount/graph-autofold-default.dxf b/rocolib/builders/output/BottomServoMount/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..fbf6a63243aed24a267e4f97ccb37dc7694366dc
--- /dev/null
+++ b/rocolib/builders/output/BottomServoMount/graph-autofold-default.dxf
@@ -0,0 +1,1866 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+8
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+57.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+57.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+57.00000000000001
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+90.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+0.0
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.00000000000003
+ 20
+0.0
+ 30
+0.0
+ 11
+90.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+90.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.0
+ 20
+0.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+157.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+157.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.00000000000003
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+157.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+214.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+214.0
+ 20
+0.0
+ 30
+0.0
+ 11
+157.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+214.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+214.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+90.0
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.00000000000003
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+90.0
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.00000000000003
+ 20
+68.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+90.0
+ 20
+68.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+68.0
+ 30
+0.0
+ 11
+90.0
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.00000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+124.00000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.00000000000003
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.91666666666669
+ 20
+7.749999999999998
+ 30
+0.0
+ 11
+101.08333333333336
+ 21
+7.750000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.08333333333336
+ 20
+7.750000000000002
+ 30
+0.0
+ 11
+101.08333333333336
+ 21
+7.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.08333333333336
+ 20
+7.25
+ 30
+0.0
+ 11
+112.91666666666669
+ 21
+7.249999999999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.91666666666669
+ 20
+7.249999999999998
+ 30
+0.0
+ 11
+112.91666666666669
+ 21
+7.749999999999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+43.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+39.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+39.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+39.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.00000000000001
+ 20
+39.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+43.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.00000000000001
+ 20
+43.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+43.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.50000000000001
+ 20
+31.000000000000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.50000000000001
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+111.5
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+111.5
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+111.5
+ 21
+31.000000000000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+111.5
+ 20
+31.000000000000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+31.000000000000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+67.50000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+44.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+44.50000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+44.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.00000000000001
+ 20
+44.50000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+67.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.00000000000001
+ 20
+67.50000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+67.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+69.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+69.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+69.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.00000000000001
+ 20
+69.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.33333333333336
+ 20
+95.5
+ 30
+0.0
+ 11
+101.33333333333336
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.33333333333336
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+112.66666666666669
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.66666666666669
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+112.66666666666669
+ 21
+95.5
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BottomServoMount/graph-autofold-graph.dxf b/rocolib/builders/output/BottomServoMount/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..5535d60344e461fa2008710b4071a0f5d1e79a4b
--- /dev/null
+++ b/rocolib/builders/output/BottomServoMount/graph-autofold-graph.dxf
@@ -0,0 +1,1836 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+5
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+57.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.00000000000001
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+90.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+0.0
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+0.0
+ 30
+0.0
+ 11
+90.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+0.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+157.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+157.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+157.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+214.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+214.0
+ 20
+0.0
+ 30
+0.0
+ 11
+157.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+214.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+214.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+90.0
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.0
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+68.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.0
+ 20
+68.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+68.0
+ 30
+0.0
+ 11
+90.0
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+124.00000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.91666666666669
+ 20
+7.749999999999998
+ 30
+0.0
+ 11
+101.08333333333336
+ 21
+7.750000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.08333333333336
+ 20
+7.750000000000002
+ 30
+0.0
+ 11
+101.08333333333336
+ 21
+7.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.08333333333336
+ 20
+7.25
+ 30
+0.0
+ 11
+112.91666666666669
+ 21
+7.249999999999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.91666666666669
+ 20
+7.249999999999998
+ 30
+0.0
+ 11
+112.91666666666669
+ 21
+7.749999999999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+43.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+39.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+39.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+39.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+39.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+43.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+43.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+43.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.50000000000001
+ 20
+31.000000000000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.50000000000001
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+111.5
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.5
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+111.5
+ 21
+31.000000000000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.5
+ 20
+31.000000000000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+31.000000000000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+67.50000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+44.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+44.50000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+44.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+44.50000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+67.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+67.50000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+67.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+69.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+69.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+69.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+69.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.33333333333336
+ 20
+95.5
+ 30
+0.0
+ 11
+101.33333333333336
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.33333333333336
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+112.66666666666669
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.66666666666669
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+112.66666666666669
+ 21
+95.5
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BottomServoMount/graph-lasercutter.svg b/rocolib/builders/output/BottomServoMount/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8d834018b05c2410bc40f124e59c14359ed9092f
--- /dev/null
+++ b/rocolib/builders/output/BottomServoMount/graph-lasercutter.svg
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="98.000000mm" version="1.1" viewBox="0.000000 0.000000 214.000000 98.000000" width="214.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="57.00000000000001" x2="0.0" y1="0.0" y2="0.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="57.00000000000001" x2="57.00000000000001" y1="0.0" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="0.0" x2="57.00000000000001" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="57.00000000000001" x2="90.0" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="90.0" x2="57.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="90.0" y1="0.0" y2="0.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="124.00000000000003" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="157.0" x2="124.00000000000003" y1="0.0" y2="0.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="157.0" x2="157.0" y1="24.000000000000004" y2="0.0"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="157.0" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="157.0" x2="214.0" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="214.0" x2="157.0" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="214.0" x2="214.0" y1="24.000000000000004" y2="0.0"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="24.000000000000004" y2="44.00000000000001"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="44.00000000000001" y2="24.000000000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="124.00000000000003" y1="44.00000000000001" y2="44.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="44.00000000000001" y2="68.0"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="68.0" y2="44.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="124.00000000000003" y1="68.0" y2="68.0"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="68.0" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="88.00000000000001" y2="68.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="124.00000000000003" x2="90.0" y1="88.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="98.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="124.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="88.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#888888" x1="112.91666666666669" x2="101.08333333333336" y1="7.749999999999998" y2="7.750000000000002"/>
+  <line stroke="#888888" x1="101.08333333333336" x2="101.08333333333336" y1="7.750000000000002" y2="7.25"/>
+  <line stroke="#888888" x1="101.08333333333336" x2="112.91666666666669" y1="7.25" y2="7.249999999999998"/>
+  <line stroke="#888888" x1="112.91666666666669" x2="112.91666666666669" y1="7.249999999999998" y2="7.749999999999998"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="43.00000000000001" y2="39.00000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="39.00000000000001" y2="39.00000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="39.00000000000001" y2="43.00000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="43.00000000000001" y2="43.00000000000001"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="102.50000000000001" y1="31.000000000000007" y2="27.000000000000004"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="111.5" y1="27.000000000000004" y2="27.000000000000004"/>
+  <line stroke="#888888" x1="111.5" x2="111.5" y1="27.000000000000004" y2="31.000000000000007"/>
+  <line stroke="#888888" x1="111.5" x2="102.50000000000001" y1="31.000000000000007" y2="31.000000000000007"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="67.50000000000001" y2="44.50000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="44.50000000000001" y2="44.50000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="44.50000000000001" y2="67.50000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="67.50000000000001" y2="67.50000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="73.0" y2="69.00000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="69.00000000000001" y2="69.00000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="69.00000000000001" y2="73.0"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#888888" x1="101.33333333333336" x2="101.33333333333336" y1="95.5" y2="90.50000000000001"/>
+  <line stroke="#888888" x1="101.33333333333336" x2="112.66666666666669" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#888888" x1="112.66666666666669" x2="112.66666666666669" y1="90.50000000000001" y2="95.5"/>
+</svg>
diff --git a/rocolib/builders/output/BottomServoMount/graph-model.png b/rocolib/builders/output/BottomServoMount/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..d2aee0d615689a9aba237d81ea248a900624bf66
Binary files /dev/null and b/rocolib/builders/output/BottomServoMount/graph-model.png differ
diff --git a/rocolib/builders/output/BottomServoMount/graph-model.stl b/rocolib/builders/output/BottomServoMount/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..1ece27a6b4858a95913166a460e7078c5ff9e492
--- /dev/null
+++ b/rocolib/builders/output/BottomServoMount/graph-model.stl
@@ -0,0 +1,296 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0285 0.0120 0.0000
+vertex -0.0285 -0.0120 0.0000
+vertex 0.0285 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.0000
+vertex 0.0285 0.0120 0.0000
+vertex -0.0285 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0285 -0.0120 0.1000
+vertex -0.0285 0.0120 0.1000
+vertex 0.0285 0.0120 0.1000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 0.0120 0.1000
+vertex 0.0285 -0.0120 0.1000
+vertex -0.0285 -0.0120 0.1000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.0330
+vertex 0.0435 -0.0120 0.0440
+vertex 0.0435 -0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0435 -0.0120 0.0440
+vertex 0.0285 -0.0120 0.0330
+vertex 0.0485 -0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.0670
+vertex 0.0435 -0.0120 0.0560
+vertex 0.0485 -0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0435 -0.0120 0.0560
+vertex 0.0285 -0.0120 0.0670
+vertex 0.0285 -0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0475 -0.0120 0.0440
+vertex 0.0485 -0.0120 0.0330
+vertex 0.0485 -0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 -0.0120 0.0330
+vertex 0.0475 -0.0120 0.0440
+vertex 0.0435 -0.0120 0.0440
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0475 -0.0120 0.0560
+vertex 0.0485 -0.0120 0.0670
+vertex 0.0435 -0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 -0.0120 0.0670
+vertex 0.0475 -0.0120 0.0560
+vertex 0.0475 -0.0120 0.0440
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 -0.0120 0.0330
+vertex 0.0485 -0.0115 0.0440
+vertex 0.0485 -0.0115 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 -0.0115 0.0440
+vertex 0.0485 -0.0120 0.0330
+vertex 0.0485 0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 -0.0120 0.0670
+vertex 0.0485 -0.0115 0.0560
+vertex 0.0485 0.0115 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 -0.0115 0.0560
+vertex 0.0485 -0.0120 0.0670
+vertex 0.0485 -0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0115 0.0440
+vertex 0.0485 0.0120 0.0330
+vertex 0.0485 0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0120 0.0330
+vertex 0.0485 0.0115 0.0440
+vertex 0.0485 -0.0115 0.0440
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0115 0.0560
+vertex 0.0485 0.0120 0.0670
+vertex 0.0485 -0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0120 0.0670
+vertex 0.0485 0.0115 0.0560
+vertex 0.0485 0.0115 0.0440
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0120 0.0330
+vertex 0.0435 0.0120 0.0440
+vertex 0.0475 0.0120 0.0440
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0435 0.0120 0.0440
+vertex 0.0485 0.0120 0.0330
+vertex 0.0285 0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0120 0.0330
+vertex 0.0475 0.0120 0.0440
+vertex 0.0475 0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0120 0.0670
+vertex 0.0475 0.0120 0.0560
+vertex 0.0435 0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0475 0.0120 0.0560
+vertex 0.0485 0.0120 0.0670
+vertex 0.0485 0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0120 0.0670
+vertex 0.0435 0.0120 0.0560
+vertex 0.0285 0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0435 0.0120 0.0440
+vertex 0.0355 0.0120 0.0455
+vertex 0.0435 0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0355 0.0120 0.0455
+vertex 0.0285 0.0120 0.0330
+vertex 0.0315 0.0120 0.0455
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 0.0120 0.0330
+vertex 0.0355 0.0120 0.0455
+vertex 0.0435 0.0120 0.0440
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0315 0.0120 0.0455
+vertex 0.0285 0.0120 0.0330
+vertex 0.0285 0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0355 0.0120 0.0545
+vertex 0.0315 0.0120 0.0545
+vertex 0.0285 0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 0.0120 0.0670
+vertex 0.0315 0.0120 0.0545
+vertex 0.0315 0.0120 0.0455
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0355 0.0120 0.0545
+vertex 0.0285 0.0120 0.0670
+vertex 0.0435 0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0355 0.0120 0.0455
+vertex 0.0355 0.0120 0.0545
+vertex 0.0435 0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 0.0120 0.0670
+vertex 0.0285 0.0120 0.0330
+vertex 0.0285 -0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.0330
+vertex 0.0285 -0.0120 0.0670
+vertex 0.0285 0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.0330
+vertex 0.0285 0.0120 0.0330
+vertex 0.0285 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 0.0120 0.0000
+vertex 0.0285 -0.0120 0.0000
+vertex 0.0285 -0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 0.0120 0.0670
+vertex 0.0285 -0.0120 0.0670
+vertex 0.0285 -0.0120 0.1000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.1000
+vertex 0.0285 0.0120 0.1000
+vertex 0.0285 0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0020 0.0330
+vertex 0.0285 -0.0120 0.0330
+vertex 0.0285 -0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.0670
+vertex 0.0285 -0.0020 0.0670
+vertex 0.0285 -0.0020 0.0330
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/builders/output/BottomServoMount/graph-silhouette.dxf b/rocolib/builders/output/BottomServoMount/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..4d9aba0b98a2ea72258b447b3574fe2bcc4ac413
--- /dev/null
+++ b/rocolib/builders/output/BottomServoMount/graph-silhouette.dxf
@@ -0,0 +1,1836 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+5
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+57.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.00000000000001
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+90.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+0.0
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+0.0
+ 30
+0.0
+ 11
+90.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+0.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+157.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+157.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+157.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+214.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+214.0
+ 20
+0.0
+ 30
+0.0
+ 11
+157.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+214.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+214.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+90.0
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.0
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+68.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.0
+ 20
+68.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+68.0
+ 30
+0.0
+ 11
+90.0
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+124.00000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.91666666666669
+ 20
+7.749999999999998
+ 30
+0.0
+ 11
+101.08333333333336
+ 21
+7.750000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.08333333333336
+ 20
+7.750000000000002
+ 30
+0.0
+ 11
+101.08333333333336
+ 21
+7.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.08333333333336
+ 20
+7.25
+ 30
+0.0
+ 11
+112.91666666666669
+ 21
+7.249999999999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.91666666666669
+ 20
+7.249999999999998
+ 30
+0.0
+ 11
+112.91666666666669
+ 21
+7.749999999999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+43.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+39.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+39.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+39.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+39.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+43.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+43.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+43.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.50000000000001
+ 20
+31.000000000000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.50000000000001
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+111.5
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.5
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+111.5
+ 21
+31.000000000000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.5
+ 20
+31.000000000000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+31.000000000000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+67.50000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+44.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+44.50000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+44.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+44.50000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+67.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+67.50000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+67.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+69.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+69.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+69.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+69.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.33333333333336
+ 20
+95.5
+ 30
+0.0
+ 11
+101.33333333333336
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.33333333333336
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+112.66666666666669
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.66666666666669
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+112.66666666666669
+ 21
+95.5
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BottomServoMount/tree.png b/rocolib/builders/output/BottomServoMount/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..57da09031d1522c36cfcbeabccc8aa5b568d44a2
Binary files /dev/null and b/rocolib/builders/output/BottomServoMount/tree.png differ
diff --git a/rocolib/builders/output/CarForSteering/graph-anim.svg b/rocolib/builders/output/CarForSteering/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f6c1b69b5fcdc6649eb3d33fdb9dce895d96abb0
--- /dev/null
+++ b/rocolib/builders/output/CarForSteering/graph-anim.svg
@@ -0,0 +1,1043 @@
+<?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="491.666667mm" version="1.1" viewBox="0.000000 0.000000 565.333333 491.666667" width="565.333333mm">
+  <defs/>
+  <line stroke="#000000" x1="134.00000000000003" x2="121.00000000000001" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="134.00000000000003" x2="134.00000000000003" y1="454.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="121.00000000000001" x2="134.00000000000003" y1="476.00000000000006" y2="476.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="121.00000000000001" x2="121.00000000000001" y1="476.00000000000006" y2="454.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="134.00000000000003" x2="147.00000000000003" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="147.00000000000003" x2="147.00000000000003" y1="454.00000000000006" y2="476.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="147.00000000000003" x2="134.00000000000003" y1="476.00000000000006" y2="476.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="134.00000000000003" x2="134.00000000000003" y1="454.00000000000006" y2="413.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="147.00000000000003" x2="134.00000000000003" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="147.00000000000003" x2="147.00000000000003" y1="454.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="134.00000000000003" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="413.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="115.00000000000001" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="147.00000000000003" x2="134.00000000000003" y1="391.0" y2="391.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="147.00000000000003" x2="147.00000000000003" y1="391.0" y2="413.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="134.00000000000003" x2="134.00000000000003" y1="391.0" y2="413.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="134.00000000000003" x2="134.00000000000003" y1="391.0" y2="350.0"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="134.00000000000003" y1="350.0" y2="350.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="147.00000000000003" x2="147.00000000000003" y1="391.0" y2="350.0"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="134.00000000000003" y1="391.0" y2="391.0"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="350.0" y2="391.0"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="115.00000000000001" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="166.0" y1="391.0" y2="391.0"/>
+  <line stroke="#000000" x1="166.0" x2="147.00000000000003" y1="350.0" y2="350.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="166.0" x2="166.0" y1="391.0" y2="350.0"/>
+  <line stroke="#000000" x1="166.0" x2="179.00000000000003" y1="391.0" y2="391.0"/>
+  <line opacity="1.0" stroke="#0000ff" x1="166.0" x2="179.00000000000003" y1="350.0" y2="350.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="179.00000000000003" x2="179.00000000000003" y1="350.0" y2="391.0"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="202.00000000000003" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="166.0" x2="166.0" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="350.0" y2="350.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="166.0" x2="166.0" y1="350.0" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="166.0" y1="285.00000000000006" y2="285.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="202.00000000000003" x2="202.00000000000003" y1="350.0" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="166.0" y1="350.0" y2="350.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="106.00000000000001" x2="106.00000000000001" y1="350.0" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="285.00000000000006" y2="350.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="70.00000000000001" y1="285.00000000000006" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="106.00000000000001" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="93.00000000000001" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="106.00000000000001" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="111.00009098110239" x2="106.00000000000001" y1="262.0" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="166.00018196220475" x2="161.0000909811024" y1="285.00000000000006" y2="262.0"/>
+  <line stroke="#000000" x1="161.0000909811024" x2="166.00018196220475" y1="262.0" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="111.00009098110239" y1="239.00000000000003" y2="262.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="166.0" x2="166.0" y1="174.00000000000003" y2="239.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="106.00000000000001" x2="106.00000000000001" y1="174.00000000000003" y2="239.00000000000003"/>
+  <line opacity="1.0" stroke="#0000ff" x1="125.00000000000001" x2="106.00000000000001" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="166.0" x2="125.00000000000001" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="166.0" x2="166.0" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="106.00000000000001" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="106.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="125.00000000000001" x2="125.00000000000001" y1="133.00000000000003" y2="174.00000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="106.00000000000001" x2="106.00000000000001" y1="133.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="125.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="138.00000000000003" x2="138.00000000000003" y1="133.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="138.00000000000003" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="157.0" x2="138.00000000000003" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="157.0" x2="157.0" y1="174.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="157.0" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="106.00000000000001" x2="93.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="106.00000000000001" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="93.00000000000001" x2="93.00000000000001" y1="174.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="93.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="106.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="70.00000000000001" y1="133.00000000000003" y2="73.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="106.00000000000001" x2="106.00000000000001" y1="133.00000000000003" y2="73.0"/>
+  <line stroke="#000000" x1="46.00000000000001" x2="70.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="46.00000000000001" x2="46.00000000000001" y1="133.00000000000003" y2="73.0"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="46.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="46.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="73.0" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="46.00000000000001" x2="10.000000000000002" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="70.00000000000001" y1="73.0" y2="73.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="93.00000000000001" x2="106.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="106.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="93.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="106.00000000000001" x2="106.00000000000001" y1="32.00000000000001" y2="73.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="93.00000000000001" x2="93.00000000000001" y1="73.0" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="106.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="125.00000000000001" x2="125.00000000000001" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="125.00000000000001" y1="73.0" y2="73.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="125.00000000000001" x2="138.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="138.00000000000003" x2="138.00000000000003" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="138.00000000000003" y1="73.0" y2="73.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="125.00000000000001" x2="125.00000000000001" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="125.00000000000001" x2="138.00000000000003" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="138.00000000000003" x2="138.00000000000003" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="112.00000000000001" x2="125.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="112.00000000000001" x2="112.00000000000001" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="112.00000000000001" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="99.0" x2="112.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="99.0" x2="99.0" y1="10.000000000000002" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="112.00000000000001" x2="99.0" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="125.00000000000001" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="125.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="138.00000000000003" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="151.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="151.00000000000003" x2="138.00000000000003" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="151.00000000000003" x2="151.00000000000003" y1="10.000000000000002" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="161.00000000000003" x2="151.00000000000003" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="161.00000000000003" x2="161.00000000000003" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="151.00000000000003" x2="161.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="157.0" x2="138.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="157.0" x2="157.0" y1="73.0" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="157.0" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="83.0" x2="93.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="83.0" x2="83.0" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="83.0" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="130.0" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="130.0" x2="106.00000000000001" y1="73.0" y2="73.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="130.0" y1="73.0" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="140.00000000000003" x2="130.0" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="140.00000000000003" x2="140.00000000000003" y1="133.00000000000003" y2="73.0"/>
+  <line stroke="#000000" x1="130.0" x2="140.00000000000003" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="83.0" x2="93.00000000000001" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="83.0" x2="83.0" y1="133.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="83.0" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="166.0" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="239.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="166.0" x2="202.00000000000003" y1="239.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="70.00000000000001" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="106.00000000000001" y1="239.00000000000003" y2="239.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="70.00000000000001" y1="174.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="10.000000000000002" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="239.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="64.99990901889764" x2="70.00000000000001" y1="262.0" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="14.999909018897627" x2="64.99990901889764" y1="262.0" y2="262.0"/>
+  <line stroke="#000000" x1="9.99981803779525" x2="14.999909018897627" y1="239.00000000000003" y2="262.0"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="239.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="174.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="262.0" y1="350.0" y2="350.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="262.0" x2="262.0" y1="285.00000000000006" y2="350.0"/>
+  <line stroke="#000000" x1="207.00009098110237" x2="202.00000000000003" y1="262.0" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="257.00009098110246" x2="207.00009098110237" y1="262.0" y2="262.0"/>
+  <line stroke="#000000" x1="262.00018196220475" x2="257.00009098110246" y1="285.00000000000006" y2="262.0"/>
+  <line stroke="#000000" x1="272.0" x2="262.0" y1="285.00000000000006" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="272.0" x2="272.0" y1="350.0" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="262.0" x2="272.0" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="189.0" x2="179.00000000000003" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="189.0" x2="189.0" y1="391.0" y2="350.0"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="189.0" y1="391.0" y2="391.0"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="147.00000000000003" y1="391.0" y2="391.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="160.00000000000003" x2="160.00000000000003" y1="391.0" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="160.00000000000003" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="173.0" x2="160.00000000000003" y1="391.0" y2="391.0"/>
+  <line stroke="#000000" x1="173.0" x2="173.0" y1="413.00000000000006" y2="391.0"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="173.0" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="121.00000000000001" y1="391.0" y2="391.0"/>
+  <line stroke="#000000" x1="121.00000000000001" x2="134.00000000000003" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="121.00000000000001" x2="121.00000000000001" y1="413.00000000000006" y2="391.0"/>
+  <line stroke="#000000" x1="111.00000000000001" x2="121.00000000000001" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="111.00000000000001" x2="111.00000000000001" y1="391.0" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="121.00000000000001" x2="111.00000000000001" y1="391.0" y2="391.0"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="166.0" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="147.00000000000003" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="166.0" x2="166.0" y1="454.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="179.00000000000003" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="166.0" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="179.00000000000003" x2="179.00000000000003" y1="413.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="189.0" x2="179.00000000000003" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="189.0" x2="189.0" y1="454.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="189.0" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="147.00000000000003" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="160.00000000000003" x2="160.00000000000003" y1="454.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="160.00000000000003" y1="476.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="173.0" x2="160.00000000000003" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="173.0" x2="173.0" y1="476.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="173.0" y1="476.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="147.00000000000003" y1="486.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="147.00000000000003" y1="486.00000000000006" y2="486.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="134.00000000000003" y1="476.00000000000006" y2="486.00000000000006"/>
+  <line stroke="#000000" x1="111.00000000000001" x2="121.00000000000001" y1="476.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="111.00000000000001" x2="111.00000000000001" y1="454.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="121.00000000000001" x2="111.00000000000001" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="426.41666666666674" y2="440.58333333333337"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="440.58333333333337" y2="440.58333333333337"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="440.58333333333337" y2="426.41666666666674"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="426.41666666666674" y2="426.41666666666674"/>
+  <line stroke="#888888" x1="142.91666666666666" x2="142.91666666666666" y1="357.75000000000006" y2="352.25000000000006"/>
+  <line stroke="#888888" x1="142.91666666666666" x2="142.41666666666669" y1="352.25000000000006" y2="352.25000000000006"/>
+  <line stroke="#888888" x1="142.41666666666669" x2="142.41666666666669" y1="352.25000000000006" y2="357.75000000000006"/>
+  <line stroke="#888888" x1="142.41666666666669" x2="142.91666666666666" y1="357.75000000000006" y2="357.75000000000006"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="363.4166666666667" y2="377.58333333333337"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="377.58333333333337" y2="377.58333333333337"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="377.58333333333337" y2="363.4166666666667"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="363.4166666666667" y2="363.4166666666667"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="378.0" y2="378.0"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="378.0" y2="355.0"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="355.0" y2="355.0"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="355.0" y2="378.0"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="322.00000000000006" y2="322.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="322.00000000000006" y2="345.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="345.00000000000006" y2="345.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="345.00000000000006" y2="322.00000000000006"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="345.00000000000006" y2="345.00000000000006"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="345.00000000000006" y2="322.00000000000006"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="322.00000000000006" y2="322.00000000000006"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="322.00000000000006" y2="345.00000000000006"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.75000000000001" y1="326.11363636363643" y2="338.4318181818182"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.25" y1="338.4318181818182" y2="338.4318181818182"/>
+  <line stroke="#888888" x1="77.25" x2="77.25" y1="338.4318181818182" y2="326.11363636363643"/>
+  <line stroke="#888888" x1="77.25" x2="77.75000000000001" y1="326.11363636363643" y2="326.11363636363643"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.75000000000001" y1="296.56818181818187" y2="308.8863636363637"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.25" y1="308.8863636363637" y2="308.8863636363637"/>
+  <line stroke="#888888" x1="77.25" x2="77.25" y1="308.8863636363637" y2="296.56818181818187"/>
+  <line stroke="#888888" x1="77.25" x2="77.75000000000001" y1="296.56818181818187" y2="296.56818181818187"/>
+  <line stroke="#888888" x1="153.25000000000003" x2="156.25000000000003" y1="215.50000000000003" y2="215.50000000000003"/>
+  <line stroke="#888888" x1="156.25000000000003" x2="156.25000000000003" y1="215.50000000000003" y2="218.5"/>
+  <line stroke="#888888" x1="156.25000000000003" x2="153.25000000000003" y1="218.5" y2="218.5"/>
+  <line stroke="#888888" x1="153.25000000000003" x2="153.25000000000003" y1="218.5" y2="215.50000000000003"/>
+  <line stroke="#888888" x1="154.25000000000003" x2="155.25000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="155.25000000000003" x2="155.25000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="155.25000000000003" x2="154.25000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="154.25000000000003" x2="154.25000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="152.75" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="152.75" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="151.75000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="151.75000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="152.75" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="152.75" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="151.75000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="151.75000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="150.25" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="150.25" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="149.25000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="150.25" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="150.25" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="149.25000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="147.75" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="147.75" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="146.75000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="146.75000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="147.75" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="147.75" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="146.75000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="146.75000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="145.25" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="145.25" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="144.25000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="144.25000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="145.25" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="145.25" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="144.25000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="144.25000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="142.75000000000003" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="142.75000000000003" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="141.75000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="141.75000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="142.75000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="142.75000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="141.75000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="141.75000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="140.25000000000003" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="140.25000000000003" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="139.25" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="139.25" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="140.25000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="140.25000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="139.25" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="139.25" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="137.75000000000003" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="137.75000000000003" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="136.75" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="136.75" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="137.75000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="137.75000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="136.75" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="136.75" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="135.25000000000003" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="135.25000000000003" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="134.25000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="134.25000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="135.25000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="135.25000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="134.25000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="134.25000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="132.75000000000003" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="132.75000000000003" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="131.75000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="131.75000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="132.75000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="132.75000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="131.75000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="131.75000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="130.25000000000003" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="130.25000000000003" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="129.25000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="129.25000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="130.25000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="130.25000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="129.25000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="129.25000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="127.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="127.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="126.75000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="126.75000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="127.75000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="127.75000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="126.75000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="126.75000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="125.25000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="125.25000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="124.25000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="124.25000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="125.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="125.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="124.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="124.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="122.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="121.75000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="121.75000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="122.75000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="121.75000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="121.75000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="120.25000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="120.25000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="119.25000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="119.25000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="120.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="120.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="119.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="119.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="116.75000000000001" x2="117.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="117.75000000000001" x2="117.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="117.75000000000001" x2="116.75000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="116.75000000000001" x2="116.75000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="115.75000000000001" x2="118.75000000000001" y1="235.50000000000003" y2="235.50000000000003"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="235.50000000000003" y2="238.50000000000003"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="115.75000000000001" y1="238.50000000000003" y2="238.50000000000003"/>
+  <line stroke="#888888" x1="115.75000000000001" x2="115.75000000000001" y1="238.50000000000003" y2="235.50000000000003"/>
+  <line stroke="#888888" x1="129.08333333333337" x2="129.08333333333337" y1="166.25" y2="171.75000000000003"/>
+  <line stroke="#888888" x1="129.08333333333337" x2="129.58333333333337" y1="171.75000000000003" y2="171.75000000000003"/>
+  <line stroke="#888888" x1="129.58333333333337" x2="129.58333333333337" y1="171.75000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="129.58333333333337" x2="129.08333333333337" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="160.58333333333334" y2="146.4166666666667"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.75" y1="146.4166666666667" y2="146.4166666666667"/>
+  <line stroke="#888888" x1="149.75" x2="149.75" y1="146.4166666666667" y2="160.58333333333334"/>
+  <line stroke="#888888" x1="149.75" x2="149.25000000000003" y1="160.58333333333334" y2="160.58333333333334"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="146.0" y2="146.0"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="146.0" y2="169.00000000000003"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="169.00000000000003" y2="169.00000000000003"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="169.00000000000003" y2="146.0"/>
+  <line stroke="#888888" x1="92.8857142857143" x2="92.8857142857143" y1="79.00000000000001" y2="97.00000000000001"/>
+  <line stroke="#888888" x1="92.8857142857143" x2="72.31428571428573" y1="97.00000000000001" y2="97.00000000000001"/>
+  <line stroke="#888888" x1="72.31428571428573" x2="72.31428571428573" y1="97.00000000000001" y2="79.00000000000001"/>
+  <line stroke="#888888" x1="72.31428571428573" x2="92.8857142857143" y1="79.00000000000001" y2="79.00000000000001"/>
+  <line stroke="#888888" x1="69.5" x2="69.5" y1="120.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="69.5" x2="66.50000000000001" y1="123.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="66.50000000000001" x2="66.50000000000001" y1="123.25000000000001" y2="120.25000000000001"/>
+  <line stroke="#888888" x1="66.50000000000001" x2="69.5" y1="120.25000000000001" y2="120.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="121.25000000000001" y2="122.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="122.25000000000001" y2="122.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="122.25000000000001" y2="121.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="121.25000000000001" y2="121.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="118.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="119.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="119.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="118.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="118.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="119.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="119.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="118.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="116.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="117.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="117.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="116.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="116.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="117.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="117.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="116.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="113.75" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="114.75000000000001" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="114.75000000000001" y2="113.75"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="113.75" y2="113.75"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="113.75" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="114.75000000000001" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="114.75000000000001" y2="113.75"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="113.75" y2="113.75"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="111.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="112.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="112.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="111.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="111.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="112.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="112.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="111.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="108.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="109.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="109.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="108.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="108.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="109.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="109.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="108.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="106.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="107.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="107.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="106.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="106.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="107.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="107.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="106.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="103.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="104.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="104.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="103.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="103.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="104.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="104.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="103.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="101.25" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="102.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="102.25000000000001" y2="101.25"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="101.25" y2="101.25"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="101.25" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="102.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="102.25000000000001" y2="101.25"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="101.25" y2="101.25"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="98.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="99.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="99.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="98.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="98.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="99.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="99.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="98.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="96.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="97.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="97.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="96.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="96.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="97.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="97.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="96.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="93.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="94.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="94.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="93.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="93.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="94.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="94.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="93.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="91.25000000000001" y2="92.25"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="92.25" y2="92.25"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="92.25" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="91.25000000000001" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="91.25000000000001" y2="92.25"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="92.25" y2="92.25"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="92.25" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="91.25000000000001" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="88.75" y2="89.75"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="89.75" y2="89.75"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="89.75" y2="88.75"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="88.75" y2="88.75"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="88.75" y2="89.75"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="89.75" y2="89.75"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="89.75" y2="88.75"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="88.75" y2="88.75"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="86.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="87.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="87.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="86.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="86.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="87.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="87.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="86.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="83.75000000000001" y2="84.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="84.75000000000001" y2="84.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="84.75000000000001" y2="83.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="83.75000000000001" y2="83.75000000000001"/>
+  <line stroke="#888888" x1="49.5" x2="49.5" y1="82.75000000000001" y2="85.75000000000001"/>
+  <line stroke="#888888" x1="49.5" x2="46.50000000000001" y1="85.75000000000001" y2="85.75000000000001"/>
+  <line stroke="#888888" x1="46.50000000000001" x2="46.50000000000001" y1="85.75000000000001" y2="82.75000000000001"/>
+  <line stroke="#888888" x1="46.50000000000001" x2="49.5" y1="82.75000000000001" y2="82.75000000000001"/>
+  <line stroke="#888888" x1="40.44571428571429" x2="40.44571428571429" y1="77.30000000000003" y2="90.30000000000003"/>
+  <line stroke="#888888" x1="40.44571428571429" x2="19.874285714285723" y1="90.30000000000003" y2="90.30000000000003"/>
+  <line stroke="#888888" x1="19.874285714285723" x2="19.874285714285723" y1="90.30000000000003" y2="77.30000000000003"/>
+  <line stroke="#888888" x1="19.874285714285723" x2="40.44571428571429" y1="77.30000000000003" y2="77.30000000000003"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="92.75000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="17.250000000000004" y1="113.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="17.250000000000004" x2="17.250000000000004" y1="113.25000000000001" y2="92.75000000000001"/>
+  <line stroke="#888888" x1="17.250000000000004" x2="17.750000000000004" y1="92.75000000000001" y2="92.75000000000001"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="37.0" y2="37.0"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="37.0" y2="60.00000000000001"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="60.00000000000001" y2="37.0"/>
+  <line stroke="#888888" x1="106.75000000000001" x2="106.75000000000001" y1="17.083333333333318" y2="24.916666666666686"/>
+  <line stroke="#888888" x1="106.75000000000001" x2="106.25000000000001" y1="24.916666666666686" y2="24.916666666666686"/>
+  <line stroke="#888888" x1="106.25000000000001" x2="106.25000000000001" y1="24.916666666666686" y2="17.083333333333318"/>
+  <line stroke="#888888" x1="106.25000000000001" x2="106.75000000000001" y1="17.083333333333318" y2="17.083333333333318"/>
+  <line stroke="#888888" x1="129.33333333333337" x2="133.66666666666669" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="133.66666666666669" x2="133.66666666666669" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="133.66666666666669" x2="129.33333333333337" y1="2.5000000000000004" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="158.50000000000003" x2="153.50000000000003" y1="24.666666666666686" y2="24.666666666666686"/>
+  <line stroke="#888888" x1="153.50000000000003" x2="153.50000000000003" y1="24.666666666666686" y2="17.333333333333318"/>
+  <line stroke="#888888" x1="153.50000000000003" x2="158.50000000000003" y1="17.333333333333318" y2="17.333333333333318"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="59.58333333333332" y2="45.416666666666686"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.75" y1="45.416666666666686" y2="45.416666666666686"/>
+  <line stroke="#888888" x1="149.75" x2="149.75" y1="45.416666666666686" y2="59.58333333333332"/>
+  <line stroke="#888888" x1="149.75" x2="149.25000000000003" y1="59.58333333333332" y2="59.58333333333332"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="45.66666666666669" y2="40.66666666666669"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="90.50000000000001" y1="40.66666666666669" y2="45.66666666666669"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="90.50000000000001" y1="45.66666666666669" y2="59.33333333333332"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="85.50000000000001" y1="59.33333333333332" y2="64.33333333333333"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="64.33333333333333" y2="59.33333333333332"/>
+  <line stroke="#888888" x1="129.50000000000003" x2="129.50000000000003" y1="120.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="129.50000000000003" x2="126.50000000000001" y1="123.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="126.50000000000001" x2="126.50000000000001" y1="123.25000000000001" y2="120.25000000000001"/>
+  <line stroke="#888888" x1="126.50000000000001" x2="129.50000000000003" y1="120.25000000000001" y2="120.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="121.25000000000001" y2="122.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="122.25000000000001" y2="122.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="122.25000000000001" y2="121.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="121.25000000000001" y2="121.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="118.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="119.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="119.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="118.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="118.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="119.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="119.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="118.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="116.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="117.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="117.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="116.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="116.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="117.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="117.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="116.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="113.75" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="114.75000000000001" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="114.75000000000001" y2="113.75"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="113.75" y2="113.75"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="113.75" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="114.75000000000001" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="114.75000000000001" y2="113.75"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="113.75" y2="113.75"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="111.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="112.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="112.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="111.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="111.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="112.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="112.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="111.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="108.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="109.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="109.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="108.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="108.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="109.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="109.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="108.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="106.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="107.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="107.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="106.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="106.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="107.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="107.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="106.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="103.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="104.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="104.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="103.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="103.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="104.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="104.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="103.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="101.25" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="102.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="102.25000000000001" y2="101.25"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="101.25" y2="101.25"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="101.25" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="102.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="102.25000000000001" y2="101.25"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="101.25" y2="101.25"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="98.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="99.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="99.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="98.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="98.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="99.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="99.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="98.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="96.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="97.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="97.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="96.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="96.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="97.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="97.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="96.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="93.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="94.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="94.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="93.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="93.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="94.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="94.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="93.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="91.25000000000001" y2="92.25"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="92.25" y2="92.25"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="92.25" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="91.25000000000001" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="91.25000000000001" y2="92.25"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="92.25" y2="92.25"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="92.25" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="91.25000000000001" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="88.75" y2="89.75"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="89.75" y2="89.75"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="89.75" y2="88.75"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="88.75" y2="88.75"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="88.75" y2="89.75"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="89.75" y2="89.75"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="89.75" y2="88.75"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="88.75" y2="88.75"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="86.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="87.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="87.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="86.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="86.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="87.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="87.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="86.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="83.75000000000001" y2="84.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="84.75000000000001" y2="84.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="84.75000000000001" y2="83.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="83.75000000000001" y2="83.75000000000001"/>
+  <line stroke="#888888" x1="109.50000000000001" x2="109.50000000000001" y1="82.75000000000001" y2="85.75000000000001"/>
+  <line stroke="#888888" x1="109.50000000000001" x2="106.50000000000001" y1="85.75000000000001" y2="85.75000000000001"/>
+  <line stroke="#888888" x1="106.50000000000001" x2="106.50000000000001" y1="85.75000000000001" y2="82.75000000000001"/>
+  <line stroke="#888888" x1="106.50000000000001" x2="109.50000000000001" y1="82.75000000000001" y2="82.75000000000001"/>
+  <line stroke="#888888" x1="137.50000000000003" x2="137.50000000000003" y1="113.00000000000001" y2="118.00000000000001"/>
+  <line stroke="#888888" x1="137.50000000000003" x2="132.50000000000003" y1="118.00000000000001" y2="113.00000000000001"/>
+  <line stroke="#888888" x1="132.50000000000003" x2="132.50000000000003" y1="113.00000000000001" y2="93.00000000000001"/>
+  <line stroke="#888888" x1="132.50000000000003" x2="137.50000000000003" y1="93.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#888888" x1="137.50000000000003" x2="137.50000000000003" y1="88.00000000000001" y2="93.00000000000001"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="146.6666666666667" y2="141.6666666666667"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="90.50000000000001" y1="141.6666666666667" y2="146.6666666666667"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="90.50000000000001" y1="146.6666666666667" y2="160.33333333333334"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="85.50000000000001" y1="160.33333333333334" y2="165.33333333333334"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="165.33333333333334" y2="160.33333333333334"/>
+  <line stroke="#888888" x1="173.56000000000003" x2="173.56000000000003" y1="177.79000000000005" y2="176.71"/>
+  <line stroke="#888888" x1="173.56000000000003" x2="191.56000000000003" y1="176.71" y2="176.71"/>
+  <line stroke="#888888" x1="191.56000000000003" x2="191.56000000000003" y1="176.71" y2="177.79000000000005"/>
+  <line stroke="#888888" x1="191.56000000000003" x2="173.56000000000003" y1="177.79000000000005" y2="177.79000000000005"/>
+  <line stroke="#888888" x1="173.56000000000003" x2="173.56000000000003" y1="210.29000000000002" y2="209.21000000000004"/>
+  <line stroke="#888888" x1="173.56000000000003" x2="191.56000000000003" y1="209.21000000000004" y2="209.21000000000004"/>
+  <line stroke="#888888" x1="191.56000000000003" x2="191.56000000000003" y1="209.21000000000004" y2="210.29000000000002"/>
+  <line stroke="#888888" x1="191.56000000000003" x2="173.56000000000003" y1="210.29000000000002" y2="210.29000000000002"/>
+  <line stroke="#888888" x1="173.56000000000003" x2="173.56000000000003" y1="234.52000000000004" y2="220.48000000000002"/>
+  <line stroke="#888888" x1="173.56000000000003" x2="191.56000000000003" y1="220.48000000000002" y2="220.48000000000002"/>
+  <line stroke="#888888" x1="191.56000000000003" x2="191.56000000000003" y1="220.48000000000002" y2="234.52000000000004"/>
+  <line stroke="#888888" x1="191.56000000000003" x2="173.56000000000003" y1="234.52000000000004" y2="234.52000000000004"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="179.00000000000003" y2="179.00000000000003"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="179.00000000000003" y2="202.00000000000003"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="202.00000000000003" y2="202.00000000000003"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="202.00000000000003" y2="179.00000000000003"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.25000000000003" y1="197.88636363636365" y2="185.56818181818184"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.75000000000003" y1="185.56818181818184" y2="185.56818181818184"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.75000000000003" y1="185.56818181818184" y2="197.88636363636365"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.25000000000003" y1="197.88636363636365" y2="197.88636363636365"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.25000000000003" y1="227.43181818181822" y2="215.1136363636364"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.75000000000003" y1="215.1136363636364" y2="215.1136363636364"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.75000000000003" y1="215.1136363636364" y2="227.43181818181822"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.25000000000003" y1="227.43181818181822" y2="227.43181818181822"/>
+  <line stroke="#888888" x1="75.40000000000002" x2="75.40000000000002" y1="177.79000000000005" y2="176.71"/>
+  <line stroke="#888888" x1="75.40000000000002" x2="93.40000000000002" y1="176.71" y2="176.71"/>
+  <line stroke="#888888" x1="93.40000000000002" x2="93.40000000000002" y1="176.71" y2="177.79000000000005"/>
+  <line stroke="#888888" x1="93.40000000000002" x2="75.40000000000002" y1="177.79000000000005" y2="177.79000000000005"/>
+  <line stroke="#888888" x1="75.40000000000002" x2="75.40000000000002" y1="210.29000000000002" y2="209.21000000000004"/>
+  <line stroke="#888888" x1="75.40000000000002" x2="93.40000000000002" y1="209.21000000000004" y2="209.21000000000004"/>
+  <line stroke="#888888" x1="93.40000000000002" x2="93.40000000000002" y1="209.21000000000004" y2="210.29000000000002"/>
+  <line stroke="#888888" x1="93.40000000000002" x2="75.40000000000002" y1="210.29000000000002" y2="210.29000000000002"/>
+  <line stroke="#888888" x1="71.80000000000001" x2="71.80000000000001" y1="234.52000000000004" y2="220.48000000000002"/>
+  <line stroke="#888888" x1="71.80000000000001" x2="97.00000000000001" y1="220.48000000000002" y2="220.48000000000002"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="220.48000000000002" y2="234.52000000000004"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="71.80000000000001" y1="234.52000000000004" y2="234.52000000000004"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="202.00000000000003" y2="202.00000000000003"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="202.00000000000003" y2="179.00000000000003"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="179.00000000000003" y2="179.00000000000003"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="179.00000000000003" y2="202.00000000000003"/>
+  <line stroke="#888888" x1="57.25000000000001" x2="60.25000000000001" y1="215.50000000000003" y2="215.50000000000003"/>
+  <line stroke="#888888" x1="60.25000000000001" x2="60.25000000000001" y1="215.50000000000003" y2="218.5"/>
+  <line stroke="#888888" x1="60.25000000000001" x2="57.25000000000001" y1="218.5" y2="218.5"/>
+  <line stroke="#888888" x1="57.25000000000001" x2="57.25000000000001" y1="218.5" y2="215.50000000000003"/>
+  <line stroke="#888888" x1="58.25000000000001" x2="59.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="59.25000000000001" x2="59.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="59.25000000000001" x2="58.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="58.25000000000001" x2="58.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="55.75" x2="56.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="56.75000000000001" x2="56.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="56.75000000000001" x2="55.75" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="55.75" x2="55.75" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="55.75" x2="56.75000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="56.75000000000001" x2="56.75000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="56.75000000000001" x2="55.75" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="55.75" x2="55.75" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="53.25000000000001" x2="54.25000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="54.25000000000001" x2="54.25000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="54.25000000000001" x2="53.25000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="53.25000000000001" x2="53.25000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="53.25000000000001" x2="54.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="54.25000000000001" x2="54.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="54.25000000000001" x2="53.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="53.25000000000001" x2="53.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="50.75000000000001" x2="51.75" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="51.75" x2="51.75" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="51.75" x2="50.75000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="50.75000000000001" x2="50.75000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="50.75000000000001" x2="51.75" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="51.75" x2="51.75" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="51.75" x2="50.75000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="50.75000000000001" x2="50.75000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="48.25000000000001" x2="49.25000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="49.25000000000001" x2="49.25000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="49.25000000000001" x2="48.25000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="48.25000000000001" x2="48.25000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="48.25000000000001" x2="49.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="49.25000000000001" x2="49.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="49.25000000000001" x2="48.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="48.25000000000001" x2="48.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="45.75000000000001" x2="46.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="46.75000000000001" x2="46.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="46.75000000000001" x2="45.75000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="45.75000000000001" x2="45.75000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="45.75000000000001" x2="46.75000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="46.75000000000001" x2="46.75000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="46.75000000000001" x2="45.75000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="45.75000000000001" x2="45.75000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="43.25" x2="44.25000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="44.25000000000001" x2="44.25000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="44.25000000000001" x2="43.25" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="43.25" x2="43.25" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="43.25" x2="44.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="44.25000000000001" x2="44.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="44.25000000000001" x2="43.25" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="43.25" x2="43.25" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="40.75000000000001" x2="41.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="41.75000000000001" x2="41.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="41.75000000000001" x2="40.75000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="40.75000000000001" x2="40.75000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="40.75000000000001" x2="41.75000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="41.75000000000001" x2="41.75000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="41.75000000000001" x2="40.75000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="40.75000000000001" x2="40.75000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="38.25000000000001" x2="39.25" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="39.25" x2="39.25" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="39.25" x2="38.25000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="38.25000000000001" x2="38.25000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="38.25000000000001" x2="39.25" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="39.25" x2="39.25" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="39.25" x2="38.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="38.25000000000001" x2="38.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="35.75" x2="36.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="36.75000000000001" x2="36.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="36.75000000000001" x2="35.75" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="35.75" x2="35.75" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="35.75" x2="36.75000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="36.75000000000001" x2="36.75000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="36.75000000000001" x2="35.75" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="35.75" x2="35.75" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="33.25000000000001" x2="34.25000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="34.25000000000001" x2="34.25000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="34.25000000000001" x2="33.25000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="33.25000000000001" x2="33.25000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="33.25000000000001" x2="34.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="34.25000000000001" x2="34.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="34.25000000000001" x2="33.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="33.25000000000001" x2="33.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="30.750000000000004" x2="31.750000000000004" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="31.750000000000004" x2="31.750000000000004" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="31.750000000000004" x2="30.750000000000004" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="30.750000000000004" x2="30.750000000000004" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="30.750000000000004" x2="31.750000000000004" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="31.750000000000004" x2="31.750000000000004" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="31.750000000000004" x2="30.750000000000004" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="30.750000000000004" x2="30.750000000000004" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="28.250000000000004" x2="29.250000000000004" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="29.250000000000004" x2="29.250000000000004" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="29.250000000000004" x2="28.250000000000004" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="28.250000000000004" x2="28.250000000000004" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="28.250000000000004" x2="29.250000000000004" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="29.250000000000004" x2="29.250000000000004" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="29.250000000000004" x2="28.250000000000004" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="28.250000000000004" x2="28.250000000000004" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="25.750000000000004" x2="26.75" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="26.75" x2="26.75" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="26.75" x2="25.750000000000004" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="25.750000000000004" x2="25.750000000000004" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="25.750000000000004" x2="26.75" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="26.75" x2="26.75" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="26.75" x2="25.750000000000004" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="25.750000000000004" x2="25.750000000000004" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="23.250000000000004" x2="24.250000000000004" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="24.250000000000004" x2="24.250000000000004" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="24.250000000000004" x2="23.250000000000004" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="23.250000000000004" x2="23.250000000000004" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="23.250000000000004" x2="24.250000000000004" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="24.250000000000004" x2="24.250000000000004" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="24.250000000000004" x2="23.250000000000004" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="23.250000000000004" x2="23.250000000000004" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="20.75" x2="21.750000000000004" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="21.750000000000004" x2="21.750000000000004" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="21.750000000000004" x2="20.75" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="20.75" x2="20.75" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="19.750000000000004" x2="22.75" y1="235.50000000000003" y2="235.50000000000003"/>
+  <line stroke="#888888" x1="22.75" x2="22.75" y1="235.50000000000003" y2="238.50000000000003"/>
+  <line stroke="#888888" x1="22.75" x2="19.750000000000004" y1="238.50000000000003" y2="238.50000000000003"/>
+  <line stroke="#888888" x1="19.750000000000004" x2="19.750000000000004" y1="238.50000000000003" y2="235.50000000000003"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="185.81818181818184" y2="185.81818181818184"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="185.81818181818184" y2="197.63636363636365"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="197.63636363636365" y2="197.63636363636365"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="215.3636363636364" y2="215.3636363636364"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="215.3636363636364" y2="227.18181818181822"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="227.18181818181822" y2="227.18181818181822"/>
+  <line stroke="#888888" x1="269.50000000000006" x2="264.5" y1="338.1818181818182" y2="338.1818181818182"/>
+  <line stroke="#888888" x1="264.5" x2="264.5" y1="338.1818181818182" y2="326.36363636363643"/>
+  <line stroke="#888888" x1="264.5" x2="269.50000000000006" y1="326.36363636363643" y2="326.36363636363643"/>
+  <line stroke="#888888" x1="269.50000000000006" x2="264.5" y1="308.6363636363637" y2="308.6363636363637"/>
+  <line stroke="#888888" x1="264.5" x2="264.5" y1="308.6363636363637" y2="296.81818181818187"/>
+  <line stroke="#888888" x1="264.5" x2="269.50000000000006" y1="296.81818181818187" y2="296.81818181818187"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="377.33333333333337" y2="382.33333333333337"/>
+  <line stroke="#888888" x1="186.5" x2="181.50000000000003" y1="382.33333333333337" y2="377.33333333333337"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="181.50000000000003" y1="377.33333333333337" y2="363.6666666666667"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="186.5" y1="363.6666666666667" y2="358.66666666666674"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="358.66666666666674" y2="363.6666666666667"/>
+  <line stroke="#888888" x1="165.25000000000003" x2="165.25000000000003" y1="405.91666666666674" y2="398.08333333333337"/>
+  <line stroke="#888888" x1="165.25000000000003" x2="165.75" y1="398.08333333333337" y2="398.08333333333337"/>
+  <line stroke="#888888" x1="165.75" x2="165.75" y1="398.08333333333337" y2="405.91666666666674"/>
+  <line stroke="#888888" x1="165.75" x2="165.25000000000003" y1="405.91666666666674" y2="405.91666666666674"/>
+  <line stroke="#888888" x1="113.50000000000001" x2="118.50000000000001" y1="398.33333333333337" y2="398.33333333333337"/>
+  <line stroke="#888888" x1="118.50000000000001" x2="118.50000000000001" y1="398.33333333333337" y2="405.66666666666674"/>
+  <line stroke="#888888" x1="118.50000000000001" x2="113.50000000000001" y1="405.66666666666674" y2="405.66666666666674"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="449.00000000000006" y2="449.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="449.00000000000006" y2="426.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="426.00000000000006" y2="426.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="426.00000000000006" y2="449.00000000000006"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="440.33333333333337" y2="445.33333333333337"/>
+  <line stroke="#888888" x1="186.5" x2="181.50000000000003" y1="445.33333333333337" y2="440.33333333333337"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="181.50000000000003" y1="440.33333333333337" y2="426.66666666666674"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="186.5" y1="426.66666666666674" y2="421.66666666666674"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="421.66666666666674" y2="426.66666666666674"/>
+  <line stroke="#888888" x1="165.25000000000003" x2="165.25000000000003" y1="468.91666666666674" y2="461.08333333333337"/>
+  <line stroke="#888888" x1="165.25000000000003" x2="165.75" y1="461.08333333333337" y2="461.08333333333337"/>
+  <line stroke="#888888" x1="165.75" x2="165.75" y1="461.08333333333337" y2="468.91666666666674"/>
+  <line stroke="#888888" x1="165.75" x2="165.25000000000003" y1="468.91666666666674" y2="468.91666666666674"/>
+  <line stroke="#888888" x1="142.66666666666669" x2="138.33333333333334" y1="478.50000000000006" y2="478.50000000000006"/>
+  <line stroke="#888888" x1="138.33333333333334" x2="138.33333333333334" y1="478.50000000000006" y2="483.50000000000006"/>
+  <line stroke="#888888" x1="138.33333333333334" x2="142.66666666666669" y1="483.50000000000006" y2="483.50000000000006"/>
+  <line stroke="#888888" x1="113.50000000000001" x2="118.50000000000001" y1="461.33333333333337" y2="461.33333333333337"/>
+  <line stroke="#888888" x1="118.50000000000001" x2="118.50000000000001" y1="461.33333333333337" y2="468.6666666666667"/>
+  <line stroke="#888888" x1="118.50000000000001" x2="113.50000000000001" y1="468.6666666666667" y2="468.6666666666667"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="345.33333333333337" x2="345.0050224158704" y1="465.00000000000006" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="345.0050224158704" x2="345.33333333333337" y1="469.17158573440616" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="344.0281737678708" x2="345.0050224158704" y1="473.2404531833319" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="342.4268406450232" x2="344.0281737678708" y1="477.10641332638795" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="340.24045318333197" x2="342.4268406450232" y1="480.674273394466" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="337.522847498308" x2="340.24045318333197" y1="483.8561808316414" y2="480.674273394466"/>
+  <line stroke="#000000" x1="334.3409400611327" x2="337.522847498308" y1="486.5737865166654" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="330.7730799930546" x2="334.3409400611327" y1="488.76017397835653" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="326.9071198499986" x2="330.7730799930546" y1="490.36150710120415" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="322.83825240107285" x2="326.9071198499986" y1="491.33835574920374" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="318.6666666666667" x2="322.83825240107285" y1="491.66666666666674" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="314.4950809322606" x2="318.6666666666667" y1="491.33835574920374" y2="491.66666666666674"/>
+  <line stroke="#000000" x1="310.42621348333483" x2="314.4950809322606" y1="490.36150710120415" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="306.5602533402788" x2="310.42621348333483" y1="488.76017397835653" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="302.9923932722008" x2="306.5602533402788" y1="486.5737865166654" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="299.8104858350255" x2="302.9923932722008" y1="483.8561808316414" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="297.09288015000146" x2="299.8104858350255" y1="480.674273394466" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="294.9064926883102" x2="297.09288015000146" y1="477.10641332638795" y2="480.674273394466"/>
+  <line stroke="#000000" x1="293.3051595654626" x2="294.9064926883102" y1="473.2404531833319" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="292.328310917463" x2="293.3051595654626" y1="469.17158573440616" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="292.0" x2="292.328310917463" y1="465.00000000000006" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="292.328310917463" x2="292.0" y1="460.8284142655939" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="293.3051595654626" x2="292.328310917463" y1="456.75954681666815" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="294.9064926883102" x2="293.3051595654626" y1="452.89358667361216" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="297.09288015000146" x2="294.9064926883102" y1="449.3257266055341" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="299.8104858350255" x2="297.09288015000146" y1="446.1438191683588" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="302.9923932722008" x2="299.8104858350255" y1="443.4262134833348" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="306.5602533402788" x2="302.9923932722008" y1="441.2398260216435" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="310.42621348333483" x2="306.5602533402788" y1="439.63849289879596" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="314.4950809322606" x2="310.42621348333483" y1="438.6616442507963" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="318.6666666666667" x2="314.4950809322606" y1="438.33333333333337" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="322.83825240107285" x2="318.6666666666667" y1="438.6616442507963" y2="438.33333333333337"/>
+  <line stroke="#000000" x1="326.9071198499986" x2="322.83825240107285" y1="439.63849289879596" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="330.7730799930546" x2="326.9071198499986" y1="441.2398260216435" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="334.3409400611327" x2="330.7730799930546" y1="443.4262134833348" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="337.522847498308" x2="334.3409400611327" y1="446.1438191683588" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="340.24045318333197" x2="337.522847498308" y1="449.3257266055341" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="342.4268406450232" x2="340.24045318333197" y1="452.89358667361216" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="344.0281737678708" x2="342.4268406450232" y1="456.75954681666815" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="345.0050224158704" x2="344.0281737678708" y1="460.8284142655939" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="418.6666666666668" x2="418.3383557492038" y1="465.00000000000006" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="418.3383557492038" x2="418.6666666666668" y1="469.17158573440616" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="417.3615071012042" x2="418.3383557492038" y1="473.2404531833319" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="415.7601739783566" x2="417.3615071012042" y1="477.10641332638795" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="413.57378651666534" x2="415.7601739783566" y1="480.674273394466" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="410.8561808316413" x2="413.57378651666534" y1="483.8561808316414" y2="480.674273394466"/>
+  <line stroke="#000000" x1="407.67427339446607" x2="410.8561808316413" y1="486.5737865166654" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="404.106413326388" x2="407.67427339446607" y1="488.76017397835653" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="400.24045318333197" x2="404.106413326388" y1="490.36150710120415" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="396.1715857344062" x2="400.24045318333197" y1="491.33835574920374" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="392.0000000000001" x2="396.1715857344062" y1="491.66666666666674" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="387.82841426559395" x2="392.0000000000001" y1="491.33835574920374" y2="491.66666666666674"/>
+  <line stroke="#000000" x1="383.7595468166682" x2="387.82841426559395" y1="490.36150710120415" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="379.8935866736122" x2="383.7595468166682" y1="488.76017397835653" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="376.32572660553416" x2="379.8935866736122" y1="486.5737865166654" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="373.14381916835885" x2="376.32572660553416" y1="483.8561808316414" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="370.42621348333483" x2="373.14381916835885" y1="480.674273394466" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="368.2398260216436" x2="370.42621348333483" y1="477.10641332638795" y2="480.674273394466"/>
+  <line stroke="#000000" x1="366.638492898796" x2="368.2398260216436" y1="473.2404531833319" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="365.66164425079637" x2="366.638492898796" y1="469.17158573440616" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="365.3333333333334" x2="365.66164425079637" y1="465.00000000000006" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="365.66164425079637" x2="365.3333333333334" y1="460.8284142655939" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="366.638492898796" x2="365.66164425079637" y1="456.75954681666815" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="368.2398260216436" x2="366.638492898796" y1="452.89358667361216" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="370.42621348333483" x2="368.2398260216436" y1="449.3257266055341" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="373.14381916835885" x2="370.42621348333483" y1="446.1438191683588" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="376.32572660553416" x2="373.14381916835885" y1="443.4262134833348" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="379.8935866736122" x2="376.32572660553416" y1="441.2398260216435" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="383.7595468166682" x2="379.8935866736122" y1="439.63849289879596" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="387.82841426559395" x2="383.7595468166682" y1="438.6616442507963" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="392.0000000000001" x2="387.82841426559395" y1="438.33333333333337" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="396.1715857344062" x2="392.0000000000001" y1="438.6616442507963" y2="438.33333333333337"/>
+  <line stroke="#000000" x1="400.24045318333197" x2="396.1715857344062" y1="439.63849289879596" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="404.106413326388" x2="400.24045318333197" y1="441.2398260216435" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="407.67427339446607" x2="404.106413326388" y1="443.4262134833348" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="410.8561808316413" x2="407.67427339446607" y1="446.1438191683588" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="413.57378651666534" x2="410.8561808316413" y1="449.3257266055341" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="415.7601739783566" x2="413.57378651666534" y1="452.89358667361216" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="417.3615071012042" x2="415.7601739783566" y1="456.75954681666815" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="418.3383557492038" x2="417.3615071012042" y1="460.8284142655939" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="492.00000000000017" x2="491.67168908253717" y1="465.00000000000006" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="491.67168908253717" x2="492.00000000000017" y1="469.17158573440616" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="490.6948404345376" x2="491.67168908253717" y1="473.2404531833319" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="489.09350731168996" x2="490.6948404345376" y1="477.10641332638795" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="486.90711984999876" x2="489.09350731168996" y1="480.674273394466" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="484.18951416497475" x2="486.90711984999876" y1="483.8561808316414" y2="480.674273394466"/>
+  <line stroke="#000000" x1="481.00760672779944" x2="484.18951416497475" y1="486.5737865166654" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="477.4397466597214" x2="481.00760672779944" y1="488.76017397835653" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="473.5737865166654" x2="477.4397466597214" y1="490.36150710120415" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="469.50491906773965" x2="473.5737865166654" y1="491.33835574920374" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="465.3333333333335" x2="469.50491906773965" y1="491.66666666666674" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="461.1617475989273" x2="465.3333333333335" y1="491.33835574920374" y2="491.66666666666674"/>
+  <line stroke="#000000" x1="457.0928801500016" x2="461.1617475989273" y1="490.36150710120415" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="453.2269200069456" x2="457.0928801500016" y1="488.76017397835653" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="449.65905993886753" x2="453.2269200069456" y1="486.5737865166654" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="446.4771525016922" x2="449.65905993886753" y1="483.8561808316414" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="443.7595468166682" x2="446.4771525016922" y1="480.674273394466" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="441.573159354977" x2="443.7595468166682" y1="477.10641332638795" y2="480.674273394466"/>
+  <line stroke="#000000" x1="439.9718262321294" x2="441.573159354977" y1="473.2404531833319" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="438.9949775841298" x2="439.9718262321294" y1="469.17158573440616" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="438.6666666666668" x2="438.9949775841298" y1="465.00000000000006" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="438.9949775841298" x2="438.6666666666668" y1="460.8284142655939" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="439.9718262321294" x2="438.9949775841298" y1="456.75954681666815" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="441.573159354977" x2="439.9718262321294" y1="452.89358667361216" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="443.7595468166682" x2="441.573159354977" y1="449.3257266055341" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="446.4771525016922" x2="443.7595468166682" y1="446.1438191683588" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="449.65905993886753" x2="446.4771525016922" y1="443.4262134833348" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="453.2269200069456" x2="449.65905993886753" y1="441.2398260216435" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="457.0928801500016" x2="453.2269200069456" y1="439.63849289879596" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="461.1617475989273" x2="457.0928801500016" y1="438.6616442507963" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="465.3333333333335" x2="461.1617475989273" y1="438.33333333333337" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="469.50491906773965" x2="465.3333333333335" y1="438.6616442507963" y2="438.33333333333337"/>
+  <line stroke="#000000" x1="473.5737865166654" x2="469.50491906773965" y1="439.63849289879596" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="477.4397466597214" x2="473.5737865166654" y1="441.2398260216435" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="481.00760672779944" x2="477.4397466597214" y1="443.4262134833348" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="484.18951416497475" x2="481.00760672779944" y1="446.1438191683588" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="486.90711984999876" x2="484.18951416497475" y1="449.3257266055341" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="489.09350731168996" x2="486.90711984999876" y1="452.89358667361216" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="490.6948404345376" x2="489.09350731168996" y1="456.75954681666815" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="491.67168908253717" x2="490.6948404345376" y1="460.8284142655939" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="565.3333333333334" x2="565.0050224158704" y1="465.00000000000006" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="565.0050224158704" x2="565.3333333333334" y1="469.17158573440616" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="564.0281737678708" x2="565.0050224158704" y1="473.2404531833319" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="562.4268406450233" x2="564.0281737678708" y1="477.10641332638795" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="560.2404531833321" x2="562.4268406450233" y1="480.674273394466" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="557.5228474983081" x2="560.2404531833321" y1="483.8561808316414" y2="480.674273394466"/>
+  <line stroke="#000000" x1="554.3409400611328" x2="557.5228474983081" y1="486.5737865166654" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="550.7730799930548" x2="554.3409400611328" y1="488.76017397835653" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="546.9071198499987" x2="550.7730799930548" y1="490.36150710120415" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="542.838252401073" x2="546.9071198499987" y1="491.33835574920374" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="538.6666666666669" x2="542.838252401073" y1="491.66666666666674" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="534.4950809322607" x2="538.6666666666669" y1="491.33835574920374" y2="491.66666666666674"/>
+  <line stroke="#000000" x1="530.4262134833349" x2="534.4950809322607" y1="490.36150710120415" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="526.5602533402789" x2="530.4262134833349" y1="488.76017397835653" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="522.992393272201" x2="526.5602533402789" y1="486.5737865166654" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="519.8104858350256" x2="522.992393272201" y1="483.8561808316414" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="517.0928801500016" x2="519.8104858350256" y1="480.674273394466" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="514.9064926883103" x2="517.0928801500016" y1="477.10641332638795" y2="480.674273394466"/>
+  <line stroke="#000000" x1="513.3051595654628" x2="514.9064926883103" y1="473.2404531833319" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="512.3283109174631" x2="513.3051595654628" y1="469.17158573440616" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="512.0000000000002" x2="512.3283109174631" y1="465.00000000000006" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="512.3283109174631" x2="512.0000000000002" y1="460.8284142655939" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="513.3051595654628" x2="512.3283109174631" y1="456.75954681666815" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="514.9064926883102" x2="513.3051595654628" y1="452.89358667361216" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="517.0928801500016" x2="514.9064926883102" y1="449.3257266055341" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="519.8104858350256" x2="517.0928801500016" y1="446.1438191683588" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="522.992393272201" x2="519.8104858350256" y1="443.4262134833348" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="526.5602533402789" x2="522.992393272201" y1="441.2398260216435" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="530.4262134833349" x2="526.5602533402789" y1="439.63849289879596" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="534.4950809322607" x2="530.4262134833349" y1="438.6616442507963" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="538.6666666666669" x2="534.4950809322607" y1="438.33333333333337" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="542.838252401073" x2="538.6666666666669" y1="438.6616442507963" y2="438.33333333333337"/>
+  <line stroke="#000000" x1="546.9071198499987" x2="542.838252401073" y1="439.63849289879596" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="550.7730799930548" x2="546.9071198499987" y1="441.2398260216435" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="554.3409400611328" x2="550.7730799930548" y1="443.4262134833348" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="557.5228474983081" x2="554.3409400611328" y1="446.1438191683588" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="560.2404531833321" x2="557.5228474983081" y1="449.3257266055341" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="562.4268406450232" x2="560.2404531833321" y1="452.89358667361216" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="564.0281737678708" x2="562.4268406450232" y1="456.75954681666815" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="565.0050224158704" x2="564.0281737678708" y1="460.8284142655939" y2="456.75954681666815"/>
+</svg>
diff --git a/rocolib/builders/output/CarForSteering/graph-autofold-default.dxf b/rocolib/builders/output/CarForSteering/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..c16ddc2b4d5b4c92425d0d4bd3acf02986c170bd
--- /dev/null
+++ b/rocolib/builders/output/CarForSteering/graph-autofold-default.dxf
@@ -0,0 +1,19784 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+9
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+180
+ 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
+134.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+134.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.00000000000001
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+121.00000000000001
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+134.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+147.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+147.00000000000003
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+134.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+147.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+147.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+147.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+147.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+134.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+134.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+147.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+391.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+166.0
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+350.0
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+166.0
+ 20
+391.0
+ 30
+0.0
+ 11
+166.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+391.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+166.0
+ 20
+350.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+179.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+350.0
+ 30
+0.0
+ 11
+166.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+166.0
+ 20
+350.0
+ 30
+0.0
+ 11
+166.0
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+202.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+166.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+106.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+111.00009098110239
+ 20
+262.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.00018196220475
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+161.0000909811024
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+161.0000909811024
+ 20
+262.0
+ 30
+0.0
+ 11
+166.00018196220475
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+111.00009098110239
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+166.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+166.0
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+106.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+125.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+166.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+125.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.00000000000003
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+138.00000000000003
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.0
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+157.0
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.00000000000003
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+157.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+93.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+70.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+46.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+73.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+106.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+125.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+112.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+99.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+99.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.00000000000003
+ 20
+0.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+151.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+161.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+161.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.0
+ 20
+73.0
+ 30
+0.0
+ 11
+157.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+157.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.0
+ 20
+73.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+130.0
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.0
+ 20
+73.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+130.0
+ 20
+73.0
+ 30
+0.0
+ 11
+130.0
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+130.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.00000000000003
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+140.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.0
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+140.00000000000003
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.0
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+83.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+83.0
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+166.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+70.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+10.000000000000002
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+64.99990901889764
+ 20
+262.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+14.999909018897627
+ 20
+262.0
+ 30
+0.0
+ 11
+64.99990901889764
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+9.99981803779525
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+14.999909018897627
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+0.0
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+0.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+262.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+262.0
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+207.00009098110237
+ 20
+262.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+257.00009098110246
+ 20
+262.0
+ 30
+0.0
+ 11
+207.00009098110237
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+262.00018196220475
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+257.00009098110246
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+272.0
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+272.0
+ 20
+350.0
+ 30
+0.0
+ 11
+272.0
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+262.0
+ 20
+350.0
+ 30
+0.0
+ 11
+272.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+189.0
+ 20
+350.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+189.0
+ 20
+391.0
+ 30
+0.0
+ 11
+189.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+189.0
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+160.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+160.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+173.0
+ 20
+391.0
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+173.0
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+160.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.00000000000001
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+121.00000000000001
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+111.00000000000001
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+111.00000000000001
+ 20
+391.0
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.00000000000001
+ 20
+391.0
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+166.0
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+179.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+189.0
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+189.0
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+160.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+160.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.00000000000003
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+173.0
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+173.0
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+160.00000000000003
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.00000000000003
+ 20
+486.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.00000000000003
+ 20
+486.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+486.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.00000000000003
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+486.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+111.00000000000001
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+111.00000000000001
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.00000000000001
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+426.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+440.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+440.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+440.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.25000000000001
+ 20
+440.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+426.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.25000000000001
+ 20
+426.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+426.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.91666666666666
+ 20
+357.75000000000006
+ 30
+0.0
+ 11
+142.91666666666666
+ 21
+352.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.91666666666666
+ 20
+352.25000000000006
+ 30
+0.0
+ 11
+142.41666666666669
+ 21
+352.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.41666666666669
+ 20
+352.25000000000006
+ 30
+0.0
+ 11
+142.41666666666669
+ 21
+357.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.41666666666669
+ 20
+357.75000000000006
+ 30
+0.0
+ 11
+142.91666666666666
+ 21
+357.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+363.4166666666667
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+377.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+377.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+377.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.25000000000001
+ 20
+377.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+363.4166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.25000000000001
+ 20
+363.4166666666667
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+363.4166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+378.0
+ 30
+0.0
+ 11
+166.065
+ 21
+378.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+378.0
+ 30
+0.0
+ 11
+166.065
+ 21
+355.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+355.0
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+355.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+355.0
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+378.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+345.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+345.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+345.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+345.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+345.00000000000006
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+345.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+345.00000000000006
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+345.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.75000000000001
+ 20
+326.11363636363643
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+338.4318181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.75000000000001
+ 20
+338.4318181818182
+ 30
+0.0
+ 11
+77.25
+ 21
+338.4318181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.25
+ 20
+338.4318181818182
+ 30
+0.0
+ 11
+77.25
+ 21
+326.11363636363643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.25
+ 20
+326.11363636363643
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+326.11363636363643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.75000000000001
+ 20
+296.56818181818187
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+308.8863636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.75000000000001
+ 20
+308.8863636363637
+ 30
+0.0
+ 11
+77.25
+ 21
+308.8863636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.25
+ 20
+308.8863636363637
+ 30
+0.0
+ 11
+77.25
+ 21
+296.56818181818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.25
+ 20
+296.56818181818187
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+296.56818181818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.25000000000003
+ 20
+215.50000000000003
+ 30
+0.0
+ 11
+156.25000000000003
+ 21
+215.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+156.25000000000003
+ 20
+215.50000000000003
+ 30
+0.0
+ 11
+156.25000000000003
+ 21
+218.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+156.25000000000003
+ 20
+218.5
+ 30
+0.0
+ 11
+153.25000000000003
+ 21
+218.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.25000000000003
+ 20
+218.5
+ 30
+0.0
+ 11
+153.25000000000003
+ 21
+215.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+154.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+155.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+155.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+155.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+155.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+154.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+154.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+154.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+150.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+150.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+150.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+150.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+146.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+146.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+146.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+146.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+145.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+145.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+145.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+145.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+139.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+139.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+139.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+139.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+137.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+137.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+137.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+137.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+135.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+135.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+135.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+135.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+131.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+131.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+131.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+131.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+119.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+120.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+120.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+119.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+119.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+120.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+120.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+119.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+117.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+117.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+117.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+117.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+116.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+116.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.75000000000001
+ 20
+235.50000000000003
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+235.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.75000000000001
+ 20
+235.50000000000003
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+238.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.75000000000001
+ 20
+238.50000000000003
+ 30
+0.0
+ 11
+115.75000000000001
+ 21
+238.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.75000000000001
+ 20
+238.50000000000003
+ 30
+0.0
+ 11
+115.75000000000001
+ 21
+235.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.08333333333337
+ 20
+166.25
+ 30
+0.0
+ 11
+129.08333333333337
+ 21
+171.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.08333333333337
+ 20
+171.75000000000003
+ 30
+0.0
+ 11
+129.58333333333337
+ 21
+171.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.58333333333337
+ 20
+171.75000000000003
+ 30
+0.0
+ 11
+129.58333333333337
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.58333333333337
+ 20
+166.25
+ 30
+0.0
+ 11
+129.08333333333337
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+160.58333333333334
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+146.4166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+146.4166666666667
+ 30
+0.0
+ 11
+149.75
+ 21
+146.4166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.75
+ 20
+146.4166666666667
+ 30
+0.0
+ 11
+149.75
+ 21
+160.58333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.75
+ 20
+160.58333333333334
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+160.58333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+146.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+146.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+146.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+169.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+169.00000000000003
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+169.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+169.00000000000003
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+146.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.8857142857143
+ 20
+79.00000000000001
+ 30
+0.0
+ 11
+92.8857142857143
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+92.8857142857143
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+72.31428571428573
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+72.31428571428573
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+72.31428571428573
+ 21
+79.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+72.31428571428573
+ 20
+79.00000000000001
+ 30
+0.0
+ 11
+92.8857142857143
+ 21
+79.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+69.5
+ 20
+120.25000000000001
+ 30
+0.0
+ 11
+69.5
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+69.5
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+66.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+66.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+66.50000000000001
+ 21
+120.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+66.50000000000001
+ 20
+120.25000000000001
+ 30
+0.0
+ 11
+69.5
+ 21
+120.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+121.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+122.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+122.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+122.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+122.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+121.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+121.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+121.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+83.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+84.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000001
+ 20
+84.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+84.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+84.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+83.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.50000000000001
+ 20
+83.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+83.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.5
+ 20
+82.75000000000001
+ 30
+0.0
+ 11
+49.5
+ 21
+85.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.5
+ 20
+85.75000000000001
+ 30
+0.0
+ 11
+46.50000000000001
+ 21
+85.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.50000000000001
+ 20
+85.75000000000001
+ 30
+0.0
+ 11
+46.50000000000001
+ 21
+82.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.50000000000001
+ 20
+82.75000000000001
+ 30
+0.0
+ 11
+49.5
+ 21
+82.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.44571428571429
+ 20
+77.30000000000003
+ 30
+0.0
+ 11
+40.44571428571429
+ 21
+90.30000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.44571428571429
+ 20
+90.30000000000003
+ 30
+0.0
+ 11
+19.874285714285723
+ 21
+90.30000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+19.874285714285723
+ 20
+90.30000000000003
+ 30
+0.0
+ 11
+19.874285714285723
+ 21
+77.30000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+19.874285714285723
+ 20
+77.30000000000003
+ 30
+0.0
+ 11
+40.44571428571429
+ 21
+77.30000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.750000000000004
+ 20
+92.75000000000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.750000000000004
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+17.250000000000004
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.250000000000004
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+17.250000000000004
+ 21
+92.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.250000000000004
+ 20
+92.75000000000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+92.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+37.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+37.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+37.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+37.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.75000000000001
+ 20
+17.083333333333318
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+24.916666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.75000000000001
+ 20
+24.916666666666686
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+24.916666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.25000000000001
+ 20
+24.916666666666686
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+17.083333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.25000000000001
+ 20
+17.083333333333318
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+17.083333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.33333333333337
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+133.66666666666669
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+133.66666666666669
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+133.66666666666669
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+133.66666666666669
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+129.33333333333337
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+158.50000000000003
+ 20
+24.666666666666686
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+24.666666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.50000000000003
+ 20
+24.666666666666686
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+17.333333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.50000000000003
+ 20
+17.333333333333318
+ 30
+0.0
+ 11
+158.50000000000003
+ 21
+17.333333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+59.58333333333332
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+45.416666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+45.416666666666686
+ 30
+0.0
+ 11
+149.75
+ 21
+45.416666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.75
+ 20
+45.416666666666686
+ 30
+0.0
+ 11
+149.75
+ 21
+59.58333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.75
+ 20
+59.58333333333332
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+59.58333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.50000000000001
+ 20
+45.66666666666669
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+40.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.50000000000001
+ 20
+40.66666666666669
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+45.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.50000000000001
+ 20
+45.66666666666669
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+59.33333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.50000000000001
+ 20
+59.33333333333332
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+64.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.50000000000001
+ 20
+64.33333333333333
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+59.33333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.50000000000003
+ 20
+120.25000000000001
+ 30
+0.0
+ 11
+129.50000000000003
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.50000000000003
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+126.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+126.50000000000001
+ 21
+120.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.50000000000001
+ 20
+120.25000000000001
+ 30
+0.0
+ 11
+129.50000000000003
+ 21
+120.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+121.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+122.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+122.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+122.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+122.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+121.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+121.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+121.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+113.75
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+101.25
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+92.25
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+88.75
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+89.75
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+83.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+84.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.50000000000003
+ 20
+84.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+84.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+84.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+83.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.50000000000001
+ 20
+83.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+83.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+109.50000000000001
+ 20
+82.75000000000001
+ 30
+0.0
+ 11
+109.50000000000001
+ 21
+85.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+109.50000000000001
+ 20
+85.75000000000001
+ 30
+0.0
+ 11
+106.50000000000001
+ 21
+85.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.50000000000001
+ 20
+85.75000000000001
+ 30
+0.0
+ 11
+106.50000000000001
+ 21
+82.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.50000000000001
+ 20
+82.75000000000001
+ 30
+0.0
+ 11
+109.50000000000001
+ 21
+82.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+137.50000000000003
+ 20
+113.00000000000001
+ 30
+0.0
+ 11
+137.50000000000003
+ 21
+118.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+137.50000000000003
+ 20
+118.00000000000001
+ 30
+0.0
+ 11
+132.50000000000003
+ 21
+113.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.50000000000003
+ 20
+113.00000000000001
+ 30
+0.0
+ 11
+132.50000000000003
+ 21
+93.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.50000000000003
+ 20
+93.00000000000001
+ 30
+0.0
+ 11
+137.50000000000003
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+137.50000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+137.50000000000003
+ 21
+93.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.50000000000001
+ 20
+146.6666666666667
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+141.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.50000000000001
+ 20
+141.6666666666667
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+146.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.50000000000001
+ 20
+146.6666666666667
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+160.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.50000000000001
+ 20
+160.33333333333334
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+165.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.50000000000001
+ 20
+165.33333333333334
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+160.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+173.56000000000003
+ 20
+177.79000000000005
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+176.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+173.56000000000003
+ 20
+176.71
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+176.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+191.56000000000003
+ 20
+176.71
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+177.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+191.56000000000003
+ 20
+177.79000000000005
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+177.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+173.56000000000003
+ 20
+210.29000000000002
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+209.21000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+173.56000000000003
+ 20
+209.21000000000004
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+209.21000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+191.56000000000003
+ 20
+209.21000000000004
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+210.29000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+191.56000000000003
+ 20
+210.29000000000002
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+210.29000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+173.56000000000003
+ 20
+234.52000000000004
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+220.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+173.56000000000003
+ 20
+220.48000000000002
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+220.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+191.56000000000003
+ 20
+220.48000000000002
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+234.52000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+191.56000000000003
+ 20
+234.52000000000004
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+234.52000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+179.00000000000003
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+179.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+179.00000000000003
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+202.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+202.00000000000003
+ 30
+0.0
+ 11
+166.065
+ 21
+202.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+202.00000000000003
+ 30
+0.0
+ 11
+166.065
+ 21
+179.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.25000000000003
+ 20
+197.88636363636365
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+185.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.25000000000003
+ 20
+185.56818181818184
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+185.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.75000000000003
+ 20
+185.56818181818184
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+197.88636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.75000000000003
+ 20
+197.88636363636365
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+197.88636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.25000000000003
+ 20
+227.43181818181822
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+215.1136363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.25000000000003
+ 20
+215.1136363636364
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+215.1136363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.75000000000003
+ 20
+215.1136363636364
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+227.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.75000000000003
+ 20
+227.43181818181822
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+227.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.40000000000002
+ 20
+177.79000000000005
+ 30
+0.0
+ 11
+75.40000000000002
+ 21
+176.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.40000000000002
+ 20
+176.71
+ 30
+0.0
+ 11
+93.40000000000002
+ 21
+176.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.40000000000002
+ 20
+176.71
+ 30
+0.0
+ 11
+93.40000000000002
+ 21
+177.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.40000000000002
+ 20
+177.79000000000005
+ 30
+0.0
+ 11
+75.40000000000002
+ 21
+177.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.40000000000002
+ 20
+210.29000000000002
+ 30
+0.0
+ 11
+75.40000000000002
+ 21
+209.21000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.40000000000002
+ 20
+209.21000000000004
+ 30
+0.0
+ 11
+93.40000000000002
+ 21
+209.21000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.40000000000002
+ 20
+209.21000000000004
+ 30
+0.0
+ 11
+93.40000000000002
+ 21
+210.29000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.40000000000002
+ 20
+210.29000000000002
+ 30
+0.0
+ 11
+75.40000000000002
+ 21
+210.29000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.80000000000001
+ 20
+234.52000000000004
+ 30
+0.0
+ 11
+71.80000000000001
+ 21
+220.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.80000000000001
+ 20
+220.48000000000002
+ 30
+0.0
+ 11
+97.00000000000001
+ 21
+220.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+97.00000000000001
+ 20
+220.48000000000002
+ 30
+0.0
+ 11
+97.00000000000001
+ 21
+234.52000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+97.00000000000001
+ 20
+234.52000000000004
+ 30
+0.0
+ 11
+71.80000000000001
+ 21
+234.52000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+202.00000000000003
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+202.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+202.00000000000003
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+179.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+179.00000000000003
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+179.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+179.00000000000003
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+202.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+57.25000000000001
+ 20
+215.50000000000003
+ 30
+0.0
+ 11
+60.25000000000001
+ 21
+215.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+60.25000000000001
+ 20
+215.50000000000003
+ 30
+0.0
+ 11
+60.25000000000001
+ 21
+218.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+60.25000000000001
+ 20
+218.5
+ 30
+0.0
+ 11
+57.25000000000001
+ 21
+218.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+57.25000000000001
+ 20
+218.5
+ 30
+0.0
+ 11
+57.25000000000001
+ 21
+215.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+58.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+59.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+59.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+59.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+59.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+58.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+58.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+58.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+55.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+56.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+56.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+56.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+56.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+55.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+55.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+55.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+55.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+56.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+56.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+56.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+56.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+55.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+55.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+55.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+53.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+54.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+54.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+54.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+54.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+53.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+53.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+53.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+53.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+54.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+54.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+54.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+54.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+53.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+53.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+53.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+50.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+51.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+51.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+51.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+51.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+50.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+50.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+50.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+50.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+51.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+51.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+51.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+51.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+50.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+50.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+50.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+49.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+49.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+48.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+48.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+49.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+49.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+48.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+48.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+45.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+46.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+46.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+45.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+45.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+45.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+45.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+46.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+46.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+45.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+45.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+45.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+43.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+44.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+44.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+43.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+43.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+43.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+43.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+44.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+44.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+43.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+43.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+43.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+41.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+41.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+41.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+41.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+40.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+40.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+41.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+41.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+41.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+41.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+40.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+40.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+38.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+39.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+39.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+39.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+39.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+38.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+38.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+38.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+38.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+39.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+39.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+39.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+39.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+38.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+38.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+38.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+35.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+36.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+36.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+36.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+36.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+35.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+35.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+35.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+35.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+36.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+36.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+36.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+36.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+35.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+35.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+35.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+34.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+34.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+33.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+33.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+34.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+34.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+33.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+33.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+30.750000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+31.750000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.750000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+31.750000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.750000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+30.750000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+30.750000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+30.750000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+30.750000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+31.750000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.750000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+31.750000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.750000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+30.750000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+30.750000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+30.750000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+28.250000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+29.250000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+29.250000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+29.250000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+29.250000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+28.250000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+28.250000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+28.250000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+28.250000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+29.250000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+29.250000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+29.250000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+29.250000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+28.250000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+28.250000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+28.250000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+25.750000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+26.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+26.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+25.750000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+25.750000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+25.750000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+25.750000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+26.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+26.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+25.750000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+25.750000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+25.750000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+23.250000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+24.250000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+24.250000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+24.250000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+24.250000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+23.250000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+23.250000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+23.250000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+23.250000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+24.250000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+24.250000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+24.250000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+24.250000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+23.250000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+23.250000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+23.250000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+20.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+21.750000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.750000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+21.750000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.750000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+20.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+20.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+20.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+19.750000000000004
+ 20
+235.50000000000003
+ 30
+0.0
+ 11
+22.75
+ 21
+235.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+22.75
+ 20
+235.50000000000003
+ 30
+0.0
+ 11
+22.75
+ 21
+238.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+22.75
+ 20
+238.50000000000003
+ 30
+0.0
+ 11
+19.750000000000004
+ 21
+238.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+19.750000000000004
+ 20
+238.50000000000003
+ 30
+0.0
+ 11
+19.750000000000004
+ 21
+235.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+185.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+185.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+185.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+197.63636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+197.63636363636365
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+197.63636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+215.3636363636364
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+215.3636363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+215.3636363636364
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+227.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+227.18181818181822
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+227.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+269.50000000000006
+ 20
+338.1818181818182
+ 30
+0.0
+ 11
+264.5
+ 21
+338.1818181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+264.5
+ 20
+338.1818181818182
+ 30
+0.0
+ 11
+264.5
+ 21
+326.36363636363643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+264.5
+ 20
+326.36363636363643
+ 30
+0.0
+ 11
+269.50000000000006
+ 21
+326.36363636363643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+269.50000000000006
+ 20
+308.6363636363637
+ 30
+0.0
+ 11
+264.5
+ 21
+308.6363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+264.5
+ 20
+308.6363636363637
+ 30
+0.0
+ 11
+264.5
+ 21
+296.81818181818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+264.5
+ 20
+296.81818181818187
+ 30
+0.0
+ 11
+269.50000000000006
+ 21
+296.81818181818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.5
+ 20
+377.33333333333337
+ 30
+0.0
+ 11
+186.5
+ 21
+382.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.5
+ 20
+382.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+377.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+181.50000000000003
+ 20
+377.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+181.50000000000003
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+186.5
+ 21
+358.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.5
+ 20
+358.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.25000000000003
+ 20
+405.91666666666674
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+398.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.25000000000003
+ 20
+398.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+398.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.75
+ 20
+398.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+405.91666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.75
+ 20
+405.91666666666674
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+405.91666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.50000000000001
+ 20
+398.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+398.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.50000000000001
+ 20
+398.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+405.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.50000000000001
+ 20
+405.66666666666674
+ 30
+0.0
+ 11
+113.50000000000001
+ 21
+405.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+449.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+449.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+449.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+426.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+426.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+426.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+426.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+449.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.5
+ 20
+440.33333333333337
+ 30
+0.0
+ 11
+186.5
+ 21
+445.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.5
+ 20
+445.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+440.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+181.50000000000003
+ 20
+440.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+426.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+181.50000000000003
+ 20
+426.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+421.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.5
+ 20
+421.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+426.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.25000000000003
+ 20
+468.91666666666674
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+461.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.25000000000003
+ 20
+461.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+461.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.75
+ 20
+461.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+468.91666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.75
+ 20
+468.91666666666674
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+468.91666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.66666666666669
+ 20
+478.50000000000006
+ 30
+0.0
+ 11
+138.33333333333334
+ 21
+478.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.33333333333334
+ 20
+478.50000000000006
+ 30
+0.0
+ 11
+138.33333333333334
+ 21
+483.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.33333333333334
+ 20
+483.50000000000006
+ 30
+0.0
+ 11
+142.66666666666669
+ 21
+483.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.50000000000001
+ 20
+461.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+461.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.50000000000001
+ 20
+461.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+468.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.50000000000001
+ 20
+468.6666666666667
+ 30
+0.0
+ 11
+113.50000000000001
+ 21
+468.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+282.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+282.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+282.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+282.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+282.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+282.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+282.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+282.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+345.0050224158704
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0050224158704
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+345.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.0281737678708
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+345.0050224158704
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+342.4268406450232
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+344.0281737678708
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+340.24045318333197
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+342.4268406450232
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+337.522847498308
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+340.24045318333197
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+334.3409400611327
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+337.522847498308
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+330.7730799930546
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+334.3409400611327
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+326.9071198499986
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+330.7730799930546
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+322.83825240107285
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+326.9071198499986
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+318.6666666666667
+ 20
+491.66666666666674
+ 30
+0.0
+ 11
+322.83825240107285
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+314.4950809322606
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+318.6666666666667
+ 21
+491.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+310.42621348333483
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+314.4950809322606
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+306.5602533402788
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+310.42621348333483
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+302.9923932722008
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+306.5602533402788
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+299.8104858350255
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+302.9923932722008
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+297.09288015000146
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+299.8104858350255
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+294.9064926883102
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+297.09288015000146
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+293.3051595654626
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+294.9064926883102
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+292.328310917463
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+293.3051595654626
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+292.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+292.328310917463
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+292.328310917463
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+292.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+293.3051595654626
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+292.328310917463
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+294.9064926883102
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+293.3051595654626
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+297.09288015000146
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+294.9064926883102
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+299.8104858350255
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+297.09288015000146
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+302.9923932722008
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+299.8104858350255
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+306.5602533402788
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+302.9923932722008
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+310.42621348333483
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+306.5602533402788
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+314.4950809322606
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+310.42621348333483
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+318.6666666666667
+ 20
+438.33333333333337
+ 30
+0.0
+ 11
+314.4950809322606
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+322.83825240107285
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+318.6666666666667
+ 21
+438.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+326.9071198499986
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+322.83825240107285
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+330.7730799930546
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+326.9071198499986
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+334.3409400611327
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+330.7730799930546
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+337.522847498308
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+334.3409400611327
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+340.24045318333197
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+337.522847498308
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+342.4268406450232
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+340.24045318333197
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.0281737678708
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+342.4268406450232
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0050224158704
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+344.0281737678708
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+355.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+355.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+355.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+355.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+418.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+418.3383557492038
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+418.3383557492038
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+418.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+417.3615071012042
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+418.3383557492038
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+415.7601739783566
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+417.3615071012042
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+413.57378651666534
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+415.7601739783566
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+410.8561808316413
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+413.57378651666534
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+407.67427339446607
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+410.8561808316413
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+404.106413326388
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+407.67427339446607
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.24045318333197
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+404.106413326388
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+396.1715857344062
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+400.24045318333197
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+392.0000000000001
+ 20
+491.66666666666674
+ 30
+0.0
+ 11
+396.1715857344062
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+387.82841426559395
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+392.0000000000001
+ 21
+491.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+383.7595468166682
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+387.82841426559395
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+379.8935866736122
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+383.7595468166682
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+376.32572660553416
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+379.8935866736122
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+373.14381916835885
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+376.32572660553416
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+370.42621348333483
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+373.14381916835885
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+368.2398260216436
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+370.42621348333483
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+366.638492898796
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+368.2398260216436
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+365.66164425079637
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+366.638492898796
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+365.3333333333334
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+365.66164425079637
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+365.66164425079637
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+365.3333333333334
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+366.638492898796
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+365.66164425079637
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+368.2398260216436
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+366.638492898796
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+370.42621348333483
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+368.2398260216436
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+373.14381916835885
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+370.42621348333483
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+376.32572660553416
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+373.14381916835885
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+379.8935866736122
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+376.32572660553416
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+383.7595468166682
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+379.8935866736122
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+387.82841426559395
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+383.7595468166682
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+392.0000000000001
+ 20
+438.33333333333337
+ 30
+0.0
+ 11
+387.82841426559395
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+396.1715857344062
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+392.0000000000001
+ 21
+438.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.24045318333197
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+396.1715857344062
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+404.106413326388
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+400.24045318333197
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+407.67427339446607
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+404.106413326388
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+410.8561808316413
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+407.67427339446607
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+413.57378651666534
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+410.8561808316413
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+415.7601739783566
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+413.57378651666534
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+417.3615071012042
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+415.7601739783566
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+418.3383557492038
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+417.3615071012042
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+492.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+491.67168908253717
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+491.67168908253717
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+492.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+490.6948404345376
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+491.67168908253717
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+489.09350731168996
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+490.6948404345376
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+486.90711984999876
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+489.09350731168996
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.18951416497475
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+486.90711984999876
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+481.00760672779944
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+484.18951416497475
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+477.4397466597214
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+481.00760672779944
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+473.5737865166654
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+477.4397466597214
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+469.50491906773965
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+473.5737865166654
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+465.3333333333335
+ 20
+491.66666666666674
+ 30
+0.0
+ 11
+469.50491906773965
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+461.1617475989273
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+465.3333333333335
+ 21
+491.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+457.0928801500016
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+461.1617475989273
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+453.2269200069456
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+457.0928801500016
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+449.65905993886753
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+453.2269200069456
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+446.4771525016922
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+449.65905993886753
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+443.7595468166682
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+446.4771525016922
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+441.573159354977
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+443.7595468166682
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+439.9718262321294
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+441.573159354977
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.9949775841298
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+439.9718262321294
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+438.9949775841298
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.9949775841298
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+438.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+439.9718262321294
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+438.9949775841298
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+441.573159354977
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+439.9718262321294
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+443.7595468166682
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+441.573159354977
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+446.4771525016922
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+443.7595468166682
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+449.65905993886753
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+446.4771525016922
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+453.2269200069456
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+449.65905993886753
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+457.0928801500016
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+453.2269200069456
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+461.1617475989273
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+457.0928801500016
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+465.3333333333335
+ 20
+438.33333333333337
+ 30
+0.0
+ 11
+461.1617475989273
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+469.50491906773965
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+465.3333333333335
+ 21
+438.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+473.5737865166654
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+469.50491906773965
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+477.4397466597214
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+473.5737865166654
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+481.00760672779944
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+477.4397466597214
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.18951416497475
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+481.00760672779944
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+486.90711984999876
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+484.18951416497475
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+489.09350731168996
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+486.90711984999876
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+490.6948404345376
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+489.09350731168996
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+491.67168908253717
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+490.6948404345376
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+502.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+502.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+502.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+502.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.3333333333334
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+565.0050224158704
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.0050224158704
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+565.3333333333334
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+564.0281737678708
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+565.0050224158704
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+562.4268406450233
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+564.0281737678708
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.2404531833321
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+562.4268406450233
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+557.5228474983081
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+560.2404531833321
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+554.3409400611328
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+557.5228474983081
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+550.7730799930548
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+554.3409400611328
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.9071198499987
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+550.7730799930548
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+542.838252401073
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+546.9071198499987
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+538.6666666666669
+ 20
+491.66666666666674
+ 30
+0.0
+ 11
+542.838252401073
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+534.4950809322607
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+538.6666666666669
+ 21
+491.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+530.4262134833349
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+534.4950809322607
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+526.5602533402789
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+530.4262134833349
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+522.992393272201
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+526.5602533402789
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+519.8104858350256
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+522.992393272201
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+517.0928801500016
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+519.8104858350256
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+514.9064926883103
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+517.0928801500016
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+513.3051595654628
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+514.9064926883103
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+512.3283109174631
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+513.3051595654628
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+512.0000000000002
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+512.3283109174631
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+512.3283109174631
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+512.0000000000002
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+513.3051595654628
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+512.3283109174631
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+514.9064926883102
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+513.3051595654628
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+517.0928801500016
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+514.9064926883102
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+519.8104858350256
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+517.0928801500016
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+522.992393272201
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+519.8104858350256
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+526.5602533402789
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+522.992393272201
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+530.4262134833349
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+526.5602533402789
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+534.4950809322607
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+530.4262134833349
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+538.6666666666669
+ 20
+438.33333333333337
+ 30
+0.0
+ 11
+534.4950809322607
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+542.838252401073
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+538.6666666666669
+ 21
+438.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.9071198499987
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+542.838252401073
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+550.7730799930548
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+546.9071198499987
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+554.3409400611328
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+550.7730799930548
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+557.5228474983081
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+554.3409400611328
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.2404531833321
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+557.5228474983081
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+562.4268406450232
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+560.2404531833321
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+564.0281737678708
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+562.4268406450232
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.0050224158704
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+564.0281737678708
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/CarForSteering/graph-autofold-graph.dxf b/rocolib/builders/output/CarForSteering/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..426265cfc97de2e25e7dd158b9c1c343304f0b77
--- /dev/null
+++ b/rocolib/builders/output/CarForSteering/graph-autofold-graph.dxf
@@ -0,0 +1,19744 @@
+  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
+134.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.00000000000001
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+121.00000000000001
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+391.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+166.0
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+350.0
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+391.0
+ 30
+0.0
+ 11
+166.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+391.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+350.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+179.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+350.0
+ 30
+0.0
+ 11
+166.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+350.0
+ 30
+0.0
+ 11
+166.0
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+202.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+166.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00009098110239
+ 20
+262.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.00018196220475
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+161.0000909811024
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.0000909811024
+ 20
+262.0
+ 30
+0.0
+ 11
+166.00018196220475
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+111.00009098110239
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+166.0
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+166.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+138.00000000000003
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+157.0
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+157.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+93.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+70.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+46.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+73.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+112.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+99.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+99.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+0.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+151.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+73.0
+ 30
+0.0
+ 11
+157.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+157.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+73.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+130.0
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+73.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+130.0
+ 20
+73.0
+ 30
+0.0
+ 11
+130.0
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+130.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.00000000000003
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+140.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+140.00000000000003
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+83.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+83.0
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+166.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+70.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+10.000000000000002
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+64.99990901889764
+ 20
+262.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.999909018897627
+ 20
+262.0
+ 30
+0.0
+ 11
+64.99990901889764
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+9.99981803779525
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+14.999909018897627
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+0.0
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+0.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+262.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+262.0
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+207.00009098110237
+ 20
+262.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+257.00009098110246
+ 20
+262.0
+ 30
+0.0
+ 11
+207.00009098110237
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.00018196220475
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+257.00009098110246
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.0
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.0
+ 20
+350.0
+ 30
+0.0
+ 11
+272.0
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.0
+ 20
+350.0
+ 30
+0.0
+ 11
+272.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+350.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+391.0
+ 30
+0.0
+ 11
+189.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+189.0
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+160.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.0
+ 20
+391.0
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.0
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.00000000000001
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+121.00000000000001
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00000000000001
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00000000000001
+ 20
+391.0
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.00000000000001
+ 20
+391.0
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+179.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+160.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.0
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.0
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+486.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+486.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+486.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+486.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00000000000001
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00000000000001
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.00000000000001
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+426.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+440.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+440.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+440.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+440.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+426.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+426.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+426.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.91666666666666
+ 20
+357.75000000000006
+ 30
+0.0
+ 11
+142.91666666666666
+ 21
+352.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.91666666666666
+ 20
+352.25000000000006
+ 30
+0.0
+ 11
+142.41666666666669
+ 21
+352.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.41666666666669
+ 20
+352.25000000000006
+ 30
+0.0
+ 11
+142.41666666666669
+ 21
+357.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.41666666666669
+ 20
+357.75000000000006
+ 30
+0.0
+ 11
+142.91666666666666
+ 21
+357.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+363.4166666666667
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+377.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+377.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+377.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+377.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+363.4166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+363.4166666666667
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+363.4166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+378.0
+ 30
+0.0
+ 11
+166.065
+ 21
+378.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+378.0
+ 30
+0.0
+ 11
+166.065
+ 21
+355.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+355.0
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+355.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+355.0
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+378.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+345.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+345.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+345.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+345.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+345.00000000000006
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+345.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+345.00000000000006
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+345.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+326.11363636363643
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+338.4318181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+338.4318181818182
+ 30
+0.0
+ 11
+77.25
+ 21
+338.4318181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+338.4318181818182
+ 30
+0.0
+ 11
+77.25
+ 21
+326.11363636363643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+326.11363636363643
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+326.11363636363643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+296.56818181818187
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+308.8863636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+308.8863636363637
+ 30
+0.0
+ 11
+77.25
+ 21
+308.8863636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+308.8863636363637
+ 30
+0.0
+ 11
+77.25
+ 21
+296.56818181818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+296.56818181818187
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+296.56818181818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.25000000000003
+ 20
+215.50000000000003
+ 30
+0.0
+ 11
+156.25000000000003
+ 21
+215.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+156.25000000000003
+ 20
+215.50000000000003
+ 30
+0.0
+ 11
+156.25000000000003
+ 21
+218.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+156.25000000000003
+ 20
+218.5
+ 30
+0.0
+ 11
+153.25000000000003
+ 21
+218.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.25000000000003
+ 20
+218.5
+ 30
+0.0
+ 11
+153.25000000000003
+ 21
+215.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+154.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+155.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+155.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+154.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+154.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+154.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+117.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+117.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+116.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+116.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.75000000000001
+ 20
+235.50000000000003
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+235.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+235.50000000000003
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+238.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+238.50000000000003
+ 30
+0.0
+ 11
+115.75000000000001
+ 21
+238.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.75000000000001
+ 20
+238.50000000000003
+ 30
+0.0
+ 11
+115.75000000000001
+ 21
+235.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.08333333333337
+ 20
+166.25
+ 30
+0.0
+ 11
+129.08333333333337
+ 21
+171.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.08333333333337
+ 20
+171.75000000000003
+ 30
+0.0
+ 11
+129.58333333333337
+ 21
+171.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.58333333333337
+ 20
+171.75000000000003
+ 30
+0.0
+ 11
+129.58333333333337
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.58333333333337
+ 20
+166.25
+ 30
+0.0
+ 11
+129.08333333333337
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+160.58333333333334
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+146.4166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+146.4166666666667
+ 30
+0.0
+ 11
+149.75
+ 21
+146.4166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+146.4166666666667
+ 30
+0.0
+ 11
+149.75
+ 21
+160.58333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+160.58333333333334
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+160.58333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+146.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+146.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+146.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+169.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+169.00000000000003
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+169.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+169.00000000000003
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+146.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.8857142857143
+ 20
+79.00000000000001
+ 30
+0.0
+ 11
+92.8857142857143
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.8857142857143
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+72.31428571428573
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+72.31428571428573
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+72.31428571428573
+ 21
+79.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+72.31428571428573
+ 20
+79.00000000000001
+ 30
+0.0
+ 11
+92.8857142857143
+ 21
+79.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.5
+ 20
+120.25000000000001
+ 30
+0.0
+ 11
+69.5
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.5
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+66.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+66.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+66.50000000000001
+ 21
+120.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+66.50000000000001
+ 20
+120.25000000000001
+ 30
+0.0
+ 11
+69.5
+ 21
+120.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+121.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+122.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+122.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+122.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+122.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+121.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+121.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+121.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+83.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+84.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+84.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+84.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+84.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+83.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+83.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+83.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.5
+ 20
+82.75000000000001
+ 30
+0.0
+ 11
+49.5
+ 21
+85.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.5
+ 20
+85.75000000000001
+ 30
+0.0
+ 11
+46.50000000000001
+ 21
+85.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.50000000000001
+ 20
+85.75000000000001
+ 30
+0.0
+ 11
+46.50000000000001
+ 21
+82.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.50000000000001
+ 20
+82.75000000000001
+ 30
+0.0
+ 11
+49.5
+ 21
+82.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.44571428571429
+ 20
+77.30000000000003
+ 30
+0.0
+ 11
+40.44571428571429
+ 21
+90.30000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.44571428571429
+ 20
+90.30000000000003
+ 30
+0.0
+ 11
+19.874285714285723
+ 21
+90.30000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.874285714285723
+ 20
+90.30000000000003
+ 30
+0.0
+ 11
+19.874285714285723
+ 21
+77.30000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.874285714285723
+ 20
+77.30000000000003
+ 30
+0.0
+ 11
+40.44571428571429
+ 21
+77.30000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+92.75000000000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+17.250000000000004
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.250000000000004
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+17.250000000000004
+ 21
+92.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.250000000000004
+ 20
+92.75000000000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+92.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+37.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+37.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+37.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+37.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.75000000000001
+ 20
+17.083333333333318
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+24.916666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.75000000000001
+ 20
+24.916666666666686
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+24.916666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.25000000000001
+ 20
+24.916666666666686
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+17.083333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.25000000000001
+ 20
+17.083333333333318
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+17.083333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.33333333333337
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+133.66666666666669
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.66666666666669
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+133.66666666666669
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.66666666666669
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+129.33333333333337
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+158.50000000000003
+ 20
+24.666666666666686
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+24.666666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.50000000000003
+ 20
+24.666666666666686
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+17.333333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.50000000000003
+ 20
+17.333333333333318
+ 30
+0.0
+ 11
+158.50000000000003
+ 21
+17.333333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+59.58333333333332
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+45.416666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+45.416666666666686
+ 30
+0.0
+ 11
+149.75
+ 21
+45.416666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+45.416666666666686
+ 30
+0.0
+ 11
+149.75
+ 21
+59.58333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+59.58333333333332
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+59.58333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+45.66666666666669
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+40.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+40.66666666666669
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+45.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+45.66666666666669
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+59.33333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+59.33333333333332
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+64.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+64.33333333333333
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+59.33333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.50000000000003
+ 20
+120.25000000000001
+ 30
+0.0
+ 11
+129.50000000000003
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.50000000000003
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+126.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+126.50000000000001
+ 21
+120.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.50000000000001
+ 20
+120.25000000000001
+ 30
+0.0
+ 11
+129.50000000000003
+ 21
+120.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+121.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+122.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+122.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+122.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+122.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+121.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+121.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+121.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+113.75
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+101.25
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+92.25
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+88.75
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+89.75
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+83.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+84.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+84.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+84.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+84.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+83.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+83.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+83.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+109.50000000000001
+ 20
+82.75000000000001
+ 30
+0.0
+ 11
+109.50000000000001
+ 21
+85.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+109.50000000000001
+ 20
+85.75000000000001
+ 30
+0.0
+ 11
+106.50000000000001
+ 21
+85.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.50000000000001
+ 20
+85.75000000000001
+ 30
+0.0
+ 11
+106.50000000000001
+ 21
+82.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.50000000000001
+ 20
+82.75000000000001
+ 30
+0.0
+ 11
+109.50000000000001
+ 21
+82.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.50000000000003
+ 20
+113.00000000000001
+ 30
+0.0
+ 11
+137.50000000000003
+ 21
+118.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.50000000000003
+ 20
+118.00000000000001
+ 30
+0.0
+ 11
+132.50000000000003
+ 21
+113.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.50000000000003
+ 20
+113.00000000000001
+ 30
+0.0
+ 11
+132.50000000000003
+ 21
+93.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.50000000000003
+ 20
+93.00000000000001
+ 30
+0.0
+ 11
+137.50000000000003
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.50000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+137.50000000000003
+ 21
+93.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+146.6666666666667
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+141.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+141.6666666666667
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+146.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+146.6666666666667
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+160.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+160.33333333333334
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+165.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+165.33333333333334
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+160.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.56000000000003
+ 20
+177.79000000000005
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+176.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.56000000000003
+ 20
+176.71
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+176.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.56000000000003
+ 20
+176.71
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+177.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.56000000000003
+ 20
+177.79000000000005
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+177.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.56000000000003
+ 20
+210.29000000000002
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+209.21000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.56000000000003
+ 20
+209.21000000000004
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+209.21000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.56000000000003
+ 20
+209.21000000000004
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+210.29000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.56000000000003
+ 20
+210.29000000000002
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+210.29000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.56000000000003
+ 20
+234.52000000000004
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+220.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.56000000000003
+ 20
+220.48000000000002
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+220.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.56000000000003
+ 20
+220.48000000000002
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+234.52000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.56000000000003
+ 20
+234.52000000000004
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+234.52000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+179.00000000000003
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+179.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+179.00000000000003
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+202.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+202.00000000000003
+ 30
+0.0
+ 11
+166.065
+ 21
+202.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+202.00000000000003
+ 30
+0.0
+ 11
+166.065
+ 21
+179.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+197.88636363636365
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+185.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+185.56818181818184
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+185.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+185.56818181818184
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+197.88636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+197.88636363636365
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+197.88636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+227.43181818181822
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+215.1136363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+215.1136363636364
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+215.1136363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+215.1136363636364
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+227.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+227.43181818181822
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+227.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.40000000000002
+ 20
+177.79000000000005
+ 30
+0.0
+ 11
+75.40000000000002
+ 21
+176.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.40000000000002
+ 20
+176.71
+ 30
+0.0
+ 11
+93.40000000000002
+ 21
+176.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.40000000000002
+ 20
+176.71
+ 30
+0.0
+ 11
+93.40000000000002
+ 21
+177.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.40000000000002
+ 20
+177.79000000000005
+ 30
+0.0
+ 11
+75.40000000000002
+ 21
+177.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.40000000000002
+ 20
+210.29000000000002
+ 30
+0.0
+ 11
+75.40000000000002
+ 21
+209.21000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.40000000000002
+ 20
+209.21000000000004
+ 30
+0.0
+ 11
+93.40000000000002
+ 21
+209.21000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.40000000000002
+ 20
+209.21000000000004
+ 30
+0.0
+ 11
+93.40000000000002
+ 21
+210.29000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.40000000000002
+ 20
+210.29000000000002
+ 30
+0.0
+ 11
+75.40000000000002
+ 21
+210.29000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.80000000000001
+ 20
+234.52000000000004
+ 30
+0.0
+ 11
+71.80000000000001
+ 21
+220.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.80000000000001
+ 20
+220.48000000000002
+ 30
+0.0
+ 11
+97.00000000000001
+ 21
+220.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.00000000000001
+ 20
+220.48000000000002
+ 30
+0.0
+ 11
+97.00000000000001
+ 21
+234.52000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.00000000000001
+ 20
+234.52000000000004
+ 30
+0.0
+ 11
+71.80000000000001
+ 21
+234.52000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+202.00000000000003
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+202.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+202.00000000000003
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+179.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+179.00000000000003
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+179.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+179.00000000000003
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+202.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.25000000000001
+ 20
+215.50000000000003
+ 30
+0.0
+ 11
+60.25000000000001
+ 21
+215.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+60.25000000000001
+ 20
+215.50000000000003
+ 30
+0.0
+ 11
+60.25000000000001
+ 21
+218.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+60.25000000000001
+ 20
+218.5
+ 30
+0.0
+ 11
+57.25000000000001
+ 21
+218.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.25000000000001
+ 20
+218.5
+ 30
+0.0
+ 11
+57.25000000000001
+ 21
+215.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+59.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+59.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+59.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+59.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+58.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+58.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+56.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+56.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+56.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+56.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+55.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+55.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+56.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+56.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+56.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+56.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+55.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+55.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+54.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+54.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+53.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+53.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+54.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+54.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+53.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+53.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+51.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+51.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+50.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+50.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+51.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+51.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+50.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+50.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+49.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+49.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+48.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+48.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+49.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+49.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+48.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+48.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+46.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+46.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+45.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+45.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+46.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+46.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+45.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+45.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+44.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+44.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+43.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+43.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+44.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+44.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+43.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+43.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+41.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+41.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+40.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+40.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+41.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+41.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+40.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+40.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+38.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+39.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+39.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+39.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+39.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+38.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+38.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+38.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+38.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+39.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+39.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+39.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+39.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+38.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+38.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+38.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+36.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+36.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+35.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+35.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+36.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+36.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+35.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+35.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+34.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+34.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+33.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+33.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+34.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+34.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+33.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+33.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.750000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+31.750000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.750000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+31.750000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.750000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+30.750000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.750000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+30.750000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.750000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+31.750000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.750000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+31.750000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.750000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+30.750000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.750000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+30.750000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.250000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+29.250000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.250000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+29.250000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.250000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+28.250000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.250000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+28.250000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.250000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+29.250000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.250000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+29.250000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.250000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+28.250000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.250000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+28.250000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+25.750000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+26.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+26.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+25.750000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+25.750000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+25.750000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+25.750000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+26.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+26.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+25.750000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+25.750000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+25.750000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.250000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+24.250000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+24.250000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+24.250000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+24.250000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+23.250000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.250000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+23.250000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.250000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+24.250000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+24.250000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+24.250000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+24.250000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+23.250000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.250000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+23.250000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+20.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+21.750000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.750000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+21.750000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.750000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+20.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+20.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+20.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.750000000000004
+ 20
+235.50000000000003
+ 30
+0.0
+ 11
+22.75
+ 21
+235.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.75
+ 20
+235.50000000000003
+ 30
+0.0
+ 11
+22.75
+ 21
+238.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.75
+ 20
+238.50000000000003
+ 30
+0.0
+ 11
+19.750000000000004
+ 21
+238.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.750000000000004
+ 20
+238.50000000000003
+ 30
+0.0
+ 11
+19.750000000000004
+ 21
+235.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+185.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+185.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+185.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+197.63636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+197.63636363636365
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+197.63636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+215.3636363636364
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+215.3636363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+215.3636363636364
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+227.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+227.18181818181822
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+227.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.50000000000006
+ 20
+338.1818181818182
+ 30
+0.0
+ 11
+264.5
+ 21
+338.1818181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+338.1818181818182
+ 30
+0.0
+ 11
+264.5
+ 21
+326.36363636363643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+326.36363636363643
+ 30
+0.0
+ 11
+269.50000000000006
+ 21
+326.36363636363643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.50000000000006
+ 20
+308.6363636363637
+ 30
+0.0
+ 11
+264.5
+ 21
+308.6363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+308.6363636363637
+ 30
+0.0
+ 11
+264.5
+ 21
+296.81818181818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+296.81818181818187
+ 30
+0.0
+ 11
+269.50000000000006
+ 21
+296.81818181818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+377.33333333333337
+ 30
+0.0
+ 11
+186.5
+ 21
+382.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+382.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+377.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+377.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+186.5
+ 21
+358.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+358.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.25000000000003
+ 20
+405.91666666666674
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+398.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.25000000000003
+ 20
+398.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+398.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.75
+ 20
+398.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+405.91666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.75
+ 20
+405.91666666666674
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+405.91666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.50000000000001
+ 20
+398.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+398.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.50000000000001
+ 20
+398.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+405.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.50000000000001
+ 20
+405.66666666666674
+ 30
+0.0
+ 11
+113.50000000000001
+ 21
+405.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+449.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+449.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+449.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+426.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+426.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+426.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+426.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+449.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+440.33333333333337
+ 30
+0.0
+ 11
+186.5
+ 21
+445.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+445.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+440.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+440.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+426.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+426.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+421.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+421.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+426.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.25000000000003
+ 20
+468.91666666666674
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+461.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.25000000000003
+ 20
+461.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+461.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.75
+ 20
+461.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+468.91666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.75
+ 20
+468.91666666666674
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+468.91666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.66666666666669
+ 20
+478.50000000000006
+ 30
+0.0
+ 11
+138.33333333333334
+ 21
+478.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.33333333333334
+ 20
+478.50000000000006
+ 30
+0.0
+ 11
+138.33333333333334
+ 21
+483.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.33333333333334
+ 20
+483.50000000000006
+ 30
+0.0
+ 11
+142.66666666666669
+ 21
+483.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.50000000000001
+ 20
+461.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+461.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.50000000000001
+ 20
+461.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+468.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.50000000000001
+ 20
+468.6666666666667
+ 30
+0.0
+ 11
+113.50000000000001
+ 21
+468.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+282.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+282.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+282.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+282.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+345.0050224158704
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0050224158704
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+345.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0281737678708
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+345.0050224158704
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+342.4268406450232
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+344.0281737678708
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+340.24045318333197
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+342.4268406450232
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.522847498308
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+340.24045318333197
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.3409400611327
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+337.522847498308
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+330.7730799930546
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+334.3409400611327
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+326.9071198499986
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+330.7730799930546
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+322.83825240107285
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+326.9071198499986
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+318.6666666666667
+ 20
+491.66666666666674
+ 30
+0.0
+ 11
+322.83825240107285
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+314.4950809322606
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+318.6666666666667
+ 21
+491.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+310.42621348333483
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+314.4950809322606
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+306.5602533402788
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+310.42621348333483
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+302.9923932722008
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+306.5602533402788
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+299.8104858350255
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+302.9923932722008
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+297.09288015000146
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+299.8104858350255
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+294.9064926883102
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+297.09288015000146
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+293.3051595654626
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+294.9064926883102
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+292.328310917463
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+293.3051595654626
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+292.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+292.328310917463
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+292.328310917463
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+292.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+293.3051595654626
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+292.328310917463
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+294.9064926883102
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+293.3051595654626
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+297.09288015000146
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+294.9064926883102
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+299.8104858350255
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+297.09288015000146
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+302.9923932722008
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+299.8104858350255
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+306.5602533402788
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+302.9923932722008
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+310.42621348333483
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+306.5602533402788
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+314.4950809322606
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+310.42621348333483
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+318.6666666666667
+ 20
+438.33333333333337
+ 30
+0.0
+ 11
+314.4950809322606
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+322.83825240107285
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+318.6666666666667
+ 21
+438.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+326.9071198499986
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+322.83825240107285
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+330.7730799930546
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+326.9071198499986
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.3409400611327
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+330.7730799930546
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.522847498308
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+334.3409400611327
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+340.24045318333197
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+337.522847498308
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+342.4268406450232
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+340.24045318333197
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0281737678708
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+342.4268406450232
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0050224158704
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+344.0281737678708
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+418.3383557492038
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.3383557492038
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+418.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+417.3615071012042
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+418.3383557492038
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.7601739783566
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+417.3615071012042
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+413.57378651666534
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+415.7601739783566
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+410.8561808316413
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+413.57378651666534
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.67427339446607
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+410.8561808316413
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+404.106413326388
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+407.67427339446607
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.24045318333197
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+404.106413326388
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+396.1715857344062
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+400.24045318333197
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+392.0000000000001
+ 20
+491.66666666666674
+ 30
+0.0
+ 11
+396.1715857344062
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+387.82841426559395
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+392.0000000000001
+ 21
+491.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+383.7595468166682
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+387.82841426559395
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.8935866736122
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+383.7595468166682
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+376.32572660553416
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+379.8935866736122
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+373.14381916835885
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+376.32572660553416
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+370.42621348333483
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+373.14381916835885
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.2398260216436
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+370.42621348333483
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.638492898796
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+368.2398260216436
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.66164425079637
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+366.638492898796
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.3333333333334
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+365.66164425079637
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.66164425079637
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+365.3333333333334
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.638492898796
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+365.66164425079637
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.2398260216436
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+366.638492898796
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+370.42621348333483
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+368.2398260216436
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+373.14381916835885
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+370.42621348333483
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+376.32572660553416
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+373.14381916835885
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.8935866736122
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+376.32572660553416
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+383.7595468166682
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+379.8935866736122
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+387.82841426559395
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+383.7595468166682
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+392.0000000000001
+ 20
+438.33333333333337
+ 30
+0.0
+ 11
+387.82841426559395
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+396.1715857344062
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+392.0000000000001
+ 21
+438.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.24045318333197
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+396.1715857344062
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+404.106413326388
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+400.24045318333197
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.67427339446607
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+404.106413326388
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+410.8561808316413
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+407.67427339446607
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+413.57378651666534
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+410.8561808316413
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.7601739783566
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+413.57378651666534
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+417.3615071012042
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+415.7601739783566
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.3383557492038
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+417.3615071012042
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+492.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+491.67168908253717
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+491.67168908253717
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+492.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.6948404345376
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+491.67168908253717
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.09350731168996
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+490.6948404345376
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+486.90711984999876
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+489.09350731168996
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.18951416497475
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+486.90711984999876
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+481.00760672779944
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+484.18951416497475
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+477.4397466597214
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+481.00760672779944
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+473.5737865166654
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+477.4397466597214
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+469.50491906773965
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+473.5737865166654
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+465.3333333333335
+ 20
+491.66666666666674
+ 30
+0.0
+ 11
+469.50491906773965
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+461.1617475989273
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+465.3333333333335
+ 21
+491.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+457.0928801500016
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+461.1617475989273
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+453.2269200069456
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+457.0928801500016
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+449.65905993886753
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+453.2269200069456
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+446.4771525016922
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+449.65905993886753
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+443.7595468166682
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+446.4771525016922
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+441.573159354977
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+443.7595468166682
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+439.9718262321294
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+441.573159354977
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.9949775841298
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+439.9718262321294
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+438.9949775841298
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.9949775841298
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+438.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+439.9718262321294
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+438.9949775841298
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+441.573159354977
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+439.9718262321294
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+443.7595468166682
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+441.573159354977
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+446.4771525016922
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+443.7595468166682
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+449.65905993886753
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+446.4771525016922
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+453.2269200069456
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+449.65905993886753
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+457.0928801500016
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+453.2269200069456
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+461.1617475989273
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+457.0928801500016
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+465.3333333333335
+ 20
+438.33333333333337
+ 30
+0.0
+ 11
+461.1617475989273
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+469.50491906773965
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+465.3333333333335
+ 21
+438.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+473.5737865166654
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+469.50491906773965
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+477.4397466597214
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+473.5737865166654
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+481.00760672779944
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+477.4397466597214
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.18951416497475
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+481.00760672779944
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+486.90711984999876
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+484.18951416497475
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.09350731168996
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+486.90711984999876
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.6948404345376
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+489.09350731168996
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+491.67168908253717
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+490.6948404345376
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.3333333333334
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+565.0050224158704
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.0050224158704
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+565.3333333333334
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+564.0281737678708
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+565.0050224158704
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+562.4268406450233
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+564.0281737678708
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2404531833321
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+562.4268406450233
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+557.5228474983081
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+560.2404531833321
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+554.3409400611328
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+557.5228474983081
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+550.7730799930548
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+554.3409400611328
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.9071198499987
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+550.7730799930548
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+542.838252401073
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+546.9071198499987
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+538.6666666666669
+ 20
+491.66666666666674
+ 30
+0.0
+ 11
+542.838252401073
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+534.4950809322607
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+538.6666666666669
+ 21
+491.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+530.4262134833349
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+534.4950809322607
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+526.5602533402789
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+530.4262134833349
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+522.992393272201
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+526.5602533402789
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+519.8104858350256
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+522.992393272201
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+517.0928801500016
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+519.8104858350256
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+514.9064926883103
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+517.0928801500016
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+513.3051595654628
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+514.9064926883103
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+512.3283109174631
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+513.3051595654628
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+512.0000000000002
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+512.3283109174631
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+512.3283109174631
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+512.0000000000002
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+513.3051595654628
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+512.3283109174631
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+514.9064926883102
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+513.3051595654628
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+517.0928801500016
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+514.9064926883102
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+519.8104858350256
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+517.0928801500016
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+522.992393272201
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+519.8104858350256
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+526.5602533402789
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+522.992393272201
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+530.4262134833349
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+526.5602533402789
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+534.4950809322607
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+530.4262134833349
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+538.6666666666669
+ 20
+438.33333333333337
+ 30
+0.0
+ 11
+534.4950809322607
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+542.838252401073
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+538.6666666666669
+ 21
+438.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.9071198499987
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+542.838252401073
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+550.7730799930548
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+546.9071198499987
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+554.3409400611328
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+550.7730799930548
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+557.5228474983081
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+554.3409400611328
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2404531833321
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+557.5228474983081
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+562.4268406450232
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+560.2404531833321
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+564.0281737678708
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+562.4268406450232
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.0050224158704
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+564.0281737678708
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/CarForSteering/graph-lasercutter.svg b/rocolib/builders/output/CarForSteering/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..174d84e4b4520e440a504856446b6456b72f947a
--- /dev/null
+++ b/rocolib/builders/output/CarForSteering/graph-lasercutter.svg
@@ -0,0 +1,1043 @@
+<?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="491.666667mm" version="1.1" viewBox="0.000000 0.000000 565.333333 491.666667" width="565.333333mm">
+  <defs/>
+  <line stroke="#000000" x1="134.00000000000003" x2="121.00000000000001" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.00000000000003" x2="134.00000000000003" y1="454.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="121.00000000000001" x2="134.00000000000003" y1="476.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="121.00000000000001" x2="121.00000000000001" y1="476.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.00000000000003" x2="147.00000000000003" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="147.00000000000003" y1="454.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="134.00000000000003" y1="476.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.00000000000003" x2="134.00000000000003" y1="454.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="134.00000000000003" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="147.00000000000003" y1="454.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="134.00000000000003" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="413.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="115.00000000000001" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="134.00000000000003" y1="391.0" y2="391.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="147.00000000000003" y1="391.0" y2="413.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.00000000000003" x2="134.00000000000003" y1="391.0" y2="413.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.00000000000003" x2="134.00000000000003" y1="391.0" y2="350.0"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="134.00000000000003" y1="350.0" y2="350.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="147.00000000000003" y1="391.0" y2="350.0"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="134.00000000000003" y1="391.0" y2="391.0"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="350.0" y2="391.0"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="115.00000000000001" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="166.0" y1="391.0" y2="391.0"/>
+  <line stroke="#000000" x1="166.0" x2="147.00000000000003" y1="350.0" y2="350.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0" x2="166.0" y1="391.0" y2="350.0"/>
+  <line stroke="#000000" x1="166.0" x2="179.00000000000003" y1="391.0" y2="391.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0" x2="179.00000000000003" y1="350.0" y2="350.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.00000000000003" x2="179.00000000000003" y1="350.0" y2="391.0"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="202.00000000000003" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="166.0" x2="166.0" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="350.0" y2="350.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0" x2="166.0" y1="350.0" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="166.0" y1="285.00000000000006" y2="285.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="202.00000000000003" x2="202.00000000000003" y1="350.0" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="166.0" y1="350.0" y2="350.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="106.00000000000001" x2="106.00000000000001" y1="350.0" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="285.00000000000006" y2="350.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="70.00000000000001" y1="285.00000000000006" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="106.00000000000001" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="93.00000000000001" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="106.00000000000001" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="111.00009098110239" x2="106.00000000000001" y1="262.0" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="166.00018196220475" x2="161.0000909811024" y1="285.00000000000006" y2="262.0"/>
+  <line stroke="#000000" x1="161.0000909811024" x2="166.00018196220475" y1="262.0" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="111.00009098110239" y1="239.00000000000003" y2="262.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0" x2="166.0" y1="174.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="106.00000000000001" x2="106.00000000000001" y1="174.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="106.00000000000001" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="166.0" x2="125.00000000000001" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="166.0" x2="166.0" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="106.00000000000001" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="106.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="125.00000000000001" y1="133.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="106.00000000000001" x2="106.00000000000001" y1="133.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="125.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="138.00000000000003" x2="138.00000000000003" y1="133.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="138.00000000000003" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="157.0" x2="138.00000000000003" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="157.0" x2="157.0" y1="174.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="157.0" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="106.00000000000001" x2="93.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="106.00000000000001" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="93.00000000000001" x2="93.00000000000001" y1="174.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="93.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="106.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="133.00000000000003" y2="73.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="106.00000000000001" x2="106.00000000000001" y1="133.00000000000003" y2="73.0"/>
+  <line stroke="#000000" x1="46.00000000000001" x2="70.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="46.00000000000001" x2="46.00000000000001" y1="133.00000000000003" y2="73.0"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="46.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="46.00000000000001" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="73.0" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="46.00000000000001" x2="10.000000000000002" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="70.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="93.00000000000001" x2="106.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="106.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="93.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="106.00000000000001" x2="106.00000000000001" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="93.00000000000001" x2="93.00000000000001" y1="73.0" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="106.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="125.00000000000001" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="125.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="138.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="138.00000000000003" x2="138.00000000000003" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="138.00000000000003" y1="73.0" y2="73.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="125.00000000000001" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="138.00000000000003" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="138.00000000000003" x2="138.00000000000003" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="112.00000000000001" x2="125.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="112.00000000000001" x2="112.00000000000001" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="112.00000000000001" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="99.0" x2="112.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="99.0" x2="99.0" y1="10.000000000000002" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="112.00000000000001" x2="99.0" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="125.00000000000001" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="125.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="138.00000000000003" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="151.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="151.00000000000003" x2="138.00000000000003" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="151.00000000000003" x2="151.00000000000003" y1="10.000000000000002" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="161.00000000000003" x2="151.00000000000003" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="161.00000000000003" x2="161.00000000000003" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="151.00000000000003" x2="161.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="157.0" x2="138.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="157.0" x2="157.0" y1="73.0" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="157.0" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="83.0" x2="93.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="83.0" x2="83.0" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="83.0" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="130.0" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="130.0" x2="106.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="130.0" y1="73.0" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="140.00000000000003" x2="130.0" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="140.00000000000003" x2="140.00000000000003" y1="133.00000000000003" y2="73.0"/>
+  <line stroke="#000000" x1="130.0" x2="140.00000000000003" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="83.0" x2="93.00000000000001" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="83.0" x2="83.0" y1="133.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="83.0" y1="133.00000000000003" y2="133.00000000000003"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="166.0" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="239.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="166.0" x2="202.00000000000003" y1="239.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="70.00000000000001" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="106.00000000000001" y1="239.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="174.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="10.000000000000002" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="239.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="64.99990901889764" x2="70.00000000000001" y1="262.0" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="14.999909018897627" x2="64.99990901889764" y1="262.0" y2="262.0"/>
+  <line stroke="#000000" x1="9.99981803779525" x2="14.999909018897627" y1="239.00000000000003" y2="262.0"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="239.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="174.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="174.00000000000003" y2="174.00000000000003"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="262.0" y1="350.0" y2="350.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="262.0" x2="262.0" y1="285.00000000000006" y2="350.0"/>
+  <line stroke="#000000" x1="207.00009098110237" x2="202.00000000000003" y1="262.0" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="257.00009098110246" x2="207.00009098110237" y1="262.0" y2="262.0"/>
+  <line stroke="#000000" x1="262.00018196220475" x2="257.00009098110246" y1="285.00000000000006" y2="262.0"/>
+  <line stroke="#000000" x1="272.0" x2="262.0" y1="285.00000000000006" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="272.0" x2="272.0" y1="350.0" y2="285.00000000000006"/>
+  <line stroke="#000000" x1="262.0" x2="272.0" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="189.0" x2="179.00000000000003" y1="350.0" y2="350.0"/>
+  <line stroke="#000000" x1="189.0" x2="189.0" y1="391.0" y2="350.0"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="189.0" y1="391.0" y2="391.0"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="147.00000000000003" y1="391.0" y2="391.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.00000000000003" x2="160.00000000000003" y1="391.0" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="160.00000000000003" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="173.0" x2="160.00000000000003" y1="391.0" y2="391.0"/>
+  <line stroke="#000000" x1="173.0" x2="173.0" y1="413.00000000000006" y2="391.0"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="173.0" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="121.00000000000001" y1="391.0" y2="391.0"/>
+  <line stroke="#000000" x1="121.00000000000001" x2="134.00000000000003" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="121.00000000000001" x2="121.00000000000001" y1="413.00000000000006" y2="391.0"/>
+  <line stroke="#000000" x1="111.00000000000001" x2="121.00000000000001" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="111.00000000000001" x2="111.00000000000001" y1="391.0" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="121.00000000000001" x2="111.00000000000001" y1="391.0" y2="391.0"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="166.0" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="147.00000000000003" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0" x2="166.0" y1="454.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="179.00000000000003" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="166.0" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.00000000000003" x2="179.00000000000003" y1="413.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="189.0" x2="179.00000000000003" y1="413.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="189.0" x2="189.0" y1="454.00000000000006" y2="413.00000000000006"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="189.0" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="147.00000000000003" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.00000000000003" x2="160.00000000000003" y1="454.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="160.00000000000003" y1="476.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="173.0" x2="160.00000000000003" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="173.0" x2="173.0" y1="476.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="173.0" y1="476.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="147.00000000000003" y1="486.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="147.00000000000003" y1="486.00000000000006" y2="486.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="134.00000000000003" y1="476.00000000000006" y2="486.00000000000006"/>
+  <line stroke="#000000" x1="111.00000000000001" x2="121.00000000000001" y1="476.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="111.00000000000001" x2="111.00000000000001" y1="454.00000000000006" y2="476.00000000000006"/>
+  <line stroke="#000000" x1="121.00000000000001" x2="111.00000000000001" y1="454.00000000000006" y2="454.00000000000006"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="426.41666666666674" y2="440.58333333333337"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="440.58333333333337" y2="440.58333333333337"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="440.58333333333337" y2="426.41666666666674"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="426.41666666666674" y2="426.41666666666674"/>
+  <line stroke="#888888" x1="142.91666666666666" x2="142.91666666666666" y1="357.75000000000006" y2="352.25000000000006"/>
+  <line stroke="#888888" x1="142.91666666666666" x2="142.41666666666669" y1="352.25000000000006" y2="352.25000000000006"/>
+  <line stroke="#888888" x1="142.41666666666669" x2="142.41666666666669" y1="352.25000000000006" y2="357.75000000000006"/>
+  <line stroke="#888888" x1="142.41666666666669" x2="142.91666666666666" y1="357.75000000000006" y2="357.75000000000006"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="363.4166666666667" y2="377.58333333333337"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="377.58333333333337" y2="377.58333333333337"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="377.58333333333337" y2="363.4166666666667"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="363.4166666666667" y2="363.4166666666667"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="378.0" y2="378.0"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="378.0" y2="355.0"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="355.0" y2="355.0"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="355.0" y2="378.0"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="322.00000000000006" y2="322.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="322.00000000000006" y2="345.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="345.00000000000006" y2="345.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="345.00000000000006" y2="322.00000000000006"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="345.00000000000006" y2="345.00000000000006"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="345.00000000000006" y2="322.00000000000006"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="322.00000000000006" y2="322.00000000000006"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="322.00000000000006" y2="345.00000000000006"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.75000000000001" y1="326.11363636363643" y2="338.4318181818182"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.25" y1="338.4318181818182" y2="338.4318181818182"/>
+  <line stroke="#888888" x1="77.25" x2="77.25" y1="338.4318181818182" y2="326.11363636363643"/>
+  <line stroke="#888888" x1="77.25" x2="77.75000000000001" y1="326.11363636363643" y2="326.11363636363643"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.75000000000001" y1="296.56818181818187" y2="308.8863636363637"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.25" y1="308.8863636363637" y2="308.8863636363637"/>
+  <line stroke="#888888" x1="77.25" x2="77.25" y1="308.8863636363637" y2="296.56818181818187"/>
+  <line stroke="#888888" x1="77.25" x2="77.75000000000001" y1="296.56818181818187" y2="296.56818181818187"/>
+  <line stroke="#888888" x1="153.25000000000003" x2="156.25000000000003" y1="215.50000000000003" y2="215.50000000000003"/>
+  <line stroke="#888888" x1="156.25000000000003" x2="156.25000000000003" y1="215.50000000000003" y2="218.5"/>
+  <line stroke="#888888" x1="156.25000000000003" x2="153.25000000000003" y1="218.5" y2="218.5"/>
+  <line stroke="#888888" x1="153.25000000000003" x2="153.25000000000003" y1="218.5" y2="215.50000000000003"/>
+  <line stroke="#888888" x1="154.25000000000003" x2="155.25000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="155.25000000000003" x2="155.25000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="155.25000000000003" x2="154.25000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="154.25000000000003" x2="154.25000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="152.75" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="152.75" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="151.75000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="151.75000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="152.75" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="152.75" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="151.75000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="151.75000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="150.25" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="150.25" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="149.25000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="150.25" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="150.25" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="149.25000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="147.75" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="147.75" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="146.75000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="146.75000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="147.75" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="147.75" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="146.75000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="146.75000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="145.25" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="145.25" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="144.25000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="144.25000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="145.25" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="145.25" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="144.25000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="144.25000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="142.75000000000003" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="142.75000000000003" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="141.75000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="141.75000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="142.75000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="142.75000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="141.75000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="141.75000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="140.25000000000003" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="140.25000000000003" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="139.25" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="139.25" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="140.25000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="140.25000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="139.25" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="139.25" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="137.75000000000003" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="137.75000000000003" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="136.75" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="136.75" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="137.75000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="137.75000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="136.75" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="136.75" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="135.25000000000003" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="135.25000000000003" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="134.25000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="134.25000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="135.25000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="135.25000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="134.25000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="134.25000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="132.75000000000003" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="132.75000000000003" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="131.75000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="131.75000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="132.75000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="132.75000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="131.75000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="131.75000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="130.25000000000003" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="130.25000000000003" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="129.25000000000003" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="129.25000000000003" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="130.25000000000003" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="130.25000000000003" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="129.25000000000003" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="129.25000000000003" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="127.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="127.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="126.75000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="126.75000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="127.75000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="127.75000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="126.75000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="126.75000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="125.25000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="125.25000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="124.25000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="124.25000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="125.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="125.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="124.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="124.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="122.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="121.75000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="121.75000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="122.75000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="121.75000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="121.75000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="120.25000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="120.25000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="119.25000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="119.25000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="120.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="120.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="119.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="119.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="116.75000000000001" x2="117.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="117.75000000000001" x2="117.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="117.75000000000001" x2="116.75000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="116.75000000000001" x2="116.75000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="115.75000000000001" x2="118.75000000000001" y1="235.50000000000003" y2="235.50000000000003"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="235.50000000000003" y2="238.50000000000003"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="115.75000000000001" y1="238.50000000000003" y2="238.50000000000003"/>
+  <line stroke="#888888" x1="115.75000000000001" x2="115.75000000000001" y1="238.50000000000003" y2="235.50000000000003"/>
+  <line stroke="#888888" x1="129.08333333333337" x2="129.08333333333337" y1="166.25" y2="171.75000000000003"/>
+  <line stroke="#888888" x1="129.08333333333337" x2="129.58333333333337" y1="171.75000000000003" y2="171.75000000000003"/>
+  <line stroke="#888888" x1="129.58333333333337" x2="129.58333333333337" y1="171.75000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="129.58333333333337" x2="129.08333333333337" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="160.58333333333334" y2="146.4166666666667"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.75" y1="146.4166666666667" y2="146.4166666666667"/>
+  <line stroke="#888888" x1="149.75" x2="149.75" y1="146.4166666666667" y2="160.58333333333334"/>
+  <line stroke="#888888" x1="149.75" x2="149.25000000000003" y1="160.58333333333334" y2="160.58333333333334"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="146.0" y2="146.0"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="146.0" y2="169.00000000000003"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="169.00000000000003" y2="169.00000000000003"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="169.00000000000003" y2="146.0"/>
+  <line stroke="#888888" x1="92.8857142857143" x2="92.8857142857143" y1="79.00000000000001" y2="97.00000000000001"/>
+  <line stroke="#888888" x1="92.8857142857143" x2="72.31428571428573" y1="97.00000000000001" y2="97.00000000000001"/>
+  <line stroke="#888888" x1="72.31428571428573" x2="72.31428571428573" y1="97.00000000000001" y2="79.00000000000001"/>
+  <line stroke="#888888" x1="72.31428571428573" x2="92.8857142857143" y1="79.00000000000001" y2="79.00000000000001"/>
+  <line stroke="#888888" x1="69.5" x2="69.5" y1="120.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="69.5" x2="66.50000000000001" y1="123.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="66.50000000000001" x2="66.50000000000001" y1="123.25000000000001" y2="120.25000000000001"/>
+  <line stroke="#888888" x1="66.50000000000001" x2="69.5" y1="120.25000000000001" y2="120.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="121.25000000000001" y2="122.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="122.25000000000001" y2="122.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="122.25000000000001" y2="121.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="121.25000000000001" y2="121.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="118.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="119.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="119.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="118.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="118.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="119.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="119.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="118.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="116.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="117.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="117.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="116.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="116.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="117.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="117.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="116.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="113.75" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="114.75000000000001" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="114.75000000000001" y2="113.75"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="113.75" y2="113.75"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="113.75" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="114.75000000000001" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="114.75000000000001" y2="113.75"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="113.75" y2="113.75"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="111.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="112.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="112.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="111.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="111.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="112.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="112.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="111.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="108.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="109.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="109.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="108.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="108.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="109.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="109.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="108.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="106.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="107.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="107.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="106.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="106.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="107.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="107.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="106.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="103.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="104.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="104.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="103.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="103.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="104.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="104.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="103.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="101.25" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="102.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="102.25000000000001" y2="101.25"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="101.25" y2="101.25"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="101.25" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="102.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="102.25000000000001" y2="101.25"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="101.25" y2="101.25"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="98.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="99.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="99.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="98.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="98.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="99.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="99.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="98.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="96.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="97.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="97.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="96.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="96.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="97.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="97.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="96.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="93.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="94.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="94.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="93.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="93.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="94.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="94.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="93.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="91.25000000000001" y2="92.25"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="92.25" y2="92.25"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="92.25" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="91.25000000000001" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="91.25000000000001" y2="92.25"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="92.25" y2="92.25"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="92.25" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="91.25000000000001" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="88.75" y2="89.75"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="89.75" y2="89.75"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="89.75" y2="88.75"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="88.75" y2="88.75"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="88.75" y2="89.75"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="89.75" y2="89.75"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="89.75" y2="88.75"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="88.75" y2="88.75"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="86.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="87.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="87.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="86.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="48.50000000000001" y1="86.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="48.50000000000001" x2="47.50000000000001" y1="87.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="87.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="48.50000000000001" y1="86.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="68.50000000000001" y1="83.75000000000001" y2="84.75000000000001"/>
+  <line stroke="#888888" x1="68.50000000000001" x2="67.50000000000001" y1="84.75000000000001" y2="84.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="84.75000000000001" y2="83.75000000000001"/>
+  <line stroke="#888888" x1="67.50000000000001" x2="68.50000000000001" y1="83.75000000000001" y2="83.75000000000001"/>
+  <line stroke="#888888" x1="49.5" x2="49.5" y1="82.75000000000001" y2="85.75000000000001"/>
+  <line stroke="#888888" x1="49.5" x2="46.50000000000001" y1="85.75000000000001" y2="85.75000000000001"/>
+  <line stroke="#888888" x1="46.50000000000001" x2="46.50000000000001" y1="85.75000000000001" y2="82.75000000000001"/>
+  <line stroke="#888888" x1="46.50000000000001" x2="49.5" y1="82.75000000000001" y2="82.75000000000001"/>
+  <line stroke="#888888" x1="40.44571428571429" x2="40.44571428571429" y1="77.30000000000003" y2="90.30000000000003"/>
+  <line stroke="#888888" x1="40.44571428571429" x2="19.874285714285723" y1="90.30000000000003" y2="90.30000000000003"/>
+  <line stroke="#888888" x1="19.874285714285723" x2="19.874285714285723" y1="90.30000000000003" y2="77.30000000000003"/>
+  <line stroke="#888888" x1="19.874285714285723" x2="40.44571428571429" y1="77.30000000000003" y2="77.30000000000003"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="92.75000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="17.250000000000004" y1="113.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="17.250000000000004" x2="17.250000000000004" y1="113.25000000000001" y2="92.75000000000001"/>
+  <line stroke="#888888" x1="17.250000000000004" x2="17.750000000000004" y1="92.75000000000001" y2="92.75000000000001"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="37.0" y2="37.0"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="37.0" y2="60.00000000000001"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="60.00000000000001" y2="37.0"/>
+  <line stroke="#888888" x1="106.75000000000001" x2="106.75000000000001" y1="17.083333333333318" y2="24.916666666666686"/>
+  <line stroke="#888888" x1="106.75000000000001" x2="106.25000000000001" y1="24.916666666666686" y2="24.916666666666686"/>
+  <line stroke="#888888" x1="106.25000000000001" x2="106.25000000000001" y1="24.916666666666686" y2="17.083333333333318"/>
+  <line stroke="#888888" x1="106.25000000000001" x2="106.75000000000001" y1="17.083333333333318" y2="17.083333333333318"/>
+  <line stroke="#888888" x1="129.33333333333337" x2="133.66666666666669" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="133.66666666666669" x2="133.66666666666669" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="133.66666666666669" x2="129.33333333333337" y1="2.5000000000000004" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="158.50000000000003" x2="153.50000000000003" y1="24.666666666666686" y2="24.666666666666686"/>
+  <line stroke="#888888" x1="153.50000000000003" x2="153.50000000000003" y1="24.666666666666686" y2="17.333333333333318"/>
+  <line stroke="#888888" x1="153.50000000000003" x2="158.50000000000003" y1="17.333333333333318" y2="17.333333333333318"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="59.58333333333332" y2="45.416666666666686"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.75" y1="45.416666666666686" y2="45.416666666666686"/>
+  <line stroke="#888888" x1="149.75" x2="149.75" y1="45.416666666666686" y2="59.58333333333332"/>
+  <line stroke="#888888" x1="149.75" x2="149.25000000000003" y1="59.58333333333332" y2="59.58333333333332"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="45.66666666666669" y2="40.66666666666669"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="90.50000000000001" y1="40.66666666666669" y2="45.66666666666669"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="90.50000000000001" y1="45.66666666666669" y2="59.33333333333332"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="85.50000000000001" y1="59.33333333333332" y2="64.33333333333333"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="64.33333333333333" y2="59.33333333333332"/>
+  <line stroke="#888888" x1="129.50000000000003" x2="129.50000000000003" y1="120.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="129.50000000000003" x2="126.50000000000001" y1="123.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="126.50000000000001" x2="126.50000000000001" y1="123.25000000000001" y2="120.25000000000001"/>
+  <line stroke="#888888" x1="126.50000000000001" x2="129.50000000000003" y1="120.25000000000001" y2="120.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="121.25000000000001" y2="122.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="122.25000000000001" y2="122.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="122.25000000000001" y2="121.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="121.25000000000001" y2="121.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="118.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="119.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="119.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="118.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="118.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="119.75000000000001" y2="119.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="119.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="118.75000000000001" y2="118.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="116.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="117.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="117.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="116.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="116.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="117.25000000000001" y2="117.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="117.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="116.25000000000001" y2="116.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="113.75" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="114.75000000000001" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="114.75000000000001" y2="113.75"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="113.75" y2="113.75"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="113.75" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="114.75000000000001" y2="114.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="114.75000000000001" y2="113.75"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="113.75" y2="113.75"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="111.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="112.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="112.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="111.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="111.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="112.25000000000001" y2="112.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="112.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="111.25000000000001" y2="111.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="108.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="109.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="109.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="108.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="108.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="109.75000000000001" y2="109.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="109.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="108.75000000000001" y2="108.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="106.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="107.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="107.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="106.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="106.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="107.25000000000001" y2="107.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="107.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="106.25000000000001" y2="106.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="103.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="104.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="104.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="103.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="103.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="104.75000000000001" y2="104.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="104.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="103.75000000000001" y2="103.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="101.25" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="102.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="102.25000000000001" y2="101.25"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="101.25" y2="101.25"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="101.25" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="102.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="102.25000000000001" y2="101.25"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="101.25" y2="101.25"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="98.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="99.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="99.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="98.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="98.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="99.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="99.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="98.75000000000001" y2="98.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="96.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="97.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="97.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="96.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="96.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="97.25000000000001" y2="97.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="97.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="96.25000000000001" y2="96.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="93.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="94.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="94.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="93.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="93.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="94.75000000000001" y2="94.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="94.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="93.75000000000001" y2="93.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="91.25000000000001" y2="92.25"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="92.25" y2="92.25"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="92.25" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="91.25000000000001" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="91.25000000000001" y2="92.25"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="92.25" y2="92.25"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="92.25" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="91.25000000000001" y2="91.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="88.75" y2="89.75"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="89.75" y2="89.75"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="89.75" y2="88.75"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="88.75" y2="88.75"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="88.75" y2="89.75"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="89.75" y2="89.75"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="89.75" y2="88.75"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="88.75" y2="88.75"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="86.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="87.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="87.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="86.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="108.50000000000001" y1="86.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="108.50000000000001" x2="107.50000000000001" y1="87.25000000000001" y2="87.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="87.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="108.50000000000001" y1="86.25000000000001" y2="86.25000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="128.50000000000003" y1="83.75000000000001" y2="84.75000000000001"/>
+  <line stroke="#888888" x1="128.50000000000003" x2="127.50000000000001" y1="84.75000000000001" y2="84.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="127.50000000000001" y1="84.75000000000001" y2="83.75000000000001"/>
+  <line stroke="#888888" x1="127.50000000000001" x2="128.50000000000003" y1="83.75000000000001" y2="83.75000000000001"/>
+  <line stroke="#888888" x1="109.50000000000001" x2="109.50000000000001" y1="82.75000000000001" y2="85.75000000000001"/>
+  <line stroke="#888888" x1="109.50000000000001" x2="106.50000000000001" y1="85.75000000000001" y2="85.75000000000001"/>
+  <line stroke="#888888" x1="106.50000000000001" x2="106.50000000000001" y1="85.75000000000001" y2="82.75000000000001"/>
+  <line stroke="#888888" x1="106.50000000000001" x2="109.50000000000001" y1="82.75000000000001" y2="82.75000000000001"/>
+  <line stroke="#888888" x1="137.50000000000003" x2="137.50000000000003" y1="113.00000000000001" y2="118.00000000000001"/>
+  <line stroke="#888888" x1="137.50000000000003" x2="132.50000000000003" y1="118.00000000000001" y2="113.00000000000001"/>
+  <line stroke="#888888" x1="132.50000000000003" x2="132.50000000000003" y1="113.00000000000001" y2="93.00000000000001"/>
+  <line stroke="#888888" x1="132.50000000000003" x2="137.50000000000003" y1="93.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#888888" x1="137.50000000000003" x2="137.50000000000003" y1="88.00000000000001" y2="93.00000000000001"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="146.6666666666667" y2="141.6666666666667"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="90.50000000000001" y1="141.6666666666667" y2="146.6666666666667"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="90.50000000000001" y1="146.6666666666667" y2="160.33333333333334"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="85.50000000000001" y1="160.33333333333334" y2="165.33333333333334"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="165.33333333333334" y2="160.33333333333334"/>
+  <line stroke="#888888" x1="173.56000000000003" x2="173.56000000000003" y1="177.79000000000005" y2="176.71"/>
+  <line stroke="#888888" x1="173.56000000000003" x2="191.56000000000003" y1="176.71" y2="176.71"/>
+  <line stroke="#888888" x1="191.56000000000003" x2="191.56000000000003" y1="176.71" y2="177.79000000000005"/>
+  <line stroke="#888888" x1="191.56000000000003" x2="173.56000000000003" y1="177.79000000000005" y2="177.79000000000005"/>
+  <line stroke="#888888" x1="173.56000000000003" x2="173.56000000000003" y1="210.29000000000002" y2="209.21000000000004"/>
+  <line stroke="#888888" x1="173.56000000000003" x2="191.56000000000003" y1="209.21000000000004" y2="209.21000000000004"/>
+  <line stroke="#888888" x1="191.56000000000003" x2="191.56000000000003" y1="209.21000000000004" y2="210.29000000000002"/>
+  <line stroke="#888888" x1="191.56000000000003" x2="173.56000000000003" y1="210.29000000000002" y2="210.29000000000002"/>
+  <line stroke="#888888" x1="173.56000000000003" x2="173.56000000000003" y1="234.52000000000004" y2="220.48000000000002"/>
+  <line stroke="#888888" x1="173.56000000000003" x2="191.56000000000003" y1="220.48000000000002" y2="220.48000000000002"/>
+  <line stroke="#888888" x1="191.56000000000003" x2="191.56000000000003" y1="220.48000000000002" y2="234.52000000000004"/>
+  <line stroke="#888888" x1="191.56000000000003" x2="173.56000000000003" y1="234.52000000000004" y2="234.52000000000004"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="179.00000000000003" y2="179.00000000000003"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="179.00000000000003" y2="202.00000000000003"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="202.00000000000003" y2="202.00000000000003"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="202.00000000000003" y2="179.00000000000003"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.25000000000003" y1="197.88636363636365" y2="185.56818181818184"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.75000000000003" y1="185.56818181818184" y2="185.56818181818184"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.75000000000003" y1="185.56818181818184" y2="197.88636363636365"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.25000000000003" y1="197.88636363636365" y2="197.88636363636365"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.25000000000003" y1="227.43181818181822" y2="215.1136363636364"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.75000000000003" y1="215.1136363636364" y2="215.1136363636364"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.75000000000003" y1="215.1136363636364" y2="227.43181818181822"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.25000000000003" y1="227.43181818181822" y2="227.43181818181822"/>
+  <line stroke="#888888" x1="75.40000000000002" x2="75.40000000000002" y1="177.79000000000005" y2="176.71"/>
+  <line stroke="#888888" x1="75.40000000000002" x2="93.40000000000002" y1="176.71" y2="176.71"/>
+  <line stroke="#888888" x1="93.40000000000002" x2="93.40000000000002" y1="176.71" y2="177.79000000000005"/>
+  <line stroke="#888888" x1="93.40000000000002" x2="75.40000000000002" y1="177.79000000000005" y2="177.79000000000005"/>
+  <line stroke="#888888" x1="75.40000000000002" x2="75.40000000000002" y1="210.29000000000002" y2="209.21000000000004"/>
+  <line stroke="#888888" x1="75.40000000000002" x2="93.40000000000002" y1="209.21000000000004" y2="209.21000000000004"/>
+  <line stroke="#888888" x1="93.40000000000002" x2="93.40000000000002" y1="209.21000000000004" y2="210.29000000000002"/>
+  <line stroke="#888888" x1="93.40000000000002" x2="75.40000000000002" y1="210.29000000000002" y2="210.29000000000002"/>
+  <line stroke="#888888" x1="71.80000000000001" x2="71.80000000000001" y1="234.52000000000004" y2="220.48000000000002"/>
+  <line stroke="#888888" x1="71.80000000000001" x2="97.00000000000001" y1="220.48000000000002" y2="220.48000000000002"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="220.48000000000002" y2="234.52000000000004"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="71.80000000000001" y1="234.52000000000004" y2="234.52000000000004"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="202.00000000000003" y2="202.00000000000003"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="202.00000000000003" y2="179.00000000000003"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="179.00000000000003" y2="179.00000000000003"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="179.00000000000003" y2="202.00000000000003"/>
+  <line stroke="#888888" x1="57.25000000000001" x2="60.25000000000001" y1="215.50000000000003" y2="215.50000000000003"/>
+  <line stroke="#888888" x1="60.25000000000001" x2="60.25000000000001" y1="215.50000000000003" y2="218.5"/>
+  <line stroke="#888888" x1="60.25000000000001" x2="57.25000000000001" y1="218.5" y2="218.5"/>
+  <line stroke="#888888" x1="57.25000000000001" x2="57.25000000000001" y1="218.5" y2="215.50000000000003"/>
+  <line stroke="#888888" x1="58.25000000000001" x2="59.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="59.25000000000001" x2="59.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="59.25000000000001" x2="58.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="58.25000000000001" x2="58.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="55.75" x2="56.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="56.75000000000001" x2="56.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="56.75000000000001" x2="55.75" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="55.75" x2="55.75" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="55.75" x2="56.75000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="56.75000000000001" x2="56.75000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="56.75000000000001" x2="55.75" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="55.75" x2="55.75" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="53.25000000000001" x2="54.25000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="54.25000000000001" x2="54.25000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="54.25000000000001" x2="53.25000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="53.25000000000001" x2="53.25000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="53.25000000000001" x2="54.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="54.25000000000001" x2="54.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="54.25000000000001" x2="53.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="53.25000000000001" x2="53.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="50.75000000000001" x2="51.75" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="51.75" x2="51.75" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="51.75" x2="50.75000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="50.75000000000001" x2="50.75000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="50.75000000000001" x2="51.75" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="51.75" x2="51.75" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="51.75" x2="50.75000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="50.75000000000001" x2="50.75000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="48.25000000000001" x2="49.25000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="49.25000000000001" x2="49.25000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="49.25000000000001" x2="48.25000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="48.25000000000001" x2="48.25000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="48.25000000000001" x2="49.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="49.25000000000001" x2="49.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="49.25000000000001" x2="48.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="48.25000000000001" x2="48.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="45.75000000000001" x2="46.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="46.75000000000001" x2="46.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="46.75000000000001" x2="45.75000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="45.75000000000001" x2="45.75000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="45.75000000000001" x2="46.75000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="46.75000000000001" x2="46.75000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="46.75000000000001" x2="45.75000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="45.75000000000001" x2="45.75000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="43.25" x2="44.25000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="44.25000000000001" x2="44.25000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="44.25000000000001" x2="43.25" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="43.25" x2="43.25" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="43.25" x2="44.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="44.25000000000001" x2="44.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="44.25000000000001" x2="43.25" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="43.25" x2="43.25" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="40.75000000000001" x2="41.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="41.75000000000001" x2="41.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="41.75000000000001" x2="40.75000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="40.75000000000001" x2="40.75000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="40.75000000000001" x2="41.75000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="41.75000000000001" x2="41.75000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="41.75000000000001" x2="40.75000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="40.75000000000001" x2="40.75000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="38.25000000000001" x2="39.25" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="39.25" x2="39.25" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="39.25" x2="38.25000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="38.25000000000001" x2="38.25000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="38.25000000000001" x2="39.25" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="39.25" x2="39.25" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="39.25" x2="38.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="38.25000000000001" x2="38.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="35.75" x2="36.75000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="36.75000000000001" x2="36.75000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="36.75000000000001" x2="35.75" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="35.75" x2="35.75" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="35.75" x2="36.75000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="36.75000000000001" x2="36.75000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="36.75000000000001" x2="35.75" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="35.75" x2="35.75" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="33.25000000000001" x2="34.25000000000001" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="34.25000000000001" x2="34.25000000000001" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="34.25000000000001" x2="33.25000000000001" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="33.25000000000001" x2="33.25000000000001" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="33.25000000000001" x2="34.25000000000001" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="34.25000000000001" x2="34.25000000000001" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="34.25000000000001" x2="33.25000000000001" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="33.25000000000001" x2="33.25000000000001" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="30.750000000000004" x2="31.750000000000004" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="31.750000000000004" x2="31.750000000000004" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="31.750000000000004" x2="30.750000000000004" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="30.750000000000004" x2="30.750000000000004" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="30.750000000000004" x2="31.750000000000004" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="31.750000000000004" x2="31.750000000000004" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="31.750000000000004" x2="30.750000000000004" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="30.750000000000004" x2="30.750000000000004" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="28.250000000000004" x2="29.250000000000004" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="29.250000000000004" x2="29.250000000000004" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="29.250000000000004" x2="28.250000000000004" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="28.250000000000004" x2="28.250000000000004" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="28.250000000000004" x2="29.250000000000004" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="29.250000000000004" x2="29.250000000000004" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="29.250000000000004" x2="28.250000000000004" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="28.250000000000004" x2="28.250000000000004" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="25.750000000000004" x2="26.75" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="26.75" x2="26.75" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="26.75" x2="25.750000000000004" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="25.750000000000004" x2="25.750000000000004" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="25.750000000000004" x2="26.75" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="26.75" x2="26.75" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="26.75" x2="25.750000000000004" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="25.750000000000004" x2="25.750000000000004" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="23.250000000000004" x2="24.250000000000004" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="24.250000000000004" x2="24.250000000000004" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="24.250000000000004" x2="23.250000000000004" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="23.250000000000004" x2="23.250000000000004" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="23.250000000000004" x2="24.250000000000004" y1="236.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="24.250000000000004" x2="24.250000000000004" y1="236.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="24.250000000000004" x2="23.250000000000004" y1="237.50000000000003" y2="237.50000000000003"/>
+  <line stroke="#888888" x1="23.250000000000004" x2="23.250000000000004" y1="237.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="20.75" x2="21.750000000000004" y1="216.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="21.750000000000004" x2="21.750000000000004" y1="216.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="21.750000000000004" x2="20.75" y1="217.50000000000003" y2="217.50000000000003"/>
+  <line stroke="#888888" x1="20.75" x2="20.75" y1="217.50000000000003" y2="216.50000000000003"/>
+  <line stroke="#888888" x1="19.750000000000004" x2="22.75" y1="235.50000000000003" y2="235.50000000000003"/>
+  <line stroke="#888888" x1="22.75" x2="22.75" y1="235.50000000000003" y2="238.50000000000003"/>
+  <line stroke="#888888" x1="22.75" x2="19.750000000000004" y1="238.50000000000003" y2="238.50000000000003"/>
+  <line stroke="#888888" x1="19.750000000000004" x2="19.750000000000004" y1="238.50000000000003" y2="235.50000000000003"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="185.81818181818184" y2="185.81818181818184"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="185.81818181818184" y2="197.63636363636365"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="197.63636363636365" y2="197.63636363636365"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="215.3636363636364" y2="215.3636363636364"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="215.3636363636364" y2="227.18181818181822"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="227.18181818181822" y2="227.18181818181822"/>
+  <line stroke="#888888" x1="269.50000000000006" x2="264.5" y1="338.1818181818182" y2="338.1818181818182"/>
+  <line stroke="#888888" x1="264.5" x2="264.5" y1="338.1818181818182" y2="326.36363636363643"/>
+  <line stroke="#888888" x1="264.5" x2="269.50000000000006" y1="326.36363636363643" y2="326.36363636363643"/>
+  <line stroke="#888888" x1="269.50000000000006" x2="264.5" y1="308.6363636363637" y2="308.6363636363637"/>
+  <line stroke="#888888" x1="264.5" x2="264.5" y1="308.6363636363637" y2="296.81818181818187"/>
+  <line stroke="#888888" x1="264.5" x2="269.50000000000006" y1="296.81818181818187" y2="296.81818181818187"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="377.33333333333337" y2="382.33333333333337"/>
+  <line stroke="#888888" x1="186.5" x2="181.50000000000003" y1="382.33333333333337" y2="377.33333333333337"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="181.50000000000003" y1="377.33333333333337" y2="363.6666666666667"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="186.5" y1="363.6666666666667" y2="358.66666666666674"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="358.66666666666674" y2="363.6666666666667"/>
+  <line stroke="#888888" x1="165.25000000000003" x2="165.25000000000003" y1="405.91666666666674" y2="398.08333333333337"/>
+  <line stroke="#888888" x1="165.25000000000003" x2="165.75" y1="398.08333333333337" y2="398.08333333333337"/>
+  <line stroke="#888888" x1="165.75" x2="165.75" y1="398.08333333333337" y2="405.91666666666674"/>
+  <line stroke="#888888" x1="165.75" x2="165.25000000000003" y1="405.91666666666674" y2="405.91666666666674"/>
+  <line stroke="#888888" x1="113.50000000000001" x2="118.50000000000001" y1="398.33333333333337" y2="398.33333333333337"/>
+  <line stroke="#888888" x1="118.50000000000001" x2="118.50000000000001" y1="398.33333333333337" y2="405.66666666666674"/>
+  <line stroke="#888888" x1="118.50000000000001" x2="113.50000000000001" y1="405.66666666666674" y2="405.66666666666674"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="449.00000000000006" y2="449.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="449.00000000000006" y2="426.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="426.00000000000006" y2="426.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="426.00000000000006" y2="449.00000000000006"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="440.33333333333337" y2="445.33333333333337"/>
+  <line stroke="#888888" x1="186.5" x2="181.50000000000003" y1="445.33333333333337" y2="440.33333333333337"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="181.50000000000003" y1="440.33333333333337" y2="426.66666666666674"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="186.5" y1="426.66666666666674" y2="421.66666666666674"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="421.66666666666674" y2="426.66666666666674"/>
+  <line stroke="#888888" x1="165.25000000000003" x2="165.25000000000003" y1="468.91666666666674" y2="461.08333333333337"/>
+  <line stroke="#888888" x1="165.25000000000003" x2="165.75" y1="461.08333333333337" y2="461.08333333333337"/>
+  <line stroke="#888888" x1="165.75" x2="165.75" y1="461.08333333333337" y2="468.91666666666674"/>
+  <line stroke="#888888" x1="165.75" x2="165.25000000000003" y1="468.91666666666674" y2="468.91666666666674"/>
+  <line stroke="#888888" x1="142.66666666666669" x2="138.33333333333334" y1="478.50000000000006" y2="478.50000000000006"/>
+  <line stroke="#888888" x1="138.33333333333334" x2="138.33333333333334" y1="478.50000000000006" y2="483.50000000000006"/>
+  <line stroke="#888888" x1="138.33333333333334" x2="142.66666666666669" y1="483.50000000000006" y2="483.50000000000006"/>
+  <line stroke="#888888" x1="113.50000000000001" x2="118.50000000000001" y1="461.33333333333337" y2="461.33333333333337"/>
+  <line stroke="#888888" x1="118.50000000000001" x2="118.50000000000001" y1="461.33333333333337" y2="468.6666666666667"/>
+  <line stroke="#888888" x1="118.50000000000001" x2="113.50000000000001" y1="468.6666666666667" y2="468.6666666666667"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="345.33333333333337" x2="345.0050224158704" y1="465.00000000000006" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="345.0050224158704" x2="345.33333333333337" y1="469.17158573440616" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="344.0281737678708" x2="345.0050224158704" y1="473.2404531833319" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="342.4268406450232" x2="344.0281737678708" y1="477.10641332638795" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="340.24045318333197" x2="342.4268406450232" y1="480.674273394466" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="337.522847498308" x2="340.24045318333197" y1="483.8561808316414" y2="480.674273394466"/>
+  <line stroke="#000000" x1="334.3409400611327" x2="337.522847498308" y1="486.5737865166654" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="330.7730799930546" x2="334.3409400611327" y1="488.76017397835653" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="326.9071198499986" x2="330.7730799930546" y1="490.36150710120415" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="322.83825240107285" x2="326.9071198499986" y1="491.33835574920374" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="318.6666666666667" x2="322.83825240107285" y1="491.66666666666674" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="314.4950809322606" x2="318.6666666666667" y1="491.33835574920374" y2="491.66666666666674"/>
+  <line stroke="#000000" x1="310.42621348333483" x2="314.4950809322606" y1="490.36150710120415" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="306.5602533402788" x2="310.42621348333483" y1="488.76017397835653" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="302.9923932722008" x2="306.5602533402788" y1="486.5737865166654" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="299.8104858350255" x2="302.9923932722008" y1="483.8561808316414" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="297.09288015000146" x2="299.8104858350255" y1="480.674273394466" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="294.9064926883102" x2="297.09288015000146" y1="477.10641332638795" y2="480.674273394466"/>
+  <line stroke="#000000" x1="293.3051595654626" x2="294.9064926883102" y1="473.2404531833319" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="292.328310917463" x2="293.3051595654626" y1="469.17158573440616" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="292.0" x2="292.328310917463" y1="465.00000000000006" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="292.328310917463" x2="292.0" y1="460.8284142655939" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="293.3051595654626" x2="292.328310917463" y1="456.75954681666815" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="294.9064926883102" x2="293.3051595654626" y1="452.89358667361216" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="297.09288015000146" x2="294.9064926883102" y1="449.3257266055341" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="299.8104858350255" x2="297.09288015000146" y1="446.1438191683588" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="302.9923932722008" x2="299.8104858350255" y1="443.4262134833348" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="306.5602533402788" x2="302.9923932722008" y1="441.2398260216435" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="310.42621348333483" x2="306.5602533402788" y1="439.63849289879596" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="314.4950809322606" x2="310.42621348333483" y1="438.6616442507963" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="318.6666666666667" x2="314.4950809322606" y1="438.33333333333337" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="322.83825240107285" x2="318.6666666666667" y1="438.6616442507963" y2="438.33333333333337"/>
+  <line stroke="#000000" x1="326.9071198499986" x2="322.83825240107285" y1="439.63849289879596" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="330.7730799930546" x2="326.9071198499986" y1="441.2398260216435" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="334.3409400611327" x2="330.7730799930546" y1="443.4262134833348" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="337.522847498308" x2="334.3409400611327" y1="446.1438191683588" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="340.24045318333197" x2="337.522847498308" y1="449.3257266055341" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="342.4268406450232" x2="340.24045318333197" y1="452.89358667361216" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="344.0281737678708" x2="342.4268406450232" y1="456.75954681666815" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="345.0050224158704" x2="344.0281737678708" y1="460.8284142655939" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="418.6666666666668" x2="418.3383557492038" y1="465.00000000000006" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="418.3383557492038" x2="418.6666666666668" y1="469.17158573440616" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="417.3615071012042" x2="418.3383557492038" y1="473.2404531833319" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="415.7601739783566" x2="417.3615071012042" y1="477.10641332638795" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="413.57378651666534" x2="415.7601739783566" y1="480.674273394466" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="410.8561808316413" x2="413.57378651666534" y1="483.8561808316414" y2="480.674273394466"/>
+  <line stroke="#000000" x1="407.67427339446607" x2="410.8561808316413" y1="486.5737865166654" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="404.106413326388" x2="407.67427339446607" y1="488.76017397835653" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="400.24045318333197" x2="404.106413326388" y1="490.36150710120415" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="396.1715857344062" x2="400.24045318333197" y1="491.33835574920374" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="392.0000000000001" x2="396.1715857344062" y1="491.66666666666674" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="387.82841426559395" x2="392.0000000000001" y1="491.33835574920374" y2="491.66666666666674"/>
+  <line stroke="#000000" x1="383.7595468166682" x2="387.82841426559395" y1="490.36150710120415" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="379.8935866736122" x2="383.7595468166682" y1="488.76017397835653" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="376.32572660553416" x2="379.8935866736122" y1="486.5737865166654" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="373.14381916835885" x2="376.32572660553416" y1="483.8561808316414" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="370.42621348333483" x2="373.14381916835885" y1="480.674273394466" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="368.2398260216436" x2="370.42621348333483" y1="477.10641332638795" y2="480.674273394466"/>
+  <line stroke="#000000" x1="366.638492898796" x2="368.2398260216436" y1="473.2404531833319" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="365.66164425079637" x2="366.638492898796" y1="469.17158573440616" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="365.3333333333334" x2="365.66164425079637" y1="465.00000000000006" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="365.66164425079637" x2="365.3333333333334" y1="460.8284142655939" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="366.638492898796" x2="365.66164425079637" y1="456.75954681666815" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="368.2398260216436" x2="366.638492898796" y1="452.89358667361216" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="370.42621348333483" x2="368.2398260216436" y1="449.3257266055341" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="373.14381916835885" x2="370.42621348333483" y1="446.1438191683588" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="376.32572660553416" x2="373.14381916835885" y1="443.4262134833348" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="379.8935866736122" x2="376.32572660553416" y1="441.2398260216435" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="383.7595468166682" x2="379.8935866736122" y1="439.63849289879596" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="387.82841426559395" x2="383.7595468166682" y1="438.6616442507963" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="392.0000000000001" x2="387.82841426559395" y1="438.33333333333337" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="396.1715857344062" x2="392.0000000000001" y1="438.6616442507963" y2="438.33333333333337"/>
+  <line stroke="#000000" x1="400.24045318333197" x2="396.1715857344062" y1="439.63849289879596" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="404.106413326388" x2="400.24045318333197" y1="441.2398260216435" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="407.67427339446607" x2="404.106413326388" y1="443.4262134833348" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="410.8561808316413" x2="407.67427339446607" y1="446.1438191683588" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="413.57378651666534" x2="410.8561808316413" y1="449.3257266055341" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="415.7601739783566" x2="413.57378651666534" y1="452.89358667361216" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="417.3615071012042" x2="415.7601739783566" y1="456.75954681666815" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="418.3383557492038" x2="417.3615071012042" y1="460.8284142655939" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="492.00000000000017" x2="491.67168908253717" y1="465.00000000000006" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="491.67168908253717" x2="492.00000000000017" y1="469.17158573440616" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="490.6948404345376" x2="491.67168908253717" y1="473.2404531833319" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="489.09350731168996" x2="490.6948404345376" y1="477.10641332638795" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="486.90711984999876" x2="489.09350731168996" y1="480.674273394466" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="484.18951416497475" x2="486.90711984999876" y1="483.8561808316414" y2="480.674273394466"/>
+  <line stroke="#000000" x1="481.00760672779944" x2="484.18951416497475" y1="486.5737865166654" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="477.4397466597214" x2="481.00760672779944" y1="488.76017397835653" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="473.5737865166654" x2="477.4397466597214" y1="490.36150710120415" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="469.50491906773965" x2="473.5737865166654" y1="491.33835574920374" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="465.3333333333335" x2="469.50491906773965" y1="491.66666666666674" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="461.1617475989273" x2="465.3333333333335" y1="491.33835574920374" y2="491.66666666666674"/>
+  <line stroke="#000000" x1="457.0928801500016" x2="461.1617475989273" y1="490.36150710120415" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="453.2269200069456" x2="457.0928801500016" y1="488.76017397835653" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="449.65905993886753" x2="453.2269200069456" y1="486.5737865166654" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="446.4771525016922" x2="449.65905993886753" y1="483.8561808316414" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="443.7595468166682" x2="446.4771525016922" y1="480.674273394466" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="441.573159354977" x2="443.7595468166682" y1="477.10641332638795" y2="480.674273394466"/>
+  <line stroke="#000000" x1="439.9718262321294" x2="441.573159354977" y1="473.2404531833319" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="438.9949775841298" x2="439.9718262321294" y1="469.17158573440616" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="438.6666666666668" x2="438.9949775841298" y1="465.00000000000006" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="438.9949775841298" x2="438.6666666666668" y1="460.8284142655939" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="439.9718262321294" x2="438.9949775841298" y1="456.75954681666815" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="441.573159354977" x2="439.9718262321294" y1="452.89358667361216" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="443.7595468166682" x2="441.573159354977" y1="449.3257266055341" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="446.4771525016922" x2="443.7595468166682" y1="446.1438191683588" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="449.65905993886753" x2="446.4771525016922" y1="443.4262134833348" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="453.2269200069456" x2="449.65905993886753" y1="441.2398260216435" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="457.0928801500016" x2="453.2269200069456" y1="439.63849289879596" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="461.1617475989273" x2="457.0928801500016" y1="438.6616442507963" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="465.3333333333335" x2="461.1617475989273" y1="438.33333333333337" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="469.50491906773965" x2="465.3333333333335" y1="438.6616442507963" y2="438.33333333333337"/>
+  <line stroke="#000000" x1="473.5737865166654" x2="469.50491906773965" y1="439.63849289879596" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="477.4397466597214" x2="473.5737865166654" y1="441.2398260216435" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="481.00760672779944" x2="477.4397466597214" y1="443.4262134833348" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="484.18951416497475" x2="481.00760672779944" y1="446.1438191683588" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="486.90711984999876" x2="484.18951416497475" y1="449.3257266055341" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="489.09350731168996" x2="486.90711984999876" y1="452.89358667361216" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="490.6948404345376" x2="489.09350731168996" y1="456.75954681666815" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="491.67168908253717" x2="490.6948404345376" y1="460.8284142655939" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="465.00000000000006" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="565.3333333333334" x2="565.0050224158704" y1="465.00000000000006" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="565.0050224158704" x2="565.3333333333334" y1="469.17158573440616" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="564.0281737678708" x2="565.0050224158704" y1="473.2404531833319" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="562.4268406450233" x2="564.0281737678708" y1="477.10641332638795" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="560.2404531833321" x2="562.4268406450233" y1="480.674273394466" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="557.5228474983081" x2="560.2404531833321" y1="483.8561808316414" y2="480.674273394466"/>
+  <line stroke="#000000" x1="554.3409400611328" x2="557.5228474983081" y1="486.5737865166654" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="550.7730799930548" x2="554.3409400611328" y1="488.76017397835653" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="546.9071198499987" x2="550.7730799930548" y1="490.36150710120415" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="542.838252401073" x2="546.9071198499987" y1="491.33835574920374" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="538.6666666666669" x2="542.838252401073" y1="491.66666666666674" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="534.4950809322607" x2="538.6666666666669" y1="491.33835574920374" y2="491.66666666666674"/>
+  <line stroke="#000000" x1="530.4262134833349" x2="534.4950809322607" y1="490.36150710120415" y2="491.33835574920374"/>
+  <line stroke="#000000" x1="526.5602533402789" x2="530.4262134833349" y1="488.76017397835653" y2="490.36150710120415"/>
+  <line stroke="#000000" x1="522.992393272201" x2="526.5602533402789" y1="486.5737865166654" y2="488.76017397835653"/>
+  <line stroke="#000000" x1="519.8104858350256" x2="522.992393272201" y1="483.8561808316414" y2="486.5737865166654"/>
+  <line stroke="#000000" x1="517.0928801500016" x2="519.8104858350256" y1="480.674273394466" y2="483.8561808316414"/>
+  <line stroke="#000000" x1="514.9064926883103" x2="517.0928801500016" y1="477.10641332638795" y2="480.674273394466"/>
+  <line stroke="#000000" x1="513.3051595654628" x2="514.9064926883103" y1="473.2404531833319" y2="477.10641332638795"/>
+  <line stroke="#000000" x1="512.3283109174631" x2="513.3051595654628" y1="469.17158573440616" y2="473.2404531833319"/>
+  <line stroke="#000000" x1="512.0000000000002" x2="512.3283109174631" y1="465.00000000000006" y2="469.17158573440616"/>
+  <line stroke="#000000" x1="512.3283109174631" x2="512.0000000000002" y1="460.8284142655939" y2="465.00000000000006"/>
+  <line stroke="#000000" x1="513.3051595654628" x2="512.3283109174631" y1="456.75954681666815" y2="460.8284142655939"/>
+  <line stroke="#000000" x1="514.9064926883102" x2="513.3051595654628" y1="452.89358667361216" y2="456.75954681666815"/>
+  <line stroke="#000000" x1="517.0928801500016" x2="514.9064926883102" y1="449.3257266055341" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="519.8104858350256" x2="517.0928801500016" y1="446.1438191683588" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="522.992393272201" x2="519.8104858350256" y1="443.4262134833348" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="526.5602533402789" x2="522.992393272201" y1="441.2398260216435" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="530.4262134833349" x2="526.5602533402789" y1="439.63849289879596" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="534.4950809322607" x2="530.4262134833349" y1="438.6616442507963" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="538.6666666666669" x2="534.4950809322607" y1="438.33333333333337" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="542.838252401073" x2="538.6666666666669" y1="438.6616442507963" y2="438.33333333333337"/>
+  <line stroke="#000000" x1="546.9071198499987" x2="542.838252401073" y1="439.63849289879596" y2="438.6616442507963"/>
+  <line stroke="#000000" x1="550.7730799930548" x2="546.9071198499987" y1="441.2398260216435" y2="439.63849289879596"/>
+  <line stroke="#000000" x1="554.3409400611328" x2="550.7730799930548" y1="443.4262134833348" y2="441.2398260216435"/>
+  <line stroke="#000000" x1="557.5228474983081" x2="554.3409400611328" y1="446.1438191683588" y2="443.4262134833348"/>
+  <line stroke="#000000" x1="560.2404531833321" x2="557.5228474983081" y1="449.3257266055341" y2="446.1438191683588"/>
+  <line stroke="#000000" x1="562.4268406450232" x2="560.2404531833321" y1="452.89358667361216" y2="449.3257266055341"/>
+  <line stroke="#000000" x1="564.0281737678708" x2="562.4268406450232" y1="456.75954681666815" y2="452.89358667361216"/>
+  <line stroke="#000000" x1="565.0050224158704" x2="564.0281737678708" y1="460.8284142655939" y2="456.75954681666815"/>
+</svg>
diff --git a/rocolib/builders/output/CarForSteering/graph-model.png b/rocolib/builders/output/CarForSteering/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d79e2c2f3890e358d7a62cad4879169eb2fa1bf
Binary files /dev/null and b/rocolib/builders/output/CarForSteering/graph-model.png differ
diff --git a/rocolib/builders/output/CarForSteering/graph-model.stl b/rocolib/builders/output/CarForSteering/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..9215b6f92375e499fe8621d2a80ba08128fd0d88
--- /dev/null
+++ b/rocolib/builders/output/CarForSteering/graph-model.stl
@@ -0,0 +1,7898 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0065 0.0110 0.0000
+vertex -0.0065 -0.0110 0.0000
+vertex 0.0065 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0110 0.0000
+vertex 0.0065 0.0110 0.0000
+vertex -0.0065 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0110 0.0000
+vertex 0.0065 -0.0110 0.0000
+vertex 0.0065 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0110 -0.0130
+vertex 0.0065 0.0110 -0.0130
+vertex 0.0065 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0110 -0.0130
+vertex 0.0065 -0.0110 -0.0130
+vertex -0.0065 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0065 -0.0110 -0.0130
+vertex -0.0065 0.0110 -0.0130
+vertex 0.0065 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0065 0.0110 -0.0130
+vertex -0.0065 -0.0110 -0.0130
+vertex -0.0065 -0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0065 -0.0110 -0.0000
+vertex -0.0065 0.0110 -0.0000
+vertex -0.0065 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 0.0300 -0.0000
+vertex -0.0215 0.0300 -0.0001
+vertex 0.0065 0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 0.0300 -0.0001
+vertex -0.0345 0.0300 -0.0000
+vertex -0.0345 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0300 -0.0000
+vertex 0.0015 0.0300 -0.0001
+vertex 0.0015 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0015 0.0300 -0.0001
+vertex 0.0065 0.0300 -0.0000
+vertex -0.0215 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 0.0300 -0.0129
+vertex -0.0345 0.0300 -0.0130
+vertex 0.0065 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 0.0300 -0.0130
+vertex -0.0215 0.0300 -0.0129
+vertex -0.0215 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0015 0.0300 -0.0129
+vertex 0.0065 0.0300 -0.0130
+vertex 0.0065 0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0300 -0.0130
+vertex 0.0015 0.0300 -0.0129
+vertex -0.0215 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0300 -0.0130
+vertex -0.0345 0.0300 -0.0130
+vertex -0.0345 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 0.0110 -0.0130
+vertex 0.0065 0.0110 -0.0130
+vertex 0.0065 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0110 -0.0130
+vertex -0.0345 0.0110 -0.0130
+vertex -0.0345 0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 0.0110 -0.0000
+vertex 0.0065 0.0110 -0.0000
+vertex 0.0065 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0110 -0.0000
+vertex -0.0345 0.0110 -0.0000
+vertex -0.0345 0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 0.0300 -0.0000
+vertex 0.0065 0.0300 0.0000
+vertex 0.0065 0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0257 0.0460 0.0151
+vertex -0.0058 0.0460 0.0198
+vertex -0.0182 0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0182 0.0460 0.0189
+vertex -0.0221 0.0460 0.0173
+vertex -0.0257 0.0460 0.0151
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0100 0.0460 0.0202
+vertex -0.0142 0.0460 0.0198
+vertex -0.0182 0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0257 0.0460 0.0151
+vertex -0.0289 0.0460 0.0124
+vertex -0.0316 0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0257 0.0460 0.0151
+vertex -0.0142 0.0460 -0.0328
+vertex 0.0116 0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0338 0.0460 0.0056
+vertex -0.0354 0.0460 0.0017
+vertex -0.0363 0.0460 -0.0023
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0363 0.0460 -0.0023
+vertex -0.0257 0.0460 0.0151
+vertex -0.0338 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0316 0.0460 0.0092
+vertex -0.0338 0.0460 0.0056
+vertex -0.0257 0.0460 0.0151
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0257 0.0460 0.0151
+vertex -0.0363 0.0460 -0.0023
+vertex -0.0316 0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0116 0.0460 0.0092
+vertex 0.0021 0.0460 0.0173
+vertex -0.0058 0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0058 0.0460 0.0198
+vertex 0.0021 0.0460 0.0173
+vertex -0.0018 0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0057 0.0460 0.0151
+vertex 0.0021 0.0460 0.0173
+vertex 0.0089 0.0460 0.0124
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0100 0.0460 0.0202
+vertex -0.0182 0.0460 0.0189
+vertex -0.0058 0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0089 0.0460 0.0124
+vertex 0.0021 0.0460 0.0173
+vertex 0.0116 0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0116 0.0460 0.0092
+vertex 0.0154 0.0460 0.0017
+vertex 0.0138 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0154 0.0460 0.0017
+vertex 0.0116 0.0460 0.0092
+vertex 0.0167 0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0257 0.0460 0.0151
+vertex 0.0116 0.0460 0.0092
+vertex -0.0058 0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0163 0.0460 -0.0023
+vertex 0.0154 0.0460 0.0017
+vertex 0.0167 0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0363 0.0460 -0.0023
+vertex -0.0367 0.0460 -0.0065
+vertex -0.0354 0.0460 -0.0147
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0316 0.0460 -0.0222
+vertex -0.0363 0.0460 -0.0023
+vertex -0.0354 0.0460 -0.0147
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0257 0.0460 0.0151
+vertex -0.0316 0.0460 -0.0222
+vertex -0.0142 0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0316 0.0460 -0.0222
+vertex -0.0354 0.0460 -0.0147
+vertex -0.0338 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0257 0.0460 -0.0281
+vertex -0.0316 0.0460 -0.0222
+vertex -0.0289 0.0460 -0.0254
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0221 0.0460 -0.0303
+vertex -0.0142 0.0460 -0.0328
+vertex -0.0316 0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0142 0.0460 -0.0328
+vertex 0.0138 0.0460 -0.0186
+vertex 0.0116 0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0142 0.0460 -0.0328
+vertex -0.0221 0.0460 -0.0303
+vertex -0.0182 0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0316 0.0460 -0.0222
+vertex -0.0257 0.0460 -0.0281
+vertex -0.0221 0.0460 -0.0303
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0018 0.0460 -0.0319
+vertex -0.0142 0.0460 -0.0328
+vertex -0.0100 0.0460 -0.0332
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0089 0.0460 -0.0254
+vertex 0.0116 0.0460 -0.0222
+vertex 0.0138 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0167 0.0460 -0.0065
+vertex 0.0154 0.0460 -0.0147
+vertex 0.0163 0.0460 -0.0107
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0154 0.0460 -0.0147
+vertex 0.0167 0.0460 -0.0065
+vertex 0.0138 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0167 0.0460 -0.0065
+vertex 0.0116 0.0460 0.0092
+vertex 0.0138 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0057 0.0460 -0.0281
+vertex 0.0138 0.0460 -0.0186
+vertex -0.0142 0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0057 0.0460 -0.0281
+vertex 0.0089 0.0460 -0.0254
+vertex 0.0138 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0057 0.0460 -0.0281
+vertex -0.0018 0.0460 -0.0319
+vertex 0.0021 0.0460 -0.0303
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0018 0.0460 -0.0319
+vertex 0.0057 0.0460 -0.0281
+vertex -0.0142 0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0058 0.0460 -0.0328
+vertex -0.0018 0.0460 -0.0319
+vertex -0.0100 0.0460 -0.0332
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0354 0.0460 -0.0147
+vertex -0.0367 0.0460 -0.0065
+vertex -0.0363 0.0460 -0.0107
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 -0.0110 -0.0000
+vertex -0.0215 0.0110 -0.0000
+vertex -0.0345 0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 0.0110 -0.0000
+vertex -0.0345 -0.0110 -0.0000
+vertex -0.0215 -0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 -0.0110 -0.0000
+vertex -0.0345 0.0110 -0.0000
+vertex -0.0345 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 0.0110 -0.0130
+vertex -0.0345 -0.0110 -0.0130
+vertex -0.0345 -0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 -0.0110 -0.0130
+vertex -0.0345 0.0110 -0.0130
+vertex -0.0215 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 0.0110 -0.0130
+vertex -0.0215 -0.0110 -0.0130
+vertex -0.0345 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 -0.0110 -0.0130
+vertex -0.0215 0.0110 -0.0130
+vertex -0.0215 0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 0.0110 -0.0000
+vertex -0.0215 -0.0110 -0.0000
+vertex -0.0215 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0300 -0.0000
+vertex 0.0015 -0.0300 -0.0001
+vertex -0.0215 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0015 -0.0300 -0.0001
+vertex 0.0065 -0.0300 -0.0000
+vertex 0.0065 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 -0.0300 -0.0000
+vertex -0.0215 -0.0300 -0.0001
+vertex -0.0215 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 -0.0300 -0.0001
+vertex -0.0345 -0.0300 -0.0000
+vertex 0.0065 -0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0015 -0.0300 -0.0129
+vertex 0.0065 -0.0300 -0.0130
+vertex -0.0215 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0300 -0.0130
+vertex 0.0015 -0.0300 -0.0129
+vertex 0.0015 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 -0.0300 -0.0129
+vertex -0.0345 -0.0300 -0.0130
+vertex -0.0345 -0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 -0.0300 -0.0130
+vertex -0.0215 -0.0300 -0.0129
+vertex 0.0065 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 -0.0300 -0.0130
+vertex 0.0065 -0.0300 -0.0130
+vertex 0.0065 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0110 -0.0130
+vertex -0.0345 -0.0110 -0.0130
+vertex -0.0345 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 -0.0110 -0.0130
+vertex 0.0065 -0.0110 -0.0130
+vertex 0.0065 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0110 0.0000
+vertex -0.0345 -0.0110 -0.0000
+vertex -0.0345 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 -0.0110 -0.0000
+vertex 0.0065 -0.0110 0.0000
+vertex 0.0065 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0300 0.0000
+vertex -0.0345 -0.0300 -0.0000
+vertex -0.0345 -0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0057 -0.0460 0.0151
+vertex -0.0142 -0.0460 0.0198
+vertex -0.0018 -0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0018 -0.0460 0.0189
+vertex 0.0021 -0.0460 0.0173
+vertex 0.0057 -0.0460 0.0151
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0100 -0.0460 0.0202
+vertex -0.0058 -0.0460 0.0198
+vertex -0.0018 -0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0057 -0.0460 0.0151
+vertex 0.0089 -0.0460 0.0124
+vertex 0.0116 -0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0057 -0.0460 0.0151
+vertex -0.0058 -0.0460 -0.0328
+vertex -0.0316 -0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0138 -0.0460 0.0056
+vertex 0.0154 -0.0460 0.0017
+vertex 0.0163 -0.0460 -0.0023
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0163 -0.0460 -0.0023
+vertex 0.0057 -0.0460 0.0151
+vertex 0.0138 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0116 -0.0460 0.0092
+vertex 0.0138 -0.0460 0.0056
+vertex 0.0057 -0.0460 0.0151
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0057 -0.0460 0.0151
+vertex 0.0163 -0.0460 -0.0023
+vertex 0.0116 -0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0316 -0.0460 0.0092
+vertex -0.0221 -0.0460 0.0173
+vertex -0.0142 -0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0142 -0.0460 0.0198
+vertex -0.0221 -0.0460 0.0173
+vertex -0.0182 -0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0257 -0.0460 0.0151
+vertex -0.0221 -0.0460 0.0173
+vertex -0.0289 -0.0460 0.0124
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0100 -0.0460 0.0202
+vertex -0.0018 -0.0460 0.0189
+vertex -0.0142 -0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0289 -0.0460 0.0124
+vertex -0.0221 -0.0460 0.0173
+vertex -0.0316 -0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0316 -0.0460 0.0092
+vertex -0.0354 -0.0460 0.0017
+vertex -0.0338 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0354 -0.0460 0.0017
+vertex -0.0316 -0.0460 0.0092
+vertex -0.0367 -0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0057 -0.0460 0.0151
+vertex -0.0316 -0.0460 0.0092
+vertex -0.0142 -0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0363 -0.0460 -0.0023
+vertex -0.0354 -0.0460 0.0017
+vertex -0.0367 -0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0163 -0.0460 -0.0023
+vertex 0.0167 -0.0460 -0.0065
+vertex 0.0154 -0.0460 -0.0147
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0116 -0.0460 -0.0222
+vertex 0.0163 -0.0460 -0.0023
+vertex 0.0154 -0.0460 -0.0147
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0057 -0.0460 0.0151
+vertex 0.0116 -0.0460 -0.0222
+vertex -0.0058 -0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0116 -0.0460 -0.0222
+vertex 0.0154 -0.0460 -0.0147
+vertex 0.0138 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0057 -0.0460 -0.0281
+vertex 0.0116 -0.0460 -0.0222
+vertex 0.0089 -0.0460 -0.0254
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0021 -0.0460 -0.0303
+vertex -0.0058 -0.0460 -0.0328
+vertex 0.0116 -0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0058 -0.0460 -0.0328
+vertex -0.0338 -0.0460 -0.0186
+vertex -0.0316 -0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0058 -0.0460 -0.0328
+vertex 0.0021 -0.0460 -0.0303
+vertex -0.0018 -0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0116 -0.0460 -0.0222
+vertex 0.0057 -0.0460 -0.0281
+vertex 0.0021 -0.0460 -0.0303
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0182 -0.0460 -0.0319
+vertex -0.0058 -0.0460 -0.0328
+vertex -0.0100 -0.0460 -0.0332
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0289 -0.0460 -0.0254
+vertex -0.0316 -0.0460 -0.0222
+vertex -0.0338 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0367 -0.0460 -0.0065
+vertex -0.0354 -0.0460 -0.0147
+vertex -0.0363 -0.0460 -0.0107
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0354 -0.0460 -0.0147
+vertex -0.0367 -0.0460 -0.0065
+vertex -0.0338 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0367 -0.0460 -0.0065
+vertex -0.0316 -0.0460 0.0092
+vertex -0.0338 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0257 -0.0460 -0.0281
+vertex -0.0338 -0.0460 -0.0186
+vertex -0.0058 -0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0257 -0.0460 -0.0281
+vertex -0.0289 -0.0460 -0.0254
+vertex -0.0338 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0257 -0.0460 -0.0281
+vertex -0.0182 -0.0460 -0.0319
+vertex -0.0221 -0.0460 -0.0303
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0182 -0.0460 -0.0319
+vertex -0.0257 -0.0460 -0.0281
+vertex -0.0058 -0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0142 -0.0460 -0.0328
+vertex -0.0182 -0.0460 -0.0319
+vertex -0.0100 -0.0460 -0.0332
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0154 -0.0460 -0.0147
+vertex 0.0167 -0.0460 -0.0065
+vertex 0.0163 -0.0460 -0.0107
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0585 -0.0300 0.0230
+vertex 0.0065 -0.0300 0.0230
+vertex 0.0065 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0300 0.0230
+vertex -0.0585 0.0300 0.0230
+vertex -0.0585 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0300 0.0230
+vertex 0.0015 0.0300 -0.0001
+vertex -0.0215 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0015 0.0300 -0.0001
+vertex 0.0065 0.0300 0.0230
+vertex 0.0065 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0585 0.0300 0.0230
+vertex -0.0215 0.0300 -0.0001
+vertex -0.0585 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 0.0300 -0.0001
+vertex -0.0585 0.0300 0.0230
+vertex 0.0065 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0015 0.0300 -0.0129
+vertex 0.0065 0.0300 -0.0130
+vertex -0.0215 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0300 -0.0130
+vertex 0.0015 0.0300 -0.0129
+vertex 0.0015 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 0.0300 -0.0129
+vertex -0.0585 0.0300 -0.0130
+vertex -0.0215 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0585 0.0300 -0.0130
+vertex -0.0215 0.0300 -0.0129
+vertex 0.0065 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0585 0.0300 -0.0130
+vertex 0.0065 0.0300 -0.0130
+vertex 0.0065 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0300 -0.0130
+vertex -0.0585 -0.0300 -0.0130
+vertex -0.0585 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0300 -0.0130
+vertex 0.0015 -0.0300 -0.0129
+vertex -0.0215 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0015 -0.0300 -0.0129
+vertex 0.0065 -0.0300 -0.0130
+vertex 0.0015 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0585 -0.0300 -0.0130
+vertex -0.0215 -0.0300 -0.0129
+vertex -0.0215 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 -0.0300 -0.0129
+vertex -0.0585 -0.0300 -0.0130
+vertex 0.0065 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0015 -0.0300 -0.0001
+vertex 0.0065 -0.0300 0.0230
+vertex -0.0215 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0300 0.0230
+vertex 0.0015 -0.0300 -0.0001
+vertex 0.0065 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 -0.0300 -0.0001
+vertex -0.0585 -0.0300 0.0230
+vertex -0.0585 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0585 -0.0300 0.0230
+vertex -0.0215 -0.0300 -0.0001
+vertex 0.0065 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1050 -0.0203 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 -0.0168 -0.0130
+vertex -0.1060 -0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 -0.0203 -0.0130
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1080 -0.0203 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0158 -0.0130
+vertex -0.1060 -0.0143 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0143 -0.0130
+vertex -0.1060 -0.0158 -0.0130
+vertex -0.1070 -0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0132 -0.0130
+vertex -0.1060 -0.0118 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0118 -0.0130
+vertex -0.1060 -0.0132 -0.0130
+vertex -0.1070 -0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0143 -0.0130
+vertex -0.1060 -0.0132 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 -0.0118 -0.0130
+vertex -0.1060 -0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0108 -0.0130
+vertex -0.1060 -0.0092 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0092 -0.0130
+vertex -0.1060 -0.0108 -0.0130
+vertex -0.1070 -0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0083 -0.0130
+vertex -0.1060 -0.0067 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0067 -0.0130
+vertex -0.1060 -0.0083 -0.0130
+vertex -0.1070 -0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0092 -0.0130
+vertex -0.1060 -0.0083 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0057 -0.0130
+vertex -0.1060 -0.0043 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0043 -0.0130
+vertex -0.1060 -0.0057 -0.0130
+vertex -0.1070 -0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0033 -0.0130
+vertex -0.1060 -0.0018 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0018 -0.0130
+vertex -0.1060 -0.0033 -0.0130
+vertex -0.1070 -0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0043 -0.0130
+vertex -0.1060 -0.0033 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0067 -0.0130
+vertex -0.1060 -0.0057 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 -0.0018 -0.0130
+vertex -0.1060 -0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0143 -0.0130
+vertex -0.1060 -0.0143 -0.0130
+vertex -0.1070 -0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0158 -0.0130
+vertex -0.1070 -0.0168 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0118 -0.0130
+vertex -0.1060 -0.0118 -0.0130
+vertex -0.1070 -0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0132 -0.0130
+vertex -0.1070 -0.0143 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0158 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+vertex -0.1070 -0.0143 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0132 -0.0130
+vertex -0.1260 -0.0132 -0.0130
+vertex -0.1070 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 -0.0173 -0.0130
+vertex -0.1080 -0.0203 -0.0130
+vertex -0.1260 -0.0192 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0092 -0.0130
+vertex -0.1060 -0.0092 -0.0130
+vertex -0.1070 -0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0118 -0.0130
+vertex -0.1070 -0.0108 -0.0130
+vertex -0.1070 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0108 -0.0130
+vertex -0.1260 -0.0108 -0.0130
+vertex -0.1070 -0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0168 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0168 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1070 -0.0168 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0067 -0.0130
+vertex -0.1060 -0.0067 -0.0130
+vertex -0.1070 -0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0092 -0.0130
+vertex -0.1070 -0.0083 -0.0130
+vertex -0.1070 -0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0057 -0.0130
+vertex -0.1070 -0.0043 -0.0130
+vertex -0.1060 -0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0067 -0.0130
+vertex -0.1070 -0.0083 -0.0130
+vertex -0.1260 -0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0057 -0.0130
+vertex -0.1070 -0.0043 -0.0130
+vertex -0.1070 -0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0033 -0.0130
+vertex -0.1070 -0.0018 -0.0130
+vertex -0.1070 -0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0018 -0.0130
+vertex -0.1070 -0.0008 -0.0130
+vertex -0.1070 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0033 -0.0130
+vertex -0.1070 -0.0043 -0.0130
+vertex -0.1260 -0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0018 -0.0130
+vertex -0.1060 -0.0018 -0.0130
+vertex -0.1070 -0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0057 -0.0130
+vertex -0.1070 -0.0067 -0.0130
+vertex -0.1260 -0.0067 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0008 -0.0130
+vertex -0.1070 -0.0008 -0.0130
+vertex -0.1070 0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0008 -0.0130
+vertex -0.1260 -0.0008 -0.0130
+vertex -0.1070 0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1080 -0.0203 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 -0.0008 -0.0130
+vertex -0.1060 0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0033 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0043 -0.0130
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0018 -0.0130
+vertex -0.1070 0.0018 -0.0130
+vertex -0.1060 0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0043 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0057 -0.0130
+vertex -0.1060 0.0067 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0083 -0.0130
+vertex -0.1060 0.0092 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0067 -0.0130
+vertex -0.1070 0.0067 -0.0130
+vertex -0.1060 0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0067 -0.0130
+vertex -0.1060 0.0083 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0043 -0.0130
+vertex -0.1070 0.0043 -0.0130
+vertex -0.1060 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0043 -0.0130
+vertex -0.1060 0.0057 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0108 -0.0130
+vertex -0.1060 0.0118 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1060 0.0132 -0.0130
+vertex -0.1060 0.0143 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0132 -0.0130
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1060 0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0118 -0.0130
+vertex -0.1070 0.0118 -0.0130
+vertex -0.1060 0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0108 -0.0130
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1060 0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0143 -0.0130
+vertex -0.1060 0.0158 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0158 -0.0130
+vertex -0.1060 0.0143 -0.0130
+vertex -0.1070 0.0143 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0168 -0.0130
+vertex -0.1060 0.0182 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0182 -0.0130
+vertex -0.1060 0.0168 -0.0130
+vertex -0.1070 0.0168 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0158 -0.0130
+vertex -0.1060 0.0168 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1060 0.0182 -0.0130
+vertex -0.1060 0.0192 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0092 -0.0130
+vertex -0.1070 0.0092 -0.0130
+vertex -0.1060 0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0018 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0033 -0.0130
+vertex -0.1060 0.0033 -0.0130
+vertex -0.1070 0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0008 -0.0130
+vertex -0.1070 0.0018 -0.0130
+vertex -0.1070 0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0057 -0.0130
+vertex -0.1060 0.0057 -0.0130
+vertex -0.1070 0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0033 -0.0130
+vertex -0.1070 0.0043 -0.0130
+vertex -0.1070 0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0033 -0.0130
+vertex -0.1070 0.0018 -0.0130
+vertex -0.1260 0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0083 -0.0130
+vertex -0.1060 0.0083 -0.0130
+vertex -0.1070 0.0067 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0057 -0.0130
+vertex -0.1070 0.0067 -0.0130
+vertex -0.1070 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0108 -0.0130
+vertex -0.1060 0.0108 -0.0130
+vertex -0.1070 0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0083 -0.0130
+vertex -0.1070 0.0092 -0.0130
+vertex -0.1070 0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0083 -0.0130
+vertex -0.1070 0.0067 -0.0130
+vertex -0.1260 0.0067 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0057 -0.0130
+vertex -0.1070 0.0043 -0.0130
+vertex -0.1260 0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0132 -0.0130
+vertex -0.1060 0.0132 -0.0130
+vertex -0.1070 0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0108 -0.0130
+vertex -0.1070 0.0118 -0.0130
+vertex -0.1070 0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0143 -0.0130
+vertex -0.1070 0.0158 -0.0130
+vertex -0.1060 0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0132 -0.0130
+vertex -0.1070 0.0118 -0.0130
+vertex -0.1260 0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1250 0.0173 -0.0130
+vertex -0.1070 0.0158 -0.0130
+vertex -0.1070 0.0143 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1250 0.0173 -0.0130
+vertex -0.1070 0.0182 -0.0130
+vertex -0.1070 0.0168 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1250 0.0173 -0.0130
+vertex -0.1070 0.0192 -0.0130
+vertex -0.1070 0.0182 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0168 -0.0130
+vertex -0.1070 0.0158 -0.0130
+vertex -0.1250 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0182 -0.0130
+vertex -0.1060 0.0182 -0.0130
+vertex -0.1070 0.0168 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0143 -0.0130
+vertex -0.1070 0.0132 -0.0130
+vertex -0.1250 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0192 -0.0130
+vertex -0.1070 0.0192 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0108 -0.0130
+vertex -0.1070 0.0092 -0.0130
+vertex -0.1260 0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0008 -0.0130
+vertex -0.1060 -0.0008 -0.0130
+vertex -0.1070 0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1070 0.0192 -0.0130
+vertex -0.1250 0.0203 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0132 -0.0130
+vertex -0.1070 -0.0132 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0168 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+vertex -0.1260 -0.0182 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0143 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+vertex -0.1260 -0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0182 -0.0130
+vertex -0.1270 -0.0182 -0.0130
+vertex -0.1260 -0.0168 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0158 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+vertex -0.1260 -0.0168 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0118 -0.0130
+vertex -0.1070 -0.0118 -0.0130
+vertex -0.1260 -0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0092 -0.0130
+vertex -0.1070 -0.0092 -0.0130
+vertex -0.1260 -0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0132 -0.0130
+vertex -0.1270 -0.0132 -0.0130
+vertex -0.1260 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0108 -0.0130
+vertex -0.1070 -0.0108 -0.0130
+vertex -0.1260 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0158 -0.0130
+vertex -0.1270 -0.0158 -0.0130
+vertex -0.1260 -0.0143 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0132 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+vertex -0.1260 -0.0143 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0067 -0.0130
+vertex -0.1070 -0.0067 -0.0130
+vertex -0.1260 -0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0043 -0.0130
+vertex -0.1070 -0.0043 -0.0130
+vertex -0.1260 -0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0083 -0.0130
+vertex -0.1270 -0.0083 -0.0130
+vertex -0.1260 -0.0067 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0057 -0.0130
+vertex -0.1070 -0.0057 -0.0130
+vertex -0.1260 -0.0067 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0018 -0.0130
+vertex -0.1070 -0.0018 -0.0130
+vertex -0.1260 -0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0008 -0.0130
+vertex -0.1070 0.0008 -0.0130
+vertex -0.1260 -0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0033 -0.0130
+vertex -0.1270 -0.0033 -0.0130
+vertex -0.1260 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0008 -0.0130
+vertex -0.1070 -0.0008 -0.0130
+vertex -0.1260 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0057 -0.0130
+vertex -0.1270 -0.0057 -0.0130
+vertex -0.1260 -0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0033 -0.0130
+vertex -0.1070 -0.0033 -0.0130
+vertex -0.1260 -0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0108 -0.0130
+vertex -0.1270 -0.0108 -0.0130
+vertex -0.1260 -0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0083 -0.0130
+vertex -0.1070 -0.0083 -0.0130
+vertex -0.1260 -0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0182 -0.0130
+vertex -0.1270 -0.0192 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0158 -0.0130
+vertex -0.1270 -0.0168 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0182 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1270 -0.0168 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0182 -0.0130
+vertex -0.1270 -0.0168 -0.0130
+vertex -0.1260 -0.0168 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0143 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1270 -0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1270 -0.0143 -0.0130
+vertex -0.1270 -0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0132 -0.0130
+vertex -0.1270 -0.0118 -0.0130
+vertex -0.1260 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0118 -0.0130
+vertex -0.1270 -0.0132 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1270 -0.0108 -0.0130
+vertex -0.1270 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0192 -0.0130
+vertex -0.1260 -0.0192 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0158 -0.0130
+vertex -0.1270 -0.0143 -0.0130
+vertex -0.1260 -0.0143 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0108 -0.0130
+vertex -0.1270 -0.0092 -0.0130
+vertex -0.1260 -0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0092 -0.0130
+vertex -0.1270 -0.0108 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0083 -0.0130
+vertex -0.1270 -0.0067 -0.0130
+vertex -0.1260 -0.0067 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0067 -0.0130
+vertex -0.1270 -0.0083 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0092 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1270 -0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0057 -0.0130
+vertex -0.1270 -0.0043 -0.0130
+vertex -0.1260 -0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0043 -0.0130
+vertex -0.1270 -0.0057 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0033 -0.0130
+vertex -0.1270 -0.0018 -0.0130
+vertex -0.1260 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 0.0173 -0.0130
+vertex -0.1270 -0.0018 -0.0130
+vertex -0.1270 -0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 0.0173 -0.0130
+vertex -0.1270 -0.0008 -0.0130
+vertex -0.1270 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0033 -0.0130
+vertex -0.1270 -0.0043 -0.0130
+vertex -0.1280 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0067 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1270 -0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1280 0.0173 -0.0130
+vertex -0.1270 -0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0192 -0.0130
+vertex -0.1080 -0.0203 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0008 -0.0130
+vertex -0.1270 -0.0008 -0.0130
+vertex -0.1270 0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0033 -0.0130
+vertex -0.1070 0.0033 -0.0130
+vertex -0.1260 0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0057 -0.0130
+vertex -0.1070 0.0057 -0.0130
+vertex -0.1260 0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0018 -0.0130
+vertex -0.1270 0.0018 -0.0130
+vertex -0.1260 0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0043 -0.0130
+vertex -0.1070 0.0043 -0.0130
+vertex -0.1260 0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0083 -0.0130
+vertex -0.1070 0.0083 -0.0130
+vertex -0.1260 0.0067 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0108 -0.0130
+vertex -0.1070 0.0108 -0.0130
+vertex -0.1260 0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0067 -0.0130
+vertex -0.1270 0.0067 -0.0130
+vertex -0.1260 0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0092 -0.0130
+vertex -0.1070 0.0092 -0.0130
+vertex -0.1260 0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0043 -0.0130
+vertex -0.1270 0.0043 -0.0130
+vertex -0.1260 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0067 -0.0130
+vertex -0.1070 0.0067 -0.0130
+vertex -0.1260 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0132 -0.0130
+vertex -0.1070 0.0132 -0.0130
+vertex -0.1260 0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1250 0.0173 -0.0130
+vertex -0.1250 0.0203 -0.0130
+vertex -0.1070 0.0192 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 0.0173 -0.0130
+vertex -0.1250 0.0173 -0.0130
+vertex -0.1260 0.0168 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0132 -0.0130
+vertex -0.1260 0.0132 -0.0130
+vertex -0.1250 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0118 -0.0130
+vertex -0.1260 0.0108 -0.0130
+vertex -0.1260 0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0132 -0.0130
+vertex -0.1260 0.0143 -0.0130
+vertex -0.1250 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0158 -0.0130
+vertex -0.1260 0.0168 -0.0130
+vertex -0.1250 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0143 -0.0130
+vertex -0.1270 0.0143 -0.0130
+vertex -0.1260 0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0143 -0.0130
+vertex -0.1260 0.0158 -0.0130
+vertex -0.1250 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0118 -0.0130
+vertex -0.1270 0.0118 -0.0130
+vertex -0.1260 0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0168 -0.0130
+vertex -0.1270 0.0168 -0.0130
+vertex -0.1280 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0092 -0.0130
+vertex -0.1270 0.0092 -0.0130
+vertex -0.1260 0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0018 -0.0130
+vertex -0.1260 0.0008 -0.0130
+vertex -0.1260 0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0018 -0.0130
+vertex -0.1270 0.0008 -0.0130
+vertex -0.1280 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0043 -0.0130
+vertex -0.1270 0.0033 -0.0130
+vertex -0.1280 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0018 -0.0130
+vertex -0.1280 0.0173 -0.0130
+vertex -0.1270 0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0018 -0.0130
+vertex -0.1270 0.0033 -0.0130
+vertex -0.1260 0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0067 -0.0130
+vertex -0.1270 0.0057 -0.0130
+vertex -0.1280 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0092 -0.0130
+vertex -0.1270 0.0083 -0.0130
+vertex -0.1280 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0067 -0.0130
+vertex -0.1280 0.0173 -0.0130
+vertex -0.1270 0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0067 -0.0130
+vertex -0.1270 0.0083 -0.0130
+vertex -0.1260 0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0043 -0.0130
+vertex -0.1280 0.0173 -0.0130
+vertex -0.1270 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0043 -0.0130
+vertex -0.1270 0.0057 -0.0130
+vertex -0.1260 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0118 -0.0130
+vertex -0.1270 0.0108 -0.0130
+vertex -0.1280 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0143 -0.0130
+vertex -0.1270 0.0132 -0.0130
+vertex -0.1280 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0118 -0.0130
+vertex -0.1280 0.0173 -0.0130
+vertex -0.1270 0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0118 -0.0130
+vertex -0.1270 0.0132 -0.0130
+vertex -0.1260 0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0168 -0.0130
+vertex -0.1270 0.0158 -0.0130
+vertex -0.1280 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 0.0173 -0.0130
+vertex -0.1285 0.0300 -0.0130
+vertex -0.1280 0.0203 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0300 -0.0130
+vertex -0.1280 0.0173 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0300 -0.0130
+vertex -0.1250 0.0203 -0.0130
+vertex -0.1280 0.0203 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0158 -0.0130
+vertex -0.1270 0.0143 -0.0130
+vertex -0.1280 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0108 -0.0130
+vertex -0.1270 0.0092 -0.0130
+vertex -0.1280 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0143 -0.0130
+vertex -0.1270 0.0158 -0.0130
+vertex -0.1260 0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0008 -0.0130
+vertex -0.1270 -0.0008 -0.0130
+vertex -0.1280 0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0092 -0.0130
+vertex -0.1270 0.0108 -0.0130
+vertex -0.1260 0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0008 -0.0130
+vertex -0.1260 -0.0008 -0.0130
+vertex -0.1270 0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1250 0.0203 -0.0130
+vertex -0.1285 0.0300 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0182 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+vertex -0.1260 -0.0192 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1285 0.0060 0.0001
+vertex -0.1285 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0060 0.0001
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1285 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0300 -0.0130
+vertex -0.1285 0.0240 0.0001
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0240 0.0001
+vertex -0.1285 0.0300 -0.0130
+vertex -0.1285 0.0060 0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0060 0.0207
+vertex -0.1285 -0.0300 0.0230
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0300 0.0230
+vertex -0.1285 0.0060 0.0207
+vertex -0.1285 0.0060 0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0240 0.0207
+vertex -0.1285 0.0300 0.0230
+vertex -0.1285 0.0240 0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0300 0.0230
+vertex -0.1285 0.0240 0.0207
+vertex -0.1285 0.0060 0.0207
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0300 0.0230
+vertex -0.1280 -0.0203 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1270 -0.0168 0.0230
+vertex -0.1270 -0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 -0.0203 0.0230
+vertex -0.1285 -0.0300 0.0230
+vertex -0.1250 -0.0203 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0300 0.0230
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0158 0.0230
+vertex -0.1270 -0.0143 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0143 0.0230
+vertex -0.1270 -0.0158 0.0230
+vertex -0.1260 -0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0132 0.0230
+vertex -0.1270 -0.0118 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0118 0.0230
+vertex -0.1270 -0.0132 0.0230
+vertex -0.1260 -0.0132 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0143 0.0230
+vertex -0.1270 -0.0132 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1270 -0.0118 0.0230
+vertex -0.1270 -0.0108 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0108 0.0230
+vertex -0.1270 -0.0092 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0092 0.0230
+vertex -0.1270 -0.0108 0.0230
+vertex -0.1260 -0.0108 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0083 0.0230
+vertex -0.1270 -0.0067 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0067 0.0230
+vertex -0.1270 -0.0083 0.0230
+vertex -0.1260 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0092 0.0230
+vertex -0.1270 -0.0083 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0057 0.0230
+vertex -0.1270 -0.0043 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0043 0.0230
+vertex -0.1270 -0.0057 0.0230
+vertex -0.1260 -0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0033 0.0230
+vertex -0.1270 -0.0018 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0018 0.0230
+vertex -0.1270 -0.0033 0.0230
+vertex -0.1260 -0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0043 0.0230
+vertex -0.1270 -0.0033 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0067 0.0230
+vertex -0.1270 -0.0057 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1270 -0.0018 0.0230
+vertex -0.1270 -0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0143 0.0230
+vertex -0.1270 -0.0143 0.0230
+vertex -0.1260 -0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0158 0.0230
+vertex -0.1260 -0.0168 0.0230
+vertex -0.1250 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0118 0.0230
+vertex -0.1270 -0.0118 0.0230
+vertex -0.1260 -0.0132 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0132 0.0230
+vertex -0.1260 -0.0143 0.0230
+vertex -0.1250 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0158 0.0230
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1260 -0.0143 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0132 0.0230
+vertex -0.1070 -0.0132 0.0230
+vertex -0.1260 -0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1250 -0.0203 0.0230
+vertex -0.1070 -0.0192 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0092 0.0230
+vertex -0.1270 -0.0092 0.0230
+vertex -0.1260 -0.0108 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0118 0.0230
+vertex -0.1260 -0.0108 0.0230
+vertex -0.1260 -0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0108 0.0230
+vertex -0.1070 -0.0108 0.0230
+vertex -0.1260 -0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0168 0.0230
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1250 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0168 0.0230
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1260 -0.0168 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0067 0.0230
+vertex -0.1270 -0.0067 0.0230
+vertex -0.1260 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0092 0.0230
+vertex -0.1260 -0.0083 0.0230
+vertex -0.1260 -0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0057 0.0230
+vertex -0.1260 -0.0043 0.0230
+vertex -0.1270 -0.0043 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0067 0.0230
+vertex -0.1260 -0.0083 0.0230
+vertex -0.1070 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0057 0.0230
+vertex -0.1260 -0.0043 0.0230
+vertex -0.1260 -0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0033 0.0230
+vertex -0.1260 -0.0018 0.0230
+vertex -0.1260 -0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0018 0.0230
+vertex -0.1260 -0.0008 0.0230
+vertex -0.1260 -0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0033 0.0230
+vertex -0.1260 -0.0043 0.0230
+vertex -0.1070 -0.0043 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0018 0.0230
+vertex -0.1270 -0.0018 0.0230
+vertex -0.1260 -0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0057 0.0230
+vertex -0.1260 -0.0067 0.0230
+vertex -0.1070 -0.0067 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0008 0.0230
+vertex -0.1260 -0.0008 0.0230
+vertex -0.1260 0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0008 0.0230
+vertex -0.1070 -0.0008 0.0230
+vertex -0.1260 0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0300 0.0230
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1250 -0.0203 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1270 -0.0008 0.0230
+vertex -0.1270 0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0033 0.0230
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1270 0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0043 0.0230
+vertex -0.1285 0.0300 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0018 0.0230
+vertex -0.1260 0.0018 0.0230
+vertex -0.1270 0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0043 0.0230
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1270 0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0057 0.0230
+vertex -0.1270 0.0067 0.0230
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0083 0.0230
+vertex -0.1270 0.0092 0.0230
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0067 0.0230
+vertex -0.1260 0.0067 0.0230
+vertex -0.1270 0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0067 0.0230
+vertex -0.1270 0.0083 0.0230
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0043 0.0230
+vertex -0.1260 0.0043 0.0230
+vertex -0.1270 0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0043 0.0230
+vertex -0.1270 0.0057 0.0230
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0108 0.0230
+vertex -0.1270 0.0118 0.0230
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0300 0.0230
+vertex -0.1270 0.0132 0.0230
+vertex -0.1270 0.0143 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0132 0.0230
+vertex -0.1285 0.0300 0.0230
+vertex -0.1270 0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0118 0.0230
+vertex -0.1260 0.0118 0.0230
+vertex -0.1270 0.0132 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0108 0.0230
+vertex -0.1285 0.0300 0.0230
+vertex -0.1270 0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0143 0.0230
+vertex -0.1270 0.0158 0.0230
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0158 0.0230
+vertex -0.1270 0.0143 0.0230
+vertex -0.1260 0.0143 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0168 0.0230
+vertex -0.1270 0.0182 0.0230
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0182 0.0230
+vertex -0.1270 0.0168 0.0230
+vertex -0.1260 0.0168 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0158 0.0230
+vertex -0.1270 0.0168 0.0230
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0300 0.0230
+vertex -0.1270 0.0182 0.0230
+vertex -0.1270 0.0192 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0092 0.0230
+vertex -0.1260 0.0092 0.0230
+vertex -0.1270 0.0108 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0018 0.0230
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1270 0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0033 0.0230
+vertex -0.1270 0.0033 0.0230
+vertex -0.1260 0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0008 0.0230
+vertex -0.1260 0.0018 0.0230
+vertex -0.1260 0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0057 0.0230
+vertex -0.1270 0.0057 0.0230
+vertex -0.1260 0.0043 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0033 0.0230
+vertex -0.1260 0.0043 0.0230
+vertex -0.1260 0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0033 0.0230
+vertex -0.1260 0.0018 0.0230
+vertex -0.1070 0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0083 0.0230
+vertex -0.1270 0.0083 0.0230
+vertex -0.1260 0.0067 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0057 0.0230
+vertex -0.1260 0.0067 0.0230
+vertex -0.1260 0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0108 0.0230
+vertex -0.1270 0.0108 0.0230
+vertex -0.1260 0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0083 0.0230
+vertex -0.1260 0.0092 0.0230
+vertex -0.1260 0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0083 0.0230
+vertex -0.1260 0.0067 0.0230
+vertex -0.1070 0.0067 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0057 0.0230
+vertex -0.1260 0.0043 0.0230
+vertex -0.1070 0.0043 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0132 0.0230
+vertex -0.1270 0.0132 0.0230
+vertex -0.1260 0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0108 0.0230
+vertex -0.1260 0.0118 0.0230
+vertex -0.1260 0.0108 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0143 0.0230
+vertex -0.1260 0.0158 0.0230
+vertex -0.1270 0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0132 0.0230
+vertex -0.1260 0.0118 0.0230
+vertex -0.1070 0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 0.0173 0.0230
+vertex -0.1260 0.0158 0.0230
+vertex -0.1260 0.0143 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 0.0173 0.0230
+vertex -0.1260 0.0182 0.0230
+vertex -0.1260 0.0168 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 0.0173 0.0230
+vertex -0.1260 0.0192 0.0230
+vertex -0.1260 0.0182 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0168 0.0230
+vertex -0.1260 0.0158 0.0230
+vertex -0.1080 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0182 0.0230
+vertex -0.1270 0.0182 0.0230
+vertex -0.1260 0.0168 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0143 0.0230
+vertex -0.1260 0.0132 0.0230
+vertex -0.1080 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0192 0.0230
+vertex -0.1260 0.0192 0.0230
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0108 0.0230
+vertex -0.1260 0.0092 0.0230
+vertex -0.1070 0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0008 0.0230
+vertex -0.1270 -0.0008 0.0230
+vertex -0.1260 0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0300 0.0230
+vertex -0.1260 0.0192 0.0230
+vertex -0.1080 0.0203 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0132 0.0230
+vertex -0.1260 -0.0132 0.0230
+vertex -0.1250 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0168 0.0230
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1070 -0.0182 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0143 0.0230
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1070 -0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0182 0.0230
+vertex -0.1060 -0.0182 0.0230
+vertex -0.1070 -0.0168 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0158 0.0230
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1070 -0.0168 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0118 0.0230
+vertex -0.1260 -0.0118 0.0230
+vertex -0.1070 -0.0132 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0092 0.0230
+vertex -0.1260 -0.0092 0.0230
+vertex -0.1070 -0.0108 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0132 0.0230
+vertex -0.1060 -0.0132 0.0230
+vertex -0.1070 -0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0108 0.0230
+vertex -0.1260 -0.0108 0.0230
+vertex -0.1070 -0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0158 0.0230
+vertex -0.1060 -0.0158 0.0230
+vertex -0.1070 -0.0143 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0132 0.0230
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1070 -0.0143 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0067 0.0230
+vertex -0.1260 -0.0067 0.0230
+vertex -0.1070 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0043 0.0230
+vertex -0.1260 -0.0043 0.0230
+vertex -0.1070 -0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0083 0.0230
+vertex -0.1060 -0.0083 0.0230
+vertex -0.1070 -0.0067 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0057 0.0230
+vertex -0.1260 -0.0057 0.0230
+vertex -0.1070 -0.0067 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0018 0.0230
+vertex -0.1260 -0.0018 0.0230
+vertex -0.1070 -0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0008 0.0230
+vertex -0.1260 0.0008 0.0230
+vertex -0.1070 -0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0033 0.0230
+vertex -0.1060 -0.0033 0.0230
+vertex -0.1070 -0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0008 0.0230
+vertex -0.1260 -0.0008 0.0230
+vertex -0.1070 -0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0057 0.0230
+vertex -0.1060 -0.0057 0.0230
+vertex -0.1070 -0.0043 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0033 0.0230
+vertex -0.1260 -0.0033 0.0230
+vertex -0.1070 -0.0043 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0108 0.0230
+vertex -0.1060 -0.0108 0.0230
+vertex -0.1070 -0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0083 0.0230
+vertex -0.1260 -0.0083 0.0230
+vertex -0.1070 -0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0182 0.0230
+vertex -0.1060 -0.0192 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0158 0.0230
+vertex -0.1060 -0.0168 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0182 0.0230
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1060 -0.0168 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0182 0.0230
+vertex -0.1060 -0.0168 0.0230
+vertex -0.1070 -0.0168 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0143 0.0230
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1060 -0.0132 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1060 -0.0143 0.0230
+vertex -0.1060 -0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0132 0.0230
+vertex -0.1060 -0.0118 0.0230
+vertex -0.1070 -0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0118 0.0230
+vertex -0.1060 -0.0132 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1060 -0.0108 0.0230
+vertex -0.1060 -0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0192 0.0230
+vertex -0.1070 -0.0192 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0158 0.0230
+vertex -0.1060 -0.0143 0.0230
+vertex -0.1070 -0.0143 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0108 0.0230
+vertex -0.1060 -0.0092 0.0230
+vertex -0.1070 -0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0092 0.0230
+vertex -0.1060 -0.0108 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0083 0.0230
+vertex -0.1060 -0.0067 0.0230
+vertex -0.1070 -0.0067 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0067 0.0230
+vertex -0.1060 -0.0083 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0092 0.0230
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1060 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0057 0.0230
+vertex -0.1060 -0.0043 0.0230
+vertex -0.1070 -0.0043 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0043 0.0230
+vertex -0.1060 -0.0057 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0033 0.0230
+vertex -0.1060 -0.0018 0.0230
+vertex -0.1070 -0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 -0.0018 0.0230
+vertex -0.1060 -0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 -0.0008 0.0230
+vertex -0.1060 -0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0033 0.0230
+vertex -0.1060 -0.0043 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0067 0.0230
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1060 -0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 -0.0043 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0192 0.0230
+vertex -0.1250 -0.0203 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0008 0.0230
+vertex -0.1060 -0.0008 0.0230
+vertex -0.1060 0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0033 0.0230
+vertex -0.1260 0.0033 0.0230
+vertex -0.1070 0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0057 0.0230
+vertex -0.1260 0.0057 0.0230
+vertex -0.1070 0.0043 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0018 0.0230
+vertex -0.1060 0.0018 0.0230
+vertex -0.1070 0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0043 0.0230
+vertex -0.1260 0.0043 0.0230
+vertex -0.1070 0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0083 0.0230
+vertex -0.1260 0.0083 0.0230
+vertex -0.1070 0.0067 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0108 0.0230
+vertex -0.1260 0.0108 0.0230
+vertex -0.1070 0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0067 0.0230
+vertex -0.1060 0.0067 0.0230
+vertex -0.1070 0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0092 0.0230
+vertex -0.1260 0.0092 0.0230
+vertex -0.1070 0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0043 0.0230
+vertex -0.1060 0.0043 0.0230
+vertex -0.1070 0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0067 0.0230
+vertex -0.1260 0.0067 0.0230
+vertex -0.1070 0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0132 0.0230
+vertex -0.1260 0.0132 0.0230
+vertex -0.1070 0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 0.0173 0.0230
+vertex -0.1080 0.0203 0.0230
+vertex -0.1260 0.0192 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 0.0173 0.0230
+vertex -0.1080 0.0173 0.0230
+vertex -0.1070 0.0168 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0132 0.0230
+vertex -0.1070 0.0132 0.0230
+vertex -0.1080 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0118 0.0230
+vertex -0.1070 0.0108 0.0230
+vertex -0.1070 0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0132 0.0230
+vertex -0.1070 0.0143 0.0230
+vertex -0.1080 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0158 0.0230
+vertex -0.1070 0.0168 0.0230
+vertex -0.1080 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0143 0.0230
+vertex -0.1060 0.0143 0.0230
+vertex -0.1070 0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0143 0.0230
+vertex -0.1070 0.0158 0.0230
+vertex -0.1080 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0118 0.0230
+vertex -0.1060 0.0118 0.0230
+vertex -0.1070 0.0132 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0168 0.0230
+vertex -0.1060 0.0168 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0092 0.0230
+vertex -0.1060 0.0092 0.0230
+vertex -0.1070 0.0108 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0018 0.0230
+vertex -0.1070 0.0008 0.0230
+vertex -0.1070 0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0018 0.0230
+vertex -0.1060 0.0008 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0043 0.0230
+vertex -0.1060 0.0033 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0018 0.0230
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0018 0.0230
+vertex -0.1060 0.0033 0.0230
+vertex -0.1070 0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0067 0.0230
+vertex -0.1060 0.0057 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0092 0.0230
+vertex -0.1060 0.0083 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0067 0.0230
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0067 0.0230
+vertex -0.1060 0.0083 0.0230
+vertex -0.1070 0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0043 0.0230
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0043 0.0230
+vertex -0.1060 0.0057 0.0230
+vertex -0.1070 0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0118 0.0230
+vertex -0.1060 0.0108 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0143 0.0230
+vertex -0.1060 0.0132 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0118 0.0230
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 0.0132 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0118 0.0230
+vertex -0.1060 0.0132 0.0230
+vertex -0.1070 0.0132 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0168 0.0230
+vertex -0.1060 0.0158 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 0.0173 0.0230
+vertex -0.1045 0.0300 0.0230
+vertex -0.1050 0.0203 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 0.0230
+vertex -0.1050 0.0173 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 0.0230
+vertex -0.1080 0.0203 0.0230
+vertex -0.1050 0.0203 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0158 0.0230
+vertex -0.1060 0.0143 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0108 0.0230
+vertex -0.1060 0.0092 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0143 0.0230
+vertex -0.1060 0.0158 0.0230
+vertex -0.1070 0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0008 0.0230
+vertex -0.1060 -0.0008 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0092 0.0230
+vertex -0.1060 0.0108 0.0230
+vertex -0.1070 0.0108 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0008 0.0230
+vertex -0.1070 -0.0008 0.0230
+vertex -0.1060 0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 0.0203 0.0230
+vertex -0.1045 0.0300 0.0230
+vertex -0.1285 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0182 0.0230
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1070 -0.0192 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1045 0.0127 0.0174
+vertex -0.1045 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0127 0.0174
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1045 0.0127 -0.0031
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 0.0230
+vertex -0.1045 0.0257 0.0174
+vertex -0.1045 0.0257 -0.0031
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0257 0.0174
+vertex -0.1045 0.0300 0.0230
+vertex -0.1045 0.0127 0.0174
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0127 -0.0031
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1045 0.0127 -0.0031
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0257 -0.0031
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1045 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1045 0.0257 -0.0031
+vertex -0.1045 0.0127 -0.0031
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0300 -0.0000
+vertex -0.1645 0.0300 -0.0001
+vertex -0.1415 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1645 0.0300 -0.0001
+vertex -0.1695 0.0300 -0.0000
+vertex -0.1695 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0300 0.0000
+vertex -0.1415 0.0300 -0.0001
+vertex -0.1415 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1415 0.0300 -0.0001
+vertex -0.1285 0.0300 0.0000
+vertex -0.1695 0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1645 0.0300 -0.0129
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1415 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1645 0.0300 -0.0129
+vertex -0.1645 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1415 0.0300 -0.0129
+vertex -0.1285 0.0300 -0.0130
+vertex -0.1285 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0300 -0.0130
+vertex -0.1415 0.0300 -0.0129
+vertex -0.1695 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0300 -0.0130
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1695 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0110 -0.0130
+vertex -0.1285 0.0110 -0.0130
+vertex -0.1285 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0110 -0.0130
+vertex -0.1695 0.0110 -0.0130
+vertex -0.1695 0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0110 -0.0000
+vertex -0.1285 0.0110 -0.0000
+vertex -0.1285 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0110 -0.0000
+vertex -0.1695 0.0110 -0.0000
+vertex -0.1695 0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0300 -0.0000
+vertex -0.1285 0.0300 0.0000
+vertex -0.1285 0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1687 0.0460 0.0151
+vertex -0.1488 0.0460 0.0198
+vertex -0.1612 0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1612 0.0460 0.0189
+vertex -0.1651 0.0460 0.0173
+vertex -0.1687 0.0460 0.0151
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1530 0.0460 0.0202
+vertex -0.1572 0.0460 0.0198
+vertex -0.1612 0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1687 0.0460 0.0151
+vertex -0.1719 0.0460 0.0124
+vertex -0.1746 0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1687 0.0460 0.0151
+vertex -0.1572 0.0460 -0.0328
+vertex -0.1314 0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1768 0.0460 0.0056
+vertex -0.1784 0.0460 0.0017
+vertex -0.1793 0.0460 -0.0023
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1793 0.0460 -0.0023
+vertex -0.1687 0.0460 0.0151
+vertex -0.1768 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1746 0.0460 0.0092
+vertex -0.1768 0.0460 0.0056
+vertex -0.1687 0.0460 0.0151
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1687 0.0460 0.0151
+vertex -0.1793 0.0460 -0.0023
+vertex -0.1746 0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1314 0.0460 0.0092
+vertex -0.1409 0.0460 0.0173
+vertex -0.1488 0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1488 0.0460 0.0198
+vertex -0.1409 0.0460 0.0173
+vertex -0.1448 0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1373 0.0460 0.0151
+vertex -0.1409 0.0460 0.0173
+vertex -0.1341 0.0460 0.0124
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1530 0.0460 0.0202
+vertex -0.1612 0.0460 0.0189
+vertex -0.1488 0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1341 0.0460 0.0124
+vertex -0.1409 0.0460 0.0173
+vertex -0.1314 0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1314 0.0460 0.0092
+vertex -0.1276 0.0460 0.0017
+vertex -0.1292 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1276 0.0460 0.0017
+vertex -0.1314 0.0460 0.0092
+vertex -0.1263 0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1687 0.0460 0.0151
+vertex -0.1314 0.0460 0.0092
+vertex -0.1488 0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1267 0.0460 -0.0023
+vertex -0.1276 0.0460 0.0017
+vertex -0.1263 0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1793 0.0460 -0.0023
+vertex -0.1797 0.0460 -0.0065
+vertex -0.1784 0.0460 -0.0147
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1746 0.0460 -0.0222
+vertex -0.1793 0.0460 -0.0023
+vertex -0.1784 0.0460 -0.0147
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1687 0.0460 0.0151
+vertex -0.1746 0.0460 -0.0222
+vertex -0.1572 0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1746 0.0460 -0.0222
+vertex -0.1784 0.0460 -0.0147
+vertex -0.1768 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1687 0.0460 -0.0281
+vertex -0.1746 0.0460 -0.0222
+vertex -0.1719 0.0460 -0.0254
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1651 0.0460 -0.0303
+vertex -0.1572 0.0460 -0.0328
+vertex -0.1746 0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1572 0.0460 -0.0328
+vertex -0.1292 0.0460 -0.0186
+vertex -0.1314 0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1572 0.0460 -0.0328
+vertex -0.1651 0.0460 -0.0303
+vertex -0.1612 0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1746 0.0460 -0.0222
+vertex -0.1687 0.0460 -0.0281
+vertex -0.1651 0.0460 -0.0303
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1448 0.0460 -0.0319
+vertex -0.1572 0.0460 -0.0328
+vertex -0.1530 0.0460 -0.0332
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1341 0.0460 -0.0254
+vertex -0.1314 0.0460 -0.0222
+vertex -0.1292 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1263 0.0460 -0.0065
+vertex -0.1276 0.0460 -0.0147
+vertex -0.1267 0.0460 -0.0107
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1276 0.0460 -0.0147
+vertex -0.1263 0.0460 -0.0065
+vertex -0.1292 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1263 0.0460 -0.0065
+vertex -0.1314 0.0460 0.0092
+vertex -0.1292 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1373 0.0460 -0.0281
+vertex -0.1292 0.0460 -0.0186
+vertex -0.1572 0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1373 0.0460 -0.0281
+vertex -0.1341 0.0460 -0.0254
+vertex -0.1292 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1373 0.0460 -0.0281
+vertex -0.1448 0.0460 -0.0319
+vertex -0.1409 0.0460 -0.0303
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1448 0.0460 -0.0319
+vertex -0.1373 0.0460 -0.0281
+vertex -0.1572 0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1488 0.0460 -0.0328
+vertex -0.1448 0.0460 -0.0319
+vertex -0.1530 0.0460 -0.0332
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1784 0.0460 -0.0147
+vertex -0.1797 0.0460 -0.0065
+vertex -0.1793 0.0460 -0.0107
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1565 -0.0110 -0.0000
+vertex -0.1565 0.0110 -0.0000
+vertex -0.1695 0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0110 -0.0000
+vertex -0.1695 -0.0110 -0.0000
+vertex -0.1565 -0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0110 -0.0000
+vertex -0.1695 0.0110 -0.0000
+vertex -0.1695 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0110 -0.0130
+vertex -0.1695 -0.0110 -0.0130
+vertex -0.1695 -0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0110 -0.0130
+vertex -0.1695 0.0110 -0.0130
+vertex -0.1565 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1565 0.0110 -0.0130
+vertex -0.1565 -0.0110 -0.0130
+vertex -0.1695 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1565 -0.0110 -0.0130
+vertex -0.1565 0.0110 -0.0130
+vertex -0.1565 0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1565 0.0110 -0.0000
+vertex -0.1565 -0.0110 -0.0000
+vertex -0.1565 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0300 -0.0000
+vertex -0.1415 -0.0300 -0.0001
+vertex -0.1695 -0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1415 -0.0300 -0.0001
+vertex -0.1285 -0.0300 -0.0000
+vertex -0.1285 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0300 -0.0000
+vertex -0.1645 -0.0300 -0.0001
+vertex -0.1645 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1645 -0.0300 -0.0001
+vertex -0.1695 -0.0300 -0.0000
+vertex -0.1415 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1415 -0.0300 -0.0129
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1415 -0.0300 -0.0129
+vertex -0.1415 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1645 -0.0300 -0.0129
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1695 -0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1645 -0.0300 -0.0129
+vertex -0.1415 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1285 -0.0300 -0.0130
+vertex -0.1285 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0110 -0.0130
+vertex -0.1695 -0.0110 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0110 -0.0130
+vertex -0.1285 -0.0110 -0.0130
+vertex -0.1285 -0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0110 -0.0000
+vertex -0.1695 -0.0110 -0.0000
+vertex -0.1695 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0110 -0.0000
+vertex -0.1285 -0.0110 -0.0000
+vertex -0.1285 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0300 0.0000
+vertex -0.1695 -0.0300 -0.0000
+vertex -0.1695 -0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1373 -0.0460 0.0151
+vertex -0.1572 -0.0460 0.0198
+vertex -0.1448 -0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1448 -0.0460 0.0189
+vertex -0.1409 -0.0460 0.0173
+vertex -0.1373 -0.0460 0.0151
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1530 -0.0460 0.0202
+vertex -0.1488 -0.0460 0.0198
+vertex -0.1448 -0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1373 -0.0460 0.0151
+vertex -0.1341 -0.0460 0.0124
+vertex -0.1314 -0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1373 -0.0460 0.0151
+vertex -0.1488 -0.0460 -0.0328
+vertex -0.1746 -0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1292 -0.0460 0.0056
+vertex -0.1276 -0.0460 0.0017
+vertex -0.1267 -0.0460 -0.0023
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1267 -0.0460 -0.0023
+vertex -0.1373 -0.0460 0.0151
+vertex -0.1292 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1314 -0.0460 0.0092
+vertex -0.1292 -0.0460 0.0056
+vertex -0.1373 -0.0460 0.0151
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1373 -0.0460 0.0151
+vertex -0.1267 -0.0460 -0.0023
+vertex -0.1314 -0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1746 -0.0460 0.0092
+vertex -0.1651 -0.0460 0.0173
+vertex -0.1572 -0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1572 -0.0460 0.0198
+vertex -0.1651 -0.0460 0.0173
+vertex -0.1612 -0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1687 -0.0460 0.0151
+vertex -0.1651 -0.0460 0.0173
+vertex -0.1719 -0.0460 0.0124
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1530 -0.0460 0.0202
+vertex -0.1448 -0.0460 0.0189
+vertex -0.1572 -0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1719 -0.0460 0.0124
+vertex -0.1651 -0.0460 0.0173
+vertex -0.1746 -0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1746 -0.0460 0.0092
+vertex -0.1784 -0.0460 0.0017
+vertex -0.1768 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1784 -0.0460 0.0017
+vertex -0.1746 -0.0460 0.0092
+vertex -0.1797 -0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1373 -0.0460 0.0151
+vertex -0.1746 -0.0460 0.0092
+vertex -0.1572 -0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1793 -0.0460 -0.0023
+vertex -0.1784 -0.0460 0.0017
+vertex -0.1797 -0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1267 -0.0460 -0.0023
+vertex -0.1263 -0.0460 -0.0065
+vertex -0.1276 -0.0460 -0.0147
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1314 -0.0460 -0.0222
+vertex -0.1267 -0.0460 -0.0023
+vertex -0.1276 -0.0460 -0.0147
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1373 -0.0460 0.0151
+vertex -0.1314 -0.0460 -0.0222
+vertex -0.1488 -0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1314 -0.0460 -0.0222
+vertex -0.1276 -0.0460 -0.0147
+vertex -0.1292 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1373 -0.0460 -0.0281
+vertex -0.1314 -0.0460 -0.0222
+vertex -0.1341 -0.0460 -0.0254
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1409 -0.0460 -0.0303
+vertex -0.1488 -0.0460 -0.0328
+vertex -0.1314 -0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1488 -0.0460 -0.0328
+vertex -0.1768 -0.0460 -0.0186
+vertex -0.1746 -0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1488 -0.0460 -0.0328
+vertex -0.1409 -0.0460 -0.0303
+vertex -0.1448 -0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1314 -0.0460 -0.0222
+vertex -0.1373 -0.0460 -0.0281
+vertex -0.1409 -0.0460 -0.0303
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1612 -0.0460 -0.0319
+vertex -0.1488 -0.0460 -0.0328
+vertex -0.1530 -0.0460 -0.0332
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1719 -0.0460 -0.0254
+vertex -0.1746 -0.0460 -0.0222
+vertex -0.1768 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1797 -0.0460 -0.0065
+vertex -0.1784 -0.0460 -0.0147
+vertex -0.1793 -0.0460 -0.0107
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1784 -0.0460 -0.0147
+vertex -0.1797 -0.0460 -0.0065
+vertex -0.1768 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1797 -0.0460 -0.0065
+vertex -0.1746 -0.0460 0.0092
+vertex -0.1768 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1687 -0.0460 -0.0281
+vertex -0.1768 -0.0460 -0.0186
+vertex -0.1488 -0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1687 -0.0460 -0.0281
+vertex -0.1719 -0.0460 -0.0254
+vertex -0.1768 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1687 -0.0460 -0.0281
+vertex -0.1612 -0.0460 -0.0319
+vertex -0.1651 -0.0460 -0.0303
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1612 -0.0460 -0.0319
+vertex -0.1687 -0.0460 -0.0281
+vertex -0.1488 -0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1572 -0.0460 -0.0328
+vertex -0.1612 -0.0460 -0.0319
+vertex -0.1530 -0.0460 -0.0332
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1276 -0.0460 -0.0147
+vertex -0.1263 -0.0460 -0.0065
+vertex -0.1267 -0.0460 -0.0107
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 0.0230
+vertex -0.1695 0.0300 0.0230
+vertex -0.1270 0.0192 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0192 0.0230
+vertex -0.1695 0.0300 0.0230
+vertex -0.1270 0.0182 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0182 0.0230
+vertex -0.1270 0.0167 0.0230
+vertex -0.1260 0.0167 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0167 0.0230
+vertex -0.1270 0.0182 0.0230
+vertex -0.1695 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0300 0.0230
+vertex -0.1270 0.0157 0.0230
+vertex -0.1270 0.0167 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0157 0.0230
+vertex -0.1270 0.0142 0.0230
+vertex -0.1260 0.0142 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0142 0.0230
+vertex -0.1270 0.0157 0.0230
+vertex -0.1695 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0132 0.0230
+vertex -0.1270 0.0117 0.0230
+vertex -0.1260 0.0117 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0117 0.0230
+vertex -0.1270 0.0132 0.0230
+vertex -0.1695 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0142 0.0230
+vertex -0.1695 0.0300 0.0230
+vertex -0.1270 0.0132 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0300 0.0230
+vertex -0.1270 0.0107 0.0230
+vertex -0.1270 0.0117 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0192 0.0230
+vertex -0.1260 0.0182 0.0230
+vertex -0.1080 0.0172 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0167 0.0230
+vertex -0.1260 0.0157 0.0230
+vertex -0.1080 0.0172 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0182 0.0230
+vertex -0.1260 0.0167 0.0230
+vertex -0.1260 0.0182 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0182 0.0230
+vertex -0.1260 0.0167 0.0230
+vertex -0.1080 0.0172 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0142 0.0230
+vertex -0.1260 0.0157 0.0230
+vertex -0.1270 0.0157 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0132 0.0230
+vertex -0.1260 0.0117 0.0230
+vertex -0.1070 0.0117 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0132 0.0230
+vertex -0.1270 0.0132 0.0230
+vertex -0.1260 0.0117 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0142 0.0230
+vertex -0.1260 0.0132 0.0230
+vertex -0.1080 0.0172 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0157 0.0230
+vertex -0.1260 0.0142 0.0230
+vertex -0.1080 0.0172 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0300 0.0230
+vertex -0.1270 0.0092 0.0230
+vertex -0.1270 0.0107 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 0.0230
+vertex -0.1270 0.0192 0.0230
+vertex -0.1260 0.0192 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0082 0.0230
+vertex -0.1270 0.0092 0.0230
+vertex -0.1695 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0057 0.0230
+vertex -0.1270 0.0067 0.0230
+vertex -0.1695 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0082 0.0230
+vertex -0.1695 0.0300 0.0230
+vertex -0.1270 0.0067 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0082 0.0230
+vertex -0.1270 0.0067 0.0230
+vertex -0.1260 0.0067 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0032 0.0230
+vertex -0.1270 0.0042 0.0230
+vertex -0.1695 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0007 0.0230
+vertex -0.1270 0.0017 0.0230
+vertex -0.1695 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0032 0.0230
+vertex -0.1695 0.0300 0.0230
+vertex -0.1270 0.0017 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0032 0.0230
+vertex -0.1270 0.0017 0.0230
+vertex -0.1260 0.0017 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0057 0.0230
+vertex -0.1695 0.0300 0.0230
+vertex -0.1270 0.0042 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0057 0.0230
+vertex -0.1270 0.0042 0.0230
+vertex -0.1260 0.0042 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0107 0.0230
+vertex -0.1260 0.0092 0.0230
+vertex -0.1070 0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0092 0.0230
+vertex -0.1260 0.0107 0.0230
+vertex -0.1270 0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0082 0.0230
+vertex -0.1260 0.0067 0.0230
+vertex -0.1070 0.0067 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0067 0.0230
+vertex -0.1260 0.0082 0.0230
+vertex -0.1270 0.0082 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0092 0.0230
+vertex -0.1260 0.0082 0.0230
+vertex -0.1070 0.0082 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0057 0.0230
+vertex -0.1260 0.0042 0.0230
+vertex -0.1070 0.0042 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0042 0.0230
+vertex -0.1260 0.0057 0.0230
+vertex -0.1270 0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0032 0.0230
+vertex -0.1260 0.0017 0.0230
+vertex -0.1070 0.0017 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0017 0.0230
+vertex -0.1260 0.0032 0.0230
+vertex -0.1270 0.0032 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0017 0.0230
+vertex -0.1260 0.0007 0.0230
+vertex -0.1070 0.0007 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0042 0.0230
+vertex -0.1260 0.0032 0.0230
+vertex -0.1070 0.0032 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0067 0.0230
+vertex -0.1260 0.0057 0.0230
+vertex -0.1070 0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0007 0.0230
+vertex -0.1270 -0.0008 0.0230
+vertex -0.1260 0.0007 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0092 0.0230
+vertex -0.1260 0.0107 0.0230
+vertex -0.1270 0.0107 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0300 0.0230
+vertex -0.1695 -0.0300 0.0230
+vertex -0.1270 0.0007 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0117 0.0230
+vertex -0.1260 0.0107 0.0230
+vertex -0.1070 0.0107 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 0.0172 0.0230
+vertex -0.1070 0.0168 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 0.0172 0.0230
+vertex -0.1080 0.0202 0.0230
+vertex -0.1260 0.0192 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0158 0.0230
+vertex -0.1070 0.0168 0.0230
+vertex -0.1080 0.0172 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 0.0172 0.0230
+vertex -0.1070 0.0142 0.0230
+vertex -0.1070 0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0132 0.0230
+vertex -0.1070 0.0142 0.0230
+vertex -0.1080 0.0172 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0132 0.0230
+vertex -0.1260 0.0132 0.0230
+vertex -0.1070 0.0117 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 0.0172 0.0230
+vertex -0.1260 0.0132 0.0230
+vertex -0.1070 0.0132 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0132 0.0230
+vertex -0.1070 0.0117 0.0230
+vertex -0.1060 0.0117 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0107 0.0230
+vertex -0.1070 0.0117 0.0230
+vertex -0.1260 0.0117 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0158 0.0230
+vertex -0.1070 0.0142 0.0230
+vertex -0.1060 0.0142 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 0.0203 0.0230
+vertex -0.1045 0.0300 0.0230
+vertex -0.1080 0.0202 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 0.0230
+vertex -0.1050 0.0173 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 0.0173 0.0230
+vertex -0.1045 0.0300 0.0230
+vertex -0.1050 0.0203 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0168 0.0230
+vertex -0.1060 0.0158 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0168 0.0230
+vertex -0.1060 0.0168 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0158 0.0230
+vertex -0.1060 0.0142 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0142 0.0230
+vertex -0.1060 0.0158 0.0230
+vertex -0.1070 0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0132 0.0230
+vertex -0.1060 0.0117 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0117 0.0230
+vertex -0.1060 0.0132 0.0230
+vertex -0.1070 0.0132 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0142 0.0230
+vertex -0.1060 0.0132 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 0.0117 0.0230
+vertex -0.1060 0.0107 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 0.0202 0.0230
+vertex -0.1045 0.0300 0.0230
+vertex -0.1260 0.0192 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0107 0.0230
+vertex -0.1070 0.0092 0.0230
+vertex -0.1070 0.0107 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0082 0.0230
+vertex -0.1070 0.0067 0.0230
+vertex -0.1070 0.0082 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0082 0.0230
+vertex -0.1070 0.0092 0.0230
+vertex -0.1260 0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0082 0.0230
+vertex -0.1070 0.0067 0.0230
+vertex -0.1060 0.0067 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0032 0.0230
+vertex -0.1070 0.0017 0.0230
+vertex -0.1060 0.0017 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0032 0.0230
+vertex -0.1260 0.0032 0.0230
+vertex -0.1070 0.0017 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0057 0.0230
+vertex -0.1070 0.0042 0.0230
+vertex -0.1070 0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0067 0.0230
+vertex -0.1260 0.0067 0.0230
+vertex -0.1070 0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0042 0.0230
+vertex -0.1260 0.0042 0.0230
+vertex -0.1070 0.0032 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0057 0.0230
+vertex -0.1070 0.0042 0.0230
+vertex -0.1060 0.0042 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0107 0.0230
+vertex -0.1060 0.0092 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0107 0.0230
+vertex -0.1070 0.0092 0.0230
+vertex -0.1060 0.0092 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0082 0.0230
+vertex -0.1060 0.0067 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0082 0.0230
+vertex -0.1070 0.0082 0.0230
+vertex -0.1060 0.0067 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0092 0.0230
+vertex -0.1060 0.0082 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0057 0.0230
+vertex -0.1060 0.0042 0.0230
+vertex -0.1060 0.0057 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0042 0.0230
+vertex -0.1060 0.0032 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0032 0.0230
+vertex -0.1070 0.0032 0.0230
+vertex -0.1060 0.0017 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0032 0.0230
+vertex -0.1060 0.0017 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0007 0.0230
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 0.0017 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0057 0.0230
+vertex -0.1060 0.0042 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0067 0.0230
+vertex -0.1060 0.0057 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0007 0.0230
+vertex -0.1070 -0.0008 0.0230
+vertex -0.1060 0.0007 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0092 0.0230
+vertex -0.1060 0.0107 0.0230
+vertex -0.1070 0.0107 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0017 0.0230
+vertex -0.1070 0.0007 0.0230
+vertex -0.1070 0.0017 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 0.0007 0.0230
+vertex -0.1060 -0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0007 0.0230
+vertex -0.1260 -0.0008 0.0230
+vertex -0.1070 0.0007 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0033 0.0230
+vertex -0.1270 -0.0018 0.0230
+vertex -0.1695 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0018 0.0230
+vertex -0.1270 -0.0033 0.0230
+vertex -0.1260 -0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0033 0.0230
+vertex -0.1695 -0.0300 0.0230
+vertex -0.1270 -0.0043 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0018 0.0230
+vertex -0.1270 -0.0008 0.0230
+vertex -0.1695 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0058 0.0230
+vertex -0.1270 -0.0043 0.0230
+vertex -0.1270 -0.0058 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0068 0.0230
+vertex -0.1270 -0.0058 0.0230
+vertex -0.1695 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0083 0.0230
+vertex -0.1270 -0.0068 0.0230
+vertex -0.1270 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0093 0.0230
+vertex -0.1270 -0.0083 0.0230
+vertex -0.1695 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0068 0.0230
+vertex -0.1695 -0.0300 0.0230
+vertex -0.1270 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0043 0.0230
+vertex -0.1695 -0.0300 0.0230
+vertex -0.1270 -0.0058 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0018 0.0230
+vertex -0.1260 -0.0008 0.0230
+vertex -0.1260 -0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0033 0.0230
+vertex -0.1260 -0.0018 0.0230
+vertex -0.1270 -0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0033 0.0230
+vertex -0.1260 -0.0043 0.0230
+vertex -0.1070 -0.0043 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0033 0.0230
+vertex -0.1260 -0.0018 0.0230
+vertex -0.1260 -0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0058 0.0230
+vertex -0.1070 -0.0058 0.0230
+vertex -0.1260 -0.0043 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0083 0.0230
+vertex -0.1070 -0.0083 0.0230
+vertex -0.1260 -0.0068 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0068 0.0230
+vertex -0.1270 -0.0068 0.0230
+vertex -0.1260 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0068 0.0230
+vertex -0.1070 -0.0068 0.0230
+vertex -0.1260 -0.0058 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0043 0.0230
+vertex -0.1270 -0.0043 0.0230
+vertex -0.1260 -0.0058 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0093 0.0230
+vertex -0.1070 -0.0093 0.0230
+vertex -0.1260 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0093 0.0230
+vertex -0.1270 -0.0108 0.0230
+vertex -0.1260 -0.0093 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0008 0.0230
+vertex -0.1260 -0.0008 0.0230
+vertex -0.1260 0.0007 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0118 0.0230
+vertex -0.1270 -0.0108 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0143 0.0230
+vertex -0.1270 -0.0133 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0118 0.0230
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1270 -0.0133 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0118 0.0230
+vertex -0.1270 -0.0133 0.0230
+vertex -0.1260 -0.0133 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1695 -0.0300 0.0230
+vertex -0.1280 -0.0203 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1270 -0.0158 0.0230
+vertex -0.1270 -0.0143 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1270 -0.0168 0.0230
+vertex -0.1270 -0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 -0.0203 0.0230
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1250 -0.0203 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1270 -0.0108 0.0230
+vertex -0.1695 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0108 0.0230
+vertex -0.1270 -0.0093 0.0230
+vertex -0.1695 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0143 0.0230
+vertex -0.1270 -0.0158 0.0230
+vertex -0.1260 -0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0118 0.0230
+vertex -0.1260 -0.0108 0.0230
+vertex -0.1260 -0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0133 0.0230
+vertex -0.1260 -0.0143 0.0230
+vertex -0.1250 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0118 0.0230
+vertex -0.1260 -0.0133 0.0230
+vertex -0.1260 -0.0118 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0133 0.0230
+vertex -0.1260 -0.0118 0.0230
+vertex -0.1260 -0.0133 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0158 0.0230
+vertex -0.1260 -0.0143 0.0230
+vertex -0.1270 -0.0143 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 -0.0173 0.0230
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1260 -0.0168 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0168 0.0230
+vertex -0.1270 -0.0168 0.0230
+vertex -0.1280 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1250 -0.0203 0.0230
+vertex -0.1070 -0.0192 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0168 0.0230
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1260 -0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0158 0.0230
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1260 -0.0143 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0093 0.0230
+vertex -0.1260 -0.0108 0.0230
+vertex -0.1070 -0.0108 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 -0.0203 0.0230
+vertex -0.1695 -0.0300 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0108 0.0230
+vertex -0.1260 -0.0108 0.0230
+vertex -0.1260 -0.0093 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0008 0.0230
+vertex -0.1270 0.0007 0.0230
+vertex -0.1695 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0133 0.0230
+vertex -0.1260 -0.0133 0.0230
+vertex -0.1250 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0018 0.0230
+vertex -0.1070 -0.0008 0.0230
+vertex -0.1260 -0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0043 0.0230
+vertex -0.1070 -0.0033 0.0230
+vertex -0.1260 -0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0018 0.0230
+vertex -0.1260 -0.0018 0.0230
+vertex -0.1070 -0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0018 0.0230
+vertex -0.1070 -0.0033 0.0230
+vertex -0.1060 -0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0068 0.0230
+vertex -0.1070 -0.0058 0.0230
+vertex -0.1260 -0.0058 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0093 0.0230
+vertex -0.1070 -0.0083 0.0230
+vertex -0.1260 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0068 0.0230
+vertex -0.1260 -0.0068 0.0230
+vertex -0.1070 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0068 0.0230
+vertex -0.1070 -0.0083 0.0230
+vertex -0.1060 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0043 0.0230
+vertex -0.1260 -0.0043 0.0230
+vertex -0.1070 -0.0058 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0043 0.0230
+vertex -0.1070 -0.0058 0.0230
+vertex -0.1060 -0.0058 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0033 0.0230
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 -0.0018 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0043 0.0230
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1050 0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0018 0.0230
+vertex -0.1070 -0.0018 0.0230
+vertex -0.1060 -0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0043 0.0230
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 -0.0033 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0058 0.0230
+vertex -0.1060 -0.0068 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0083 0.0230
+vertex -0.1060 -0.0093 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0068 0.0230
+vertex -0.1070 -0.0068 0.0230
+vertex -0.1060 -0.0083 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0068 0.0230
+vertex -0.1060 -0.0083 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0043 0.0230
+vertex -0.1070 -0.0043 0.0230
+vertex -0.1060 -0.0058 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0043 0.0230
+vertex -0.1060 -0.0058 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0093 0.0230
+vertex -0.1070 -0.0108 0.0230
+vertex -0.1060 -0.0093 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0008 0.0230
+vertex -0.1060 -0.0008 0.0230
+vertex -0.1060 0.0007 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0118 0.0230
+vertex -0.1070 -0.0108 0.0230
+vertex -0.1260 -0.0108 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0143 0.0230
+vertex -0.1070 -0.0133 0.0230
+vertex -0.1250 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0118 0.0230
+vertex -0.1260 -0.0118 0.0230
+vertex -0.1070 -0.0133 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0118 0.0230
+vertex -0.1070 -0.0133 0.0230
+vertex -0.1060 -0.0133 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0168 0.0230
+vertex -0.1070 -0.0158 0.0230
+vertex -0.1250 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0192 0.0230
+vertex -0.1070 -0.0182 0.0230
+vertex -0.1250 -0.0173 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0168 0.0230
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1070 -0.0182 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0168 0.0230
+vertex -0.1070 -0.0182 0.0230
+vertex -0.1060 -0.0182 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0143 0.0230
+vertex -0.1250 -0.0173 0.0230
+vertex -0.1070 -0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0143 0.0230
+vertex -0.1070 -0.0158 0.0230
+vertex -0.1060 -0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0108 0.0230
+vertex -0.1060 -0.0118 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0133 0.0230
+vertex -0.1060 -0.0143 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0118 0.0230
+vertex -0.1070 -0.0118 0.0230
+vertex -0.1060 -0.0133 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0118 0.0230
+vertex -0.1060 -0.0133 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0158 0.0230
+vertex -0.1060 -0.0168 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0182 0.0230
+vertex -0.1060 -0.0192 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1060 -0.0192 0.0230
+vertex -0.1070 -0.0192 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0182 0.0230
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1060 -0.0168 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0168 0.0230
+vertex -0.1070 -0.0168 0.0230
+vertex -0.1060 -0.0182 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0158 0.0230
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1060 -0.0143 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0143 0.0230
+vertex -0.1070 -0.0143 0.0230
+vertex -0.1060 -0.0158 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0108 0.0230
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1060 -0.0093 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0192 0.0230
+vertex -0.1250 -0.0203 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0108 0.0230
+vertex -0.1060 -0.0108 0.0230
+vertex -0.1060 -0.0093 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0093 0.0230
+vertex -0.1260 -0.0093 0.0230
+vertex -0.1070 -0.0108 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0018 0.0230
+vertex -0.1050 0.0173 0.0230
+vertex -0.1060 -0.0008 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0008 0.0230
+vertex -0.1070 -0.0008 0.0230
+vertex -0.1070 0.0007 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0300 0.0230
+vertex -0.1668 -0.0300 0.0176
+vertex -0.1657 -0.0300 0.0176
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1657 -0.0300 0.0176
+vertex -0.1645 -0.0300 -0.0001
+vertex -0.1415 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0300 0.0230
+vertex -0.1657 -0.0300 0.0176
+vertex -0.1343 -0.0300 0.0176
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1668 -0.0300 0.0176
+vertex -0.1695 -0.0300 0.0230
+vertex -0.1668 -0.0300 -0.0004
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1343 -0.0300 0.0176
+vertex -0.1657 -0.0300 0.0176
+vertex -0.1415 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1230 -0.0300 0.0212
+vertex -0.1090 -0.0300 0.0212
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1230 -0.0300 0.0212
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1695 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1230 -0.0300 0.0212
+vertex -0.1332 -0.0300 0.0176
+vertex -0.1332 -0.0300 -0.0004
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1332 -0.0300 0.0176
+vertex -0.1230 -0.0300 0.0212
+vertex -0.1343 -0.0300 0.0176
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1230 -0.0300 0.0212
+vertex -0.1695 -0.0300 0.0230
+vertex -0.1343 -0.0300 0.0176
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1090 -0.0300 -0.0040
+vertex -0.1045 -0.0300 0.0230
+vertex -0.1090 -0.0300 0.0212
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1343 -0.0300 0.0176
+vertex -0.1415 -0.0300 -0.0001
+vertex -0.1343 -0.0300 -0.0004
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1657 -0.0300 -0.0004
+vertex -0.1645 -0.0300 -0.0001
+vertex -0.1657 -0.0300 0.0176
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1657 -0.0300 -0.0004
+vertex -0.1668 -0.0300 -0.0004
+vertex -0.1645 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1645 -0.0300 -0.0129
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1415 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1645 -0.0300 -0.0129
+vertex -0.1668 -0.0300 -0.0004
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1415 -0.0300 -0.0129
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1045 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1668 -0.0300 -0.0004
+vertex -0.1695 -0.0300 0.0230
+vertex -0.1695 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1415 -0.0300 -0.0129
+vertex -0.1343 -0.0300 -0.0004
+vertex -0.1415 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1343 -0.0300 -0.0004
+vertex -0.1415 -0.0300 -0.0129
+vertex -0.1332 -0.0300 -0.0004
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1230 -0.0300 -0.0040
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1090 -0.0300 -0.0040
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1332 -0.0300 -0.0004
+vertex -0.1415 -0.0300 -0.0129
+vertex -0.1230 -0.0300 -0.0040
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1090 -0.0300 -0.0040
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1415 -0.0300 -0.0129
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1230 -0.0300 -0.0040
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1230 -0.0300 -0.0040
+vertex -0.1230 -0.0300 0.0212
+vertex -0.1332 -0.0300 -0.0004
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1645 -0.0300 -0.0001
+vertex -0.1657 -0.0300 -0.0004
+vertex -0.1645 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1270 -0.0193 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0193 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1270 -0.0183 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0183 -0.0130
+vertex -0.1270 -0.0168 -0.0130
+vertex -0.1260 -0.0168 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0168 -0.0130
+vertex -0.1270 -0.0183 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1270 -0.0158 -0.0130
+vertex -0.1270 -0.0168 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0158 -0.0130
+vertex -0.1270 -0.0143 -0.0130
+vertex -0.1260 -0.0143 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0143 -0.0130
+vertex -0.1270 -0.0158 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0133 -0.0130
+vertex -0.1270 -0.0118 -0.0130
+vertex -0.1260 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0118 -0.0130
+vertex -0.1270 -0.0133 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0143 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1270 -0.0133 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1270 -0.0108 -0.0130
+vertex -0.1270 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0193 -0.0130
+vertex -0.1260 -0.0183 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0168 -0.0130
+vertex -0.1260 -0.0158 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0183 -0.0130
+vertex -0.1260 -0.0168 -0.0130
+vertex -0.1260 -0.0183 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0183 -0.0130
+vertex -0.1260 -0.0168 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0143 -0.0130
+vertex -0.1260 -0.0158 -0.0130
+vertex -0.1270 -0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0133 -0.0130
+vertex -0.1260 -0.0118 -0.0130
+vertex -0.1070 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0133 -0.0130
+vertex -0.1270 -0.0133 -0.0130
+vertex -0.1260 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0143 -0.0130
+vertex -0.1260 -0.0133 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0158 -0.0130
+vertex -0.1260 -0.0143 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1270 -0.0093 -0.0130
+vertex -0.1270 -0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1270 -0.0193 -0.0130
+vertex -0.1260 -0.0193 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0083 -0.0130
+vertex -0.1270 -0.0093 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0058 -0.0130
+vertex -0.1270 -0.0068 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0083 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1270 -0.0068 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0083 -0.0130
+vertex -0.1270 -0.0068 -0.0130
+vertex -0.1260 -0.0068 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0033 -0.0130
+vertex -0.1270 -0.0043 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0008 -0.0130
+vertex -0.1270 -0.0018 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0033 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1270 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0033 -0.0130
+vertex -0.1270 -0.0018 -0.0130
+vertex -0.1260 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0058 -0.0130
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1270 -0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0058 -0.0130
+vertex -0.1270 -0.0043 -0.0130
+vertex -0.1260 -0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0108 -0.0130
+vertex -0.1260 -0.0093 -0.0130
+vertex -0.1070 -0.0093 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0093 -0.0130
+vertex -0.1260 -0.0108 -0.0130
+vertex -0.1270 -0.0093 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0083 -0.0130
+vertex -0.1260 -0.0068 -0.0130
+vertex -0.1070 -0.0068 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0068 -0.0130
+vertex -0.1260 -0.0083 -0.0130
+vertex -0.1270 -0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0093 -0.0130
+vertex -0.1260 -0.0083 -0.0130
+vertex -0.1070 -0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0058 -0.0130
+vertex -0.1260 -0.0043 -0.0130
+vertex -0.1070 -0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0043 -0.0130
+vertex -0.1260 -0.0058 -0.0130
+vertex -0.1270 -0.0058 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0033 -0.0130
+vertex -0.1260 -0.0018 -0.0130
+vertex -0.1070 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0018 -0.0130
+vertex -0.1260 -0.0033 -0.0130
+vertex -0.1270 -0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0018 -0.0130
+vertex -0.1260 -0.0008 -0.0130
+vertex -0.1070 -0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0043 -0.0130
+vertex -0.1260 -0.0033 -0.0130
+vertex -0.1070 -0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0068 -0.0130
+vertex -0.1260 -0.0058 -0.0130
+vertex -0.1070 -0.0058 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0008 -0.0130
+vertex -0.1270 0.0007 -0.0130
+vertex -0.1260 -0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 -0.0093 -0.0130
+vertex -0.1260 -0.0108 -0.0130
+vertex -0.1270 -0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0300 -0.0130
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1270 -0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0118 -0.0130
+vertex -0.1260 -0.0108 -0.0130
+vertex -0.1070 -0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 -0.0173 -0.0130
+vertex -0.1070 -0.0168 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 -0.0173 -0.0130
+vertex -0.1080 -0.0203 -0.0130
+vertex -0.1260 -0.0193 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0158 -0.0130
+vertex -0.1070 -0.0168 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 -0.0173 -0.0130
+vertex -0.1070 -0.0143 -0.0130
+vertex -0.1070 -0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0133 -0.0130
+vertex -0.1070 -0.0143 -0.0130
+vertex -0.1080 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0133 -0.0130
+vertex -0.1260 -0.0133 -0.0130
+vertex -0.1070 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 -0.0173 -0.0130
+vertex -0.1260 -0.0133 -0.0130
+vertex -0.1070 -0.0133 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0133 -0.0130
+vertex -0.1070 -0.0118 -0.0130
+vertex -0.1060 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0108 -0.0130
+vertex -0.1070 -0.0118 -0.0130
+vertex -0.1260 -0.0118 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0158 -0.0130
+vertex -0.1070 -0.0143 -0.0130
+vertex -0.1060 -0.0143 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 -0.0203 -0.0130
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1080 -0.0203 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1050 -0.0203 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0168 -0.0130
+vertex -0.1060 -0.0158 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0168 -0.0130
+vertex -0.1060 -0.0168 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0158 -0.0130
+vertex -0.1060 -0.0143 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0143 -0.0130
+vertex -0.1060 -0.0158 -0.0130
+vertex -0.1070 -0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0133 -0.0130
+vertex -0.1060 -0.0118 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0118 -0.0130
+vertex -0.1060 -0.0133 -0.0130
+vertex -0.1070 -0.0133 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0143 -0.0130
+vertex -0.1060 -0.0133 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 -0.0118 -0.0130
+vertex -0.1060 -0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1080 -0.0203 -0.0130
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1260 -0.0193 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0108 -0.0130
+vertex -0.1070 -0.0093 -0.0130
+vertex -0.1070 -0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0083 -0.0130
+vertex -0.1070 -0.0068 -0.0130
+vertex -0.1070 -0.0083 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0083 -0.0130
+vertex -0.1070 -0.0093 -0.0130
+vertex -0.1260 -0.0093 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0083 -0.0130
+vertex -0.1070 -0.0068 -0.0130
+vertex -0.1060 -0.0068 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0033 -0.0130
+vertex -0.1070 -0.0018 -0.0130
+vertex -0.1060 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0033 -0.0130
+vertex -0.1260 -0.0033 -0.0130
+vertex -0.1070 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0058 -0.0130
+vertex -0.1070 -0.0043 -0.0130
+vertex -0.1070 -0.0058 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0068 -0.0130
+vertex -0.1260 -0.0068 -0.0130
+vertex -0.1070 -0.0058 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0043 -0.0130
+vertex -0.1260 -0.0043 -0.0130
+vertex -0.1070 -0.0033 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0058 -0.0130
+vertex -0.1070 -0.0043 -0.0130
+vertex -0.1060 -0.0043 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0108 -0.0130
+vertex -0.1060 -0.0093 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0108 -0.0130
+vertex -0.1070 -0.0093 -0.0130
+vertex -0.1060 -0.0093 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0083 -0.0130
+vertex -0.1060 -0.0068 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0083 -0.0130
+vertex -0.1070 -0.0083 -0.0130
+vertex -0.1060 -0.0068 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0093 -0.0130
+vertex -0.1060 -0.0083 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0058 -0.0130
+vertex -0.1060 -0.0043 -0.0130
+vertex -0.1060 -0.0058 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0043 -0.0130
+vertex -0.1060 -0.0033 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0033 -0.0130
+vertex -0.1070 -0.0033 -0.0130
+vertex -0.1060 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0033 -0.0130
+vertex -0.1060 -0.0018 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0008 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0058 -0.0130
+vertex -0.1060 -0.0043 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 -0.0068 -0.0130
+vertex -0.1060 -0.0058 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0008 -0.0130
+vertex -0.1070 0.0007 -0.0130
+vertex -0.1060 -0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 -0.0093 -0.0130
+vertex -0.1060 -0.0108 -0.0130
+vertex -0.1070 -0.0108 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0018 -0.0130
+vertex -0.1070 -0.0008 -0.0130
+vertex -0.1070 -0.0018 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 -0.0008 -0.0130
+vertex -0.1060 0.0007 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 -0.0008 -0.0130
+vertex -0.1260 0.0007 -0.0130
+vertex -0.1070 -0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0032 -0.0130
+vertex -0.1270 0.0017 -0.0130
+vertex -0.1695 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0017 -0.0130
+vertex -0.1270 0.0032 -0.0130
+vertex -0.1260 0.0032 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0032 -0.0130
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1270 0.0042 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0017 -0.0130
+vertex -0.1270 0.0007 -0.0130
+vertex -0.1695 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0057 -0.0130
+vertex -0.1270 0.0042 -0.0130
+vertex -0.1270 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0067 -0.0130
+vertex -0.1270 0.0057 -0.0130
+vertex -0.1695 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0082 -0.0130
+vertex -0.1270 0.0067 -0.0130
+vertex -0.1270 0.0082 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0092 -0.0130
+vertex -0.1270 0.0082 -0.0130
+vertex -0.1695 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0067 -0.0130
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1270 0.0082 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0042 -0.0130
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1270 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0017 -0.0130
+vertex -0.1260 0.0007 -0.0130
+vertex -0.1260 0.0017 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0032 -0.0130
+vertex -0.1260 0.0017 -0.0130
+vertex -0.1270 0.0017 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0032 -0.0130
+vertex -0.1260 0.0042 -0.0130
+vertex -0.1070 0.0042 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0032 -0.0130
+vertex -0.1260 0.0017 -0.0130
+vertex -0.1260 0.0032 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0057 -0.0130
+vertex -0.1070 0.0057 -0.0130
+vertex -0.1260 0.0042 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0082 -0.0130
+vertex -0.1070 0.0082 -0.0130
+vertex -0.1260 0.0067 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0067 -0.0130
+vertex -0.1270 0.0067 -0.0130
+vertex -0.1260 0.0082 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0067 -0.0130
+vertex -0.1070 0.0067 -0.0130
+vertex -0.1260 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0042 -0.0130
+vertex -0.1270 0.0042 -0.0130
+vertex -0.1260 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0092 -0.0130
+vertex -0.1070 0.0092 -0.0130
+vertex -0.1260 0.0082 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0092 -0.0130
+vertex -0.1270 0.0107 -0.0130
+vertex -0.1260 0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0007 -0.0130
+vertex -0.1260 0.0007 -0.0130
+vertex -0.1260 -0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0117 -0.0130
+vertex -0.1270 0.0107 -0.0130
+vertex -0.1280 0.0172 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0142 -0.0130
+vertex -0.1270 0.0132 -0.0130
+vertex -0.1280 0.0172 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0117 -0.0130
+vertex -0.1280 0.0172 -0.0130
+vertex -0.1270 0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0117 -0.0130
+vertex -0.1270 0.0132 -0.0130
+vertex -0.1260 0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 0.0172 -0.0130
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1280 0.0202 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 0.0172 -0.0130
+vertex -0.1270 0.0157 -0.0130
+vertex -0.1270 0.0142 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 0.0172 -0.0130
+vertex -0.1270 0.0167 -0.0130
+vertex -0.1270 0.0157 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 0.0202 -0.0130
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1250 0.0202 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 0.0172 -0.0130
+vertex -0.1270 0.0107 -0.0130
+vertex -0.1695 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0107 -0.0130
+vertex -0.1270 0.0092 -0.0130
+vertex -0.1695 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0142 -0.0130
+vertex -0.1270 0.0157 -0.0130
+vertex -0.1260 0.0157 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0117 -0.0130
+vertex -0.1260 0.0107 -0.0130
+vertex -0.1260 0.0117 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0132 -0.0130
+vertex -0.1260 0.0142 -0.0130
+vertex -0.1250 0.0172 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0117 -0.0130
+vertex -0.1260 0.0132 -0.0130
+vertex -0.1260 0.0117 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0132 -0.0130
+vertex -0.1260 0.0117 -0.0130
+vertex -0.1260 0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0157 -0.0130
+vertex -0.1260 0.0142 -0.0130
+vertex -0.1270 0.0142 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 0.0172 -0.0130
+vertex -0.1250 0.0172 -0.0130
+vertex -0.1260 0.0167 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0167 -0.0130
+vertex -0.1270 0.0167 -0.0130
+vertex -0.1280 0.0172 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1250 0.0172 -0.0130
+vertex -0.1250 0.0202 -0.0130
+vertex -0.1070 0.0192 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0167 -0.0130
+vertex -0.1250 0.0172 -0.0130
+vertex -0.1260 0.0157 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0157 -0.0130
+vertex -0.1250 0.0172 -0.0130
+vertex -0.1260 0.0142 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0092 -0.0130
+vertex -0.1260 0.0107 -0.0130
+vertex -0.1070 0.0107 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1280 0.0202 -0.0130
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0107 -0.0130
+vertex -0.1260 0.0107 -0.0130
+vertex -0.1260 0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1270 0.0007 -0.0130
+vertex -0.1270 -0.0008 -0.0130
+vertex -0.1695 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0132 -0.0130
+vertex -0.1260 0.0132 -0.0130
+vertex -0.1250 0.0172 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0017 -0.0130
+vertex -0.1070 0.0007 -0.0130
+vertex -0.1260 0.0007 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0042 -0.0130
+vertex -0.1070 0.0032 -0.0130
+vertex -0.1260 0.0032 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0017 -0.0130
+vertex -0.1260 0.0017 -0.0130
+vertex -0.1070 0.0032 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0017 -0.0130
+vertex -0.1070 0.0032 -0.0130
+vertex -0.1060 0.0032 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0067 -0.0130
+vertex -0.1070 0.0057 -0.0130
+vertex -0.1260 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0092 -0.0130
+vertex -0.1070 0.0082 -0.0130
+vertex -0.1260 0.0082 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0067 -0.0130
+vertex -0.1260 0.0067 -0.0130
+vertex -0.1070 0.0082 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0067 -0.0130
+vertex -0.1070 0.0082 -0.0130
+vertex -0.1060 0.0082 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0042 -0.0130
+vertex -0.1260 0.0042 -0.0130
+vertex -0.1070 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0042 -0.0130
+vertex -0.1070 0.0057 -0.0130
+vertex -0.1060 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0032 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 0.0017 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0042 -0.0130
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0017 -0.0130
+vertex -0.1070 0.0017 -0.0130
+vertex -0.1060 0.0032 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0042 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 0.0032 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0057 -0.0130
+vertex -0.1060 0.0067 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0082 -0.0130
+vertex -0.1060 0.0092 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0067 -0.0130
+vertex -0.1070 0.0067 -0.0130
+vertex -0.1060 0.0082 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0067 -0.0130
+vertex -0.1060 0.0082 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0042 -0.0130
+vertex -0.1070 0.0042 -0.0130
+vertex -0.1060 0.0057 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0042 -0.0130
+vertex -0.1060 0.0057 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0092 -0.0130
+vertex -0.1070 0.0107 -0.0130
+vertex -0.1060 0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0007 -0.0130
+vertex -0.1060 0.0007 -0.0130
+vertex -0.1060 -0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0117 -0.0130
+vertex -0.1070 0.0107 -0.0130
+vertex -0.1260 0.0107 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0142 -0.0130
+vertex -0.1070 0.0132 -0.0130
+vertex -0.1250 0.0172 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0117 -0.0130
+vertex -0.1260 0.0117 -0.0130
+vertex -0.1070 0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0117 -0.0130
+vertex -0.1070 0.0132 -0.0130
+vertex -0.1060 0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0168 -0.0130
+vertex -0.1070 0.0158 -0.0130
+vertex -0.1250 0.0172 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0192 -0.0130
+vertex -0.1070 0.0182 -0.0130
+vertex -0.1250 0.0172 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0168 -0.0130
+vertex -0.1250 0.0172 -0.0130
+vertex -0.1070 0.0182 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0168 -0.0130
+vertex -0.1070 0.0182 -0.0130
+vertex -0.1060 0.0182 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0142 -0.0130
+vertex -0.1250 0.0172 -0.0130
+vertex -0.1070 0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0142 -0.0130
+vertex -0.1070 0.0158 -0.0130
+vertex -0.1060 0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0107 -0.0130
+vertex -0.1060 0.0117 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0132 -0.0130
+vertex -0.1060 0.0142 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0117 -0.0130
+vertex -0.1070 0.0117 -0.0130
+vertex -0.1060 0.0132 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0117 -0.0130
+vertex -0.1060 0.0132 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0158 -0.0130
+vertex -0.1060 0.0168 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0182 -0.0130
+vertex -0.1060 0.0192 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1060 0.0192 -0.0130
+vertex -0.1070 0.0192 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0182 -0.0130
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1060 0.0168 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0168 -0.0130
+vertex -0.1070 0.0168 -0.0130
+vertex -0.1060 0.0182 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0158 -0.0130
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1060 0.0142 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0142 -0.0130
+vertex -0.1070 0.0142 -0.0130
+vertex -0.1060 0.0158 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0107 -0.0130
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1060 0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0192 -0.0130
+vertex -0.1250 0.0202 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0107 -0.0130
+vertex -0.1060 0.0107 -0.0130
+vertex -0.1060 0.0092 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1070 0.0092 -0.0130
+vertex -0.1260 0.0092 -0.0130
+vertex -0.1070 0.0107 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1060 0.0017 -0.0130
+vertex -0.1050 -0.0173 -0.0130
+vertex -0.1060 0.0007 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1260 0.0007 -0.0130
+vertex -0.1070 0.0007 -0.0130
+vertex -0.1070 -0.0008 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1645 0.0300 -0.0129
+vertex -0.1415 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1645 0.0300 -0.0129
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1668 0.0300 -0.0054
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1657 0.0300 -0.0054
+vertex -0.1645 0.0300 -0.0001
+vertex -0.1645 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1657 0.0300 -0.0054
+vertex -0.1645 0.0300 -0.0129
+vertex -0.1668 0.0300 -0.0054
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1343 0.0300 -0.0054
+vertex -0.1415 0.0300 -0.0129
+vertex -0.1415 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1668 0.0300 0.0126
+vertex -0.1668 0.0300 -0.0054
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1415 0.0300 -0.0129
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1230 0.0300 -0.0054
+vertex -0.1090 0.0300 -0.0054
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1415 0.0300 -0.0129
+vertex -0.1230 0.0300 -0.0054
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1415 0.0300 -0.0129
+vertex -0.1332 0.0300 -0.0054
+vertex -0.1230 0.0300 -0.0054
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1343 0.0300 -0.0054
+vertex -0.1415 0.0300 -0.0001
+vertex -0.1343 0.0300 0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1230 0.0300 0.0126
+vertex -0.1230 0.0300 -0.0054
+vertex -0.1332 0.0300 -0.0054
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1415 0.0300 -0.0129
+vertex -0.1343 0.0300 -0.0054
+vertex -0.1332 0.0300 -0.0054
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1090 0.0300 -0.0054
+vertex -0.1090 0.0300 0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1415 0.0300 -0.0001
+vertex -0.1645 0.0300 -0.0001
+vertex -0.1657 0.0300 0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1668 0.0300 0.0126
+vertex -0.1695 0.0300 0.0230
+vertex -0.1657 0.0300 0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1415 0.0300 -0.0001
+vertex -0.1657 0.0300 0.0126
+vertex -0.1343 0.0300 0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1657 0.0300 0.0126
+vertex -0.1645 0.0300 -0.0001
+vertex -0.1657 0.0300 -0.0054
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0300 -0.0130
+vertex -0.1695 0.0300 0.0230
+vertex -0.1668 0.0300 0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1343 0.0300 0.0126
+vertex -0.1657 0.0300 0.0126
+vertex -0.1695 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1090 0.0300 0.0126
+vertex -0.1230 0.0300 0.0126
+vertex -0.1045 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1343 0.0300 0.0126
+vertex -0.1045 0.0300 0.0230
+vertex -0.1332 0.0300 0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 0.0230
+vertex -0.1343 0.0300 0.0126
+vertex -0.1695 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1332 0.0300 0.0126
+vertex -0.1045 0.0300 0.0230
+vertex -0.1230 0.0300 0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1230 0.0300 0.0126
+vertex -0.1332 0.0300 -0.0054
+vertex -0.1332 0.0300 0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1090 0.0300 0.0126
+vertex -0.1045 0.0300 0.0230
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0585 0.0300 0.0230
+vertex -0.0815 0.0250 0.0230
+vertex -0.0815 -0.0250 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0815 -0.0250 0.0230
+vertex -0.0585 -0.0300 0.0230
+vertex -0.0585 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 -0.0130
+vertex -0.0815 0.0250 -0.0130
+vertex -0.0815 -0.0250 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0815 -0.0250 -0.0130
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 0.0230
+vertex -0.0815 -0.0250 0.0230
+vertex -0.0815 0.0250 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0815 0.0250 0.0230
+vertex -0.1045 0.0300 0.0230
+vertex -0.1045 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0585 -0.0300 -0.0130
+vertex -0.0815 -0.0250 -0.0130
+vertex -0.0815 0.0250 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0815 0.0250 -0.0130
+vertex -0.0585 0.0300 -0.0130
+vertex -0.0585 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0065 -0.0110 -0.0100
+vertex -0.0065 -0.0110 0.0000
+vertex -0.0065 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0065 0.0110 0.0000
+vertex -0.0065 0.0110 -0.0100
+vertex -0.0065 -0.0110 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0035 0.0110 -0.0000
+vertex 0.0065 0.0110 0.0000
+vertex 0.0065 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0110 -0.0130
+vertex -0.0035 0.0110 -0.0130
+vertex -0.0035 0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 0.0200 -0.0000
+vertex -0.0345 0.0300 -0.0000
+vertex 0.0065 0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0300 -0.0000
+vertex 0.0065 0.0200 0.0000
+vertex -0.0345 0.0200 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 0.0110 -0.0100
+vertex -0.0215 0.0110 -0.0000
+vertex -0.0215 -0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0215 -0.0110 -0.0000
+vertex -0.0215 -0.0110 -0.0100
+vertex -0.0215 0.0110 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0200 0.0000
+vertex 0.0065 -0.0300 -0.0000
+vertex -0.0345 -0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0345 -0.0300 -0.0000
+vertex -0.0345 -0.0200 -0.0000
+vertex 0.0065 -0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0300 0.0130
+vertex 0.0065 -0.0300 0.0230
+vertex -0.0585 -0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0585 -0.0300 0.0230
+vertex -0.0585 -0.0300 0.0130
+vertex 0.0065 -0.0300 0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 -0.0300 -0.0030
+vertex -0.1045 -0.0300 -0.0130
+vertex -0.1045 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 -0.0130
+vertex -0.1045 0.0300 -0.0030
+vertex -0.1045 -0.0300 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0200 -0.0000
+vertex -0.1695 0.0300 -0.0000
+vertex -0.1285 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 0.0300 0.0000
+vertex -0.1285 0.0200 0.0000
+vertex -0.1695 0.0200 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1565 0.0110 -0.0100
+vertex -0.1565 0.0110 -0.0000
+vertex -0.1565 -0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1565 -0.0110 -0.0000
+vertex -0.1565 -0.0110 -0.0100
+vertex -0.1565 0.0110 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1595 -0.0110 -0.0000
+vertex -0.1695 -0.0110 -0.0000
+vertex -0.1695 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0110 -0.0130
+vertex -0.1595 -0.0110 -0.0130
+vertex -0.1595 -0.0110 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1285 -0.0200 -0.0000
+vertex -0.1285 -0.0300 -0.0000
+vertex -0.1695 -0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 -0.0300 -0.0000
+vertex -0.1695 -0.0200 -0.0000
+vertex -0.1285 -0.0200 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1695 0.0300 0.0130
+vertex -0.1695 0.0300 0.0230
+vertex -0.1045 0.0300 0.0230
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.1045 0.0300 0.0230
+vertex -0.1045 0.0300 0.0130
+vertex -0.1695 0.0300 0.0130
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/builders/output/CarForSteering/graph-silhouette.dxf b/rocolib/builders/output/CarForSteering/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..5138e047130f50a2933db9896069ab5365975abb
--- /dev/null
+++ b/rocolib/builders/output/CarForSteering/graph-silhouette.dxf
@@ -0,0 +1,19744 @@
+  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
+134.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.00000000000001
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+121.00000000000001
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+134.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+147.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+134.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+147.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+391.0
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+166.0
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+350.0
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+166.0
+ 20
+391.0
+ 30
+0.0
+ 11
+166.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+391.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+350.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+179.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+350.0
+ 30
+0.0
+ 11
+166.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+350.0
+ 30
+0.0
+ 11
+166.0
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+202.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+166.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+350.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00009098110239
+ 20
+262.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.00018196220475
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+161.0000909811024
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.0000909811024
+ 20
+262.0
+ 30
+0.0
+ 11
+166.00018196220475
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+111.00009098110239
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+166.0
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+166.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+125.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+138.00000000000003
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+157.0
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+157.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+93.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+70.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+46.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+73.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+106.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+112.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+99.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+99.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+0.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+151.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+73.0
+ 30
+0.0
+ 11
+157.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+157.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+73.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+130.0
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+73.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+130.0
+ 20
+73.0
+ 30
+0.0
+ 11
+130.0
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+130.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.00000000000003
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+140.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+140.00000000000003
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+83.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+133.00000000000003
+ 30
+0.0
+ 11
+83.0
+ 21
+133.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+166.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+70.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+10.000000000000002
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+64.99990901889764
+ 20
+262.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.999909018897627
+ 20
+262.0
+ 30
+0.0
+ 11
+64.99990901889764
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+9.99981803779525
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+14.999909018897627
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+239.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+0.0
+ 21
+239.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+174.00000000000003
+ 30
+0.0
+ 11
+0.0
+ 21
+174.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+350.0
+ 30
+0.0
+ 11
+262.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+262.0
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+207.00009098110237
+ 20
+262.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+257.00009098110246
+ 20
+262.0
+ 30
+0.0
+ 11
+207.00009098110237
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.00018196220475
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+257.00009098110246
+ 21
+262.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.0
+ 20
+285.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.0
+ 20
+350.0
+ 30
+0.0
+ 11
+272.0
+ 21
+285.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.0
+ 20
+350.0
+ 30
+0.0
+ 11
+272.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+350.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+391.0
+ 30
+0.0
+ 11
+189.0
+ 21
+350.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+189.0
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+160.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.0
+ 20
+391.0
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.0
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+391.0
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.00000000000001
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+121.00000000000001
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00000000000001
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00000000000001
+ 20
+391.0
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.00000000000001
+ 20
+391.0
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+391.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+166.0
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+179.00000000000003
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+413.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+413.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+160.00000000000003
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.0
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.0
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+486.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+486.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+486.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+486.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00000000000001
+ 20
+476.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00000000000001
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+476.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.00000000000001
+ 20
+454.00000000000006
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+454.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+426.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+440.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+440.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+440.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+440.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+426.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+426.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+426.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.91666666666666
+ 20
+357.75000000000006
+ 30
+0.0
+ 11
+142.91666666666666
+ 21
+352.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.91666666666666
+ 20
+352.25000000000006
+ 30
+0.0
+ 11
+142.41666666666669
+ 21
+352.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.41666666666669
+ 20
+352.25000000000006
+ 30
+0.0
+ 11
+142.41666666666669
+ 21
+357.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.41666666666669
+ 20
+357.75000000000006
+ 30
+0.0
+ 11
+142.91666666666666
+ 21
+357.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+363.4166666666667
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+377.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+377.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+377.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+377.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+363.4166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+363.4166666666667
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+363.4166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+378.0
+ 30
+0.0
+ 11
+166.065
+ 21
+378.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+378.0
+ 30
+0.0
+ 11
+166.065
+ 21
+355.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+355.0
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+355.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+355.0
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+378.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+345.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+345.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+345.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+345.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+345.00000000000006
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+345.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+345.00000000000006
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+345.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+326.11363636363643
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+338.4318181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+338.4318181818182
+ 30
+0.0
+ 11
+77.25
+ 21
+338.4318181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+338.4318181818182
+ 30
+0.0
+ 11
+77.25
+ 21
+326.11363636363643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+326.11363636363643
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+326.11363636363643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+296.56818181818187
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+308.8863636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+308.8863636363637
+ 30
+0.0
+ 11
+77.25
+ 21
+308.8863636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+308.8863636363637
+ 30
+0.0
+ 11
+77.25
+ 21
+296.56818181818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+296.56818181818187
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+296.56818181818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.25000000000003
+ 20
+215.50000000000003
+ 30
+0.0
+ 11
+156.25000000000003
+ 21
+215.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+156.25000000000003
+ 20
+215.50000000000003
+ 30
+0.0
+ 11
+156.25000000000003
+ 21
+218.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+156.25000000000003
+ 20
+218.5
+ 30
+0.0
+ 11
+153.25000000000003
+ 21
+218.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.25000000000003
+ 20
+218.5
+ 30
+0.0
+ 11
+153.25000000000003
+ 21
+215.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+154.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+155.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+155.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+154.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+154.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+154.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+117.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+117.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+116.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+116.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.75000000000001
+ 20
+235.50000000000003
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+235.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+235.50000000000003
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+238.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+238.50000000000003
+ 30
+0.0
+ 11
+115.75000000000001
+ 21
+238.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.75000000000001
+ 20
+238.50000000000003
+ 30
+0.0
+ 11
+115.75000000000001
+ 21
+235.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.08333333333337
+ 20
+166.25
+ 30
+0.0
+ 11
+129.08333333333337
+ 21
+171.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.08333333333337
+ 20
+171.75000000000003
+ 30
+0.0
+ 11
+129.58333333333337
+ 21
+171.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.58333333333337
+ 20
+171.75000000000003
+ 30
+0.0
+ 11
+129.58333333333337
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.58333333333337
+ 20
+166.25
+ 30
+0.0
+ 11
+129.08333333333337
+ 21
+166.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+160.58333333333334
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+146.4166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+146.4166666666667
+ 30
+0.0
+ 11
+149.75
+ 21
+146.4166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+146.4166666666667
+ 30
+0.0
+ 11
+149.75
+ 21
+160.58333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+160.58333333333334
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+160.58333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+146.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+146.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+146.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+169.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+169.00000000000003
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+169.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+169.00000000000003
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+146.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.8857142857143
+ 20
+79.00000000000001
+ 30
+0.0
+ 11
+92.8857142857143
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+92.8857142857143
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+72.31428571428573
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+72.31428571428573
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+72.31428571428573
+ 21
+79.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+72.31428571428573
+ 20
+79.00000000000001
+ 30
+0.0
+ 11
+92.8857142857143
+ 21
+79.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.5
+ 20
+120.25000000000001
+ 30
+0.0
+ 11
+69.5
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.5
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+66.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+66.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+66.50000000000001
+ 21
+120.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+66.50000000000001
+ 20
+120.25000000000001
+ 30
+0.0
+ 11
+69.5
+ 21
+120.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+121.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+122.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+122.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+122.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+122.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+121.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+121.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+121.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+48.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+83.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+84.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000001
+ 20
+84.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+84.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+84.75000000000001
+ 30
+0.0
+ 11
+67.50000000000001
+ 21
+83.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.50000000000001
+ 20
+83.75000000000001
+ 30
+0.0
+ 11
+68.50000000000001
+ 21
+83.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.5
+ 20
+82.75000000000001
+ 30
+0.0
+ 11
+49.5
+ 21
+85.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.5
+ 20
+85.75000000000001
+ 30
+0.0
+ 11
+46.50000000000001
+ 21
+85.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.50000000000001
+ 20
+85.75000000000001
+ 30
+0.0
+ 11
+46.50000000000001
+ 21
+82.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.50000000000001
+ 20
+82.75000000000001
+ 30
+0.0
+ 11
+49.5
+ 21
+82.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.44571428571429
+ 20
+77.30000000000003
+ 30
+0.0
+ 11
+40.44571428571429
+ 21
+90.30000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.44571428571429
+ 20
+90.30000000000003
+ 30
+0.0
+ 11
+19.874285714285723
+ 21
+90.30000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.874285714285723
+ 20
+90.30000000000003
+ 30
+0.0
+ 11
+19.874285714285723
+ 21
+77.30000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.874285714285723
+ 20
+77.30000000000003
+ 30
+0.0
+ 11
+40.44571428571429
+ 21
+77.30000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+92.75000000000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+17.250000000000004
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.250000000000004
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+17.250000000000004
+ 21
+92.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.250000000000004
+ 20
+92.75000000000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+92.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+37.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+37.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+37.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+37.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.75000000000001
+ 20
+17.083333333333318
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+24.916666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.75000000000001
+ 20
+24.916666666666686
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+24.916666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.25000000000001
+ 20
+24.916666666666686
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+17.083333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.25000000000001
+ 20
+17.083333333333318
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+17.083333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.33333333333337
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+133.66666666666669
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.66666666666669
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+133.66666666666669
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.66666666666669
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+129.33333333333337
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+158.50000000000003
+ 20
+24.666666666666686
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+24.666666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.50000000000003
+ 20
+24.666666666666686
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+17.333333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.50000000000003
+ 20
+17.333333333333318
+ 30
+0.0
+ 11
+158.50000000000003
+ 21
+17.333333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+59.58333333333332
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+45.416666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+45.416666666666686
+ 30
+0.0
+ 11
+149.75
+ 21
+45.416666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+45.416666666666686
+ 30
+0.0
+ 11
+149.75
+ 21
+59.58333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+59.58333333333332
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+59.58333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+45.66666666666669
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+40.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+40.66666666666669
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+45.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+45.66666666666669
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+59.33333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+59.33333333333332
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+64.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+64.33333333333333
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+59.33333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.50000000000003
+ 20
+120.25000000000001
+ 30
+0.0
+ 11
+129.50000000000003
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.50000000000003
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+126.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+126.50000000000001
+ 21
+120.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.50000000000001
+ 20
+120.25000000000001
+ 30
+0.0
+ 11
+129.50000000000003
+ 21
+120.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+121.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+122.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+122.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+122.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+122.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+121.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+121.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+121.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+119.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+119.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+118.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+118.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+117.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+117.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+116.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+116.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+113.75
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+114.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+114.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+113.75
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+113.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+112.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+112.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+111.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+111.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+109.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+109.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+108.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+108.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+107.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+107.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+106.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+106.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+104.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+104.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+103.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+103.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+101.25
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+101.25
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+101.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+98.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+98.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+97.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+97.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+96.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+96.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+94.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+94.75000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+93.75000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+93.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+92.25
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+92.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+92.25
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+91.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+91.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+88.75
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+89.75
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+89.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+89.75
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+88.75
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+88.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+87.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+87.25000000000001
+ 30
+0.0
+ 11
+107.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.50000000000001
+ 20
+86.25000000000001
+ 30
+0.0
+ 11
+108.50000000000001
+ 21
+86.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+83.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+84.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.50000000000003
+ 20
+84.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+84.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+84.75000000000001
+ 30
+0.0
+ 11
+127.50000000000001
+ 21
+83.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.50000000000001
+ 20
+83.75000000000001
+ 30
+0.0
+ 11
+128.50000000000003
+ 21
+83.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+109.50000000000001
+ 20
+82.75000000000001
+ 30
+0.0
+ 11
+109.50000000000001
+ 21
+85.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+109.50000000000001
+ 20
+85.75000000000001
+ 30
+0.0
+ 11
+106.50000000000001
+ 21
+85.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.50000000000001
+ 20
+85.75000000000001
+ 30
+0.0
+ 11
+106.50000000000001
+ 21
+82.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.50000000000001
+ 20
+82.75000000000001
+ 30
+0.0
+ 11
+109.50000000000001
+ 21
+82.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.50000000000003
+ 20
+113.00000000000001
+ 30
+0.0
+ 11
+137.50000000000003
+ 21
+118.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.50000000000003
+ 20
+118.00000000000001
+ 30
+0.0
+ 11
+132.50000000000003
+ 21
+113.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.50000000000003
+ 20
+113.00000000000001
+ 30
+0.0
+ 11
+132.50000000000003
+ 21
+93.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.50000000000003
+ 20
+93.00000000000001
+ 30
+0.0
+ 11
+137.50000000000003
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.50000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+137.50000000000003
+ 21
+93.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+146.6666666666667
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+141.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+141.6666666666667
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+146.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+146.6666666666667
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+160.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+160.33333333333334
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+165.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+165.33333333333334
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+160.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.56000000000003
+ 20
+177.79000000000005
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+176.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.56000000000003
+ 20
+176.71
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+176.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.56000000000003
+ 20
+176.71
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+177.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.56000000000003
+ 20
+177.79000000000005
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+177.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.56000000000003
+ 20
+210.29000000000002
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+209.21000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.56000000000003
+ 20
+209.21000000000004
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+209.21000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.56000000000003
+ 20
+209.21000000000004
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+210.29000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.56000000000003
+ 20
+210.29000000000002
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+210.29000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.56000000000003
+ 20
+234.52000000000004
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+220.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.56000000000003
+ 20
+220.48000000000002
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+220.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.56000000000003
+ 20
+220.48000000000002
+ 30
+0.0
+ 11
+191.56000000000003
+ 21
+234.52000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.56000000000003
+ 20
+234.52000000000004
+ 30
+0.0
+ 11
+173.56000000000003
+ 21
+234.52000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+179.00000000000003
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+179.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+179.00000000000003
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+202.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+202.00000000000003
+ 30
+0.0
+ 11
+166.065
+ 21
+202.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+202.00000000000003
+ 30
+0.0
+ 11
+166.065
+ 21
+179.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+197.88636363636365
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+185.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+185.56818181818184
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+185.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+185.56818181818184
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+197.88636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+197.88636363636365
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+197.88636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+227.43181818181822
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+215.1136363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+215.1136363636364
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+215.1136363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+215.1136363636364
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+227.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+227.43181818181822
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+227.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.40000000000002
+ 20
+177.79000000000005
+ 30
+0.0
+ 11
+75.40000000000002
+ 21
+176.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.40000000000002
+ 20
+176.71
+ 30
+0.0
+ 11
+93.40000000000002
+ 21
+176.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.40000000000002
+ 20
+176.71
+ 30
+0.0
+ 11
+93.40000000000002
+ 21
+177.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.40000000000002
+ 20
+177.79000000000005
+ 30
+0.0
+ 11
+75.40000000000002
+ 21
+177.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.40000000000002
+ 20
+210.29000000000002
+ 30
+0.0
+ 11
+75.40000000000002
+ 21
+209.21000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.40000000000002
+ 20
+209.21000000000004
+ 30
+0.0
+ 11
+93.40000000000002
+ 21
+209.21000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.40000000000002
+ 20
+209.21000000000004
+ 30
+0.0
+ 11
+93.40000000000002
+ 21
+210.29000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.40000000000002
+ 20
+210.29000000000002
+ 30
+0.0
+ 11
+75.40000000000002
+ 21
+210.29000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.80000000000001
+ 20
+234.52000000000004
+ 30
+0.0
+ 11
+71.80000000000001
+ 21
+220.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.80000000000001
+ 20
+220.48000000000002
+ 30
+0.0
+ 11
+97.00000000000001
+ 21
+220.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.00000000000001
+ 20
+220.48000000000002
+ 30
+0.0
+ 11
+97.00000000000001
+ 21
+234.52000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.00000000000001
+ 20
+234.52000000000004
+ 30
+0.0
+ 11
+71.80000000000001
+ 21
+234.52000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+202.00000000000003
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+202.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+202.00000000000003
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+179.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+179.00000000000003
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+179.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+179.00000000000003
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+202.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.25000000000001
+ 20
+215.50000000000003
+ 30
+0.0
+ 11
+60.25000000000001
+ 21
+215.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+60.25000000000001
+ 20
+215.50000000000003
+ 30
+0.0
+ 11
+60.25000000000001
+ 21
+218.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+60.25000000000001
+ 20
+218.5
+ 30
+0.0
+ 11
+57.25000000000001
+ 21
+218.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.25000000000001
+ 20
+218.5
+ 30
+0.0
+ 11
+57.25000000000001
+ 21
+215.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+59.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+59.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+59.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+59.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+58.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+58.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+56.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+56.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+56.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+56.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+55.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+55.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+56.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+56.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+56.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+56.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+55.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+55.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+55.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+54.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+54.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+53.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+53.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+54.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+54.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+53.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+53.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+53.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+51.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+51.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+50.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+50.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+51.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+51.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+50.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+50.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+49.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+49.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+48.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+48.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+49.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+49.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+48.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+48.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+46.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+46.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+45.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+45.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+46.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+46.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+45.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+45.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+44.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+44.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+43.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+43.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+44.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+44.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+43.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+43.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+41.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+41.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+40.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+40.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+41.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+41.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+40.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+40.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+38.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+39.25
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+39.25
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+39.25
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+39.25
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+38.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+38.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+38.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+38.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+39.25
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+39.25
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+39.25
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+39.25
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+38.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+38.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+38.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+36.75000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.75000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+36.75000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.75000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+35.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+35.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+36.75000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.75000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+36.75000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.75000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+35.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+35.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+34.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.25000000000001
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+34.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+33.25000000000001
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.25000000000001
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+33.25000000000001
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+34.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.25000000000001
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+34.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+33.25000000000001
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.25000000000001
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+33.25000000000001
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.750000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+31.750000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.750000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+31.750000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.750000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+30.750000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.750000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+30.750000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.750000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+31.750000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.750000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+31.750000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.750000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+30.750000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.750000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+30.750000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.250000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+29.250000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.250000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+29.250000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.250000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+28.250000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.250000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+28.250000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.250000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+29.250000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.250000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+29.250000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.250000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+28.250000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.250000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+28.250000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+25.750000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+26.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+26.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+25.750000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+25.750000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+25.750000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+25.750000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+26.75
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.75
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+26.75
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.75
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+25.750000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+25.750000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+25.750000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.250000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+24.250000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+24.250000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+24.250000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+24.250000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+23.250000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.250000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+23.250000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.250000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+24.250000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+24.250000000000004
+ 20
+236.50000000000003
+ 30
+0.0
+ 11
+24.250000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+24.250000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+23.250000000000004
+ 21
+237.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.250000000000004
+ 20
+237.50000000000003
+ 30
+0.0
+ 11
+23.250000000000004
+ 21
+236.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+20.75
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+21.750000000000004
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.750000000000004
+ 20
+216.50000000000003
+ 30
+0.0
+ 11
+21.750000000000004
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.750000000000004
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+20.75
+ 21
+217.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+20.75
+ 20
+217.50000000000003
+ 30
+0.0
+ 11
+20.75
+ 21
+216.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.750000000000004
+ 20
+235.50000000000003
+ 30
+0.0
+ 11
+22.75
+ 21
+235.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.75
+ 20
+235.50000000000003
+ 30
+0.0
+ 11
+22.75
+ 21
+238.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.75
+ 20
+238.50000000000003
+ 30
+0.0
+ 11
+19.750000000000004
+ 21
+238.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.750000000000004
+ 20
+238.50000000000003
+ 30
+0.0
+ 11
+19.750000000000004
+ 21
+235.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+185.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+185.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+185.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+197.63636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+197.63636363636365
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+197.63636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+215.3636363636364
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+215.3636363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+215.3636363636364
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+227.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+227.18181818181822
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+227.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.50000000000006
+ 20
+338.1818181818182
+ 30
+0.0
+ 11
+264.5
+ 21
+338.1818181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+338.1818181818182
+ 30
+0.0
+ 11
+264.5
+ 21
+326.36363636363643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+326.36363636363643
+ 30
+0.0
+ 11
+269.50000000000006
+ 21
+326.36363636363643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.50000000000006
+ 20
+308.6363636363637
+ 30
+0.0
+ 11
+264.5
+ 21
+308.6363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+308.6363636363637
+ 30
+0.0
+ 11
+264.5
+ 21
+296.81818181818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+296.81818181818187
+ 30
+0.0
+ 11
+269.50000000000006
+ 21
+296.81818181818187
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+377.33333333333337
+ 30
+0.0
+ 11
+186.5
+ 21
+382.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+382.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+377.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+377.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+186.5
+ 21
+358.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+358.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.25000000000003
+ 20
+405.91666666666674
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+398.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.25000000000003
+ 20
+398.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+398.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.75
+ 20
+398.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+405.91666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.75
+ 20
+405.91666666666674
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+405.91666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.50000000000001
+ 20
+398.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+398.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.50000000000001
+ 20
+398.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+405.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.50000000000001
+ 20
+405.66666666666674
+ 30
+0.0
+ 11
+113.50000000000001
+ 21
+405.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+449.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+449.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+449.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+426.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+426.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+426.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+426.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+449.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+440.33333333333337
+ 30
+0.0
+ 11
+186.5
+ 21
+445.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+445.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+440.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+440.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+426.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+426.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+421.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+421.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+426.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.25000000000003
+ 20
+468.91666666666674
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+461.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.25000000000003
+ 20
+461.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+461.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.75
+ 20
+461.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+468.91666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.75
+ 20
+468.91666666666674
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+468.91666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.66666666666669
+ 20
+478.50000000000006
+ 30
+0.0
+ 11
+138.33333333333334
+ 21
+478.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.33333333333334
+ 20
+478.50000000000006
+ 30
+0.0
+ 11
+138.33333333333334
+ 21
+483.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.33333333333334
+ 20
+483.50000000000006
+ 30
+0.0
+ 11
+142.66666666666669
+ 21
+483.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.50000000000001
+ 20
+461.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+461.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.50000000000001
+ 20
+461.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+468.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.50000000000001
+ 20
+468.6666666666667
+ 30
+0.0
+ 11
+113.50000000000001
+ 21
+468.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+282.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+282.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+282.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+282.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+345.0050224158704
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0050224158704
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+345.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0281737678708
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+345.0050224158704
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+342.4268406450232
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+344.0281737678708
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+340.24045318333197
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+342.4268406450232
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.522847498308
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+340.24045318333197
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.3409400611327
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+337.522847498308
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+330.7730799930546
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+334.3409400611327
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+326.9071198499986
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+330.7730799930546
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+322.83825240107285
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+326.9071198499986
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+318.6666666666667
+ 20
+491.66666666666674
+ 30
+0.0
+ 11
+322.83825240107285
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+314.4950809322606
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+318.6666666666667
+ 21
+491.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+310.42621348333483
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+314.4950809322606
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+306.5602533402788
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+310.42621348333483
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+302.9923932722008
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+306.5602533402788
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+299.8104858350255
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+302.9923932722008
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+297.09288015000146
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+299.8104858350255
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+294.9064926883102
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+297.09288015000146
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+293.3051595654626
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+294.9064926883102
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+292.328310917463
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+293.3051595654626
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+292.0
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+292.328310917463
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+292.328310917463
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+292.0
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+293.3051595654626
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+292.328310917463
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+294.9064926883102
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+293.3051595654626
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+297.09288015000146
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+294.9064926883102
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+299.8104858350255
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+297.09288015000146
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+302.9923932722008
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+299.8104858350255
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+306.5602533402788
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+302.9923932722008
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+310.42621348333483
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+306.5602533402788
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+314.4950809322606
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+310.42621348333483
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+318.6666666666667
+ 20
+438.33333333333337
+ 30
+0.0
+ 11
+314.4950809322606
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+322.83825240107285
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+318.6666666666667
+ 21
+438.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+326.9071198499986
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+322.83825240107285
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+330.7730799930546
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+326.9071198499986
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.3409400611327
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+330.7730799930546
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.522847498308
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+334.3409400611327
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+340.24045318333197
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+337.522847498308
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+342.4268406450232
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+340.24045318333197
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0281737678708
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+342.4268406450232
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0050224158704
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+344.0281737678708
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+418.3383557492038
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.3383557492038
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+418.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+417.3615071012042
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+418.3383557492038
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.7601739783566
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+417.3615071012042
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+413.57378651666534
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+415.7601739783566
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+410.8561808316413
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+413.57378651666534
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.67427339446607
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+410.8561808316413
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+404.106413326388
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+407.67427339446607
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.24045318333197
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+404.106413326388
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+396.1715857344062
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+400.24045318333197
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+392.0000000000001
+ 20
+491.66666666666674
+ 30
+0.0
+ 11
+396.1715857344062
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+387.82841426559395
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+392.0000000000001
+ 21
+491.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+383.7595468166682
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+387.82841426559395
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.8935866736122
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+383.7595468166682
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+376.32572660553416
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+379.8935866736122
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+373.14381916835885
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+376.32572660553416
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+370.42621348333483
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+373.14381916835885
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.2398260216436
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+370.42621348333483
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.638492898796
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+368.2398260216436
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.66164425079637
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+366.638492898796
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.3333333333334
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+365.66164425079637
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.66164425079637
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+365.3333333333334
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.638492898796
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+365.66164425079637
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.2398260216436
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+366.638492898796
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+370.42621348333483
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+368.2398260216436
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+373.14381916835885
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+370.42621348333483
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+376.32572660553416
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+373.14381916835885
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.8935866736122
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+376.32572660553416
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+383.7595468166682
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+379.8935866736122
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+387.82841426559395
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+383.7595468166682
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+392.0000000000001
+ 20
+438.33333333333337
+ 30
+0.0
+ 11
+387.82841426559395
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+396.1715857344062
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+392.0000000000001
+ 21
+438.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.24045318333197
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+396.1715857344062
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+404.106413326388
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+400.24045318333197
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.67427339446607
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+404.106413326388
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+410.8561808316413
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+407.67427339446607
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+413.57378651666534
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+410.8561808316413
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.7601739783566
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+413.57378651666534
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+417.3615071012042
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+415.7601739783566
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.3383557492038
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+417.3615071012042
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+492.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+491.67168908253717
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+491.67168908253717
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+492.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.6948404345376
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+491.67168908253717
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.09350731168996
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+490.6948404345376
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+486.90711984999876
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+489.09350731168996
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.18951416497475
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+486.90711984999876
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+481.00760672779944
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+484.18951416497475
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+477.4397466597214
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+481.00760672779944
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+473.5737865166654
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+477.4397466597214
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+469.50491906773965
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+473.5737865166654
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+465.3333333333335
+ 20
+491.66666666666674
+ 30
+0.0
+ 11
+469.50491906773965
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+461.1617475989273
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+465.3333333333335
+ 21
+491.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+457.0928801500016
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+461.1617475989273
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+453.2269200069456
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+457.0928801500016
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+449.65905993886753
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+453.2269200069456
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+446.4771525016922
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+449.65905993886753
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+443.7595468166682
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+446.4771525016922
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+441.573159354977
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+443.7595468166682
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+439.9718262321294
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+441.573159354977
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.9949775841298
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+439.9718262321294
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.6666666666668
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+438.9949775841298
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.9949775841298
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+438.6666666666668
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+439.9718262321294
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+438.9949775841298
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+441.573159354977
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+439.9718262321294
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+443.7595468166682
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+441.573159354977
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+446.4771525016922
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+443.7595468166682
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+449.65905993886753
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+446.4771525016922
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+453.2269200069456
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+449.65905993886753
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+457.0928801500016
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+453.2269200069456
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+461.1617475989273
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+457.0928801500016
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+465.3333333333335
+ 20
+438.33333333333337
+ 30
+0.0
+ 11
+461.1617475989273
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+469.50491906773965
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+465.3333333333335
+ 21
+438.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+473.5737865166654
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+469.50491906773965
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+477.4397466597214
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+473.5737865166654
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+481.00760672779944
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+477.4397466597214
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.18951416497475
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+481.00760672779944
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+486.90711984999876
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+484.18951416497475
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.09350731168996
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+486.90711984999876
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.6948404345376
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+489.09350731168996
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+491.67168908253717
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+490.6948404345376
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.3333333333334
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+565.0050224158704
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.0050224158704
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+565.3333333333334
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+564.0281737678708
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+565.0050224158704
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+562.4268406450233
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+564.0281737678708
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2404531833321
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+562.4268406450233
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+557.5228474983081
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+560.2404531833321
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+554.3409400611328
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+557.5228474983081
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+550.7730799930548
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+554.3409400611328
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.9071198499987
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+550.7730799930548
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+542.838252401073
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+546.9071198499987
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+538.6666666666669
+ 20
+491.66666666666674
+ 30
+0.0
+ 11
+542.838252401073
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+534.4950809322607
+ 20
+491.33835574920374
+ 30
+0.0
+ 11
+538.6666666666669
+ 21
+491.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+530.4262134833349
+ 20
+490.36150710120415
+ 30
+0.0
+ 11
+534.4950809322607
+ 21
+491.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+526.5602533402789
+ 20
+488.76017397835653
+ 30
+0.0
+ 11
+530.4262134833349
+ 21
+490.36150710120415
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+522.992393272201
+ 20
+486.5737865166654
+ 30
+0.0
+ 11
+526.5602533402789
+ 21
+488.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+519.8104858350256
+ 20
+483.8561808316414
+ 30
+0.0
+ 11
+522.992393272201
+ 21
+486.5737865166654
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+517.0928801500016
+ 20
+480.674273394466
+ 30
+0.0
+ 11
+519.8104858350256
+ 21
+483.8561808316414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+514.9064926883103
+ 20
+477.10641332638795
+ 30
+0.0
+ 11
+517.0928801500016
+ 21
+480.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+513.3051595654628
+ 20
+473.2404531833319
+ 30
+0.0
+ 11
+514.9064926883103
+ 21
+477.10641332638795
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+512.3283109174631
+ 20
+469.17158573440616
+ 30
+0.0
+ 11
+513.3051595654628
+ 21
+473.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+512.0000000000002
+ 20
+465.00000000000006
+ 30
+0.0
+ 11
+512.3283109174631
+ 21
+469.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+512.3283109174631
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+512.0000000000002
+ 21
+465.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+513.3051595654628
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+512.3283109174631
+ 21
+460.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+514.9064926883102
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+513.3051595654628
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+517.0928801500016
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+514.9064926883102
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+519.8104858350256
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+517.0928801500016
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+522.992393272201
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+519.8104858350256
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+526.5602533402789
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+522.992393272201
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+530.4262134833349
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+526.5602533402789
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+534.4950809322607
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+530.4262134833349
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+538.6666666666669
+ 20
+438.33333333333337
+ 30
+0.0
+ 11
+534.4950809322607
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+542.838252401073
+ 20
+438.6616442507963
+ 30
+0.0
+ 11
+538.6666666666669
+ 21
+438.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.9071198499987
+ 20
+439.63849289879596
+ 30
+0.0
+ 11
+542.838252401073
+ 21
+438.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+550.7730799930548
+ 20
+441.2398260216435
+ 30
+0.0
+ 11
+546.9071198499987
+ 21
+439.63849289879596
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+554.3409400611328
+ 20
+443.4262134833348
+ 30
+0.0
+ 11
+550.7730799930548
+ 21
+441.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+557.5228474983081
+ 20
+446.1438191683588
+ 30
+0.0
+ 11
+554.3409400611328
+ 21
+443.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2404531833321
+ 20
+449.3257266055341
+ 30
+0.0
+ 11
+557.5228474983081
+ 21
+446.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+562.4268406450232
+ 20
+452.89358667361216
+ 30
+0.0
+ 11
+560.2404531833321
+ 21
+449.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+564.0281737678708
+ 20
+456.75954681666815
+ 30
+0.0
+ 11
+562.4268406450232
+ 21
+452.89358667361216
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.0050224158704
+ 20
+460.8284142655939
+ 30
+0.0
+ 11
+564.0281737678708
+ 21
+456.75954681666815
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/CarForSteering/tree.png b/rocolib/builders/output/CarForSteering/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..dad71a8ff646934d2b9d18a813e611f3da27eb24
Binary files /dev/null and b/rocolib/builders/output/CarForSteering/tree.png differ
diff --git a/rocolib/builders/output/DCMotorMount/graph-anim.svg b/rocolib/builders/output/DCMotorMount/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..76bf4629d5edb0d122e1fe356ea2865c217eb9e3
--- /dev/null
+++ b/rocolib/builders/output/DCMotorMount/graph-anim.svg
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="160.000000mm" version="1.1" viewBox="0.000000 0.000000 90.000000 160.000000" width="90.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="40.00000000000001" x2="10.000000000000002" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="40.00000000000001" x2="40.00000000000001" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="40.00000000000001" y1="100.0" y2="100.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="100.0" y2="60.00000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="40.00000000000001" x2="50.0" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="50.0" x2="50.0" y1="60.00000000000001" y2="100.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="50.0" x2="40.00000000000001" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="50.0" x2="50.0" y1="60.00000000000001" y2="0.0"/>
+  <line stroke="#000000" x1="40.00000000000001" x2="40.00000000000001" y1="0.0" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="50.0" x2="40.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="80.00000000000001" x2="50.0" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="80.00000000000001" x2="80.00000000000001" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#000000" x1="50.0" x2="80.00000000000001" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="90.0" x2="80.00000000000001" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="100.0" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="80.00000000000001" x2="90.0" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="40.00000000000001" x2="40.00000000000001" y1="100.0" y2="160.00000000000003"/>
+  <line stroke="#000000" x1="50.0" x2="50.0" y1="160.00000000000003" y2="100.0"/>
+  <line stroke="#000000" x1="40.00000000000001" x2="50.0" y1="160.00000000000003" y2="160.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="19.000000000000004" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="19.000000000000004" x2="19.000000000000004" y1="76.00000000000001" y2="84.0"/>
+  <line stroke="#888888" x1="19.000000000000004" x2="11.000000000000002" y1="84.0" y2="84.0"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="84.0" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="71.00000000000001" x2="79.00000000000001" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="79.00000000000001" x2="79.00000000000001" y1="76.00000000000001" y2="84.0"/>
+  <line stroke="#888888" x1="79.00000000000001" x2="71.00000000000001" y1="84.0" y2="84.0"/>
+  <line stroke="#888888" x1="71.00000000000001" x2="71.00000000000001" y1="84.0" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="82.25000000000001" x2="82.25000000000001" y1="86.91666666666669" y2="73.08333333333336"/>
+  <line stroke="#888888" x1="82.25000000000001" x2="82.75000000000001" y1="73.08333333333336" y2="73.08333333333336"/>
+  <line stroke="#888888" x1="82.75000000000001" x2="82.75000000000001" y1="73.08333333333336" y2="86.91666666666669"/>
+  <line stroke="#888888" x1="82.75000000000001" x2="82.25000000000001" y1="86.91666666666669" y2="86.91666666666669"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="2.5000000000000004" y1="73.33333333333336" y2="68.33333333333334"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="68.33333333333334" y2="73.33333333333336"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="73.33333333333336" y2="86.66666666666669"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="86.66666666666669" y2="91.66666666666669"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="2.5000000000000004" y1="91.66666666666669" y2="86.66666666666669"/>
+</svg>
diff --git a/rocolib/builders/output/DCMotorMount/graph-autofold-default.dxf b/rocolib/builders/output/DCMotorMount/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..08e2f62abc8fe22789c3328274d68a2d9f9b2beb
--- /dev/null
+++ b/rocolib/builders/output/DCMotorMount/graph-autofold-default.dxf
@@ -0,0 +1,1686 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+8
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+40.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+100.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+10.000000000000002
+ 20
+100.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+40.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+50.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+50.0
+ 20
+100.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+50.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+50.0
+ 20
+0.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+80.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+80.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+50.0
+ 20
+100.0
+ 30
+0.0
+ 11
+80.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+80.00000000000001
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+100.0
+ 30
+0.0
+ 11
+90.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.00000000000001
+ 20
+100.0
+ 30
+0.0
+ 11
+90.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.00000000000001
+ 20
+100.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+160.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+50.0
+ 20
+160.00000000000003
+ 30
+0.0
+ 11
+50.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.00000000000001
+ 20
+160.00000000000003
+ 30
+0.0
+ 11
+50.0
+ 21
+160.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+100.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.000000000000002
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+19.000000000000004
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+19.000000000000004
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+19.000000000000004
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+19.000000000000004
+ 20
+84.0
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.000000000000002
+ 20
+84.0
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.00000000000001
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+79.00000000000001
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+79.00000000000001
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+79.00000000000001
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+79.00000000000001
+ 20
+84.0
+ 30
+0.0
+ 11
+71.00000000000001
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.00000000000001
+ 20
+84.0
+ 30
+0.0
+ 11
+71.00000000000001
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+82.25000000000001
+ 20
+86.91666666666669
+ 30
+0.0
+ 11
+82.25000000000001
+ 21
+73.08333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+82.25000000000001
+ 20
+73.08333333333336
+ 30
+0.0
+ 11
+82.75000000000001
+ 21
+73.08333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+82.75000000000001
+ 20
+73.08333333333336
+ 30
+0.0
+ 11
+82.75000000000001
+ 21
+86.91666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+82.75000000000001
+ 20
+86.91666666666669
+ 30
+0.0
+ 11
+82.25000000000001
+ 21
+86.91666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+73.33333333333336
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+68.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+68.33333333333334
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+73.33333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+73.33333333333336
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+86.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+86.66666666666669
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+91.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+91.66666666666669
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+86.66666666666669
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/DCMotorMount/graph-autofold-graph.dxf b/rocolib/builders/output/DCMotorMount/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..57975c1443a1bf771075302c3bf7640e6891f386
--- /dev/null
+++ b/rocolib/builders/output/DCMotorMount/graph-autofold-graph.dxf
@@ -0,0 +1,1656 @@
+  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
+40.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+40.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+100.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+10.000000000000002
+ 20
+100.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+40.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+50.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+50.0
+ 20
+100.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.0
+ 20
+0.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+80.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+80.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.0
+ 20
+100.0
+ 30
+0.0
+ 11
+80.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+80.00000000000001
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+100.0
+ 30
+0.0
+ 11
+90.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.00000000000001
+ 20
+100.0
+ 30
+0.0
+ 11
+90.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.00000000000001
+ 20
+100.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+160.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.0
+ 20
+160.00000000000003
+ 30
+0.0
+ 11
+50.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.00000000000001
+ 20
+160.00000000000003
+ 30
+0.0
+ 11
+50.0
+ 21
+160.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+100.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+19.000000000000004
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.000000000000004
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+19.000000000000004
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.000000000000004
+ 20
+84.0
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+84.0
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.00000000000001
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+79.00000000000001
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+79.00000000000001
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+79.00000000000001
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+79.00000000000001
+ 20
+84.0
+ 30
+0.0
+ 11
+71.00000000000001
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.00000000000001
+ 20
+84.0
+ 30
+0.0
+ 11
+71.00000000000001
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.25000000000001
+ 20
+86.91666666666669
+ 30
+0.0
+ 11
+82.25000000000001
+ 21
+73.08333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.25000000000001
+ 20
+73.08333333333336
+ 30
+0.0
+ 11
+82.75000000000001
+ 21
+73.08333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.75000000000001
+ 20
+73.08333333333336
+ 30
+0.0
+ 11
+82.75000000000001
+ 21
+86.91666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.75000000000001
+ 20
+86.91666666666669
+ 30
+0.0
+ 11
+82.25000000000001
+ 21
+86.91666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+73.33333333333336
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+68.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+68.33333333333334
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+73.33333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+73.33333333333336
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+86.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+86.66666666666669
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+91.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+91.66666666666669
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+86.66666666666669
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/DCMotorMount/graph-lasercutter.svg b/rocolib/builders/output/DCMotorMount/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..312d2a2f1c3621d04a4f37863785923728951dd9
--- /dev/null
+++ b/rocolib/builders/output/DCMotorMount/graph-lasercutter.svg
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="160.000000mm" version="1.1" viewBox="0.000000 0.000000 90.000000 160.000000" width="90.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="40.00000000000001" x2="10.000000000000002" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="40.00000000000001" x2="40.00000000000001" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="40.00000000000001" y1="100.0" y2="100.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="100.0" y2="60.00000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="40.00000000000001" x2="50.0" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="50.0" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="40.00000000000001" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="50.0" x2="50.0" y1="60.00000000000001" y2="0.0"/>
+  <line stroke="#000000" x1="40.00000000000001" x2="40.00000000000001" y1="0.0" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="50.0" x2="40.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="80.00000000000001" x2="50.0" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="80.00000000000001" x2="80.00000000000001" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#000000" x1="50.0" x2="80.00000000000001" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="90.0" x2="80.00000000000001" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="100.0" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="80.00000000000001" x2="90.0" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="40.00000000000001" x2="40.00000000000001" y1="100.0" y2="160.00000000000003"/>
+  <line stroke="#000000" x1="50.0" x2="50.0" y1="160.00000000000003" y2="100.0"/>
+  <line stroke="#000000" x1="40.00000000000001" x2="50.0" y1="160.00000000000003" y2="160.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="19.000000000000004" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="19.000000000000004" x2="19.000000000000004" y1="76.00000000000001" y2="84.0"/>
+  <line stroke="#888888" x1="19.000000000000004" x2="11.000000000000002" y1="84.0" y2="84.0"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="84.0" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="71.00000000000001" x2="79.00000000000001" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="79.00000000000001" x2="79.00000000000001" y1="76.00000000000001" y2="84.0"/>
+  <line stroke="#888888" x1="79.00000000000001" x2="71.00000000000001" y1="84.0" y2="84.0"/>
+  <line stroke="#888888" x1="71.00000000000001" x2="71.00000000000001" y1="84.0" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="82.25000000000001" x2="82.25000000000001" y1="86.91666666666669" y2="73.08333333333336"/>
+  <line stroke="#888888" x1="82.25000000000001" x2="82.75000000000001" y1="73.08333333333336" y2="73.08333333333336"/>
+  <line stroke="#888888" x1="82.75000000000001" x2="82.75000000000001" y1="73.08333333333336" y2="86.91666666666669"/>
+  <line stroke="#888888" x1="82.75000000000001" x2="82.25000000000001" y1="86.91666666666669" y2="86.91666666666669"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="2.5000000000000004" y1="73.33333333333336" y2="68.33333333333334"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="68.33333333333334" y2="73.33333333333336"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="73.33333333333336" y2="86.66666666666669"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="86.66666666666669" y2="91.66666666666669"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="2.5000000000000004" y1="91.66666666666669" y2="86.66666666666669"/>
+</svg>
diff --git a/rocolib/builders/output/DCMotorMount/graph-model.png b/rocolib/builders/output/DCMotorMount/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..4cca1a13ecbe07e28b3c33986f077bc89d8e595b
Binary files /dev/null and b/rocolib/builders/output/DCMotorMount/graph-model.png differ
diff --git a/rocolib/builders/output/DCMotorMount/graph-model.stl b/rocolib/builders/output/DCMotorMount/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..9d410f0a4966ab164af12b75ad7f1ae2ae8a7295
--- /dev/null
+++ b/rocolib/builders/output/DCMotorMount/graph-model.stl
@@ -0,0 +1,184 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0200 0.0000
+vertex -0.0140 -0.0040 0.0000
+vertex -0.0140 0.0040 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 -0.0040 0.0000
+vertex -0.0150 -0.0200 0.0000
+vertex -0.0060 -0.0040 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0200 0.0000
+vertex -0.0140 0.0040 0.0000
+vertex -0.0060 0.0040 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 0.0040 0.0000
+vertex -0.0150 0.0200 0.0000
+vertex -0.0150 -0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 -0.0040 0.0000
+vertex 0.0150 -0.0200 0.0000
+vertex 0.0150 0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0200 0.0000
+vertex -0.0060 -0.0040 0.0000
+vertex -0.0150 -0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 0.0040 0.0000
+vertex 0.0150 0.0200 0.0000
+vertex -0.0150 0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0200 0.0000
+vertex -0.0060 0.0040 0.0000
+vertex -0.0060 -0.0040 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0200 0.0000
+vertex 0.0150 -0.0200 0.0000
+vertex 0.0150 -0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0200 -0.0100
+vertex 0.0150 0.0200 -0.0100
+vertex 0.0150 0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0200 -0.0100
+vertex -0.0060 -0.0040 -0.0100
+vertex -0.0060 0.0040 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 -0.0040 -0.0100
+vertex 0.0150 -0.0200 -0.0100
+vertex -0.0150 -0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0200 -0.0100
+vertex -0.0060 0.0040 -0.0100
+vertex -0.0150 0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 0.0040 -0.0100
+vertex 0.0150 0.0200 -0.0100
+vertex 0.0150 -0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 -0.0040 -0.0100
+vertex -0.0150 -0.0200 -0.0100
+vertex -0.0150 0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0200 -0.0100
+vertex -0.0140 -0.0040 -0.0100
+vertex -0.0060 -0.0040 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 0.0040 -0.0100
+vertex -0.0150 0.0200 -0.0100
+vertex -0.0060 0.0040 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0200 -0.0100
+vertex -0.0140 0.0040 -0.0100
+vertex -0.0140 -0.0040 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0200 -0.0100
+vertex -0.0150 -0.0200 -0.0100
+vertex -0.0150 -0.0200 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0200 -0.0000
+vertex -0.0150 0.0200 -0.0000
+vertex -0.0150 0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0750 -0.0200 0.0000
+vertex 0.0750 -0.0200 -0.0100
+vertex 0.0150 -0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0200 -0.0100
+vertex 0.0150 -0.0200 0.0000
+vertex 0.0750 -0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0750 0.0200 -0.0100
+vertex 0.0750 0.0200 0.0000
+vertex 0.0150 0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0200 0.0000
+vertex 0.0150 0.0200 -0.0100
+vertex 0.0750 0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0200 -0.0100
+vertex -0.0150 -0.0200 0.0000
+vertex -0.0150 0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0200 0.0000
+vertex -0.0150 0.0200 -0.0100
+vertex -0.0150 -0.0200 -0.0100
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/builders/output/DCMotorMount/graph-silhouette.dxf b/rocolib/builders/output/DCMotorMount/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..b06e5bcafe36230127906276484a4c381bb10a0a
--- /dev/null
+++ b/rocolib/builders/output/DCMotorMount/graph-silhouette.dxf
@@ -0,0 +1,1656 @@
+  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
+40.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+40.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+100.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+10.000000000000002
+ 20
+100.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+40.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+50.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+50.0
+ 20
+100.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.0
+ 20
+0.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+80.00000000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+80.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.0
+ 20
+100.0
+ 30
+0.0
+ 11
+80.00000000000001
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+80.00000000000001
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+100.0
+ 30
+0.0
+ 11
+90.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.00000000000001
+ 20
+100.0
+ 30
+0.0
+ 11
+90.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.00000000000001
+ 20
+100.0
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+160.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.0
+ 20
+160.00000000000003
+ 30
+0.0
+ 11
+50.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.00000000000001
+ 20
+160.00000000000003
+ 30
+0.0
+ 11
+50.0
+ 21
+160.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+100.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+19.000000000000004
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.000000000000004
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+19.000000000000004
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.000000000000004
+ 20
+84.0
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+84.0
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.00000000000001
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+79.00000000000001
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+79.00000000000001
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+79.00000000000001
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+79.00000000000001
+ 20
+84.0
+ 30
+0.0
+ 11
+71.00000000000001
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.00000000000001
+ 20
+84.0
+ 30
+0.0
+ 11
+71.00000000000001
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.25000000000001
+ 20
+86.91666666666669
+ 30
+0.0
+ 11
+82.25000000000001
+ 21
+73.08333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.25000000000001
+ 20
+73.08333333333336
+ 30
+0.0
+ 11
+82.75000000000001
+ 21
+73.08333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.75000000000001
+ 20
+73.08333333333336
+ 30
+0.0
+ 11
+82.75000000000001
+ 21
+86.91666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.75000000000001
+ 20
+86.91666666666669
+ 30
+0.0
+ 11
+82.25000000000001
+ 21
+86.91666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+73.33333333333336
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+68.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+68.33333333333334
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+73.33333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+73.33333333333336
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+86.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+86.66666666666669
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+91.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+91.66666666666669
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+86.66666666666669
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/DCMotorMount/tree.png b/rocolib/builders/output/DCMotorMount/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e9f0a76033b60b894114c426dd8447c7c19e21a
Binary files /dev/null and b/rocolib/builders/output/DCMotorMount/tree.png differ
diff --git a/rocolib/builders/output/DoubleServoMount/graph-anim.svg b/rocolib/builders/output/DoubleServoMount/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..92c3ded07cbdf0bcd3741bda1c41010489eebe09
--- /dev/null
+++ b/rocolib/builders/output/DoubleServoMount/graph-anim.svg
@@ -0,0 +1,103 @@
+<?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="172.000000mm" version="1.1" viewBox="0.000000 0.000000 245.000000 172.000000" width="245.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="74.0" y2="74.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="70.00000000000001" x2="70.00000000000001" y1="74.0" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="115.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="70.00000000000001" y1="74.0" y2="74.0"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="115.00000000000001" y1="74.0" y2="74.0"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="98.00000000000001" y2="74.0"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="120.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="0.0" x2="34.0" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="74.0" y2="98.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="0.0" y1="74.0" y2="74.0"/>
+  <line stroke="#000000" x1="34.0" x2="34.0" y1="74.0" y2="54.00000000000001"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="54.00000000000001" y2="74.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="0.0" y1="54.00000000000001" y2="54.00000000000001"/>
+  <line stroke="#000000" x1="34.0" x2="34.0" y1="54.00000000000001" y2="30.000000000000004"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="30.000000000000004" y2="54.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="0.0" y1="30.000000000000004" y2="30.000000000000004"/>
+  <line stroke="#000000" x1="34.0" x2="34.0" y1="30.000000000000004" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="10.000000000000002" y2="30.000000000000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="0.0" x2="34.0" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="34.0" x2="0.0" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="34.0" x2="34.0" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="90.0" y2="92.50000000000001"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="116.25000000000001" y1="92.50000000000001" y2="90.0"/>
+  <line stroke="#888888" x1="116.25000000000001" x2="116.25000000000001" y1="90.0" y2="82.0"/>
+  <line stroke="#888888" x1="116.25000000000001" x2="118.75000000000001" y1="82.0" y2="79.5"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="79.5" y2="82.0"/>
+  <line stroke="#888888" x1="11.08333333333333" x2="22.916666666666668" y1="90.25000000000001" y2="90.25000000000001"/>
+  <line stroke="#888888" x1="22.916666666666668" x2="22.916666666666668" y1="90.25000000000001" y2="90.75000000000001"/>
+  <line stroke="#888888" x1="22.916666666666668" x2="11.08333333333333" y1="90.75000000000001" y2="90.75000000000001"/>
+  <line stroke="#888888" x1="11.08333333333333" x2="11.08333333333333" y1="90.75000000000001" y2="90.25000000000001"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="55.00000000000001" y2="59.00000000000001"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="59.00000000000001" y2="59.00000000000001"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="59.00000000000001" y2="55.00000000000001"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="55.00000000000001" y2="55.00000000000001"/>
+  <line stroke="#888888" x1="21.500000000000004" x2="21.500000000000004" y1="67.00000000000001" y2="71.00000000000001"/>
+  <line stroke="#888888" x1="21.500000000000004" x2="12.5" y1="71.00000000000001" y2="71.00000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="71.00000000000001" y2="67.00000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="21.500000000000004" y1="67.00000000000001" y2="67.00000000000001"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="30.500000000000004" y2="53.5"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="53.5" y2="53.5"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="53.5" y2="30.500000000000004"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="30.500000000000004" y2="30.500000000000004"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="25.0" y2="29.0"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="29.0" y2="29.0"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="29.0" y2="25.0"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="25.0" y2="25.0"/>
+  <line stroke="#888888" x1="22.666666666666668" x2="22.666666666666668" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="22.666666666666668" x2="11.33333333333333" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="11.33333333333333" x2="11.33333333333333" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#000000" x1="200.0" x2="164.0" y1="74.0" y2="74.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="200.0" x2="200.0" y1="74.0" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="164.0" x2="200.0" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="200.0" x2="245.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="245.00000000000003" x2="200.0" y1="74.0" y2="74.0"/>
+  <line stroke="#000000" x1="245.00000000000003" x2="245.00000000000003" y1="98.00000000000001" y2="74.0"/>
+  <line stroke="#000000" x1="130.0" x2="130.0" y1="74.0" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="164.0" x2="130.0" y1="74.0" y2="74.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="164.0" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="130.0" x2="130.0" y1="98.00000000000001" y2="118.00000000000001"/>
+  <line stroke="#000000" x1="164.0" x2="164.0" y1="118.00000000000001" y2="98.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="164.0" y1="118.00000000000001" y2="118.00000000000001"/>
+  <line stroke="#000000" x1="130.0" x2="130.0" y1="118.00000000000001" y2="142.00000000000003"/>
+  <line stroke="#000000" x1="164.0" x2="164.0" y1="142.00000000000003" y2="118.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="164.0" y1="142.00000000000003" y2="142.00000000000003"/>
+  <line stroke="#000000" x1="130.0" x2="130.0" y1="142.00000000000003" y2="162.00000000000003"/>
+  <line stroke="#000000" x1="164.0" x2="164.0" y1="162.00000000000003" y2="142.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="164.0" x2="130.0" y1="162.00000000000003" y2="162.00000000000003"/>
+  <line stroke="#000000" x1="164.0" x2="164.0" y1="172.00000000000003" y2="162.00000000000003"/>
+  <line stroke="#000000" x1="130.0" x2="164.0" y1="172.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#000000" x1="130.0" x2="130.0" y1="162.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#888888" x1="241.00000000000003" x2="241.00000000000003" y1="90.25000000000001" y2="81.75"/>
+  <line stroke="#888888" x1="241.00000000000003" x2="241.50000000000003" y1="81.75" y2="81.75"/>
+  <line stroke="#888888" x1="241.50000000000003" x2="241.50000000000003" y1="81.75" y2="90.25000000000001"/>
+  <line stroke="#888888" x1="241.50000000000003" x2="241.00000000000003" y1="90.25000000000001" y2="90.25000000000001"/>
+  <line stroke="#888888" x1="152.91666666666669" x2="141.08333333333334" y1="81.75" y2="81.75"/>
+  <line stroke="#888888" x1="141.08333333333334" x2="141.08333333333334" y1="81.75" y2="81.25000000000001"/>
+  <line stroke="#888888" x1="141.08333333333334" x2="152.91666666666669" y1="81.25000000000001" y2="81.25000000000001"/>
+  <line stroke="#888888" x1="152.91666666666669" x2="152.91666666666669" y1="81.25000000000001" y2="81.75"/>
+  <line stroke="#888888" x1="141.0" x2="141.0" y1="117.00000000000001" y2="113.00000000000001"/>
+  <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="113.00000000000001" y2="113.00000000000001"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="113.00000000000001" y2="117.00000000000001"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="117.00000000000001" y2="117.00000000000001"/>
+  <line stroke="#888888" x1="142.50000000000003" x2="142.50000000000003" y1="105.00000000000001" y2="101.00000000000001"/>
+  <line stroke="#888888" x1="142.50000000000003" x2="151.50000000000003" y1="101.00000000000001" y2="101.00000000000001"/>
+  <line stroke="#888888" x1="151.50000000000003" x2="151.50000000000003" y1="101.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#888888" x1="151.50000000000003" x2="142.50000000000003" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#888888" x1="141.0" x2="141.0" y1="141.5" y2="118.50000000000001"/>
+  <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="118.50000000000001" y2="118.50000000000001"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="118.50000000000001" y2="141.5"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="141.5" y2="141.5"/>
+  <line stroke="#888888" x1="141.0" x2="141.0" y1="147.00000000000003" y2="143.0"/>
+  <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="143.0" y2="143.0"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="143.0" y2="147.00000000000003"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="147.00000000000003" y2="147.00000000000003"/>
+  <line stroke="#888888" x1="141.33333333333334" x2="141.33333333333334" y1="169.50000000000003" y2="164.50000000000003"/>
+  <line stroke="#888888" x1="141.33333333333334" x2="152.66666666666666" y1="164.50000000000003" y2="164.50000000000003"/>
+  <line stroke="#888888" x1="152.66666666666666" x2="152.66666666666666" y1="164.50000000000003" y2="169.50000000000003"/>
+</svg>
diff --git a/rocolib/builders/output/DoubleServoMount/graph-autofold-default.dxf b/rocolib/builders/output/DoubleServoMount/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..e5f04d7ab57ec36438b2f8c35325fe976456952e
--- /dev/null
+++ b/rocolib/builders/output/DoubleServoMount/graph-autofold-default.dxf
@@ -0,0 +1,2774 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+8
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+74.0
+ 30
+0.0
+ 11
+34.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+70.00000000000001
+ 20
+74.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+74.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+120.00000000000001
+ 20
+74.0
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+120.00000000000001
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+120.00000000000001
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+120.00000000000001
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+34.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+74.0
+ 30
+0.0
+ 11
+0.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+34.0
+ 20
+74.0
+ 30
+0.0
+ 11
+0.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.0
+ 20
+74.0
+ 30
+0.0
+ 11
+34.0
+ 21
+54.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+54.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+34.0
+ 20
+54.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+54.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.0
+ 20
+54.00000000000001
+ 30
+0.0
+ 11
+34.0
+ 21
+30.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+30.000000000000004
+ 30
+0.0
+ 11
+0.0
+ 21
+54.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+34.0
+ 20
+30.000000000000004
+ 30
+0.0
+ 11
+0.0
+ 21
+30.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.0
+ 20
+30.000000000000004
+ 30
+0.0
+ 11
+34.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+0.0
+ 21
+30.000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+0.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+34.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.0
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+34.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.75000000000001
+ 20
+90.0
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+92.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.75000000000001
+ 20
+92.50000000000001
+ 30
+0.0
+ 11
+116.25000000000001
+ 21
+90.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.25000000000001
+ 20
+90.0
+ 30
+0.0
+ 11
+116.25000000000001
+ 21
+82.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.25000000000001
+ 20
+82.0
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+79.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.75000000000001
+ 20
+79.5
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+82.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.08333333333333
+ 20
+90.25000000000001
+ 30
+0.0
+ 11
+22.916666666666668
+ 21
+90.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+22.916666666666668
+ 20
+90.25000000000001
+ 30
+0.0
+ 11
+22.916666666666668
+ 21
+90.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+22.916666666666668
+ 20
+90.75000000000001
+ 30
+0.0
+ 11
+11.08333333333333
+ 21
+90.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.08333333333333
+ 20
+90.75000000000001
+ 30
+0.0
+ 11
+11.08333333333333
+ 21
+90.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+23.000000000000004
+ 20
+55.00000000000001
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+59.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+23.000000000000004
+ 20
+59.00000000000001
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+59.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.000000000000002
+ 20
+59.00000000000001
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+55.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.000000000000002
+ 20
+55.00000000000001
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+55.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.500000000000004
+ 20
+67.00000000000001
+ 30
+0.0
+ 11
+21.500000000000004
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.500000000000004
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+67.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+67.00000000000001
+ 30
+0.0
+ 11
+21.500000000000004
+ 21
+67.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+23.000000000000004
+ 20
+30.500000000000004
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+53.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+23.000000000000004
+ 20
+53.5
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+53.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.000000000000002
+ 20
+53.5
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+30.500000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.000000000000002
+ 20
+30.500000000000004
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+30.500000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+23.000000000000004
+ 20
+25.0
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+29.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+23.000000000000004
+ 20
+29.0
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+29.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.000000000000002
+ 20
+29.0
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+25.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.000000000000002
+ 20
+25.0
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+25.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+22.666666666666668
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+22.666666666666668
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+22.666666666666668
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+11.33333333333333
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.33333333333333
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+11.33333333333333
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+200.0
+ 20
+74.0
+ 30
+0.0
+ 11
+164.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+200.0
+ 20
+74.0
+ 30
+0.0
+ 11
+200.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+200.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+200.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+245.00000000000003
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+245.00000000000003
+ 20
+74.0
+ 30
+0.0
+ 11
+200.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+245.00000000000003
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+245.00000000000003
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.0
+ 20
+74.0
+ 30
+0.0
+ 11
+130.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.0
+ 20
+74.0
+ 30
+0.0
+ 11
+130.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+130.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+164.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+130.0
+ 21
+118.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.0
+ 20
+118.00000000000001
+ 30
+0.0
+ 11
+164.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+130.0
+ 20
+118.00000000000001
+ 30
+0.0
+ 11
+164.0
+ 21
+118.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.0
+ 20
+118.00000000000001
+ 30
+0.0
+ 11
+130.0
+ 21
+142.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.0
+ 20
+142.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+118.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+130.0
+ 20
+142.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+142.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.0
+ 20
+142.00000000000003
+ 30
+0.0
+ 11
+130.0
+ 21
+162.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.0
+ 20
+162.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+142.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+164.0
+ 20
+162.00000000000003
+ 30
+0.0
+ 11
+130.0
+ 21
+162.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.0
+ 20
+172.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+162.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.0
+ 20
+172.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+172.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.0
+ 20
+162.00000000000003
+ 30
+0.0
+ 11
+130.0
+ 21
+172.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+241.00000000000003
+ 20
+90.25000000000001
+ 30
+0.0
+ 11
+241.00000000000003
+ 21
+81.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+241.00000000000003
+ 20
+81.75
+ 30
+0.0
+ 11
+241.50000000000003
+ 21
+81.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+241.50000000000003
+ 20
+81.75
+ 30
+0.0
+ 11
+241.50000000000003
+ 21
+90.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+241.50000000000003
+ 20
+90.25000000000001
+ 30
+0.0
+ 11
+241.00000000000003
+ 21
+90.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.91666666666669
+ 20
+81.75
+ 30
+0.0
+ 11
+141.08333333333334
+ 21
+81.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.08333333333334
+ 20
+81.75
+ 30
+0.0
+ 11
+141.08333333333334
+ 21
+81.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.08333333333334
+ 20
+81.25000000000001
+ 30
+0.0
+ 11
+152.91666666666669
+ 21
+81.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.91666666666669
+ 20
+81.25000000000001
+ 30
+0.0
+ 11
+152.91666666666669
+ 21
+81.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.0
+ 20
+117.00000000000001
+ 30
+0.0
+ 11
+141.0
+ 21
+113.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.0
+ 20
+113.00000000000001
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+113.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.00000000000003
+ 20
+113.00000000000001
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+117.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.00000000000003
+ 20
+117.00000000000001
+ 30
+0.0
+ 11
+141.0
+ 21
+117.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.50000000000003
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+142.50000000000003
+ 21
+101.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.50000000000003
+ 20
+101.00000000000001
+ 30
+0.0
+ 11
+151.50000000000003
+ 21
+101.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.50000000000003
+ 20
+101.00000000000001
+ 30
+0.0
+ 11
+151.50000000000003
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.50000000000003
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+142.50000000000003
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.0
+ 20
+141.5
+ 30
+0.0
+ 11
+141.0
+ 21
+118.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.0
+ 20
+118.50000000000001
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+118.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.00000000000003
+ 20
+118.50000000000001
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+141.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.00000000000003
+ 20
+141.5
+ 30
+0.0
+ 11
+141.0
+ 21
+141.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.0
+ 20
+147.00000000000003
+ 30
+0.0
+ 11
+141.0
+ 21
+143.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.0
+ 20
+143.0
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+143.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.00000000000003
+ 20
+143.0
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+147.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.00000000000003
+ 20
+147.00000000000003
+ 30
+0.0
+ 11
+141.0
+ 21
+147.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.33333333333334
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+141.33333333333334
+ 21
+164.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.33333333333334
+ 20
+164.50000000000003
+ 30
+0.0
+ 11
+152.66666666666666
+ 21
+164.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.66666666666666
+ 20
+164.50000000000003
+ 30
+0.0
+ 11
+152.66666666666666
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/DoubleServoMount/graph-autofold-graph.dxf b/rocolib/builders/output/DoubleServoMount/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..8fd79cba12e47f4ed73c32c715b6fb226d5c0417
--- /dev/null
+++ b/rocolib/builders/output/DoubleServoMount/graph-autofold-graph.dxf
@@ -0,0 +1,2744 @@
+  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
+70.00000000000001
+ 20
+74.0
+ 30
+0.0
+ 11
+34.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+70.00000000000001
+ 20
+74.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+74.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.00000000000001
+ 20
+74.0
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.00000000000001
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+120.00000000000001
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+120.00000000000001
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+34.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+74.0
+ 30
+0.0
+ 11
+0.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+34.0
+ 20
+74.0
+ 30
+0.0
+ 11
+0.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+74.0
+ 30
+0.0
+ 11
+34.0
+ 21
+54.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+54.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+34.0
+ 20
+54.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+54.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+54.00000000000001
+ 30
+0.0
+ 11
+34.0
+ 21
+30.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+30.000000000000004
+ 30
+0.0
+ 11
+0.0
+ 21
+54.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+34.0
+ 20
+30.000000000000004
+ 30
+0.0
+ 11
+0.0
+ 21
+30.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+30.000000000000004
+ 30
+0.0
+ 11
+34.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+0.0
+ 21
+30.000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+0.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+34.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+34.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+90.0
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+92.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+92.50000000000001
+ 30
+0.0
+ 11
+116.25000000000001
+ 21
+90.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.25000000000001
+ 20
+90.0
+ 30
+0.0
+ 11
+116.25000000000001
+ 21
+82.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.25000000000001
+ 20
+82.0
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+79.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+79.5
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+82.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.08333333333333
+ 20
+90.25000000000001
+ 30
+0.0
+ 11
+22.916666666666668
+ 21
+90.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.916666666666668
+ 20
+90.25000000000001
+ 30
+0.0
+ 11
+22.916666666666668
+ 21
+90.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.916666666666668
+ 20
+90.75000000000001
+ 30
+0.0
+ 11
+11.08333333333333
+ 21
+90.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.08333333333333
+ 20
+90.75000000000001
+ 30
+0.0
+ 11
+11.08333333333333
+ 21
+90.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000004
+ 20
+55.00000000000001
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+59.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000004
+ 20
+59.00000000000001
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+59.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+59.00000000000001
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+55.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+55.00000000000001
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+55.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.500000000000004
+ 20
+67.00000000000001
+ 30
+0.0
+ 11
+21.500000000000004
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.500000000000004
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+67.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+67.00000000000001
+ 30
+0.0
+ 11
+21.500000000000004
+ 21
+67.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000004
+ 20
+30.500000000000004
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+53.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000004
+ 20
+53.5
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+53.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+53.5
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+30.500000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+30.500000000000004
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+30.500000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000004
+ 20
+25.0
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+29.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000004
+ 20
+29.0
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+29.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+29.0
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+25.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+25.0
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+25.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.666666666666668
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+22.666666666666668
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.666666666666668
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+11.33333333333333
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.33333333333333
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+11.33333333333333
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.0
+ 20
+74.0
+ 30
+0.0
+ 11
+164.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+200.0
+ 20
+74.0
+ 30
+0.0
+ 11
+200.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+200.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+245.00000000000003
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.00000000000003
+ 20
+74.0
+ 30
+0.0
+ 11
+200.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.00000000000003
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+245.00000000000003
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+74.0
+ 30
+0.0
+ 11
+130.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.0
+ 20
+74.0
+ 30
+0.0
+ 11
+130.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+130.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+164.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+130.0
+ 21
+118.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.0
+ 20
+118.00000000000001
+ 30
+0.0
+ 11
+164.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+130.0
+ 20
+118.00000000000001
+ 30
+0.0
+ 11
+164.0
+ 21
+118.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+118.00000000000001
+ 30
+0.0
+ 11
+130.0
+ 21
+142.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.0
+ 20
+142.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+118.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+130.0
+ 20
+142.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+142.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+142.00000000000003
+ 30
+0.0
+ 11
+130.0
+ 21
+162.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.0
+ 20
+162.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+142.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+164.0
+ 20
+162.00000000000003
+ 30
+0.0
+ 11
+130.0
+ 21
+162.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.0
+ 20
+172.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+162.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+172.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+172.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+162.00000000000003
+ 30
+0.0
+ 11
+130.0
+ 21
+172.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.00000000000003
+ 20
+90.25000000000001
+ 30
+0.0
+ 11
+241.00000000000003
+ 21
+81.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.00000000000003
+ 20
+81.75
+ 30
+0.0
+ 11
+241.50000000000003
+ 21
+81.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.50000000000003
+ 20
+81.75
+ 30
+0.0
+ 11
+241.50000000000003
+ 21
+90.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.50000000000003
+ 20
+90.25000000000001
+ 30
+0.0
+ 11
+241.00000000000003
+ 21
+90.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.91666666666669
+ 20
+81.75
+ 30
+0.0
+ 11
+141.08333333333334
+ 21
+81.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.08333333333334
+ 20
+81.75
+ 30
+0.0
+ 11
+141.08333333333334
+ 21
+81.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.08333333333334
+ 20
+81.25000000000001
+ 30
+0.0
+ 11
+152.91666666666669
+ 21
+81.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.91666666666669
+ 20
+81.25000000000001
+ 30
+0.0
+ 11
+152.91666666666669
+ 21
+81.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.0
+ 20
+117.00000000000001
+ 30
+0.0
+ 11
+141.0
+ 21
+113.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.0
+ 20
+113.00000000000001
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+113.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.00000000000003
+ 20
+113.00000000000001
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+117.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.00000000000003
+ 20
+117.00000000000001
+ 30
+0.0
+ 11
+141.0
+ 21
+117.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.50000000000003
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+142.50000000000003
+ 21
+101.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.50000000000003
+ 20
+101.00000000000001
+ 30
+0.0
+ 11
+151.50000000000003
+ 21
+101.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.50000000000003
+ 20
+101.00000000000001
+ 30
+0.0
+ 11
+151.50000000000003
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.50000000000003
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+142.50000000000003
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.0
+ 20
+141.5
+ 30
+0.0
+ 11
+141.0
+ 21
+118.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.0
+ 20
+118.50000000000001
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+118.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.00000000000003
+ 20
+118.50000000000001
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+141.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.00000000000003
+ 20
+141.5
+ 30
+0.0
+ 11
+141.0
+ 21
+141.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.0
+ 20
+147.00000000000003
+ 30
+0.0
+ 11
+141.0
+ 21
+143.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.0
+ 20
+143.0
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+143.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.00000000000003
+ 20
+143.0
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+147.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.00000000000003
+ 20
+147.00000000000003
+ 30
+0.0
+ 11
+141.0
+ 21
+147.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.33333333333334
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+141.33333333333334
+ 21
+164.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.33333333333334
+ 20
+164.50000000000003
+ 30
+0.0
+ 11
+152.66666666666666
+ 21
+164.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.66666666666666
+ 20
+164.50000000000003
+ 30
+0.0
+ 11
+152.66666666666666
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/DoubleServoMount/graph-lasercutter.svg b/rocolib/builders/output/DoubleServoMount/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3794729b567dbf4100e3e07ae885b52b31ce3445
--- /dev/null
+++ b/rocolib/builders/output/DoubleServoMount/graph-lasercutter.svg
@@ -0,0 +1,103 @@
+<?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="172.000000mm" version="1.1" viewBox="0.000000 0.000000 245.000000 172.000000" width="245.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="74.0" y2="74.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="74.0" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="115.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="70.00000000000001" y1="74.0" y2="74.0"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="115.00000000000001" y1="74.0" y2="74.0"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="98.00000000000001" y2="74.0"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="120.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="0.0" x2="34.0" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="74.0" y2="98.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="0.0" y1="74.0" y2="74.0"/>
+  <line stroke="#000000" x1="34.0" x2="34.0" y1="74.0" y2="54.00000000000001"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="54.00000000000001" y2="74.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="0.0" y1="54.00000000000001" y2="54.00000000000001"/>
+  <line stroke="#000000" x1="34.0" x2="34.0" y1="54.00000000000001" y2="30.000000000000004"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="30.000000000000004" y2="54.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="0.0" y1="30.000000000000004" y2="30.000000000000004"/>
+  <line stroke="#000000" x1="34.0" x2="34.0" y1="30.000000000000004" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="10.000000000000002" y2="30.000000000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="34.0" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="34.0" x2="0.0" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="34.0" x2="34.0" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="90.0" y2="92.50000000000001"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="116.25000000000001" y1="92.50000000000001" y2="90.0"/>
+  <line stroke="#888888" x1="116.25000000000001" x2="116.25000000000001" y1="90.0" y2="82.0"/>
+  <line stroke="#888888" x1="116.25000000000001" x2="118.75000000000001" y1="82.0" y2="79.5"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="79.5" y2="82.0"/>
+  <line stroke="#888888" x1="11.08333333333333" x2="22.916666666666668" y1="90.25000000000001" y2="90.25000000000001"/>
+  <line stroke="#888888" x1="22.916666666666668" x2="22.916666666666668" y1="90.25000000000001" y2="90.75000000000001"/>
+  <line stroke="#888888" x1="22.916666666666668" x2="11.08333333333333" y1="90.75000000000001" y2="90.75000000000001"/>
+  <line stroke="#888888" x1="11.08333333333333" x2="11.08333333333333" y1="90.75000000000001" y2="90.25000000000001"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="55.00000000000001" y2="59.00000000000001"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="59.00000000000001" y2="59.00000000000001"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="59.00000000000001" y2="55.00000000000001"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="55.00000000000001" y2="55.00000000000001"/>
+  <line stroke="#888888" x1="21.500000000000004" x2="21.500000000000004" y1="67.00000000000001" y2="71.00000000000001"/>
+  <line stroke="#888888" x1="21.500000000000004" x2="12.5" y1="71.00000000000001" y2="71.00000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="71.00000000000001" y2="67.00000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="21.500000000000004" y1="67.00000000000001" y2="67.00000000000001"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="30.500000000000004" y2="53.5"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="53.5" y2="53.5"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="53.5" y2="30.500000000000004"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="30.500000000000004" y2="30.500000000000004"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="25.0" y2="29.0"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="29.0" y2="29.0"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="29.0" y2="25.0"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="25.0" y2="25.0"/>
+  <line stroke="#888888" x1="22.666666666666668" x2="22.666666666666668" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="22.666666666666668" x2="11.33333333333333" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="11.33333333333333" x2="11.33333333333333" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#000000" x1="200.0" x2="164.0" y1="74.0" y2="74.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.0" x2="200.0" y1="74.0" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="164.0" x2="200.0" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="200.0" x2="245.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="245.00000000000003" x2="200.0" y1="74.0" y2="74.0"/>
+  <line stroke="#000000" x1="245.00000000000003" x2="245.00000000000003" y1="98.00000000000001" y2="74.0"/>
+  <line stroke="#000000" x1="130.0" x2="130.0" y1="74.0" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="164.0" x2="130.0" y1="74.0" y2="74.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="164.0" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="130.0" x2="130.0" y1="98.00000000000001" y2="118.00000000000001"/>
+  <line stroke="#000000" x1="164.0" x2="164.0" y1="118.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="164.0" y1="118.00000000000001" y2="118.00000000000001"/>
+  <line stroke="#000000" x1="130.0" x2="130.0" y1="118.00000000000001" y2="142.00000000000003"/>
+  <line stroke="#000000" x1="164.0" x2="164.0" y1="142.00000000000003" y2="118.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="164.0" y1="142.00000000000003" y2="142.00000000000003"/>
+  <line stroke="#000000" x1="130.0" x2="130.0" y1="142.00000000000003" y2="162.00000000000003"/>
+  <line stroke="#000000" x1="164.0" x2="164.0" y1="162.00000000000003" y2="142.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="164.0" x2="130.0" y1="162.00000000000003" y2="162.00000000000003"/>
+  <line stroke="#000000" x1="164.0" x2="164.0" y1="172.00000000000003" y2="162.00000000000003"/>
+  <line stroke="#000000" x1="130.0" x2="164.0" y1="172.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#000000" x1="130.0" x2="130.0" y1="162.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#888888" x1="241.00000000000003" x2="241.00000000000003" y1="90.25000000000001" y2="81.75"/>
+  <line stroke="#888888" x1="241.00000000000003" x2="241.50000000000003" y1="81.75" y2="81.75"/>
+  <line stroke="#888888" x1="241.50000000000003" x2="241.50000000000003" y1="81.75" y2="90.25000000000001"/>
+  <line stroke="#888888" x1="241.50000000000003" x2="241.00000000000003" y1="90.25000000000001" y2="90.25000000000001"/>
+  <line stroke="#888888" x1="152.91666666666669" x2="141.08333333333334" y1="81.75" y2="81.75"/>
+  <line stroke="#888888" x1="141.08333333333334" x2="141.08333333333334" y1="81.75" y2="81.25000000000001"/>
+  <line stroke="#888888" x1="141.08333333333334" x2="152.91666666666669" y1="81.25000000000001" y2="81.25000000000001"/>
+  <line stroke="#888888" x1="152.91666666666669" x2="152.91666666666669" y1="81.25000000000001" y2="81.75"/>
+  <line stroke="#888888" x1="141.0" x2="141.0" y1="117.00000000000001" y2="113.00000000000001"/>
+  <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="113.00000000000001" y2="113.00000000000001"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="113.00000000000001" y2="117.00000000000001"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="117.00000000000001" y2="117.00000000000001"/>
+  <line stroke="#888888" x1="142.50000000000003" x2="142.50000000000003" y1="105.00000000000001" y2="101.00000000000001"/>
+  <line stroke="#888888" x1="142.50000000000003" x2="151.50000000000003" y1="101.00000000000001" y2="101.00000000000001"/>
+  <line stroke="#888888" x1="151.50000000000003" x2="151.50000000000003" y1="101.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#888888" x1="151.50000000000003" x2="142.50000000000003" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#888888" x1="141.0" x2="141.0" y1="141.5" y2="118.50000000000001"/>
+  <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="118.50000000000001" y2="118.50000000000001"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="118.50000000000001" y2="141.5"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="141.5" y2="141.5"/>
+  <line stroke="#888888" x1="141.0" x2="141.0" y1="147.00000000000003" y2="143.0"/>
+  <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="143.0" y2="143.0"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="143.0" y2="147.00000000000003"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="147.00000000000003" y2="147.00000000000003"/>
+  <line stroke="#888888" x1="141.33333333333334" x2="141.33333333333334" y1="169.50000000000003" y2="164.50000000000003"/>
+  <line stroke="#888888" x1="141.33333333333334" x2="152.66666666666666" y1="164.50000000000003" y2="164.50000000000003"/>
+  <line stroke="#888888" x1="152.66666666666666" x2="152.66666666666666" y1="164.50000000000003" y2="169.50000000000003"/>
+</svg>
diff --git a/rocolib/builders/output/DoubleServoMount/graph-model.png b/rocolib/builders/output/DoubleServoMount/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..56b95822715cbccd896b021622a638370e24b846
Binary files /dev/null and b/rocolib/builders/output/DoubleServoMount/graph-model.png differ
diff --git a/rocolib/builders/output/DoubleServoMount/graph-model.stl b/rocolib/builders/output/DoubleServoMount/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..52b0d166641aed4d427b35c2f9800f7c885e16d5
--- /dev/null
+++ b/rocolib/builders/output/DoubleServoMount/graph-model.stl
@@ -0,0 +1,548 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 0.0000
+vertex -0.0180 -0.0120 0.0000
+vertex 0.0180 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0120 0.0000
+vertex 0.0180 0.0120 0.0000
+vertex -0.0180 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 0.0000
+vertex -0.0180 -0.0120 0.0000
+vertex 0.0180 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0120 0.0000
+vertex 0.0180 0.0120 0.0000
+vertex -0.0180 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0120 0.0450
+vertex 0.0180 0.0120 0.0450
+vertex 0.0180 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0120 0.0000
+vertex 0.0180 -0.0120 0.0000
+vertex 0.0180 -0.0120 0.0450
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 -0.0000
+vertex -0.0290 0.0120 -0.0150
+vertex -0.0410 0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 0.0120 -0.0150
+vertex -0.0180 0.0120 -0.0000
+vertex -0.0180 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 -0.0000
+vertex -0.0410 0.0120 -0.0150
+vertex -0.0520 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 0.0120 -0.0150
+vertex -0.0520 0.0120 -0.0000
+vertex -0.0180 0.0120 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 0.0120 -0.0190
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0520 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0290 0.0120 -0.0190
+vertex -0.0290 0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 0.0120 -0.0190
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0410 0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0410 0.0120 -0.0190
+vertex -0.0290 0.0120 -0.0190
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0290 0.0115 -0.0200
+vertex -0.0410 0.0115 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 0.0115 -0.0200
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0180 -0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0410 0.0115 -0.0200
+vertex -0.0410 -0.0115 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 0.0115 -0.0200
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0180 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 -0.0115 -0.0200
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0520 -0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0290 -0.0115 -0.0200
+vertex -0.0290 0.0115 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 -0.0115 -0.0200
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0520 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0410 -0.0115 -0.0200
+vertex -0.0290 -0.0115 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0290 -0.0120 -0.0150
+vertex -0.0290 -0.0120 -0.0190
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 -0.0120 -0.0150
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0180 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0290 -0.0120 -0.0190
+vertex -0.0410 -0.0120 -0.0190
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0410 -0.0120 -0.0190
+vertex -0.0410 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 -0.0120 -0.0190
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0180 -0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0410 -0.0120 -0.0150
+vertex -0.0520 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 -0.0120 -0.0150
+vertex -0.0305 -0.0120 -0.0070
+vertex -0.0410 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0120 -0.0070
+vertex -0.0180 -0.0120 0.0000
+vertex -0.0305 -0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 0.0000
+vertex -0.0305 -0.0120 -0.0070
+vertex -0.0290 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0120 -0.0030
+vertex -0.0180 -0.0120 0.0000
+vertex -0.0520 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0395 -0.0120 -0.0070
+vertex -0.0395 -0.0120 -0.0030
+vertex -0.0520 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 0.0000
+vertex -0.0395 -0.0120 -0.0030
+vertex -0.0305 -0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0395 -0.0120 -0.0070
+vertex -0.0520 -0.0120 0.0000
+vertex -0.0410 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0120 -0.0070
+vertex -0.0395 -0.0120 -0.0070
+vertex -0.0410 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 0.0000
+vertex -0.0180 -0.0120 0.0000
+vertex -0.0180 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 0.0000
+vertex -0.0520 0.0120 0.0000
+vertex -0.0520 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 -0.0000
+vertex -0.0410 -0.0120 -0.0150
+vertex -0.0290 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 -0.0120 -0.0150
+vertex -0.0520 -0.0120 -0.0000
+vertex -0.0520 -0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 -0.0000
+vertex -0.0290 -0.0120 -0.0150
+vertex -0.0180 -0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 -0.0120 -0.0150
+vertex -0.0180 -0.0120 -0.0000
+vertex -0.0520 -0.0120 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 -0.0120 -0.0190
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0180 -0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0410 -0.0120 -0.0190
+vertex -0.0410 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 -0.0120 -0.0190
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0290 -0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0290 -0.0120 -0.0190
+vertex -0.0410 -0.0120 -0.0190
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0410 -0.0115 -0.0200
+vertex -0.0290 -0.0115 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 -0.0115 -0.0200
+vertex -0.0520 -0.0120 -0.0200
+vertex -0.0520 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0290 -0.0115 -0.0200
+vertex -0.0290 0.0115 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 -0.0115 -0.0200
+vertex -0.0180 -0.0120 -0.0200
+vertex -0.0520 -0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 0.0115 -0.0200
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0180 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0410 0.0115 -0.0200
+vertex -0.0410 -0.0115 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 0.0115 -0.0200
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0180 -0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0290 0.0115 -0.0200
+vertex -0.0410 0.0115 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0410 0.0120 -0.0150
+vertex -0.0410 0.0120 -0.0190
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 0.0120 -0.0150
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0520 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 -0.0200
+vertex -0.0410 0.0120 -0.0190
+vertex -0.0290 0.0120 -0.0190
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0290 0.0120 -0.0190
+vertex -0.0290 0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 0.0120 -0.0190
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0520 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 -0.0200
+vertex -0.0290 0.0120 -0.0150
+vertex -0.0180 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0410 0.0120 -0.0150
+vertex -0.0395 0.0120 -0.0070
+vertex -0.0290 0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0395 0.0120 -0.0070
+vertex -0.0520 0.0120 0.0000
+vertex -0.0395 0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 0.0000
+vertex -0.0395 0.0120 -0.0070
+vertex -0.0410 0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0395 0.0120 -0.0030
+vertex -0.0520 0.0120 0.0000
+vertex -0.0180 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 0.0120 -0.0070
+vertex -0.0305 0.0120 -0.0030
+vertex -0.0180 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 0.0000
+vertex -0.0305 0.0120 -0.0030
+vertex -0.0395 0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 0.0120 -0.0070
+vertex -0.0180 0.0120 0.0000
+vertex -0.0290 0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0395 0.0120 -0.0070
+vertex -0.0305 0.0120 -0.0070
+vertex -0.0290 0.0120 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0120 0.0000
+vertex -0.0520 0.0120 0.0000
+vertex -0.0520 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0120 0.0000
+vertex -0.0180 -0.0120 0.0000
+vertex -0.0180 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0120 0.0450
+vertex 0.0180 0.0120 0.0450
+vertex 0.0180 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0120 0.0000
+vertex 0.0180 -0.0120 0.0000
+vertex 0.0180 -0.0120 0.0450
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 0.0020 -0.0000
+vertex -0.0180 0.0120 -0.0000
+vertex -0.0520 0.0120 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 0.0120 -0.0000
+vertex -0.0520 0.0020 -0.0000
+vertex -0.0180 0.0020 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0520 -0.0020 -0.0000
+vertex -0.0520 -0.0120 -0.0000
+vertex -0.0180 -0.0120 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0180 -0.0120 -0.0000
+vertex -0.0180 -0.0020 -0.0000
+vertex -0.0520 -0.0020 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 0.0120 0.0500
+vertex 0.0180 0.0120 0.0450
+vertex 0.0180 -0.0120 0.0450
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0180 -0.0120 0.0450
+vertex 0.0180 -0.0120 0.0500
+vertex 0.0180 0.0120 0.0500
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/builders/output/DoubleServoMount/graph-silhouette.dxf b/rocolib/builders/output/DoubleServoMount/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..d54091a997c370880e903fa20443013b446433f2
--- /dev/null
+++ b/rocolib/builders/output/DoubleServoMount/graph-silhouette.dxf
@@ -0,0 +1,2744 @@
+  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
+70.00000000000001
+ 20
+74.0
+ 30
+0.0
+ 11
+34.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+70.00000000000001
+ 20
+74.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+74.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.00000000000001
+ 20
+74.0
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.00000000000001
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+120.00000000000001
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+120.00000000000001
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+34.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+74.0
+ 30
+0.0
+ 11
+0.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+34.0
+ 20
+74.0
+ 30
+0.0
+ 11
+0.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+74.0
+ 30
+0.0
+ 11
+34.0
+ 21
+54.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+54.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+34.0
+ 20
+54.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+54.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+54.00000000000001
+ 30
+0.0
+ 11
+34.0
+ 21
+30.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+30.000000000000004
+ 30
+0.0
+ 11
+0.0
+ 21
+54.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+34.0
+ 20
+30.000000000000004
+ 30
+0.0
+ 11
+0.0
+ 21
+30.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+30.000000000000004
+ 30
+0.0
+ 11
+34.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+0.0
+ 21
+30.000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+0.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+34.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+34.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+90.0
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+92.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+92.50000000000001
+ 30
+0.0
+ 11
+116.25000000000001
+ 21
+90.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.25000000000001
+ 20
+90.0
+ 30
+0.0
+ 11
+116.25000000000001
+ 21
+82.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.25000000000001
+ 20
+82.0
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+79.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+79.5
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+82.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.08333333333333
+ 20
+90.25000000000001
+ 30
+0.0
+ 11
+22.916666666666668
+ 21
+90.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.916666666666668
+ 20
+90.25000000000001
+ 30
+0.0
+ 11
+22.916666666666668
+ 21
+90.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.916666666666668
+ 20
+90.75000000000001
+ 30
+0.0
+ 11
+11.08333333333333
+ 21
+90.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.08333333333333
+ 20
+90.75000000000001
+ 30
+0.0
+ 11
+11.08333333333333
+ 21
+90.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000004
+ 20
+55.00000000000001
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+59.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000004
+ 20
+59.00000000000001
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+59.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+59.00000000000001
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+55.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+55.00000000000001
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+55.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.500000000000004
+ 20
+67.00000000000001
+ 30
+0.0
+ 11
+21.500000000000004
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.500000000000004
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+71.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+71.00000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+67.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+67.00000000000001
+ 30
+0.0
+ 11
+21.500000000000004
+ 21
+67.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000004
+ 20
+30.500000000000004
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+53.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000004
+ 20
+53.5
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+53.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+53.5
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+30.500000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+30.500000000000004
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+30.500000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000004
+ 20
+25.0
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+29.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000004
+ 20
+29.0
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+29.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+29.0
+ 30
+0.0
+ 11
+11.000000000000002
+ 21
+25.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.000000000000002
+ 20
+25.0
+ 30
+0.0
+ 11
+23.000000000000004
+ 21
+25.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.666666666666668
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+22.666666666666668
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.666666666666668
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+11.33333333333333
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.33333333333333
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+11.33333333333333
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.0
+ 20
+74.0
+ 30
+0.0
+ 11
+164.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+200.0
+ 20
+74.0
+ 30
+0.0
+ 11
+200.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+200.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+245.00000000000003
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.00000000000003
+ 20
+74.0
+ 30
+0.0
+ 11
+200.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.00000000000003
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+245.00000000000003
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+74.0
+ 30
+0.0
+ 11
+130.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.0
+ 20
+74.0
+ 30
+0.0
+ 11
+130.0
+ 21
+74.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+130.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+164.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+130.0
+ 21
+118.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.0
+ 20
+118.00000000000001
+ 30
+0.0
+ 11
+164.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+130.0
+ 20
+118.00000000000001
+ 30
+0.0
+ 11
+164.0
+ 21
+118.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+118.00000000000001
+ 30
+0.0
+ 11
+130.0
+ 21
+142.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.0
+ 20
+142.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+118.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+130.0
+ 20
+142.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+142.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+142.00000000000003
+ 30
+0.0
+ 11
+130.0
+ 21
+162.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.0
+ 20
+162.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+142.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+164.0
+ 20
+162.00000000000003
+ 30
+0.0
+ 11
+130.0
+ 21
+162.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.0
+ 20
+172.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+162.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+172.00000000000003
+ 30
+0.0
+ 11
+164.0
+ 21
+172.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+162.00000000000003
+ 30
+0.0
+ 11
+130.0
+ 21
+172.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.00000000000003
+ 20
+90.25000000000001
+ 30
+0.0
+ 11
+241.00000000000003
+ 21
+81.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.00000000000003
+ 20
+81.75
+ 30
+0.0
+ 11
+241.50000000000003
+ 21
+81.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.50000000000003
+ 20
+81.75
+ 30
+0.0
+ 11
+241.50000000000003
+ 21
+90.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.50000000000003
+ 20
+90.25000000000001
+ 30
+0.0
+ 11
+241.00000000000003
+ 21
+90.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.91666666666669
+ 20
+81.75
+ 30
+0.0
+ 11
+141.08333333333334
+ 21
+81.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.08333333333334
+ 20
+81.75
+ 30
+0.0
+ 11
+141.08333333333334
+ 21
+81.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.08333333333334
+ 20
+81.25000000000001
+ 30
+0.0
+ 11
+152.91666666666669
+ 21
+81.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.91666666666669
+ 20
+81.25000000000001
+ 30
+0.0
+ 11
+152.91666666666669
+ 21
+81.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.0
+ 20
+117.00000000000001
+ 30
+0.0
+ 11
+141.0
+ 21
+113.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.0
+ 20
+113.00000000000001
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+113.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.00000000000003
+ 20
+113.00000000000001
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+117.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.00000000000003
+ 20
+117.00000000000001
+ 30
+0.0
+ 11
+141.0
+ 21
+117.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.50000000000003
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+142.50000000000003
+ 21
+101.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.50000000000003
+ 20
+101.00000000000001
+ 30
+0.0
+ 11
+151.50000000000003
+ 21
+101.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.50000000000003
+ 20
+101.00000000000001
+ 30
+0.0
+ 11
+151.50000000000003
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.50000000000003
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+142.50000000000003
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.0
+ 20
+141.5
+ 30
+0.0
+ 11
+141.0
+ 21
+118.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.0
+ 20
+118.50000000000001
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+118.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.00000000000003
+ 20
+118.50000000000001
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+141.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.00000000000003
+ 20
+141.5
+ 30
+0.0
+ 11
+141.0
+ 21
+141.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.0
+ 20
+147.00000000000003
+ 30
+0.0
+ 11
+141.0
+ 21
+143.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.0
+ 20
+143.0
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+143.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.00000000000003
+ 20
+143.0
+ 30
+0.0
+ 11
+153.00000000000003
+ 21
+147.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.00000000000003
+ 20
+147.00000000000003
+ 30
+0.0
+ 11
+141.0
+ 21
+147.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.33333333333334
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+141.33333333333334
+ 21
+164.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.33333333333334
+ 20
+164.50000000000003
+ 30
+0.0
+ 11
+152.66666666666666
+ 21
+164.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.66666666666666
+ 20
+164.50000000000003
+ 30
+0.0
+ 11
+152.66666666666666
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/DoubleServoMount/tree.png b/rocolib/builders/output/DoubleServoMount/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f1603cd1814602937a93b557a76ee3d81ec7734
Binary files /dev/null and b/rocolib/builders/output/DoubleServoMount/tree.png differ
diff --git a/rocolib/builders/output/FourWheelCar/graph-anim.svg b/rocolib/builders/output/FourWheelCar/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fe7ce79ee8ad016afe9bc04cfbf0c868cc28ffe8
--- /dev/null
+++ b/rocolib/builders/output/FourWheelCar/graph-anim.svg
@@ -0,0 +1,1059 @@
+<?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="440.000000mm" version="1.1" viewBox="0.000000 0.000000 565.333333 440.000000" width="565.333333mm">
+  <defs/>
+  <line stroke="#000000" x1="166.0" x2="142.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="166.0" x2="166.0" y1="307.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="142.00000000000003" x2="166.0" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="142.00000000000003" x2="142.00000000000003" y1="367.00000000000006" y2="307.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="202.00000000000003" x2="202.00000000000003" y1="307.00000000000006" y2="367.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="166.0" x2="179.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="179.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="166.0" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="166.0" x2="166.0" y1="307.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="166.0" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="179.00000000000003" x2="179.00000000000003" y1="266.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="166.0" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="147.00000000000003" x2="147.00000000000003" y1="307.00000000000006" y2="266.00000000000006"/>
+  <line opacity="1.0" stroke="#0000ff" x1="147.00000000000003" x2="166.0" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="147.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="134.00000000000003" x2="134.00000000000003" y1="307.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="134.00000000000003" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="134.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="266.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="115.00000000000001" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="147.00000000000003" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="106.00000000000001" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="166.0" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="106.00000000000001" x2="106.00000000000001" y1="266.00000000000006" y2="201.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="166.0" x2="166.0" y1="266.00000000000006" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="106.00000000000001" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="201.00000000000003" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="70.00000000000001" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="166.0" x2="106.00000000000001" y1="136.0" y2="136.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="166.0" x2="166.0" y1="136.0" y2="201.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="106.00000000000001" x2="106.00000000000001" y1="136.0" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="201.00000000000003" y2="136.0"/>
+  <line stroke="#000000" x1="166.0" x2="202.00000000000003" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="166.0" y1="136.0" y2="136.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="202.00000000000003" x2="179.00000000000003" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="166.0" x2="166.0" y1="136.0" y2="136.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="179.00000000000003" x2="202.00000000000003" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="136.0" y2="76.00000000000001"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="179.00000000000003" y1="76.00000000000001" y2="136.0"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="179.00000000000003" y1="66.0" y2="76.00000000000001"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="179.00000000000003" y1="66.0" y2="66.0"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="76.00000000000001" y2="66.0"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="106.00000000000001" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="70.00000000000001" y1="136.0" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="70.00000000000001" y1="136.0" y2="136.0"/>
+  <line opacity="1.0" stroke="#0000ff" x1="106.00000000000001" x2="93.00000000000001" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="106.00000000000001" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="93.00000000000001" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="106.00000000000001" x2="106.00000000000001" y1="95.00000000000001" y2="136.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="93.00000000000001" x2="93.00000000000001" y1="136.0" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="106.00000000000001" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="125.00000000000001" x2="125.00000000000001" y1="95.00000000000001" y2="136.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="125.00000000000001" y1="136.0" y2="136.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="125.00000000000001" x2="138.00000000000003" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="138.00000000000003" x2="138.00000000000003" y1="95.00000000000001" y2="136.0"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="138.00000000000003" y1="136.0" y2="136.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="125.00000000000001" x2="125.00000000000001" y1="95.00000000000001" y2="73.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="125.00000000000001" x2="138.00000000000003" y1="73.0" y2="73.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="138.00000000000003" x2="138.00000000000003" y1="95.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="112.00000000000001" x2="125.00000000000001" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="112.00000000000001" x2="112.00000000000001" y1="95.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="112.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="99.0" x2="112.00000000000001" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="99.0" x2="99.0" y1="73.0" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="112.00000000000001" x2="99.0" y1="73.0" y2="73.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="138.00000000000003" x2="125.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="138.00000000000003" x2="138.00000000000003" y1="32.00000000000001" y2="73.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="125.00000000000001" x2="125.00000000000001" y1="32.00000000000001" y2="73.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="125.00000000000001" x2="125.00000000000001" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="125.00000000000001" x2="138.00000000000003" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="138.00000000000003" x2="138.00000000000003" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="112.00000000000001" x2="125.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="112.00000000000001" x2="112.00000000000001" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="112.00000000000001" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="99.0" x2="112.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="99.0" x2="99.0" y1="10.000000000000002" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="112.00000000000001" x2="99.0" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="125.00000000000001" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="125.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="138.00000000000003" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="151.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="151.00000000000003" x2="138.00000000000003" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="151.00000000000003" x2="151.00000000000003" y1="10.000000000000002" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="161.00000000000003" x2="151.00000000000003" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="161.00000000000003" x2="161.00000000000003" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="151.00000000000003" x2="161.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="157.0" x2="138.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="157.0" x2="157.0" y1="73.0" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="157.0" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="106.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="125.00000000000001" y1="73.0" y2="73.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="106.00000000000001" x2="106.00000000000001" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="93.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="106.00000000000001" y1="73.0" y2="73.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="93.00000000000001" x2="93.00000000000001" y1="73.0" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="83.0" x2="93.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="83.0" x2="83.0" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="83.0" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="151.00000000000003" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="151.00000000000003" x2="138.00000000000003" y1="73.0" y2="73.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="151.00000000000003" x2="151.00000000000003" y1="73.0" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="161.00000000000003" x2="151.00000000000003" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="161.00000000000003" x2="161.00000000000003" y1="95.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="151.00000000000003" x2="161.00000000000003" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="157.0" x2="138.00000000000003" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="157.0" x2="157.0" y1="136.0" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="157.0" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="83.0" x2="93.00000000000001" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="83.0" x2="83.0" y1="95.00000000000001" y2="136.0"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="83.0" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="10.000000000000002" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="70.00000000000001" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="201.00000000000003" y2="136.0"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="136.0" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="166.0" x2="202.00000000000003" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="166.0" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="202.00000000000003" x2="202.00000000000003" y1="266.00000000000006" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="262.0" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="262.0" x2="262.0" y1="201.00000000000003" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="188.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="262.0" x2="202.00000000000003" y1="188.00000000000003" y2="188.00000000000003"/>
+  <line stroke="#000000" x1="262.0" x2="262.0" y1="201.00000000000003" y2="188.00000000000003"/>
+  <line stroke="#000000" x1="272.0" x2="262.0" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="272.0" x2="272.0" y1="266.00000000000006" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="262.0" x2="272.0" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="189.0" x2="179.00000000000003" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="189.0" x2="189.0" y1="307.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="189.0" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="226.00000000000003" x2="202.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="226.00000000000003" x2="226.00000000000003" y1="307.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="226.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="262.0" x2="226.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="262.0" x2="262.0" y1="367.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="226.00000000000003" x2="262.0" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="202.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="179.00000000000003" x2="166.0" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="166.0" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="179.00000000000003" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="166.0" x2="166.0" y1="408.00000000000006" y2="367.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="179.00000000000003" x2="179.00000000000003" y1="367.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="166.0" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="147.00000000000003" x2="147.00000000000003" y1="408.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="147.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="147.00000000000003" x2="134.00000000000003" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line opacity="0.5" stroke="#ff0000" x1="134.00000000000003" x2="134.00000000000003" y1="408.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="134.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="147.00000000000003" x2="147.00000000000003" y1="408.00000000000006" y2="430.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="147.00000000000003" x2="134.00000000000003" y1="430.00000000000006" y2="430.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="134.00000000000003" x2="134.00000000000003" y1="408.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="147.00000000000003" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="160.00000000000003" x2="160.00000000000003" y1="408.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="160.00000000000003" y1="430.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="173.0" x2="160.00000000000003" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="173.0" x2="173.0" y1="430.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="173.0" y1="430.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="147.00000000000003" y1="440.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="147.00000000000003" y1="440.00000000000006" y2="440.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="134.00000000000003" y1="430.00000000000006" y2="440.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="121.00000000000001" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="121.00000000000001" x2="134.00000000000003" y1="430.00000000000006" y2="430.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="121.00000000000001" x2="121.00000000000001" y1="430.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="111.00000000000001" x2="121.00000000000001" y1="430.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="111.00000000000001" x2="111.00000000000001" y1="408.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="121.00000000000001" x2="111.00000000000001" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="134.00000000000003" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="367.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="115.00000000000001" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="189.0" x2="179.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="189.0" x2="189.0" y1="408.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="189.0" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="132.0" x2="142.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="132.0" x2="132.0" y1="307.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="142.00000000000003" x2="132.0" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#888888" x1="142.50000000000003" x2="142.50000000000003" y1="319.75000000000006" y2="316.75000000000006"/>
+  <line stroke="#888888" x1="142.50000000000003" x2="145.5" y1="316.75000000000006" y2="316.75000000000006"/>
+  <line stroke="#888888" x1="145.5" x2="145.5" y1="316.75000000000006" y2="319.75000000000006"/>
+  <line stroke="#888888" x1="145.5" x2="142.50000000000003" y1="319.75000000000006" y2="319.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="318.75" y2="317.75"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="317.75" y2="317.75"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="317.75" y2="318.75"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="318.75" y2="318.75"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="321.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="320.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="320.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="321.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="321.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="320.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="320.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="321.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="323.75" y2="322.75"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="322.75" y2="322.75"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="322.75" y2="323.75"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="323.75" y2="323.75"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="323.75" y2="322.75"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="322.75" y2="322.75"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="322.75" y2="323.75"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="323.75" y2="323.75"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="326.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="325.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="325.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="326.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="326.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="325.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="325.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="326.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="328.75000000000006" y2="327.75"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="327.75" y2="327.75"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="327.75" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="328.75000000000006" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="328.75000000000006" y2="327.75"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="327.75" y2="327.75"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="327.75" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="328.75000000000006" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="331.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="330.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="330.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="331.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="331.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="330.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="330.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="331.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="333.75000000000006" y2="332.75"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="332.75" y2="332.75"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="332.75" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="333.75000000000006" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="333.75000000000006" y2="332.75"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="332.75" y2="332.75"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="332.75" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="333.75000000000006" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="336.25" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="335.25000000000006" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="335.25000000000006" y2="336.25"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="336.25" y2="336.25"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="336.25" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="335.25000000000006" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="335.25000000000006" y2="336.25"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="336.25" y2="336.25"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="338.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="337.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="337.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="338.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="338.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="337.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="337.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="338.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="341.25" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="340.25000000000006" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="340.25000000000006" y2="341.25"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="341.25" y2="341.25"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="341.25" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="340.25000000000006" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="340.25000000000006" y2="341.25"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="341.25" y2="341.25"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="343.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="342.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="342.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="343.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="343.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="342.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="342.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="343.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="346.25" y2="345.25"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="345.25" y2="345.25"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="345.25" y2="346.25"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="346.25" y2="346.25"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="346.25" y2="345.25"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="345.25" y2="345.25"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="345.25" y2="346.25"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="346.25" y2="346.25"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="348.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="347.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="347.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="348.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="348.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="347.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="347.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="348.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="351.25000000000006" y2="350.25"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="350.25" y2="350.25"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="350.25" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="351.25000000000006" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="351.25000000000006" y2="350.25"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="350.25" y2="350.25"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="350.25" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="351.25000000000006" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="353.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="352.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="352.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="353.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="353.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="352.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="352.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="353.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="356.25000000000006" y2="355.25"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="355.25" y2="355.25"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="355.25" y2="356.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="356.25000000000006" y2="356.25000000000006"/>
+  <line stroke="#888888" x1="162.50000000000003" x2="162.50000000000003" y1="357.25000000000006" y2="354.25000000000006"/>
+  <line stroke="#888888" x1="162.50000000000003" x2="165.50000000000003" y1="354.25000000000006" y2="354.25000000000006"/>
+  <line stroke="#888888" x1="165.50000000000003" x2="165.50000000000003" y1="354.25000000000006" y2="357.25000000000006"/>
+  <line stroke="#888888" x1="165.50000000000003" x2="162.50000000000003" y1="357.25000000000006" y2="357.25000000000006"/>
+  <line stroke="#888888" x1="179.11428571428573" x2="179.11428571428573" y1="361.00000000000006" y2="343.00000000000006"/>
+  <line stroke="#888888" x1="179.11428571428573" x2="199.6857142857143" y1="343.00000000000006" y2="343.00000000000006"/>
+  <line stroke="#888888" x1="199.6857142857143" x2="199.6857142857143" y1="343.00000000000006" y2="361.00000000000006"/>
+  <line stroke="#888888" x1="199.6857142857143" x2="179.11428571428573" y1="361.00000000000006" y2="361.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="294.00000000000006" y2="294.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="294.00000000000006" y2="271.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="271.00000000000006" y2="271.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="271.00000000000006" y2="294.00000000000006"/>
+  <line stroke="#888888" x1="142.91666666666666" x2="142.91666666666666" y1="273.75" y2="268.25000000000006"/>
+  <line stroke="#888888" x1="142.91666666666666" x2="142.41666666666669" y1="268.25000000000006" y2="268.25000000000006"/>
+  <line stroke="#888888" x1="142.41666666666669" x2="142.41666666666669" y1="268.25000000000006" y2="273.75"/>
+  <line stroke="#888888" x1="142.41666666666669" x2="142.91666666666666" y1="273.75" y2="273.75"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="279.41666666666674" y2="293.58333333333337"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="293.58333333333337" y2="293.58333333333337"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="293.58333333333337" y2="279.41666666666674"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="279.41666666666674" y2="279.41666666666674"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="115.75000000000001" y1="224.50000000000003" y2="224.50000000000003"/>
+  <line stroke="#888888" x1="115.75000000000001" x2="115.75000000000001" y1="224.50000000000003" y2="221.50000000000003"/>
+  <line stroke="#888888" x1="115.75000000000001" x2="118.75000000000001" y1="221.50000000000003" y2="221.50000000000003"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="221.50000000000003" y2="224.50000000000003"/>
+  <line stroke="#888888" x1="117.75000000000001" x2="116.75000000000001" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="116.75000000000001" x2="116.75000000000001" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="116.75000000000001" x2="117.75000000000001" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="117.75000000000001" x2="117.75000000000001" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="119.25000000000001" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="119.25000000000001" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="120.25000000000001" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="120.25000000000001" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="119.25000000000001" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="119.25000000000001" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="120.25000000000001" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="120.25000000000001" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="121.75000000000001" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="121.75000000000001" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="122.75000000000001" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="121.75000000000001" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="121.75000000000001" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="122.75000000000001" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="124.25000000000001" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="124.25000000000001" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="125.25000000000001" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="125.25000000000001" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="124.25000000000001" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="124.25000000000001" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="125.25000000000001" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="125.25000000000001" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="126.75000000000001" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="126.75000000000001" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="127.75000000000001" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="127.75000000000001" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="126.75000000000001" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="126.75000000000001" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="127.75000000000001" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="127.75000000000001" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="129.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="129.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="130.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="130.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="129.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="129.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="130.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="130.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="131.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="131.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="132.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="132.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="131.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="131.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="132.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="132.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="134.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="134.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="135.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="135.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="134.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="134.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="135.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="135.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="136.75" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="136.75" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="137.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="137.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="136.75" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="136.75" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="136.75" x2="137.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="137.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="139.25" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="139.25" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="140.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="140.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="139.25" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="139.25" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="139.25" x2="140.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="140.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="141.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="141.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="142.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="142.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="141.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="141.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="142.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="142.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="144.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="144.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="145.25" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="145.25" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="144.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="144.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="145.25" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="145.25" x2="145.25" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="146.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="146.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="147.75" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="147.75" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="146.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="146.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="147.75" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="147.75" x2="147.75" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="149.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="150.25" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="150.25" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="149.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="150.25" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="150.25" x2="150.25" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="151.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="151.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="152.75" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="152.75" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="151.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="151.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="152.75" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="152.75" x2="152.75" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="155.25000000000003" x2="154.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="154.25000000000003" x2="154.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="154.25000000000003" x2="155.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="155.25000000000003" x2="155.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="156.25000000000003" x2="153.25000000000003" y1="204.50000000000003" y2="204.50000000000003"/>
+  <line stroke="#888888" x1="153.25000000000003" x2="153.25000000000003" y1="204.50000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="153.25000000000003" x2="156.25000000000003" y1="201.50000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="156.25000000000003" x2="156.25000000000003" y1="201.50000000000003" y2="204.50000000000003"/>
+  <line stroke="#888888" x1="98.44000000000001" x2="98.44000000000001" y1="262.2100000000001" y2="263.29"/>
+  <line stroke="#888888" x1="98.44000000000001" x2="80.44000000000001" y1="263.29" y2="263.29"/>
+  <line stroke="#888888" x1="80.44000000000001" x2="80.44000000000001" y1="263.29" y2="262.2100000000001"/>
+  <line stroke="#888888" x1="80.44000000000001" x2="98.44000000000001" y1="262.2100000000001" y2="262.2100000000001"/>
+  <line stroke="#888888" x1="98.44000000000001" x2="98.44000000000001" y1="229.71" y2="230.79000000000005"/>
+  <line stroke="#888888" x1="98.44000000000001" x2="80.44000000000001" y1="230.79000000000005" y2="230.79000000000005"/>
+  <line stroke="#888888" x1="80.44000000000001" x2="80.44000000000001" y1="230.79000000000005" y2="229.71"/>
+  <line stroke="#888888" x1="80.44000000000001" x2="98.44000000000001" y1="229.71" y2="229.71"/>
+  <line stroke="#888888" x1="98.44000000000001" x2="98.44000000000001" y1="205.48000000000002" y2="219.52"/>
+  <line stroke="#888888" x1="98.44000000000001" x2="80.44000000000001" y1="219.52" y2="219.52"/>
+  <line stroke="#888888" x1="80.44000000000001" x2="80.44000000000001" y1="219.52" y2="205.48000000000002"/>
+  <line stroke="#888888" x1="80.44000000000001" x2="98.44000000000001" y1="205.48000000000002" y2="205.48000000000002"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="261.00000000000006" y2="261.00000000000006"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="261.00000000000006" y2="238.00000000000003"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="238.00000000000003" y2="238.00000000000003"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="238.00000000000003" y2="261.00000000000006"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.75000000000001" y1="242.1136363636364" y2="254.43181818181822"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.25" y1="254.43181818181822" y2="254.43181818181822"/>
+  <line stroke="#888888" x1="77.25" x2="77.25" y1="254.43181818181822" y2="242.1136363636364"/>
+  <line stroke="#888888" x1="77.25" x2="77.75000000000001" y1="242.1136363636364" y2="242.1136363636364"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.75000000000001" y1="212.56818181818184" y2="224.88636363636365"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.25" y1="224.88636363636365" y2="224.88636363636365"/>
+  <line stroke="#888888" x1="77.25" x2="77.25" y1="224.88636363636365" y2="212.56818181818184"/>
+  <line stroke="#888888" x1="77.25" x2="77.75000000000001" y1="212.56818181818184" y2="212.56818181818184"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="141.0" y2="141.0"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="141.0" y2="164.0"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="164.0" y2="164.0"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="164.0" y2="141.0"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.25000000000003" y1="159.88636363636363" y2="147.56818181818184"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.75000000000003" y1="147.56818181818184" y2="147.56818181818184"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.75000000000003" y1="147.56818181818184" y2="159.88636363636363"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.25000000000003" y1="159.88636363636363" y2="159.88636363636363"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.25000000000003" y1="189.43181818181822" y2="177.11363636363637"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.75000000000003" y1="177.11363636363637" y2="177.11363636363637"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.75000000000003" y1="177.11363636363637" y2="189.43181818181822"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.25000000000003" y1="189.43181818181822" y2="189.43181818181822"/>
+  <line stroke="#888888" x1="194.33333333333334" x2="194.33333333333334" y1="68.50000000000001" y2="73.50000000000001"/>
+  <line stroke="#888888" x1="194.33333333333334" x2="186.66666666666666" y1="73.50000000000001" y2="73.50000000000001"/>
+  <line stroke="#888888" x1="186.66666666666666" x2="186.66666666666666" y1="73.50000000000001" y2="68.50000000000001"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="164.0" y2="164.0"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="164.0" y2="141.0"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="141.0" y2="141.0"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="141.0" y2="164.0"/>
+  <line stroke="#888888" x1="85.58333333333336" x2="77.41666666666667" y1="143.75" y2="143.75"/>
+  <line stroke="#888888" x1="77.41666666666667" x2="77.41666666666667" y1="143.75" y2="143.25"/>
+  <line stroke="#888888" x1="77.41666666666667" x2="85.58333333333336" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="85.58333333333336" x2="85.58333333333336" y1="143.25" y2="143.75"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="108.00000000000001" y2="108.00000000000001"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="108.00000000000001" y2="131.0"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="131.0" y2="131.0"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="131.0" y2="108.00000000000001"/>
+  <line stroke="#888888" x1="129.08333333333337" x2="129.08333333333337" y1="128.25000000000003" y2="133.75000000000003"/>
+  <line stroke="#888888" x1="129.08333333333337" x2="129.58333333333337" y1="133.75000000000003" y2="133.75000000000003"/>
+  <line stroke="#888888" x1="129.58333333333337" x2="129.58333333333337" y1="133.75000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="129.58333333333337" x2="129.08333333333337" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="106.75000000000001" x2="106.75000000000001" y1="80.08333333333333" y2="87.91666666666667"/>
+  <line stroke="#888888" x1="106.75000000000001" x2="106.25000000000001" y1="87.91666666666667" y2="87.91666666666667"/>
+  <line stroke="#888888" x1="106.25000000000001" x2="106.25000000000001" y1="87.91666666666667" y2="80.08333333333333"/>
+  <line stroke="#888888" x1="106.25000000000001" x2="106.75000000000001" y1="80.08333333333333" y2="80.08333333333333"/>
+  <line stroke="#888888" x1="106.75000000000001" x2="106.75000000000001" y1="17.083333333333318" y2="24.916666666666686"/>
+  <line stroke="#888888" x1="106.75000000000001" x2="106.25000000000001" y1="24.916666666666686" y2="24.916666666666686"/>
+  <line stroke="#888888" x1="106.25000000000001" x2="106.25000000000001" y1="24.916666666666686" y2="17.083333333333318"/>
+  <line stroke="#888888" x1="106.25000000000001" x2="106.75000000000001" y1="17.083333333333318" y2="17.083333333333318"/>
+  <line stroke="#888888" x1="129.33333333333337" x2="133.66666666666669" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="133.66666666666669" x2="133.66666666666669" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="133.66666666666669" x2="129.33333333333337" y1="2.5000000000000004" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="158.50000000000003" x2="153.50000000000003" y1="24.666666666666686" y2="24.666666666666686"/>
+  <line stroke="#888888" x1="153.50000000000003" x2="153.50000000000003" y1="24.666666666666686" y2="17.333333333333318"/>
+  <line stroke="#888888" x1="153.50000000000003" x2="158.50000000000003" y1="17.333333333333318" y2="17.333333333333318"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="59.58333333333332" y2="45.416666666666686"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.75" y1="45.416666666666686" y2="45.416666666666686"/>
+  <line stroke="#888888" x1="149.75" x2="149.75" y1="45.416666666666686" y2="59.58333333333332"/>
+  <line stroke="#888888" x1="149.75" x2="149.25000000000003" y1="59.58333333333332" y2="59.58333333333332"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="37.0" y2="37.0"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="37.0" y2="60.00000000000001"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="60.00000000000001" y2="37.0"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="45.66666666666669" y2="40.66666666666669"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="90.50000000000001" y1="40.66666666666669" y2="45.66666666666669"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="90.50000000000001" y1="45.66666666666669" y2="59.33333333333332"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="85.50000000000001" y1="59.33333333333332" y2="64.33333333333333"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="64.33333333333333" y2="59.33333333333332"/>
+  <line stroke="#888888" x1="158.50000000000003" x2="153.50000000000003" y1="87.66666666666666" y2="87.66666666666666"/>
+  <line stroke="#888888" x1="153.50000000000003" x2="153.50000000000003" y1="87.66666666666666" y2="80.33333333333333"/>
+  <line stroke="#888888" x1="153.50000000000003" x2="158.50000000000003" y1="80.33333333333333" y2="80.33333333333333"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="122.58333333333336" y2="108.41666666666667"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.75" y1="108.41666666666667" y2="108.41666666666667"/>
+  <line stroke="#888888" x1="149.75" x2="149.75" y1="108.41666666666667" y2="122.58333333333336"/>
+  <line stroke="#888888" x1="149.75" x2="149.25000000000003" y1="122.58333333333336" y2="122.58333333333336"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="108.66666666666667" y2="103.66666666666667"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="90.50000000000001" y1="103.66666666666667" y2="108.66666666666667"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="90.50000000000001" y1="108.66666666666667" y2="122.33333333333336"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="85.50000000000001" y1="122.33333333333336" y2="127.33333333333333"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="127.33333333333333" y2="122.33333333333336"/>
+  <line stroke="#888888" x1="29.750000000000004" x2="50.25000000000001" y1="191.0" y2="191.0"/>
+  <line stroke="#888888" x1="50.25000000000001" x2="50.25000000000001" y1="191.0" y2="191.50000000000003"/>
+  <line stroke="#888888" x1="50.25000000000001" x2="29.750000000000004" y1="191.50000000000003" y2="191.50000000000003"/>
+  <line stroke="#888888" x1="29.750000000000004" x2="29.750000000000004" y1="191.50000000000003" y2="191.0"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="147.8181818181818" y2="147.8181818181818"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="147.8181818181818" y2="159.63636363636363"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="159.63636363636363" y2="159.63636363636363"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="177.3636363636364" y2="177.3636363636364"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="177.3636363636364" y2="189.18181818181822"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="189.18181818181822" y2="189.18181818181822"/>
+  <line stroke="#888888" x1="196.60000000000002" x2="196.60000000000002" y1="262.2100000000001" y2="263.29"/>
+  <line stroke="#888888" x1="196.60000000000002" x2="178.6" y1="263.29" y2="263.29"/>
+  <line stroke="#888888" x1="178.6" x2="178.6" y1="263.29" y2="262.2100000000001"/>
+  <line stroke="#888888" x1="178.6" x2="196.60000000000002" y1="262.2100000000001" y2="262.2100000000001"/>
+  <line stroke="#888888" x1="196.60000000000002" x2="196.60000000000002" y1="229.71" y2="230.79000000000005"/>
+  <line stroke="#888888" x1="196.60000000000002" x2="178.6" y1="230.79000000000005" y2="230.79000000000005"/>
+  <line stroke="#888888" x1="178.6" x2="178.6" y1="230.79000000000005" y2="229.71"/>
+  <line stroke="#888888" x1="178.6" x2="196.60000000000002" y1="229.71" y2="229.71"/>
+  <line stroke="#888888" x1="200.20000000000002" x2="200.20000000000002" y1="205.48000000000002" y2="219.52"/>
+  <line stroke="#888888" x1="200.20000000000002" x2="175.0" y1="219.52" y2="219.52"/>
+  <line stroke="#888888" x1="175.0" x2="175.0" y1="219.52" y2="205.48000000000002"/>
+  <line stroke="#888888" x1="175.0" x2="200.20000000000002" y1="205.48000000000002" y2="205.48000000000002"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="238.00000000000003" y2="238.00000000000003"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="238.00000000000003" y2="261.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="261.00000000000006" y2="261.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="261.00000000000006" y2="238.00000000000003"/>
+  <line stroke="#888888" x1="214.75000000000003" x2="211.75" y1="224.50000000000003" y2="224.50000000000003"/>
+  <line stroke="#888888" x1="211.75" x2="211.75" y1="224.50000000000003" y2="221.50000000000003"/>
+  <line stroke="#888888" x1="211.75" x2="214.75000000000003" y1="221.50000000000003" y2="221.50000000000003"/>
+  <line stroke="#888888" x1="214.75000000000003" x2="214.75000000000003" y1="221.50000000000003" y2="224.50000000000003"/>
+  <line stroke="#888888" x1="213.75" x2="212.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="212.75000000000003" x2="212.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="212.75000000000003" x2="213.75" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="213.75" x2="213.75" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="216.25" x2="215.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="215.25000000000003" x2="215.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="215.25000000000003" x2="216.25" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="216.25" x2="216.25" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="216.25" x2="215.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="215.25000000000003" x2="215.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="215.25000000000003" x2="216.25" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="216.25" x2="216.25" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="218.75000000000003" x2="217.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="217.75000000000003" x2="217.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="217.75000000000003" x2="218.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="218.75000000000003" x2="218.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="218.75000000000003" x2="217.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="217.75000000000003" x2="217.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="217.75000000000003" x2="218.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="218.75000000000003" x2="218.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="221.25000000000003" x2="220.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="220.25000000000003" x2="220.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="220.25000000000003" x2="221.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="221.25000000000003" x2="221.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="221.25000000000003" x2="220.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="220.25000000000003" x2="220.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="220.25000000000003" x2="221.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="221.25000000000003" x2="221.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="223.75000000000003" x2="222.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="222.75000000000003" x2="222.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="222.75000000000003" x2="223.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="223.75000000000003" x2="223.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="223.75000000000003" x2="222.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="222.75000000000003" x2="222.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="222.75000000000003" x2="223.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="223.75000000000003" x2="223.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="226.25000000000003" x2="225.25" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="225.25" x2="225.25" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="225.25" x2="226.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="226.25000000000003" x2="226.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="226.25000000000003" x2="225.25" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="225.25" x2="225.25" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="225.25" x2="226.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="226.25000000000003" x2="226.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="228.75000000000003" x2="227.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="227.75000000000003" x2="227.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="227.75000000000003" x2="228.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="228.75000000000003" x2="228.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="228.75000000000003" x2="227.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="227.75000000000003" x2="227.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="227.75000000000003" x2="228.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="228.75000000000003" x2="228.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="231.25000000000003" x2="230.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="230.25000000000003" x2="230.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="230.25000000000003" x2="231.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="231.25000000000003" x2="231.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="231.25000000000003" x2="230.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="230.25000000000003" x2="230.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="230.25000000000003" x2="231.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="231.25000000000003" x2="231.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="233.75000000000003" x2="232.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="232.75000000000003" x2="232.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="232.75000000000003" x2="233.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="233.75000000000003" x2="233.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="233.75000000000003" x2="232.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="232.75000000000003" x2="232.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="232.75000000000003" x2="233.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="233.75000000000003" x2="233.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="236.25000000000003" x2="235.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="235.25000000000003" x2="235.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="235.25000000000003" x2="236.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="236.25000000000003" x2="236.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="236.25000000000003" x2="235.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="235.25000000000003" x2="235.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="235.25000000000003" x2="236.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="236.25000000000003" x2="236.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="238.75000000000003" x2="237.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="237.75000000000003" x2="237.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="237.75000000000003" x2="238.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="238.75000000000003" x2="238.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="238.75000000000003" x2="237.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="237.75000000000003" x2="237.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="237.75000000000003" x2="238.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="238.75000000000003" x2="238.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="241.25000000000003" x2="240.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="240.25000000000003" x2="240.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="240.25000000000003" x2="241.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="241.25000000000003" x2="241.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="241.25000000000003" x2="240.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="240.25000000000003" x2="240.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="240.25000000000003" x2="241.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="241.25000000000003" x2="241.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="243.75000000000003" x2="242.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="242.75000000000003" x2="242.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="242.75000000000003" x2="243.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="243.75000000000003" x2="243.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="243.75000000000003" x2="242.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="242.75000000000003" x2="242.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="242.75000000000003" x2="243.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="243.75000000000003" x2="243.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="246.25000000000003" x2="245.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="245.25000000000003" x2="245.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="245.25000000000003" x2="246.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="246.25000000000003" x2="246.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="246.25000000000003" x2="245.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="245.25000000000003" x2="245.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="245.25000000000003" x2="246.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="246.25000000000003" x2="246.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="248.75000000000003" x2="247.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="247.75000000000003" x2="247.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="247.75000000000003" x2="248.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="248.75000000000003" x2="248.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="248.75000000000003" x2="247.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="247.75000000000003" x2="247.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="247.75000000000003" x2="248.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="248.75000000000003" x2="248.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="251.25000000000003" x2="250.25000000000006" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="250.25000000000006" x2="250.25000000000006" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="250.25000000000006" x2="251.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="251.25000000000003" x2="251.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="252.25000000000003" x2="249.25000000000003" y1="204.50000000000003" y2="204.50000000000003"/>
+  <line stroke="#888888" x1="249.25000000000003" x2="249.25000000000003" y1="204.50000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="249.25000000000003" x2="252.25000000000003" y1="201.50000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="252.25000000000003" x2="252.25000000000003" y1="201.50000000000003" y2="204.50000000000003"/>
+  <line stroke="#888888" x1="242.00000000000003" x2="248.50000000000003" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="248.50000000000003" x2="242.00000000000003" y1="191.25" y2="197.75"/>
+  <line stroke="#888888" x1="242.00000000000003" x2="222.00000000000003" y1="197.75" y2="197.75"/>
+  <line stroke="#888888" x1="222.00000000000003" x2="215.50000000000003" y1="197.75" y2="191.25"/>
+  <line stroke="#888888" x1="215.50000000000003" x2="222.00000000000003" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="269.50000000000006" x2="264.5" y1="254.18181818181822" y2="254.18181818181822"/>
+  <line stroke="#888888" x1="264.5" x2="264.5" y1="254.18181818181822" y2="242.3636363636364"/>
+  <line stroke="#888888" x1="264.5" x2="269.50000000000006" y1="242.3636363636364" y2="242.3636363636364"/>
+  <line stroke="#888888" x1="269.50000000000006" x2="264.5" y1="224.63636363636365" y2="224.63636363636365"/>
+  <line stroke="#888888" x1="264.5" x2="264.5" y1="224.63636363636365" y2="212.81818181818184"/>
+  <line stroke="#888888" x1="264.5" x2="269.50000000000006" y1="212.81818181818184" y2="212.81818181818184"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="293.33333333333337" y2="298.33333333333337"/>
+  <line stroke="#888888" x1="186.5" x2="181.50000000000003" y1="298.33333333333337" y2="293.33333333333337"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="181.50000000000003" y1="293.33333333333337" y2="279.66666666666674"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="186.5" y1="279.66666666666674" y2="274.66666666666674"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="274.66666666666674" y2="279.66666666666674"/>
+  <line stroke="#888888" x1="202.5" x2="202.5" y1="319.75000000000006" y2="316.75000000000006"/>
+  <line stroke="#888888" x1="202.5" x2="205.50000000000003" y1="316.75000000000006" y2="316.75000000000006"/>
+  <line stroke="#888888" x1="205.50000000000003" x2="205.50000000000003" y1="316.75000000000006" y2="319.75000000000006"/>
+  <line stroke="#888888" x1="205.50000000000003" x2="202.5" y1="319.75000000000006" y2="319.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="318.75" y2="317.75"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="317.75" y2="317.75"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="317.75" y2="318.75"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="318.75" y2="318.75"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="321.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="320.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="320.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="321.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="321.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="320.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="320.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="321.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="323.75" y2="322.75"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="322.75" y2="322.75"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="322.75" y2="323.75"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="323.75" y2="323.75"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="323.75" y2="322.75"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="322.75" y2="322.75"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="322.75" y2="323.75"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="323.75" y2="323.75"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="326.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="325.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="325.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="326.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="326.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="325.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="325.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="326.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="328.75000000000006" y2="327.75"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="327.75" y2="327.75"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="327.75" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="328.75000000000006" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="328.75000000000006" y2="327.75"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="327.75" y2="327.75"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="327.75" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="328.75000000000006" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="331.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="330.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="330.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="331.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="331.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="330.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="330.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="331.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="333.75000000000006" y2="332.75"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="332.75" y2="332.75"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="332.75" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="333.75000000000006" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="333.75000000000006" y2="332.75"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="332.75" y2="332.75"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="332.75" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="333.75000000000006" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="336.25" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="335.25000000000006" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="335.25000000000006" y2="336.25"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="336.25" y2="336.25"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="336.25" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="335.25000000000006" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="335.25000000000006" y2="336.25"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="336.25" y2="336.25"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="338.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="337.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="337.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="338.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="338.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="337.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="337.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="338.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="341.25" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="340.25000000000006" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="340.25000000000006" y2="341.25"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="341.25" y2="341.25"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="341.25" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="340.25000000000006" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="340.25000000000006" y2="341.25"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="341.25" y2="341.25"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="343.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="342.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="342.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="343.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="343.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="342.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="342.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="343.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="346.25" y2="345.25"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="345.25" y2="345.25"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="345.25" y2="346.25"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="346.25" y2="346.25"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="346.25" y2="345.25"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="345.25" y2="345.25"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="345.25" y2="346.25"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="346.25" y2="346.25"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="348.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="347.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="347.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="348.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="348.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="347.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="347.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="348.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="351.25000000000006" y2="350.25"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="350.25" y2="350.25"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="350.25" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="351.25000000000006" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="351.25000000000006" y2="350.25"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="350.25" y2="350.25"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="350.25" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="351.25000000000006" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="353.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="352.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="352.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="353.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="353.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="352.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="352.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="353.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="356.25000000000006" y2="355.25"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="355.25" y2="355.25"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="355.25" y2="356.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="356.25000000000006" y2="356.25000000000006"/>
+  <line stroke="#888888" x1="222.50000000000003" x2="222.50000000000003" y1="357.25000000000006" y2="354.25000000000006"/>
+  <line stroke="#888888" x1="222.50000000000003" x2="225.50000000000003" y1="354.25000000000006" y2="354.25000000000006"/>
+  <line stroke="#888888" x1="225.50000000000003" x2="225.50000000000003" y1="354.25000000000006" y2="357.25000000000006"/>
+  <line stroke="#888888" x1="225.50000000000003" x2="222.50000000000003" y1="357.25000000000006" y2="357.25000000000006"/>
+  <line stroke="#888888" x1="231.55428571428573" x2="231.55428571428573" y1="362.7" y2="349.70000000000005"/>
+  <line stroke="#888888" x1="231.55428571428573" x2="252.1257142857143" y1="349.70000000000005" y2="349.70000000000005"/>
+  <line stroke="#888888" x1="252.1257142857143" x2="252.1257142857143" y1="349.70000000000005" y2="362.7"/>
+  <line stroke="#888888" x1="252.1257142857143" x2="231.55428571428573" y1="362.7" y2="362.7"/>
+  <line stroke="#888888" x1="254.25000000000003" x2="254.25000000000003" y1="347.25000000000006" y2="326.75000000000006"/>
+  <line stroke="#888888" x1="254.25000000000003" x2="254.75000000000006" y1="326.75000000000006" y2="326.75000000000006"/>
+  <line stroke="#888888" x1="254.75000000000006" x2="254.75000000000006" y1="326.75000000000006" y2="347.25000000000006"/>
+  <line stroke="#888888" x1="254.75000000000006" x2="254.25000000000003" y1="347.25000000000006" y2="347.25000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="403.00000000000006" y2="403.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="403.00000000000006" y2="380.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="380.00000000000006" y2="380.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="380.00000000000006" y2="403.00000000000006"/>
+  <line stroke="#888888" x1="165.25000000000003" x2="165.25000000000003" y1="422.9166666666667" y2="415.08333333333337"/>
+  <line stroke="#888888" x1="165.25000000000003" x2="165.75" y1="415.08333333333337" y2="415.08333333333337"/>
+  <line stroke="#888888" x1="165.75" x2="165.75" y1="415.08333333333337" y2="422.9166666666667"/>
+  <line stroke="#888888" x1="165.75" x2="165.25000000000003" y1="422.9166666666667" y2="422.9166666666667"/>
+  <line stroke="#888888" x1="142.66666666666669" x2="138.33333333333334" y1="432.5" y2="432.5"/>
+  <line stroke="#888888" x1="138.33333333333334" x2="138.33333333333334" y1="432.5" y2="437.50000000000006"/>
+  <line stroke="#888888" x1="138.33333333333334" x2="142.66666666666669" y1="437.50000000000006" y2="437.50000000000006"/>
+  <line stroke="#888888" x1="113.50000000000001" x2="118.50000000000001" y1="415.33333333333337" y2="415.33333333333337"/>
+  <line stroke="#888888" x1="118.50000000000001" x2="118.50000000000001" y1="415.33333333333337" y2="422.6666666666667"/>
+  <line stroke="#888888" x1="118.50000000000001" x2="113.50000000000001" y1="422.6666666666667" y2="422.66666666666674"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="380.41666666666674" y2="394.58333333333337"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="394.58333333333337" y2="394.58333333333337"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="394.58333333333337" y2="380.41666666666674"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="380.41666666666674" y2="380.41666666666674"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="394.33333333333337" y2="399.33333333333337"/>
+  <line stroke="#888888" x1="186.5" x2="181.50000000000003" y1="399.33333333333337" y2="394.33333333333337"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="181.50000000000003" y1="394.33333333333337" y2="380.66666666666674"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="186.5" y1="380.66666666666674" y2="375.66666666666674"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="375.66666666666674" y2="380.66666666666674"/>
+  <line stroke="#888888" x1="134.5" x2="134.5" y1="327.0" y2="322.00000000000006"/>
+  <line stroke="#888888" x1="134.5" x2="139.50000000000003" y1="322.00000000000006" y2="327.0"/>
+  <line stroke="#888888" x1="139.50000000000003" x2="139.50000000000003" y1="327.0" y2="347.00000000000006"/>
+  <line stroke="#888888" x1="139.50000000000003" x2="134.5" y1="347.00000000000006" y2="352.00000000000006"/>
+  <line stroke="#888888" x1="134.5" x2="134.5" y1="352.00000000000006" y2="347.00000000000006"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="345.33333333333337" x2="345.0050224158704" y1="337.0" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="345.0050224158704" x2="345.33333333333337" y1="341.17158573440616" y2="337.0"/>
+  <line stroke="#000000" x1="344.0281737678708" x2="345.0050224158704" y1="345.2404531833319" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="342.4268406450232" x2="344.0281737678708" y1="349.1064133263879" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="340.24045318333197" x2="342.4268406450232" y1="352.674273394466" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="337.522847498308" x2="340.24045318333197" y1="355.8561808316413" y2="352.674273394466"/>
+  <line stroke="#000000" x1="334.3409400611327" x2="337.522847498308" y1="358.57378651666534" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="330.7730799930546" x2="334.3409400611327" y1="360.76017397835653" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="326.9071198499986" x2="330.7730799930546" y1="362.3615071012041" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="322.83825240107285" x2="326.9071198499986" y1="363.33835574920374" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="318.6666666666667" x2="322.83825240107285" y1="363.6666666666667" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="314.4950809322606" x2="318.6666666666667" y1="363.33835574920374" y2="363.6666666666667"/>
+  <line stroke="#000000" x1="310.42621348333483" x2="314.4950809322606" y1="362.3615071012041" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="306.5602533402788" x2="310.42621348333483" y1="360.76017397835653" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="302.9923932722008" x2="306.5602533402788" y1="358.57378651666534" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="299.8104858350255" x2="302.9923932722008" y1="355.8561808316413" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="297.09288015000146" x2="299.8104858350255" y1="352.674273394466" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="294.9064926883102" x2="297.09288015000146" y1="349.1064133263879" y2="352.674273394466"/>
+  <line stroke="#000000" x1="293.3051595654626" x2="294.9064926883102" y1="345.2404531833319" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="292.328310917463" x2="293.3051595654626" y1="341.17158573440616" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="292.0" x2="292.328310917463" y1="337.0" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="292.328310917463" x2="292.0" y1="332.8284142655939" y2="337.0"/>
+  <line stroke="#000000" x1="293.3051595654626" x2="292.328310917463" y1="328.75954681666815" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="294.9064926883102" x2="293.3051595654626" y1="324.8935866736121" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="297.09288015000146" x2="294.9064926883102" y1="321.3257266055341" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="299.8104858350255" x2="297.09288015000146" y1="318.1438191683588" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="302.9923932722008" x2="299.8104858350255" y1="315.4262134833348" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="306.5602533402788" x2="302.9923932722008" y1="313.2398260216435" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="310.42621348333483" x2="306.5602533402788" y1="311.6384928987959" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="314.4950809322606" x2="310.42621348333483" y1="310.6616442507963" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="318.6666666666667" x2="314.4950809322606" y1="310.33333333333337" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="322.83825240107285" x2="318.6666666666667" y1="310.6616442507963" y2="310.33333333333337"/>
+  <line stroke="#000000" x1="326.9071198499986" x2="322.83825240107285" y1="311.6384928987959" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="330.7730799930546" x2="326.9071198499986" y1="313.2398260216435" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="334.3409400611327" x2="330.7730799930546" y1="315.4262134833348" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="337.522847498308" x2="334.3409400611327" y1="318.1438191683588" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="340.24045318333197" x2="337.522847498308" y1="321.3257266055341" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="342.4268406450232" x2="340.24045318333197" y1="324.8935866736121" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="344.0281737678708" x2="342.4268406450232" y1="328.75954681666815" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="345.0050224158704" x2="344.0281737678708" y1="332.8284142655939" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="418.6666666666668" x2="418.3383557492038" y1="337.0" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="418.3383557492038" x2="418.6666666666668" y1="341.17158573440616" y2="337.0"/>
+  <line stroke="#000000" x1="417.3615071012042" x2="418.3383557492038" y1="345.2404531833319" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="415.7601739783566" x2="417.3615071012042" y1="349.1064133263879" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="413.57378651666534" x2="415.7601739783566" y1="352.674273394466" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="410.8561808316413" x2="413.57378651666534" y1="355.8561808316413" y2="352.674273394466"/>
+  <line stroke="#000000" x1="407.67427339446607" x2="410.8561808316413" y1="358.57378651666534" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="404.106413326388" x2="407.67427339446607" y1="360.76017397835653" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="400.24045318333197" x2="404.106413326388" y1="362.3615071012041" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="396.1715857344062" x2="400.24045318333197" y1="363.33835574920374" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="392.0000000000001" x2="396.1715857344062" y1="363.6666666666667" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="387.82841426559395" x2="392.0000000000001" y1="363.33835574920374" y2="363.6666666666667"/>
+  <line stroke="#000000" x1="383.7595468166682" x2="387.82841426559395" y1="362.3615071012041" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="379.8935866736122" x2="383.7595468166682" y1="360.76017397835653" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="376.32572660553416" x2="379.8935866736122" y1="358.57378651666534" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="373.14381916835885" x2="376.32572660553416" y1="355.8561808316413" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="370.42621348333483" x2="373.14381916835885" y1="352.674273394466" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="368.2398260216436" x2="370.42621348333483" y1="349.1064133263879" y2="352.674273394466"/>
+  <line stroke="#000000" x1="366.638492898796" x2="368.2398260216436" y1="345.2404531833319" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="365.66164425079637" x2="366.638492898796" y1="341.17158573440616" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="365.3333333333334" x2="365.66164425079637" y1="337.0" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="365.66164425079637" x2="365.3333333333334" y1="332.8284142655939" y2="337.0"/>
+  <line stroke="#000000" x1="366.638492898796" x2="365.66164425079637" y1="328.75954681666815" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="368.2398260216436" x2="366.638492898796" y1="324.8935866736121" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="370.42621348333483" x2="368.2398260216436" y1="321.3257266055341" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="373.14381916835885" x2="370.42621348333483" y1="318.1438191683588" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="376.32572660553416" x2="373.14381916835885" y1="315.4262134833348" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="379.8935866736122" x2="376.32572660553416" y1="313.2398260216435" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="383.7595468166682" x2="379.8935866736122" y1="311.6384928987959" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="387.82841426559395" x2="383.7595468166682" y1="310.6616442507963" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="392.0000000000001" x2="387.82841426559395" y1="310.33333333333337" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="396.1715857344062" x2="392.0000000000001" y1="310.6616442507963" y2="310.33333333333337"/>
+  <line stroke="#000000" x1="400.24045318333197" x2="396.1715857344062" y1="311.6384928987959" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="404.106413326388" x2="400.24045318333197" y1="313.2398260216435" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="407.67427339446607" x2="404.106413326388" y1="315.4262134833348" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="410.8561808316413" x2="407.67427339446607" y1="318.1438191683588" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="413.57378651666534" x2="410.8561808316413" y1="321.3257266055341" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="415.7601739783566" x2="413.57378651666534" y1="324.8935866736121" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="417.3615071012042" x2="415.7601739783566" y1="328.75954681666815" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="418.3383557492038" x2="417.3615071012042" y1="332.8284142655939" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="492.00000000000017" x2="491.67168908253717" y1="337.0" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="491.67168908253717" x2="492.00000000000017" y1="341.17158573440616" y2="337.0"/>
+  <line stroke="#000000" x1="490.6948404345376" x2="491.67168908253717" y1="345.2404531833319" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="489.09350731168996" x2="490.6948404345376" y1="349.1064133263879" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="486.90711984999876" x2="489.09350731168996" y1="352.674273394466" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="484.18951416497475" x2="486.90711984999876" y1="355.8561808316413" y2="352.674273394466"/>
+  <line stroke="#000000" x1="481.00760672779944" x2="484.18951416497475" y1="358.57378651666534" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="477.4397466597214" x2="481.00760672779944" y1="360.76017397835653" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="473.5737865166654" x2="477.4397466597214" y1="362.3615071012041" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="469.50491906773965" x2="473.5737865166654" y1="363.33835574920374" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="465.3333333333335" x2="469.50491906773965" y1="363.6666666666667" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="461.1617475989273" x2="465.3333333333335" y1="363.33835574920374" y2="363.6666666666667"/>
+  <line stroke="#000000" x1="457.0928801500016" x2="461.1617475989273" y1="362.3615071012041" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="453.2269200069456" x2="457.0928801500016" y1="360.76017397835653" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="449.65905993886753" x2="453.2269200069456" y1="358.57378651666534" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="446.4771525016922" x2="449.65905993886753" y1="355.8561808316413" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="443.7595468166682" x2="446.4771525016922" y1="352.674273394466" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="441.573159354977" x2="443.7595468166682" y1="349.1064133263879" y2="352.674273394466"/>
+  <line stroke="#000000" x1="439.9718262321294" x2="441.573159354977" y1="345.2404531833319" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="438.9949775841298" x2="439.9718262321294" y1="341.17158573440616" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="438.6666666666668" x2="438.9949775841298" y1="337.0" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="438.9949775841298" x2="438.6666666666668" y1="332.8284142655939" y2="337.0"/>
+  <line stroke="#000000" x1="439.9718262321294" x2="438.9949775841298" y1="328.75954681666815" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="441.573159354977" x2="439.9718262321294" y1="324.8935866736121" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="443.7595468166682" x2="441.573159354977" y1="321.3257266055341" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="446.4771525016922" x2="443.7595468166682" y1="318.1438191683588" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="449.65905993886753" x2="446.4771525016922" y1="315.4262134833348" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="453.2269200069456" x2="449.65905993886753" y1="313.2398260216435" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="457.0928801500016" x2="453.2269200069456" y1="311.6384928987959" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="461.1617475989273" x2="457.0928801500016" y1="310.6616442507963" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="465.3333333333335" x2="461.1617475989273" y1="310.33333333333337" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="469.50491906773965" x2="465.3333333333335" y1="310.6616442507963" y2="310.33333333333337"/>
+  <line stroke="#000000" x1="473.5737865166654" x2="469.50491906773965" y1="311.6384928987959" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="477.4397466597214" x2="473.5737865166654" y1="313.2398260216435" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="481.00760672779944" x2="477.4397466597214" y1="315.4262134833348" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="484.18951416497475" x2="481.00760672779944" y1="318.1438191683588" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="486.90711984999876" x2="484.18951416497475" y1="321.3257266055341" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="489.09350731168996" x2="486.90711984999876" y1="324.8935866736121" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="490.6948404345376" x2="489.09350731168996" y1="328.75954681666815" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="491.67168908253717" x2="490.6948404345376" y1="332.8284142655939" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="565.3333333333334" x2="565.0050224158704" y1="337.0" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="565.0050224158704" x2="565.3333333333334" y1="341.17158573440616" y2="337.0"/>
+  <line stroke="#000000" x1="564.0281737678708" x2="565.0050224158704" y1="345.2404531833319" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="562.4268406450233" x2="564.0281737678708" y1="349.1064133263879" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="560.2404531833321" x2="562.4268406450233" y1="352.674273394466" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="557.5228474983081" x2="560.2404531833321" y1="355.8561808316413" y2="352.674273394466"/>
+  <line stroke="#000000" x1="554.3409400611328" x2="557.5228474983081" y1="358.57378651666534" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="550.7730799930548" x2="554.3409400611328" y1="360.76017397835653" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="546.9071198499987" x2="550.7730799930548" y1="362.3615071012041" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="542.838252401073" x2="546.9071198499987" y1="363.33835574920374" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="538.6666666666669" x2="542.838252401073" y1="363.6666666666667" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="534.4950809322607" x2="538.6666666666669" y1="363.33835574920374" y2="363.6666666666667"/>
+  <line stroke="#000000" x1="530.4262134833349" x2="534.4950809322607" y1="362.3615071012041" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="526.5602533402789" x2="530.4262134833349" y1="360.76017397835653" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="522.992393272201" x2="526.5602533402789" y1="358.57378651666534" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="519.8104858350256" x2="522.992393272201" y1="355.8561808316413" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="517.0928801500016" x2="519.8104858350256" y1="352.674273394466" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="514.9064926883103" x2="517.0928801500016" y1="349.1064133263879" y2="352.674273394466"/>
+  <line stroke="#000000" x1="513.3051595654628" x2="514.9064926883103" y1="345.2404531833319" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="512.3283109174631" x2="513.3051595654628" y1="341.17158573440616" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="512.0000000000002" x2="512.3283109174631" y1="337.0" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="512.3283109174631" x2="512.0000000000002" y1="332.8284142655939" y2="337.0"/>
+  <line stroke="#000000" x1="513.3051595654628" x2="512.3283109174631" y1="328.75954681666815" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="514.9064926883102" x2="513.3051595654628" y1="324.8935866736121" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="517.0928801500016" x2="514.9064926883102" y1="321.3257266055341" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="519.8104858350256" x2="517.0928801500016" y1="318.1438191683588" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="522.992393272201" x2="519.8104858350256" y1="315.4262134833348" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="526.5602533402789" x2="522.992393272201" y1="313.2398260216435" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="530.4262134833349" x2="526.5602533402789" y1="311.6384928987959" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="534.4950809322607" x2="530.4262134833349" y1="310.6616442507963" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="538.6666666666669" x2="534.4950809322607" y1="310.33333333333337" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="542.838252401073" x2="538.6666666666669" y1="310.6616442507963" y2="310.33333333333337"/>
+  <line stroke="#000000" x1="546.9071198499987" x2="542.838252401073" y1="311.6384928987959" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="550.7730799930548" x2="546.9071198499987" y1="313.2398260216435" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="554.3409400611328" x2="550.7730799930548" y1="315.4262134833348" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="557.5228474983081" x2="554.3409400611328" y1="318.1438191683588" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="560.2404531833321" x2="557.5228474983081" y1="321.3257266055341" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="562.4268406450232" x2="560.2404531833321" y1="324.8935866736121" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="564.0281737678708" x2="562.4268406450232" y1="328.75954681666815" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="565.0050224158704" x2="564.0281737678708" y1="332.8284142655939" y2="328.75954681666815"/>
+</svg>
diff --git a/rocolib/builders/output/FourWheelCar/graph-autofold-default.dxf b/rocolib/builders/output/FourWheelCar/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..ba69e1f90626ba7acf5ef0d7daa57599026c7883
--- /dev/null
+++ b/rocolib/builders/output/FourWheelCar/graph-autofold-default.dxf
@@ -0,0 +1,20076 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+9
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+180
+ 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
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+142.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+142.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+142.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+202.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+179.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+147.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+147.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+134.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+106.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+166.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+136.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+166.0
+ 20
+136.0
+ 30
+0.0
+ 11
+166.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+106.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+166.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+202.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+136.0
+ 30
+0.0
+ 11
+166.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+179.00000000000003
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.00000000000003
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.00000000000003
+ 20
+66.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+66.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+66.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+66.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+70.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+106.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+106.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+93.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+125.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+125.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+138.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+125.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+125.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+138.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+112.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.0
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.0
+ 20
+73.0
+ 30
+0.0
+ 11
+99.0
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+99.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+125.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+112.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+99.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+99.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.00000000000003
+ 20
+0.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+151.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+161.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+161.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.0
+ 20
+73.0
+ 30
+0.0
+ 11
+157.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+157.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+106.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.0
+ 20
+73.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+151.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+161.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+161.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.0
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.0
+ 20
+136.0
+ 30
+0.0
+ 11
+157.0
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+157.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.0
+ 20
+136.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.0
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+10.000000000000002
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+136.0
+ 30
+0.0
+ 11
+0.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+136.0
+ 30
+0.0
+ 11
+0.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+166.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+202.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+262.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+262.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+188.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+262.0
+ 20
+188.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+188.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+262.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+262.0
+ 21
+188.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+272.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+262.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+272.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+272.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+262.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+272.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+189.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+189.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+226.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+262.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+262.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+179.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+166.0
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+179.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+147.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+147.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+134.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+147.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+147.00000000000003
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+134.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+160.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+160.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.00000000000003
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+173.0
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+173.0
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+160.00000000000003
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.00000000000003
+ 20
+440.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.00000000000003
+ 20
+440.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+440.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.00000000000003
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+440.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.00000000000001
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+121.00000000000001
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+111.00000000000001
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+111.00000000000001
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.00000000000001
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.00000000000001
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+189.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+189.0
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+142.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+132.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+132.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.50000000000003
+ 20
+319.75000000000006
+ 30
+0.0
+ 11
+142.50000000000003
+ 21
+316.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.50000000000003
+ 20
+316.75000000000006
+ 30
+0.0
+ 11
+145.5
+ 21
+316.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+145.5
+ 20
+316.75000000000006
+ 30
+0.0
+ 11
+145.5
+ 21
+319.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+145.5
+ 20
+319.75000000000006
+ 30
+0.0
+ 11
+142.50000000000003
+ 21
+319.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+318.75
+ 30
+0.0
+ 11
+163.5
+ 21
+317.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+317.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+317.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+317.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+318.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+318.75
+ 30
+0.0
+ 11
+163.5
+ 21
+318.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+323.75
+ 30
+0.0
+ 11
+143.5
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+322.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+143.5
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+323.75
+ 30
+0.0
+ 11
+163.5
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+322.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+163.5
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+327.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+327.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+332.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+332.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+336.25
+ 30
+0.0
+ 11
+143.5
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+143.5
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+336.25
+ 30
+0.0
+ 11
+163.5
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+163.5
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+341.25
+ 30
+0.0
+ 11
+143.5
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+143.5
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+341.25
+ 30
+0.0
+ 11
+163.5
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+163.5
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+346.25
+ 30
+0.0
+ 11
+143.5
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+345.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+143.5
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+346.25
+ 30
+0.0
+ 11
+163.5
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+345.25
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+163.5
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+350.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+350.25
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.5
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+164.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+356.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+355.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.5
+ 20
+355.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+355.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+355.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+356.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.50000000000003
+ 20
+356.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+356.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+162.50000000000003
+ 20
+357.25000000000006
+ 30
+0.0
+ 11
+162.50000000000003
+ 21
+354.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+162.50000000000003
+ 20
+354.25000000000006
+ 30
+0.0
+ 11
+165.50000000000003
+ 21
+354.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.50000000000003
+ 20
+354.25000000000006
+ 30
+0.0
+ 11
+165.50000000000003
+ 21
+357.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.50000000000003
+ 20
+357.25000000000006
+ 30
+0.0
+ 11
+162.50000000000003
+ 21
+357.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.11428571428573
+ 20
+361.00000000000006
+ 30
+0.0
+ 11
+179.11428571428573
+ 21
+343.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.11428571428573
+ 20
+343.00000000000006
+ 30
+0.0
+ 11
+199.6857142857143
+ 21
+343.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+199.6857142857143
+ 20
+343.00000000000006
+ 30
+0.0
+ 11
+199.6857142857143
+ 21
+361.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+199.6857142857143
+ 20
+361.00000000000006
+ 30
+0.0
+ 11
+179.11428571428573
+ 21
+361.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+294.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+294.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+294.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+271.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+271.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+271.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+271.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+294.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.91666666666666
+ 20
+273.75
+ 30
+0.0
+ 11
+142.91666666666666
+ 21
+268.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.91666666666666
+ 20
+268.25000000000006
+ 30
+0.0
+ 11
+142.41666666666669
+ 21
+268.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.41666666666669
+ 20
+268.25000000000006
+ 30
+0.0
+ 11
+142.41666666666669
+ 21
+273.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.41666666666669
+ 20
+273.75
+ 30
+0.0
+ 11
+142.91666666666666
+ 21
+273.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+279.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+293.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+293.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+293.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.25000000000001
+ 20
+293.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+279.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.25000000000001
+ 20
+279.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+279.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.75000000000001
+ 20
+224.50000000000003
+ 30
+0.0
+ 11
+115.75000000000001
+ 21
+224.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.75000000000001
+ 20
+224.50000000000003
+ 30
+0.0
+ 11
+115.75000000000001
+ 21
+221.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.75000000000001
+ 20
+221.50000000000003
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+221.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.75000000000001
+ 20
+221.50000000000003
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+224.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+117.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+116.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+116.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+117.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+117.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+117.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+120.25000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+119.25000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+119.25000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+120.25000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+120.25000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+119.25000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+119.25000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+120.25000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.75000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.75000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+121.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.25000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.25000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.25000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.25000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.25000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.25000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.25000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+125.25000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.75000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.75000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.75000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.75000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+126.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+127.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+131.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+131.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+131.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+131.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+132.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+135.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+135.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+135.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+135.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+137.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.75
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.75
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+137.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+137.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.75
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.75
+ 20
+202.5
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+137.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+139.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+139.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+139.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+139.25
+ 20
+202.5
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+145.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+145.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+145.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+145.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+145.25
+ 20
+202.5
+ 30
+0.0
+ 11
+145.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.75
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+146.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+146.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.75
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.75
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+146.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+146.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+147.75
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.75
+ 20
+202.5
+ 30
+0.0
+ 11
+147.75
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+150.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+150.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+150.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+150.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+150.25
+ 20
+202.5
+ 30
+0.0
+ 11
+150.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.75
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.75
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.75
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+152.75
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.75
+ 20
+202.5
+ 30
+0.0
+ 11
+152.75
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+155.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+154.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+154.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+154.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+154.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+155.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+155.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+155.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+156.25000000000003
+ 20
+204.50000000000003
+ 30
+0.0
+ 11
+153.25000000000003
+ 21
+204.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.25000000000003
+ 20
+204.50000000000003
+ 30
+0.0
+ 11
+153.25000000000003
+ 21
+201.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.25000000000003
+ 20
+201.50000000000003
+ 30
+0.0
+ 11
+156.25000000000003
+ 21
+201.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+156.25000000000003
+ 20
+201.50000000000003
+ 30
+0.0
+ 11
+156.25000000000003
+ 21
+204.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.44000000000001
+ 20
+262.2100000000001
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+263.29
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.44000000000001
+ 20
+263.29
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+263.29
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.44000000000001
+ 20
+263.29
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+262.2100000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.44000000000001
+ 20
+262.2100000000001
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+262.2100000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.44000000000001
+ 20
+229.71
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+230.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.44000000000001
+ 20
+230.79000000000005
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+230.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.44000000000001
+ 20
+230.79000000000005
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+229.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.44000000000001
+ 20
+229.71
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+229.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.44000000000001
+ 20
+205.48000000000002
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+219.52
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.44000000000001
+ 20
+219.52
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+219.52
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.44000000000001
+ 20
+219.52
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+205.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.44000000000001
+ 20
+205.48000000000002
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+205.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+261.00000000000006
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+261.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+261.00000000000006
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+238.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+238.00000000000003
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+238.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+238.00000000000003
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+261.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.75000000000001
+ 20
+242.1136363636364
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+254.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.75000000000001
+ 20
+254.43181818181822
+ 30
+0.0
+ 11
+77.25
+ 21
+254.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.25
+ 20
+254.43181818181822
+ 30
+0.0
+ 11
+77.25
+ 21
+242.1136363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.25
+ 20
+242.1136363636364
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+242.1136363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.75000000000001
+ 20
+212.56818181818184
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+224.88636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.75000000000001
+ 20
+224.88636363636365
+ 30
+0.0
+ 11
+77.25
+ 21
+224.88636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.25
+ 20
+224.88636363636365
+ 30
+0.0
+ 11
+77.25
+ 21
+212.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.25
+ 20
+212.56818181818184
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+212.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+141.0
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+141.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+141.0
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+164.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+164.0
+ 30
+0.0
+ 11
+166.065
+ 21
+164.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+164.0
+ 30
+0.0
+ 11
+166.065
+ 21
+141.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.25000000000003
+ 20
+159.88636363636363
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+147.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.25000000000003
+ 20
+147.56818181818184
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+147.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.75000000000003
+ 20
+147.56818181818184
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+159.88636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.75000000000003
+ 20
+159.88636363636363
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+159.88636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.25000000000003
+ 20
+189.43181818181822
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+177.11363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.25000000000003
+ 20
+177.11363636363637
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+177.11363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.75000000000003
+ 20
+177.11363636363637
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+189.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.75000000000003
+ 20
+189.43181818181822
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+189.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.33333333333334
+ 20
+68.50000000000001
+ 30
+0.0
+ 11
+194.33333333333334
+ 21
+73.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+194.33333333333334
+ 20
+73.50000000000001
+ 30
+0.0
+ 11
+186.66666666666666
+ 21
+73.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.66666666666666
+ 20
+73.50000000000001
+ 30
+0.0
+ 11
+186.66666666666666
+ 21
+68.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+164.0
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+164.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+164.0
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+141.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+141.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+141.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+141.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+164.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.58333333333336
+ 20
+143.75
+ 30
+0.0
+ 11
+77.41666666666667
+ 21
+143.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.41666666666667
+ 20
+143.75
+ 30
+0.0
+ 11
+77.41666666666667
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.41666666666667
+ 20
+143.25
+ 30
+0.0
+ 11
+85.58333333333336
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.58333333333336
+ 20
+143.25
+ 30
+0.0
+ 11
+85.58333333333336
+ 21
+143.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+108.00000000000001
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+108.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+108.00000000000001
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+131.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+131.0
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+131.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+131.0
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+108.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.08333333333337
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+129.08333333333337
+ 21
+133.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.08333333333337
+ 20
+133.75000000000003
+ 30
+0.0
+ 11
+129.58333333333337
+ 21
+133.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.58333333333337
+ 20
+133.75000000000003
+ 30
+0.0
+ 11
+129.58333333333337
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.58333333333337
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+129.08333333333337
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.75000000000001
+ 20
+80.08333333333333
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+87.91666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.75000000000001
+ 20
+87.91666666666667
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+87.91666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.25000000000001
+ 20
+87.91666666666667
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+80.08333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.25000000000001
+ 20
+80.08333333333333
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+80.08333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.75000000000001
+ 20
+17.083333333333318
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+24.916666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.75000000000001
+ 20
+24.916666666666686
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+24.916666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.25000000000001
+ 20
+24.916666666666686
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+17.083333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.25000000000001
+ 20
+17.083333333333318
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+17.083333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+129.33333333333337
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+133.66666666666669
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+133.66666666666669
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+133.66666666666669
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+133.66666666666669
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+129.33333333333337
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+158.50000000000003
+ 20
+24.666666666666686
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+24.666666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.50000000000003
+ 20
+24.666666666666686
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+17.333333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.50000000000003
+ 20
+17.333333333333318
+ 30
+0.0
+ 11
+158.50000000000003
+ 21
+17.333333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+59.58333333333332
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+45.416666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+45.416666666666686
+ 30
+0.0
+ 11
+149.75
+ 21
+45.416666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.75
+ 20
+45.416666666666686
+ 30
+0.0
+ 11
+149.75
+ 21
+59.58333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.75
+ 20
+59.58333333333332
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+59.58333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+37.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+37.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+37.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.93500000000002
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.06500000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+37.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.50000000000001
+ 20
+45.66666666666669
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+40.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.50000000000001
+ 20
+40.66666666666669
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+45.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.50000000000001
+ 20
+45.66666666666669
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+59.33333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.50000000000001
+ 20
+59.33333333333332
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+64.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.50000000000001
+ 20
+64.33333333333333
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+59.33333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+158.50000000000003
+ 20
+87.66666666666666
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+87.66666666666666
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.50000000000003
+ 20
+87.66666666666666
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+80.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+153.50000000000003
+ 20
+80.33333333333333
+ 30
+0.0
+ 11
+158.50000000000003
+ 21
+80.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+122.58333333333336
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+108.41666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.25000000000003
+ 20
+108.41666666666667
+ 30
+0.0
+ 11
+149.75
+ 21
+108.41666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.75
+ 20
+108.41666666666667
+ 30
+0.0
+ 11
+149.75
+ 21
+122.58333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.75
+ 20
+122.58333333333336
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+122.58333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.50000000000001
+ 20
+108.66666666666667
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+103.66666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.50000000000001
+ 20
+103.66666666666667
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+108.66666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.50000000000001
+ 20
+108.66666666666667
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+122.33333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.50000000000001
+ 20
+122.33333333333336
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+127.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.50000000000001
+ 20
+127.33333333333333
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+122.33333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+29.750000000000004
+ 20
+191.0
+ 30
+0.0
+ 11
+50.25000000000001
+ 21
+191.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+50.25000000000001
+ 20
+191.0
+ 30
+0.0
+ 11
+50.25000000000001
+ 21
+191.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+50.25000000000001
+ 20
+191.50000000000003
+ 30
+0.0
+ 11
+29.750000000000004
+ 21
+191.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+29.750000000000004
+ 20
+191.50000000000003
+ 30
+0.0
+ 11
+29.750000000000004
+ 21
+191.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+147.8181818181818
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+147.8181818181818
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+147.8181818181818
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+159.63636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+159.63636363636363
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+159.63636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+177.3636363636364
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+177.3636363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+177.3636363636364
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+189.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+189.18181818181822
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+189.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+196.60000000000002
+ 20
+262.2100000000001
+ 30
+0.0
+ 11
+196.60000000000002
+ 21
+263.29
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+196.60000000000002
+ 20
+263.29
+ 30
+0.0
+ 11
+178.6
+ 21
+263.29
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.6
+ 20
+263.29
+ 30
+0.0
+ 11
+178.6
+ 21
+262.2100000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.6
+ 20
+262.2100000000001
+ 30
+0.0
+ 11
+196.60000000000002
+ 21
+262.2100000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+196.60000000000002
+ 20
+229.71
+ 30
+0.0
+ 11
+196.60000000000002
+ 21
+230.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+196.60000000000002
+ 20
+230.79000000000005
+ 30
+0.0
+ 11
+178.6
+ 21
+230.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.6
+ 20
+230.79000000000005
+ 30
+0.0
+ 11
+178.6
+ 21
+229.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.6
+ 20
+229.71
+ 30
+0.0
+ 11
+196.60000000000002
+ 21
+229.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+200.20000000000002
+ 20
+205.48000000000002
+ 30
+0.0
+ 11
+200.20000000000002
+ 21
+219.52
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+200.20000000000002
+ 20
+219.52
+ 30
+0.0
+ 11
+175.0
+ 21
+219.52
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+175.0
+ 20
+219.52
+ 30
+0.0
+ 11
+175.0
+ 21
+205.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+175.0
+ 20
+205.48000000000002
+ 30
+0.0
+ 11
+200.20000000000002
+ 21
+205.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+238.00000000000003
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+238.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+238.00000000000003
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+261.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+261.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+261.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+261.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+238.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+214.75000000000003
+ 20
+224.50000000000003
+ 30
+0.0
+ 11
+211.75
+ 21
+224.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+211.75
+ 20
+224.50000000000003
+ 30
+0.0
+ 11
+211.75
+ 21
+221.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+211.75
+ 20
+221.50000000000003
+ 30
+0.0
+ 11
+214.75000000000003
+ 21
+221.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+214.75000000000003
+ 20
+221.50000000000003
+ 30
+0.0
+ 11
+214.75000000000003
+ 21
+224.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+213.75
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+212.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+212.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+212.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+212.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+213.75
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+213.75
+ 20
+202.5
+ 30
+0.0
+ 11
+213.75
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+215.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+215.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+215.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+215.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+216.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+216.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+215.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+215.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+215.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+215.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+216.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.25
+ 20
+202.5
+ 30
+0.0
+ 11
+216.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+218.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+217.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+217.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+217.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+217.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+218.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+218.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+218.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+218.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+217.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+217.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+217.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+217.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+218.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+218.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+218.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+221.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+220.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+220.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+221.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+221.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+221.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+221.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+220.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+220.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+221.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+221.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+221.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+222.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+222.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+222.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+222.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+223.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+223.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+222.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+222.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+222.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+222.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+223.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+223.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+225.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+225.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+225.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+225.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+226.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+226.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+225.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+225.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+225.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+225.25
+ 20
+202.5
+ 30
+0.0
+ 11
+226.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+226.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+228.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+227.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+227.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+227.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+227.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+228.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+228.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+228.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+228.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+227.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+227.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+227.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+227.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+228.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+228.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+228.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+230.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+230.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+230.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+230.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+231.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+231.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+230.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+230.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+230.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+230.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+231.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+231.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+233.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+232.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+232.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+232.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+232.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+233.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+233.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+233.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+233.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+232.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+232.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+232.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+232.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+233.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+233.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+233.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+236.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+235.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+235.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+235.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+235.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+236.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+236.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+236.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+236.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+235.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+235.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+235.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+235.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+236.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+236.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+236.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+238.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+237.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+237.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+237.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+237.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+238.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+238.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+238.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+238.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+237.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+237.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+237.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+237.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+238.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+238.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+238.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+241.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+240.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+240.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+240.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+240.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+241.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+241.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+241.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+241.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+240.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+240.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+240.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+240.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+241.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+241.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+241.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+242.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+242.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+242.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+242.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+243.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+243.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+242.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+242.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+242.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+242.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+243.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+243.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+246.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+245.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+245.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+245.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+245.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+246.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+246.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+246.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+246.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+245.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+245.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+245.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+245.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+246.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+246.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+246.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+248.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+247.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+247.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+247.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+247.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+248.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+248.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+248.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+248.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+247.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+247.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+247.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+247.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+248.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+248.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+248.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+251.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+250.25000000000006
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+250.25000000000006
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+250.25000000000006
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+250.25000000000006
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+251.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+251.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+251.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+252.25000000000003
+ 20
+204.50000000000003
+ 30
+0.0
+ 11
+249.25000000000003
+ 21
+204.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+249.25000000000003
+ 20
+204.50000000000003
+ 30
+0.0
+ 11
+249.25000000000003
+ 21
+201.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+249.25000000000003
+ 20
+201.50000000000003
+ 30
+0.0
+ 11
+252.25000000000003
+ 21
+201.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+252.25000000000003
+ 20
+201.50000000000003
+ 30
+0.0
+ 11
+252.25000000000003
+ 21
+204.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+242.00000000000003
+ 20
+191.25
+ 30
+0.0
+ 11
+248.50000000000003
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+248.50000000000003
+ 20
+191.25
+ 30
+0.0
+ 11
+242.00000000000003
+ 21
+197.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+242.00000000000003
+ 20
+197.75
+ 30
+0.0
+ 11
+222.00000000000003
+ 21
+197.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+222.00000000000003
+ 20
+197.75
+ 30
+0.0
+ 11
+215.50000000000003
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+215.50000000000003
+ 20
+191.25
+ 30
+0.0
+ 11
+222.00000000000003
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+269.50000000000006
+ 20
+254.18181818181822
+ 30
+0.0
+ 11
+264.5
+ 21
+254.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+264.5
+ 20
+254.18181818181822
+ 30
+0.0
+ 11
+264.5
+ 21
+242.3636363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+264.5
+ 20
+242.3636363636364
+ 30
+0.0
+ 11
+269.50000000000006
+ 21
+242.3636363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+269.50000000000006
+ 20
+224.63636363636365
+ 30
+0.0
+ 11
+264.5
+ 21
+224.63636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+264.5
+ 20
+224.63636363636365
+ 30
+0.0
+ 11
+264.5
+ 21
+212.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+264.5
+ 20
+212.81818181818184
+ 30
+0.0
+ 11
+269.50000000000006
+ 21
+212.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.5
+ 20
+293.33333333333337
+ 30
+0.0
+ 11
+186.5
+ 21
+298.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.5
+ 20
+298.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+293.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+181.50000000000003
+ 20
+293.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+279.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+181.50000000000003
+ 20
+279.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+274.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.5
+ 20
+274.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+279.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.5
+ 20
+319.75000000000006
+ 30
+0.0
+ 11
+202.5
+ 21
+316.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+202.5
+ 20
+316.75000000000006
+ 30
+0.0
+ 11
+205.50000000000003
+ 21
+316.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+205.50000000000003
+ 20
+316.75000000000006
+ 30
+0.0
+ 11
+205.50000000000003
+ 21
+319.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+205.50000000000003
+ 20
+319.75000000000006
+ 30
+0.0
+ 11
+202.5
+ 21
+319.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+318.75
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+317.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+317.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+317.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+317.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+318.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+318.75
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+318.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+356.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+355.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+203.50000000000003
+ 20
+355.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+355.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+355.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+356.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.50000000000003
+ 20
+356.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+356.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+222.50000000000003
+ 20
+357.25000000000006
+ 30
+0.0
+ 11
+222.50000000000003
+ 21
+354.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+222.50000000000003
+ 20
+354.25000000000006
+ 30
+0.0
+ 11
+225.50000000000003
+ 21
+354.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+225.50000000000003
+ 20
+354.25000000000006
+ 30
+0.0
+ 11
+225.50000000000003
+ 21
+357.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+225.50000000000003
+ 20
+357.25000000000006
+ 30
+0.0
+ 11
+222.50000000000003
+ 21
+357.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.55428571428573
+ 20
+362.7
+ 30
+0.0
+ 11
+231.55428571428573
+ 21
+349.70000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.55428571428573
+ 20
+349.70000000000005
+ 30
+0.0
+ 11
+252.1257142857143
+ 21
+349.70000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+252.1257142857143
+ 20
+349.70000000000005
+ 30
+0.0
+ 11
+252.1257142857143
+ 21
+362.7
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+252.1257142857143
+ 20
+362.7
+ 30
+0.0
+ 11
+231.55428571428573
+ 21
+362.7
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.25000000000003
+ 20
+347.25000000000006
+ 30
+0.0
+ 11
+254.25000000000003
+ 21
+326.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.25000000000003
+ 20
+326.75000000000006
+ 30
+0.0
+ 11
+254.75000000000006
+ 21
+326.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.75000000000006
+ 20
+326.75000000000006
+ 30
+0.0
+ 11
+254.75000000000006
+ 21
+347.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+254.75000000000006
+ 20
+347.25000000000006
+ 30
+0.0
+ 11
+254.25000000000003
+ 21
+347.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+403.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+403.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+403.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+380.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.065
+ 20
+380.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+380.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.93500000000003
+ 20
+380.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+403.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.25000000000003
+ 20
+422.9166666666667
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+415.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.25000000000003
+ 20
+415.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+415.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.75
+ 20
+415.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+422.9166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+165.75
+ 20
+422.9166666666667
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+422.9166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.66666666666669
+ 20
+432.5
+ 30
+0.0
+ 11
+138.33333333333334
+ 21
+432.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.33333333333334
+ 20
+432.5
+ 30
+0.0
+ 11
+138.33333333333334
+ 21
+437.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+138.33333333333334
+ 20
+437.50000000000006
+ 30
+0.0
+ 11
+142.66666666666669
+ 21
+437.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.50000000000001
+ 20
+415.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+415.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.50000000000001
+ 20
+415.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+422.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.50000000000001
+ 20
+422.6666666666667
+ 30
+0.0
+ 11
+113.50000000000001
+ 21
+422.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+380.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+394.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.75000000000001
+ 20
+394.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+394.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.25000000000001
+ 20
+394.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+380.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+122.25000000000001
+ 20
+380.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+380.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.5
+ 20
+394.33333333333337
+ 30
+0.0
+ 11
+186.5
+ 21
+399.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.5
+ 20
+399.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+394.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+181.50000000000003
+ 20
+394.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+380.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+181.50000000000003
+ 20
+380.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+375.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+186.5
+ 20
+375.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+380.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.5
+ 20
+327.0
+ 30
+0.0
+ 11
+134.5
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.5
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+139.50000000000003
+ 21
+327.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+139.50000000000003
+ 20
+327.0
+ 30
+0.0
+ 11
+139.50000000000003
+ 21
+347.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+139.50000000000003
+ 20
+347.00000000000006
+ 30
+0.0
+ 11
+134.5
+ 21
+352.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.5
+ 20
+352.00000000000006
+ 30
+0.0
+ 11
+134.5
+ 21
+347.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+282.0
+ 20
+337.0
+ 30
+0.0
+ 11
+282.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+282.0
+ 20
+337.0
+ 30
+0.0
+ 11
+282.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+282.0
+ 20
+337.0
+ 30
+0.0
+ 11
+282.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+282.0
+ 20
+337.0
+ 30
+0.0
+ 11
+282.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+345.0050224158704
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0050224158704
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+345.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.0281737678708
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+345.0050224158704
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+342.4268406450232
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+344.0281737678708
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+340.24045318333197
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+342.4268406450232
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+337.522847498308
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+340.24045318333197
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+334.3409400611327
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+337.522847498308
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+330.7730799930546
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+334.3409400611327
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+326.9071198499986
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+330.7730799930546
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+322.83825240107285
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+326.9071198499986
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+318.6666666666667
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+322.83825240107285
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+314.4950809322606
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+318.6666666666667
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+310.42621348333483
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+314.4950809322606
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+306.5602533402788
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+310.42621348333483
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+302.9923932722008
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+306.5602533402788
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+299.8104858350255
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+302.9923932722008
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+297.09288015000146
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+299.8104858350255
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+294.9064926883102
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+297.09288015000146
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+293.3051595654626
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+294.9064926883102
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+292.328310917463
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+293.3051595654626
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+292.0
+ 20
+337.0
+ 30
+0.0
+ 11
+292.328310917463
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+292.328310917463
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+292.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+293.3051595654626
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+292.328310917463
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+294.9064926883102
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+293.3051595654626
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+297.09288015000146
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+294.9064926883102
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+299.8104858350255
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+297.09288015000146
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+302.9923932722008
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+299.8104858350255
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+306.5602533402788
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+302.9923932722008
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+310.42621348333483
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+306.5602533402788
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+314.4950809322606
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+310.42621348333483
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+318.6666666666667
+ 20
+310.33333333333337
+ 30
+0.0
+ 11
+314.4950809322606
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+322.83825240107285
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+318.6666666666667
+ 21
+310.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+326.9071198499986
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+322.83825240107285
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+330.7730799930546
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+326.9071198499986
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+334.3409400611327
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+330.7730799930546
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+337.522847498308
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+334.3409400611327
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+340.24045318333197
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+337.522847498308
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+342.4268406450232
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+340.24045318333197
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+344.0281737678708
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+342.4268406450232
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+345.0050224158704
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+344.0281737678708
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+355.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+355.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+355.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+355.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+418.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+418.3383557492038
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+418.3383557492038
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+418.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+417.3615071012042
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+418.3383557492038
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+415.7601739783566
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+417.3615071012042
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+413.57378651666534
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+415.7601739783566
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+410.8561808316413
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+413.57378651666534
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+407.67427339446607
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+410.8561808316413
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+404.106413326388
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+407.67427339446607
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.24045318333197
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+404.106413326388
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+396.1715857344062
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+400.24045318333197
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+392.0000000000001
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+396.1715857344062
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+387.82841426559395
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+392.0000000000001
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+383.7595468166682
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+387.82841426559395
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+379.8935866736122
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+383.7595468166682
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+376.32572660553416
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+379.8935866736122
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+373.14381916835885
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+376.32572660553416
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+370.42621348333483
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+373.14381916835885
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+368.2398260216436
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+370.42621348333483
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+366.638492898796
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+368.2398260216436
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+365.66164425079637
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+366.638492898796
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+365.3333333333334
+ 20
+337.0
+ 30
+0.0
+ 11
+365.66164425079637
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+365.66164425079637
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+365.3333333333334
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+366.638492898796
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+365.66164425079637
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+368.2398260216436
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+366.638492898796
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+370.42621348333483
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+368.2398260216436
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+373.14381916835885
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+370.42621348333483
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+376.32572660553416
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+373.14381916835885
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+379.8935866736122
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+376.32572660553416
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+383.7595468166682
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+379.8935866736122
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+387.82841426559395
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+383.7595468166682
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+392.0000000000001
+ 20
+310.33333333333337
+ 30
+0.0
+ 11
+387.82841426559395
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+396.1715857344062
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+392.0000000000001
+ 21
+310.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+400.24045318333197
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+396.1715857344062
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+404.106413326388
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+400.24045318333197
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+407.67427339446607
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+404.106413326388
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+410.8561808316413
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+407.67427339446607
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+413.57378651666534
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+410.8561808316413
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+415.7601739783566
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+413.57378651666534
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+417.3615071012042
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+415.7601739783566
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+418.3383557492038
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+417.3615071012042
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+428.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+492.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+491.67168908253717
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+491.67168908253717
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+492.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+490.6948404345376
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+491.67168908253717
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+489.09350731168996
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+490.6948404345376
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+486.90711984999876
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+489.09350731168996
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.18951416497475
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+486.90711984999876
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+481.00760672779944
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+484.18951416497475
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+477.4397466597214
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+481.00760672779944
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+473.5737865166654
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+477.4397466597214
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+469.50491906773965
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+473.5737865166654
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+465.3333333333335
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+469.50491906773965
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+461.1617475989273
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+465.3333333333335
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+457.0928801500016
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+461.1617475989273
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+453.2269200069456
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+457.0928801500016
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+449.65905993886753
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+453.2269200069456
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+446.4771525016922
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+449.65905993886753
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+443.7595468166682
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+446.4771525016922
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+441.573159354977
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+443.7595468166682
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+439.9718262321294
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+441.573159354977
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.9949775841298
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+439.9718262321294
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+438.9949775841298
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.9949775841298
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+438.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+439.9718262321294
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+438.9949775841298
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+441.573159354977
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+439.9718262321294
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+443.7595468166682
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+441.573159354977
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+446.4771525016922
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+443.7595468166682
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+449.65905993886753
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+446.4771525016922
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+453.2269200069456
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+449.65905993886753
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+457.0928801500016
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+453.2269200069456
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+461.1617475989273
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+457.0928801500016
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+465.3333333333335
+ 20
+310.33333333333337
+ 30
+0.0
+ 11
+461.1617475989273
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+469.50491906773965
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+465.3333333333335
+ 21
+310.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+473.5737865166654
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+469.50491906773965
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+477.4397466597214
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+473.5737865166654
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+481.00760672779944
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+477.4397466597214
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+484.18951416497475
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+481.00760672779944
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+486.90711984999876
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+484.18951416497475
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+489.09350731168996
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+486.90711984999876
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+490.6948404345376
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+489.09350731168996
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+491.67168908253717
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+490.6948404345376
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+502.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+502.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+502.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+502.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.3333333333334
+ 20
+337.0
+ 30
+0.0
+ 11
+565.0050224158704
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.0050224158704
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+565.3333333333334
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+564.0281737678708
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+565.0050224158704
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+562.4268406450233
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+564.0281737678708
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.2404531833321
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+562.4268406450233
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+557.5228474983081
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+560.2404531833321
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+554.3409400611328
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+557.5228474983081
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+550.7730799930548
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+554.3409400611328
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.9071198499987
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+550.7730799930548
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+542.838252401073
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+546.9071198499987
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+538.6666666666669
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+542.838252401073
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+534.4950809322607
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+538.6666666666669
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+530.4262134833349
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+534.4950809322607
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+526.5602533402789
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+530.4262134833349
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+522.992393272201
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+526.5602533402789
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+519.8104858350256
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+522.992393272201
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+517.0928801500016
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+519.8104858350256
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+514.9064926883103
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+517.0928801500016
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+513.3051595654628
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+514.9064926883103
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+512.3283109174631
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+513.3051595654628
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+512.0000000000002
+ 20
+337.0
+ 30
+0.0
+ 11
+512.3283109174631
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+512.3283109174631
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+512.0000000000002
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+513.3051595654628
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+512.3283109174631
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+514.9064926883102
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+513.3051595654628
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+517.0928801500016
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+514.9064926883102
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+519.8104858350256
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+517.0928801500016
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+522.992393272201
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+519.8104858350256
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+526.5602533402789
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+522.992393272201
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+530.4262134833349
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+526.5602533402789
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+534.4950809322607
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+530.4262134833349
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+538.6666666666669
+ 20
+310.33333333333337
+ 30
+0.0
+ 11
+534.4950809322607
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+542.838252401073
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+538.6666666666669
+ 21
+310.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.9071198499987
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+542.838252401073
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+550.7730799930548
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+546.9071198499987
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+554.3409400611328
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+550.7730799930548
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+557.5228474983081
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+554.3409400611328
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.2404531833321
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+557.5228474983081
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+562.4268406450232
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+560.2404531833321
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+564.0281737678708
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+562.4268406450232
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.0050224158704
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+564.0281737678708
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/FourWheelCar/graph-autofold-graph.dxf b/rocolib/builders/output/FourWheelCar/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..5d9624e052643fcc57cbe2dc501042807dbfff5a
--- /dev/null
+++ b/rocolib/builders/output/FourWheelCar/graph-autofold-graph.dxf
@@ -0,0 +1,20036 @@
+  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
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+142.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+142.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+142.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+202.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+179.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+136.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+136.0
+ 30
+0.0
+ 11
+166.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+166.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+202.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+136.0
+ 30
+0.0
+ 11
+166.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+179.00000000000003
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+66.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+66.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+66.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+66.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+70.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+93.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+138.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+138.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+112.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+73.0
+ 30
+0.0
+ 11
+99.0
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+99.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+112.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+99.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+99.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+0.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+151.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+73.0
+ 30
+0.0
+ 11
+157.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+157.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+73.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+151.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+136.0
+ 30
+0.0
+ 11
+157.0
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+157.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+136.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+10.000000000000002
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+136.0
+ 30
+0.0
+ 11
+0.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+136.0
+ 30
+0.0
+ 11
+0.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+166.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+202.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+262.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+262.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+188.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.0
+ 20
+188.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+188.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+262.0
+ 21
+188.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+262.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+272.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+272.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+226.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+179.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+179.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+160.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.0
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.0
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+440.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+440.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+440.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+440.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.00000000000001
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+121.00000000000001
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00000000000001
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00000000000001
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.00000000000001
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+142.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+132.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+132.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.50000000000003
+ 20
+319.75000000000006
+ 30
+0.0
+ 11
+142.50000000000003
+ 21
+316.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.50000000000003
+ 20
+316.75000000000006
+ 30
+0.0
+ 11
+145.5
+ 21
+316.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.5
+ 20
+316.75000000000006
+ 30
+0.0
+ 11
+145.5
+ 21
+319.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.5
+ 20
+319.75000000000006
+ 30
+0.0
+ 11
+142.50000000000003
+ 21
+319.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+318.75
+ 30
+0.0
+ 11
+163.5
+ 21
+317.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+317.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+317.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+317.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+318.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+318.75
+ 30
+0.0
+ 11
+163.5
+ 21
+318.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+323.75
+ 30
+0.0
+ 11
+143.5
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+322.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+143.5
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+323.75
+ 30
+0.0
+ 11
+163.5
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+322.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+163.5
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+327.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+327.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+332.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+332.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+336.25
+ 30
+0.0
+ 11
+143.5
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+143.5
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+336.25
+ 30
+0.0
+ 11
+163.5
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+163.5
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+341.25
+ 30
+0.0
+ 11
+143.5
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+143.5
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+341.25
+ 30
+0.0
+ 11
+163.5
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+163.5
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+346.25
+ 30
+0.0
+ 11
+143.5
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+345.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+143.5
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+346.25
+ 30
+0.0
+ 11
+163.5
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+345.25
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+163.5
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+350.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+350.25
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+356.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+355.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+355.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+355.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+355.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+356.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+356.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+356.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+162.50000000000003
+ 20
+357.25000000000006
+ 30
+0.0
+ 11
+162.50000000000003
+ 21
+354.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+162.50000000000003
+ 20
+354.25000000000006
+ 30
+0.0
+ 11
+165.50000000000003
+ 21
+354.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.50000000000003
+ 20
+354.25000000000006
+ 30
+0.0
+ 11
+165.50000000000003
+ 21
+357.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.50000000000003
+ 20
+357.25000000000006
+ 30
+0.0
+ 11
+162.50000000000003
+ 21
+357.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.11428571428573
+ 20
+361.00000000000006
+ 30
+0.0
+ 11
+179.11428571428573
+ 21
+343.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.11428571428573
+ 20
+343.00000000000006
+ 30
+0.0
+ 11
+199.6857142857143
+ 21
+343.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+199.6857142857143
+ 20
+343.00000000000006
+ 30
+0.0
+ 11
+199.6857142857143
+ 21
+361.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+199.6857142857143
+ 20
+361.00000000000006
+ 30
+0.0
+ 11
+179.11428571428573
+ 21
+361.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+294.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+294.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+294.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+271.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+271.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+271.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+271.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+294.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.91666666666666
+ 20
+273.75
+ 30
+0.0
+ 11
+142.91666666666666
+ 21
+268.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.91666666666666
+ 20
+268.25000000000006
+ 30
+0.0
+ 11
+142.41666666666669
+ 21
+268.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.41666666666669
+ 20
+268.25000000000006
+ 30
+0.0
+ 11
+142.41666666666669
+ 21
+273.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.41666666666669
+ 20
+273.75
+ 30
+0.0
+ 11
+142.91666666666666
+ 21
+273.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+279.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+293.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+293.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+293.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+293.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+279.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+279.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+279.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+224.50000000000003
+ 30
+0.0
+ 11
+115.75000000000001
+ 21
+224.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.75000000000001
+ 20
+224.50000000000003
+ 30
+0.0
+ 11
+115.75000000000001
+ 21
+221.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.75000000000001
+ 20
+221.50000000000003
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+221.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+221.50000000000003
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+224.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+116.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+116.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+117.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+117.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+202.5
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+202.5
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+145.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+202.5
+ 30
+0.0
+ 11
+145.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+147.75
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+202.5
+ 30
+0.0
+ 11
+147.75
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+150.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+202.5
+ 30
+0.0
+ 11
+150.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+152.75
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+202.5
+ 30
+0.0
+ 11
+152.75
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+154.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+154.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+154.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+154.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+155.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+155.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+156.25000000000003
+ 20
+204.50000000000003
+ 30
+0.0
+ 11
+153.25000000000003
+ 21
+204.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.25000000000003
+ 20
+204.50000000000003
+ 30
+0.0
+ 11
+153.25000000000003
+ 21
+201.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.25000000000003
+ 20
+201.50000000000003
+ 30
+0.0
+ 11
+156.25000000000003
+ 21
+201.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+156.25000000000003
+ 20
+201.50000000000003
+ 30
+0.0
+ 11
+156.25000000000003
+ 21
+204.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.44000000000001
+ 20
+262.2100000000001
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+263.29
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.44000000000001
+ 20
+263.29
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+263.29
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.44000000000001
+ 20
+263.29
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+262.2100000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.44000000000001
+ 20
+262.2100000000001
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+262.2100000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.44000000000001
+ 20
+229.71
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+230.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.44000000000001
+ 20
+230.79000000000005
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+230.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.44000000000001
+ 20
+230.79000000000005
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+229.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.44000000000001
+ 20
+229.71
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+229.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.44000000000001
+ 20
+205.48000000000002
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+219.52
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.44000000000001
+ 20
+219.52
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+219.52
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.44000000000001
+ 20
+219.52
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+205.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.44000000000001
+ 20
+205.48000000000002
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+205.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+261.00000000000006
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+261.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+261.00000000000006
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+238.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+238.00000000000003
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+238.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+238.00000000000003
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+261.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+242.1136363636364
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+254.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+254.43181818181822
+ 30
+0.0
+ 11
+77.25
+ 21
+254.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+254.43181818181822
+ 30
+0.0
+ 11
+77.25
+ 21
+242.1136363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+242.1136363636364
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+242.1136363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+212.56818181818184
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+224.88636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+224.88636363636365
+ 30
+0.0
+ 11
+77.25
+ 21
+224.88636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+224.88636363636365
+ 30
+0.0
+ 11
+77.25
+ 21
+212.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+212.56818181818184
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+212.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+141.0
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+141.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+141.0
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+164.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+164.0
+ 30
+0.0
+ 11
+166.065
+ 21
+164.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+164.0
+ 30
+0.0
+ 11
+166.065
+ 21
+141.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+159.88636363636363
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+147.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+147.56818181818184
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+147.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+147.56818181818184
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+159.88636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+159.88636363636363
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+159.88636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+189.43181818181822
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+177.11363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+177.11363636363637
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+177.11363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+177.11363636363637
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+189.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+189.43181818181822
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+189.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.33333333333334
+ 20
+68.50000000000001
+ 30
+0.0
+ 11
+194.33333333333334
+ 21
+73.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.33333333333334
+ 20
+73.50000000000001
+ 30
+0.0
+ 11
+186.66666666666666
+ 21
+73.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.66666666666666
+ 20
+73.50000000000001
+ 30
+0.0
+ 11
+186.66666666666666
+ 21
+68.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+164.0
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+164.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+164.0
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+141.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+141.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+141.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+141.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+164.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.58333333333336
+ 20
+143.75
+ 30
+0.0
+ 11
+77.41666666666667
+ 21
+143.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.41666666666667
+ 20
+143.75
+ 30
+0.0
+ 11
+77.41666666666667
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.41666666666667
+ 20
+143.25
+ 30
+0.0
+ 11
+85.58333333333336
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.58333333333336
+ 20
+143.25
+ 30
+0.0
+ 11
+85.58333333333336
+ 21
+143.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+108.00000000000001
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+108.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+108.00000000000001
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+131.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+131.0
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+131.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+131.0
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+108.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.08333333333337
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+129.08333333333337
+ 21
+133.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.08333333333337
+ 20
+133.75000000000003
+ 30
+0.0
+ 11
+129.58333333333337
+ 21
+133.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.58333333333337
+ 20
+133.75000000000003
+ 30
+0.0
+ 11
+129.58333333333337
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.58333333333337
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+129.08333333333337
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.75000000000001
+ 20
+80.08333333333333
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+87.91666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.75000000000001
+ 20
+87.91666666666667
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+87.91666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.25000000000001
+ 20
+87.91666666666667
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+80.08333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.25000000000001
+ 20
+80.08333333333333
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+80.08333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.75000000000001
+ 20
+17.083333333333318
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+24.916666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.75000000000001
+ 20
+24.916666666666686
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+24.916666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.25000000000001
+ 20
+24.916666666666686
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+17.083333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.25000000000001
+ 20
+17.083333333333318
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+17.083333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.33333333333337
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+133.66666666666669
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.66666666666669
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+133.66666666666669
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.66666666666669
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+129.33333333333337
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+158.50000000000003
+ 20
+24.666666666666686
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+24.666666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.50000000000003
+ 20
+24.666666666666686
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+17.333333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.50000000000003
+ 20
+17.333333333333318
+ 30
+0.0
+ 11
+158.50000000000003
+ 21
+17.333333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+59.58333333333332
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+45.416666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+45.416666666666686
+ 30
+0.0
+ 11
+149.75
+ 21
+45.416666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+45.416666666666686
+ 30
+0.0
+ 11
+149.75
+ 21
+59.58333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+59.58333333333332
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+59.58333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+37.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+37.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+37.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+37.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+45.66666666666669
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+40.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+40.66666666666669
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+45.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+45.66666666666669
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+59.33333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+59.33333333333332
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+64.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+64.33333333333333
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+59.33333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+158.50000000000003
+ 20
+87.66666666666666
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+87.66666666666666
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.50000000000003
+ 20
+87.66666666666666
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+80.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.50000000000003
+ 20
+80.33333333333333
+ 30
+0.0
+ 11
+158.50000000000003
+ 21
+80.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+122.58333333333336
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+108.41666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+108.41666666666667
+ 30
+0.0
+ 11
+149.75
+ 21
+108.41666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+108.41666666666667
+ 30
+0.0
+ 11
+149.75
+ 21
+122.58333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+122.58333333333336
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+122.58333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+108.66666666666667
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+103.66666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+103.66666666666667
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+108.66666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+108.66666666666667
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+122.33333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+122.33333333333336
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+127.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+127.33333333333333
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+122.33333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.750000000000004
+ 20
+191.0
+ 30
+0.0
+ 11
+50.25000000000001
+ 21
+191.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.25000000000001
+ 20
+191.0
+ 30
+0.0
+ 11
+50.25000000000001
+ 21
+191.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.25000000000001
+ 20
+191.50000000000003
+ 30
+0.0
+ 11
+29.750000000000004
+ 21
+191.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.750000000000004
+ 20
+191.50000000000003
+ 30
+0.0
+ 11
+29.750000000000004
+ 21
+191.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+147.8181818181818
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+147.8181818181818
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+147.8181818181818
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+159.63636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+159.63636363636363
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+159.63636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+177.3636363636364
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+177.3636363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+177.3636363636364
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+189.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+189.18181818181822
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+189.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+196.60000000000002
+ 20
+262.2100000000001
+ 30
+0.0
+ 11
+196.60000000000002
+ 21
+263.29
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+196.60000000000002
+ 20
+263.29
+ 30
+0.0
+ 11
+178.6
+ 21
+263.29
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.6
+ 20
+263.29
+ 30
+0.0
+ 11
+178.6
+ 21
+262.2100000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.6
+ 20
+262.2100000000001
+ 30
+0.0
+ 11
+196.60000000000002
+ 21
+262.2100000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+196.60000000000002
+ 20
+229.71
+ 30
+0.0
+ 11
+196.60000000000002
+ 21
+230.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+196.60000000000002
+ 20
+230.79000000000005
+ 30
+0.0
+ 11
+178.6
+ 21
+230.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.6
+ 20
+230.79000000000005
+ 30
+0.0
+ 11
+178.6
+ 21
+229.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.6
+ 20
+229.71
+ 30
+0.0
+ 11
+196.60000000000002
+ 21
+229.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.20000000000002
+ 20
+205.48000000000002
+ 30
+0.0
+ 11
+200.20000000000002
+ 21
+219.52
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.20000000000002
+ 20
+219.52
+ 30
+0.0
+ 11
+175.0
+ 21
+219.52
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.0
+ 20
+219.52
+ 30
+0.0
+ 11
+175.0
+ 21
+205.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.0
+ 20
+205.48000000000002
+ 30
+0.0
+ 11
+200.20000000000002
+ 21
+205.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+238.00000000000003
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+238.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+238.00000000000003
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+261.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+261.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+261.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+261.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+238.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+214.75000000000003
+ 20
+224.50000000000003
+ 30
+0.0
+ 11
+211.75
+ 21
+224.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+211.75
+ 20
+224.50000000000003
+ 30
+0.0
+ 11
+211.75
+ 21
+221.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+211.75
+ 20
+221.50000000000003
+ 30
+0.0
+ 11
+214.75000000000003
+ 21
+221.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+214.75000000000003
+ 20
+221.50000000000003
+ 30
+0.0
+ 11
+214.75000000000003
+ 21
+224.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+213.75
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+212.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+212.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+212.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+212.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+213.75
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+213.75
+ 20
+202.5
+ 30
+0.0
+ 11
+213.75
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+215.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+215.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+216.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+216.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+215.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+215.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+216.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.25
+ 20
+202.5
+ 30
+0.0
+ 11
+216.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+218.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+217.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+217.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+217.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+217.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+218.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+218.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+218.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+218.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+217.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+217.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+217.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+217.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+218.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+218.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+218.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+220.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+220.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+221.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+221.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+220.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+220.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+221.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+221.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+222.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+222.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+223.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+223.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+222.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+222.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+223.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+223.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+225.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+225.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+225.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+225.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+226.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+226.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+225.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+225.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+225.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+225.25
+ 20
+202.5
+ 30
+0.0
+ 11
+226.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+226.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+227.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+227.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+228.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+228.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+227.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+227.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+228.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+228.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+230.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+230.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+231.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+231.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+230.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+230.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+231.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+231.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+232.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+232.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+233.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+233.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+232.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+232.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+233.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+233.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+236.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+235.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+235.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+235.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+235.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+236.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+236.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+236.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+236.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+235.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+235.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+235.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+235.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+236.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+236.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+236.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+237.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+237.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+237.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+237.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+238.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+238.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+237.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+237.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+237.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+237.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+238.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+238.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+240.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+240.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+241.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+241.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+240.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+240.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+241.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+241.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+242.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+242.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+243.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+243.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+242.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+242.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+243.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+243.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+246.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+245.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+245.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+246.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+246.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+246.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+246.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+245.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+245.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+246.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+246.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+246.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+248.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+247.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+247.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+248.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+248.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+248.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+248.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+247.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+247.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+248.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+248.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+248.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+250.25000000000006
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+250.25000000000006
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+250.25000000000006
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+250.25000000000006
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+251.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+251.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+252.25000000000003
+ 20
+204.50000000000003
+ 30
+0.0
+ 11
+249.25000000000003
+ 21
+204.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+249.25000000000003
+ 20
+204.50000000000003
+ 30
+0.0
+ 11
+249.25000000000003
+ 21
+201.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+249.25000000000003
+ 20
+201.50000000000003
+ 30
+0.0
+ 11
+252.25000000000003
+ 21
+201.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+252.25000000000003
+ 20
+201.50000000000003
+ 30
+0.0
+ 11
+252.25000000000003
+ 21
+204.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.00000000000003
+ 20
+191.25
+ 30
+0.0
+ 11
+248.50000000000003
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+248.50000000000003
+ 20
+191.25
+ 30
+0.0
+ 11
+242.00000000000003
+ 21
+197.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.00000000000003
+ 20
+197.75
+ 30
+0.0
+ 11
+222.00000000000003
+ 21
+197.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.00000000000003
+ 20
+197.75
+ 30
+0.0
+ 11
+215.50000000000003
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.50000000000003
+ 20
+191.25
+ 30
+0.0
+ 11
+222.00000000000003
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.50000000000006
+ 20
+254.18181818181822
+ 30
+0.0
+ 11
+264.5
+ 21
+254.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+254.18181818181822
+ 30
+0.0
+ 11
+264.5
+ 21
+242.3636363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+242.3636363636364
+ 30
+0.0
+ 11
+269.50000000000006
+ 21
+242.3636363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.50000000000006
+ 20
+224.63636363636365
+ 30
+0.0
+ 11
+264.5
+ 21
+224.63636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+224.63636363636365
+ 30
+0.0
+ 11
+264.5
+ 21
+212.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+212.81818181818184
+ 30
+0.0
+ 11
+269.50000000000006
+ 21
+212.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+293.33333333333337
+ 30
+0.0
+ 11
+186.5
+ 21
+298.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+298.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+293.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+293.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+279.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+279.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+274.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+274.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+279.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.5
+ 20
+319.75000000000006
+ 30
+0.0
+ 11
+202.5
+ 21
+316.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.5
+ 20
+316.75000000000006
+ 30
+0.0
+ 11
+205.50000000000003
+ 21
+316.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.50000000000003
+ 20
+316.75000000000006
+ 30
+0.0
+ 11
+205.50000000000003
+ 21
+319.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.50000000000003
+ 20
+319.75000000000006
+ 30
+0.0
+ 11
+202.5
+ 21
+319.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+318.75
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+317.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+317.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+317.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+317.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+318.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+318.75
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+318.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+356.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+355.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+355.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+355.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+355.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+356.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+356.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+356.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.50000000000003
+ 20
+357.25000000000006
+ 30
+0.0
+ 11
+222.50000000000003
+ 21
+354.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.50000000000003
+ 20
+354.25000000000006
+ 30
+0.0
+ 11
+225.50000000000003
+ 21
+354.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+225.50000000000003
+ 20
+354.25000000000006
+ 30
+0.0
+ 11
+225.50000000000003
+ 21
+357.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+225.50000000000003
+ 20
+357.25000000000006
+ 30
+0.0
+ 11
+222.50000000000003
+ 21
+357.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.55428571428573
+ 20
+362.7
+ 30
+0.0
+ 11
+231.55428571428573
+ 21
+349.70000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.55428571428573
+ 20
+349.70000000000005
+ 30
+0.0
+ 11
+252.1257142857143
+ 21
+349.70000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+252.1257142857143
+ 20
+349.70000000000005
+ 30
+0.0
+ 11
+252.1257142857143
+ 21
+362.7
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+252.1257142857143
+ 20
+362.7
+ 30
+0.0
+ 11
+231.55428571428573
+ 21
+362.7
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.25000000000003
+ 20
+347.25000000000006
+ 30
+0.0
+ 11
+254.25000000000003
+ 21
+326.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.25000000000003
+ 20
+326.75000000000006
+ 30
+0.0
+ 11
+254.75000000000006
+ 21
+326.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.75000000000006
+ 20
+326.75000000000006
+ 30
+0.0
+ 11
+254.75000000000006
+ 21
+347.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.75000000000006
+ 20
+347.25000000000006
+ 30
+0.0
+ 11
+254.25000000000003
+ 21
+347.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+403.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+403.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+403.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+380.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+380.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+380.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+380.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+403.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.25000000000003
+ 20
+422.9166666666667
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+415.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.25000000000003
+ 20
+415.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+415.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.75
+ 20
+415.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+422.9166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.75
+ 20
+422.9166666666667
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+422.9166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.66666666666669
+ 20
+432.5
+ 30
+0.0
+ 11
+138.33333333333334
+ 21
+432.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.33333333333334
+ 20
+432.5
+ 30
+0.0
+ 11
+138.33333333333334
+ 21
+437.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.33333333333334
+ 20
+437.50000000000006
+ 30
+0.0
+ 11
+142.66666666666669
+ 21
+437.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.50000000000001
+ 20
+415.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+415.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.50000000000001
+ 20
+415.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+422.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.50000000000001
+ 20
+422.6666666666667
+ 30
+0.0
+ 11
+113.50000000000001
+ 21
+422.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+380.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+394.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+394.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+394.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+394.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+380.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+380.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+380.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+394.33333333333337
+ 30
+0.0
+ 11
+186.5
+ 21
+399.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+399.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+394.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+394.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+380.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+380.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+375.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+375.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+380.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.5
+ 20
+327.0
+ 30
+0.0
+ 11
+134.5
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.5
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+139.50000000000003
+ 21
+327.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.50000000000003
+ 20
+327.0
+ 30
+0.0
+ 11
+139.50000000000003
+ 21
+347.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.50000000000003
+ 20
+347.00000000000006
+ 30
+0.0
+ 11
+134.5
+ 21
+352.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.5
+ 20
+352.00000000000006
+ 30
+0.0
+ 11
+134.5
+ 21
+347.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+337.0
+ 30
+0.0
+ 11
+282.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+337.0
+ 30
+0.0
+ 11
+282.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+337.0
+ 30
+0.0
+ 11
+282.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+337.0
+ 30
+0.0
+ 11
+282.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+345.0050224158704
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0050224158704
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+345.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0281737678708
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+345.0050224158704
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+342.4268406450232
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+344.0281737678708
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+340.24045318333197
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+342.4268406450232
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.522847498308
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+340.24045318333197
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.3409400611327
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+337.522847498308
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+330.7730799930546
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+334.3409400611327
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+326.9071198499986
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+330.7730799930546
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+322.83825240107285
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+326.9071198499986
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+318.6666666666667
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+322.83825240107285
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+314.4950809322606
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+318.6666666666667
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+310.42621348333483
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+314.4950809322606
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+306.5602533402788
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+310.42621348333483
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+302.9923932722008
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+306.5602533402788
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+299.8104858350255
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+302.9923932722008
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+297.09288015000146
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+299.8104858350255
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+294.9064926883102
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+297.09288015000146
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+293.3051595654626
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+294.9064926883102
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+292.328310917463
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+293.3051595654626
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+292.0
+ 20
+337.0
+ 30
+0.0
+ 11
+292.328310917463
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+292.328310917463
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+292.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+293.3051595654626
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+292.328310917463
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+294.9064926883102
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+293.3051595654626
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+297.09288015000146
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+294.9064926883102
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+299.8104858350255
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+297.09288015000146
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+302.9923932722008
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+299.8104858350255
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+306.5602533402788
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+302.9923932722008
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+310.42621348333483
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+306.5602533402788
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+314.4950809322606
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+310.42621348333483
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+318.6666666666667
+ 20
+310.33333333333337
+ 30
+0.0
+ 11
+314.4950809322606
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+322.83825240107285
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+318.6666666666667
+ 21
+310.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+326.9071198499986
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+322.83825240107285
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+330.7730799930546
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+326.9071198499986
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.3409400611327
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+330.7730799930546
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.522847498308
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+334.3409400611327
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+340.24045318333197
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+337.522847498308
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+342.4268406450232
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+340.24045318333197
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0281737678708
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+342.4268406450232
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0050224158704
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+344.0281737678708
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+418.3383557492038
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.3383557492038
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+418.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+417.3615071012042
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+418.3383557492038
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.7601739783566
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+417.3615071012042
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+413.57378651666534
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+415.7601739783566
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+410.8561808316413
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+413.57378651666534
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.67427339446607
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+410.8561808316413
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+404.106413326388
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+407.67427339446607
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.24045318333197
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+404.106413326388
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+396.1715857344062
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+400.24045318333197
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+392.0000000000001
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+396.1715857344062
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+387.82841426559395
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+392.0000000000001
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+383.7595468166682
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+387.82841426559395
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.8935866736122
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+383.7595468166682
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+376.32572660553416
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+379.8935866736122
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+373.14381916835885
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+376.32572660553416
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+370.42621348333483
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+373.14381916835885
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.2398260216436
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+370.42621348333483
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.638492898796
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+368.2398260216436
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.66164425079637
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+366.638492898796
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.3333333333334
+ 20
+337.0
+ 30
+0.0
+ 11
+365.66164425079637
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.66164425079637
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+365.3333333333334
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.638492898796
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+365.66164425079637
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.2398260216436
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+366.638492898796
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+370.42621348333483
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+368.2398260216436
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+373.14381916835885
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+370.42621348333483
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+376.32572660553416
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+373.14381916835885
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.8935866736122
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+376.32572660553416
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+383.7595468166682
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+379.8935866736122
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+387.82841426559395
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+383.7595468166682
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+392.0000000000001
+ 20
+310.33333333333337
+ 30
+0.0
+ 11
+387.82841426559395
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+396.1715857344062
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+392.0000000000001
+ 21
+310.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.24045318333197
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+396.1715857344062
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+404.106413326388
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+400.24045318333197
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.67427339446607
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+404.106413326388
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+410.8561808316413
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+407.67427339446607
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+413.57378651666534
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+410.8561808316413
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.7601739783566
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+413.57378651666534
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+417.3615071012042
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+415.7601739783566
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.3383557492038
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+417.3615071012042
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+492.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+491.67168908253717
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+491.67168908253717
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+492.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.6948404345376
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+491.67168908253717
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.09350731168996
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+490.6948404345376
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+486.90711984999876
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+489.09350731168996
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.18951416497475
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+486.90711984999876
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+481.00760672779944
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+484.18951416497475
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+477.4397466597214
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+481.00760672779944
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+473.5737865166654
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+477.4397466597214
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+469.50491906773965
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+473.5737865166654
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+465.3333333333335
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+469.50491906773965
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+461.1617475989273
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+465.3333333333335
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+457.0928801500016
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+461.1617475989273
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+453.2269200069456
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+457.0928801500016
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+449.65905993886753
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+453.2269200069456
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+446.4771525016922
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+449.65905993886753
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+443.7595468166682
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+446.4771525016922
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+441.573159354977
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+443.7595468166682
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+439.9718262321294
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+441.573159354977
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.9949775841298
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+439.9718262321294
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+438.9949775841298
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.9949775841298
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+438.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+439.9718262321294
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+438.9949775841298
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+441.573159354977
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+439.9718262321294
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+443.7595468166682
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+441.573159354977
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+446.4771525016922
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+443.7595468166682
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+449.65905993886753
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+446.4771525016922
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+453.2269200069456
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+449.65905993886753
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+457.0928801500016
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+453.2269200069456
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+461.1617475989273
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+457.0928801500016
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+465.3333333333335
+ 20
+310.33333333333337
+ 30
+0.0
+ 11
+461.1617475989273
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+469.50491906773965
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+465.3333333333335
+ 21
+310.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+473.5737865166654
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+469.50491906773965
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+477.4397466597214
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+473.5737865166654
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+481.00760672779944
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+477.4397466597214
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.18951416497475
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+481.00760672779944
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+486.90711984999876
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+484.18951416497475
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.09350731168996
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+486.90711984999876
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.6948404345376
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+489.09350731168996
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+491.67168908253717
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+490.6948404345376
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.3333333333334
+ 20
+337.0
+ 30
+0.0
+ 11
+565.0050224158704
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.0050224158704
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+565.3333333333334
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+564.0281737678708
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+565.0050224158704
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+562.4268406450233
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+564.0281737678708
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2404531833321
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+562.4268406450233
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+557.5228474983081
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+560.2404531833321
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+554.3409400611328
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+557.5228474983081
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+550.7730799930548
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+554.3409400611328
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.9071198499987
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+550.7730799930548
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+542.838252401073
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+546.9071198499987
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+538.6666666666669
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+542.838252401073
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+534.4950809322607
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+538.6666666666669
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+530.4262134833349
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+534.4950809322607
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+526.5602533402789
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+530.4262134833349
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+522.992393272201
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+526.5602533402789
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+519.8104858350256
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+522.992393272201
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+517.0928801500016
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+519.8104858350256
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+514.9064926883103
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+517.0928801500016
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+513.3051595654628
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+514.9064926883103
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+512.3283109174631
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+513.3051595654628
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+512.0000000000002
+ 20
+337.0
+ 30
+0.0
+ 11
+512.3283109174631
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+512.3283109174631
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+512.0000000000002
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+513.3051595654628
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+512.3283109174631
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+514.9064926883102
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+513.3051595654628
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+517.0928801500016
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+514.9064926883102
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+519.8104858350256
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+517.0928801500016
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+522.992393272201
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+519.8104858350256
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+526.5602533402789
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+522.992393272201
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+530.4262134833349
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+526.5602533402789
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+534.4950809322607
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+530.4262134833349
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+538.6666666666669
+ 20
+310.33333333333337
+ 30
+0.0
+ 11
+534.4950809322607
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+542.838252401073
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+538.6666666666669
+ 21
+310.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.9071198499987
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+542.838252401073
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+550.7730799930548
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+546.9071198499987
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+554.3409400611328
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+550.7730799930548
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+557.5228474983081
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+554.3409400611328
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2404531833321
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+557.5228474983081
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+562.4268406450232
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+560.2404531833321
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+564.0281737678708
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+562.4268406450232
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.0050224158704
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+564.0281737678708
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/FourWheelCar/graph-lasercutter.svg b/rocolib/builders/output/FourWheelCar/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..1d4330fb9214ca4be62c1a996145b4602d8c2dca
--- /dev/null
+++ b/rocolib/builders/output/FourWheelCar/graph-lasercutter.svg
@@ -0,0 +1,1059 @@
+<?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="440.000000mm" version="1.1" viewBox="0.000000 0.000000 565.333333 440.000000" width="565.333333mm">
+  <defs/>
+  <line stroke="#000000" x1="166.0" x2="142.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0" x2="166.0" y1="307.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="142.00000000000003" x2="166.0" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="142.00000000000003" x2="142.00000000000003" y1="367.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="202.00000000000003" x2="202.00000000000003" y1="307.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0" x2="179.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="179.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="166.0" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0" x2="166.0" y1="307.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="166.0" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.00000000000003" x2="179.00000000000003" y1="266.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="166.0" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="147.00000000000003" y1="307.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="166.0" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="147.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.00000000000003" x2="134.00000000000003" y1="307.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="134.00000000000003" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="134.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="266.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="115.00000000000001" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="147.00000000000003" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="106.00000000000001" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="166.0" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="106.00000000000001" x2="106.00000000000001" y1="266.00000000000006" y2="201.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0" x2="166.0" y1="266.00000000000006" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="106.00000000000001" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="201.00000000000003" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="70.00000000000001" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="166.0" x2="106.00000000000001" y1="136.0" y2="136.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0" x2="166.0" y1="136.0" y2="201.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="106.00000000000001" x2="106.00000000000001" y1="136.0" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="201.00000000000003" y2="136.0"/>
+  <line stroke="#000000" x1="166.0" x2="202.00000000000003" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="166.0" y1="136.0" y2="136.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="202.00000000000003" x2="179.00000000000003" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="166.0" x2="166.0" y1="136.0" y2="136.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.00000000000003" x2="202.00000000000003" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="136.0" y2="76.00000000000001"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="179.00000000000003" y1="76.00000000000001" y2="136.0"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="179.00000000000003" y1="66.0" y2="76.00000000000001"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="179.00000000000003" y1="66.0" y2="66.0"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="76.00000000000001" y2="66.0"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="106.00000000000001" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="136.0" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="70.00000000000001" y1="136.0" y2="136.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="106.00000000000001" x2="93.00000000000001" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="106.00000000000001" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="93.00000000000001" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="106.00000000000001" x2="106.00000000000001" y1="95.00000000000001" y2="136.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="93.00000000000001" x2="93.00000000000001" y1="136.0" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="106.00000000000001" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="125.00000000000001" y1="95.00000000000001" y2="136.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="125.00000000000001" y1="136.0" y2="136.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="138.00000000000003" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="138.00000000000003" x2="138.00000000000003" y1="95.00000000000001" y2="136.0"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="138.00000000000003" y1="136.0" y2="136.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="125.00000000000001" y1="95.00000000000001" y2="73.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="138.00000000000003" y1="73.0" y2="73.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="138.00000000000003" x2="138.00000000000003" y1="95.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="112.00000000000001" x2="125.00000000000001" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="112.00000000000001" x2="112.00000000000001" y1="95.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="112.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="99.0" x2="112.00000000000001" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="99.0" x2="99.0" y1="73.0" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="112.00000000000001" x2="99.0" y1="73.0" y2="73.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="138.00000000000003" x2="125.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="138.00000000000003" x2="138.00000000000003" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="125.00000000000001" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="125.00000000000001" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="125.00000000000001" x2="138.00000000000003" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="138.00000000000003" x2="138.00000000000003" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="112.00000000000001" x2="125.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="112.00000000000001" x2="112.00000000000001" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="112.00000000000001" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="99.0" x2="112.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="99.0" x2="99.0" y1="10.000000000000002" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="112.00000000000001" x2="99.0" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="125.00000000000001" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="125.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="138.00000000000003" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="151.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="151.00000000000003" x2="138.00000000000003" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="151.00000000000003" x2="151.00000000000003" y1="10.000000000000002" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="161.00000000000003" x2="151.00000000000003" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="161.00000000000003" x2="161.00000000000003" y1="32.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="151.00000000000003" x2="161.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="157.0" x2="138.00000000000003" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="157.0" x2="157.0" y1="73.0" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="157.0" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="125.00000000000001" x2="106.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="125.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="106.00000000000001" x2="106.00000000000001" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="106.00000000000001" x2="93.00000000000001" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="106.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="93.00000000000001" x2="93.00000000000001" y1="73.0" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="83.0" x2="93.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="83.0" x2="83.0" y1="32.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="83.0" y1="32.00000000000001" y2="32.00000000000001"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="151.00000000000003" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="151.00000000000003" x2="138.00000000000003" y1="73.0" y2="73.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="151.00000000000003" x2="151.00000000000003" y1="73.0" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="161.00000000000003" x2="151.00000000000003" y1="73.0" y2="73.0"/>
+  <line stroke="#000000" x1="161.00000000000003" x2="161.00000000000003" y1="95.00000000000001" y2="73.0"/>
+  <line stroke="#000000" x1="151.00000000000003" x2="161.00000000000003" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="157.0" x2="138.00000000000003" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="157.0" x2="157.0" y1="136.0" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="138.00000000000003" x2="157.0" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="83.0" x2="93.00000000000001" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="83.0" x2="83.0" y1="95.00000000000001" y2="136.0"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="83.0" y1="95.00000000000001" y2="95.00000000000001"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="10.000000000000002" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="70.00000000000001" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="201.00000000000003" y2="136.0"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="136.0" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="136.0" y2="136.0"/>
+  <line stroke="#000000" x1="166.0" x2="202.00000000000003" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="166.0" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="202.00000000000003" x2="202.00000000000003" y1="266.00000000000006" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="262.0" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="262.0" x2="262.0" y1="201.00000000000003" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="188.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="262.0" x2="202.00000000000003" y1="188.00000000000003" y2="188.00000000000003"/>
+  <line stroke="#000000" x1="262.0" x2="262.0" y1="201.00000000000003" y2="188.00000000000003"/>
+  <line stroke="#000000" x1="272.0" x2="262.0" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="272.0" x2="272.0" y1="266.00000000000006" y2="201.00000000000003"/>
+  <line stroke="#000000" x1="262.0" x2="272.0" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="189.0" x2="179.00000000000003" y1="266.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="189.0" x2="189.0" y1="307.00000000000006" y2="266.00000000000006"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="189.0" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="226.00000000000003" x2="202.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="226.00000000000003" x2="226.00000000000003" y1="307.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="226.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="262.0" x2="226.00000000000003" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="262.0" x2="262.0" y1="367.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#000000" x1="226.00000000000003" x2="262.0" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="202.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.00000000000003" x2="166.0" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="166.0" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="202.00000000000003" x2="202.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="179.00000000000003" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0" x2="166.0" y1="408.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.00000000000003" x2="179.00000000000003" y1="367.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="166.0" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="147.00000000000003" y1="408.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="166.0" x2="147.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="134.00000000000003" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.00000000000003" x2="134.00000000000003" y1="408.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="134.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="147.00000000000003" y1="408.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.00000000000003" x2="134.00000000000003" y1="430.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.00000000000003" x2="134.00000000000003" y1="408.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="147.00000000000003" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.00000000000003" x2="160.00000000000003" y1="408.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="160.00000000000003" y1="430.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="173.0" x2="160.00000000000003" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="173.0" x2="173.0" y1="430.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="160.00000000000003" x2="173.0" y1="430.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="147.00000000000003" x2="147.00000000000003" y1="440.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="147.00000000000003" y1="440.00000000000006" y2="440.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="134.00000000000003" y1="430.00000000000006" y2="440.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="121.00000000000001" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="121.00000000000001" x2="134.00000000000003" y1="430.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="121.00000000000001" x2="121.00000000000001" y1="430.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="111.00000000000001" x2="121.00000000000001" y1="430.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="111.00000000000001" x2="111.00000000000001" y1="408.00000000000006" y2="430.00000000000006"/>
+  <line stroke="#000000" x1="121.00000000000001" x2="111.00000000000001" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="134.00000000000003" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="367.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="134.00000000000003" x2="115.00000000000001" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="189.0" x2="179.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="189.0" x2="189.0" y1="408.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="179.00000000000003" x2="189.0" y1="408.00000000000006" y2="408.00000000000006"/>
+  <line stroke="#000000" x1="132.0" x2="142.00000000000003" y1="367.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="132.0" x2="132.0" y1="307.00000000000006" y2="367.00000000000006"/>
+  <line stroke="#000000" x1="142.00000000000003" x2="132.0" y1="307.00000000000006" y2="307.00000000000006"/>
+  <line stroke="#888888" x1="142.50000000000003" x2="142.50000000000003" y1="319.75000000000006" y2="316.75000000000006"/>
+  <line stroke="#888888" x1="142.50000000000003" x2="145.5" y1="316.75000000000006" y2="316.75000000000006"/>
+  <line stroke="#888888" x1="145.5" x2="145.5" y1="316.75000000000006" y2="319.75000000000006"/>
+  <line stroke="#888888" x1="145.5" x2="142.50000000000003" y1="319.75000000000006" y2="319.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="318.75" y2="317.75"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="317.75" y2="317.75"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="317.75" y2="318.75"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="318.75" y2="318.75"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="321.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="320.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="320.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="321.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="321.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="320.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="320.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="321.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="323.75" y2="322.75"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="322.75" y2="322.75"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="322.75" y2="323.75"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="323.75" y2="323.75"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="323.75" y2="322.75"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="322.75" y2="322.75"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="322.75" y2="323.75"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="323.75" y2="323.75"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="326.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="325.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="325.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="326.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="326.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="325.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="325.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="326.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="328.75000000000006" y2="327.75"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="327.75" y2="327.75"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="327.75" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="328.75000000000006" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="328.75000000000006" y2="327.75"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="327.75" y2="327.75"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="327.75" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="328.75000000000006" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="331.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="330.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="330.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="331.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="331.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="330.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="330.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="331.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="333.75000000000006" y2="332.75"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="332.75" y2="332.75"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="332.75" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="333.75000000000006" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="333.75000000000006" y2="332.75"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="332.75" y2="332.75"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="332.75" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="333.75000000000006" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="336.25" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="335.25000000000006" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="335.25000000000006" y2="336.25"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="336.25" y2="336.25"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="336.25" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="335.25000000000006" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="335.25000000000006" y2="336.25"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="336.25" y2="336.25"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="338.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="337.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="337.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="338.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="338.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="337.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="337.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="338.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="341.25" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="340.25000000000006" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="340.25000000000006" y2="341.25"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="341.25" y2="341.25"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="341.25" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="340.25000000000006" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="340.25000000000006" y2="341.25"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="341.25" y2="341.25"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="343.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="342.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="342.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="343.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="343.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="342.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="342.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="343.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="346.25" y2="345.25"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="345.25" y2="345.25"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="345.25" y2="346.25"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="346.25" y2="346.25"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="346.25" y2="345.25"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="345.25" y2="345.25"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="345.25" y2="346.25"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="346.25" y2="346.25"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="348.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="347.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="347.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="348.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="348.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="347.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="347.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="348.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="351.25000000000006" y2="350.25"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="350.25" y2="350.25"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="350.25" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="351.25000000000006" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="351.25000000000006" y2="350.25"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="350.25" y2="350.25"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="350.25" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="351.25000000000006" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="353.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="352.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="352.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="353.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="163.5" y1="353.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="163.5" x2="164.50000000000003" y1="352.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="352.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="164.50000000000003" x2="163.5" y1="353.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="143.5" x2="143.5" y1="356.25000000000006" y2="355.25"/>
+  <line stroke="#888888" x1="143.5" x2="144.50000000000003" y1="355.25" y2="355.25"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="144.50000000000003" y1="355.25" y2="356.25000000000006"/>
+  <line stroke="#888888" x1="144.50000000000003" x2="143.5" y1="356.25000000000006" y2="356.25000000000006"/>
+  <line stroke="#888888" x1="162.50000000000003" x2="162.50000000000003" y1="357.25000000000006" y2="354.25000000000006"/>
+  <line stroke="#888888" x1="162.50000000000003" x2="165.50000000000003" y1="354.25000000000006" y2="354.25000000000006"/>
+  <line stroke="#888888" x1="165.50000000000003" x2="165.50000000000003" y1="354.25000000000006" y2="357.25000000000006"/>
+  <line stroke="#888888" x1="165.50000000000003" x2="162.50000000000003" y1="357.25000000000006" y2="357.25000000000006"/>
+  <line stroke="#888888" x1="179.11428571428573" x2="179.11428571428573" y1="361.00000000000006" y2="343.00000000000006"/>
+  <line stroke="#888888" x1="179.11428571428573" x2="199.6857142857143" y1="343.00000000000006" y2="343.00000000000006"/>
+  <line stroke="#888888" x1="199.6857142857143" x2="199.6857142857143" y1="343.00000000000006" y2="361.00000000000006"/>
+  <line stroke="#888888" x1="199.6857142857143" x2="179.11428571428573" y1="361.00000000000006" y2="361.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="294.00000000000006" y2="294.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="294.00000000000006" y2="271.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="271.00000000000006" y2="271.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="271.00000000000006" y2="294.00000000000006"/>
+  <line stroke="#888888" x1="142.91666666666666" x2="142.91666666666666" y1="273.75" y2="268.25000000000006"/>
+  <line stroke="#888888" x1="142.91666666666666" x2="142.41666666666669" y1="268.25000000000006" y2="268.25000000000006"/>
+  <line stroke="#888888" x1="142.41666666666669" x2="142.41666666666669" y1="268.25000000000006" y2="273.75"/>
+  <line stroke="#888888" x1="142.41666666666669" x2="142.91666666666666" y1="273.75" y2="273.75"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="279.41666666666674" y2="293.58333333333337"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="293.58333333333337" y2="293.58333333333337"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="293.58333333333337" y2="279.41666666666674"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="279.41666666666674" y2="279.41666666666674"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="115.75000000000001" y1="224.50000000000003" y2="224.50000000000003"/>
+  <line stroke="#888888" x1="115.75000000000001" x2="115.75000000000001" y1="224.50000000000003" y2="221.50000000000003"/>
+  <line stroke="#888888" x1="115.75000000000001" x2="118.75000000000001" y1="221.50000000000003" y2="221.50000000000003"/>
+  <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="221.50000000000003" y2="224.50000000000003"/>
+  <line stroke="#888888" x1="117.75000000000001" x2="116.75000000000001" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="116.75000000000001" x2="116.75000000000001" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="116.75000000000001" x2="117.75000000000001" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="117.75000000000001" x2="117.75000000000001" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="119.25000000000001" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="119.25000000000001" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="120.25000000000001" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="120.25000000000001" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="119.25000000000001" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="119.25000000000001" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="119.25000000000001" x2="120.25000000000001" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="120.25000000000001" x2="120.25000000000001" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="121.75000000000001" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="121.75000000000001" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="122.75000000000001" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="121.75000000000001" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="121.75000000000001" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="121.75000000000001" x2="122.75000000000001" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="124.25000000000001" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="124.25000000000001" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="125.25000000000001" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="125.25000000000001" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="124.25000000000001" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="124.25000000000001" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="124.25000000000001" x2="125.25000000000001" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="125.25000000000001" x2="125.25000000000001" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="126.75000000000001" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="126.75000000000001" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="127.75000000000001" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="127.75000000000001" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="126.75000000000001" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="126.75000000000001" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="126.75000000000001" x2="127.75000000000001" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="127.75000000000001" x2="127.75000000000001" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="129.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="129.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="130.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="130.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="129.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="129.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="129.25000000000003" x2="130.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="130.25000000000003" x2="130.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="131.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="131.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="132.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="132.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="131.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="131.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="131.75000000000003" x2="132.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="132.75000000000003" x2="132.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="134.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="134.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="135.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="135.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="134.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="134.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="134.25000000000003" x2="135.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="135.25000000000003" x2="135.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="136.75" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="136.75" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="137.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="137.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="136.75" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="136.75" x2="136.75" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="136.75" x2="137.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="137.75000000000003" x2="137.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="139.25" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="139.25" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="140.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="140.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="139.25" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="139.25" x2="139.25" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="139.25" x2="140.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="140.25000000000003" x2="140.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="141.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="141.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="142.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="142.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="141.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="141.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="141.75000000000003" x2="142.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="142.75000000000003" x2="142.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="144.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="144.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="145.25" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="145.25" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="145.25" x2="144.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="144.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="144.25000000000003" x2="145.25" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="145.25" x2="145.25" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="146.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="146.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="147.75" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="147.75" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="147.75" x2="146.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="146.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="146.75000000000003" x2="147.75" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="147.75" x2="147.75" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="149.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="150.25" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="150.25" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="150.25" x2="149.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="150.25" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="150.25" x2="150.25" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="151.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="151.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="152.75" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="152.75" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="152.75" x2="151.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="151.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="151.75000000000003" x2="152.75" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="152.75" x2="152.75" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="155.25000000000003" x2="154.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="154.25000000000003" x2="154.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="154.25000000000003" x2="155.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="155.25000000000003" x2="155.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="156.25000000000003" x2="153.25000000000003" y1="204.50000000000003" y2="204.50000000000003"/>
+  <line stroke="#888888" x1="153.25000000000003" x2="153.25000000000003" y1="204.50000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="153.25000000000003" x2="156.25000000000003" y1="201.50000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="156.25000000000003" x2="156.25000000000003" y1="201.50000000000003" y2="204.50000000000003"/>
+  <line stroke="#888888" x1="98.44000000000001" x2="98.44000000000001" y1="262.2100000000001" y2="263.29"/>
+  <line stroke="#888888" x1="98.44000000000001" x2="80.44000000000001" y1="263.29" y2="263.29"/>
+  <line stroke="#888888" x1="80.44000000000001" x2="80.44000000000001" y1="263.29" y2="262.2100000000001"/>
+  <line stroke="#888888" x1="80.44000000000001" x2="98.44000000000001" y1="262.2100000000001" y2="262.2100000000001"/>
+  <line stroke="#888888" x1="98.44000000000001" x2="98.44000000000001" y1="229.71" y2="230.79000000000005"/>
+  <line stroke="#888888" x1="98.44000000000001" x2="80.44000000000001" y1="230.79000000000005" y2="230.79000000000005"/>
+  <line stroke="#888888" x1="80.44000000000001" x2="80.44000000000001" y1="230.79000000000005" y2="229.71"/>
+  <line stroke="#888888" x1="80.44000000000001" x2="98.44000000000001" y1="229.71" y2="229.71"/>
+  <line stroke="#888888" x1="98.44000000000001" x2="98.44000000000001" y1="205.48000000000002" y2="219.52"/>
+  <line stroke="#888888" x1="98.44000000000001" x2="80.44000000000001" y1="219.52" y2="219.52"/>
+  <line stroke="#888888" x1="80.44000000000001" x2="80.44000000000001" y1="219.52" y2="205.48000000000002"/>
+  <line stroke="#888888" x1="80.44000000000001" x2="98.44000000000001" y1="205.48000000000002" y2="205.48000000000002"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="261.00000000000006" y2="261.00000000000006"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="261.00000000000006" y2="238.00000000000003"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="238.00000000000003" y2="238.00000000000003"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="238.00000000000003" y2="261.00000000000006"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.75000000000001" y1="242.1136363636364" y2="254.43181818181822"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.25" y1="254.43181818181822" y2="254.43181818181822"/>
+  <line stroke="#888888" x1="77.25" x2="77.25" y1="254.43181818181822" y2="242.1136363636364"/>
+  <line stroke="#888888" x1="77.25" x2="77.75000000000001" y1="242.1136363636364" y2="242.1136363636364"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.75000000000001" y1="212.56818181818184" y2="224.88636363636365"/>
+  <line stroke="#888888" x1="77.75000000000001" x2="77.25" y1="224.88636363636365" y2="224.88636363636365"/>
+  <line stroke="#888888" x1="77.25" x2="77.25" y1="224.88636363636365" y2="212.56818181818184"/>
+  <line stroke="#888888" x1="77.25" x2="77.75000000000001" y1="212.56818181818184" y2="212.56818181818184"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="141.0" y2="141.0"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="141.0" y2="164.0"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="164.0" y2="164.0"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="164.0" y2="141.0"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.25000000000003" y1="159.88636363636363" y2="147.56818181818184"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.75000000000003" y1="147.56818181818184" y2="147.56818181818184"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.75000000000003" y1="147.56818181818184" y2="159.88636363636363"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.25000000000003" y1="159.88636363636363" y2="159.88636363636363"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.25000000000003" y1="189.43181818181822" y2="177.11363636363637"/>
+  <line stroke="#888888" x1="194.25000000000003" x2="194.75000000000003" y1="177.11363636363637" y2="177.11363636363637"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.75000000000003" y1="177.11363636363637" y2="189.43181818181822"/>
+  <line stroke="#888888" x1="194.75000000000003" x2="194.25000000000003" y1="189.43181818181822" y2="189.43181818181822"/>
+  <line stroke="#888888" x1="194.33333333333334" x2="194.33333333333334" y1="68.50000000000001" y2="73.50000000000001"/>
+  <line stroke="#888888" x1="194.33333333333334" x2="186.66666666666666" y1="73.50000000000001" y2="73.50000000000001"/>
+  <line stroke="#888888" x1="186.66666666666666" x2="186.66666666666666" y1="73.50000000000001" y2="68.50000000000001"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="164.0" y2="164.0"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="164.0" y2="141.0"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="141.0" y2="141.0"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="141.0" y2="164.0"/>
+  <line stroke="#888888" x1="85.58333333333336" x2="77.41666666666667" y1="143.75" y2="143.75"/>
+  <line stroke="#888888" x1="77.41666666666667" x2="77.41666666666667" y1="143.75" y2="143.25"/>
+  <line stroke="#888888" x1="77.41666666666667" x2="85.58333333333336" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="85.58333333333336" x2="85.58333333333336" y1="143.25" y2="143.75"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="108.00000000000001" y2="108.00000000000001"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="108.00000000000001" y2="131.0"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="131.0" y2="131.0"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="131.0" y2="108.00000000000001"/>
+  <line stroke="#888888" x1="129.08333333333337" x2="129.08333333333337" y1="128.25000000000003" y2="133.75000000000003"/>
+  <line stroke="#888888" x1="129.08333333333337" x2="129.58333333333337" y1="133.75000000000003" y2="133.75000000000003"/>
+  <line stroke="#888888" x1="129.58333333333337" x2="129.58333333333337" y1="133.75000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="129.58333333333337" x2="129.08333333333337" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="106.75000000000001" x2="106.75000000000001" y1="80.08333333333333" y2="87.91666666666667"/>
+  <line stroke="#888888" x1="106.75000000000001" x2="106.25000000000001" y1="87.91666666666667" y2="87.91666666666667"/>
+  <line stroke="#888888" x1="106.25000000000001" x2="106.25000000000001" y1="87.91666666666667" y2="80.08333333333333"/>
+  <line stroke="#888888" x1="106.25000000000001" x2="106.75000000000001" y1="80.08333333333333" y2="80.08333333333333"/>
+  <line stroke="#888888" x1="106.75000000000001" x2="106.75000000000001" y1="17.083333333333318" y2="24.916666666666686"/>
+  <line stroke="#888888" x1="106.75000000000001" x2="106.25000000000001" y1="24.916666666666686" y2="24.916666666666686"/>
+  <line stroke="#888888" x1="106.25000000000001" x2="106.25000000000001" y1="24.916666666666686" y2="17.083333333333318"/>
+  <line stroke="#888888" x1="106.25000000000001" x2="106.75000000000001" y1="17.083333333333318" y2="17.083333333333318"/>
+  <line stroke="#888888" x1="129.33333333333337" x2="133.66666666666669" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="133.66666666666669" x2="133.66666666666669" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="133.66666666666669" x2="129.33333333333337" y1="2.5000000000000004" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="158.50000000000003" x2="153.50000000000003" y1="24.666666666666686" y2="24.666666666666686"/>
+  <line stroke="#888888" x1="153.50000000000003" x2="153.50000000000003" y1="24.666666666666686" y2="17.333333333333318"/>
+  <line stroke="#888888" x1="153.50000000000003" x2="158.50000000000003" y1="17.333333333333318" y2="17.333333333333318"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="59.58333333333332" y2="45.416666666666686"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.75" y1="45.416666666666686" y2="45.416666666666686"/>
+  <line stroke="#888888" x1="149.75" x2="149.75" y1="45.416666666666686" y2="59.58333333333332"/>
+  <line stroke="#888888" x1="149.75" x2="149.25000000000003" y1="59.58333333333332" y2="59.58333333333332"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="105.93500000000002" y1="37.0" y2="37.0"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="105.93500000000002" y1="37.0" y2="60.00000000000001"/>
+  <line stroke="#888888" x1="105.93500000000002" x2="93.06500000000001" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#888888" x1="93.06500000000001" x2="93.06500000000001" y1="60.00000000000001" y2="37.0"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="45.66666666666669" y2="40.66666666666669"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="90.50000000000001" y1="40.66666666666669" y2="45.66666666666669"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="90.50000000000001" y1="45.66666666666669" y2="59.33333333333332"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="85.50000000000001" y1="59.33333333333332" y2="64.33333333333333"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="64.33333333333333" y2="59.33333333333332"/>
+  <line stroke="#888888" x1="158.50000000000003" x2="153.50000000000003" y1="87.66666666666666" y2="87.66666666666666"/>
+  <line stroke="#888888" x1="153.50000000000003" x2="153.50000000000003" y1="87.66666666666666" y2="80.33333333333333"/>
+  <line stroke="#888888" x1="153.50000000000003" x2="158.50000000000003" y1="80.33333333333333" y2="80.33333333333333"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="122.58333333333336" y2="108.41666666666667"/>
+  <line stroke="#888888" x1="149.25000000000003" x2="149.75" y1="108.41666666666667" y2="108.41666666666667"/>
+  <line stroke="#888888" x1="149.75" x2="149.75" y1="108.41666666666667" y2="122.58333333333336"/>
+  <line stroke="#888888" x1="149.75" x2="149.25000000000003" y1="122.58333333333336" y2="122.58333333333336"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="108.66666666666667" y2="103.66666666666667"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="90.50000000000001" y1="103.66666666666667" y2="108.66666666666667"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="90.50000000000001" y1="108.66666666666667" y2="122.33333333333336"/>
+  <line stroke="#888888" x1="90.50000000000001" x2="85.50000000000001" y1="122.33333333333336" y2="127.33333333333333"/>
+  <line stroke="#888888" x1="85.50000000000001" x2="85.50000000000001" y1="127.33333333333333" y2="122.33333333333336"/>
+  <line stroke="#888888" x1="29.750000000000004" x2="50.25000000000001" y1="191.0" y2="191.0"/>
+  <line stroke="#888888" x1="50.25000000000001" x2="50.25000000000001" y1="191.0" y2="191.50000000000003"/>
+  <line stroke="#888888" x1="50.25000000000001" x2="29.750000000000004" y1="191.50000000000003" y2="191.50000000000003"/>
+  <line stroke="#888888" x1="29.750000000000004" x2="29.750000000000004" y1="191.50000000000003" y2="191.0"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="147.8181818181818" y2="147.8181818181818"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="147.8181818181818" y2="159.63636363636363"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="159.63636363636363" y2="159.63636363636363"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="177.3636363636364" y2="177.3636363636364"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="177.3636363636364" y2="189.18181818181822"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="189.18181818181822" y2="189.18181818181822"/>
+  <line stroke="#888888" x1="196.60000000000002" x2="196.60000000000002" y1="262.2100000000001" y2="263.29"/>
+  <line stroke="#888888" x1="196.60000000000002" x2="178.6" y1="263.29" y2="263.29"/>
+  <line stroke="#888888" x1="178.6" x2="178.6" y1="263.29" y2="262.2100000000001"/>
+  <line stroke="#888888" x1="178.6" x2="196.60000000000002" y1="262.2100000000001" y2="262.2100000000001"/>
+  <line stroke="#888888" x1="196.60000000000002" x2="196.60000000000002" y1="229.71" y2="230.79000000000005"/>
+  <line stroke="#888888" x1="196.60000000000002" x2="178.6" y1="230.79000000000005" y2="230.79000000000005"/>
+  <line stroke="#888888" x1="178.6" x2="178.6" y1="230.79000000000005" y2="229.71"/>
+  <line stroke="#888888" x1="178.6" x2="196.60000000000002" y1="229.71" y2="229.71"/>
+  <line stroke="#888888" x1="200.20000000000002" x2="200.20000000000002" y1="205.48000000000002" y2="219.52"/>
+  <line stroke="#888888" x1="200.20000000000002" x2="175.0" y1="219.52" y2="219.52"/>
+  <line stroke="#888888" x1="175.0" x2="175.0" y1="219.52" y2="205.48000000000002"/>
+  <line stroke="#888888" x1="175.0" x2="200.20000000000002" y1="205.48000000000002" y2="205.48000000000002"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="238.00000000000003" y2="238.00000000000003"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="238.00000000000003" y2="261.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="261.00000000000006" y2="261.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="261.00000000000006" y2="238.00000000000003"/>
+  <line stroke="#888888" x1="214.75000000000003" x2="211.75" y1="224.50000000000003" y2="224.50000000000003"/>
+  <line stroke="#888888" x1="211.75" x2="211.75" y1="224.50000000000003" y2="221.50000000000003"/>
+  <line stroke="#888888" x1="211.75" x2="214.75000000000003" y1="221.50000000000003" y2="221.50000000000003"/>
+  <line stroke="#888888" x1="214.75000000000003" x2="214.75000000000003" y1="221.50000000000003" y2="224.50000000000003"/>
+  <line stroke="#888888" x1="213.75" x2="212.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="212.75000000000003" x2="212.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="212.75000000000003" x2="213.75" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="213.75" x2="213.75" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="216.25" x2="215.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="215.25000000000003" x2="215.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="215.25000000000003" x2="216.25" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="216.25" x2="216.25" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="216.25" x2="215.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="215.25000000000003" x2="215.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="215.25000000000003" x2="216.25" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="216.25" x2="216.25" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="218.75000000000003" x2="217.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="217.75000000000003" x2="217.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="217.75000000000003" x2="218.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="218.75000000000003" x2="218.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="218.75000000000003" x2="217.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="217.75000000000003" x2="217.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="217.75000000000003" x2="218.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="218.75000000000003" x2="218.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="221.25000000000003" x2="220.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="220.25000000000003" x2="220.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="220.25000000000003" x2="221.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="221.25000000000003" x2="221.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="221.25000000000003" x2="220.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="220.25000000000003" x2="220.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="220.25000000000003" x2="221.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="221.25000000000003" x2="221.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="223.75000000000003" x2="222.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="222.75000000000003" x2="222.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="222.75000000000003" x2="223.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="223.75000000000003" x2="223.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="223.75000000000003" x2="222.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="222.75000000000003" x2="222.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="222.75000000000003" x2="223.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="223.75000000000003" x2="223.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="226.25000000000003" x2="225.25" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="225.25" x2="225.25" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="225.25" x2="226.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="226.25000000000003" x2="226.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="226.25000000000003" x2="225.25" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="225.25" x2="225.25" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="225.25" x2="226.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="226.25000000000003" x2="226.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="228.75000000000003" x2="227.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="227.75000000000003" x2="227.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="227.75000000000003" x2="228.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="228.75000000000003" x2="228.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="228.75000000000003" x2="227.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="227.75000000000003" x2="227.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="227.75000000000003" x2="228.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="228.75000000000003" x2="228.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="231.25000000000003" x2="230.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="230.25000000000003" x2="230.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="230.25000000000003" x2="231.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="231.25000000000003" x2="231.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="231.25000000000003" x2="230.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="230.25000000000003" x2="230.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="230.25000000000003" x2="231.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="231.25000000000003" x2="231.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="233.75000000000003" x2="232.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="232.75000000000003" x2="232.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="232.75000000000003" x2="233.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="233.75000000000003" x2="233.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="233.75000000000003" x2="232.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="232.75000000000003" x2="232.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="232.75000000000003" x2="233.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="233.75000000000003" x2="233.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="236.25000000000003" x2="235.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="235.25000000000003" x2="235.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="235.25000000000003" x2="236.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="236.25000000000003" x2="236.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="236.25000000000003" x2="235.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="235.25000000000003" x2="235.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="235.25000000000003" x2="236.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="236.25000000000003" x2="236.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="238.75000000000003" x2="237.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="237.75000000000003" x2="237.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="237.75000000000003" x2="238.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="238.75000000000003" x2="238.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="238.75000000000003" x2="237.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="237.75000000000003" x2="237.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="237.75000000000003" x2="238.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="238.75000000000003" x2="238.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="241.25000000000003" x2="240.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="240.25000000000003" x2="240.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="240.25000000000003" x2="241.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="241.25000000000003" x2="241.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="241.25000000000003" x2="240.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="240.25000000000003" x2="240.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="240.25000000000003" x2="241.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="241.25000000000003" x2="241.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="243.75000000000003" x2="242.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="242.75000000000003" x2="242.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="242.75000000000003" x2="243.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="243.75000000000003" x2="243.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="243.75000000000003" x2="242.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="242.75000000000003" x2="242.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="242.75000000000003" x2="243.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="243.75000000000003" x2="243.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="246.25000000000003" x2="245.25000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="245.25000000000003" x2="245.25000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="245.25000000000003" x2="246.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="246.25000000000003" x2="246.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="246.25000000000003" x2="245.25000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="245.25000000000003" x2="245.25000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="245.25000000000003" x2="246.25000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="246.25000000000003" x2="246.25000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="248.75000000000003" x2="247.75000000000003" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="247.75000000000003" x2="247.75000000000003" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="247.75000000000003" x2="248.75000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="248.75000000000003" x2="248.75000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="248.75000000000003" x2="247.75000000000003" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="247.75000000000003" x2="247.75000000000003" y1="203.50000000000003" y2="202.5"/>
+  <line stroke="#888888" x1="247.75000000000003" x2="248.75000000000003" y1="202.5" y2="202.5"/>
+  <line stroke="#888888" x1="248.75000000000003" x2="248.75000000000003" y1="202.5" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="251.25000000000003" x2="250.25000000000006" y1="223.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="250.25000000000006" x2="250.25000000000006" y1="223.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="250.25000000000006" x2="251.25000000000003" y1="222.50000000000003" y2="222.50000000000003"/>
+  <line stroke="#888888" x1="251.25000000000003" x2="251.25000000000003" y1="222.50000000000003" y2="223.50000000000003"/>
+  <line stroke="#888888" x1="252.25000000000003" x2="249.25000000000003" y1="204.50000000000003" y2="204.50000000000003"/>
+  <line stroke="#888888" x1="249.25000000000003" x2="249.25000000000003" y1="204.50000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="249.25000000000003" x2="252.25000000000003" y1="201.50000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="252.25000000000003" x2="252.25000000000003" y1="201.50000000000003" y2="204.50000000000003"/>
+  <line stroke="#888888" x1="242.00000000000003" x2="248.50000000000003" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="248.50000000000003" x2="242.00000000000003" y1="191.25" y2="197.75"/>
+  <line stroke="#888888" x1="242.00000000000003" x2="222.00000000000003" y1="197.75" y2="197.75"/>
+  <line stroke="#888888" x1="222.00000000000003" x2="215.50000000000003" y1="197.75" y2="191.25"/>
+  <line stroke="#888888" x1="215.50000000000003" x2="222.00000000000003" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="269.50000000000006" x2="264.5" y1="254.18181818181822" y2="254.18181818181822"/>
+  <line stroke="#888888" x1="264.5" x2="264.5" y1="254.18181818181822" y2="242.3636363636364"/>
+  <line stroke="#888888" x1="264.5" x2="269.50000000000006" y1="242.3636363636364" y2="242.3636363636364"/>
+  <line stroke="#888888" x1="269.50000000000006" x2="264.5" y1="224.63636363636365" y2="224.63636363636365"/>
+  <line stroke="#888888" x1="264.5" x2="264.5" y1="224.63636363636365" y2="212.81818181818184"/>
+  <line stroke="#888888" x1="264.5" x2="269.50000000000006" y1="212.81818181818184" y2="212.81818181818184"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="293.33333333333337" y2="298.33333333333337"/>
+  <line stroke="#888888" x1="186.5" x2="181.50000000000003" y1="298.33333333333337" y2="293.33333333333337"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="181.50000000000003" y1="293.33333333333337" y2="279.66666666666674"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="186.5" y1="279.66666666666674" y2="274.66666666666674"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="274.66666666666674" y2="279.66666666666674"/>
+  <line stroke="#888888" x1="202.5" x2="202.5" y1="319.75000000000006" y2="316.75000000000006"/>
+  <line stroke="#888888" x1="202.5" x2="205.50000000000003" y1="316.75000000000006" y2="316.75000000000006"/>
+  <line stroke="#888888" x1="205.50000000000003" x2="205.50000000000003" y1="316.75000000000006" y2="319.75000000000006"/>
+  <line stroke="#888888" x1="205.50000000000003" x2="202.5" y1="319.75000000000006" y2="319.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="318.75" y2="317.75"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="317.75" y2="317.75"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="317.75" y2="318.75"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="318.75" y2="318.75"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="321.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="320.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="320.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="321.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="321.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="320.25000000000006" y2="320.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="320.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="321.25000000000006" y2="321.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="323.75" y2="322.75"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="322.75" y2="322.75"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="322.75" y2="323.75"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="323.75" y2="323.75"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="323.75" y2="322.75"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="322.75" y2="322.75"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="322.75" y2="323.75"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="323.75" y2="323.75"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="326.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="325.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="325.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="326.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="326.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="325.25000000000006" y2="325.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="325.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="326.25000000000006" y2="326.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="328.75000000000006" y2="327.75"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="327.75" y2="327.75"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="327.75" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="328.75000000000006" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="328.75000000000006" y2="327.75"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="327.75" y2="327.75"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="327.75" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="328.75000000000006" y2="328.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="331.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="330.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="330.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="331.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="331.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="330.25000000000006" y2="330.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="330.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="331.25000000000006" y2="331.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="333.75000000000006" y2="332.75"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="332.75" y2="332.75"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="332.75" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="333.75000000000006" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="333.75000000000006" y2="332.75"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="332.75" y2="332.75"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="332.75" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="333.75000000000006" y2="333.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="336.25" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="335.25000000000006" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="335.25000000000006" y2="336.25"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="336.25" y2="336.25"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="336.25" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="335.25000000000006" y2="335.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="335.25000000000006" y2="336.25"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="336.25" y2="336.25"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="338.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="337.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="337.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="338.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="338.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="337.75000000000006" y2="337.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="337.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="338.75000000000006" y2="338.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="341.25" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="340.25000000000006" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="340.25000000000006" y2="341.25"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="341.25" y2="341.25"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="341.25" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="340.25000000000006" y2="340.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="340.25000000000006" y2="341.25"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="341.25" y2="341.25"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="343.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="342.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="342.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="343.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="343.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="342.75000000000006" y2="342.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="342.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="343.75000000000006" y2="343.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="346.25" y2="345.25"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="345.25" y2="345.25"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="345.25" y2="346.25"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="346.25" y2="346.25"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="346.25" y2="345.25"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="345.25" y2="345.25"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="345.25" y2="346.25"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="346.25" y2="346.25"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="348.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="347.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="347.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="348.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="348.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="347.75000000000006" y2="347.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="347.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="348.75000000000006" y2="348.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="351.25000000000006" y2="350.25"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="350.25" y2="350.25"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="350.25" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="351.25000000000006" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="351.25000000000006" y2="350.25"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="350.25" y2="350.25"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="350.25" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="351.25000000000006" y2="351.25000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="353.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="352.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="352.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="353.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="353.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="223.50000000000003" x2="224.50000000000003" y1="352.75000000000006" y2="352.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="224.50000000000003" y1="352.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="223.50000000000003" y1="353.75000000000006" y2="353.75000000000006"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="203.50000000000003" y1="356.25000000000006" y2="355.25"/>
+  <line stroke="#888888" x1="203.50000000000003" x2="204.50000000000003" y1="355.25" y2="355.25"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="204.50000000000003" y1="355.25" y2="356.25000000000006"/>
+  <line stroke="#888888" x1="204.50000000000003" x2="203.50000000000003" y1="356.25000000000006" y2="356.25000000000006"/>
+  <line stroke="#888888" x1="222.50000000000003" x2="222.50000000000003" y1="357.25000000000006" y2="354.25000000000006"/>
+  <line stroke="#888888" x1="222.50000000000003" x2="225.50000000000003" y1="354.25000000000006" y2="354.25000000000006"/>
+  <line stroke="#888888" x1="225.50000000000003" x2="225.50000000000003" y1="354.25000000000006" y2="357.25000000000006"/>
+  <line stroke="#888888" x1="225.50000000000003" x2="222.50000000000003" y1="357.25000000000006" y2="357.25000000000006"/>
+  <line stroke="#888888" x1="231.55428571428573" x2="231.55428571428573" y1="362.7" y2="349.70000000000005"/>
+  <line stroke="#888888" x1="231.55428571428573" x2="252.1257142857143" y1="349.70000000000005" y2="349.70000000000005"/>
+  <line stroke="#888888" x1="252.1257142857143" x2="252.1257142857143" y1="349.70000000000005" y2="362.7"/>
+  <line stroke="#888888" x1="252.1257142857143" x2="231.55428571428573" y1="362.7" y2="362.7"/>
+  <line stroke="#888888" x1="254.25000000000003" x2="254.25000000000003" y1="347.25000000000006" y2="326.75000000000006"/>
+  <line stroke="#888888" x1="254.25000000000003" x2="254.75000000000006" y1="326.75000000000006" y2="326.75000000000006"/>
+  <line stroke="#888888" x1="254.75000000000006" x2="254.75000000000006" y1="326.75000000000006" y2="347.25000000000006"/>
+  <line stroke="#888888" x1="254.75000000000006" x2="254.25000000000003" y1="347.25000000000006" y2="347.25000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="166.065" y1="403.00000000000006" y2="403.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="166.065" y1="403.00000000000006" y2="380.00000000000006"/>
+  <line stroke="#888888" x1="166.065" x2="178.93500000000003" y1="380.00000000000006" y2="380.00000000000006"/>
+  <line stroke="#888888" x1="178.93500000000003" x2="178.93500000000003" y1="380.00000000000006" y2="403.00000000000006"/>
+  <line stroke="#888888" x1="165.25000000000003" x2="165.25000000000003" y1="422.9166666666667" y2="415.08333333333337"/>
+  <line stroke="#888888" x1="165.25000000000003" x2="165.75" y1="415.08333333333337" y2="415.08333333333337"/>
+  <line stroke="#888888" x1="165.75" x2="165.75" y1="415.08333333333337" y2="422.9166666666667"/>
+  <line stroke="#888888" x1="165.75" x2="165.25000000000003" y1="422.9166666666667" y2="422.9166666666667"/>
+  <line stroke="#888888" x1="142.66666666666669" x2="138.33333333333334" y1="432.5" y2="432.5"/>
+  <line stroke="#888888" x1="138.33333333333334" x2="138.33333333333334" y1="432.5" y2="437.50000000000006"/>
+  <line stroke="#888888" x1="138.33333333333334" x2="142.66666666666669" y1="437.50000000000006" y2="437.50000000000006"/>
+  <line stroke="#888888" x1="113.50000000000001" x2="118.50000000000001" y1="415.33333333333337" y2="415.33333333333337"/>
+  <line stroke="#888888" x1="118.50000000000001" x2="118.50000000000001" y1="415.33333333333337" y2="422.6666666666667"/>
+  <line stroke="#888888" x1="118.50000000000001" x2="113.50000000000001" y1="422.6666666666667" y2="422.66666666666674"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="380.41666666666674" y2="394.58333333333337"/>
+  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="394.58333333333337" y2="394.58333333333337"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="394.58333333333337" y2="380.41666666666674"/>
+  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="380.41666666666674" y2="380.41666666666674"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="394.33333333333337" y2="399.33333333333337"/>
+  <line stroke="#888888" x1="186.5" x2="181.50000000000003" y1="399.33333333333337" y2="394.33333333333337"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="181.50000000000003" y1="394.33333333333337" y2="380.66666666666674"/>
+  <line stroke="#888888" x1="181.50000000000003" x2="186.5" y1="380.66666666666674" y2="375.66666666666674"/>
+  <line stroke="#888888" x1="186.5" x2="186.5" y1="375.66666666666674" y2="380.66666666666674"/>
+  <line stroke="#888888" x1="134.5" x2="134.5" y1="327.0" y2="322.00000000000006"/>
+  <line stroke="#888888" x1="134.5" x2="139.50000000000003" y1="322.00000000000006" y2="327.0"/>
+  <line stroke="#888888" x1="139.50000000000003" x2="139.50000000000003" y1="327.0" y2="347.00000000000006"/>
+  <line stroke="#888888" x1="139.50000000000003" x2="134.5" y1="347.00000000000006" y2="352.00000000000006"/>
+  <line stroke="#888888" x1="134.5" x2="134.5" y1="352.00000000000006" y2="347.00000000000006"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="282.0" x2="282.0" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="345.33333333333337" x2="345.0050224158704" y1="337.0" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="345.0050224158704" x2="345.33333333333337" y1="341.17158573440616" y2="337.0"/>
+  <line stroke="#000000" x1="344.0281737678708" x2="345.0050224158704" y1="345.2404531833319" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="342.4268406450232" x2="344.0281737678708" y1="349.1064133263879" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="340.24045318333197" x2="342.4268406450232" y1="352.674273394466" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="337.522847498308" x2="340.24045318333197" y1="355.8561808316413" y2="352.674273394466"/>
+  <line stroke="#000000" x1="334.3409400611327" x2="337.522847498308" y1="358.57378651666534" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="330.7730799930546" x2="334.3409400611327" y1="360.76017397835653" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="326.9071198499986" x2="330.7730799930546" y1="362.3615071012041" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="322.83825240107285" x2="326.9071198499986" y1="363.33835574920374" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="318.6666666666667" x2="322.83825240107285" y1="363.6666666666667" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="314.4950809322606" x2="318.6666666666667" y1="363.33835574920374" y2="363.6666666666667"/>
+  <line stroke="#000000" x1="310.42621348333483" x2="314.4950809322606" y1="362.3615071012041" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="306.5602533402788" x2="310.42621348333483" y1="360.76017397835653" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="302.9923932722008" x2="306.5602533402788" y1="358.57378651666534" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="299.8104858350255" x2="302.9923932722008" y1="355.8561808316413" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="297.09288015000146" x2="299.8104858350255" y1="352.674273394466" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="294.9064926883102" x2="297.09288015000146" y1="349.1064133263879" y2="352.674273394466"/>
+  <line stroke="#000000" x1="293.3051595654626" x2="294.9064926883102" y1="345.2404531833319" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="292.328310917463" x2="293.3051595654626" y1="341.17158573440616" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="292.0" x2="292.328310917463" y1="337.0" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="292.328310917463" x2="292.0" y1="332.8284142655939" y2="337.0"/>
+  <line stroke="#000000" x1="293.3051595654626" x2="292.328310917463" y1="328.75954681666815" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="294.9064926883102" x2="293.3051595654626" y1="324.8935866736121" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="297.09288015000146" x2="294.9064926883102" y1="321.3257266055341" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="299.8104858350255" x2="297.09288015000146" y1="318.1438191683588" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="302.9923932722008" x2="299.8104858350255" y1="315.4262134833348" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="306.5602533402788" x2="302.9923932722008" y1="313.2398260216435" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="310.42621348333483" x2="306.5602533402788" y1="311.6384928987959" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="314.4950809322606" x2="310.42621348333483" y1="310.6616442507963" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="318.6666666666667" x2="314.4950809322606" y1="310.33333333333337" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="322.83825240107285" x2="318.6666666666667" y1="310.6616442507963" y2="310.33333333333337"/>
+  <line stroke="#000000" x1="326.9071198499986" x2="322.83825240107285" y1="311.6384928987959" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="330.7730799930546" x2="326.9071198499986" y1="313.2398260216435" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="334.3409400611327" x2="330.7730799930546" y1="315.4262134833348" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="337.522847498308" x2="334.3409400611327" y1="318.1438191683588" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="340.24045318333197" x2="337.522847498308" y1="321.3257266055341" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="342.4268406450232" x2="340.24045318333197" y1="324.8935866736121" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="344.0281737678708" x2="342.4268406450232" y1="328.75954681666815" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="345.0050224158704" x2="344.0281737678708" y1="332.8284142655939" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="355.33333333333337" x2="355.33333333333337" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="418.6666666666668" x2="418.3383557492038" y1="337.0" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="418.3383557492038" x2="418.6666666666668" y1="341.17158573440616" y2="337.0"/>
+  <line stroke="#000000" x1="417.3615071012042" x2="418.3383557492038" y1="345.2404531833319" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="415.7601739783566" x2="417.3615071012042" y1="349.1064133263879" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="413.57378651666534" x2="415.7601739783566" y1="352.674273394466" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="410.8561808316413" x2="413.57378651666534" y1="355.8561808316413" y2="352.674273394466"/>
+  <line stroke="#000000" x1="407.67427339446607" x2="410.8561808316413" y1="358.57378651666534" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="404.106413326388" x2="407.67427339446607" y1="360.76017397835653" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="400.24045318333197" x2="404.106413326388" y1="362.3615071012041" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="396.1715857344062" x2="400.24045318333197" y1="363.33835574920374" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="392.0000000000001" x2="396.1715857344062" y1="363.6666666666667" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="387.82841426559395" x2="392.0000000000001" y1="363.33835574920374" y2="363.6666666666667"/>
+  <line stroke="#000000" x1="383.7595468166682" x2="387.82841426559395" y1="362.3615071012041" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="379.8935866736122" x2="383.7595468166682" y1="360.76017397835653" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="376.32572660553416" x2="379.8935866736122" y1="358.57378651666534" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="373.14381916835885" x2="376.32572660553416" y1="355.8561808316413" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="370.42621348333483" x2="373.14381916835885" y1="352.674273394466" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="368.2398260216436" x2="370.42621348333483" y1="349.1064133263879" y2="352.674273394466"/>
+  <line stroke="#000000" x1="366.638492898796" x2="368.2398260216436" y1="345.2404531833319" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="365.66164425079637" x2="366.638492898796" y1="341.17158573440616" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="365.3333333333334" x2="365.66164425079637" y1="337.0" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="365.66164425079637" x2="365.3333333333334" y1="332.8284142655939" y2="337.0"/>
+  <line stroke="#000000" x1="366.638492898796" x2="365.66164425079637" y1="328.75954681666815" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="368.2398260216436" x2="366.638492898796" y1="324.8935866736121" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="370.42621348333483" x2="368.2398260216436" y1="321.3257266055341" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="373.14381916835885" x2="370.42621348333483" y1="318.1438191683588" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="376.32572660553416" x2="373.14381916835885" y1="315.4262134833348" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="379.8935866736122" x2="376.32572660553416" y1="313.2398260216435" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="383.7595468166682" x2="379.8935866736122" y1="311.6384928987959" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="387.82841426559395" x2="383.7595468166682" y1="310.6616442507963" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="392.0000000000001" x2="387.82841426559395" y1="310.33333333333337" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="396.1715857344062" x2="392.0000000000001" y1="310.6616442507963" y2="310.33333333333337"/>
+  <line stroke="#000000" x1="400.24045318333197" x2="396.1715857344062" y1="311.6384928987959" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="404.106413326388" x2="400.24045318333197" y1="313.2398260216435" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="407.67427339446607" x2="404.106413326388" y1="315.4262134833348" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="410.8561808316413" x2="407.67427339446607" y1="318.1438191683588" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="413.57378651666534" x2="410.8561808316413" y1="321.3257266055341" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="415.7601739783566" x2="413.57378651666534" y1="324.8935866736121" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="417.3615071012042" x2="415.7601739783566" y1="328.75954681666815" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="418.3383557492038" x2="417.3615071012042" y1="332.8284142655939" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="428.6666666666668" x2="428.6666666666668" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="492.00000000000017" x2="491.67168908253717" y1="337.0" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="491.67168908253717" x2="492.00000000000017" y1="341.17158573440616" y2="337.0"/>
+  <line stroke="#000000" x1="490.6948404345376" x2="491.67168908253717" y1="345.2404531833319" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="489.09350731168996" x2="490.6948404345376" y1="349.1064133263879" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="486.90711984999876" x2="489.09350731168996" y1="352.674273394466" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="484.18951416497475" x2="486.90711984999876" y1="355.8561808316413" y2="352.674273394466"/>
+  <line stroke="#000000" x1="481.00760672779944" x2="484.18951416497475" y1="358.57378651666534" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="477.4397466597214" x2="481.00760672779944" y1="360.76017397835653" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="473.5737865166654" x2="477.4397466597214" y1="362.3615071012041" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="469.50491906773965" x2="473.5737865166654" y1="363.33835574920374" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="465.3333333333335" x2="469.50491906773965" y1="363.6666666666667" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="461.1617475989273" x2="465.3333333333335" y1="363.33835574920374" y2="363.6666666666667"/>
+  <line stroke="#000000" x1="457.0928801500016" x2="461.1617475989273" y1="362.3615071012041" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="453.2269200069456" x2="457.0928801500016" y1="360.76017397835653" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="449.65905993886753" x2="453.2269200069456" y1="358.57378651666534" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="446.4771525016922" x2="449.65905993886753" y1="355.8561808316413" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="443.7595468166682" x2="446.4771525016922" y1="352.674273394466" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="441.573159354977" x2="443.7595468166682" y1="349.1064133263879" y2="352.674273394466"/>
+  <line stroke="#000000" x1="439.9718262321294" x2="441.573159354977" y1="345.2404531833319" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="438.9949775841298" x2="439.9718262321294" y1="341.17158573440616" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="438.6666666666668" x2="438.9949775841298" y1="337.0" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="438.9949775841298" x2="438.6666666666668" y1="332.8284142655939" y2="337.0"/>
+  <line stroke="#000000" x1="439.9718262321294" x2="438.9949775841298" y1="328.75954681666815" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="441.573159354977" x2="439.9718262321294" y1="324.8935866736121" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="443.7595468166682" x2="441.573159354977" y1="321.3257266055341" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="446.4771525016922" x2="443.7595468166682" y1="318.1438191683588" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="449.65905993886753" x2="446.4771525016922" y1="315.4262134833348" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="453.2269200069456" x2="449.65905993886753" y1="313.2398260216435" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="457.0928801500016" x2="453.2269200069456" y1="311.6384928987959" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="461.1617475989273" x2="457.0928801500016" y1="310.6616442507963" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="465.3333333333335" x2="461.1617475989273" y1="310.33333333333337" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="469.50491906773965" x2="465.3333333333335" y1="310.6616442507963" y2="310.33333333333337"/>
+  <line stroke="#000000" x1="473.5737865166654" x2="469.50491906773965" y1="311.6384928987959" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="477.4397466597214" x2="473.5737865166654" y1="313.2398260216435" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="481.00760672779944" x2="477.4397466597214" y1="315.4262134833348" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="484.18951416497475" x2="481.00760672779944" y1="318.1438191683588" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="486.90711984999876" x2="484.18951416497475" y1="321.3257266055341" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="489.09350731168996" x2="486.90711984999876" y1="324.8935866736121" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="490.6948404345376" x2="489.09350731168996" y1="328.75954681666815" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="491.67168908253717" x2="490.6948404345376" y1="332.8284142655939" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="502.00000000000017" x2="502.00000000000017" y1="337.0" y2="337.0"/>
+  <line stroke="#000000" x1="565.3333333333334" x2="565.0050224158704" y1="337.0" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="565.0050224158704" x2="565.3333333333334" y1="341.17158573440616" y2="337.0"/>
+  <line stroke="#000000" x1="564.0281737678708" x2="565.0050224158704" y1="345.2404531833319" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="562.4268406450233" x2="564.0281737678708" y1="349.1064133263879" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="560.2404531833321" x2="562.4268406450233" y1="352.674273394466" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="557.5228474983081" x2="560.2404531833321" y1="355.8561808316413" y2="352.674273394466"/>
+  <line stroke="#000000" x1="554.3409400611328" x2="557.5228474983081" y1="358.57378651666534" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="550.7730799930548" x2="554.3409400611328" y1="360.76017397835653" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="546.9071198499987" x2="550.7730799930548" y1="362.3615071012041" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="542.838252401073" x2="546.9071198499987" y1="363.33835574920374" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="538.6666666666669" x2="542.838252401073" y1="363.6666666666667" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="534.4950809322607" x2="538.6666666666669" y1="363.33835574920374" y2="363.6666666666667"/>
+  <line stroke="#000000" x1="530.4262134833349" x2="534.4950809322607" y1="362.3615071012041" y2="363.33835574920374"/>
+  <line stroke="#000000" x1="526.5602533402789" x2="530.4262134833349" y1="360.76017397835653" y2="362.3615071012041"/>
+  <line stroke="#000000" x1="522.992393272201" x2="526.5602533402789" y1="358.57378651666534" y2="360.76017397835653"/>
+  <line stroke="#000000" x1="519.8104858350256" x2="522.992393272201" y1="355.8561808316413" y2="358.57378651666534"/>
+  <line stroke="#000000" x1="517.0928801500016" x2="519.8104858350256" y1="352.674273394466" y2="355.8561808316413"/>
+  <line stroke="#000000" x1="514.9064926883103" x2="517.0928801500016" y1="349.1064133263879" y2="352.674273394466"/>
+  <line stroke="#000000" x1="513.3051595654628" x2="514.9064926883103" y1="345.2404531833319" y2="349.1064133263879"/>
+  <line stroke="#000000" x1="512.3283109174631" x2="513.3051595654628" y1="341.17158573440616" y2="345.2404531833319"/>
+  <line stroke="#000000" x1="512.0000000000002" x2="512.3283109174631" y1="337.0" y2="341.17158573440616"/>
+  <line stroke="#000000" x1="512.3283109174631" x2="512.0000000000002" y1="332.8284142655939" y2="337.0"/>
+  <line stroke="#000000" x1="513.3051595654628" x2="512.3283109174631" y1="328.75954681666815" y2="332.8284142655939"/>
+  <line stroke="#000000" x1="514.9064926883102" x2="513.3051595654628" y1="324.8935866736121" y2="328.75954681666815"/>
+  <line stroke="#000000" x1="517.0928801500016" x2="514.9064926883102" y1="321.3257266055341" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="519.8104858350256" x2="517.0928801500016" y1="318.1438191683588" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="522.992393272201" x2="519.8104858350256" y1="315.4262134833348" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="526.5602533402789" x2="522.992393272201" y1="313.2398260216435" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="530.4262134833349" x2="526.5602533402789" y1="311.6384928987959" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="534.4950809322607" x2="530.4262134833349" y1="310.6616442507963" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="538.6666666666669" x2="534.4950809322607" y1="310.33333333333337" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="542.838252401073" x2="538.6666666666669" y1="310.6616442507963" y2="310.33333333333337"/>
+  <line stroke="#000000" x1="546.9071198499987" x2="542.838252401073" y1="311.6384928987959" y2="310.6616442507963"/>
+  <line stroke="#000000" x1="550.7730799930548" x2="546.9071198499987" y1="313.2398260216435" y2="311.6384928987959"/>
+  <line stroke="#000000" x1="554.3409400611328" x2="550.7730799930548" y1="315.4262134833348" y2="313.2398260216435"/>
+  <line stroke="#000000" x1="557.5228474983081" x2="554.3409400611328" y1="318.1438191683588" y2="315.4262134833348"/>
+  <line stroke="#000000" x1="560.2404531833321" x2="557.5228474983081" y1="321.3257266055341" y2="318.1438191683588"/>
+  <line stroke="#000000" x1="562.4268406450232" x2="560.2404531833321" y1="324.8935866736121" y2="321.3257266055341"/>
+  <line stroke="#000000" x1="564.0281737678708" x2="562.4268406450232" y1="328.75954681666815" y2="324.8935866736121"/>
+  <line stroke="#000000" x1="565.0050224158704" x2="564.0281737678708" y1="332.8284142655939" y2="328.75954681666815"/>
+</svg>
diff --git a/rocolib/builders/output/FourWheelCar/graph-model.png b/rocolib/builders/output/FourWheelCar/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..0865466934ed75a4c679b61da1667b95a842c6d6
Binary files /dev/null and b/rocolib/builders/output/FourWheelCar/graph-model.png differ
diff --git a/rocolib/builders/output/FourWheelCar/graph-model.stl b/rocolib/builders/output/FourWheelCar/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..a32c80e9f32e84324bd8d296ff6b9e824b248e4f
--- /dev/null
+++ b/rocolib/builders/output/FourWheelCar/graph-model.stl
@@ -0,0 +1,7884 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0115 -0.0203 0.0000
+vertex -0.0115 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 -0.0173 0.0000
+vertex -0.0105 -0.0168 0.0000
+vertex -0.0105 -0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 -0.0203 0.0000
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0085 -0.0203 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0115 -0.0173 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0158 0.0000
+vertex -0.0105 -0.0143 0.0000
+vertex -0.0115 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0143 0.0000
+vertex -0.0105 -0.0158 0.0000
+vertex -0.0095 -0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0132 0.0000
+vertex -0.0105 -0.0118 0.0000
+vertex -0.0115 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0118 0.0000
+vertex -0.0105 -0.0132 0.0000
+vertex -0.0095 -0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0143 0.0000
+vertex -0.0105 -0.0132 0.0000
+vertex -0.0115 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 -0.0173 0.0000
+vertex -0.0105 -0.0118 0.0000
+vertex -0.0105 -0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0108 0.0000
+vertex -0.0105 -0.0092 0.0000
+vertex -0.0115 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0092 0.0000
+vertex -0.0105 -0.0108 0.0000
+vertex -0.0095 -0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0083 0.0000
+vertex -0.0105 -0.0067 0.0000
+vertex -0.0115 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0067 0.0000
+vertex -0.0105 -0.0083 0.0000
+vertex -0.0095 -0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0092 0.0000
+vertex -0.0105 -0.0083 0.0000
+vertex -0.0115 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0057 0.0000
+vertex -0.0105 -0.0043 0.0000
+vertex -0.0115 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0043 0.0000
+vertex -0.0105 -0.0057 0.0000
+vertex -0.0095 -0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0033 0.0000
+vertex -0.0105 -0.0018 0.0000
+vertex -0.0115 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0018 0.0000
+vertex -0.0105 -0.0033 0.0000
+vertex -0.0095 -0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0043 0.0000
+vertex -0.0105 -0.0033 0.0000
+vertex -0.0115 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0067 0.0000
+vertex -0.0105 -0.0057 0.0000
+vertex -0.0115 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 -0.0173 0.0000
+vertex -0.0105 -0.0018 0.0000
+vertex -0.0105 -0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0143 0.0000
+vertex -0.0105 -0.0143 0.0000
+vertex -0.0095 -0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0158 0.0000
+vertex -0.0095 -0.0168 0.0000
+vertex -0.0085 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0118 0.0000
+vertex -0.0105 -0.0118 0.0000
+vertex -0.0095 -0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0132 0.0000
+vertex -0.0095 -0.0143 0.0000
+vertex -0.0085 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0158 0.0000
+vertex -0.0085 -0.0173 0.0000
+vertex -0.0095 -0.0143 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0132 0.0000
+vertex 0.0095 -0.0132 0.0000
+vertex -0.0095 -0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 -0.0173 0.0000
+vertex -0.0085 -0.0203 0.0000
+vertex 0.0095 -0.0192 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0092 0.0000
+vertex -0.0105 -0.0092 0.0000
+vertex -0.0095 -0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0118 0.0000
+vertex -0.0095 -0.0108 0.0000
+vertex -0.0095 -0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0108 0.0000
+vertex 0.0095 -0.0108 0.0000
+vertex -0.0095 -0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0168 0.0000
+vertex -0.0115 -0.0173 0.0000
+vertex -0.0085 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0168 0.0000
+vertex -0.0115 -0.0173 0.0000
+vertex -0.0095 -0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0067 0.0000
+vertex -0.0105 -0.0067 0.0000
+vertex -0.0095 -0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0092 0.0000
+vertex -0.0095 -0.0083 0.0000
+vertex -0.0095 -0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0057 0.0000
+vertex -0.0095 -0.0043 0.0000
+vertex -0.0105 -0.0043 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0067 0.0000
+vertex -0.0095 -0.0083 0.0000
+vertex 0.0095 -0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0057 0.0000
+vertex -0.0095 -0.0043 0.0000
+vertex -0.0095 -0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0033 0.0000
+vertex -0.0095 -0.0018 0.0000
+vertex -0.0095 -0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0018 0.0000
+vertex -0.0095 -0.0008 0.0000
+vertex -0.0095 -0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0033 0.0000
+vertex -0.0095 -0.0043 0.0000
+vertex 0.0095 -0.0043 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0018 0.0000
+vertex -0.0105 -0.0018 0.0000
+vertex -0.0095 -0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0057 0.0000
+vertex -0.0095 -0.0067 0.0000
+vertex 0.0095 -0.0067 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0008 0.0000
+vertex -0.0095 -0.0008 0.0000
+vertex -0.0095 0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0008 0.0000
+vertex 0.0095 -0.0008 0.0000
+vertex -0.0095 0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 0.0000
+vertex 0.0120 -0.0300 0.0000
+vertex -0.0085 -0.0203 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 -0.0173 0.0000
+vertex -0.0105 -0.0008 0.0000
+vertex -0.0105 0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0033 0.0000
+vertex -0.0115 -0.0173 0.0000
+vertex -0.0105 0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0043 0.0000
+vertex -0.0120 0.0300 0.0000
+vertex -0.0115 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0018 0.0000
+vertex -0.0095 0.0018 0.0000
+vertex -0.0105 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0043 0.0000
+vertex -0.0115 -0.0173 0.0000
+vertex -0.0105 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0057 0.0000
+vertex -0.0105 0.0067 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0083 0.0000
+vertex -0.0105 0.0092 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0067 0.0000
+vertex -0.0095 0.0067 0.0000
+vertex -0.0105 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0067 0.0000
+vertex -0.0105 0.0083 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0043 0.0000
+vertex -0.0095 0.0043 0.0000
+vertex -0.0105 0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0043 0.0000
+vertex -0.0105 0.0057 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0108 0.0000
+vertex -0.0105 0.0118 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 0.0000
+vertex -0.0105 0.0132 0.0000
+vertex -0.0105 0.0143 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0132 0.0000
+vertex -0.0120 0.0300 0.0000
+vertex -0.0105 0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0118 0.0000
+vertex -0.0095 0.0118 0.0000
+vertex -0.0105 0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0108 0.0000
+vertex -0.0120 0.0300 0.0000
+vertex -0.0105 0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0143 0.0000
+vertex -0.0105 0.0158 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0158 0.0000
+vertex -0.0105 0.0143 0.0000
+vertex -0.0095 0.0143 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0168 0.0000
+vertex -0.0105 0.0182 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0182 0.0000
+vertex -0.0105 0.0168 0.0000
+vertex -0.0095 0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0158 0.0000
+vertex -0.0105 0.0168 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 0.0000
+vertex -0.0105 0.0182 0.0000
+vertex -0.0105 0.0192 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0092 0.0000
+vertex -0.0095 0.0092 0.0000
+vertex -0.0105 0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0018 0.0000
+vertex -0.0115 -0.0173 0.0000
+vertex -0.0105 0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0033 0.0000
+vertex -0.0105 0.0033 0.0000
+vertex -0.0095 0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0008 0.0000
+vertex -0.0095 0.0018 0.0000
+vertex -0.0095 0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0057 0.0000
+vertex -0.0105 0.0057 0.0000
+vertex -0.0095 0.0043 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0033 0.0000
+vertex -0.0095 0.0043 0.0000
+vertex -0.0095 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0033 0.0000
+vertex -0.0095 0.0018 0.0000
+vertex 0.0095 0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0083 0.0000
+vertex -0.0105 0.0083 0.0000
+vertex -0.0095 0.0067 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0057 0.0000
+vertex -0.0095 0.0067 0.0000
+vertex -0.0095 0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0108 0.0000
+vertex -0.0105 0.0108 0.0000
+vertex -0.0095 0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0083 0.0000
+vertex -0.0095 0.0092 0.0000
+vertex -0.0095 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0083 0.0000
+vertex -0.0095 0.0067 0.0000
+vertex 0.0095 0.0067 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0057 0.0000
+vertex -0.0095 0.0043 0.0000
+vertex 0.0095 0.0043 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0132 0.0000
+vertex -0.0105 0.0132 0.0000
+vertex -0.0095 0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0108 0.0000
+vertex -0.0095 0.0118 0.0000
+vertex -0.0095 0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0143 0.0000
+vertex -0.0095 0.0158 0.0000
+vertex -0.0105 0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0132 0.0000
+vertex -0.0095 0.0118 0.0000
+vertex 0.0095 0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0085 0.0173 0.0000
+vertex -0.0095 0.0158 0.0000
+vertex -0.0095 0.0143 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0085 0.0173 0.0000
+vertex -0.0095 0.0182 0.0000
+vertex -0.0095 0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0085 0.0173 0.0000
+vertex -0.0095 0.0192 0.0000
+vertex -0.0095 0.0182 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0168 0.0000
+vertex -0.0095 0.0158 0.0000
+vertex 0.0085 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0182 0.0000
+vertex -0.0105 0.0182 0.0000
+vertex -0.0095 0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0143 0.0000
+vertex -0.0095 0.0132 0.0000
+vertex 0.0085 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0192 0.0000
+vertex -0.0095 0.0192 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0108 0.0000
+vertex -0.0095 0.0092 0.0000
+vertex 0.0095 0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0008 0.0000
+vertex -0.0105 -0.0008 0.0000
+vertex -0.0095 0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 0.0000
+vertex -0.0095 0.0192 0.0000
+vertex 0.0085 0.0203 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0132 0.0000
+vertex -0.0095 -0.0132 0.0000
+vertex -0.0085 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0168 0.0000
+vertex -0.0085 -0.0173 0.0000
+vertex 0.0095 -0.0182 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0143 0.0000
+vertex -0.0085 -0.0173 0.0000
+vertex 0.0095 -0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0182 0.0000
+vertex 0.0105 -0.0182 0.0000
+vertex 0.0095 -0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0158 0.0000
+vertex -0.0085 -0.0173 0.0000
+vertex 0.0095 -0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0118 0.0000
+vertex -0.0095 -0.0118 0.0000
+vertex 0.0095 -0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0092 0.0000
+vertex -0.0095 -0.0092 0.0000
+vertex 0.0095 -0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0132 0.0000
+vertex 0.0105 -0.0132 0.0000
+vertex 0.0095 -0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0108 0.0000
+vertex -0.0095 -0.0108 0.0000
+vertex 0.0095 -0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0158 0.0000
+vertex 0.0105 -0.0158 0.0000
+vertex 0.0095 -0.0143 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0132 0.0000
+vertex -0.0085 -0.0173 0.0000
+vertex 0.0095 -0.0143 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0067 0.0000
+vertex -0.0095 -0.0067 0.0000
+vertex 0.0095 -0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0043 0.0000
+vertex -0.0095 -0.0043 0.0000
+vertex 0.0095 -0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0083 0.0000
+vertex 0.0105 -0.0083 0.0000
+vertex 0.0095 -0.0067 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0057 0.0000
+vertex -0.0095 -0.0057 0.0000
+vertex 0.0095 -0.0067 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0018 0.0000
+vertex -0.0095 -0.0018 0.0000
+vertex 0.0095 -0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0008 0.0000
+vertex -0.0095 0.0008 0.0000
+vertex 0.0095 -0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0033 0.0000
+vertex 0.0105 -0.0033 0.0000
+vertex 0.0095 -0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0008 0.0000
+vertex -0.0095 -0.0008 0.0000
+vertex 0.0095 -0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0057 0.0000
+vertex 0.0105 -0.0057 0.0000
+vertex 0.0095 -0.0043 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0033 0.0000
+vertex -0.0095 -0.0033 0.0000
+vertex 0.0095 -0.0043 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0108 0.0000
+vertex 0.0105 -0.0108 0.0000
+vertex 0.0095 -0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0083 0.0000
+vertex -0.0095 -0.0083 0.0000
+vertex 0.0095 -0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0182 0.0000
+vertex 0.0105 -0.0192 0.0000
+vertex 0.0120 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0158 0.0000
+vertex 0.0105 -0.0168 0.0000
+vertex 0.0120 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0182 0.0000
+vertex 0.0120 -0.0300 0.0000
+vertex 0.0105 -0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0182 0.0000
+vertex 0.0105 -0.0168 0.0000
+vertex 0.0095 -0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0143 0.0000
+vertex 0.0120 -0.0300 0.0000
+vertex 0.0105 -0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0300 0.0000
+vertex 0.0105 -0.0143 0.0000
+vertex 0.0105 -0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0132 0.0000
+vertex 0.0105 -0.0118 0.0000
+vertex 0.0095 -0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0118 0.0000
+vertex 0.0105 -0.0132 0.0000
+vertex 0.0120 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0300 0.0000
+vertex 0.0105 -0.0108 0.0000
+vertex 0.0105 -0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0192 0.0000
+vertex 0.0095 -0.0192 0.0000
+vertex 0.0120 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0158 0.0000
+vertex 0.0105 -0.0143 0.0000
+vertex 0.0095 -0.0143 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0108 0.0000
+vertex 0.0105 -0.0092 0.0000
+vertex 0.0095 -0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0092 0.0000
+vertex 0.0105 -0.0108 0.0000
+vertex 0.0120 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0083 0.0000
+vertex 0.0105 -0.0067 0.0000
+vertex 0.0095 -0.0067 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0067 0.0000
+vertex 0.0105 -0.0083 0.0000
+vertex 0.0120 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0092 0.0000
+vertex 0.0120 -0.0300 0.0000
+vertex 0.0105 -0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0057 0.0000
+vertex 0.0105 -0.0043 0.0000
+vertex 0.0095 -0.0043 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0043 0.0000
+vertex 0.0105 -0.0057 0.0000
+vertex 0.0120 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0033 0.0000
+vertex 0.0105 -0.0018 0.0000
+vertex 0.0095 -0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 0.0173 0.0000
+vertex 0.0105 -0.0018 0.0000
+vertex 0.0105 -0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 0.0173 0.0000
+vertex 0.0105 -0.0008 0.0000
+vertex 0.0105 -0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0033 0.0000
+vertex 0.0105 -0.0043 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0067 0.0000
+vertex 0.0120 -0.0300 0.0000
+vertex 0.0105 -0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0300 0.0000
+vertex 0.0115 0.0173 0.0000
+vertex 0.0105 -0.0043 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0192 0.0000
+vertex -0.0085 -0.0203 0.0000
+vertex 0.0120 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0008 0.0000
+vertex 0.0105 -0.0008 0.0000
+vertex 0.0105 0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0033 0.0000
+vertex -0.0095 0.0033 0.0000
+vertex 0.0095 0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0057 0.0000
+vertex -0.0095 0.0057 0.0000
+vertex 0.0095 0.0043 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0018 0.0000
+vertex 0.0105 0.0018 0.0000
+vertex 0.0095 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0043 0.0000
+vertex -0.0095 0.0043 0.0000
+vertex 0.0095 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0083 0.0000
+vertex -0.0095 0.0083 0.0000
+vertex 0.0095 0.0067 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0108 0.0000
+vertex -0.0095 0.0108 0.0000
+vertex 0.0095 0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0067 0.0000
+vertex 0.0105 0.0067 0.0000
+vertex 0.0095 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0092 0.0000
+vertex -0.0095 0.0092 0.0000
+vertex 0.0095 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0043 0.0000
+vertex 0.0105 0.0043 0.0000
+vertex 0.0095 0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0067 0.0000
+vertex -0.0095 0.0067 0.0000
+vertex 0.0095 0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0132 0.0000
+vertex -0.0095 0.0132 0.0000
+vertex 0.0095 0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0085 0.0173 0.0000
+vertex 0.0085 0.0203 0.0000
+vertex -0.0095 0.0192 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 0.0173 0.0000
+vertex 0.0085 0.0173 0.0000
+vertex 0.0095 0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0132 0.0000
+vertex 0.0095 0.0132 0.0000
+vertex 0.0085 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0118 0.0000
+vertex 0.0095 0.0108 0.0000
+vertex 0.0095 0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0132 0.0000
+vertex 0.0095 0.0143 0.0000
+vertex 0.0085 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0158 0.0000
+vertex 0.0095 0.0168 0.0000
+vertex 0.0085 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0143 0.0000
+vertex 0.0105 0.0143 0.0000
+vertex 0.0095 0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0143 0.0000
+vertex 0.0095 0.0158 0.0000
+vertex 0.0085 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0118 0.0000
+vertex 0.0105 0.0118 0.0000
+vertex 0.0095 0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0168 0.0000
+vertex 0.0105 0.0168 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0092 0.0000
+vertex 0.0105 0.0092 0.0000
+vertex 0.0095 0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0018 0.0000
+vertex 0.0095 0.0008 0.0000
+vertex 0.0095 0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0018 0.0000
+vertex 0.0105 0.0008 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0043 0.0000
+vertex 0.0105 0.0033 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0018 0.0000
+vertex 0.0115 0.0173 0.0000
+vertex 0.0105 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0018 0.0000
+vertex 0.0105 0.0033 0.0000
+vertex 0.0095 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0067 0.0000
+vertex 0.0105 0.0057 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0092 0.0000
+vertex 0.0105 0.0083 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0067 0.0000
+vertex 0.0115 0.0173 0.0000
+vertex 0.0105 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0067 0.0000
+vertex 0.0105 0.0083 0.0000
+vertex 0.0095 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0043 0.0000
+vertex 0.0115 0.0173 0.0000
+vertex 0.0105 0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0043 0.0000
+vertex 0.0105 0.0057 0.0000
+vertex 0.0095 0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0118 0.0000
+vertex 0.0105 0.0108 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0143 0.0000
+vertex 0.0105 0.0132 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0118 0.0000
+vertex 0.0115 0.0173 0.0000
+vertex 0.0105 0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0118 0.0000
+vertex 0.0105 0.0132 0.0000
+vertex 0.0095 0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0168 0.0000
+vertex 0.0105 0.0158 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 0.0173 0.0000
+vertex 0.0120 0.0300 0.0000
+vertex 0.0115 0.0203 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0300 0.0000
+vertex 0.0115 0.0173 0.0000
+vertex 0.0120 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0300 0.0000
+vertex 0.0085 0.0203 0.0000
+vertex 0.0115 0.0203 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0158 0.0000
+vertex 0.0105 0.0143 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0108 0.0000
+vertex 0.0105 0.0092 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0143 0.0000
+vertex 0.0105 0.0158 0.0000
+vertex 0.0095 0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0008 0.0000
+vertex 0.0105 -0.0008 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0092 0.0000
+vertex 0.0105 0.0108 0.0000
+vertex 0.0095 0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0008 0.0000
+vertex 0.0095 -0.0008 0.0000
+vertex 0.0105 0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0085 0.0203 0.0000
+vertex 0.0120 0.0300 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0182 0.0000
+vertex -0.0085 -0.0173 0.0000
+vertex 0.0095 -0.0192 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0300 0.0000
+vertex 0.0120 0.0060 -0.0131
+vertex 0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0060 -0.0131
+vertex 0.0120 -0.0300 0.0000
+vertex 0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0300 0.0000
+vertex 0.0120 0.0240 -0.0131
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0240 -0.0131
+vertex 0.0120 0.0300 0.0000
+vertex 0.0120 0.0060 -0.0131
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0060 -0.0337
+vertex 0.0120 -0.0300 -0.0360
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0300 -0.0360
+vertex 0.0120 0.0060 -0.0337
+vertex 0.0120 0.0060 -0.0131
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0240 -0.0337
+vertex 0.0120 0.0300 -0.0360
+vertex 0.0120 0.0240 -0.0131
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0300 -0.0360
+vertex 0.0120 0.0240 -0.0337
+vertex 0.0120 0.0060 -0.0337
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0300 -0.0360
+vertex 0.0115 -0.0203 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0105 -0.0168 -0.0360
+vertex 0.0105 -0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 -0.0203 -0.0360
+vertex 0.0120 -0.0300 -0.0360
+vertex 0.0085 -0.0203 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0300 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0158 -0.0360
+vertex 0.0105 -0.0143 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0143 -0.0360
+vertex 0.0105 -0.0158 -0.0360
+vertex 0.0095 -0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0132 -0.0360
+vertex 0.0105 -0.0118 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0118 -0.0360
+vertex 0.0105 -0.0132 -0.0360
+vertex 0.0095 -0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0143 -0.0360
+vertex 0.0105 -0.0132 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0105 -0.0118 -0.0360
+vertex 0.0105 -0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0108 -0.0360
+vertex 0.0105 -0.0092 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0092 -0.0360
+vertex 0.0105 -0.0108 -0.0360
+vertex 0.0095 -0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0083 -0.0360
+vertex 0.0105 -0.0067 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0067 -0.0360
+vertex 0.0105 -0.0083 -0.0360
+vertex 0.0095 -0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0092 -0.0360
+vertex 0.0105 -0.0083 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0057 -0.0360
+vertex 0.0105 -0.0043 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0043 -0.0360
+vertex 0.0105 -0.0057 -0.0360
+vertex 0.0095 -0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0033 -0.0360
+vertex 0.0105 -0.0018 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0018 -0.0360
+vertex 0.0105 -0.0033 -0.0360
+vertex 0.0095 -0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0043 -0.0360
+vertex 0.0105 -0.0033 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0067 -0.0360
+vertex 0.0105 -0.0057 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0105 -0.0018 -0.0360
+vertex 0.0105 -0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0143 -0.0360
+vertex 0.0105 -0.0143 -0.0360
+vertex 0.0095 -0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0158 -0.0360
+vertex 0.0095 -0.0168 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0118 -0.0360
+vertex 0.0105 -0.0118 -0.0360
+vertex 0.0095 -0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0132 -0.0360
+vertex 0.0095 -0.0143 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0158 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+vertex 0.0095 -0.0143 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0132 -0.0360
+vertex -0.0095 -0.0132 -0.0360
+vertex 0.0095 -0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0085 -0.0173 -0.0360
+vertex 0.0085 -0.0203 -0.0360
+vertex -0.0095 -0.0192 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0092 -0.0360
+vertex 0.0105 -0.0092 -0.0360
+vertex 0.0095 -0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0118 -0.0360
+vertex 0.0095 -0.0108 -0.0360
+vertex 0.0095 -0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0108 -0.0360
+vertex -0.0095 -0.0108 -0.0360
+vertex 0.0095 -0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0168 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0168 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0095 -0.0168 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0067 -0.0360
+vertex 0.0105 -0.0067 -0.0360
+vertex 0.0095 -0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0092 -0.0360
+vertex 0.0095 -0.0083 -0.0360
+vertex 0.0095 -0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0057 -0.0360
+vertex 0.0095 -0.0043 -0.0360
+vertex 0.0105 -0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0067 -0.0360
+vertex 0.0095 -0.0083 -0.0360
+vertex -0.0095 -0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0057 -0.0360
+vertex 0.0095 -0.0043 -0.0360
+vertex 0.0095 -0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0033 -0.0360
+vertex 0.0095 -0.0018 -0.0360
+vertex 0.0095 -0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0018 -0.0360
+vertex 0.0095 -0.0008 -0.0360
+vertex 0.0095 -0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0033 -0.0360
+vertex 0.0095 -0.0043 -0.0360
+vertex -0.0095 -0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0018 -0.0360
+vertex 0.0105 -0.0018 -0.0360
+vertex 0.0095 -0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0057 -0.0360
+vertex 0.0095 -0.0067 -0.0360
+vertex -0.0095 -0.0067 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0008 -0.0360
+vertex 0.0095 -0.0008 -0.0360
+vertex 0.0095 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0008 -0.0360
+vertex -0.0095 -0.0008 -0.0360
+vertex 0.0095 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0300 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+vertex 0.0085 -0.0203 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0105 -0.0008 -0.0360
+vertex 0.0105 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0033 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0105 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0043 -0.0360
+vertex 0.0120 0.0300 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0018 -0.0360
+vertex 0.0095 0.0018 -0.0360
+vertex 0.0105 0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0043 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0105 0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0057 -0.0360
+vertex 0.0105 0.0067 -0.0360
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0083 -0.0360
+vertex 0.0105 0.0092 -0.0360
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0067 -0.0360
+vertex 0.0095 0.0067 -0.0360
+vertex 0.0105 0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0067 -0.0360
+vertex 0.0105 0.0083 -0.0360
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0043 -0.0360
+vertex 0.0095 0.0043 -0.0360
+vertex 0.0105 0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0043 -0.0360
+vertex 0.0105 0.0057 -0.0360
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0108 -0.0360
+vertex 0.0105 0.0118 -0.0360
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0300 -0.0360
+vertex 0.0105 0.0132 -0.0360
+vertex 0.0105 0.0143 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0132 -0.0360
+vertex 0.0120 0.0300 -0.0360
+vertex 0.0105 0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0118 -0.0360
+vertex 0.0095 0.0118 -0.0360
+vertex 0.0105 0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0108 -0.0360
+vertex 0.0120 0.0300 -0.0360
+vertex 0.0105 0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0143 -0.0360
+vertex 0.0105 0.0158 -0.0360
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0158 -0.0360
+vertex 0.0105 0.0143 -0.0360
+vertex 0.0095 0.0143 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0168 -0.0360
+vertex 0.0105 0.0182 -0.0360
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0182 -0.0360
+vertex 0.0105 0.0168 -0.0360
+vertex 0.0095 0.0168 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0158 -0.0360
+vertex 0.0105 0.0168 -0.0360
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0300 -0.0360
+vertex 0.0105 0.0182 -0.0360
+vertex 0.0105 0.0192 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0092 -0.0360
+vertex 0.0095 0.0092 -0.0360
+vertex 0.0105 0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0018 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0105 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0033 -0.0360
+vertex 0.0105 0.0033 -0.0360
+vertex 0.0095 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0008 -0.0360
+vertex 0.0095 0.0018 -0.0360
+vertex 0.0095 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0057 -0.0360
+vertex 0.0105 0.0057 -0.0360
+vertex 0.0095 0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0033 -0.0360
+vertex 0.0095 0.0043 -0.0360
+vertex 0.0095 0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0033 -0.0360
+vertex 0.0095 0.0018 -0.0360
+vertex -0.0095 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0083 -0.0360
+vertex 0.0105 0.0083 -0.0360
+vertex 0.0095 0.0067 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0057 -0.0360
+vertex 0.0095 0.0067 -0.0360
+vertex 0.0095 0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0108 -0.0360
+vertex 0.0105 0.0108 -0.0360
+vertex 0.0095 0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0083 -0.0360
+vertex 0.0095 0.0092 -0.0360
+vertex 0.0095 0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0083 -0.0360
+vertex 0.0095 0.0067 -0.0360
+vertex -0.0095 0.0067 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0057 -0.0360
+vertex 0.0095 0.0043 -0.0360
+vertex -0.0095 0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0132 -0.0360
+vertex 0.0105 0.0132 -0.0360
+vertex 0.0095 0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0108 -0.0360
+vertex 0.0095 0.0118 -0.0360
+vertex 0.0095 0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0143 -0.0360
+vertex 0.0095 0.0158 -0.0360
+vertex 0.0105 0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0132 -0.0360
+vertex 0.0095 0.0118 -0.0360
+vertex -0.0095 0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 0.0173 -0.0360
+vertex 0.0095 0.0158 -0.0360
+vertex 0.0095 0.0143 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 0.0173 -0.0360
+vertex 0.0095 0.0182 -0.0360
+vertex 0.0095 0.0168 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 0.0173 -0.0360
+vertex 0.0095 0.0192 -0.0360
+vertex 0.0095 0.0182 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0168 -0.0360
+vertex 0.0095 0.0158 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0182 -0.0360
+vertex 0.0105 0.0182 -0.0360
+vertex 0.0095 0.0168 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0143 -0.0360
+vertex 0.0095 0.0132 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0192 -0.0360
+vertex 0.0095 0.0192 -0.0360
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0108 -0.0360
+vertex 0.0095 0.0092 -0.0360
+vertex -0.0095 0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0008 -0.0360
+vertex 0.0105 -0.0008 -0.0360
+vertex 0.0095 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0300 -0.0360
+vertex 0.0095 0.0192 -0.0360
+vertex -0.0085 0.0203 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0132 -0.0360
+vertex 0.0095 -0.0132 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0168 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+vertex -0.0095 -0.0182 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0143 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+vertex -0.0095 -0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0182 -0.0360
+vertex -0.0105 -0.0182 -0.0360
+vertex -0.0095 -0.0168 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0158 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+vertex -0.0095 -0.0168 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0118 -0.0360
+vertex 0.0095 -0.0118 -0.0360
+vertex -0.0095 -0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0092 -0.0360
+vertex 0.0095 -0.0092 -0.0360
+vertex -0.0095 -0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0132 -0.0360
+vertex -0.0105 -0.0132 -0.0360
+vertex -0.0095 -0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0108 -0.0360
+vertex 0.0095 -0.0108 -0.0360
+vertex -0.0095 -0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0158 -0.0360
+vertex -0.0105 -0.0158 -0.0360
+vertex -0.0095 -0.0143 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0132 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+vertex -0.0095 -0.0143 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0067 -0.0360
+vertex 0.0095 -0.0067 -0.0360
+vertex -0.0095 -0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0043 -0.0360
+vertex 0.0095 -0.0043 -0.0360
+vertex -0.0095 -0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0083 -0.0360
+vertex -0.0105 -0.0083 -0.0360
+vertex -0.0095 -0.0067 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0057 -0.0360
+vertex 0.0095 -0.0057 -0.0360
+vertex -0.0095 -0.0067 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0018 -0.0360
+vertex 0.0095 -0.0018 -0.0360
+vertex -0.0095 -0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0008 -0.0360
+vertex 0.0095 0.0008 -0.0360
+vertex -0.0095 -0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0033 -0.0360
+vertex -0.0105 -0.0033 -0.0360
+vertex -0.0095 -0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0008 -0.0360
+vertex 0.0095 -0.0008 -0.0360
+vertex -0.0095 -0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0057 -0.0360
+vertex -0.0105 -0.0057 -0.0360
+vertex -0.0095 -0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0033 -0.0360
+vertex 0.0095 -0.0033 -0.0360
+vertex -0.0095 -0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0108 -0.0360
+vertex -0.0105 -0.0108 -0.0360
+vertex -0.0095 -0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0083 -0.0360
+vertex 0.0095 -0.0083 -0.0360
+vertex -0.0095 -0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0182 -0.0360
+vertex -0.0105 -0.0192 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0158 -0.0360
+vertex -0.0105 -0.0168 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0182 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0105 -0.0168 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0182 -0.0360
+vertex -0.0105 -0.0168 -0.0360
+vertex -0.0095 -0.0168 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0143 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0105 -0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0105 -0.0143 -0.0360
+vertex -0.0105 -0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0132 -0.0360
+vertex -0.0105 -0.0118 -0.0360
+vertex -0.0095 -0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0118 -0.0360
+vertex -0.0105 -0.0132 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0105 -0.0108 -0.0360
+vertex -0.0105 -0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0192 -0.0360
+vertex -0.0095 -0.0192 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0158 -0.0360
+vertex -0.0105 -0.0143 -0.0360
+vertex -0.0095 -0.0143 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0108 -0.0360
+vertex -0.0105 -0.0092 -0.0360
+vertex -0.0095 -0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0092 -0.0360
+vertex -0.0105 -0.0108 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0083 -0.0360
+vertex -0.0105 -0.0067 -0.0360
+vertex -0.0095 -0.0067 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0067 -0.0360
+vertex -0.0105 -0.0083 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0092 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0105 -0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0057 -0.0360
+vertex -0.0105 -0.0043 -0.0360
+vertex -0.0095 -0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0043 -0.0360
+vertex -0.0105 -0.0057 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0033 -0.0360
+vertex -0.0105 -0.0018 -0.0360
+vertex -0.0095 -0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 -0.0018 -0.0360
+vertex -0.0105 -0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 -0.0008 -0.0360
+vertex -0.0105 -0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0033 -0.0360
+vertex -0.0105 -0.0043 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0067 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0105 -0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 -0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0192 -0.0360
+vertex 0.0085 -0.0203 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0008 -0.0360
+vertex -0.0105 -0.0008 -0.0360
+vertex -0.0105 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0033 -0.0360
+vertex 0.0095 0.0033 -0.0360
+vertex -0.0095 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0057 -0.0360
+vertex 0.0095 0.0057 -0.0360
+vertex -0.0095 0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0018 -0.0360
+vertex -0.0105 0.0018 -0.0360
+vertex -0.0095 0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0043 -0.0360
+vertex 0.0095 0.0043 -0.0360
+vertex -0.0095 0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0083 -0.0360
+vertex 0.0095 0.0083 -0.0360
+vertex -0.0095 0.0067 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0108 -0.0360
+vertex 0.0095 0.0108 -0.0360
+vertex -0.0095 0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0067 -0.0360
+vertex -0.0105 0.0067 -0.0360
+vertex -0.0095 0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0092 -0.0360
+vertex 0.0095 0.0092 -0.0360
+vertex -0.0095 0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0043 -0.0360
+vertex -0.0105 0.0043 -0.0360
+vertex -0.0095 0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0067 -0.0360
+vertex 0.0095 0.0067 -0.0360
+vertex -0.0095 0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0132 -0.0360
+vertex 0.0095 0.0132 -0.0360
+vertex -0.0095 0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 0.0173 -0.0360
+vertex -0.0085 0.0203 -0.0360
+vertex 0.0095 0.0192 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0085 0.0173 -0.0360
+vertex -0.0095 0.0168 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0132 -0.0360
+vertex -0.0095 0.0132 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0118 -0.0360
+vertex -0.0095 0.0108 -0.0360
+vertex -0.0095 0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0132 -0.0360
+vertex -0.0095 0.0143 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0158 -0.0360
+vertex -0.0095 0.0168 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0143 -0.0360
+vertex -0.0105 0.0143 -0.0360
+vertex -0.0095 0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0143 -0.0360
+vertex -0.0095 0.0158 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0118 -0.0360
+vertex -0.0105 0.0118 -0.0360
+vertex -0.0095 0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0168 -0.0360
+vertex -0.0105 0.0168 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0092 -0.0360
+vertex -0.0105 0.0092 -0.0360
+vertex -0.0095 0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0018 -0.0360
+vertex -0.0095 0.0008 -0.0360
+vertex -0.0095 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0018 -0.0360
+vertex -0.0105 0.0008 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0043 -0.0360
+vertex -0.0105 0.0033 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0018 -0.0360
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0018 -0.0360
+vertex -0.0105 0.0033 -0.0360
+vertex -0.0095 0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0067 -0.0360
+vertex -0.0105 0.0057 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0092 -0.0360
+vertex -0.0105 0.0083 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0067 -0.0360
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0067 -0.0360
+vertex -0.0105 0.0083 -0.0360
+vertex -0.0095 0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0043 -0.0360
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0043 -0.0360
+vertex -0.0105 0.0057 -0.0360
+vertex -0.0095 0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0118 -0.0360
+vertex -0.0105 0.0108 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0143 -0.0360
+vertex -0.0105 0.0132 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0118 -0.0360
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0118 -0.0360
+vertex -0.0105 0.0132 -0.0360
+vertex -0.0095 0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0168 -0.0360
+vertex -0.0105 0.0158 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0115 0.0203 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0085 0.0203 -0.0360
+vertex -0.0115 0.0203 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0158 -0.0360
+vertex -0.0105 0.0143 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0108 -0.0360
+vertex -0.0105 0.0092 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0143 -0.0360
+vertex -0.0105 0.0158 -0.0360
+vertex -0.0095 0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0008 -0.0360
+vertex -0.0105 -0.0008 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0092 -0.0360
+vertex -0.0105 0.0108 -0.0360
+vertex -0.0095 0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0008 -0.0360
+vertex -0.0095 -0.0008 -0.0360
+vertex -0.0105 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 0.0203 -0.0360
+vertex -0.0120 0.0300 -0.0360
+vertex 0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0182 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+vertex -0.0095 -0.0192 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0120 0.0127 -0.0304
+vertex -0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0127 -0.0304
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0120 0.0127 -0.0099
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0120 0.0257 -0.0304
+vertex -0.0120 0.0257 -0.0099
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0257 -0.0304
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0120 0.0127 -0.0304
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0127 -0.0099
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0120 0.0127 -0.0099
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0257 -0.0099
+vertex -0.0120 0.0300 0.0000
+vertex -0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 0.0000
+vertex -0.0120 0.0257 -0.0099
+vertex -0.0120 0.0127 -0.0099
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0300 -0.0130
+vertex 0.0480 0.0300 -0.0129
+vertex 0.0250 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0480 0.0300 -0.0129
+vertex 0.0530 0.0300 -0.0130
+vertex 0.0530 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0300 -0.0130
+vertex 0.0250 0.0300 -0.0129
+vertex 0.0250 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0300 -0.0129
+vertex 0.0120 0.0300 -0.0130
+vertex 0.0530 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0480 0.0300 -0.0001
+vertex 0.0530 0.0300 0.0000
+vertex 0.0250 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0300 0.0000
+vertex 0.0480 0.0300 -0.0001
+vertex 0.0480 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0300 -0.0001
+vertex 0.0120 0.0300 0.0000
+vertex 0.0120 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0300 0.0000
+vertex 0.0250 0.0300 -0.0001
+vertex 0.0530 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0300 -0.0000
+vertex 0.0530 0.0300 0.0000
+vertex 0.0530 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0110 0.0000
+vertex 0.0120 0.0110 0.0000
+vertex 0.0120 0.0300 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0110 0.0000
+vertex 0.0530 0.0110 0.0000
+vertex 0.0530 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0110 -0.0130
+vertex 0.0120 0.0110 -0.0130
+vertex 0.0120 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0110 -0.0130
+vertex 0.0530 0.0110 -0.0130
+vertex 0.0530 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0300 -0.0130
+vertex 0.0120 0.0300 -0.0130
+vertex 0.0120 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0522 0.0460 -0.0281
+vertex 0.0323 0.0460 -0.0328
+vertex 0.0447 0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0447 0.0460 -0.0319
+vertex 0.0486 0.0460 -0.0303
+vertex 0.0522 0.0460 -0.0281
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0365 0.0460 -0.0332
+vertex 0.0407 0.0460 -0.0328
+vertex 0.0447 0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0522 0.0460 -0.0281
+vertex 0.0554 0.0460 -0.0254
+vertex 0.0581 0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0522 0.0460 -0.0281
+vertex 0.0407 0.0460 0.0198
+vertex 0.0149 0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0603 0.0460 -0.0186
+vertex 0.0619 0.0460 -0.0147
+vertex 0.0628 0.0460 -0.0107
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0628 0.0460 -0.0107
+vertex 0.0522 0.0460 -0.0281
+vertex 0.0603 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0581 0.0460 -0.0222
+vertex 0.0603 0.0460 -0.0186
+vertex 0.0522 0.0460 -0.0281
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0522 0.0460 -0.0281
+vertex 0.0628 0.0460 -0.0107
+vertex 0.0581 0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0149 0.0460 -0.0222
+vertex 0.0244 0.0460 -0.0303
+vertex 0.0323 0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0323 0.0460 -0.0328
+vertex 0.0244 0.0460 -0.0303
+vertex 0.0283 0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0208 0.0460 -0.0281
+vertex 0.0244 0.0460 -0.0303
+vertex 0.0176 0.0460 -0.0254
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0365 0.0460 -0.0332
+vertex 0.0447 0.0460 -0.0319
+vertex 0.0323 0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0176 0.0460 -0.0254
+vertex 0.0244 0.0460 -0.0303
+vertex 0.0149 0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0149 0.0460 -0.0222
+vertex 0.0111 0.0460 -0.0147
+vertex 0.0127 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0111 0.0460 -0.0147
+vertex 0.0149 0.0460 -0.0222
+vertex 0.0098 0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0522 0.0460 -0.0281
+vertex 0.0149 0.0460 -0.0222
+vertex 0.0323 0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0102 0.0460 -0.0107
+vertex 0.0111 0.0460 -0.0147
+vertex 0.0098 0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0628 0.0460 -0.0107
+vertex 0.0632 0.0460 -0.0065
+vertex 0.0619 0.0460 0.0017
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0581 0.0460 0.0092
+vertex 0.0628 0.0460 -0.0107
+vertex 0.0619 0.0460 0.0017
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0522 0.0460 -0.0281
+vertex 0.0581 0.0460 0.0092
+vertex 0.0407 0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0581 0.0460 0.0092
+vertex 0.0619 0.0460 0.0017
+vertex 0.0603 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0522 0.0460 0.0151
+vertex 0.0581 0.0460 0.0092
+vertex 0.0554 0.0460 0.0124
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0486 0.0460 0.0173
+vertex 0.0407 0.0460 0.0198
+vertex 0.0581 0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0407 0.0460 0.0198
+vertex 0.0127 0.0460 0.0056
+vertex 0.0149 0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0407 0.0460 0.0198
+vertex 0.0486 0.0460 0.0173
+vertex 0.0447 0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0581 0.0460 0.0092
+vertex 0.0522 0.0460 0.0151
+vertex 0.0486 0.0460 0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0283 0.0460 0.0189
+vertex 0.0407 0.0460 0.0198
+vertex 0.0365 0.0460 0.0202
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0176 0.0460 0.0124
+vertex 0.0149 0.0460 0.0092
+vertex 0.0127 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0098 0.0460 -0.0065
+vertex 0.0111 0.0460 0.0017
+vertex 0.0102 0.0460 -0.0023
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0111 0.0460 0.0017
+vertex 0.0098 0.0460 -0.0065
+vertex 0.0127 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0098 0.0460 -0.0065
+vertex 0.0149 0.0460 -0.0222
+vertex 0.0127 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0208 0.0460 0.0151
+vertex 0.0127 0.0460 0.0056
+vertex 0.0407 0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0208 0.0460 0.0151
+vertex 0.0176 0.0460 0.0124
+vertex 0.0127 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0208 0.0460 0.0151
+vertex 0.0283 0.0460 0.0189
+vertex 0.0244 0.0460 0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0283 0.0460 0.0189
+vertex 0.0208 0.0460 0.0151
+vertex 0.0407 0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0323 0.0460 0.0198
+vertex 0.0283 0.0460 0.0189
+vertex 0.0365 0.0460 0.0202
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0619 0.0460 0.0017
+vertex 0.0632 0.0460 -0.0065
+vertex 0.0628 0.0460 -0.0023
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0400 -0.0110 -0.0130
+vertex 0.0400 0.0110 -0.0130
+vertex 0.0530 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0110 -0.0130
+vertex 0.0530 -0.0110 -0.0130
+vertex 0.0400 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0110 -0.0130
+vertex 0.0530 0.0110 -0.0130
+vertex 0.0530 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0110 0.0000
+vertex 0.0530 -0.0110 0.0000
+vertex 0.0530 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0110 0.0000
+vertex 0.0530 0.0110 0.0000
+vertex 0.0400 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0400 0.0110 0.0000
+vertex 0.0400 -0.0110 0.0000
+vertex 0.0530 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0400 -0.0110 0.0000
+vertex 0.0400 0.0110 0.0000
+vertex 0.0400 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0400 0.0110 -0.0130
+vertex 0.0400 -0.0110 -0.0130
+vertex 0.0400 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0300 -0.0130
+vertex 0.0250 -0.0300 -0.0129
+vertex 0.0530 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0300 -0.0129
+vertex 0.0120 -0.0300 -0.0130
+vertex 0.0120 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0300 -0.0130
+vertex 0.0480 -0.0300 -0.0129
+vertex 0.0480 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0480 -0.0300 -0.0129
+vertex 0.0530 -0.0300 -0.0130
+vertex 0.0250 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0300 -0.0001
+vertex 0.0120 -0.0300 0.0000
+vertex 0.0530 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0300 0.0000
+vertex 0.0250 -0.0300 -0.0001
+vertex 0.0250 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0480 -0.0300 -0.0001
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0530 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0480 -0.0300 -0.0001
+vertex 0.0250 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0120 -0.0300 0.0000
+vertex 0.0120 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0110 0.0000
+vertex 0.0530 -0.0110 0.0000
+vertex 0.0530 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0110 0.0000
+vertex 0.0120 -0.0110 0.0000
+vertex 0.0120 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0110 -0.0130
+vertex 0.0530 -0.0110 -0.0130
+vertex 0.0530 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0110 -0.0130
+vertex 0.0120 -0.0110 -0.0130
+vertex 0.0120 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0300 -0.0130
+vertex 0.0530 -0.0300 -0.0130
+vertex 0.0530 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0208 -0.0460 -0.0281
+vertex 0.0407 -0.0460 -0.0328
+vertex 0.0283 -0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0283 -0.0460 -0.0319
+vertex 0.0244 -0.0460 -0.0303
+vertex 0.0208 -0.0460 -0.0281
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0365 -0.0460 -0.0332
+vertex 0.0323 -0.0460 -0.0328
+vertex 0.0283 -0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0208 -0.0460 -0.0281
+vertex 0.0176 -0.0460 -0.0254
+vertex 0.0149 -0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0208 -0.0460 -0.0281
+vertex 0.0323 -0.0460 0.0198
+vertex 0.0581 -0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0127 -0.0460 -0.0186
+vertex 0.0111 -0.0460 -0.0147
+vertex 0.0102 -0.0460 -0.0107
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0102 -0.0460 -0.0107
+vertex 0.0208 -0.0460 -0.0281
+vertex 0.0127 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0149 -0.0460 -0.0222
+vertex 0.0127 -0.0460 -0.0186
+vertex 0.0208 -0.0460 -0.0281
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0208 -0.0460 -0.0281
+vertex 0.0102 -0.0460 -0.0107
+vertex 0.0149 -0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0581 -0.0460 -0.0222
+vertex 0.0486 -0.0460 -0.0303
+vertex 0.0407 -0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0407 -0.0460 -0.0328
+vertex 0.0486 -0.0460 -0.0303
+vertex 0.0447 -0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0522 -0.0460 -0.0281
+vertex 0.0486 -0.0460 -0.0303
+vertex 0.0554 -0.0460 -0.0254
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0365 -0.0460 -0.0332
+vertex 0.0283 -0.0460 -0.0319
+vertex 0.0407 -0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0554 -0.0460 -0.0254
+vertex 0.0486 -0.0460 -0.0303
+vertex 0.0581 -0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0581 -0.0460 -0.0222
+vertex 0.0619 -0.0460 -0.0147
+vertex 0.0603 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0619 -0.0460 -0.0147
+vertex 0.0581 -0.0460 -0.0222
+vertex 0.0632 -0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0208 -0.0460 -0.0281
+vertex 0.0581 -0.0460 -0.0222
+vertex 0.0407 -0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0628 -0.0460 -0.0107
+vertex 0.0619 -0.0460 -0.0147
+vertex 0.0632 -0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0102 -0.0460 -0.0107
+vertex 0.0098 -0.0460 -0.0065
+vertex 0.0111 -0.0460 0.0017
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0149 -0.0460 0.0092
+vertex 0.0102 -0.0460 -0.0107
+vertex 0.0111 -0.0460 0.0017
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0208 -0.0460 -0.0281
+vertex 0.0149 -0.0460 0.0092
+vertex 0.0323 -0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0149 -0.0460 0.0092
+vertex 0.0111 -0.0460 0.0017
+vertex 0.0127 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0208 -0.0460 0.0151
+vertex 0.0149 -0.0460 0.0092
+vertex 0.0176 -0.0460 0.0124
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0244 -0.0460 0.0173
+vertex 0.0323 -0.0460 0.0198
+vertex 0.0149 -0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0323 -0.0460 0.0198
+vertex 0.0603 -0.0460 0.0056
+vertex 0.0581 -0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0323 -0.0460 0.0198
+vertex 0.0244 -0.0460 0.0173
+vertex 0.0283 -0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0149 -0.0460 0.0092
+vertex 0.0208 -0.0460 0.0151
+vertex 0.0244 -0.0460 0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0447 -0.0460 0.0189
+vertex 0.0323 -0.0460 0.0198
+vertex 0.0365 -0.0460 0.0202
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0554 -0.0460 0.0124
+vertex 0.0581 -0.0460 0.0092
+vertex 0.0603 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0632 -0.0460 -0.0065
+vertex 0.0619 -0.0460 0.0017
+vertex 0.0628 -0.0460 -0.0023
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0619 -0.0460 0.0017
+vertex 0.0632 -0.0460 -0.0065
+vertex 0.0603 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0632 -0.0460 -0.0065
+vertex 0.0581 -0.0460 -0.0222
+vertex 0.0603 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0522 -0.0460 0.0151
+vertex 0.0603 -0.0460 0.0056
+vertex 0.0323 -0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0522 -0.0460 0.0151
+vertex 0.0554 -0.0460 0.0124
+vertex 0.0603 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0522 -0.0460 0.0151
+vertex 0.0447 -0.0460 0.0189
+vertex 0.0486 -0.0460 0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0447 -0.0460 0.0189
+vertex 0.0522 -0.0460 0.0151
+vertex 0.0323 -0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0407 -0.0460 0.0198
+vertex 0.0447 -0.0460 0.0189
+vertex 0.0365 -0.0460 0.0202
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0111 -0.0460 0.0017
+vertex 0.0098 -0.0460 -0.0065
+vertex 0.0102 -0.0460 -0.0023
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 -0.0360
+vertex 0.0530 0.0300 -0.0360
+vertex 0.0105 0.0192 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0192 -0.0360
+vertex 0.0530 0.0300 -0.0360
+vertex 0.0105 0.0182 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0182 -0.0360
+vertex 0.0105 0.0168 -0.0360
+vertex 0.0095 0.0168 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0168 -0.0360
+vertex 0.0105 0.0182 -0.0360
+vertex 0.0530 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0300 -0.0360
+vertex 0.0105 0.0158 -0.0360
+vertex 0.0105 0.0168 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0158 -0.0360
+vertex 0.0105 0.0143 -0.0360
+vertex 0.0095 0.0143 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0143 -0.0360
+vertex 0.0105 0.0158 -0.0360
+vertex 0.0530 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0132 -0.0360
+vertex 0.0105 0.0118 -0.0360
+vertex 0.0095 0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0118 -0.0360
+vertex 0.0105 0.0132 -0.0360
+vertex 0.0530 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0143 -0.0360
+vertex 0.0530 0.0300 -0.0360
+vertex 0.0105 0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0300 -0.0360
+vertex 0.0105 0.0108 -0.0360
+vertex 0.0105 0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0192 -0.0360
+vertex 0.0095 0.0182 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0168 -0.0360
+vertex 0.0095 0.0158 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0182 -0.0360
+vertex 0.0095 0.0168 -0.0360
+vertex 0.0095 0.0182 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0182 -0.0360
+vertex 0.0095 0.0168 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0143 -0.0360
+vertex 0.0095 0.0158 -0.0360
+vertex 0.0105 0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0132 -0.0360
+vertex 0.0095 0.0118 -0.0360
+vertex -0.0095 0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0132 -0.0360
+vertex 0.0105 0.0132 -0.0360
+vertex 0.0095 0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0143 -0.0360
+vertex 0.0095 0.0132 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0158 -0.0360
+vertex 0.0095 0.0143 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0300 -0.0360
+vertex 0.0105 0.0092 -0.0360
+vertex 0.0105 0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 -0.0360
+vertex 0.0105 0.0192 -0.0360
+vertex 0.0095 0.0192 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0083 -0.0360
+vertex 0.0105 0.0092 -0.0360
+vertex 0.0530 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0058 -0.0360
+vertex 0.0105 0.0068 -0.0360
+vertex 0.0530 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0083 -0.0360
+vertex 0.0530 0.0300 -0.0360
+vertex 0.0105 0.0068 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0083 -0.0360
+vertex 0.0105 0.0068 -0.0360
+vertex 0.0095 0.0068 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0033 -0.0360
+vertex 0.0105 0.0043 -0.0360
+vertex 0.0530 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0008 -0.0360
+vertex 0.0105 0.0018 -0.0360
+vertex 0.0530 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0033 -0.0360
+vertex 0.0530 0.0300 -0.0360
+vertex 0.0105 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0033 -0.0360
+vertex 0.0105 0.0018 -0.0360
+vertex 0.0095 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0058 -0.0360
+vertex 0.0530 0.0300 -0.0360
+vertex 0.0105 0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0058 -0.0360
+vertex 0.0105 0.0043 -0.0360
+vertex 0.0095 0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0108 -0.0360
+vertex 0.0095 0.0092 -0.0360
+vertex -0.0095 0.0093 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0092 -0.0360
+vertex 0.0095 0.0108 -0.0360
+vertex 0.0105 0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0083 -0.0360
+vertex 0.0095 0.0068 -0.0360
+vertex -0.0095 0.0068 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0068 -0.0360
+vertex 0.0095 0.0083 -0.0360
+vertex 0.0105 0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0092 -0.0360
+vertex 0.0095 0.0083 -0.0360
+vertex -0.0095 0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0058 -0.0360
+vertex 0.0095 0.0043 -0.0360
+vertex -0.0095 0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0043 -0.0360
+vertex 0.0095 0.0058 -0.0360
+vertex 0.0105 0.0058 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0033 -0.0360
+vertex 0.0095 0.0018 -0.0360
+vertex -0.0095 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0018 -0.0360
+vertex 0.0095 0.0033 -0.0360
+vertex 0.0105 0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0018 -0.0360
+vertex 0.0095 0.0008 -0.0360
+vertex -0.0095 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0043 -0.0360
+vertex 0.0095 0.0033 -0.0360
+vertex -0.0095 0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0068 -0.0360
+vertex 0.0095 0.0058 -0.0360
+vertex -0.0095 0.0058 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0008 -0.0360
+vertex 0.0105 -0.0007 -0.0360
+vertex 0.0095 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0092 -0.0360
+vertex 0.0095 0.0108 -0.0360
+vertex 0.0105 0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0300 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+vertex 0.0105 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0118 -0.0360
+vertex 0.0095 0.0108 -0.0360
+vertex -0.0095 0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 0.0173 -0.0360
+vertex -0.0095 0.0168 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 0.0173 -0.0360
+vertex -0.0085 0.0203 -0.0360
+vertex 0.0095 0.0192 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0158 -0.0360
+vertex -0.0095 0.0168 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 0.0173 -0.0360
+vertex -0.0095 0.0143 -0.0360
+vertex -0.0095 0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0133 -0.0360
+vertex -0.0095 0.0143 -0.0360
+vertex -0.0085 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0133 -0.0360
+vertex 0.0095 0.0132 -0.0360
+vertex -0.0095 0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 0.0173 -0.0360
+vertex 0.0095 0.0132 -0.0360
+vertex -0.0095 0.0133 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0133 -0.0360
+vertex -0.0095 0.0118 -0.0360
+vertex -0.0105 0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0108 -0.0360
+vertex -0.0095 0.0118 -0.0360
+vertex 0.0095 0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0158 -0.0360
+vertex -0.0095 0.0143 -0.0360
+vertex -0.0105 0.0143 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 0.0203 -0.0360
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0085 0.0203 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0115 0.0203 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0168 -0.0360
+vertex -0.0105 0.0158 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0168 -0.0360
+vertex -0.0105 0.0168 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0158 -0.0360
+vertex -0.0105 0.0143 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0143 -0.0360
+vertex -0.0105 0.0158 -0.0360
+vertex -0.0095 0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0133 -0.0360
+vertex -0.0105 0.0118 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0118 -0.0360
+vertex -0.0105 0.0133 -0.0360
+vertex -0.0095 0.0133 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0143 -0.0360
+vertex -0.0105 0.0133 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 0.0118 -0.0360
+vertex -0.0105 0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 0.0203 -0.0360
+vertex -0.0120 0.0300 -0.0360
+vertex 0.0095 0.0192 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0108 -0.0360
+vertex -0.0095 0.0093 -0.0360
+vertex -0.0095 0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0083 -0.0360
+vertex -0.0095 0.0068 -0.0360
+vertex -0.0095 0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0083 -0.0360
+vertex -0.0095 0.0093 -0.0360
+vertex 0.0095 0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0083 -0.0360
+vertex -0.0095 0.0068 -0.0360
+vertex -0.0105 0.0068 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0033 -0.0360
+vertex -0.0095 0.0018 -0.0360
+vertex -0.0105 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0033 -0.0360
+vertex 0.0095 0.0033 -0.0360
+vertex -0.0095 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0058 -0.0360
+vertex -0.0095 0.0043 -0.0360
+vertex -0.0095 0.0058 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0068 -0.0360
+vertex 0.0095 0.0068 -0.0360
+vertex -0.0095 0.0058 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0043 -0.0360
+vertex 0.0095 0.0043 -0.0360
+vertex -0.0095 0.0033 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0058 -0.0360
+vertex -0.0095 0.0043 -0.0360
+vertex -0.0105 0.0043 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0108 -0.0360
+vertex -0.0105 0.0093 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0108 -0.0360
+vertex -0.0095 0.0093 -0.0360
+vertex -0.0105 0.0093 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0083 -0.0360
+vertex -0.0105 0.0068 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0083 -0.0360
+vertex -0.0095 0.0083 -0.0360
+vertex -0.0105 0.0068 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0093 -0.0360
+vertex -0.0105 0.0083 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0058 -0.0360
+vertex -0.0105 0.0043 -0.0360
+vertex -0.0105 0.0058 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0043 -0.0360
+vertex -0.0105 0.0033 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0033 -0.0360
+vertex -0.0095 0.0033 -0.0360
+vertex -0.0105 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0033 -0.0360
+vertex -0.0105 0.0018 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0008 -0.0360
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0058 -0.0360
+vertex -0.0105 0.0043 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0068 -0.0360
+vertex -0.0105 0.0058 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0008 -0.0360
+vertex -0.0095 -0.0007 -0.0360
+vertex -0.0105 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0093 -0.0360
+vertex -0.0105 0.0108 -0.0360
+vertex -0.0095 0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0018 -0.0360
+vertex -0.0095 0.0008 -0.0360
+vertex -0.0095 0.0018 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 0.0008 -0.0360
+vertex -0.0105 -0.0007 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0008 -0.0360
+vertex 0.0095 -0.0007 -0.0360
+vertex -0.0095 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0032 -0.0360
+vertex 0.0105 -0.0017 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0017 -0.0360
+vertex 0.0105 -0.0032 -0.0360
+vertex 0.0095 -0.0032 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0032 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+vertex 0.0105 -0.0042 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0017 -0.0360
+vertex 0.0105 -0.0007 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0057 -0.0360
+vertex 0.0105 -0.0042 -0.0360
+vertex 0.0105 -0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0067 -0.0360
+vertex 0.0105 -0.0057 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0083 -0.0360
+vertex 0.0105 -0.0067 -0.0360
+vertex 0.0105 -0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0092 -0.0360
+vertex 0.0105 -0.0083 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0067 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+vertex 0.0105 -0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0042 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+vertex 0.0105 -0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0017 -0.0360
+vertex 0.0095 -0.0007 -0.0360
+vertex 0.0095 -0.0017 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0032 -0.0360
+vertex 0.0095 -0.0017 -0.0360
+vertex 0.0105 -0.0017 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0032 -0.0360
+vertex 0.0095 -0.0042 -0.0360
+vertex -0.0095 -0.0042 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0032 -0.0360
+vertex 0.0095 -0.0017 -0.0360
+vertex 0.0095 -0.0032 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0057 -0.0360
+vertex -0.0095 -0.0057 -0.0360
+vertex 0.0095 -0.0042 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0083 -0.0360
+vertex -0.0095 -0.0082 -0.0360
+vertex 0.0095 -0.0067 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0067 -0.0360
+vertex 0.0105 -0.0067 -0.0360
+vertex 0.0095 -0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0067 -0.0360
+vertex -0.0095 -0.0067 -0.0360
+vertex 0.0095 -0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0042 -0.0360
+vertex 0.0105 -0.0042 -0.0360
+vertex 0.0095 -0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0092 -0.0360
+vertex -0.0095 -0.0092 -0.0360
+vertex 0.0095 -0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0092 -0.0360
+vertex 0.0105 -0.0108 -0.0360
+vertex 0.0095 -0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0007 -0.0360
+vertex 0.0095 -0.0007 -0.0360
+vertex 0.0095 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0118 -0.0360
+vertex 0.0105 -0.0108 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0142 -0.0360
+vertex 0.0105 -0.0132 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0118 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0105 -0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0118 -0.0360
+vertex 0.0105 -0.0132 -0.0360
+vertex 0.0095 -0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+vertex 0.0115 -0.0203 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0105 -0.0158 -0.0360
+vertex 0.0105 -0.0142 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0105 -0.0168 -0.0360
+vertex 0.0105 -0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 -0.0203 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+vertex 0.0085 -0.0203 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0105 -0.0108 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0108 -0.0360
+vertex 0.0105 -0.0092 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0142 -0.0360
+vertex 0.0105 -0.0158 -0.0360
+vertex 0.0095 -0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0117 -0.0360
+vertex 0.0095 -0.0108 -0.0360
+vertex 0.0095 -0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0132 -0.0360
+vertex 0.0095 -0.0142 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0118 -0.0360
+vertex 0.0095 -0.0132 -0.0360
+vertex 0.0095 -0.0118 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0132 -0.0360
+vertex 0.0095 -0.0118 -0.0360
+vertex 0.0095 -0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0158 -0.0360
+vertex 0.0095 -0.0142 -0.0360
+vertex 0.0105 -0.0142 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 -0.0173 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+vertex 0.0095 -0.0168 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0168 -0.0360
+vertex 0.0105 -0.0168 -0.0360
+vertex 0.0115 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0085 -0.0173 -0.0360
+vertex 0.0085 -0.0203 -0.0360
+vertex -0.0095 -0.0192 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0168 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+vertex 0.0095 -0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0158 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+vertex 0.0095 -0.0142 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0092 -0.0360
+vertex 0.0095 -0.0108 -0.0360
+vertex -0.0095 -0.0107 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 -0.0203 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0108 -0.0360
+vertex 0.0095 -0.0108 -0.0360
+vertex 0.0095 -0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0007 -0.0360
+vertex 0.0105 0.0008 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0132 -0.0360
+vertex 0.0095 -0.0132 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0017 -0.0360
+vertex -0.0095 -0.0007 -0.0360
+vertex 0.0095 -0.0007 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0042 -0.0360
+vertex -0.0095 -0.0032 -0.0360
+vertex 0.0095 -0.0032 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0017 -0.0360
+vertex 0.0095 -0.0017 -0.0360
+vertex -0.0095 -0.0032 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0017 -0.0360
+vertex -0.0095 -0.0032 -0.0360
+vertex -0.0105 -0.0032 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0067 -0.0360
+vertex -0.0095 -0.0057 -0.0360
+vertex 0.0095 -0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0092 -0.0360
+vertex -0.0095 -0.0082 -0.0360
+vertex 0.0095 -0.0083 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0067 -0.0360
+vertex 0.0095 -0.0067 -0.0360
+vertex -0.0095 -0.0082 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0067 -0.0360
+vertex -0.0095 -0.0082 -0.0360
+vertex -0.0105 -0.0082 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0042 -0.0360
+vertex 0.0095 -0.0042 -0.0360
+vertex -0.0095 -0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0042 -0.0360
+vertex -0.0095 -0.0057 -0.0360
+vertex -0.0105 -0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0032 -0.0360
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 -0.0017 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0042 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0115 0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0017 -0.0360
+vertex -0.0095 -0.0017 -0.0360
+vertex -0.0105 -0.0032 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0042 -0.0360
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 -0.0032 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0057 -0.0360
+vertex -0.0105 -0.0067 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0082 -0.0360
+vertex -0.0105 -0.0092 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0067 -0.0360
+vertex -0.0095 -0.0067 -0.0360
+vertex -0.0105 -0.0082 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0067 -0.0360
+vertex -0.0105 -0.0082 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0042 -0.0360
+vertex -0.0095 -0.0042 -0.0360
+vertex -0.0105 -0.0057 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0042 -0.0360
+vertex -0.0105 -0.0057 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0092 -0.0360
+vertex -0.0095 -0.0107 -0.0360
+vertex -0.0105 -0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0007 -0.0360
+vertex -0.0105 -0.0007 -0.0360
+vertex -0.0105 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0117 -0.0360
+vertex -0.0095 -0.0107 -0.0360
+vertex 0.0095 -0.0108 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0142 -0.0360
+vertex -0.0095 -0.0132 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0117 -0.0360
+vertex 0.0095 -0.0118 -0.0360
+vertex -0.0095 -0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0117 -0.0360
+vertex -0.0095 -0.0132 -0.0360
+vertex -0.0105 -0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0167 -0.0360
+vertex -0.0095 -0.0158 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0192 -0.0360
+vertex -0.0095 -0.0182 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0167 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+vertex -0.0095 -0.0182 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0167 -0.0360
+vertex -0.0095 -0.0182 -0.0360
+vertex -0.0105 -0.0182 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0142 -0.0360
+vertex 0.0085 -0.0173 -0.0360
+vertex -0.0095 -0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0142 -0.0360
+vertex -0.0095 -0.0158 -0.0360
+vertex -0.0105 -0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0107 -0.0360
+vertex -0.0105 -0.0117 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0132 -0.0360
+vertex -0.0105 -0.0142 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0117 -0.0360
+vertex -0.0095 -0.0117 -0.0360
+vertex -0.0105 -0.0132 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0117 -0.0360
+vertex -0.0105 -0.0132 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0158 -0.0360
+vertex -0.0105 -0.0167 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0182 -0.0360
+vertex -0.0105 -0.0192 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0105 -0.0192 -0.0360
+vertex -0.0095 -0.0192 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0182 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0105 -0.0167 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0167 -0.0360
+vertex -0.0095 -0.0167 -0.0360
+vertex -0.0105 -0.0182 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0158 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0105 -0.0142 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0142 -0.0360
+vertex -0.0095 -0.0142 -0.0360
+vertex -0.0105 -0.0158 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0107 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0105 -0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0192 -0.0360
+vertex 0.0085 -0.0203 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0107 -0.0360
+vertex -0.0105 -0.0107 -0.0360
+vertex -0.0105 -0.0092 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0092 -0.0360
+vertex 0.0095 -0.0092 -0.0360
+vertex -0.0095 -0.0107 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0017 -0.0360
+vertex -0.0115 0.0173 -0.0360
+vertex -0.0105 -0.0007 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0007 -0.0360
+vertex -0.0095 -0.0007 -0.0360
+vertex -0.0095 0.0008 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0300 -0.0360
+vertex 0.0503 -0.0300 -0.0306
+vertex 0.0492 -0.0300 -0.0306
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0492 -0.0300 -0.0306
+vertex 0.0480 -0.0300 -0.0129
+vertex 0.0250 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0300 -0.0360
+vertex 0.0492 -0.0300 -0.0306
+vertex 0.0178 -0.0300 -0.0306
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0503 -0.0300 -0.0306
+vertex 0.0530 -0.0300 -0.0360
+vertex 0.0503 -0.0300 -0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0178 -0.0300 -0.0306
+vertex 0.0492 -0.0300 -0.0306
+vertex 0.0250 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 -0.0360
+vertex 0.0065 -0.0300 -0.0342
+vertex -0.0075 -0.0300 -0.0342
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0300 -0.0342
+vertex -0.0120 -0.0300 -0.0360
+vertex 0.0530 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0300 -0.0342
+vertex 0.0167 -0.0300 -0.0306
+vertex 0.0167 -0.0300 -0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0167 -0.0300 -0.0306
+vertex 0.0065 -0.0300 -0.0342
+vertex 0.0178 -0.0300 -0.0306
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0300 -0.0342
+vertex 0.0530 -0.0300 -0.0360
+vertex 0.0178 -0.0300 -0.0306
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0075 -0.0300 -0.0090
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0075 -0.0300 -0.0342
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0178 -0.0300 -0.0306
+vertex 0.0250 -0.0300 -0.0129
+vertex 0.0178 -0.0300 -0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0492 -0.0300 -0.0126
+vertex 0.0480 -0.0300 -0.0129
+vertex 0.0492 -0.0300 -0.0306
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0492 -0.0300 -0.0126
+vertex 0.0503 -0.0300 -0.0126
+vertex 0.0480 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0480 -0.0300 -0.0001
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0250 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0480 -0.0300 -0.0001
+vertex 0.0503 -0.0300 -0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0300 -0.0001
+vertex 0.0530 -0.0300 0.0000
+vertex -0.0120 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0503 -0.0300 -0.0126
+vertex 0.0530 -0.0300 -0.0360
+vertex 0.0530 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0300 -0.0001
+vertex 0.0178 -0.0300 -0.0126
+vertex 0.0250 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0178 -0.0300 -0.0126
+vertex 0.0250 -0.0300 -0.0001
+vertex 0.0167 -0.0300 -0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0300 -0.0090
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0075 -0.0300 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0167 -0.0300 -0.0126
+vertex 0.0250 -0.0300 -0.0001
+vertex 0.0065 -0.0300 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0075 -0.0300 -0.0090
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0300 -0.0001
+vertex -0.0120 -0.0300 0.0000
+vertex 0.0065 -0.0300 -0.0090
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 -0.0300 -0.0090
+vertex 0.0065 -0.0300 -0.0342
+vertex 0.0167 -0.0300 -0.0126
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0480 -0.0300 -0.0129
+vertex 0.0492 -0.0300 -0.0126
+vertex 0.0480 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 0.0000
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0105 -0.0192 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0192 0.0000
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0105 -0.0182 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0182 0.0000
+vertex 0.0105 -0.0168 0.0000
+vertex 0.0095 -0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0168 0.0000
+vertex 0.0105 -0.0182 0.0000
+vertex 0.0530 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0105 -0.0158 0.0000
+vertex 0.0105 -0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0158 0.0000
+vertex 0.0105 -0.0143 0.0000
+vertex 0.0095 -0.0143 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0143 0.0000
+vertex 0.0105 -0.0158 0.0000
+vertex 0.0530 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0132 0.0000
+vertex 0.0105 -0.0118 0.0000
+vertex 0.0095 -0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0118 0.0000
+vertex 0.0105 -0.0132 0.0000
+vertex 0.0530 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0143 0.0000
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0105 -0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0105 -0.0108 0.0000
+vertex 0.0105 -0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0192 0.0000
+vertex 0.0095 -0.0182 0.0000
+vertex -0.0085 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0168 0.0000
+vertex 0.0095 -0.0158 0.0000
+vertex -0.0085 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0182 0.0000
+vertex 0.0095 -0.0168 0.0000
+vertex 0.0095 -0.0182 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0182 0.0000
+vertex 0.0095 -0.0168 0.0000
+vertex -0.0085 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0143 0.0000
+vertex 0.0095 -0.0158 0.0000
+vertex 0.0105 -0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0132 0.0000
+vertex 0.0095 -0.0118 0.0000
+vertex -0.0095 -0.0117 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0132 0.0000
+vertex 0.0105 -0.0132 0.0000
+vertex 0.0095 -0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0143 0.0000
+vertex 0.0095 -0.0132 0.0000
+vertex -0.0085 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0158 0.0000
+vertex 0.0095 -0.0143 0.0000
+vertex -0.0085 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0105 -0.0092 0.0000
+vertex 0.0105 -0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 0.0000
+vertex 0.0105 -0.0192 0.0000
+vertex 0.0095 -0.0192 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0083 0.0000
+vertex 0.0105 -0.0092 0.0000
+vertex 0.0530 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0057 0.0000
+vertex 0.0105 -0.0067 0.0000
+vertex 0.0530 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0083 0.0000
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0105 -0.0067 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0083 0.0000
+vertex 0.0105 -0.0067 0.0000
+vertex 0.0095 -0.0067 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0032 0.0000
+vertex 0.0105 -0.0042 0.0000
+vertex 0.0530 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0007 0.0000
+vertex 0.0105 -0.0017 0.0000
+vertex 0.0530 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0032 0.0000
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0105 -0.0017 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0032 0.0000
+vertex 0.0105 -0.0017 0.0000
+vertex 0.0095 -0.0017 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0057 0.0000
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0105 -0.0042 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0057 0.0000
+vertex 0.0105 -0.0042 0.0000
+vertex 0.0095 -0.0042 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0108 0.0000
+vertex 0.0095 -0.0092 0.0000
+vertex -0.0095 -0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0092 0.0000
+vertex 0.0095 -0.0108 0.0000
+vertex 0.0105 -0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0083 0.0000
+vertex 0.0095 -0.0067 0.0000
+vertex -0.0095 -0.0067 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0067 0.0000
+vertex 0.0095 -0.0083 0.0000
+vertex 0.0105 -0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0092 0.0000
+vertex 0.0095 -0.0083 0.0000
+vertex -0.0095 -0.0082 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0057 0.0000
+vertex 0.0095 -0.0042 0.0000
+vertex -0.0095 -0.0042 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0042 0.0000
+vertex 0.0095 -0.0057 0.0000
+vertex 0.0105 -0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0032 0.0000
+vertex 0.0095 -0.0017 0.0000
+vertex -0.0095 -0.0017 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0017 0.0000
+vertex 0.0095 -0.0032 0.0000
+vertex 0.0105 -0.0032 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0017 0.0000
+vertex 0.0095 -0.0007 0.0000
+vertex -0.0095 -0.0007 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0042 0.0000
+vertex 0.0095 -0.0032 0.0000
+vertex -0.0095 -0.0032 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0067 0.0000
+vertex 0.0095 -0.0057 0.0000
+vertex -0.0095 -0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0007 0.0000
+vertex 0.0105 0.0008 0.0000
+vertex 0.0095 -0.0007 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 -0.0092 0.0000
+vertex 0.0095 -0.0108 0.0000
+vertex 0.0105 -0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0300 0.0000
+vertex 0.0530 0.0300 0.0000
+vertex 0.0105 -0.0007 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0118 0.0000
+vertex 0.0095 -0.0108 0.0000
+vertex -0.0095 -0.0107 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 -0.0173 0.0000
+vertex -0.0095 -0.0167 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 -0.0173 0.0000
+vertex -0.0085 -0.0203 0.0000
+vertex 0.0095 -0.0192 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0158 0.0000
+vertex -0.0095 -0.0167 0.0000
+vertex -0.0085 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 -0.0173 0.0000
+vertex -0.0095 -0.0142 0.0000
+vertex -0.0095 -0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0132 0.0000
+vertex -0.0095 -0.0142 0.0000
+vertex -0.0085 -0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0132 0.0000
+vertex 0.0095 -0.0132 0.0000
+vertex -0.0095 -0.0117 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 -0.0173 0.0000
+vertex 0.0095 -0.0132 0.0000
+vertex -0.0095 -0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0132 0.0000
+vertex -0.0095 -0.0117 0.0000
+vertex -0.0105 -0.0117 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0107 0.0000
+vertex -0.0095 -0.0117 0.0000
+vertex 0.0095 -0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0158 0.0000
+vertex -0.0095 -0.0142 0.0000
+vertex -0.0105 -0.0142 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 -0.0202 0.0000
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0085 -0.0203 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0115 -0.0172 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 -0.0172 0.0000
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0115 -0.0202 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0167 0.0000
+vertex -0.0105 -0.0158 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0167 0.0000
+vertex -0.0105 -0.0167 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0158 0.0000
+vertex -0.0105 -0.0142 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0142 0.0000
+vertex -0.0105 -0.0158 0.0000
+vertex -0.0095 -0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0132 0.0000
+vertex -0.0105 -0.0117 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0117 0.0000
+vertex -0.0105 -0.0132 0.0000
+vertex -0.0095 -0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0142 0.0000
+vertex -0.0105 -0.0132 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 -0.0172 0.0000
+vertex -0.0105 -0.0117 0.0000
+vertex -0.0105 -0.0107 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0085 -0.0203 0.0000
+vertex -0.0120 -0.0300 0.0000
+vertex 0.0095 -0.0192 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0108 0.0000
+vertex -0.0095 -0.0092 0.0000
+vertex -0.0095 -0.0107 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0083 0.0000
+vertex -0.0095 -0.0067 0.0000
+vertex -0.0095 -0.0082 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0082 0.0000
+vertex -0.0095 -0.0092 0.0000
+vertex 0.0095 -0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0082 0.0000
+vertex -0.0095 -0.0067 0.0000
+vertex -0.0105 -0.0067 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0032 0.0000
+vertex -0.0095 -0.0017 0.0000
+vertex -0.0105 -0.0017 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0032 0.0000
+vertex 0.0095 -0.0032 0.0000
+vertex -0.0095 -0.0017 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0057 0.0000
+vertex -0.0095 -0.0042 0.0000
+vertex -0.0095 -0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0067 0.0000
+vertex 0.0095 -0.0067 0.0000
+vertex -0.0095 -0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0042 0.0000
+vertex 0.0095 -0.0042 0.0000
+vertex -0.0095 -0.0032 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0057 0.0000
+vertex -0.0095 -0.0042 0.0000
+vertex -0.0105 -0.0042 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0107 0.0000
+vertex -0.0105 -0.0092 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0107 0.0000
+vertex -0.0095 -0.0092 0.0000
+vertex -0.0105 -0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0082 0.0000
+vertex -0.0105 -0.0067 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0082 0.0000
+vertex -0.0095 -0.0082 0.0000
+vertex -0.0105 -0.0067 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0092 0.0000
+vertex -0.0105 -0.0082 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0057 0.0000
+vertex -0.0105 -0.0042 0.0000
+vertex -0.0105 -0.0057 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0042 0.0000
+vertex -0.0105 -0.0032 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0032 0.0000
+vertex -0.0095 -0.0032 0.0000
+vertex -0.0105 -0.0017 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0032 0.0000
+vertex -0.0105 -0.0017 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0007 0.0000
+vertex -0.0115 -0.0172 0.0000
+vertex -0.0105 -0.0017 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0057 0.0000
+vertex -0.0105 -0.0042 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 -0.0067 0.0000
+vertex -0.0105 -0.0057 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0007 0.0000
+vertex -0.0095 0.0008 0.0000
+vertex -0.0105 -0.0007 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 -0.0092 0.0000
+vertex -0.0105 -0.0107 0.0000
+vertex -0.0095 -0.0107 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0017 0.0000
+vertex -0.0095 -0.0007 0.0000
+vertex -0.0095 -0.0017 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0115 -0.0172 0.0000
+vertex -0.0105 -0.0007 0.0000
+vertex -0.0105 0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 -0.0007 0.0000
+vertex 0.0095 0.0008 0.0000
+vertex -0.0095 -0.0007 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0033 0.0000
+vertex 0.0105 0.0018 0.0000
+vertex 0.0530 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0018 0.0000
+vertex 0.0105 0.0033 0.0000
+vertex 0.0095 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0033 0.0000
+vertex 0.0530 0.0300 0.0000
+vertex 0.0105 0.0043 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0018 0.0000
+vertex 0.0105 0.0008 0.0000
+vertex 0.0530 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0058 0.0000
+vertex 0.0105 0.0043 0.0000
+vertex 0.0105 0.0058 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0068 0.0000
+vertex 0.0105 0.0058 0.0000
+vertex 0.0530 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0083 0.0000
+vertex 0.0105 0.0068 0.0000
+vertex 0.0105 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0092 0.0000
+vertex 0.0105 0.0083 0.0000
+vertex 0.0530 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0068 0.0000
+vertex 0.0530 0.0300 0.0000
+vertex 0.0105 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0043 0.0000
+vertex 0.0530 0.0300 0.0000
+vertex 0.0105 0.0058 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0018 0.0000
+vertex 0.0095 0.0008 0.0000
+vertex 0.0095 0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0033 0.0000
+vertex 0.0095 0.0018 0.0000
+vertex 0.0105 0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0033 0.0000
+vertex 0.0095 0.0043 0.0000
+vertex -0.0095 0.0043 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0033 0.0000
+vertex 0.0095 0.0018 0.0000
+vertex 0.0095 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0058 0.0000
+vertex -0.0095 0.0058 0.0000
+vertex 0.0095 0.0043 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0083 0.0000
+vertex -0.0095 0.0083 0.0000
+vertex 0.0095 0.0068 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0068 0.0000
+vertex 0.0105 0.0068 0.0000
+vertex 0.0095 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0068 0.0000
+vertex -0.0095 0.0068 0.0000
+vertex 0.0095 0.0058 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0043 0.0000
+vertex 0.0105 0.0043 0.0000
+vertex 0.0095 0.0058 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0092 0.0000
+vertex -0.0095 0.0093 0.0000
+vertex 0.0095 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0092 0.0000
+vertex 0.0105 0.0108 0.0000
+vertex 0.0095 0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0008 0.0000
+vertex 0.0095 0.0008 0.0000
+vertex 0.0095 -0.0007 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0118 0.0000
+vertex 0.0105 0.0108 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0142 0.0000
+vertex 0.0105 0.0132 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0118 0.0000
+vertex 0.0115 0.0173 0.0000
+vertex 0.0105 0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0118 0.0000
+vertex 0.0105 0.0132 0.0000
+vertex 0.0095 0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 0.0173 0.0000
+vertex 0.0530 0.0300 0.0000
+vertex 0.0115 0.0203 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 0.0173 0.0000
+vertex 0.0105 0.0158 0.0000
+vertex 0.0105 0.0142 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 0.0173 0.0000
+vertex 0.0105 0.0168 0.0000
+vertex 0.0105 0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 0.0203 0.0000
+vertex -0.0120 0.0300 0.0000
+vertex 0.0085 0.0203 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 0.0173 0.0000
+vertex 0.0105 0.0108 0.0000
+vertex 0.0530 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0108 0.0000
+vertex 0.0105 0.0092 0.0000
+vertex 0.0530 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0142 0.0000
+vertex 0.0105 0.0158 0.0000
+vertex 0.0095 0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0118 0.0000
+vertex 0.0095 0.0108 0.0000
+vertex 0.0095 0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0132 0.0000
+vertex 0.0095 0.0142 0.0000
+vertex 0.0085 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0118 0.0000
+vertex 0.0095 0.0132 0.0000
+vertex 0.0095 0.0118 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0133 0.0000
+vertex 0.0095 0.0118 0.0000
+vertex 0.0095 0.0132 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0158 0.0000
+vertex 0.0095 0.0142 0.0000
+vertex 0.0105 0.0142 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 0.0173 0.0000
+vertex 0.0085 0.0173 0.0000
+vertex 0.0095 0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0168 0.0000
+vertex 0.0105 0.0168 0.0000
+vertex 0.0115 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0085 0.0173 0.0000
+vertex 0.0085 0.0203 0.0000
+vertex -0.0095 0.0193 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0168 0.0000
+vertex 0.0085 0.0173 0.0000
+vertex 0.0095 0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0158 0.0000
+vertex 0.0085 0.0173 0.0000
+vertex 0.0095 0.0142 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0092 0.0000
+vertex 0.0095 0.0108 0.0000
+vertex -0.0095 0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0115 0.0203 0.0000
+vertex 0.0530 0.0300 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0108 0.0000
+vertex 0.0095 0.0108 0.0000
+vertex 0.0095 0.0092 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0105 0.0008 0.0000
+vertex 0.0105 -0.0007 0.0000
+vertex 0.0530 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0133 0.0000
+vertex 0.0095 0.0132 0.0000
+vertex 0.0085 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0018 0.0000
+vertex -0.0095 0.0008 0.0000
+vertex 0.0095 0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0043 0.0000
+vertex -0.0095 0.0033 0.0000
+vertex 0.0095 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0018 0.0000
+vertex 0.0095 0.0018 0.0000
+vertex -0.0095 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0018 0.0000
+vertex -0.0095 0.0033 0.0000
+vertex -0.0105 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0068 0.0000
+vertex -0.0095 0.0058 0.0000
+vertex 0.0095 0.0058 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0093 0.0000
+vertex -0.0095 0.0083 0.0000
+vertex 0.0095 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0068 0.0000
+vertex 0.0095 0.0068 0.0000
+vertex -0.0095 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0068 0.0000
+vertex -0.0095 0.0083 0.0000
+vertex -0.0105 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0043 0.0000
+vertex 0.0095 0.0043 0.0000
+vertex -0.0095 0.0058 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0043 0.0000
+vertex -0.0095 0.0058 0.0000
+vertex -0.0105 0.0058 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0033 0.0000
+vertex -0.0115 -0.0172 0.0000
+vertex -0.0105 0.0018 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0043 0.0000
+vertex -0.0120 0.0300 0.0000
+vertex -0.0115 -0.0172 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0018 0.0000
+vertex -0.0095 0.0018 0.0000
+vertex -0.0105 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0043 0.0000
+vertex -0.0115 -0.0172 0.0000
+vertex -0.0105 0.0033 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0058 0.0000
+vertex -0.0105 0.0068 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0083 0.0000
+vertex -0.0105 0.0093 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0068 0.0000
+vertex -0.0095 0.0068 0.0000
+vertex -0.0105 0.0083 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0068 0.0000
+vertex -0.0105 0.0083 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0043 0.0000
+vertex -0.0095 0.0043 0.0000
+vertex -0.0105 0.0058 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0043 0.0000
+vertex -0.0105 0.0058 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0093 0.0000
+vertex -0.0095 0.0108 0.0000
+vertex -0.0105 0.0093 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0008 0.0000
+vertex -0.0105 0.0008 0.0000
+vertex -0.0105 -0.0007 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0118 0.0000
+vertex -0.0095 0.0108 0.0000
+vertex 0.0095 0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0143 0.0000
+vertex -0.0095 0.0133 0.0000
+vertex 0.0085 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0118 0.0000
+vertex 0.0095 0.0118 0.0000
+vertex -0.0095 0.0133 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0118 0.0000
+vertex -0.0095 0.0133 0.0000
+vertex -0.0105 0.0133 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0168 0.0000
+vertex -0.0095 0.0158 0.0000
+vertex 0.0085 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0193 0.0000
+vertex -0.0095 0.0183 0.0000
+vertex 0.0085 0.0173 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0168 0.0000
+vertex 0.0085 0.0173 0.0000
+vertex -0.0095 0.0183 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0168 0.0000
+vertex -0.0095 0.0183 0.0000
+vertex -0.0105 0.0183 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0143 0.0000
+vertex 0.0085 0.0173 0.0000
+vertex -0.0095 0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0143 0.0000
+vertex -0.0095 0.0158 0.0000
+vertex -0.0105 0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0108 0.0000
+vertex -0.0105 0.0118 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0133 0.0000
+vertex -0.0105 0.0143 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0118 0.0000
+vertex -0.0095 0.0118 0.0000
+vertex -0.0105 0.0133 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0118 0.0000
+vertex -0.0105 0.0133 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0158 0.0000
+vertex -0.0105 0.0168 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0183 0.0000
+vertex -0.0105 0.0193 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 0.0000
+vertex -0.0105 0.0193 0.0000
+vertex -0.0095 0.0193 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0183 0.0000
+vertex -0.0120 0.0300 0.0000
+vertex -0.0105 0.0168 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0168 0.0000
+vertex -0.0095 0.0168 0.0000
+vertex -0.0105 0.0183 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0158 0.0000
+vertex -0.0120 0.0300 0.0000
+vertex -0.0105 0.0143 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0143 0.0000
+vertex -0.0095 0.0143 0.0000
+vertex -0.0105 0.0158 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0108 0.0000
+vertex -0.0120 0.0300 0.0000
+vertex -0.0105 0.0093 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0193 0.0000
+vertex 0.0085 0.0203 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0108 0.0000
+vertex -0.0105 0.0108 0.0000
+vertex -0.0105 0.0093 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0095 0.0093 0.0000
+vertex 0.0095 0.0092 0.0000
+vertex -0.0095 0.0108 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0105 0.0018 0.0000
+vertex -0.0115 -0.0172 0.0000
+vertex -0.0105 0.0008 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0008 0.0000
+vertex -0.0095 0.0008 0.0000
+vertex -0.0095 -0.0007 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0300 0.0000
+vertex 0.0480 0.0300 -0.0001
+vertex 0.0250 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0480 0.0300 -0.0001
+vertex 0.0530 0.0300 0.0000
+vertex 0.0503 0.0300 -0.0076
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0492 0.0300 -0.0076
+vertex 0.0480 0.0300 -0.0129
+vertex 0.0480 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0492 0.0300 -0.0076
+vertex 0.0480 0.0300 -0.0001
+vertex 0.0503 0.0300 -0.0076
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0178 0.0300 -0.0076
+vertex 0.0250 0.0300 -0.0001
+vertex 0.0250 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0300 0.0000
+vertex 0.0503 0.0300 -0.0256
+vertex 0.0503 0.0300 -0.0076
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0300 0.0000
+vertex 0.0250 0.0300 -0.0001
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 0.0000
+vertex 0.0065 0.0300 -0.0076
+vertex -0.0075 0.0300 -0.0076
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 0.0000
+vertex 0.0250 0.0300 -0.0001
+vertex 0.0065 0.0300 -0.0076
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0300 -0.0001
+vertex 0.0167 0.0300 -0.0076
+vertex 0.0065 0.0300 -0.0076
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0178 0.0300 -0.0076
+vertex 0.0250 0.0300 -0.0129
+vertex 0.0178 0.0300 -0.0256
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0300 -0.0256
+vertex 0.0065 0.0300 -0.0076
+vertex 0.0167 0.0300 -0.0076
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0300 -0.0001
+vertex 0.0178 0.0300 -0.0076
+vertex 0.0167 0.0300 -0.0076
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 0.0000
+vertex -0.0075 0.0300 -0.0076
+vertex -0.0075 0.0300 -0.0256
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0300 -0.0129
+vertex 0.0480 0.0300 -0.0129
+vertex 0.0492 0.0300 -0.0256
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0503 0.0300 -0.0256
+vertex 0.0530 0.0300 -0.0360
+vertex 0.0492 0.0300 -0.0256
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0300 -0.0129
+vertex 0.0492 0.0300 -0.0256
+vertex 0.0178 0.0300 -0.0256
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0492 0.0300 -0.0256
+vertex 0.0480 0.0300 -0.0129
+vertex 0.0492 0.0300 -0.0076
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0300 0.0000
+vertex 0.0530 0.0300 -0.0360
+vertex 0.0503 0.0300 -0.0256
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0178 0.0300 -0.0256
+vertex 0.0492 0.0300 -0.0256
+vertex 0.0530 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0075 0.0300 -0.0256
+vertex 0.0065 0.0300 -0.0256
+vertex -0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0178 0.0300 -0.0256
+vertex -0.0120 0.0300 -0.0360
+vertex 0.0167 0.0300 -0.0256
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 -0.0360
+vertex 0.0178 0.0300 -0.0256
+vertex 0.0530 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0167 0.0300 -0.0256
+vertex -0.0120 0.0300 -0.0360
+vertex 0.0065 0.0300 -0.0256
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0065 0.0300 -0.0256
+vertex 0.0167 0.0300 -0.0076
+vertex 0.0167 0.0300 -0.0256
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0075 0.0300 -0.0256
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0300 -0.0130
+vertex -0.0770 0.0300 -0.0130
+vertex -0.0770 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0300 -0.0360
+vertex -0.0770 -0.0300 -0.0360
+vertex -0.0770 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0640 0.0110 -0.0130
+vertex -0.0640 -0.0110 -0.0130
+vertex -0.0770 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0110 -0.0130
+vertex -0.0770 0.0110 -0.0130
+vertex -0.0640 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0110 -0.0130
+vertex -0.0770 -0.0110 -0.0130
+vertex -0.0770 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0110 0.0000
+vertex -0.0770 0.0110 0.0000
+vertex -0.0770 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0110 0.0000
+vertex -0.0770 -0.0110 0.0000
+vertex -0.0640 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0640 -0.0110 0.0000
+vertex -0.0640 0.0110 0.0000
+vertex -0.0770 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0640 0.0110 0.0000
+vertex -0.0640 -0.0110 0.0000
+vertex -0.0640 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0640 -0.0110 -0.0130
+vertex -0.0640 0.0110 -0.0130
+vertex -0.0640 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 0.0300 -0.0130
+vertex -0.0490 0.0300 -0.0129
+vertex -0.0770 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 0.0300 -0.0129
+vertex -0.0360 0.0300 -0.0130
+vertex -0.0360 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0300 -0.0130
+vertex -0.0720 0.0300 -0.0129
+vertex -0.0720 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0720 0.0300 -0.0129
+vertex -0.0770 0.0300 -0.0130
+vertex -0.0490 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 0.0300 -0.0001
+vertex -0.0360 0.0300 0.0000
+vertex -0.0770 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 0.0300 0.0000
+vertex -0.0490 0.0300 -0.0001
+vertex -0.0490 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0720 0.0300 -0.0001
+vertex -0.0770 0.0300 0.0000
+vertex -0.0770 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0300 0.0000
+vertex -0.0720 0.0300 -0.0001
+vertex -0.0490 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0300 0.0000
+vertex -0.0360 0.0300 0.0000
+vertex -0.0360 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 0.0110 0.0000
+vertex -0.0770 0.0110 0.0000
+vertex -0.0770 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0110 0.0000
+vertex -0.0360 0.0110 0.0000
+vertex -0.0360 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 0.0110 -0.0130
+vertex -0.0770 0.0110 -0.0130
+vertex -0.0770 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0110 -0.0130
+vertex -0.0360 0.0110 -0.0130
+vertex -0.0360 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 0.0300 -0.0130
+vertex -0.0770 0.0300 -0.0130
+vertex -0.0770 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0448 0.0460 -0.0281
+vertex -0.0647 0.0460 -0.0328
+vertex -0.0523 0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0523 0.0460 -0.0319
+vertex -0.0484 0.0460 -0.0303
+vertex -0.0448 0.0460 -0.0281
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0605 0.0460 -0.0332
+vertex -0.0563 0.0460 -0.0328
+vertex -0.0523 0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0448 0.0460 -0.0281
+vertex -0.0416 0.0460 -0.0254
+vertex -0.0389 0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0448 0.0460 -0.0281
+vertex -0.0563 0.0460 0.0198
+vertex -0.0821 0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0367 0.0460 -0.0186
+vertex -0.0351 0.0460 -0.0147
+vertex -0.0342 0.0460 -0.0107
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0342 0.0460 -0.0107
+vertex -0.0448 0.0460 -0.0281
+vertex -0.0367 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0389 0.0460 -0.0222
+vertex -0.0367 0.0460 -0.0186
+vertex -0.0448 0.0460 -0.0281
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0448 0.0460 -0.0281
+vertex -0.0342 0.0460 -0.0107
+vertex -0.0389 0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0821 0.0460 -0.0222
+vertex -0.0726 0.0460 -0.0303
+vertex -0.0647 0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0647 0.0460 -0.0328
+vertex -0.0726 0.0460 -0.0303
+vertex -0.0687 0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0762 0.0460 -0.0281
+vertex -0.0726 0.0460 -0.0303
+vertex -0.0794 0.0460 -0.0254
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0605 0.0460 -0.0332
+vertex -0.0523 0.0460 -0.0319
+vertex -0.0647 0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0794 0.0460 -0.0254
+vertex -0.0726 0.0460 -0.0303
+vertex -0.0821 0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0821 0.0460 -0.0222
+vertex -0.0859 0.0460 -0.0147
+vertex -0.0843 0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0859 0.0460 -0.0147
+vertex -0.0821 0.0460 -0.0222
+vertex -0.0872 0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0448 0.0460 -0.0281
+vertex -0.0821 0.0460 -0.0222
+vertex -0.0647 0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0868 0.0460 -0.0107
+vertex -0.0859 0.0460 -0.0147
+vertex -0.0872 0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0342 0.0460 -0.0107
+vertex -0.0338 0.0460 -0.0065
+vertex -0.0351 0.0460 0.0017
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0389 0.0460 0.0092
+vertex -0.0342 0.0460 -0.0107
+vertex -0.0351 0.0460 0.0017
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0448 0.0460 -0.0281
+vertex -0.0389 0.0460 0.0092
+vertex -0.0563 0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0389 0.0460 0.0092
+vertex -0.0351 0.0460 0.0017
+vertex -0.0367 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0448 0.0460 0.0151
+vertex -0.0389 0.0460 0.0092
+vertex -0.0416 0.0460 0.0124
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0484 0.0460 0.0173
+vertex -0.0563 0.0460 0.0198
+vertex -0.0389 0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0563 0.0460 0.0198
+vertex -0.0843 0.0460 0.0056
+vertex -0.0821 0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0563 0.0460 0.0198
+vertex -0.0484 0.0460 0.0173
+vertex -0.0523 0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0389 0.0460 0.0092
+vertex -0.0448 0.0460 0.0151
+vertex -0.0484 0.0460 0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0687 0.0460 0.0189
+vertex -0.0563 0.0460 0.0198
+vertex -0.0605 0.0460 0.0202
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0794 0.0460 0.0124
+vertex -0.0821 0.0460 0.0092
+vertex -0.0843 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0872 0.0460 -0.0065
+vertex -0.0859 0.0460 0.0017
+vertex -0.0868 0.0460 -0.0023
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0859 0.0460 0.0017
+vertex -0.0872 0.0460 -0.0065
+vertex -0.0843 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0872 0.0460 -0.0065
+vertex -0.0821 0.0460 -0.0222
+vertex -0.0843 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0762 0.0460 0.0151
+vertex -0.0843 0.0460 0.0056
+vertex -0.0563 0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0762 0.0460 0.0151
+vertex -0.0794 0.0460 0.0124
+vertex -0.0843 0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0762 0.0460 0.0151
+vertex -0.0687 0.0460 0.0189
+vertex -0.0726 0.0460 0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0687 0.0460 0.0189
+vertex -0.0762 0.0460 0.0151
+vertex -0.0563 0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0647 0.0460 0.0198
+vertex -0.0687 0.0460 0.0189
+vertex -0.0605 0.0460 0.0202
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0351 0.0460 0.0017
+vertex -0.0338 0.0460 -0.0065
+vertex -0.0342 0.0460 -0.0023
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 -0.0110 -0.0130
+vertex -0.0490 0.0110 -0.0130
+vertex -0.0360 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 0.0110 -0.0130
+vertex -0.0360 -0.0110 -0.0130
+vertex -0.0490 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 -0.0110 -0.0130
+vertex -0.0360 0.0110 -0.0130
+vertex -0.0360 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 0.0110 0.0000
+vertex -0.0360 -0.0110 0.0000
+vertex -0.0360 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 -0.0110 0.0000
+vertex -0.0360 0.0110 0.0000
+vertex -0.0490 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 0.0110 0.0000
+vertex -0.0490 -0.0110 0.0000
+vertex -0.0360 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 -0.0110 0.0000
+vertex -0.0490 0.0110 0.0000
+vertex -0.0490 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 0.0110 -0.0130
+vertex -0.0490 -0.0110 -0.0130
+vertex -0.0490 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0300 -0.0130
+vertex -0.0720 -0.0300 -0.0129
+vertex -0.0490 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0720 -0.0300 -0.0129
+vertex -0.0770 -0.0300 -0.0130
+vertex -0.0770 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 -0.0300 -0.0130
+vertex -0.0490 -0.0300 -0.0129
+vertex -0.0490 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 -0.0300 -0.0129
+vertex -0.0360 -0.0300 -0.0130
+vertex -0.0770 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0720 -0.0300 -0.0001
+vertex -0.0770 -0.0300 0.0000
+vertex -0.0490 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0300 0.0000
+vertex -0.0720 -0.0300 -0.0001
+vertex -0.0720 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 -0.0300 -0.0001
+vertex -0.0360 -0.0300 0.0000
+vertex -0.0360 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 -0.0300 0.0000
+vertex -0.0490 -0.0300 -0.0001
+vertex -0.0770 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 -0.0300 0.0000
+vertex -0.0770 -0.0300 0.0000
+vertex -0.0770 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0110 0.0000
+vertex -0.0360 -0.0110 0.0000
+vertex -0.0360 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 -0.0110 0.0000
+vertex -0.0770 -0.0110 0.0000
+vertex -0.0770 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0110 -0.0130
+vertex -0.0360 -0.0110 -0.0130
+vertex -0.0360 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 -0.0110 -0.0130
+vertex -0.0770 -0.0110 -0.0130
+vertex -0.0770 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0300 -0.0130
+vertex -0.0360 -0.0300 -0.0130
+vertex -0.0360 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0762 -0.0460 -0.0281
+vertex -0.0563 -0.0460 -0.0328
+vertex -0.0687 -0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0687 -0.0460 -0.0319
+vertex -0.0726 -0.0460 -0.0303
+vertex -0.0762 -0.0460 -0.0281
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0605 -0.0460 -0.0332
+vertex -0.0647 -0.0460 -0.0328
+vertex -0.0687 -0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0762 -0.0460 -0.0281
+vertex -0.0794 -0.0460 -0.0254
+vertex -0.0821 -0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0762 -0.0460 -0.0281
+vertex -0.0647 -0.0460 0.0198
+vertex -0.0389 -0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0843 -0.0460 -0.0186
+vertex -0.0859 -0.0460 -0.0147
+vertex -0.0868 -0.0460 -0.0107
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0868 -0.0460 -0.0107
+vertex -0.0762 -0.0460 -0.0281
+vertex -0.0843 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0821 -0.0460 -0.0222
+vertex -0.0843 -0.0460 -0.0186
+vertex -0.0762 -0.0460 -0.0281
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0762 -0.0460 -0.0281
+vertex -0.0868 -0.0460 -0.0107
+vertex -0.0821 -0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0389 -0.0460 -0.0222
+vertex -0.0484 -0.0460 -0.0303
+vertex -0.0563 -0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0563 -0.0460 -0.0328
+vertex -0.0484 -0.0460 -0.0303
+vertex -0.0523 -0.0460 -0.0319
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0448 -0.0460 -0.0281
+vertex -0.0484 -0.0460 -0.0303
+vertex -0.0416 -0.0460 -0.0254
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0605 -0.0460 -0.0332
+vertex -0.0687 -0.0460 -0.0319
+vertex -0.0563 -0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0416 -0.0460 -0.0254
+vertex -0.0484 -0.0460 -0.0303
+vertex -0.0389 -0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0389 -0.0460 -0.0222
+vertex -0.0351 -0.0460 -0.0147
+vertex -0.0367 -0.0460 -0.0186
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0351 -0.0460 -0.0147
+vertex -0.0389 -0.0460 -0.0222
+vertex -0.0338 -0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0762 -0.0460 -0.0281
+vertex -0.0389 -0.0460 -0.0222
+vertex -0.0563 -0.0460 -0.0328
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0342 -0.0460 -0.0107
+vertex -0.0351 -0.0460 -0.0147
+vertex -0.0338 -0.0460 -0.0065
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0868 -0.0460 -0.0107
+vertex -0.0872 -0.0460 -0.0065
+vertex -0.0859 -0.0460 0.0017
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0821 -0.0460 0.0092
+vertex -0.0868 -0.0460 -0.0107
+vertex -0.0859 -0.0460 0.0017
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0762 -0.0460 -0.0281
+vertex -0.0821 -0.0460 0.0092
+vertex -0.0647 -0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0821 -0.0460 0.0092
+vertex -0.0859 -0.0460 0.0017
+vertex -0.0843 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0762 -0.0460 0.0151
+vertex -0.0821 -0.0460 0.0092
+vertex -0.0794 -0.0460 0.0124
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0726 -0.0460 0.0173
+vertex -0.0647 -0.0460 0.0198
+vertex -0.0821 -0.0460 0.0092
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0647 -0.0460 0.0198
+vertex -0.0367 -0.0460 0.0056
+vertex -0.0389 -0.0460 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0647 -0.0460 0.0198
+vertex -0.0726 -0.0460 0.0173
+vertex -0.0687 -0.0460 0.0189
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0821 -0.0460 0.0092
+vertex -0.0762 -0.0460 0.0151
+vertex -0.0726 -0.0460 0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0523 -0.0460 0.0189
+vertex -0.0647 -0.0460 0.0198
+vertex -0.0605 -0.0460 0.0202
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0416 -0.0460 0.0124
+vertex -0.0389 -0.0460 0.0092
+vertex -0.0367 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0338 -0.0460 -0.0065
+vertex -0.0351 -0.0460 0.0017
+vertex -0.0342 -0.0460 -0.0023
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0351 -0.0460 0.0017
+vertex -0.0338 -0.0460 -0.0065
+vertex -0.0367 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0338 -0.0460 -0.0065
+vertex -0.0389 -0.0460 -0.0222
+vertex -0.0367 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0448 -0.0460 0.0151
+vertex -0.0367 -0.0460 0.0056
+vertex -0.0647 -0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0448 -0.0460 0.0151
+vertex -0.0416 -0.0460 0.0124
+vertex -0.0367 -0.0460 0.0056
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0448 -0.0460 0.0151
+vertex -0.0523 -0.0460 0.0189
+vertex -0.0484 -0.0460 0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0523 -0.0460 0.0189
+vertex -0.0448 -0.0460 0.0151
+vertex -0.0647 -0.0460 0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0563 -0.0460 0.0198
+vertex -0.0523 -0.0460 0.0189
+vertex -0.0605 -0.0460 0.0202
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0859 -0.0460 0.0017
+vertex -0.0872 -0.0460 -0.0065
+vertex -0.0868 -0.0460 -0.0023
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0770 -0.0300 -0.0360
+vertex -0.0770 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0300 -0.0360
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0300 -0.0360
+vertex -0.0720 0.0300 -0.0129
+vertex -0.0490 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0720 0.0300 -0.0129
+vertex -0.0770 0.0300 -0.0360
+vertex -0.0770 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0490 0.0300 -0.0129
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 0.0300 -0.0129
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0770 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0720 0.0300 -0.0001
+vertex -0.0770 0.0300 0.0000
+vertex -0.0490 0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0300 0.0000
+vertex -0.0720 0.0300 -0.0001
+vertex -0.0720 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 0.0300 -0.0001
+vertex -0.0120 0.0300 0.0000
+vertex -0.0490 0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 0.0000
+vertex -0.0490 0.0300 -0.0001
+vertex -0.0770 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 0.0000
+vertex -0.0770 0.0300 0.0000
+vertex -0.0770 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0300 0.0000
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0300 0.0000
+vertex -0.0720 -0.0300 -0.0001
+vertex -0.0490 -0.0300 -0.0001
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0720 -0.0300 -0.0001
+vertex -0.0770 -0.0300 0.0000
+vertex -0.0720 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0490 -0.0300 -0.0001
+vertex -0.0490 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 -0.0300 -0.0001
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0770 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0720 -0.0300 -0.0129
+vertex -0.0770 -0.0300 -0.0360
+vertex -0.0490 -0.0300 -0.0129
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0300 -0.0360
+vertex -0.0720 -0.0300 -0.0129
+vertex -0.0770 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 -0.0300 -0.0129
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0120 -0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0490 -0.0300 -0.0129
+vertex -0.0770 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 -0.0100
+vertex -0.0120 -0.0300 0.0000
+vertex -0.0120 0.0300 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 0.0000
+vertex -0.0120 0.0300 -0.0100
+vertex -0.0120 -0.0300 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0200 -0.0130
+vertex 0.0530 0.0300 -0.0130
+vertex 0.0120 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0300 -0.0130
+vertex 0.0120 0.0200 -0.0130
+vertex 0.0530 0.0200 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0400 0.0110 -0.0030
+vertex 0.0400 0.0110 -0.0130
+vertex 0.0400 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0400 -0.0110 -0.0130
+vertex 0.0400 -0.0110 -0.0030
+vertex 0.0400 0.0110 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0430 -0.0110 -0.0130
+vertex 0.0530 -0.0110 -0.0130
+vertex 0.0530 -0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0110 0.0000
+vertex 0.0430 -0.0110 0.0000
+vertex 0.0430 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0200 -0.0130
+vertex 0.0120 -0.0300 -0.0130
+vertex 0.0530 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 -0.0300 -0.0130
+vertex 0.0530 -0.0200 -0.0130
+vertex 0.0120 -0.0200 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0530 0.0300 -0.0260
+vertex 0.0530 0.0300 -0.0360
+vertex -0.0120 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0120 0.0300 -0.0260
+vertex 0.0530 0.0300 -0.0260
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0640 -0.0110 -0.0030
+vertex -0.0640 -0.0110 -0.0130
+vertex -0.0640 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0640 0.0110 -0.0130
+vertex -0.0640 0.0110 -0.0030
+vertex -0.0640 -0.0110 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0670 0.0110 -0.0130
+vertex -0.0770 0.0110 -0.0130
+vertex -0.0770 0.0110 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0110 0.0000
+vertex -0.0670 0.0110 0.0000
+vertex -0.0670 0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 0.0200 -0.0130
+vertex -0.0360 0.0300 -0.0130
+vertex -0.0770 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0300 -0.0130
+vertex -0.0770 0.0200 -0.0130
+vertex -0.0360 0.0200 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 0.0110 -0.0030
+vertex -0.0490 0.0110 -0.0130
+vertex -0.0490 -0.0110 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 -0.0110 -0.0130
+vertex -0.0490 -0.0110 -0.0030
+vertex -0.0490 0.0110 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0670 0.0300 -0.0360
+vertex -0.0770 0.0300 -0.0360
+vertex -0.0770 0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 0.0300 -0.0130
+vertex -0.0670 0.0300 -0.0130
+vertex -0.0670 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0200 -0.0130
+vertex -0.0770 -0.0300 -0.0130
+vertex -0.0360 -0.0300 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0360 -0.0300 -0.0130
+vertex -0.0360 -0.0200 -0.0130
+vertex -0.0770 -0.0200 -0.0130
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0300 -0.0360
+vertex -0.0120 0.0300 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0250 -0.0300 -0.0360
+vertex -0.0250 0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0770 -0.0300 -0.0260
+vertex -0.0770 -0.0300 -0.0360
+vertex -0.0120 -0.0300 -0.0360
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0300 -0.0360
+vertex -0.0120 -0.0300 -0.0260
+vertex -0.0770 -0.0300 -0.0260
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/builders/output/FourWheelCar/graph-silhouette.dxf b/rocolib/builders/output/FourWheelCar/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..83f30d26a3a2071ed035b1d9380f9d25b01f6ab2
--- /dev/null
+++ b/rocolib/builders/output/FourWheelCar/graph-silhouette.dxf
@@ -0,0 +1,20036 @@
+  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
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+142.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+142.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+142.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+202.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+166.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+179.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+147.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+134.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+136.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+166.0
+ 20
+136.0
+ 30
+0.0
+ 11
+166.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+166.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+202.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+136.0
+ 30
+0.0
+ 11
+166.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+179.00000000000003
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+66.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+66.0
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+66.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+66.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+70.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+106.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+106.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+93.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+125.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+138.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+138.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+112.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+73.0
+ 30
+0.0
+ 11
+99.0
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+99.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+125.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+112.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+112.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+99.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.00000000000001
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+99.0
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+0.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+151.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.00000000000003
+ 20
+10.000000000000002
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+10.000000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.00000000000003
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+73.0
+ 30
+0.0
+ 11
+157.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+157.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+125.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+106.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+106.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+93.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+73.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+32.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+32.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+151.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.00000000000003
+ 20
+73.0
+ 30
+0.0
+ 11
+151.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+161.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.00000000000003
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+161.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+138.00000000000003
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+136.0
+ 30
+0.0
+ 11
+157.0
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.00000000000003
+ 20
+136.0
+ 30
+0.0
+ 11
+157.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+136.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.0
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+95.00000000000001
+ 30
+0.0
+ 11
+83.0
+ 21
+95.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+136.0
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+10.000000000000002
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+136.0
+ 30
+0.0
+ 11
+0.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+136.0
+ 30
+0.0
+ 11
+0.0
+ 21
+136.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+166.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+202.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+262.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+262.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+188.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.0
+ 20
+188.00000000000003
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+188.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+262.0
+ 21
+188.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.0
+ 20
+201.00000000000003
+ 30
+0.0
+ 11
+262.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+272.0
+ 21
+201.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+272.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+266.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+266.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+226.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+262.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+262.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+179.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+202.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+166.0
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+179.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+166.0
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+147.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+134.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.00000000000003
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+134.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+160.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.0
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+160.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+173.0
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.00000000000003
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+173.0
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.00000000000003
+ 20
+440.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+440.00000000000006
+ 30
+0.0
+ 11
+147.00000000000003
+ 21
+440.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+440.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.00000000000001
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+121.00000000000001
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00000000000001
+ 20
+430.00000000000006
+ 30
+0.0
+ 11
+121.00000000000001
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.00000000000001
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+430.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.00000000000001
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+111.00000000000001
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+134.00000000000003
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.00000000000001
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.00000000000003
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+115.00000000000001
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+179.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.0
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.00000000000003
+ 20
+408.00000000000006
+ 30
+0.0
+ 11
+189.0
+ 21
+408.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.0
+ 20
+367.00000000000006
+ 30
+0.0
+ 11
+142.00000000000003
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.0
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+132.0
+ 21
+367.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.00000000000003
+ 20
+307.00000000000006
+ 30
+0.0
+ 11
+132.0
+ 21
+307.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.50000000000003
+ 20
+319.75000000000006
+ 30
+0.0
+ 11
+142.50000000000003
+ 21
+316.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.50000000000003
+ 20
+316.75000000000006
+ 30
+0.0
+ 11
+145.5
+ 21
+316.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.5
+ 20
+316.75000000000006
+ 30
+0.0
+ 11
+145.5
+ 21
+319.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.5
+ 20
+319.75000000000006
+ 30
+0.0
+ 11
+142.50000000000003
+ 21
+319.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+318.75
+ 30
+0.0
+ 11
+163.5
+ 21
+317.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+317.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+317.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+317.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+318.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+318.75
+ 30
+0.0
+ 11
+163.5
+ 21
+318.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+323.75
+ 30
+0.0
+ 11
+143.5
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+322.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+143.5
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+323.75
+ 30
+0.0
+ 11
+163.5
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+322.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+163.5
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+327.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+327.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+332.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+332.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+336.25
+ 30
+0.0
+ 11
+143.5
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+143.5
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+336.25
+ 30
+0.0
+ 11
+163.5
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+163.5
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+341.25
+ 30
+0.0
+ 11
+143.5
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+143.5
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+341.25
+ 30
+0.0
+ 11
+163.5
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+163.5
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+346.25
+ 30
+0.0
+ 11
+143.5
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+345.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+143.5
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+346.25
+ 30
+0.0
+ 11
+163.5
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+345.25
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+163.5
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+350.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+350.25
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.5
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+164.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+164.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+163.5
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+356.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+355.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.5
+ 20
+355.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+355.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+355.25
+ 30
+0.0
+ 11
+144.50000000000003
+ 21
+356.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.50000000000003
+ 20
+356.25000000000006
+ 30
+0.0
+ 11
+143.5
+ 21
+356.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+162.50000000000003
+ 20
+357.25000000000006
+ 30
+0.0
+ 11
+162.50000000000003
+ 21
+354.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+162.50000000000003
+ 20
+354.25000000000006
+ 30
+0.0
+ 11
+165.50000000000003
+ 21
+354.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.50000000000003
+ 20
+354.25000000000006
+ 30
+0.0
+ 11
+165.50000000000003
+ 21
+357.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.50000000000003
+ 20
+357.25000000000006
+ 30
+0.0
+ 11
+162.50000000000003
+ 21
+357.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.11428571428573
+ 20
+361.00000000000006
+ 30
+0.0
+ 11
+179.11428571428573
+ 21
+343.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.11428571428573
+ 20
+343.00000000000006
+ 30
+0.0
+ 11
+199.6857142857143
+ 21
+343.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+199.6857142857143
+ 20
+343.00000000000006
+ 30
+0.0
+ 11
+199.6857142857143
+ 21
+361.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+199.6857142857143
+ 20
+361.00000000000006
+ 30
+0.0
+ 11
+179.11428571428573
+ 21
+361.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+294.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+294.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+294.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+271.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+271.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+271.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+271.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+294.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.91666666666666
+ 20
+273.75
+ 30
+0.0
+ 11
+142.91666666666666
+ 21
+268.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.91666666666666
+ 20
+268.25000000000006
+ 30
+0.0
+ 11
+142.41666666666669
+ 21
+268.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.41666666666669
+ 20
+268.25000000000006
+ 30
+0.0
+ 11
+142.41666666666669
+ 21
+273.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.41666666666669
+ 20
+273.75
+ 30
+0.0
+ 11
+142.91666666666666
+ 21
+273.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+279.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+293.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+293.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+293.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+293.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+279.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+279.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+279.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+224.50000000000003
+ 30
+0.0
+ 11
+115.75000000000001
+ 21
+224.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.75000000000001
+ 20
+224.50000000000003
+ 30
+0.0
+ 11
+115.75000000000001
+ 21
+221.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.75000000000001
+ 20
+221.50000000000003
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+221.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.75000000000001
+ 20
+221.50000000000003
+ 30
+0.0
+ 11
+118.75000000000001
+ 21
+224.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+116.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+116.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+117.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+117.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+119.25000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+119.25000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.25000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+120.25000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+121.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+121.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+124.25000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.25000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+125.25000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+125.25000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+126.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+126.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+127.75000000000001
+ 20
+202.5
+ 30
+0.0
+ 11
+127.75000000000001
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+129.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+130.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+131.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+131.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+132.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+132.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+134.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+135.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+135.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+136.75
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.75
+ 20
+202.5
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+137.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+139.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.25
+ 20
+202.5
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+140.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+141.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+142.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+145.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+144.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+145.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+145.25
+ 20
+202.5
+ 30
+0.0
+ 11
+145.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+147.75
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+146.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+147.75
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.75
+ 20
+202.5
+ 30
+0.0
+ 11
+147.75
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+150.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+150.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.25
+ 20
+202.5
+ 30
+0.0
+ 11
+150.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+152.75
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+151.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+152.75
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.75
+ 20
+202.5
+ 30
+0.0
+ 11
+152.75
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+154.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+154.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+154.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+154.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+155.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+155.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+156.25000000000003
+ 20
+204.50000000000003
+ 30
+0.0
+ 11
+153.25000000000003
+ 21
+204.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.25000000000003
+ 20
+204.50000000000003
+ 30
+0.0
+ 11
+153.25000000000003
+ 21
+201.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.25000000000003
+ 20
+201.50000000000003
+ 30
+0.0
+ 11
+156.25000000000003
+ 21
+201.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+156.25000000000003
+ 20
+201.50000000000003
+ 30
+0.0
+ 11
+156.25000000000003
+ 21
+204.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.44000000000001
+ 20
+262.2100000000001
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+263.29
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.44000000000001
+ 20
+263.29
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+263.29
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.44000000000001
+ 20
+263.29
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+262.2100000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.44000000000001
+ 20
+262.2100000000001
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+262.2100000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.44000000000001
+ 20
+229.71
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+230.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.44000000000001
+ 20
+230.79000000000005
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+230.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.44000000000001
+ 20
+230.79000000000005
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+229.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.44000000000001
+ 20
+229.71
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+229.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.44000000000001
+ 20
+205.48000000000002
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+219.52
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.44000000000001
+ 20
+219.52
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+219.52
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.44000000000001
+ 20
+219.52
+ 30
+0.0
+ 11
+80.44000000000001
+ 21
+205.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.44000000000001
+ 20
+205.48000000000002
+ 30
+0.0
+ 11
+98.44000000000001
+ 21
+205.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+261.00000000000006
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+261.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+261.00000000000006
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+238.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+238.00000000000003
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+238.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+238.00000000000003
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+261.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+242.1136363636364
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+254.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+254.43181818181822
+ 30
+0.0
+ 11
+77.25
+ 21
+254.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+254.43181818181822
+ 30
+0.0
+ 11
+77.25
+ 21
+242.1136363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+242.1136363636364
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+242.1136363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+212.56818181818184
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+224.88636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.75000000000001
+ 20
+224.88636363636365
+ 30
+0.0
+ 11
+77.25
+ 21
+224.88636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+224.88636363636365
+ 30
+0.0
+ 11
+77.25
+ 21
+212.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.25
+ 20
+212.56818181818184
+ 30
+0.0
+ 11
+77.75000000000001
+ 21
+212.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+141.0
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+141.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+141.0
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+164.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+164.0
+ 30
+0.0
+ 11
+166.065
+ 21
+164.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+164.0
+ 30
+0.0
+ 11
+166.065
+ 21
+141.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+159.88636363636363
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+147.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+147.56818181818184
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+147.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+147.56818181818184
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+159.88636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+159.88636363636363
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+159.88636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+189.43181818181822
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+177.11363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.25000000000003
+ 20
+177.11363636363637
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+177.11363636363637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+177.11363636363637
+ 30
+0.0
+ 11
+194.75000000000003
+ 21
+189.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.75000000000003
+ 20
+189.43181818181822
+ 30
+0.0
+ 11
+194.25000000000003
+ 21
+189.43181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.33333333333334
+ 20
+68.50000000000001
+ 30
+0.0
+ 11
+194.33333333333334
+ 21
+73.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.33333333333334
+ 20
+73.50000000000001
+ 30
+0.0
+ 11
+186.66666666666666
+ 21
+73.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.66666666666666
+ 20
+73.50000000000001
+ 30
+0.0
+ 11
+186.66666666666666
+ 21
+68.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+164.0
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+164.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+164.0
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+141.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+141.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+141.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+141.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+164.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.58333333333336
+ 20
+143.75
+ 30
+0.0
+ 11
+77.41666666666667
+ 21
+143.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.41666666666667
+ 20
+143.75
+ 30
+0.0
+ 11
+77.41666666666667
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.41666666666667
+ 20
+143.25
+ 30
+0.0
+ 11
+85.58333333333336
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.58333333333336
+ 20
+143.25
+ 30
+0.0
+ 11
+85.58333333333336
+ 21
+143.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+108.00000000000001
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+108.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+108.00000000000001
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+131.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+131.0
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+131.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+131.0
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+108.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.08333333333337
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+129.08333333333337
+ 21
+133.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.08333333333337
+ 20
+133.75000000000003
+ 30
+0.0
+ 11
+129.58333333333337
+ 21
+133.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.58333333333337
+ 20
+133.75000000000003
+ 30
+0.0
+ 11
+129.58333333333337
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.58333333333337
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+129.08333333333337
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.75000000000001
+ 20
+80.08333333333333
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+87.91666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.75000000000001
+ 20
+87.91666666666667
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+87.91666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.25000000000001
+ 20
+87.91666666666667
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+80.08333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.25000000000001
+ 20
+80.08333333333333
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+80.08333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.75000000000001
+ 20
+17.083333333333318
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+24.916666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.75000000000001
+ 20
+24.916666666666686
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+24.916666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.25000000000001
+ 20
+24.916666666666686
+ 30
+0.0
+ 11
+106.25000000000001
+ 21
+17.083333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.25000000000001
+ 20
+17.083333333333318
+ 30
+0.0
+ 11
+106.75000000000001
+ 21
+17.083333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+129.33333333333337
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+133.66666666666669
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.66666666666669
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+133.66666666666669
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.66666666666669
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+129.33333333333337
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+158.50000000000003
+ 20
+24.666666666666686
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+24.666666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.50000000000003
+ 20
+24.666666666666686
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+17.333333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.50000000000003
+ 20
+17.333333333333318
+ 30
+0.0
+ 11
+158.50000000000003
+ 21
+17.333333333333318
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+59.58333333333332
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+45.416666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+45.416666666666686
+ 30
+0.0
+ 11
+149.75
+ 21
+45.416666666666686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+45.416666666666686
+ 30
+0.0
+ 11
+149.75
+ 21
+59.58333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+59.58333333333332
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+59.58333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+37.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+37.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+37.0
+ 30
+0.0
+ 11
+105.93500000000002
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.93500000000002
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.06500000000001
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+93.06500000000001
+ 21
+37.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+45.66666666666669
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+40.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+40.66666666666669
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+45.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+45.66666666666669
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+59.33333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+59.33333333333332
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+64.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+64.33333333333333
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+59.33333333333332
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+158.50000000000003
+ 20
+87.66666666666666
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+87.66666666666666
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.50000000000003
+ 20
+87.66666666666666
+ 30
+0.0
+ 11
+153.50000000000003
+ 21
+80.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+153.50000000000003
+ 20
+80.33333333333333
+ 30
+0.0
+ 11
+158.50000000000003
+ 21
+80.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+122.58333333333336
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+108.41666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.25000000000003
+ 20
+108.41666666666667
+ 30
+0.0
+ 11
+149.75
+ 21
+108.41666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+108.41666666666667
+ 30
+0.0
+ 11
+149.75
+ 21
+122.58333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.75
+ 20
+122.58333333333336
+ 30
+0.0
+ 11
+149.25000000000003
+ 21
+122.58333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+108.66666666666667
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+103.66666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+103.66666666666667
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+108.66666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+108.66666666666667
+ 30
+0.0
+ 11
+90.50000000000001
+ 21
+122.33333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.50000000000001
+ 20
+122.33333333333336
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+127.33333333333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.50000000000001
+ 20
+127.33333333333333
+ 30
+0.0
+ 11
+85.50000000000001
+ 21
+122.33333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.750000000000004
+ 20
+191.0
+ 30
+0.0
+ 11
+50.25000000000001
+ 21
+191.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.25000000000001
+ 20
+191.0
+ 30
+0.0
+ 11
+50.25000000000001
+ 21
+191.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+50.25000000000001
+ 20
+191.50000000000003
+ 30
+0.0
+ 11
+29.750000000000004
+ 21
+191.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.750000000000004
+ 20
+191.50000000000003
+ 30
+0.0
+ 11
+29.750000000000004
+ 21
+191.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+147.8181818181818
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+147.8181818181818
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+147.8181818181818
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+159.63636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+159.63636363636363
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+159.63636363636363
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+177.3636363636364
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+177.3636363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+177.3636363636364
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+189.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+189.18181818181822
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+189.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+196.60000000000002
+ 20
+262.2100000000001
+ 30
+0.0
+ 11
+196.60000000000002
+ 21
+263.29
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+196.60000000000002
+ 20
+263.29
+ 30
+0.0
+ 11
+178.6
+ 21
+263.29
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.6
+ 20
+263.29
+ 30
+0.0
+ 11
+178.6
+ 21
+262.2100000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.6
+ 20
+262.2100000000001
+ 30
+0.0
+ 11
+196.60000000000002
+ 21
+262.2100000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+196.60000000000002
+ 20
+229.71
+ 30
+0.0
+ 11
+196.60000000000002
+ 21
+230.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+196.60000000000002
+ 20
+230.79000000000005
+ 30
+0.0
+ 11
+178.6
+ 21
+230.79000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.6
+ 20
+230.79000000000005
+ 30
+0.0
+ 11
+178.6
+ 21
+229.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.6
+ 20
+229.71
+ 30
+0.0
+ 11
+196.60000000000002
+ 21
+229.71
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.20000000000002
+ 20
+205.48000000000002
+ 30
+0.0
+ 11
+200.20000000000002
+ 21
+219.52
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.20000000000002
+ 20
+219.52
+ 30
+0.0
+ 11
+175.0
+ 21
+219.52
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.0
+ 20
+219.52
+ 30
+0.0
+ 11
+175.0
+ 21
+205.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.0
+ 20
+205.48000000000002
+ 30
+0.0
+ 11
+200.20000000000002
+ 21
+205.48000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+238.00000000000003
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+238.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+238.00000000000003
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+261.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+261.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+261.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+261.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+238.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+214.75000000000003
+ 20
+224.50000000000003
+ 30
+0.0
+ 11
+211.75
+ 21
+224.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+211.75
+ 20
+224.50000000000003
+ 30
+0.0
+ 11
+211.75
+ 21
+221.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+211.75
+ 20
+221.50000000000003
+ 30
+0.0
+ 11
+214.75000000000003
+ 21
+221.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+214.75000000000003
+ 20
+221.50000000000003
+ 30
+0.0
+ 11
+214.75000000000003
+ 21
+224.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+213.75
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+212.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+212.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+212.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+212.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+213.75
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+213.75
+ 20
+202.5
+ 30
+0.0
+ 11
+213.75
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+215.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+215.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+216.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+216.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+215.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+215.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+216.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.25
+ 20
+202.5
+ 30
+0.0
+ 11
+216.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+218.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+217.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+217.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+217.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+217.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+218.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+218.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+218.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+218.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+217.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+217.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+217.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+217.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+218.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+218.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+218.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+220.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+220.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+221.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+221.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+220.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+220.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+221.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+221.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+222.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+222.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+223.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+223.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+222.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+222.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+223.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+223.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+225.25
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+225.25
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+225.25
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+225.25
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+226.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+226.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+225.25
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+225.25
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+225.25
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+225.25
+ 20
+202.5
+ 30
+0.0
+ 11
+226.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+226.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+227.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+227.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+228.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+228.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+227.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+227.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+228.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+228.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+230.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+230.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+231.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+231.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+230.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+230.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+231.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+231.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+232.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+232.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+233.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+233.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+232.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+232.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+233.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+233.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+236.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+235.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+235.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+235.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+235.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+236.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+236.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+236.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+236.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+235.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+235.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+235.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+235.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+236.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+236.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+236.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+237.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+237.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+237.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+237.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+238.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+238.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+237.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+237.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+237.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+237.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+238.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+238.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+240.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+240.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+241.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+241.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+240.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+240.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+241.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+241.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+241.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+242.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+242.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+243.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+243.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+242.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+242.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+243.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+243.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+246.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+245.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+245.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+246.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+246.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+246.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+246.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+245.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.25000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+245.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+246.25000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+246.25000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+246.25000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+248.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+247.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.75000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+247.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+248.75000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+248.75000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+248.75000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+248.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+247.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.75000000000003
+ 20
+203.50000000000003
+ 30
+0.0
+ 11
+247.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+248.75000000000003
+ 21
+202.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+248.75000000000003
+ 20
+202.5
+ 30
+0.0
+ 11
+248.75000000000003
+ 21
+203.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.25000000000003
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+250.25000000000006
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+250.25000000000006
+ 20
+223.50000000000003
+ 30
+0.0
+ 11
+250.25000000000006
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+250.25000000000006
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+251.25000000000003
+ 21
+222.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+251.25000000000003
+ 20
+222.50000000000003
+ 30
+0.0
+ 11
+251.25000000000003
+ 21
+223.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+252.25000000000003
+ 20
+204.50000000000003
+ 30
+0.0
+ 11
+249.25000000000003
+ 21
+204.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+249.25000000000003
+ 20
+204.50000000000003
+ 30
+0.0
+ 11
+249.25000000000003
+ 21
+201.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+249.25000000000003
+ 20
+201.50000000000003
+ 30
+0.0
+ 11
+252.25000000000003
+ 21
+201.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+252.25000000000003
+ 20
+201.50000000000003
+ 30
+0.0
+ 11
+252.25000000000003
+ 21
+204.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.00000000000003
+ 20
+191.25
+ 30
+0.0
+ 11
+248.50000000000003
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+248.50000000000003
+ 20
+191.25
+ 30
+0.0
+ 11
+242.00000000000003
+ 21
+197.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.00000000000003
+ 20
+197.75
+ 30
+0.0
+ 11
+222.00000000000003
+ 21
+197.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.00000000000003
+ 20
+197.75
+ 30
+0.0
+ 11
+215.50000000000003
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+215.50000000000003
+ 20
+191.25
+ 30
+0.0
+ 11
+222.00000000000003
+ 21
+191.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.50000000000006
+ 20
+254.18181818181822
+ 30
+0.0
+ 11
+264.5
+ 21
+254.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+254.18181818181822
+ 30
+0.0
+ 11
+264.5
+ 21
+242.3636363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+242.3636363636364
+ 30
+0.0
+ 11
+269.50000000000006
+ 21
+242.3636363636364
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.50000000000006
+ 20
+224.63636363636365
+ 30
+0.0
+ 11
+264.5
+ 21
+224.63636363636365
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+224.63636363636365
+ 30
+0.0
+ 11
+264.5
+ 21
+212.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+264.5
+ 20
+212.81818181818184
+ 30
+0.0
+ 11
+269.50000000000006
+ 21
+212.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+293.33333333333337
+ 30
+0.0
+ 11
+186.5
+ 21
+298.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+298.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+293.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+293.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+279.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+279.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+274.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+274.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+279.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.5
+ 20
+319.75000000000006
+ 30
+0.0
+ 11
+202.5
+ 21
+316.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+202.5
+ 20
+316.75000000000006
+ 30
+0.0
+ 11
+205.50000000000003
+ 21
+316.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.50000000000003
+ 20
+316.75000000000006
+ 30
+0.0
+ 11
+205.50000000000003
+ 21
+319.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.50000000000003
+ 20
+319.75000000000006
+ 30
+0.0
+ 11
+202.5
+ 21
+319.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+318.75
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+317.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+317.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+317.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+317.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+318.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+318.75
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+318.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+320.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+320.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+321.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+321.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+322.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+322.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+323.75
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+323.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+325.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+325.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+326.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+326.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+327.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+327.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+328.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+328.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+330.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+330.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+331.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+331.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+332.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+332.75
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+333.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+333.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+335.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+335.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+336.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+336.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+337.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+337.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+338.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+338.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+340.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+340.25000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+341.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+341.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+342.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+342.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+343.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+343.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+345.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+345.25
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+346.25
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+346.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+347.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+347.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+348.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+348.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+350.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+350.25
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+351.25000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+351.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+352.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+352.75000000000006
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.50000000000003
+ 20
+353.75000000000006
+ 30
+0.0
+ 11
+223.50000000000003
+ 21
+353.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+356.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+355.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+203.50000000000003
+ 20
+355.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+355.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+355.25
+ 30
+0.0
+ 11
+204.50000000000003
+ 21
+356.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.50000000000003
+ 20
+356.25000000000006
+ 30
+0.0
+ 11
+203.50000000000003
+ 21
+356.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.50000000000003
+ 20
+357.25000000000006
+ 30
+0.0
+ 11
+222.50000000000003
+ 21
+354.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+222.50000000000003
+ 20
+354.25000000000006
+ 30
+0.0
+ 11
+225.50000000000003
+ 21
+354.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+225.50000000000003
+ 20
+354.25000000000006
+ 30
+0.0
+ 11
+225.50000000000003
+ 21
+357.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+225.50000000000003
+ 20
+357.25000000000006
+ 30
+0.0
+ 11
+222.50000000000003
+ 21
+357.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.55428571428573
+ 20
+362.7
+ 30
+0.0
+ 11
+231.55428571428573
+ 21
+349.70000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.55428571428573
+ 20
+349.70000000000005
+ 30
+0.0
+ 11
+252.1257142857143
+ 21
+349.70000000000005
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+252.1257142857143
+ 20
+349.70000000000005
+ 30
+0.0
+ 11
+252.1257142857143
+ 21
+362.7
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+252.1257142857143
+ 20
+362.7
+ 30
+0.0
+ 11
+231.55428571428573
+ 21
+362.7
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.25000000000003
+ 20
+347.25000000000006
+ 30
+0.0
+ 11
+254.25000000000003
+ 21
+326.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.25000000000003
+ 20
+326.75000000000006
+ 30
+0.0
+ 11
+254.75000000000006
+ 21
+326.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.75000000000006
+ 20
+326.75000000000006
+ 30
+0.0
+ 11
+254.75000000000006
+ 21
+347.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+254.75000000000006
+ 20
+347.25000000000006
+ 30
+0.0
+ 11
+254.25000000000003
+ 21
+347.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+403.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+403.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+403.00000000000006
+ 30
+0.0
+ 11
+166.065
+ 21
+380.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.065
+ 20
+380.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+380.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.93500000000003
+ 20
+380.00000000000006
+ 30
+0.0
+ 11
+178.93500000000003
+ 21
+403.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.25000000000003
+ 20
+422.9166666666667
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+415.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.25000000000003
+ 20
+415.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+415.08333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.75
+ 20
+415.08333333333337
+ 30
+0.0
+ 11
+165.75
+ 21
+422.9166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+165.75
+ 20
+422.9166666666667
+ 30
+0.0
+ 11
+165.25000000000003
+ 21
+422.9166666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.66666666666669
+ 20
+432.5
+ 30
+0.0
+ 11
+138.33333333333334
+ 21
+432.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.33333333333334
+ 20
+432.5
+ 30
+0.0
+ 11
+138.33333333333334
+ 21
+437.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+138.33333333333334
+ 20
+437.50000000000006
+ 30
+0.0
+ 11
+142.66666666666669
+ 21
+437.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.50000000000001
+ 20
+415.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+415.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.50000000000001
+ 20
+415.33333333333337
+ 30
+0.0
+ 11
+118.50000000000001
+ 21
+422.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.50000000000001
+ 20
+422.6666666666667
+ 30
+0.0
+ 11
+113.50000000000001
+ 21
+422.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+380.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+394.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.75000000000001
+ 20
+394.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+394.58333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+394.58333333333337
+ 30
+0.0
+ 11
+122.25000000000001
+ 21
+380.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+122.25000000000001
+ 20
+380.41666666666674
+ 30
+0.0
+ 11
+122.75000000000001
+ 21
+380.41666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+394.33333333333337
+ 30
+0.0
+ 11
+186.5
+ 21
+399.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+399.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+394.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+394.33333333333337
+ 30
+0.0
+ 11
+181.50000000000003
+ 21
+380.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+181.50000000000003
+ 20
+380.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+375.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+186.5
+ 20
+375.66666666666674
+ 30
+0.0
+ 11
+186.5
+ 21
+380.66666666666674
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.5
+ 20
+327.0
+ 30
+0.0
+ 11
+134.5
+ 21
+322.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.5
+ 20
+322.00000000000006
+ 30
+0.0
+ 11
+139.50000000000003
+ 21
+327.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.50000000000003
+ 20
+327.0
+ 30
+0.0
+ 11
+139.50000000000003
+ 21
+347.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.50000000000003
+ 20
+347.00000000000006
+ 30
+0.0
+ 11
+134.5
+ 21
+352.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.5
+ 20
+352.00000000000006
+ 30
+0.0
+ 11
+134.5
+ 21
+347.00000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+337.0
+ 30
+0.0
+ 11
+282.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+337.0
+ 30
+0.0
+ 11
+282.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+337.0
+ 30
+0.0
+ 11
+282.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.0
+ 20
+337.0
+ 30
+0.0
+ 11
+282.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+345.0050224158704
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0050224158704
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+345.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0281737678708
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+345.0050224158704
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+342.4268406450232
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+344.0281737678708
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+340.24045318333197
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+342.4268406450232
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.522847498308
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+340.24045318333197
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.3409400611327
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+337.522847498308
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+330.7730799930546
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+334.3409400611327
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+326.9071198499986
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+330.7730799930546
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+322.83825240107285
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+326.9071198499986
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+318.6666666666667
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+322.83825240107285
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+314.4950809322606
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+318.6666666666667
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+310.42621348333483
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+314.4950809322606
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+306.5602533402788
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+310.42621348333483
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+302.9923932722008
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+306.5602533402788
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+299.8104858350255
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+302.9923932722008
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+297.09288015000146
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+299.8104858350255
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+294.9064926883102
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+297.09288015000146
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+293.3051595654626
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+294.9064926883102
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+292.328310917463
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+293.3051595654626
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+292.0
+ 20
+337.0
+ 30
+0.0
+ 11
+292.328310917463
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+292.328310917463
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+292.0
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+293.3051595654626
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+292.328310917463
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+294.9064926883102
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+293.3051595654626
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+297.09288015000146
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+294.9064926883102
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+299.8104858350255
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+297.09288015000146
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+302.9923932722008
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+299.8104858350255
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+306.5602533402788
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+302.9923932722008
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+310.42621348333483
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+306.5602533402788
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+314.4950809322606
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+310.42621348333483
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+318.6666666666667
+ 20
+310.33333333333337
+ 30
+0.0
+ 11
+314.4950809322606
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+322.83825240107285
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+318.6666666666667
+ 21
+310.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+326.9071198499986
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+322.83825240107285
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+330.7730799930546
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+326.9071198499986
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+334.3409400611327
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+330.7730799930546
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+337.522847498308
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+334.3409400611327
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+340.24045318333197
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+337.522847498308
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+342.4268406450232
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+340.24045318333197
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.0281737678708
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+342.4268406450232
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.0050224158704
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+344.0281737678708
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+355.33333333333337
+ 20
+337.0
+ 30
+0.0
+ 11
+355.33333333333337
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+418.3383557492038
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.3383557492038
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+418.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+417.3615071012042
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+418.3383557492038
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.7601739783566
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+417.3615071012042
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+413.57378651666534
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+415.7601739783566
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+410.8561808316413
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+413.57378651666534
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.67427339446607
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+410.8561808316413
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+404.106413326388
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+407.67427339446607
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.24045318333197
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+404.106413326388
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+396.1715857344062
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+400.24045318333197
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+392.0000000000001
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+396.1715857344062
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+387.82841426559395
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+392.0000000000001
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+383.7595468166682
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+387.82841426559395
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.8935866736122
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+383.7595468166682
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+376.32572660553416
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+379.8935866736122
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+373.14381916835885
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+376.32572660553416
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+370.42621348333483
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+373.14381916835885
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.2398260216436
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+370.42621348333483
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.638492898796
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+368.2398260216436
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.66164425079637
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+366.638492898796
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.3333333333334
+ 20
+337.0
+ 30
+0.0
+ 11
+365.66164425079637
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+365.66164425079637
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+365.3333333333334
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+366.638492898796
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+365.66164425079637
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+368.2398260216436
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+366.638492898796
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+370.42621348333483
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+368.2398260216436
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+373.14381916835885
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+370.42621348333483
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+376.32572660553416
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+373.14381916835885
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.8935866736122
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+376.32572660553416
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+383.7595468166682
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+379.8935866736122
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+387.82841426559395
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+383.7595468166682
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+392.0000000000001
+ 20
+310.33333333333337
+ 30
+0.0
+ 11
+387.82841426559395
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+396.1715857344062
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+392.0000000000001
+ 21
+310.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+400.24045318333197
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+396.1715857344062
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+404.106413326388
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+400.24045318333197
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.67427339446607
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+404.106413326388
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+410.8561808316413
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+407.67427339446607
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+413.57378651666534
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+410.8561808316413
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.7601739783566
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+413.57378651666534
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+417.3615071012042
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+415.7601739783566
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.3383557492038
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+417.3615071012042
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+428.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+428.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+492.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+491.67168908253717
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+491.67168908253717
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+492.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.6948404345376
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+491.67168908253717
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.09350731168996
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+490.6948404345376
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+486.90711984999876
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+489.09350731168996
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.18951416497475
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+486.90711984999876
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+481.00760672779944
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+484.18951416497475
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+477.4397466597214
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+481.00760672779944
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+473.5737865166654
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+477.4397466597214
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+469.50491906773965
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+473.5737865166654
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+465.3333333333335
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+469.50491906773965
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+461.1617475989273
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+465.3333333333335
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+457.0928801500016
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+461.1617475989273
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+453.2269200069456
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+457.0928801500016
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+449.65905993886753
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+453.2269200069456
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+446.4771525016922
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+449.65905993886753
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+443.7595468166682
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+446.4771525016922
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+441.573159354977
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+443.7595468166682
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+439.9718262321294
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+441.573159354977
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.9949775841298
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+439.9718262321294
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.6666666666668
+ 20
+337.0
+ 30
+0.0
+ 11
+438.9949775841298
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.9949775841298
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+438.6666666666668
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+439.9718262321294
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+438.9949775841298
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+441.573159354977
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+439.9718262321294
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+443.7595468166682
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+441.573159354977
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+446.4771525016922
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+443.7595468166682
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+449.65905993886753
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+446.4771525016922
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+453.2269200069456
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+449.65905993886753
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+457.0928801500016
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+453.2269200069456
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+461.1617475989273
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+457.0928801500016
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+465.3333333333335
+ 20
+310.33333333333337
+ 30
+0.0
+ 11
+461.1617475989273
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+469.50491906773965
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+465.3333333333335
+ 21
+310.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+473.5737865166654
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+469.50491906773965
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+477.4397466597214
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+473.5737865166654
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+481.00760672779944
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+477.4397466597214
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+484.18951416497475
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+481.00760672779944
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+486.90711984999876
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+484.18951416497475
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+489.09350731168996
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+486.90711984999876
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.6948404345376
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+489.09350731168996
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+491.67168908253717
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+490.6948404345376
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+502.00000000000017
+ 20
+337.0
+ 30
+0.0
+ 11
+502.00000000000017
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.3333333333334
+ 20
+337.0
+ 30
+0.0
+ 11
+565.0050224158704
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.0050224158704
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+565.3333333333334
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+564.0281737678708
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+565.0050224158704
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+562.4268406450233
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+564.0281737678708
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2404531833321
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+562.4268406450233
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+557.5228474983081
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+560.2404531833321
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+554.3409400611328
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+557.5228474983081
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+550.7730799930548
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+554.3409400611328
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.9071198499987
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+550.7730799930548
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+542.838252401073
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+546.9071198499987
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+538.6666666666669
+ 20
+363.6666666666667
+ 30
+0.0
+ 11
+542.838252401073
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+534.4950809322607
+ 20
+363.33835574920374
+ 30
+0.0
+ 11
+538.6666666666669
+ 21
+363.6666666666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+530.4262134833349
+ 20
+362.3615071012041
+ 30
+0.0
+ 11
+534.4950809322607
+ 21
+363.33835574920374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+526.5602533402789
+ 20
+360.76017397835653
+ 30
+0.0
+ 11
+530.4262134833349
+ 21
+362.3615071012041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+522.992393272201
+ 20
+358.57378651666534
+ 30
+0.0
+ 11
+526.5602533402789
+ 21
+360.76017397835653
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+519.8104858350256
+ 20
+355.8561808316413
+ 30
+0.0
+ 11
+522.992393272201
+ 21
+358.57378651666534
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+517.0928801500016
+ 20
+352.674273394466
+ 30
+0.0
+ 11
+519.8104858350256
+ 21
+355.8561808316413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+514.9064926883103
+ 20
+349.1064133263879
+ 30
+0.0
+ 11
+517.0928801500016
+ 21
+352.674273394466
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+513.3051595654628
+ 20
+345.2404531833319
+ 30
+0.0
+ 11
+514.9064926883103
+ 21
+349.1064133263879
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+512.3283109174631
+ 20
+341.17158573440616
+ 30
+0.0
+ 11
+513.3051595654628
+ 21
+345.2404531833319
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+512.0000000000002
+ 20
+337.0
+ 30
+0.0
+ 11
+512.3283109174631
+ 21
+341.17158573440616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+512.3283109174631
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+512.0000000000002
+ 21
+337.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+513.3051595654628
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+512.3283109174631
+ 21
+332.8284142655939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+514.9064926883102
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+513.3051595654628
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+517.0928801500016
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+514.9064926883102
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+519.8104858350256
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+517.0928801500016
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+522.992393272201
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+519.8104858350256
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+526.5602533402789
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+522.992393272201
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+530.4262134833349
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+526.5602533402789
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+534.4950809322607
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+530.4262134833349
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+538.6666666666669
+ 20
+310.33333333333337
+ 30
+0.0
+ 11
+534.4950809322607
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+542.838252401073
+ 20
+310.6616442507963
+ 30
+0.0
+ 11
+538.6666666666669
+ 21
+310.33333333333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.9071198499987
+ 20
+311.6384928987959
+ 30
+0.0
+ 11
+542.838252401073
+ 21
+310.6616442507963
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+550.7730799930548
+ 20
+313.2398260216435
+ 30
+0.0
+ 11
+546.9071198499987
+ 21
+311.6384928987959
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+554.3409400611328
+ 20
+315.4262134833348
+ 30
+0.0
+ 11
+550.7730799930548
+ 21
+313.2398260216435
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+557.5228474983081
+ 20
+318.1438191683588
+ 30
+0.0
+ 11
+554.3409400611328
+ 21
+315.4262134833348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.2404531833321
+ 20
+321.3257266055341
+ 30
+0.0
+ 11
+557.5228474983081
+ 21
+318.1438191683588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+562.4268406450232
+ 20
+324.8935866736121
+ 30
+0.0
+ 11
+560.2404531833321
+ 21
+321.3257266055341
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+564.0281737678708
+ 20
+328.75954681666815
+ 30
+0.0
+ 11
+562.4268406450232
+ 21
+324.8935866736121
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.0050224158704
+ 20
+332.8284142655939
+ 30
+0.0
+ 11
+564.0281737678708
+ 21
+328.75954681666815
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/FourWheelCar/tree.png b/rocolib/builders/output/FourWheelCar/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b076420e547640d013e426100e0a77b95698afb
Binary files /dev/null and b/rocolib/builders/output/FourWheelCar/tree.png differ
diff --git a/rocolib/library/BatteryMount.yaml b/rocolib/library/BatteryMount.yaml
index c15f6e6af72a813a7e3ed4e9ffc2fbf827243fdd..72ef22b01a0d1d601ad06948c8ffceeebc4f4815 100644
--- a/rocolib/library/BatteryMount.yaml
+++ b/rocolib/library/BatteryMount.yaml
@@ -262,8 +262,8 @@ subcomponents:
       _q_k:
         parameter: larm._q_k
       l:
-        function: ((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2) **
-          0.5
+        function: (((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2)
+          ** 0.5)-4
         parameter: &id001
         - numBatteries
         - boatwidth
@@ -291,8 +291,8 @@ subcomponents:
       _q_k:
         parameter: rarm._q_k
       l:
-        function: ((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2) **
-          0.5
+        function: (((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2)
+          ** 0.5)-4
         parameter: *id001
       w:
         parameter: batterylength
diff --git a/rocolib/library/BoatBase.yaml b/rocolib/library/BoatBase.yaml
index 2ffa5ad0f2f88ef38ac8a2d8cab199983380379e..e7b69d8c6a7840c6a7455cc6fc82378fae0af032 100644
--- a/rocolib/library/BoatBase.yaml
+++ b/rocolib/library/BoatBase.yaml
@@ -49,7 +49,7 @@ parameters:
       minValue: 0
       units: mm
       valueType: (float, int)
-source: ../builders/BoatBaseBuilder.py
+source: ../builders/boat/BoatBaseBuilder.py
 subcomponents:
   boat:
     classname: SimpleUChannel
diff --git a/rocolib/library/BoatWithDCMount.yaml b/rocolib/library/BoatWithDCMount.yaml
index 4837a1a30798ff3cef4525b2e2f380e0e75b21b2..60fd3ccdbc65e73efec2d81e90dcd27aa61a58a8 100644
--- a/rocolib/library/BoatWithDCMount.yaml
+++ b/rocolib/library/BoatWithDCMount.yaml
@@ -63,7 +63,7 @@ parameters:
       units: mm
       valueType: (float, int)
   botDistance:
-    defaultValue: 50
+    defaultValue: 180
     spec:
       minValue: 0
       units: mm
@@ -89,7 +89,7 @@ parameters:
       units: mm
       valueType: (float, int)
   topDistance:
-    defaultValue: 50
+    defaultValue: 180
     spec:
       minValue: 0
       units: mm
diff --git a/rocolib/library/BoatWithManyDCMounts.yaml b/rocolib/library/BoatWithManyDCMounts.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..7cc44450f0aedd238563cad4752d693196657d78
--- /dev/null
+++ b/rocolib/library/BoatWithManyDCMounts.yaml
@@ -0,0 +1,400 @@
+connections:
+  connection0:
+  - - dcMount0
+    - leftArmInterface
+  - - split0
+    - botedge1
+  - tabWidth: 6
+  connection1:
+  - - dcMount0
+    - rightArmInterface
+  - - split1
+    - botedge1
+  - {}
+  connection10:
+  - - boat
+    - startopsplit
+  - - split1
+    - topedge0
+  - {}
+  connection11:
+  - - boat
+    - starbotsplit
+  - - split3
+    - topedge0
+  - {}
+  connection2:
+  - - dcMount1
+    - leftArmInterface
+  - - split0
+    - botedge4
+  - tabWidth: 6
+  connection3:
+  - - dcMount1
+    - rightArmInterface
+  - - split1
+    - botedge4
+  - {}
+  connection4:
+  - - dcMount2
+    - leftArmInterface
+  - - split2
+    - botedge1
+  - tabWidth: 6
+  connection5:
+  - - dcMount2
+    - rightArmInterface
+  - - split3
+    - botedge1
+  - {}
+  connection6:
+  - - dcMount3
+    - leftArmInterface
+  - - split2
+    - botedge4
+  - tabWidth: 6
+  connection7:
+  - - dcMount3
+    - rightArmInterface
+  - - split3
+    - botedge4
+  - {}
+  connection8:
+  - - boat
+    - porttopsplit
+  - - split0
+    - topedge0
+  - {}
+  connection9:
+  - - boat
+    - portbotsplit
+  - - split2
+    - topedge0
+  - {}
+interfaces:
+  boat.batterymount.leftArmInterface:
+    interface: batterymount.leftArmInterface
+    subcomponent: boat
+  boat.batterymount.rightArmInterface:
+    interface: batterymount.rightArmInterface
+    subcomponent: boat
+  boat.boat.portedge:
+    interface: boat.portedge
+    subcomponent: boat
+  boat.boat.staredge:
+    interface: boat.staredge
+    subcomponent: boat
+  boat.portbotsplit:
+    interface: portbotsplit
+    subcomponent: boat
+  boat.porttopsplit:
+    interface: porttopsplit
+    subcomponent: boat
+  boat.stack.leftArmInterface:
+    interface: stack.leftArmInterface
+    subcomponent: boat
+  boat.stack.rightArmInterface:
+    interface: stack.rightArmInterface
+    subcomponent: boat
+  boat.starbotsplit:
+    interface: starbotsplit
+    subcomponent: boat
+  boat.startopsplit:
+    interface: startopsplit
+    subcomponent: boat
+parameters:
+  boat.batterylength:
+    defaultValue: 61
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  boat.boat.bow.point:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  boat.boat.stern.point:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  boat.depth:
+    defaultValue: 70
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  boat.length:
+    defaultValue: 482
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  boat.portsplit._dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  boat.portsplit._dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  boat.portsplit._dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  boat.portsplit._q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  boat.portsplit._q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  boat.portsplit._q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  boat.portsplit._q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  boat.portsplit.width:
+    defaultValue: 0
+    spec: {}
+  boat.stack.length:
+    defaultValue: 61
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  boat.starsplit._dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  boat.starsplit._dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  boat.starsplit._dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  boat.starsplit._q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  boat.starsplit._q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  boat.starsplit._q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  boat.starsplit._q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  boat.starsplit.width:
+    defaultValue: 0
+    spec: {}
+  boat.width:
+    defaultValue: 90
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  dcMount0.motorHeight:
+    defaultValue: 8
+    spec:
+      parameterType: length
+  dcMount0.motorWidth:
+    defaultValue: 8
+    spec:
+      parameterType: length
+  dcMount1.motorHeight:
+    defaultValue: 8
+    spec:
+      parameterType: length
+  dcMount1.motorWidth:
+    defaultValue: 8
+    spec:
+      parameterType: length
+  dcMount2.motorHeight:
+    defaultValue: 8
+    spec:
+      parameterType: length
+  dcMount2.motorWidth:
+    defaultValue: 8
+    spec:
+      parameterType: length
+  dcMount3.motorHeight:
+    defaultValue: 8
+    spec:
+      parameterType: length
+  dcMount3.motorWidth:
+    defaultValue: 8
+    spec:
+      parameterType: length
+source: ../builders/boat/BoatWithManyDCMounts.py
+subcomponents:
+  boat:
+    classname: BoatWithStackBattery
+    kwargs: {}
+    parameters:
+      batterylength:
+        parameter: boat.batterylength
+      boat.bow.point:
+        parameter: boat.boat.bow.point
+      boat.stern.point:
+        parameter: boat.boat.stern.point
+      depth:
+        parameter: boat.depth
+      length:
+        parameter: boat.length
+      portsplit._dx:
+        parameter: boat.portsplit._dx
+      portsplit._dy:
+        parameter: boat.portsplit._dy
+      portsplit._dz:
+        parameter: boat.portsplit._dz
+      portsplit._q_a:
+        parameter: boat.portsplit._q_a
+      portsplit._q_i:
+        parameter: boat.portsplit._q_i
+      portsplit._q_j:
+        parameter: boat.portsplit._q_j
+      portsplit._q_k:
+        parameter: boat.portsplit._q_k
+      portsplit.width:
+        parameter: boat.portsplit.width
+      stack.length:
+        parameter: boat.stack.length
+      starsplit._dx:
+        parameter: boat.starsplit._dx
+      starsplit._dy:
+        parameter: boat.starsplit._dy
+      starsplit._dz:
+        parameter: boat.starsplit._dz
+      starsplit._q_a:
+        parameter: boat.starsplit._q_a
+      starsplit._q_i:
+        parameter: boat.starsplit._q_i
+      starsplit._q_j:
+        parameter: boat.starsplit._q_j
+      starsplit._q_k:
+        parameter: boat.starsplit._q_k
+      starsplit.width:
+        parameter: boat.starsplit.width
+      width:
+        parameter: boat.width
+  dcMount0:
+    classname: DCMotorMount
+    kwargs: {}
+    parameters:
+      motorHeight:
+        parameter: dcMount0.motorHeight
+      motorWidth:
+        parameter: dcMount0.motorWidth
+      mountWidth:
+        parameter: boat.width
+      supportLength:
+        parameter: boat.depth
+  dcMount1:
+    classname: DCMotorMount
+    kwargs: {}
+    parameters:
+      motorHeight:
+        parameter: dcMount1.motorHeight
+      motorWidth:
+        parameter: dcMount1.motorWidth
+      mountWidth:
+        parameter: boat.width
+      supportLength:
+        parameter: boat.depth
+  dcMount2:
+    classname: DCMotorMount
+    kwargs: {}
+    parameters:
+      motorHeight:
+        parameter: dcMount2.motorHeight
+      motorWidth:
+        parameter: dcMount2.motorWidth
+      mountWidth:
+        parameter: boat.width
+      supportLength:
+        parameter: boat.depth
+  dcMount3:
+    classname: DCMotorMount
+    kwargs: {}
+    parameters:
+      motorHeight:
+        parameter: dcMount3.motorHeight
+      motorWidth:
+        parameter: dcMount3.motorWidth
+      mountWidth:
+        parameter: boat.width
+      supportLength:
+        parameter: boat.depth
+  split0:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength: &id001
+      - 40
+      - 10
+      - 40
+      - 40
+      - 10
+      - 40
+      toplength: &id002
+      - 180
+  split1:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength: *id001
+      toplength: *id002
+  split2:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength: *id001
+      toplength: *id002
+  split3:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength: *id001
+      toplength: *id002
diff --git a/rocolib/library/BoatWithStackBattery.yaml b/rocolib/library/BoatWithStackBattery.yaml
index 564ebccc23ebb5515400df252b35537ff495a7a0..968eea206bf533c32d2962fe117ffc6458e54852 100644
--- a/rocolib/library/BoatWithStackBattery.yaml
+++ b/rocolib/library/BoatWithStackBattery.yaml
@@ -48,12 +48,24 @@ interfaces:
   boat.staredge:
     interface: staredge
     subcomponent: boat
+  portbotsplit:
+    interface: botedge3
+    subcomponent: portsplit
+  porttopsplit:
+    interface: botedge0
+    subcomponent: portsplit
   stack.leftArmInterface:
     interface: leftArmInterface
     subcomponent: stack
   stack.rightArmInterface:
     interface: rightArmInterface
     subcomponent: stack
+  starbotsplit:
+    interface: botedge0
+    subcomponent: starsplit
+  startopsplit:
+    interface: botedge3
+    subcomponent: starsplit
 parameters:
   batterylength:
     defaultValue: 61
@@ -80,7 +92,7 @@ parameters:
       units: mm
       valueType: (float, int)
   length:
-    defaultValue: 130
+    defaultValue: 482
     spec:
       minValue: 0
       units: mm
diff --git a/rocolib/output/.DS_Store b/rocolib/output/.DS_Store
index 109f94234dec6f17885fe5cbe8caf18495dd4292..f861250952f182920500b26c84e47321d23456eb 100644
Binary files a/rocolib/output/.DS_Store and b/rocolib/output/.DS_Store differ
diff --git a/rocolib/output/BoatWithServoMount/graph-anim.svg b/rocolib/output/BoatWithServoMount/graph-anim.svg
index 53e60e80406273c9b2f256bc312c434669937bb3..5a3a620278d54e43829083b48f29d617929dc7d7 100644
--- a/rocolib/output/BoatWithServoMount/graph-anim.svg
+++ b/rocolib/output/BoatWithServoMount/graph-anim.svg
@@ -1,189 +1,211 @@
 <?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="326.046506mm" version="1.1" viewBox="0.000000 0.000000 465.000000 326.046506" width="465.000000mm">
+<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="356.046506mm" version="1.1" viewBox="0.000000 0.000000 465.000000 356.046506" width="465.000000mm">
   <defs/>
-  <line stroke="#000000" x1="415.00000000000017" x2="379.00000000000017" y1="166.023253" y2="166.023253"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="415.00000000000017" y1="166.023253" y2="166.023253"/>
   <line opacity="0.5" stroke="#ff0000" x1="415.00000000000017" x2="415.00000000000017" y1="166.023253" y2="190.02325300000004"/>
-  <line stroke="#000000" x1="379.00000000000017" x2="415.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="415.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
   <line stroke="#000000" x1="415.00000000000017" x2="460.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
   <line stroke="#000000" x1="460.00000000000017" x2="415.00000000000017" y1="166.023253" y2="166.023253"/>
   <line stroke="#000000" x1="465.00000000000017" x2="460.00000000000017" y1="166.023253" y2="166.023253"/>
   <line stroke="#000000" x1="465.00000000000017" x2="465.00000000000017" y1="190.02325300000004" y2="166.023253"/>
   <line stroke="#000000" x1="460.00000000000017" x2="465.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
-  <line stroke="#000000" x1="345.0000000000001" x2="379.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="415.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
   <line opacity="1.0" stroke="#0000ff" x1="345.0000000000001" x2="345.0000000000001" y1="166.023253" y2="190.02325300000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="379.00000000000017" x2="345.0000000000001" y1="166.023253" y2="166.023253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="415.00000000000017" x2="345.0000000000001" y1="166.023253" y2="166.023253"/>
   <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="166.023253" y2="86.02325300000003"/>
-  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="240.02325300000004" y2="190.02325300000004"/>
-  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="240.02325300000004" y2="240.02325300000004"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="270.02325300000007" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="270.02325300000007" y2="270.02325300000007"/>
   <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="86.02325300000003" y2="86.02325300000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="275.00000000000017" x2="275.00000000000017" y1="240.02325300000004" y2="86.02325300000003"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="275.00000000000017" x2="345.0000000000001" y1="240.02325300000004" y2="240.02325300000004"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="345.0000000000001" x2="345.0000000000001" y1="240.02325300000004" y2="292.53762381816165"/>
-  <line opacity="1.0" stroke="#ff0000" x1="275.00000000000017" x2="345.0000000000001" y1="240.02325300000004" y2="292.53762381816165"/>
-  <line stroke="#000000" x1="362.5047902727207" x2="345.0000000000001" y1="240.02325300000004" y2="240.02325300000004"/>
-  <line stroke="#000000" x1="362.5047902727207" x2="362.5047902727207" y1="292.53762381816165" y2="240.02325300000004"/>
-  <line stroke="#000000" x1="345.0000000000001" x2="362.5047902727207" y1="292.53762381816165" y2="292.53762381816165"/>
-  <line opacity="1.0" stroke="#0000ff" x1="275.00000000000017" x2="294.58234220233663" y1="240.02325300000004" y2="307.22840067389916"/>
-  <line stroke="#000000" x1="294.58234220233663" x2="345.0000000000001" y1="307.22840067389916" y2="292.53762381816165"/>
-  <line stroke="#000000" x1="244.16468440467298" x2="294.58234220233663" y1="321.9191775296368" y2="307.22840067389916"/>
-  <line stroke="#000000" x1="230.00000000000014" x2="244.16468440467298" y1="326.0465056704263" y2="321.9191775296368"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="230.00000000000014" x2="275.00000000000017" y1="326.0465056704263" y2="240.02325300000004"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="230.0000000000001" x2="275.00000000000017" y1="240.02325300000007" y2="240.02325300000004"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="185.0000000000001" x2="230.0000000000001" y1="240.0232530000001" y2="240.02325300000007"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="230.00000000000014" x2="185.00000000000009" y1="326.0465056704263" y2="240.0232530000001"/>
-  <line opacity="1.0" stroke="#0000ff" x1="165.4176577976637" x2="185.00000000000009" y1="307.22840067389933" y2="240.02325300000007"/>
-  <line stroke="#000000" x1="215.83531559532727" x2="230.00000000000014" y1="321.91917752963684" y2="326.0465056704263"/>
-  <line stroke="#000000" x1="165.4176577976637" x2="215.83531559532727" y1="307.22840067389933" y2="321.91917752963684"/>
-  <line stroke="#000000" x1="115.00000000000013" x2="165.41765779766374" y1="292.53762381816176" y2="307.22840067389933"/>
-  <line opacity="1.0" stroke="#ff0000" x1="115.00000000000013" x2="185.00000000000009" y1="292.53762381816176" y2="240.0232530000001"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="115.00000000000007" x2="185.0000000000001" y1="240.02325300000015" y2="240.02325300000007"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="115.00000000000013" x2="115.00000000000007" y1="292.53762381816176" y2="240.02325300000015"/>
-  <line opacity="0.5" stroke="#0000ff" x1="185.00000000000009" x2="184.99999999999997" y1="240.0232530000001" y2="86.023253"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000007" y1="190.02325300000012" y2="240.02325300000015"/>
-  <line opacity="1.0" stroke="#0000ff" x1="115.00000000000001" x2="115.00000000000001" y1="190.02325300000012" y2="166.0232530000001"/>
-  <line stroke="#000000" x1="114.99999999999996" x2="115.00000000000001" y1="86.02325300000008" y2="166.0232530000001"/>
-  <line stroke="#000000" x1="114.99999999999996" x2="114.99999999999996" y1="86.02325300000008" y2="86.02325300000008"/>
-  <line stroke="#000000" x1="115.00000000000007" x2="115.00000000000007" y1="240.02325300000015" y2="240.02325300000015"/>
-  <line stroke="#000000" x1="81.00000000000001" x2="115.00000000000001" y1="190.02325300000015" y2="190.02325300000012"/>
-  <line opacity="0.5" stroke="#0000ff" x1="115.00000000000001" x2="81.00000000000001" y1="166.0232530000001" y2="166.02325300000015"/>
-  <line stroke="#000000" x1="45.0" x2="81.00000000000001" y1="190.0232530000002" y2="190.02325300000015"/>
-  <line opacity="0.5" stroke="#ff0000" x1="45.0" x2="45.0" y1="190.0232530000002" y2="166.02325300000018"/>
-  <line stroke="#000000" x1="81.00000000000001" x2="45.0" y1="166.02325300000015" y2="166.02325300000018"/>
-  <line stroke="#000000" x1="45.0" x2="0.0" y1="166.02325300000018" y2="166.02325300000024"/>
-  <line stroke="#000000" x1="0.0" x2="45.0" y1="190.0232530000002" y2="190.0232530000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="166.02325300000024" y2="190.0232530000002"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="166.0232530000001" y2="146.0232530000001"/>
-  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="146.02325300000015" y2="166.02325300000015"/>
-  <line opacity="0.5" stroke="#0000ff" x1="115.00000000000001" x2="81.00000000000001" y1="146.0232530000001" y2="146.02325300000015"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="146.02325300000012" y2="122.02325300000008"/>
-  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="122.02325300000012" y2="146.02325300000015"/>
-  <line opacity="0.5" stroke="#0000ff" x1="115.00000000000001" x2="81.00000000000001" y1="122.02325300000008" y2="122.02325300000012"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="122.0232530000001" y2="102.02325300000008"/>
-  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="102.02325300000011" y2="122.02325300000014"/>
-  <line opacity="0.5" stroke="#0000ff" x1="81.00000000000001" x2="115.00000000000001" y1="102.02325300000011" y2="102.02325300000008"/>
-  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="92.02325300000011" y2="102.0232530000001"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="81.00000000000001" y1="92.02325300000007" y2="92.02325300000011"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="102.02325300000008" y2="92.02325300000007"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="184.99999999999997" x2="114.99999999999996" y1="86.02325300000001" y2="86.02325300000008"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="114.99999999999996" x2="114.9999999999999" y1="86.02325300000008" y2="33.508882181838494"/>
-  <line opacity="1.0" stroke="#ff0000" x1="184.99999999999997" x2="114.9999999999999" y1="86.02325300000001" y2="33.508882181838494"/>
-  <line stroke="#000000" x1="97.49520972727943" x2="114.99999999999996" y1="86.0232530000001" y2="86.02325300000008"/>
-  <line stroke="#000000" x1="97.49520972727937" x2="97.49520972727943" y1="33.50888218183852" y2="86.0232530000001"/>
-  <line stroke="#000000" x1="114.9999999999999" x2="97.49520972727937" y1="33.508882181838494" y2="33.50888218183852"/>
-  <line opacity="1.0" stroke="#0000ff" x1="185.00000000000003" x2="165.4176577976635" y1="86.02325300000004" y2="18.818105326100866"/>
-  <line stroke="#000000" x1="165.4176577976635" x2="114.9999999999999" y1="18.818105326100866" y2="33.508882181838494"/>
-  <line stroke="#000000" x1="215.83531559532705" x2="165.41765779766348" y1="4.127328470363211" y2="18.818105326100834"/>
-  <line stroke="#000000" x1="229.99999999999991" x2="215.83531559532705" y1="3.295736235031655e-07" y2="4.127328470363211"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="229.99999999999991" x2="185.0" y1="3.295736235031655e-07" y2="86.02325300000003"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="230.00000000000003" x2="185.0" y1="86.02325299999997" y2="86.02325300000003"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="275.00000000000006" x2="229.99999999999997" y1="86.02325299999988" y2="86.02325299999995"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="229.9999999999999" x2="275.00000000000006" y1="3.295736235031655e-07" y2="86.02325299999988"/>
-  <line opacity="1.0" stroke="#0000ff" x1="294.5823422023364" x2="275.00000000000006" y1="18.81810532610061" y2="86.02325299999985"/>
-  <line stroke="#000000" x1="244.16468440467273" x2="229.9999999999999" y1="4.127328470363125" y2="3.2957359508145606e-07"/>
-  <line stroke="#000000" x1="294.5823422023364" x2="244.16468440467273" y1="18.81810532610061" y2="4.127328470363125"/>
-  <line stroke="#000000" x1="344.99999999999994" x2="294.58234220233635" y1="33.50888218183812" y2="18.818105326100635"/>
-  <line opacity="1.0" stroke="#ff0000" x1="344.99999999999994" x2="275.00000000000006" y1="33.50888218183812" y2="86.02325299999987"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="345.00000000000006" x2="275.00000000000006" y1="86.02325299999974" y2="86.02325299999988"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="344.99999999999994" x2="345.00000000000006" y1="33.50888218183812" y2="86.02325299999974"/>
-  <line stroke="#000000" x1="362.50479027272047" x2="344.99999999999994" y1="33.508882181838096" y2="33.50888218183812"/>
-  <line stroke="#000000" x1="362.5047902727206" x2="362.50479027272047" y1="86.02325299999971" y2="33.508882181838096"/>
-  <line stroke="#000000" x1="345.00000000000006" x2="362.5047902727206" y1="86.02325299999974" y2="86.02325299999971"/>
-  <line stroke="#000000" x1="97.4952097272796" x2="115.00000000000013" y1="292.53762381816176" y2="292.53762381816176"/>
-  <line stroke="#000000" x1="97.49520972727954" x2="97.4952097272796" y1="240.02325300000018" y2="292.53762381816176"/>
-  <line stroke="#000000" x1="115.00000000000007" x2="97.49520972727954" y1="240.02325300000015" y2="240.02325300000018"/>
-  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="166.023253" y2="146.023253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="275.00000000000017" x2="275.00000000000017" y1="270.02325300000007" y2="86.02325300000003"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="275.00000000000017" x2="345.0000000000001" y1="270.02325300000007" y2="270.02325300000007"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="345.0000000000001" x2="345.0000000000001" y1="270.02325300000007" y2="322.53762381816165"/>
+  <line opacity="1.0" stroke="#ff0000" x1="275.00000000000017" x2="345.0000000000001" y1="270.02325300000007" y2="322.53762381816165"/>
+  <line stroke="#000000" x1="362.5047902727207" x2="345.0000000000001" y1="270.02325300000007" y2="270.02325300000007"/>
+  <line stroke="#000000" x1="362.5047902727207" x2="362.5047902727207" y1="322.53762381816165" y2="270.02325300000007"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="362.5047902727207" y1="322.53762381816165" y2="322.53762381816165"/>
+  <line opacity="1.0" stroke="#0000ff" x1="275.00000000000017" x2="294.58234220233663" y1="270.02325300000007" y2="337.2284006738992"/>
+  <line stroke="#000000" x1="294.58234220233663" x2="345.0000000000001" y1="337.2284006738992" y2="322.53762381816165"/>
+  <line stroke="#000000" x1="244.16468440467298" x2="294.58234220233663" y1="351.9191775296368" y2="337.2284006738992"/>
+  <line stroke="#000000" x1="230.00000000000014" x2="244.16468440467298" y1="356.04650567042637" y2="351.9191775296368"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="230.00000000000014" x2="275.00000000000017" y1="356.04650567042637" y2="270.02325300000007"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="230.0000000000001" x2="275.00000000000017" y1="270.0232530000001" y2="270.02325300000007"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="185.0000000000001" x2="230.0000000000001" y1="270.0232530000001" y2="270.0232530000001"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="230.00000000000014" x2="185.00000000000009" y1="356.04650567042637" y2="270.0232530000001"/>
+  <line opacity="1.0" stroke="#0000ff" x1="165.4176577976637" x2="185.00000000000009" y1="337.2284006738993" y2="270.0232530000001"/>
+  <line stroke="#000000" x1="215.83531559532727" x2="230.00000000000014" y1="351.91917752963684" y2="356.04650567042637"/>
+  <line stroke="#000000" x1="165.4176577976637" x2="215.83531559532727" y1="337.2284006738993" y2="351.91917752963684"/>
+  <line stroke="#000000" x1="115.00000000000013" x2="165.41765779766374" y1="322.53762381816176" y2="337.2284006738993"/>
+  <line opacity="1.0" stroke="#ff0000" x1="115.00000000000013" x2="185.00000000000009" y1="322.53762381816176" y2="270.0232530000001"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="115.00000000000007" x2="185.0000000000001" y1="270.0232530000002" y2="270.0232530000001"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="115.00000000000013" x2="115.00000000000007" y1="322.53762381816176" y2="270.0232530000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="185.0000000000001" x2="184.99999999999997" y1="270.0232530000001" y2="86.02325299999998"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000007" y1="190.0232530000001" y2="270.0232530000002"/>
+  <line opacity="1.0" stroke="#0000ff" x1="115.00000000000001" x2="114.99999999999996" y1="190.0232530000001" y2="166.02325300000007"/>
+  <line stroke="#000000" x1="114.9999999999999" x2="114.99999999999996" y1="86.02325300000004" y2="166.02325300000007"/>
+  <line stroke="#000000" x1="114.9999999999999" x2="114.9999999999999" y1="86.02325300000004" y2="86.02325300000004"/>
+  <line stroke="#000000" x1="115.00000000000007" x2="115.00000000000007" y1="270.0232530000002" y2="270.0232530000002"/>
+  <line stroke="#000000" x1="45.0" x2="115.00000000000001" y1="190.02325300000018" y2="190.0232530000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="115.00000000000001" x2="45.0" y1="166.02325300000007" y2="166.02325300000015"/>
+  <line stroke="#000000" x1="45.0" x2="45.0" y1="190.02325300000018" y2="190.02325300000018"/>
+  <line opacity="0.5" stroke="#ff0000" x1="45.0" x2="45.0" y1="190.02325300000018" y2="166.02325300000015"/>
+  <line stroke="#000000" x1="45.0" x2="45.0" y1="166.02325300000015" y2="166.02325300000015"/>
+  <line stroke="#000000" x1="45.0" x2="0.0" y1="166.02325300000015" y2="166.0232530000002"/>
+  <line stroke="#000000" x1="0.0" x2="45.0" y1="190.0232530000002" y2="190.02325300000018"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="166.0232530000002" y2="190.0232530000002"/>
+  <line stroke="#000000" x1="114.99999999999996" x2="114.99999999999996" y1="166.02325300000007" y2="146.0232530000001"/>
+  <line stroke="#000000" x1="44.99999999999995" x2="44.99999999999995" y1="146.02325300000015" y2="166.02325300000015"/>
+  <line opacity="0.5" stroke="#0000ff" x1="114.99999999999996" x2="44.99999999999995" y1="146.0232530000001" y2="146.02325300000015"/>
+  <line stroke="#000000" x1="114.99999999999996" x2="114.99999999999996" y1="146.0232530000001" y2="122.02325300000007"/>
+  <line stroke="#000000" x1="44.99999999999995" x2="44.99999999999995" y1="122.02325300000014" y2="146.02325300000015"/>
+  <line opacity="0.5" stroke="#0000ff" x1="114.99999999999996" x2="44.99999999999995" y1="122.02325300000007" y2="122.02325300000014"/>
+  <line stroke="#000000" x1="114.99999999999996" x2="114.99999999999996" y1="122.02325300000007" y2="102.02325300000005"/>
+  <line stroke="#000000" x1="44.99999999999995" x2="44.99999999999995" y1="102.02325300000011" y2="122.02325300000014"/>
+  <line opacity="0.5" stroke="#0000ff" x1="44.99999999999995" x2="114.99999999999996" y1="102.02325300000011" y2="102.02325300000005"/>
+  <line stroke="#000000" x1="44.99999999999989" x2="44.99999999999995" y1="92.02325300000012" y2="102.02325300000014"/>
+  <line stroke="#000000" x1="114.99999999999996" x2="44.99999999999989" y1="92.02325300000004" y2="92.02325300000012"/>
+  <line stroke="#000000" x1="114.99999999999996" x2="114.99999999999996" y1="102.02325300000005" y2="92.02325300000004"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="184.9999999999999" x2="114.9999999999999" y1="86.02325299999997" y2="86.02325300000004"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="114.9999999999999" x2="114.99999999999984" y1="86.02325300000004" y2="33.50888218183843"/>
+  <line opacity="1.0" stroke="#ff0000" x1="184.9999999999999" x2="114.99999999999984" y1="86.02325299999997" y2="33.50888218183843"/>
+  <line stroke="#000000" x1="97.49520972727937" x2="114.9999999999999" y1="86.02325300000005" y2="86.02325300000004"/>
+  <line stroke="#000000" x1="97.49520972727932" x2="97.49520972727937" y1="33.508882181838466" y2="86.02325300000005"/>
+  <line stroke="#000000" x1="114.99999999999984" x2="97.49520972727932" y1="33.50888218183843" y2="33.508882181838466"/>
+  <line opacity="1.0" stroke="#0000ff" x1="184.99999999999997" x2="165.41765779766345" y1="86.02325299999997" y2="18.81810532610078"/>
+  <line stroke="#000000" x1="165.41765779766345" x2="114.99999999999984" y1="18.81810532610078" y2="33.50888218183843"/>
+  <line stroke="#000000" x1="215.83531559532696" x2="165.41765779766342" y1="4.127328470363154" y2="18.81810532610078"/>
+  <line stroke="#000000" x1="229.99999999999986" x2="215.83531559532696" y1="3.2957356665974663e-07" y2="4.127328470363154"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="229.99999999999986" x2="184.99999999999994" y1="3.2957356665974663e-07" y2="86.02325299999997"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="229.99999999999994" x2="184.99999999999994" y1="86.02325299999991" y2="86.02325299999997"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="275.0" x2="229.99999999999994" y1="86.02325299999983" y2="86.02325299999988"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="229.99999999999983" x2="275.0" y1="3.2957356665974663e-07" y2="86.02325299999983"/>
+  <line opacity="1.0" stroke="#0000ff" x1="294.5823422023363" x2="275.0" y1="18.818105326100554" y2="86.02325299999981"/>
+  <line stroke="#000000" x1="244.16468440467267" x2="229.99999999999983" y1="4.127328470363068" y2="3.2957353823803714e-07"/>
+  <line stroke="#000000" x1="294.5823422023363" x2="244.16468440467267" y1="18.818105326100554" y2="4.127328470363068"/>
+  <line stroke="#000000" x1="344.99999999999994" x2="294.5823422023363" y1="33.50888218183806" y2="18.81810532610058"/>
+  <line opacity="1.0" stroke="#ff0000" x1="344.99999999999994" x2="275.0" y1="33.50888218183806" y2="86.02325299999983"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="345.0" x2="274.99999999999994" y1="86.02325299999968" y2="86.02325299999983"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="344.9999999999999" x2="345.0" y1="33.50888218183806" y2="86.02325299999968"/>
+  <line stroke="#000000" x1="362.5047902727204" x2="344.99999999999994" y1="33.50888218183804" y2="33.50888218183806"/>
+  <line stroke="#000000" x1="362.5047902727205" x2="362.5047902727204" y1="86.02325299999966" y2="33.50888218183804"/>
+  <line stroke="#000000" x1="345.0" x2="362.5047902727205" y1="86.02325299999968" y2="86.02325299999966"/>
+  <line stroke="#000000" x1="97.4952097272796" x2="115.00000000000013" y1="322.53762381816176" y2="322.53762381816176"/>
+  <line stroke="#000000" x1="97.49520972727954" x2="97.4952097272796" y1="270.0232530000002" y2="322.53762381816176"/>
+  <line stroke="#000000" x1="115.00000000000007" x2="97.49520972727954" y1="270.0232530000002" y2="270.0232530000002"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="415.00000000000017" y1="166.023253" y2="146.023253"/>
   <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="146.023253" y2="166.023253"/>
-  <line opacity="0.5" stroke="#0000ff" x1="379.00000000000017" x2="345.0000000000001" y1="146.023253" y2="146.023253"/>
-  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="146.023253" y2="122.02325300000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="415.00000000000017" x2="345.0000000000001" y1="146.023253" y2="146.023253"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="415.00000000000017" y1="146.023253" y2="122.02325300000003"/>
   <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="122.02325300000003" y2="146.023253"/>
-  <line opacity="0.5" stroke="#0000ff" x1="379.00000000000017" x2="345.0000000000001" y1="122.02325300000003" y2="122.02325300000003"/>
-  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="122.02325300000003" y2="102.02325300000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="415.00000000000017" x2="345.0000000000001" y1="122.02325300000003" y2="122.02325300000003"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="415.00000000000017" y1="122.02325300000003" y2="102.02325300000003"/>
   <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="102.02325300000003" y2="122.02325300000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="345.0000000000001" x2="379.00000000000017" y1="102.02325300000003" y2="102.02325300000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="345.0000000000001" x2="415.00000000000017" y1="102.02325300000003" y2="102.02325300000003"/>
   <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="92.02325300000001" y2="102.02325300000003"/>
-  <line stroke="#000000" x1="379.00000000000017" x2="345.0000000000001" y1="92.02325300000001" y2="92.02325300000001"/>
-  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="102.02325300000003" y2="92.02325300000001"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="345.0000000000001" y1="92.02325300000001" y2="92.02325300000001"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="415.00000000000017" y1="102.02325300000003" y2="92.02325300000001"/>
   <line stroke="#888888" x1="463.7500000000001" x2="463.7500000000001" y1="182.023253" y2="184.523253"/>
   <line stroke="#888888" x1="463.7500000000001" x2="461.25000000000017" y1="184.523253" y2="182.023253"/>
   <line stroke="#888888" x1="461.25000000000017" x2="461.25000000000017" y1="182.023253" y2="174.02325300000004"/>
   <line stroke="#888888" x1="461.25000000000017" x2="463.7500000000001" y1="174.02325300000004" y2="171.52325300000004"/>
   <line stroke="#888888" x1="463.7500000000001" x2="463.7500000000001" y1="171.52325300000004" y2="174.02325300000004"/>
-  <line stroke="#888888" x1="356.0833333333335" x2="367.9166666666668" y1="182.273253" y2="182.273253"/>
-  <line stroke="#888888" x1="367.9166666666668" x2="367.9166666666668" y1="182.273253" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="367.9166666666668" x2="356.0833333333335" y1="182.77325300000004" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="356.0833333333335" x2="356.0833333333335" y1="182.77325300000004" y2="182.273253"/>
-  <line stroke="#888888" x1="358.1285927045405" x2="349.3761975681803" y1="275.03283354544106" y2="275.03283354544106"/>
-  <line stroke="#888888" x1="349.3761975681803" x2="349.3761975681803" y1="275.03283354544106" y2="257.52804327272054"/>
-  <line stroke="#888888" x1="349.3761975681803" x2="358.1285927045405" y1="257.52804327272054" y2="257.52804327272054"/>
-  <line stroke="#888888" x1="256.9879208023066" x2="274.2738435039604" y1="304.247756013529" y2="299.210956522076"/>
-  <line stroke="#888888" x1="274.2738435039604" x2="274.41371737683426" y1="299.210956522076" y2="299.69099329117523"/>
-  <line stroke="#888888" x1="274.41371737683426" x2="257.1277946751804" y1="299.69099329117523" y2="304.7277927826283"/>
-  <line stroke="#888888" x1="257.1277946751804" x2="256.9879208023066" y1="304.7277927826283" y2="304.247756013529"/>
-  <line stroke="#888888" x1="185.72615649603986" x2="203.0120791976937" y1="299.210956522076" y2="304.247756013529"/>
-  <line stroke="#888888" x1="203.0120791976937" x2="202.87220532481987" y1="304.247756013529" y2="304.72779278262834"/>
-  <line stroke="#888888" x1="202.87220532481987" x2="185.58628262316603" y1="304.72779278262834" y2="299.69099329117523"/>
-  <line stroke="#888888" x1="185.58628262316603" x2="185.72615649603986" y1="299.69099329117523" y2="299.210956522076"/>
-  <line stroke="#888888" x1="92.08333333333333" x2="103.9166666666667" y1="182.27325300000015" y2="182.27325300000015"/>
-  <line stroke="#888888" x1="103.9166666666667" x2="103.9166666666667" y1="182.27325300000015" y2="182.77325300000015"/>
-  <line stroke="#888888" x1="103.9166666666667" x2="92.08333333333333" y1="182.77325300000015" y2="182.77325300000015"/>
-  <line stroke="#888888" x1="92.08333333333333" x2="92.08333333333333" y1="182.77325300000015" y2="182.27325300000015"/>
-  <line stroke="#888888" x1="4.000000000000001" x2="4.000000000000001" y1="173.77325300000024" y2="182.27325300000024"/>
-  <line stroke="#888888" x1="4.000000000000001" x2="3.5000000000000004" y1="182.27325300000024" y2="182.27325300000024"/>
-  <line stroke="#888888" x1="3.5000000000000004" x2="3.5000000000000004" y1="182.27325300000024" y2="173.77325300000024"/>
-  <line stroke="#888888" x1="3.5000000000000004" x2="4.000000000000001" y1="173.77325300000024" y2="173.77325300000024"/>
-  <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="147.02325300000012" y2="151.02325300000012"/>
-  <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="151.02325300000012" y2="151.02325300000015"/>
-  <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="151.02325300000015" y2="147.02325300000012"/>
-  <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="147.02325300000012" y2="147.02325300000012"/>
-  <line stroke="#888888" x1="102.50000000000001" x2="102.50000000000001" y1="159.0232530000001" y2="163.02325300000012"/>
-  <line stroke="#888888" x1="102.50000000000001" x2="93.50000000000001" y1="163.02325300000012" y2="163.02325300000012"/>
-  <line stroke="#888888" x1="93.50000000000001" x2="93.50000000000001" y1="163.02325300000012" y2="159.0232530000001"/>
-  <line stroke="#888888" x1="93.50000000000001" x2="102.50000000000001" y1="159.0232530000001" y2="159.0232530000001"/>
-  <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="122.52325300000011" y2="145.5232530000001"/>
-  <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="145.5232530000001" y2="145.52325300000012"/>
-  <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="145.52325300000012" y2="122.52325300000011"/>
-  <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="122.52325300000011" y2="122.52325300000011"/>
-  <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="117.02325300000011" y2="121.02325300000011"/>
-  <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="121.02325300000011" y2="121.02325300000011"/>
-  <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="121.02325300000011" y2="117.02325300000011"/>
-  <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="117.02325300000011" y2="117.02325300000011"/>
-  <line stroke="#888888" x1="103.6666666666667" x2="103.6666666666667" y1="94.5232530000001" y2="99.5232530000001"/>
-  <line stroke="#888888" x1="103.6666666666667" x2="92.33333333333331" y1="99.5232530000001" y2="99.52325300000011"/>
-  <line stroke="#888888" x1="92.33333333333331" x2="92.33333333333331" y1="99.52325300000011" y2="94.52325300000011"/>
-  <line stroke="#888888" x1="101.87140729545952" x2="110.62380243181975" y1="51.01367245455902" y2="51.01367245455902"/>
-  <line stroke="#888888" x1="110.62380243181975" x2="110.6238024318198" y1="51.01367245455902" y2="68.51846272727956"/>
-  <line stroke="#888888" x1="110.6238024318198" x2="101.87140729545958" y1="68.51846272727956" y2="68.51846272727956"/>
-  <line stroke="#888888" x1="203.01207919769348" x2="185.7261564960397" y1="21.798749986471023" y2="26.83554947792408"/>
-  <line stroke="#888888" x1="185.7261564960397" x2="185.58628262316586" y1="26.83554947792408" y2="26.355512708824794"/>
-  <line stroke="#888888" x1="185.58628262316586" x2="202.87220532481965" y1="26.355512708824794" y2="21.318713217371737"/>
-  <line stroke="#888888" x1="202.87220532481965" x2="203.01207919769348" y1="21.318713217371737" y2="21.798749986471023"/>
-  <line stroke="#888888" x1="274.27384350396017" x2="256.9879208023064" y1="26.83554947792391" y2="21.79874998647091"/>
-  <line stroke="#888888" x1="256.9879208023064" x2="257.1277946751802" y1="21.79874998647091" y2="21.318713217371627"/>
-  <line stroke="#888888" x1="257.1277946751802" x2="274.413717376834" y1="21.318713217371627" y2="26.355512708824623"/>
-  <line stroke="#888888" x1="274.413717376834" x2="274.27384350396017" y1="26.355512708824623" y2="26.83554947792391"/>
-  <line stroke="#888888" x1="358.1285927045404" x2="349.37619756818015" y1="68.51846272727916" y2="68.51846272727917"/>
-  <line stroke="#888888" x1="349.37619756818015" x2="349.37619756818015" y1="68.51846272727917" y2="51.013672454558645"/>
-  <line stroke="#888888" x1="349.37619756818015" x2="358.1285927045404" y1="51.013672454558645" y2="51.01367245455863"/>
-  <line stroke="#888888" x1="101.87140729545968" x2="110.62380243181993" y1="257.52804327272065" y2="257.52804327272065"/>
-  <line stroke="#888888" x1="110.62380243181993" x2="110.62380243181998" y1="257.52804327272065" y2="275.0328335454412"/>
-  <line stroke="#888888" x1="110.62380243181998" x2="101.87140729545975" y1="275.0328335454412" y2="275.03283354544124"/>
-  <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="147.02325300000004" y2="151.02325300000004"/>
-  <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="151.02325300000004" y2="151.02325300000004"/>
-  <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="151.02325300000004" y2="147.02325300000004"/>
-  <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="147.02325300000004" y2="147.02325300000004"/>
-  <line stroke="#888888" x1="366.50000000000017" x2="366.50000000000017" y1="159.023253" y2="163.02325300000004"/>
-  <line stroke="#888888" x1="366.50000000000017" x2="357.50000000000017" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#888888" x1="357.50000000000017" x2="357.50000000000017" y1="163.02325300000004" y2="159.023253"/>
-  <line stroke="#888888" x1="357.50000000000017" x2="366.50000000000017" y1="159.023253" y2="159.023253"/>
-  <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="122.52325300000003" y2="145.523253"/>
-  <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="145.523253" y2="145.523253"/>
-  <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="145.523253" y2="122.52325300000003"/>
-  <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="122.52325300000003" y2="122.52325300000003"/>
-  <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="117.02325300000003" y2="121.02325300000003"/>
-  <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="121.02325300000003" y2="121.02325300000003"/>
-  <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="121.02325300000003" y2="117.02325300000003"/>
-  <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="117.02325300000003" y2="117.02325300000003"/>
-  <line stroke="#888888" x1="367.6666666666668" x2="367.6666666666668" y1="94.52325300000001" y2="99.52325300000003"/>
-  <line stroke="#888888" x1="367.6666666666668" x2="356.3333333333335" y1="99.52325300000003" y2="99.52325300000003"/>
-  <line stroke="#888888" x1="356.3333333333335" x2="356.3333333333335" y1="99.52325300000003" y2="94.52325300000001"/>
+  <line stroke="#888888" x1="389.29545454545473" x2="402.5227272727274" y1="182.273253" y2="182.273253"/>
+  <line stroke="#888888" x1="402.5227272727274" x2="402.5227272727274" y1="182.273253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="402.5227272727274" x2="389.29545454545473" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="389.29545454545473" x2="389.29545454545473" y1="182.77325300000004" y2="182.273253"/>
+  <line stroke="#888888" x1="357.47727272727286" x2="370.70454545454555" y1="182.273253" y2="182.273253"/>
+  <line stroke="#888888" x1="370.70454545454555" x2="370.70454545454555" y1="182.273253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="370.70454545454555" x2="357.47727272727286" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="357.47727272727286" x2="357.47727272727286" y1="182.77325300000004" y2="182.273253"/>
+  <line stroke="#888888" x1="358.1285927045405" x2="349.3761975681803" y1="305.0328335454411" y2="305.0328335454411"/>
+  <line stroke="#888888" x1="349.3761975681803" x2="349.3761975681803" y1="305.0328335454411" y2="287.5280432727206"/>
+  <line stroke="#888888" x1="349.3761975681803" x2="358.1285927045405" y1="287.5280432727206" y2="287.5280432727206"/>
+  <line stroke="#888888" x1="256.9879208023066" x2="274.2738435039604" y1="334.247756013529" y2="329.2109565220759"/>
+  <line stroke="#888888" x1="274.2738435039604" x2="274.4137173768342" y1="329.2109565220759" y2="329.6909932911753"/>
+  <line stroke="#888888" x1="274.4137173768342" x2="257.1277946751804" y1="329.6909932911753" y2="334.7277927826282"/>
+  <line stroke="#888888" x1="257.1277946751804" x2="256.9879208023066" y1="334.7277927826282" y2="334.247756013529"/>
+  <line stroke="#888888" x1="185.72615649603986" x2="203.0120791976937" y1="329.21095652207595" y2="334.247756013529"/>
+  <line stroke="#888888" x1="203.0120791976937" x2="202.87220532481987" y1="334.247756013529" y2="334.7277927826283"/>
+  <line stroke="#888888" x1="202.87220532481987" x2="185.58628262316603" y1="334.7277927826283" y2="329.6909932911753"/>
+  <line stroke="#888888" x1="185.58628262316603" x2="185.72615649603986" y1="329.6909932911753" y2="329.21095652207595"/>
+  <line stroke="#888888" x1="89.29545454545456" x2="102.52272727272727" y1="182.27325300000012" y2="182.27325300000012"/>
+  <line stroke="#888888" x1="102.52272727272727" x2="102.52272727272727" y1="182.27325300000012" y2="182.77325300000012"/>
+  <line stroke="#888888" x1="102.52272727272727" x2="89.29545454545456" y1="182.77325300000012" y2="182.77325300000012"/>
+  <line stroke="#888888" x1="89.29545454545456" x2="89.29545454545456" y1="182.77325300000012" y2="182.27325300000012"/>
+  <line stroke="#888888" x1="57.477272727272755" x2="70.70454545454545" y1="182.27325300000015" y2="182.27325300000015"/>
+  <line stroke="#888888" x1="70.70454545454545" x2="70.70454545454545" y1="182.27325300000015" y2="182.77325300000015"/>
+  <line stroke="#888888" x1="70.70454545454545" x2="57.477272727272755" y1="182.77325300000015" y2="182.77325300000015"/>
+  <line stroke="#888888" x1="57.477272727272755" x2="57.477272727272755" y1="182.77325300000015" y2="182.27325300000015"/>
+  <line stroke="#888888" x1="4.000000000000001" x2="4.000000000000001" y1="173.7732530000002" y2="182.2732530000002"/>
+  <line stroke="#888888" x1="4.000000000000001" x2="3.5000000000000004" y1="182.2732530000002" y2="182.2732530000002"/>
+  <line stroke="#888888" x1="3.5000000000000004" x2="3.5000000000000004" y1="182.2732530000002" y2="173.7732530000002"/>
+  <line stroke="#888888" x1="3.5000000000000004" x2="4.000000000000001" y1="173.7732530000002" y2="173.7732530000002"/>
+  <line stroke="#888888" x1="85.99999999999996" x2="85.99999999999996" y1="147.02325300000012" y2="151.02325300000012"/>
+  <line stroke="#888888" x1="85.99999999999996" x2="73.99999999999994" y1="151.02325300000012" y2="151.02325300000012"/>
+  <line stroke="#888888" x1="73.99999999999994" x2="73.99999999999994" y1="151.02325300000012" y2="147.02325300000012"/>
+  <line stroke="#888888" x1="73.99999999999994" x2="85.99999999999996" y1="147.02325300000012" y2="147.02325300000012"/>
+  <line stroke="#888888" x1="84.49999999999994" x2="84.49999999999994" y1="159.0232530000001" y2="163.02325300000012"/>
+  <line stroke="#888888" x1="84.49999999999994" x2="75.49999999999994" y1="163.02325300000012" y2="163.02325300000012"/>
+  <line stroke="#888888" x1="75.49999999999994" x2="75.49999999999994" y1="163.02325300000012" y2="159.0232530000001"/>
+  <line stroke="#888888" x1="75.49999999999994" x2="84.49999999999994" y1="159.0232530000001" y2="159.0232530000001"/>
+  <line stroke="#888888" x1="85.99999999999996" x2="85.99999999999996" y1="122.52325300000011" y2="145.5232530000001"/>
+  <line stroke="#888888" x1="85.99999999999996" x2="73.99999999999994" y1="145.5232530000001" y2="145.5232530000001"/>
+  <line stroke="#888888" x1="73.99999999999994" x2="73.99999999999994" y1="145.5232530000001" y2="122.52325300000011"/>
+  <line stroke="#888888" x1="73.99999999999994" x2="85.99999999999996" y1="122.52325300000011" y2="122.52325300000011"/>
+  <line stroke="#888888" x1="85.99999999999996" x2="85.99999999999996" y1="117.02325300000008" y2="121.0232530000001"/>
+  <line stroke="#888888" x1="85.99999999999996" x2="73.99999999999994" y1="121.0232530000001" y2="121.02325300000011"/>
+  <line stroke="#888888" x1="73.99999999999994" x2="73.99999999999994" y1="121.02325300000011" y2="117.02325300000011"/>
+  <line stroke="#888888" x1="73.99999999999994" x2="85.99999999999996" y1="117.02325300000011" y2="117.02325300000008"/>
+  <line stroke="#888888" x1="102.27272727272721" x2="107.27272727272721" y1="94.52325300000007" y2="94.52325300000007"/>
+  <line stroke="#888888" x1="107.27272727272721" x2="102.27272727272721" y1="94.52325300000007" y2="99.52325300000007"/>
+  <line stroke="#888888" x1="102.27272727272721" x2="89.5454545454545" y1="99.52325300000007" y2="99.52325300000008"/>
+  <line stroke="#888888" x1="89.5454545454545" x2="84.54545454545452" y1="99.52325300000008" y2="94.52325300000008"/>
+  <line stroke="#888888" x1="84.54545454545452" x2="89.5454545454545" y1="94.52325300000008" y2="94.52325300000008"/>
+  <line stroke="#888888" x1="70.45454545454538" x2="75.4545454545454" y1="94.5232530000001" y2="94.5232530000001"/>
+  <line stroke="#888888" x1="75.4545454545454" x2="70.45454545454538" y1="94.5232530000001" y2="99.5232530000001"/>
+  <line stroke="#888888" x1="70.45454545454538" x2="57.72727272727264" y1="99.5232530000001" y2="99.52325300000011"/>
+  <line stroke="#888888" x1="57.72727272727264" x2="52.72727272727264" y1="99.52325300000011" y2="94.52325300000011"/>
+  <line stroke="#888888" x1="52.72727272727264" x2="57.72727272727264" y1="94.52325300000011" y2="94.52325300000011"/>
+  <line stroke="#888888" x1="101.87140729545946" x2="110.6238024318197" y1="51.013672454558964" y2="51.013672454558964"/>
+  <line stroke="#888888" x1="110.6238024318197" x2="110.62380243181975" y1="51.013672454558964" y2="68.5184627272795"/>
+  <line stroke="#888888" x1="110.62380243181975" x2="101.87140729545952" y1="68.5184627272795" y2="68.5184627272795"/>
+  <line stroke="#888888" x1="203.01207919769342" x2="185.72615649603964" y1="21.798749986470966" y2="26.835549477924022"/>
+  <line stroke="#888888" x1="185.72615649603964" x2="185.5862826231658" y1="26.835549477924022" y2="26.355512708824737"/>
+  <line stroke="#888888" x1="185.5862826231658" x2="202.8722053248196" y1="26.355512708824737" y2="21.318713217371684"/>
+  <line stroke="#888888" x1="202.8722053248196" x2="203.01207919769342" y1="21.318713217371684" y2="21.798749986470966"/>
+  <line stroke="#888888" x1="274.27384350396005" x2="256.9879208023063" y1="26.835549477923852" y2="21.798749986470856"/>
+  <line stroke="#888888" x1="256.9879208023063" x2="257.12779467518016" y1="21.798749986470856" y2="21.31871321737157"/>
+  <line stroke="#888888" x1="257.12779467518016" x2="274.4137173768339" y1="21.31871321737157" y2="26.355512708824563"/>
+  <line stroke="#888888" x1="274.4137173768339" x2="274.27384350396005" y1="26.355512708824563" y2="26.835549477923852"/>
+  <line stroke="#888888" x1="358.1285927045404" x2="349.3761975681801" y1="68.5184627272791" y2="68.51846272727911"/>
+  <line stroke="#888888" x1="349.3761975681801" x2="349.3761975681801" y1="68.51846272727911" y2="51.013672454558595"/>
+  <line stroke="#888888" x1="349.3761975681801" x2="358.1285927045403" y1="51.013672454558595" y2="51.01367245455858"/>
+  <line stroke="#888888" x1="101.87140729545968" x2="110.62380243181993" y1="287.5280432727207" y2="287.5280432727207"/>
+  <line stroke="#888888" x1="110.62380243181993" x2="110.62380243181998" y1="287.5280432727207" y2="305.03283354544124"/>
+  <line stroke="#888888" x1="110.62380243181998" x2="101.87140729545975" y1="305.03283354544124" y2="305.03283354544124"/>
+  <line stroke="#888888" x1="386.0000000000001" x2="386.0000000000001" y1="147.02325300000004" y2="151.02325300000004"/>
+  <line stroke="#888888" x1="386.0000000000001" x2="374.00000000000017" y1="151.02325300000004" y2="151.02325300000004"/>
+  <line stroke="#888888" x1="374.00000000000017" x2="374.00000000000017" y1="151.02325300000004" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="374.00000000000017" x2="386.0000000000001" y1="147.02325300000004" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="384.50000000000017" x2="384.50000000000017" y1="159.023253" y2="163.02325300000004"/>
+  <line stroke="#888888" x1="384.50000000000017" x2="375.50000000000017" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#888888" x1="375.50000000000017" x2="375.50000000000017" y1="163.02325300000004" y2="159.023253"/>
+  <line stroke="#888888" x1="375.50000000000017" x2="384.50000000000017" y1="159.023253" y2="159.023253"/>
+  <line stroke="#888888" x1="386.0000000000001" x2="386.0000000000001" y1="122.52325300000003" y2="145.523253"/>
+  <line stroke="#888888" x1="386.0000000000001" x2="374.00000000000017" y1="145.523253" y2="145.523253"/>
+  <line stroke="#888888" x1="374.00000000000017" x2="374.00000000000017" y1="145.523253" y2="122.52325300000003"/>
+  <line stroke="#888888" x1="374.00000000000017" x2="386.0000000000001" y1="122.52325300000003" y2="122.52325300000003"/>
+  <line stroke="#888888" x1="386.0000000000001" x2="386.0000000000001" y1="117.02325300000003" y2="121.02325300000003"/>
+  <line stroke="#888888" x1="386.0000000000001" x2="374.00000000000017" y1="121.02325300000003" y2="121.02325300000003"/>
+  <line stroke="#888888" x1="374.00000000000017" x2="374.00000000000017" y1="121.02325300000003" y2="117.02325300000003"/>
+  <line stroke="#888888" x1="374.00000000000017" x2="386.0000000000001" y1="117.02325300000003" y2="117.02325300000003"/>
+  <line stroke="#888888" x1="402.2727272727274" x2="407.2727272727274" y1="94.52325300000001" y2="94.52325300000001"/>
+  <line stroke="#888888" x1="407.2727272727274" x2="402.2727272727274" y1="94.52325300000001" y2="99.52325300000003"/>
+  <line stroke="#888888" x1="402.2727272727274" x2="389.54545454545473" y1="99.52325300000003" y2="99.52325300000003"/>
+  <line stroke="#888888" x1="389.54545454545473" x2="384.54545454545473" y1="99.52325300000003" y2="94.52325300000001"/>
+  <line stroke="#888888" x1="384.54545454545473" x2="389.54545454545473" y1="94.52325300000001" y2="94.52325300000001"/>
+  <line stroke="#888888" x1="370.4545454545456" x2="375.45454545454555" y1="94.52325300000001" y2="94.52325300000001"/>
+  <line stroke="#888888" x1="375.45454545454555" x2="370.4545454545456" y1="94.52325300000001" y2="99.52325300000003"/>
+  <line stroke="#888888" x1="370.4545454545456" x2="357.72727272727286" y1="99.52325300000003" y2="99.52325300000003"/>
+  <line stroke="#888888" x1="357.72727272727286" x2="352.7272727272729" y1="99.52325300000003" y2="94.52325300000001"/>
+  <line stroke="#888888" x1="352.7272727272729" x2="357.72727272727286" y1="94.52325300000001" y2="94.52325300000001"/>
 </svg>
diff --git a/rocolib/output/BoatWithServoMount/graph-autofold-default.dxf b/rocolib/output/BoatWithServoMount/graph-autofold-default.dxf
index 3cc215ca5f87f7d8a5501a0dd0abde90a1eb50d7..46088b0c06334d40c1b5cb85e02fdfaf52447449 100644
--- a/rocolib/output/BoatWithServoMount/graph-autofold-default.dxf
+++ b/rocolib/output/BoatWithServoMount/graph-autofold-default.dxf
@@ -1039,7 +1039,7 @@ cut
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 166.023253
  31
@@ -1071,7 +1071,7 @@ LINE
   8
 cut
  10
-379.00000000000017
+415.00000000000017
  20
 190.02325300000004
  30
@@ -1185,7 +1185,7 @@ cut
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 190.02325300000004
  31
@@ -1219,7 +1219,7 @@ DOTTED
   8
 90
  10
-379.00000000000017
+415.00000000000017
  20
 166.023253
  30
@@ -1257,7 +1257,7 @@ cut
  10
 345.0000000000001
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
@@ -1275,13 +1275,13 @@ cut
  10
 345.0000000000001
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1313,7 +1313,7 @@ DOTTED
  10
 275.00000000000017
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
@@ -1333,13 +1333,13 @@ DOTTED
  10
 275.00000000000017
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1353,13 +1353,13 @@ DOTTED
  10
 345.0000000000001
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-292.53762381816165
+322.53762381816165
  31
 0.0
   0
@@ -1373,13 +1373,13 @@ DOTTED
  10
 275.00000000000017
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-292.53762381816165
+322.53762381816165
  31
 0.0
   0
@@ -1391,13 +1391,13 @@ cut
  10
 362.5047902727207
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1409,13 +1409,13 @@ cut
  10
 362.5047902727207
  20
-292.53762381816165
+322.53762381816165
  30
 0.0
  11
 362.5047902727207
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1427,13 +1427,13 @@ cut
  10
 345.0000000000001
  20
-292.53762381816165
+322.53762381816165
  30
 0.0
  11
 362.5047902727207
  21
-292.53762381816165
+322.53762381816165
  31
 0.0
   0
@@ -1447,13 +1447,13 @@ DOTTED
  10
 275.00000000000017
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 294.58234220233663
  21
-307.22840067389916
+337.2284006738992
  31
 0.0
   0
@@ -1465,13 +1465,13 @@ cut
  10
 294.58234220233663
  20
-307.22840067389916
+337.2284006738992
  30
 0.0
  11
 345.0000000000001
  21
-292.53762381816165
+322.53762381816165
  31
 0.0
   0
@@ -1483,13 +1483,13 @@ cut
  10
 244.16468440467298
  20
-321.9191775296368
+351.9191775296368
  30
 0.0
  11
 294.58234220233663
  21
-307.22840067389916
+337.2284006738992
  31
 0.0
   0
@@ -1501,13 +1501,13 @@ cut
  10
 230.00000000000014
  20
-326.0465056704263
+356.04650567042637
  30
 0.0
  11
 244.16468440467298
  21
-321.9191775296368
+351.9191775296368
  31
 0.0
   0
@@ -1521,13 +1521,13 @@ DOTTED
  10
 230.00000000000014
  20
-326.0465056704263
+356.04650567042637
  30
 0.0
  11
 275.00000000000017
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1541,13 +1541,13 @@ DOTTED
  10
 230.0000000000001
  20
-240.02325300000007
+270.0232530000001
  30
 0.0
  11
 275.00000000000017
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1561,13 +1561,13 @@ DOTTED
  10
 185.0000000000001
  20
-240.0232530000001
+270.0232530000001
  30
 0.0
  11
 230.0000000000001
  21
-240.02325300000007
+270.0232530000001
  31
 0.0
   0
@@ -1581,13 +1581,13 @@ DOTTED
  10
 230.00000000000014
  20
-326.0465056704263
+356.04650567042637
  30
 0.0
  11
 185.00000000000009
  21
-240.0232530000001
+270.0232530000001
  31
 0.0
   0
@@ -1601,13 +1601,13 @@ DOTTED
  10
 165.4176577976637
  20
-307.22840067389933
+337.2284006738993
  30
 0.0
  11
 185.00000000000009
  21
-240.02325300000007
+270.0232530000001
  31
 0.0
   0
@@ -1619,13 +1619,13 @@ cut
  10
 215.83531559532727
  20
-321.91917752963684
+351.91917752963684
  30
 0.0
  11
 230.00000000000014
  21
-326.0465056704263
+356.04650567042637
  31
 0.0
   0
@@ -1637,13 +1637,13 @@ cut
  10
 165.4176577976637
  20
-307.22840067389933
+337.2284006738993
  30
 0.0
  11
 215.83531559532727
  21
-321.91917752963684
+351.91917752963684
  31
 0.0
   0
@@ -1655,13 +1655,13 @@ cut
  10
 115.00000000000013
  20
-292.53762381816176
+322.53762381816176
  30
 0.0
  11
 165.41765779766374
  21
-307.22840067389933
+337.2284006738993
  31
 0.0
   0
@@ -1675,13 +1675,13 @@ DOTTED
  10
 115.00000000000013
  20
-292.53762381816176
+322.53762381816176
  30
 0.0
  11
 185.00000000000009
  21
-240.0232530000001
+270.0232530000001
  31
 0.0
   0
@@ -1695,13 +1695,13 @@ DOTTED
  10
 115.00000000000007
  20
-240.02325300000015
+270.0232530000002
  30
 0.0
  11
 185.0000000000001
  21
-240.02325300000007
+270.0232530000001
  31
 0.0
   0
@@ -1715,13 +1715,13 @@ DOTTED
  10
 115.00000000000013
  20
-292.53762381816176
+322.53762381816176
  30
 0.0
  11
 115.00000000000007
  21
-240.02325300000015
+270.0232530000002
  31
 0.0
   0
@@ -1733,15 +1733,15 @@ DOTTED
   8
 90
  10
-185.00000000000009
+185.0000000000001
  20
-240.0232530000001
+270.0232530000001
  30
 0.0
  11
 184.99999999999997
  21
-86.023253
+86.02325299999998
  31
 0.0
   0
@@ -1753,13 +1753,13 @@ cut
  10
 115.00000000000001
  20
-190.02325300000012
+190.0232530000001
  30
 0.0
  11
 115.00000000000007
  21
-240.02325300000015
+270.0232530000002
  31
 0.0
   0
@@ -1773,13 +1773,13 @@ DOTTED
  10
 115.00000000000001
  20
-190.02325300000012
+190.0232530000001
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-166.0232530000001
+166.02325300000007
  31
 0.0
   0
@@ -1789,15 +1789,15 @@ LINE
   8
 cut
  10
-114.99999999999996
+114.9999999999999
  20
-86.02325300000008
+86.02325300000004
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-166.0232530000001
+166.02325300000007
  31
 0.0
   0
@@ -1807,15 +1807,15 @@ LINE
   8
 cut
  10
-114.99999999999996
+114.9999999999999
  20
-86.02325300000008
+86.02325300000004
  30
 0.0
  11
-114.99999999999996
+114.9999999999999
  21
-86.02325300000008
+86.02325300000004
  31
 0.0
   0
@@ -1827,13 +1827,13 @@ cut
  10
 115.00000000000007
  20
-240.02325300000015
+270.0232530000002
  30
 0.0
  11
 115.00000000000007
  21
-240.02325300000015
+270.0232530000002
  31
 0.0
   0
@@ -1843,15 +1843,15 @@ LINE
   8
 cut
  10
-81.00000000000001
+45.0
  20
-190.02325300000015
+190.02325300000018
  30
 0.0
  11
 115.00000000000001
  21
-190.02325300000012
+190.0232530000001
  31
 0.0
   0
@@ -1865,11 +1865,11 @@ DOTTED
  10
 115.00000000000001
  20
-166.0232530000001
+166.02325300000007
  30
 0.0
  11
-81.00000000000001
+45.0
  21
 166.02325300000015
  31
@@ -1883,13 +1883,13 @@ cut
  10
 45.0
  20
-190.0232530000002
+190.02325300000018
  30
 0.0
  11
-81.00000000000001
+45.0
  21
-190.02325300000015
+190.02325300000018
  31
 0.0
   0
@@ -1903,13 +1903,13 @@ DOTTED
  10
 45.0
  20
-190.0232530000002
+190.02325300000018
  30
 0.0
  11
 45.0
  21
-166.02325300000018
+166.02325300000015
  31
 0.0
   0
@@ -1919,7 +1919,7 @@ LINE
   8
 cut
  10
-81.00000000000001
+45.0
  20
 166.02325300000015
  30
@@ -1927,7 +1927,7 @@ cut
  11
 45.0
  21
-166.02325300000018
+166.02325300000015
  31
 0.0
   0
@@ -1939,13 +1939,13 @@ cut
  10
 45.0
  20
-166.02325300000018
+166.02325300000015
  30
 0.0
  11
 0.0
  21
-166.02325300000024
+166.0232530000002
  31
 0.0
   0
@@ -1963,7 +1963,7 @@ cut
  11
 45.0
  21
-190.0232530000002
+190.02325300000018
  31
 0.0
   0
@@ -1975,7 +1975,7 @@ cut
  10
 0.0
  20
-166.02325300000024
+166.0232530000002
  30
 0.0
  11
@@ -1991,13 +1991,13 @@ LINE
   8
 cut
  10
-115.00000000000001
+114.99999999999996
  20
-166.0232530000001
+166.02325300000007
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
 146.0232530000001
  31
@@ -2009,13 +2009,13 @@ LINE
   8
 cut
  10
-81.00000000000001
+44.99999999999995
  20
 146.02325300000015
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
 166.02325300000015
  31
@@ -2029,13 +2029,13 @@ DOTTED
   8
 90
  10
-115.00000000000001
+114.99999999999996
  20
 146.0232530000001
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
 146.02325300000015
  31
@@ -2047,15 +2047,15 @@ LINE
   8
 cut
  10
-115.00000000000001
+114.99999999999996
  20
-146.02325300000012
+146.0232530000001
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-122.02325300000008
+122.02325300000007
  31
 0.0
   0
@@ -2065,13 +2065,13 @@ LINE
   8
 cut
  10
-81.00000000000001
+44.99999999999995
  20
-122.02325300000012
+122.02325300000014
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
 146.02325300000015
  31
@@ -2085,15 +2085,15 @@ DOTTED
   8
 90
  10
-115.00000000000001
+114.99999999999996
  20
-122.02325300000008
+122.02325300000007
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
-122.02325300000012
+122.02325300000014
  31
 0.0
   0
@@ -2103,15 +2103,15 @@ LINE
   8
 cut
  10
-115.00000000000001
+114.99999999999996
  20
-122.0232530000001
+122.02325300000007
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-102.02325300000008
+102.02325300000005
  31
 0.0
   0
@@ -2121,13 +2121,13 @@ LINE
   8
 cut
  10
-81.00000000000001
+44.99999999999995
  20
 102.02325300000011
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
 122.02325300000014
  31
@@ -2141,15 +2141,15 @@ DOTTED
   8
 90
  10
-81.00000000000001
+44.99999999999995
  20
 102.02325300000011
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-102.02325300000008
+102.02325300000005
  31
 0.0
   0
@@ -2159,15 +2159,15 @@ LINE
   8
 cut
  10
-81.00000000000001
+44.99999999999989
  20
-92.02325300000011
+92.02325300000012
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
-102.0232530000001
+102.02325300000014
  31
 0.0
   0
@@ -2177,15 +2177,15 @@ LINE
   8
 cut
  10
-115.00000000000001
+114.99999999999996
  20
-92.02325300000007
+92.02325300000004
  30
 0.0
  11
-81.00000000000001
+44.99999999999989
  21
-92.02325300000011
+92.02325300000012
  31
 0.0
   0
@@ -2195,15 +2195,15 @@ LINE
   8
 cut
  10
-115.00000000000001
+114.99999999999996
  20
-102.02325300000008
+102.02325300000005
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-92.02325300000007
+92.02325300000004
  31
 0.0
   0
@@ -2215,15 +2215,15 @@ DOTTED
   8
 41.987212495816664
  10
-184.99999999999997
+184.9999999999999
  20
-86.02325300000001
+86.02325299999997
  30
 0.0
  11
-114.99999999999996
+114.9999999999999
  21
-86.02325300000008
+86.02325300000004
  31
 0.0
   0
@@ -2235,15 +2235,15 @@ DOTTED
   8
 -174
  10
-114.99999999999996
+114.9999999999999
  20
-86.02325300000008
+86.02325300000004
  30
 0.0
  11
-114.9999999999999
+114.99999999999984
  21
-33.508882181838494
+33.50888218183843
  31
 0.0
   0
@@ -2255,15 +2255,15 @@ DOTTED
   8
 -180
  10
-184.99999999999997
+184.9999999999999
  20
-86.02325300000001
+86.02325299999997
  30
 0.0
  11
-114.9999999999999
+114.99999999999984
  21
-33.508882181838494
+33.50888218183843
  31
 0.0
   0
@@ -2273,15 +2273,15 @@ LINE
   8
 cut
  10
-97.49520972727943
+97.49520972727937
  20
-86.0232530000001
+86.02325300000005
  30
 0.0
  11
-114.99999999999996
+114.9999999999999
  21
-86.02325300000008
+86.02325300000004
  31
 0.0
   0
@@ -2291,15 +2291,15 @@ LINE
   8
 cut
  10
-97.49520972727937
+97.49520972727932
  20
-33.50888218183852
+33.508882181838466
  30
 0.0
  11
-97.49520972727943
+97.49520972727937
  21
-86.0232530000001
+86.02325300000005
  31
 0.0
   0
@@ -2309,15 +2309,15 @@ LINE
   8
 cut
  10
-114.9999999999999
+114.99999999999984
  20
-33.508882181838494
+33.50888218183843
  30
 0.0
  11
-97.49520972727937
+97.49520972727932
  21
-33.50888218183852
+33.508882181838466
  31
 0.0
   0
@@ -2329,15 +2329,15 @@ DOTTED
   8
 180
  10
-185.00000000000003
+184.99999999999997
  20
-86.02325300000004
+86.02325299999997
  30
 0.0
  11
-165.4176577976635
+165.41765779766345
  21
-18.818105326100866
+18.81810532610078
  31
 0.0
   0
@@ -2347,15 +2347,15 @@ LINE
   8
 cut
  10
-165.4176577976635
+165.41765779766345
  20
-18.818105326100866
+18.81810532610078
  30
 0.0
  11
-114.9999999999999
+114.99999999999984
  21
-33.508882181838494
+33.50888218183843
  31
 0.0
   0
@@ -2365,15 +2365,15 @@ LINE
   8
 cut
  10
-215.83531559532705
+215.83531559532696
  20
-4.127328470363211
+4.127328470363154
  30
 0.0
  11
-165.41765779766348
+165.41765779766342
  21
-18.818105326100834
+18.81810532610078
  31
 0.0
   0
@@ -2383,15 +2383,15 @@ LINE
   8
 cut
  10
-229.99999999999991
+229.99999999999986
  20
-3.295736235031655e-07
+3.2957356665974663e-07
  30
 0.0
  11
-215.83531559532705
+215.83531559532696
  21
-4.127328470363211
+4.127328470363154
  31
 0.0
   0
@@ -2403,15 +2403,15 @@ DOTTED
   8
 57.019129652304315
  10
-229.99999999999991
+229.99999999999986
  20
-3.295736235031655e-07
+3.2957356665974663e-07
  30
 0.0
  11
-185.0
+184.99999999999994
  21
-86.02325300000003
+86.02325299999997
  31
 0.0
   0
@@ -2423,15 +2423,15 @@ DOTTED
   8
 54.462322208025626
  10
-230.00000000000003
+229.99999999999994
  20
-86.02325299999997
+86.02325299999991
  30
 0.0
  11
-185.0
+184.99999999999994
  21
-86.02325300000003
+86.02325299999997
  31
 0.0
   0
@@ -2443,15 +2443,15 @@ DOTTED
   8
 54.462322208025626
  10
-275.00000000000006
+275.0
  20
-86.02325299999988
+86.02325299999983
  30
 0.0
  11
-229.99999999999997
+229.99999999999994
  21
-86.02325299999995
+86.02325299999988
  31
 0.0
   0
@@ -2463,15 +2463,15 @@ DOTTED
   8
 57.019129652304315
  10
-229.9999999999999
+229.99999999999983
  20
-3.295736235031655e-07
+3.2957356665974663e-07
  30
 0.0
  11
-275.00000000000006
+275.0
  21
-86.02325299999988
+86.02325299999983
  31
 0.0
   0
@@ -2483,15 +2483,15 @@ DOTTED
   8
 180
  10
-294.5823422023364
+294.5823422023363
  20
-18.81810532610061
+18.818105326100554
  30
 0.0
  11
-275.00000000000006
+275.0
  21
-86.02325299999985
+86.02325299999981
  31
 0.0
   0
@@ -2501,15 +2501,15 @@ LINE
   8
 cut
  10
-244.16468440467273
+244.16468440467267
  20
-4.127328470363125
+4.127328470363068
  30
 0.0
  11
-229.9999999999999
+229.99999999999983
  21
-3.2957359508145606e-07
+3.2957353823803714e-07
  31
 0.0
   0
@@ -2519,15 +2519,15 @@ LINE
   8
 cut
  10
-294.5823422023364
+294.5823422023363
  20
-18.81810532610061
+18.818105326100554
  30
 0.0
  11
-244.16468440467273
+244.16468440467267
  21
-4.127328470363125
+4.127328470363068
  31
 0.0
   0
@@ -2539,13 +2539,13 @@ cut
  10
 344.99999999999994
  20
-33.50888218183812
+33.50888218183806
  30
 0.0
  11
-294.58234220233635
+294.5823422023363
  21
-18.818105326100635
+18.81810532610058
  31
 0.0
   0
@@ -2559,13 +2559,13 @@ DOTTED
  10
 344.99999999999994
  20
-33.50888218183812
+33.50888218183806
  30
 0.0
  11
-275.00000000000006
+275.0
  21
-86.02325299999987
+86.02325299999983
  31
 0.0
   0
@@ -2577,15 +2577,15 @@ DOTTED
   8
 41.987212495816664
  10
-345.00000000000006
+345.0
  20
-86.02325299999974
+86.02325299999968
  30
 0.0
  11
-275.00000000000006
+274.99999999999994
  21
-86.02325299999988
+86.02325299999983
  31
 0.0
   0
@@ -2597,15 +2597,15 @@ DOTTED
   8
 -174
  10
-344.99999999999994
+344.9999999999999
  20
-33.50888218183812
+33.50888218183806
  30
 0.0
  11
-345.00000000000006
+345.0
  21
-86.02325299999974
+86.02325299999968
  31
 0.0
   0
@@ -2615,15 +2615,15 @@ LINE
   8
 cut
  10
-362.50479027272047
+362.5047902727204
  20
-33.508882181838096
+33.50888218183804
  30
 0.0
  11
 344.99999999999994
  21
-33.50888218183812
+33.50888218183806
  31
 0.0
   0
@@ -2633,15 +2633,15 @@ LINE
   8
 cut
  10
-362.5047902727206
+362.5047902727205
  20
-86.02325299999971
+86.02325299999966
  30
 0.0
  11
-362.50479027272047
+362.5047902727204
  21
-33.508882181838096
+33.50888218183804
  31
 0.0
   0
@@ -2651,15 +2651,15 @@ LINE
   8
 cut
  10
-345.00000000000006
+345.0
  20
-86.02325299999974
+86.02325299999968
  30
 0.0
  11
-362.5047902727206
+362.5047902727205
  21
-86.02325299999971
+86.02325299999966
  31
 0.0
   0
@@ -2671,13 +2671,13 @@ cut
  10
 97.4952097272796
  20
-292.53762381816176
+322.53762381816176
  30
 0.0
  11
 115.00000000000013
  21
-292.53762381816176
+322.53762381816176
  31
 0.0
   0
@@ -2689,13 +2689,13 @@ cut
  10
 97.49520972727954
  20
-240.02325300000018
+270.0232530000002
  30
 0.0
  11
 97.4952097272796
  21
-292.53762381816176
+322.53762381816176
  31
 0.0
   0
@@ -2707,13 +2707,13 @@ cut
  10
 115.00000000000007
  20
-240.02325300000015
+270.0232530000002
  30
 0.0
  11
 97.49520972727954
  21
-240.02325300000018
+270.0232530000002
  31
 0.0
   0
@@ -2723,13 +2723,13 @@ LINE
   8
 cut
  10
-379.00000000000017
+415.00000000000017
  20
 166.023253
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 146.023253
  31
@@ -2761,7 +2761,7 @@ DOTTED
   8
 90
  10
-379.00000000000017
+415.00000000000017
  20
 146.023253
  30
@@ -2779,13 +2779,13 @@ LINE
   8
 cut
  10
-379.00000000000017
+415.00000000000017
  20
 146.023253
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 122.02325300000003
  31
@@ -2817,7 +2817,7 @@ DOTTED
   8
 90
  10
-379.00000000000017
+415.00000000000017
  20
 122.02325300000003
  30
@@ -2835,13 +2835,13 @@ LINE
   8
 cut
  10
-379.00000000000017
+415.00000000000017
  20
 122.02325300000003
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 102.02325300000003
  31
@@ -2879,7 +2879,7 @@ DOTTED
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 102.02325300000003
  31
@@ -2909,7 +2909,7 @@ LINE
   8
 cut
  10
-379.00000000000017
+415.00000000000017
  20
 92.02325300000001
  30
@@ -2927,13 +2927,13 @@ LINE
   8
 cut
  10
-379.00000000000017
+415.00000000000017
  20
 102.02325300000003
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 92.02325300000001
  31
@@ -3035,13 +3035,85 @@ LINE
   8
 cut
  10
-356.0833333333335
+389.29545454545473
+ 20
+182.273253
+ 30
+0.0
+ 11
+402.5227272727274
+ 21
+182.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+402.5227272727274
  20
 182.273253
  30
 0.0
  11
-367.9166666666668
+402.5227272727274
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+402.5227272727274
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+389.29545454545473
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+389.29545454545473
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+389.29545454545473
+ 21
+182.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+357.47727272727286
+ 20
+182.273253
+ 30
+0.0
+ 11
+370.70454545454555
  21
 182.273253
  31
@@ -3053,13 +3125,13 @@ LINE
   8
 cut
  10
-367.9166666666668
+370.70454545454555
  20
 182.273253
  30
 0.0
  11
-367.9166666666668
+370.70454545454555
  21
 182.77325300000004
  31
@@ -3071,13 +3143,13 @@ LINE
   8
 cut
  10
-367.9166666666668
+370.70454545454555
  20
 182.77325300000004
  30
 0.0
  11
-356.0833333333335
+357.47727272727286
  21
 182.77325300000004
  31
@@ -3089,13 +3161,13 @@ LINE
   8
 cut
  10
-356.0833333333335
+357.47727272727286
  20
 182.77325300000004
  30
 0.0
  11
-356.0833333333335
+357.47727272727286
  21
 182.273253
  31
@@ -3109,13 +3181,13 @@ cut
  10
 358.1285927045405
  20
-275.03283354544106
+305.0328335454411
  30
 0.0
  11
 349.3761975681803
  21
-275.03283354544106
+305.0328335454411
  31
 0.0
   0
@@ -3127,13 +3199,13 @@ cut
  10
 349.3761975681803
  20
-275.03283354544106
+305.0328335454411
  30
 0.0
  11
 349.3761975681803
  21
-257.52804327272054
+287.5280432727206
  31
 0.0
   0
@@ -3145,13 +3217,13 @@ cut
  10
 349.3761975681803
  20
-257.52804327272054
+287.5280432727206
  30
 0.0
  11
 358.1285927045405
  21
-257.52804327272054
+287.5280432727206
  31
 0.0
   0
@@ -3163,13 +3235,13 @@ cut
  10
 256.9879208023066
  20
-304.247756013529
+334.247756013529
  30
 0.0
  11
 274.2738435039604
  21
-299.210956522076
+329.2109565220759
  31
 0.0
   0
@@ -3181,13 +3253,13 @@ cut
  10
 274.2738435039604
  20
-299.210956522076
+329.2109565220759
  30
 0.0
  11
-274.41371737683426
+274.4137173768342
  21
-299.69099329117523
+329.6909932911753
  31
 0.0
   0
@@ -3197,15 +3269,15 @@ LINE
   8
 cut
  10
-274.41371737683426
+274.4137173768342
  20
-299.69099329117523
+329.6909932911753
  30
 0.0
  11
 257.1277946751804
  21
-304.7277927826283
+334.7277927826282
  31
 0.0
   0
@@ -3217,13 +3289,13 @@ cut
  10
 257.1277946751804
  20
-304.7277927826283
+334.7277927826282
  30
 0.0
  11
 256.9879208023066
  21
-304.247756013529
+334.247756013529
  31
 0.0
   0
@@ -3235,13 +3307,13 @@ cut
  10
 185.72615649603986
  20
-299.210956522076
+329.21095652207595
  30
 0.0
  11
 203.0120791976937
  21
-304.247756013529
+334.247756013529
  31
 0.0
   0
@@ -3253,13 +3325,13 @@ cut
  10
 203.0120791976937
  20
-304.247756013529
+334.247756013529
  30
 0.0
  11
 202.87220532481987
  21
-304.72779278262834
+334.7277927826283
  31
 0.0
   0
@@ -3271,13 +3343,13 @@ cut
  10
 202.87220532481987
  20
-304.72779278262834
+334.7277927826283
  30
 0.0
  11
 185.58628262316603
  21
-299.69099329117523
+329.6909932911753
  31
 0.0
   0
@@ -3289,13 +3361,13 @@ cut
  10
 185.58628262316603
  20
-299.69099329117523
+329.6909932911753
  30
 0.0
  11
 185.72615649603986
  21
-299.210956522076
+329.21095652207595
  31
 0.0
   0
@@ -3305,13 +3377,85 @@ LINE
   8
 cut
  10
-92.08333333333333
+89.29545454545456
+ 20
+182.27325300000012
+ 30
+0.0
+ 11
+102.52272727272727
+ 21
+182.27325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.52272727272727
+ 20
+182.27325300000012
+ 30
+0.0
+ 11
+102.52272727272727
+ 21
+182.77325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.52272727272727
+ 20
+182.77325300000012
+ 30
+0.0
+ 11
+89.29545454545456
+ 21
+182.77325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.29545454545456
+ 20
+182.77325300000012
+ 30
+0.0
+ 11
+89.29545454545456
+ 21
+182.27325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+57.477272727272755
  20
 182.27325300000015
  30
 0.0
  11
-103.9166666666667
+70.70454545454545
  21
 182.27325300000015
  31
@@ -3323,13 +3467,13 @@ LINE
   8
 cut
  10
-103.9166666666667
+70.70454545454545
  20
 182.27325300000015
  30
 0.0
  11
-103.9166666666667
+70.70454545454545
  21
 182.77325300000015
  31
@@ -3341,13 +3485,13 @@ LINE
   8
 cut
  10
-103.9166666666667
+70.70454545454545
  20
 182.77325300000015
  30
 0.0
  11
-92.08333333333333
+57.477272727272755
  21
 182.77325300000015
  31
@@ -3359,13 +3503,13 @@ LINE
   8
 cut
  10
-92.08333333333333
+57.477272727272755
  20
 182.77325300000015
  30
 0.0
  11
-92.08333333333333
+57.477272727272755
  21
 182.27325300000015
  31
@@ -3379,13 +3523,13 @@ cut
  10
 4.000000000000001
  20
-173.77325300000024
+173.7732530000002
  30
 0.0
  11
 4.000000000000001
  21
-182.27325300000024
+182.2732530000002
  31
 0.0
   0
@@ -3397,13 +3541,13 @@ cut
  10
 4.000000000000001
  20
-182.27325300000024
+182.2732530000002
  30
 0.0
  11
 3.5000000000000004
  21
-182.27325300000024
+182.2732530000002
  31
 0.0
   0
@@ -3415,13 +3559,13 @@ cut
  10
 3.5000000000000004
  20
-182.27325300000024
+182.2732530000002
  30
 0.0
  11
 3.5000000000000004
  21
-173.77325300000024
+173.7732530000002
  31
 0.0
   0
@@ -3433,13 +3577,13 @@ cut
  10
 3.5000000000000004
  20
-173.77325300000024
+173.7732530000002
  30
 0.0
  11
 4.000000000000001
  21
-173.77325300000024
+173.7732530000002
  31
 0.0
   0
@@ -3449,13 +3593,13 @@ LINE
   8
 cut
  10
-104.00000000000001
+85.99999999999996
  20
 147.02325300000012
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
 151.02325300000012
  31
@@ -3467,15 +3611,15 @@ LINE
   8
 cut
  10
-104.00000000000001
+85.99999999999996
  20
 151.02325300000012
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
-151.02325300000015
+151.02325300000012
  31
 0.0
   0
@@ -3485,13 +3629,13 @@ LINE
   8
 cut
  10
-92.00000000000001
+73.99999999999994
  20
-151.02325300000015
+151.02325300000012
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
 147.02325300000012
  31
@@ -3503,13 +3647,13 @@ LINE
   8
 cut
  10
-92.00000000000001
+73.99999999999994
  20
 147.02325300000012
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
 147.02325300000012
  31
@@ -3521,13 +3665,13 @@ LINE
   8
 cut
  10
-102.50000000000001
+84.49999999999994
  20
 159.0232530000001
  30
 0.0
  11
-102.50000000000001
+84.49999999999994
  21
 163.02325300000012
  31
@@ -3539,13 +3683,13 @@ LINE
   8
 cut
  10
-102.50000000000001
+84.49999999999994
  20
 163.02325300000012
  30
 0.0
  11
-93.50000000000001
+75.49999999999994
  21
 163.02325300000012
  31
@@ -3557,13 +3701,13 @@ LINE
   8
 cut
  10
-93.50000000000001
+75.49999999999994
  20
 163.02325300000012
  30
 0.0
  11
-93.50000000000001
+75.49999999999994
  21
 159.0232530000001
  31
@@ -3575,13 +3719,13 @@ LINE
   8
 cut
  10
-93.50000000000001
+75.49999999999994
  20
 159.0232530000001
  30
 0.0
  11
-102.50000000000001
+84.49999999999994
  21
 159.0232530000001
  31
@@ -3593,13 +3737,13 @@ LINE
   8
 cut
  10
-104.00000000000001
+85.99999999999996
  20
 122.52325300000011
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
 145.5232530000001
  31
@@ -3611,15 +3755,15 @@ LINE
   8
 cut
  10
-104.00000000000001
+85.99999999999996
  20
 145.5232530000001
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
-145.52325300000012
+145.5232530000001
  31
 0.0
   0
@@ -3629,13 +3773,13 @@ LINE
   8
 cut
  10
-92.00000000000001
+73.99999999999994
  20
-145.52325300000012
+145.5232530000001
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
 122.52325300000011
  31
@@ -3647,13 +3791,13 @@ LINE
   8
 cut
  10
-92.00000000000001
+73.99999999999994
  20
 122.52325300000011
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
 122.52325300000011
  31
@@ -3665,15 +3809,15 @@ LINE
   8
 cut
  10
-104.00000000000001
+85.99999999999996
  20
-117.02325300000011
+117.02325300000008
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
-121.02325300000011
+121.0232530000001
  31
 0.0
   0
@@ -3683,13 +3827,13 @@ LINE
   8
 cut
  10
-104.00000000000001
+85.99999999999996
  20
-121.02325300000011
+121.0232530000001
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
 121.02325300000011
  31
@@ -3701,13 +3845,13 @@ LINE
   8
 cut
  10
-92.00000000000001
+73.99999999999994
  20
 121.02325300000011
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
 117.02325300000011
  31
@@ -3719,15 +3863,15 @@ LINE
   8
 cut
  10
-92.00000000000001
+73.99999999999994
  20
 117.02325300000011
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
-117.02325300000011
+117.02325300000008
  31
 0.0
   0
@@ -3737,13 +3881,121 @@ LINE
   8
 cut
  10
-103.6666666666667
+102.27272727272721
+ 20
+94.52325300000007
+ 30
+0.0
+ 11
+107.27272727272721
+ 21
+94.52325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.27272727272721
+ 20
+94.52325300000007
+ 30
+0.0
+ 11
+102.27272727272721
+ 21
+99.52325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.27272727272721
+ 20
+99.52325300000007
+ 30
+0.0
+ 11
+89.5454545454545
+ 21
+99.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.5454545454545
+ 20
+99.52325300000008
+ 30
+0.0
+ 11
+84.54545454545452
+ 21
+94.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+84.54545454545452
+ 20
+94.52325300000008
+ 30
+0.0
+ 11
+89.5454545454545
+ 21
+94.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.45454545454538
+ 20
+94.5232530000001
+ 30
+0.0
+ 11
+75.4545454545454
+ 21
+94.5232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.4545454545454
  20
 94.5232530000001
  30
 0.0
  11
-103.6666666666667
+70.45454545454538
  21
 99.5232530000001
  31
@@ -3755,13 +4007,13 @@ LINE
   8
 cut
  10
-103.6666666666667
+70.45454545454538
  20
 99.5232530000001
  30
 0.0
  11
-92.33333333333331
+57.72727272727264
  21
 99.52325300000011
  31
@@ -3773,13 +4025,13 @@ LINE
   8
 cut
  10
-92.33333333333331
+57.72727272727264
  20
 99.52325300000011
  30
 0.0
  11
-92.33333333333331
+52.72727272727264
  21
 94.52325300000011
  31
@@ -3791,15 +4043,15 @@ LINE
   8
 cut
  10
-101.87140729545952
+52.72727272727264
  20
-51.01367245455902
+94.52325300000011
  30
 0.0
  11
-110.62380243181975
+57.72727272727264
  21
-51.01367245455902
+94.52325300000011
  31
 0.0
   0
@@ -3809,15 +4061,33 @@ LINE
   8
 cut
  10
-110.62380243181975
+101.87140729545946
+ 20
+51.013672454558964
+ 30
+0.0
+ 11
+110.6238024318197
+ 21
+51.013672454558964
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.6238024318197
  20
-51.01367245455902
+51.013672454558964
  30
 0.0
  11
-110.6238024318198
+110.62380243181975
  21
-68.51846272727956
+68.5184627272795
  31
 0.0
   0
@@ -3827,15 +4097,15 @@ LINE
   8
 cut
  10
-110.6238024318198
+110.62380243181975
  20
-68.51846272727956
+68.5184627272795
  30
 0.0
  11
-101.87140729545958
+101.87140729545952
  21
-68.51846272727956
+68.5184627272795
  31
 0.0
   0
@@ -3845,15 +4115,15 @@ LINE
   8
 cut
  10
-203.01207919769348
+203.01207919769342
  20
-21.798749986471023
+21.798749986470966
  30
 0.0
  11
-185.7261564960397
+185.72615649603964
  21
-26.83554947792408
+26.835549477924022
  31
 0.0
   0
@@ -3863,15 +4133,15 @@ LINE
   8
 cut
  10
-185.7261564960397
+185.72615649603964
  20
-26.83554947792408
+26.835549477924022
  30
 0.0
  11
-185.58628262316586
+185.5862826231658
  21
-26.355512708824794
+26.355512708824737
  31
 0.0
   0
@@ -3881,15 +4151,15 @@ LINE
   8
 cut
  10
-185.58628262316586
+185.5862826231658
  20
-26.355512708824794
+26.355512708824737
  30
 0.0
  11
-202.87220532481965
+202.8722053248196
  21
-21.318713217371737
+21.318713217371684
  31
 0.0
   0
@@ -3899,15 +4169,15 @@ LINE
   8
 cut
  10
-202.87220532481965
+202.8722053248196
  20
-21.318713217371737
+21.318713217371684
  30
 0.0
  11
-203.01207919769348
+203.01207919769342
  21
-21.798749986471023
+21.798749986470966
  31
 0.0
   0
@@ -3917,15 +4187,15 @@ LINE
   8
 cut
  10
-274.27384350396017
+274.27384350396005
  20
-26.83554947792391
+26.835549477923852
  30
 0.0
  11
-256.9879208023064
+256.9879208023063
  21
-21.79874998647091
+21.798749986470856
  31
 0.0
   0
@@ -3935,15 +4205,15 @@ LINE
   8
 cut
  10
-256.9879208023064
+256.9879208023063
  20
-21.79874998647091
+21.798749986470856
  30
 0.0
  11
-257.1277946751802
+257.12779467518016
  21
-21.318713217371627
+21.31871321737157
  31
 0.0
   0
@@ -3953,15 +4223,15 @@ LINE
   8
 cut
  10
-257.1277946751802
+257.12779467518016
  20
-21.318713217371627
+21.31871321737157
  30
 0.0
  11
-274.413717376834
+274.4137173768339
  21
-26.355512708824623
+26.355512708824563
  31
 0.0
   0
@@ -3971,15 +4241,15 @@ LINE
   8
 cut
  10
-274.413717376834
+274.4137173768339
  20
-26.355512708824623
+26.355512708824563
  30
 0.0
  11
-274.27384350396017
+274.27384350396005
  21
-26.83554947792391
+26.835549477923852
  31
 0.0
   0
@@ -3991,13 +4261,13 @@ cut
  10
 358.1285927045404
  20
-68.51846272727916
+68.5184627272791
  30
 0.0
  11
-349.37619756818015
+349.3761975681801
  21
-68.51846272727917
+68.51846272727911
  31
 0.0
   0
@@ -4007,15 +4277,15 @@ LINE
   8
 cut
  10
-349.37619756818015
+349.3761975681801
  20
-68.51846272727917
+68.51846272727911
  30
 0.0
  11
-349.37619756818015
+349.3761975681801
  21
-51.013672454558645
+51.013672454558595
  31
 0.0
   0
@@ -4025,15 +4295,15 @@ LINE
   8
 cut
  10
-349.37619756818015
+349.3761975681801
  20
-51.013672454558645
+51.013672454558595
  30
 0.0
  11
-358.1285927045404
+358.1285927045403
  21
-51.01367245455863
+51.01367245455858
  31
 0.0
   0
@@ -4045,13 +4315,13 @@ cut
  10
 101.87140729545968
  20
-257.52804327272065
+287.5280432727207
  30
 0.0
  11
 110.62380243181993
  21
-257.52804327272065
+287.5280432727207
  31
 0.0
   0
@@ -4063,13 +4333,13 @@ cut
  10
 110.62380243181993
  20
-257.52804327272065
+287.5280432727207
  30
 0.0
  11
 110.62380243181998
  21
-275.0328335454412
+305.03283354544124
  31
 0.0
   0
@@ -4081,13 +4351,13 @@ cut
  10
 110.62380243181998
  20
-275.0328335454412
+305.03283354544124
  30
 0.0
  11
 101.87140729545975
  21
-275.03283354544124
+305.03283354544124
  31
 0.0
   0
@@ -4097,13 +4367,13 @@ LINE
   8
 cut
  10
-368.0000000000001
+386.0000000000001
  20
 147.02325300000004
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 151.02325300000004
  31
@@ -4115,13 +4385,13 @@ LINE
   8
 cut
  10
-368.0000000000001
+386.0000000000001
  20
 151.02325300000004
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 151.02325300000004
  31
@@ -4133,13 +4403,13 @@ LINE
   8
 cut
  10
-356.00000000000017
+374.00000000000017
  20
 151.02325300000004
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 147.02325300000004
  31
@@ -4151,13 +4421,13 @@ LINE
   8
 cut
  10
-356.00000000000017
+374.00000000000017
  20
 147.02325300000004
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 147.02325300000004
  31
@@ -4169,13 +4439,13 @@ LINE
   8
 cut
  10
-366.50000000000017
+384.50000000000017
  20
 159.023253
  30
 0.0
  11
-366.50000000000017
+384.50000000000017
  21
 163.02325300000004
  31
@@ -4187,13 +4457,13 @@ LINE
   8
 cut
  10
-366.50000000000017
+384.50000000000017
  20
 163.02325300000004
  30
 0.0
  11
-357.50000000000017
+375.50000000000017
  21
 163.02325300000004
  31
@@ -4205,13 +4475,13 @@ LINE
   8
 cut
  10
-357.50000000000017
+375.50000000000017
  20
 163.02325300000004
  30
 0.0
  11
-357.50000000000017
+375.50000000000017
  21
 159.023253
  31
@@ -4223,13 +4493,13 @@ LINE
   8
 cut
  10
-357.50000000000017
+375.50000000000017
  20
 159.023253
  30
 0.0
  11
-366.50000000000017
+384.50000000000017
  21
 159.023253
  31
@@ -4241,13 +4511,13 @@ LINE
   8
 cut
  10
-368.0000000000001
+386.0000000000001
  20
 122.52325300000003
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 145.523253
  31
@@ -4259,13 +4529,13 @@ LINE
   8
 cut
  10
-368.0000000000001
+386.0000000000001
  20
 145.523253
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 145.523253
  31
@@ -4277,13 +4547,13 @@ LINE
   8
 cut
  10
-356.00000000000017
+374.00000000000017
  20
 145.523253
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 122.52325300000003
  31
@@ -4295,13 +4565,13 @@ LINE
   8
 cut
  10
-356.00000000000017
+374.00000000000017
  20
 122.52325300000003
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 122.52325300000003
  31
@@ -4313,13 +4583,13 @@ LINE
   8
 cut
  10
-368.0000000000001
+386.0000000000001
  20
 117.02325300000003
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 121.02325300000003
  31
@@ -4331,13 +4601,13 @@ LINE
   8
 cut
  10
-368.0000000000001
+386.0000000000001
  20
 121.02325300000003
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 121.02325300000003
  31
@@ -4349,13 +4619,13 @@ LINE
   8
 cut
  10
-356.00000000000017
+374.00000000000017
  20
 121.02325300000003
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 117.02325300000003
  31
@@ -4367,13 +4637,13 @@ LINE
   8
 cut
  10
-356.00000000000017
+374.00000000000017
  20
 117.02325300000003
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 117.02325300000003
  31
@@ -4385,13 +4655,121 @@ LINE
   8
 cut
  10
-367.6666666666668
+402.2727272727274
  20
 94.52325300000001
  30
 0.0
  11
-367.6666666666668
+407.2727272727274
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+407.2727272727274
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+402.2727272727274
+ 21
+99.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+402.2727272727274
+ 20
+99.52325300000003
+ 30
+0.0
+ 11
+389.54545454545473
+ 21
+99.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+389.54545454545473
+ 20
+99.52325300000003
+ 30
+0.0
+ 11
+384.54545454545473
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+384.54545454545473
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+389.54545454545473
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+370.4545454545456
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+375.45454545454555
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+375.45454545454555
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+370.4545454545456
  21
 99.52325300000003
  31
@@ -4403,13 +4781,13 @@ LINE
   8
 cut
  10
-367.6666666666668
+370.4545454545456
  20
 99.52325300000003
  30
 0.0
  11
-356.3333333333335
+357.72727272727286
  21
 99.52325300000003
  31
@@ -4421,13 +4799,31 @@ LINE
   8
 cut
  10
-356.3333333333335
+357.72727272727286
  20
 99.52325300000003
  30
 0.0
  11
-356.3333333333335
+352.7272727272729
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+352.7272727272729
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+357.72727272727286
  21
 94.52325300000001
  31
diff --git a/rocolib/output/BoatWithServoMount/graph-autofold-graph.dxf b/rocolib/output/BoatWithServoMount/graph-autofold-graph.dxf
index 4b903287b5d6b2118993c04ee4f76fba5520dfe6..254d12aa2d225e3eb639b0ae50f8b8bd29cec226 100644
--- a/rocolib/output/BoatWithServoMount/graph-autofold-graph.dxf
+++ b/rocolib/output/BoatWithServoMount/graph-autofold-graph.dxf
@@ -949,7 +949,7 @@ LINE
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 166.023253
  31
@@ -981,7 +981,7 @@ LINE
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 190.02325300000004
  30
@@ -1095,7 +1095,7 @@ LINE
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 190.02325300000004
  31
@@ -1129,7 +1129,7 @@ DOTTED
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 166.023253
  30
@@ -1167,7 +1167,7 @@ LINE
  10
 345.0000000000001
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
@@ -1185,13 +1185,13 @@ LINE
  10
 345.0000000000001
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1223,7 +1223,7 @@ DOTTED
  10
 275.00000000000017
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
@@ -1243,13 +1243,13 @@ DOTTED
  10
 275.00000000000017
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1263,13 +1263,13 @@ DOTTED
  10
 345.0000000000001
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-292.53762381816165
+322.53762381816165
  31
 0.0
   0
@@ -1283,13 +1283,13 @@ DOTTED
  10
 275.00000000000017
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-292.53762381816165
+322.53762381816165
  31
 0.0
   0
@@ -1301,13 +1301,13 @@ LINE
  10
 362.5047902727207
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1319,13 +1319,13 @@ LINE
  10
 362.5047902727207
  20
-292.53762381816165
+322.53762381816165
  30
 0.0
  11
 362.5047902727207
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1337,13 +1337,13 @@ LINE
  10
 345.0000000000001
  20
-292.53762381816165
+322.53762381816165
  30
 0.0
  11
 362.5047902727207
  21
-292.53762381816165
+322.53762381816165
  31
 0.0
   0
@@ -1357,13 +1357,13 @@ DOTTED
  10
 275.00000000000017
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 294.58234220233663
  21
-307.22840067389916
+337.2284006738992
  31
 0.0
   0
@@ -1375,13 +1375,13 @@ LINE
  10
 294.58234220233663
  20
-307.22840067389916
+337.2284006738992
  30
 0.0
  11
 345.0000000000001
  21
-292.53762381816165
+322.53762381816165
  31
 0.0
   0
@@ -1393,13 +1393,13 @@ LINE
  10
 244.16468440467298
  20
-321.9191775296368
+351.9191775296368
  30
 0.0
  11
 294.58234220233663
  21
-307.22840067389916
+337.2284006738992
  31
 0.0
   0
@@ -1411,13 +1411,13 @@ LINE
  10
 230.00000000000014
  20
-326.0465056704263
+356.04650567042637
  30
 0.0
  11
 244.16468440467298
  21
-321.9191775296368
+351.9191775296368
  31
 0.0
   0
@@ -1431,13 +1431,13 @@ DOTTED
  10
 230.00000000000014
  20
-326.0465056704263
+356.04650567042637
  30
 0.0
  11
 275.00000000000017
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1451,13 +1451,13 @@ DOTTED
  10
 230.0000000000001
  20
-240.02325300000007
+270.0232530000001
  30
 0.0
  11
 275.00000000000017
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1471,13 +1471,13 @@ DOTTED
  10
 185.0000000000001
  20
-240.0232530000001
+270.0232530000001
  30
 0.0
  11
 230.0000000000001
  21
-240.02325300000007
+270.0232530000001
  31
 0.0
   0
@@ -1491,13 +1491,13 @@ DOTTED
  10
 230.00000000000014
  20
-326.0465056704263
+356.04650567042637
  30
 0.0
  11
 185.00000000000009
  21
-240.0232530000001
+270.0232530000001
  31
 0.0
   0
@@ -1511,13 +1511,13 @@ DOTTED
  10
 165.4176577976637
  20
-307.22840067389933
+337.2284006738993
  30
 0.0
  11
 185.00000000000009
  21
-240.02325300000007
+270.0232530000001
  31
 0.0
   0
@@ -1529,13 +1529,13 @@ LINE
  10
 215.83531559532727
  20
-321.91917752963684
+351.91917752963684
  30
 0.0
  11
 230.00000000000014
  21
-326.0465056704263
+356.04650567042637
  31
 0.0
   0
@@ -1547,13 +1547,13 @@ LINE
  10
 165.4176577976637
  20
-307.22840067389933
+337.2284006738993
  30
 0.0
  11
 215.83531559532727
  21
-321.91917752963684
+351.91917752963684
  31
 0.0
   0
@@ -1565,13 +1565,13 @@ LINE
  10
 115.00000000000013
  20
-292.53762381816176
+322.53762381816176
  30
 0.0
  11
 165.41765779766374
  21
-307.22840067389933
+337.2284006738993
  31
 0.0
   0
@@ -1585,13 +1585,13 @@ DOTTED
  10
 115.00000000000013
  20
-292.53762381816176
+322.53762381816176
  30
 0.0
  11
 185.00000000000009
  21
-240.0232530000001
+270.0232530000001
  31
 0.0
   0
@@ -1605,13 +1605,13 @@ DOTTED
  10
 115.00000000000007
  20
-240.02325300000015
+270.0232530000002
  30
 0.0
  11
 185.0000000000001
  21
-240.02325300000007
+270.0232530000001
  31
 0.0
   0
@@ -1625,13 +1625,13 @@ DOTTED
  10
 115.00000000000013
  20
-292.53762381816176
+322.53762381816176
  30
 0.0
  11
 115.00000000000007
  21
-240.02325300000015
+270.0232530000002
  31
 0.0
   0
@@ -1643,15 +1643,15 @@ DOTTED
   8
 0
  10
-185.00000000000009
+185.0000000000001
  20
-240.0232530000001
+270.0232530000001
  30
 0.0
  11
 184.99999999999997
  21
-86.023253
+86.02325299999998
  31
 0.0
   0
@@ -1663,13 +1663,13 @@ LINE
  10
 115.00000000000001
  20
-190.02325300000012
+190.0232530000001
  30
 0.0
  11
 115.00000000000007
  21
-240.02325300000015
+270.0232530000002
  31
 0.0
   0
@@ -1683,13 +1683,13 @@ DOTTED
  10
 115.00000000000001
  20
-190.02325300000012
+190.0232530000001
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-166.0232530000001
+166.02325300000007
  31
 0.0
   0
@@ -1699,15 +1699,15 @@ LINE
   8
 0
  10
-114.99999999999996
+114.9999999999999
  20
-86.02325300000008
+86.02325300000004
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-166.0232530000001
+166.02325300000007
  31
 0.0
   0
@@ -1717,15 +1717,15 @@ LINE
   8
 0
  10
-114.99999999999996
+114.9999999999999
  20
-86.02325300000008
+86.02325300000004
  30
 0.0
  11
-114.99999999999996
+114.9999999999999
  21
-86.02325300000008
+86.02325300000004
  31
 0.0
   0
@@ -1737,13 +1737,13 @@ LINE
  10
 115.00000000000007
  20
-240.02325300000015
+270.0232530000002
  30
 0.0
  11
 115.00000000000007
  21
-240.02325300000015
+270.0232530000002
  31
 0.0
   0
@@ -1753,15 +1753,15 @@ LINE
   8
 0
  10
-81.00000000000001
+45.0
  20
-190.02325300000015
+190.02325300000018
  30
 0.0
  11
 115.00000000000001
  21
-190.02325300000012
+190.0232530000001
  31
 0.0
   0
@@ -1775,11 +1775,11 @@ DOTTED
  10
 115.00000000000001
  20
-166.0232530000001
+166.02325300000007
  30
 0.0
  11
-81.00000000000001
+45.0
  21
 166.02325300000015
  31
@@ -1793,13 +1793,13 @@ LINE
  10
 45.0
  20
-190.0232530000002
+190.02325300000018
  30
 0.0
  11
-81.00000000000001
+45.0
  21
-190.02325300000015
+190.02325300000018
  31
 0.0
   0
@@ -1813,13 +1813,13 @@ DOTTED
  10
 45.0
  20
-190.0232530000002
+190.02325300000018
  30
 0.0
  11
 45.0
  21
-166.02325300000018
+166.02325300000015
  31
 0.0
   0
@@ -1829,7 +1829,7 @@ LINE
   8
 0
  10
-81.00000000000001
+45.0
  20
 166.02325300000015
  30
@@ -1837,7 +1837,7 @@ LINE
  11
 45.0
  21
-166.02325300000018
+166.02325300000015
  31
 0.0
   0
@@ -1849,13 +1849,13 @@ LINE
  10
 45.0
  20
-166.02325300000018
+166.02325300000015
  30
 0.0
  11
 0.0
  21
-166.02325300000024
+166.0232530000002
  31
 0.0
   0
@@ -1873,7 +1873,7 @@ LINE
  11
 45.0
  21
-190.0232530000002
+190.02325300000018
  31
 0.0
   0
@@ -1885,7 +1885,7 @@ LINE
  10
 0.0
  20
-166.02325300000024
+166.0232530000002
  30
 0.0
  11
@@ -1901,13 +1901,13 @@ LINE
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
-166.0232530000001
+166.02325300000007
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
 146.0232530000001
  31
@@ -1919,13 +1919,13 @@ LINE
   8
 0
  10
-81.00000000000001
+44.99999999999995
  20
 146.02325300000015
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
 166.02325300000015
  31
@@ -1939,13 +1939,13 @@ DOTTED
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
 146.0232530000001
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
 146.02325300000015
  31
@@ -1957,15 +1957,15 @@ LINE
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
-146.02325300000012
+146.0232530000001
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-122.02325300000008
+122.02325300000007
  31
 0.0
   0
@@ -1975,13 +1975,13 @@ LINE
   8
 0
  10
-81.00000000000001
+44.99999999999995
  20
-122.02325300000012
+122.02325300000014
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
 146.02325300000015
  31
@@ -1995,15 +1995,15 @@ DOTTED
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
-122.02325300000008
+122.02325300000007
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
-122.02325300000012
+122.02325300000014
  31
 0.0
   0
@@ -2013,15 +2013,15 @@ LINE
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
-122.0232530000001
+122.02325300000007
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-102.02325300000008
+102.02325300000005
  31
 0.0
   0
@@ -2031,13 +2031,13 @@ LINE
   8
 0
  10
-81.00000000000001
+44.99999999999995
  20
 102.02325300000011
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
 122.02325300000014
  31
@@ -2051,15 +2051,15 @@ DOTTED
   8
 0
  10
-81.00000000000001
+44.99999999999995
  20
 102.02325300000011
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-102.02325300000008
+102.02325300000005
  31
 0.0
   0
@@ -2069,15 +2069,15 @@ LINE
   8
 0
  10
-81.00000000000001
+44.99999999999989
  20
-92.02325300000011
+92.02325300000012
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
-102.0232530000001
+102.02325300000014
  31
 0.0
   0
@@ -2087,15 +2087,15 @@ LINE
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
-92.02325300000007
+92.02325300000004
  30
 0.0
  11
-81.00000000000001
+44.99999999999989
  21
-92.02325300000011
+92.02325300000012
  31
 0.0
   0
@@ -2105,15 +2105,15 @@ LINE
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
-102.02325300000008
+102.02325300000005
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-92.02325300000007
+92.02325300000004
  31
 0.0
   0
@@ -2125,15 +2125,15 @@ DOTTED
   8
 0
  10
-184.99999999999997
+184.9999999999999
  20
-86.02325300000001
+86.02325299999997
  30
 0.0
  11
-114.99999999999996
+114.9999999999999
  21
-86.02325300000008
+86.02325300000004
  31
 0.0
   0
@@ -2145,15 +2145,15 @@ DOTTED
   8
 0
  10
-114.99999999999996
+114.9999999999999
  20
-86.02325300000008
+86.02325300000004
  30
 0.0
  11
-114.9999999999999
+114.99999999999984
  21
-33.508882181838494
+33.50888218183843
  31
 0.0
   0
@@ -2165,15 +2165,15 @@ DOTTED
   8
 0
  10
-184.99999999999997
+184.9999999999999
  20
-86.02325300000001
+86.02325299999997
  30
 0.0
  11
-114.9999999999999
+114.99999999999984
  21
-33.508882181838494
+33.50888218183843
  31
 0.0
   0
@@ -2183,15 +2183,15 @@ LINE
   8
 0
  10
-97.49520972727943
+97.49520972727937
  20
-86.0232530000001
+86.02325300000005
  30
 0.0
  11
-114.99999999999996
+114.9999999999999
  21
-86.02325300000008
+86.02325300000004
  31
 0.0
   0
@@ -2201,15 +2201,15 @@ LINE
   8
 0
  10
-97.49520972727937
+97.49520972727932
  20
-33.50888218183852
+33.508882181838466
  30
 0.0
  11
-97.49520972727943
+97.49520972727937
  21
-86.0232530000001
+86.02325300000005
  31
 0.0
   0
@@ -2219,15 +2219,15 @@ LINE
   8
 0
  10
-114.9999999999999
+114.99999999999984
  20
-33.508882181838494
+33.50888218183843
  30
 0.0
  11
-97.49520972727937
+97.49520972727932
  21
-33.50888218183852
+33.508882181838466
  31
 0.0
   0
@@ -2239,15 +2239,15 @@ DOTTED
   8
 0
  10
-185.00000000000003
+184.99999999999997
  20
-86.02325300000004
+86.02325299999997
  30
 0.0
  11
-165.4176577976635
+165.41765779766345
  21
-18.818105326100866
+18.81810532610078
  31
 0.0
   0
@@ -2257,15 +2257,15 @@ LINE
   8
 0
  10
-165.4176577976635
+165.41765779766345
  20
-18.818105326100866
+18.81810532610078
  30
 0.0
  11
-114.9999999999999
+114.99999999999984
  21
-33.508882181838494
+33.50888218183843
  31
 0.0
   0
@@ -2275,15 +2275,15 @@ LINE
   8
 0
  10
-215.83531559532705
+215.83531559532696
  20
-4.127328470363211
+4.127328470363154
  30
 0.0
  11
-165.41765779766348
+165.41765779766342
  21
-18.818105326100834
+18.81810532610078
  31
 0.0
   0
@@ -2293,15 +2293,15 @@ LINE
   8
 0
  10
-229.99999999999991
+229.99999999999986
  20
-3.295736235031655e-07
+3.2957356665974663e-07
  30
 0.0
  11
-215.83531559532705
+215.83531559532696
  21
-4.127328470363211
+4.127328470363154
  31
 0.0
   0
@@ -2313,15 +2313,15 @@ DOTTED
   8
 0
  10
-229.99999999999991
+229.99999999999986
  20
-3.295736235031655e-07
+3.2957356665974663e-07
  30
 0.0
  11
-185.0
+184.99999999999994
  21
-86.02325300000003
+86.02325299999997
  31
 0.0
   0
@@ -2333,15 +2333,15 @@ DOTTED
   8
 0
  10
-230.00000000000003
+229.99999999999994
  20
-86.02325299999997
+86.02325299999991
  30
 0.0
  11
-185.0
+184.99999999999994
  21
-86.02325300000003
+86.02325299999997
  31
 0.0
   0
@@ -2353,15 +2353,15 @@ DOTTED
   8
 0
  10
-275.00000000000006
+275.0
  20
-86.02325299999988
+86.02325299999983
  30
 0.0
  11
-229.99999999999997
+229.99999999999994
  21
-86.02325299999995
+86.02325299999988
  31
 0.0
   0
@@ -2373,15 +2373,15 @@ DOTTED
   8
 0
  10
-229.9999999999999
+229.99999999999983
  20
-3.295736235031655e-07
+3.2957356665974663e-07
  30
 0.0
  11
-275.00000000000006
+275.0
  21
-86.02325299999988
+86.02325299999983
  31
 0.0
   0
@@ -2393,15 +2393,15 @@ DOTTED
   8
 0
  10
-294.5823422023364
+294.5823422023363
  20
-18.81810532610061
+18.818105326100554
  30
 0.0
  11
-275.00000000000006
+275.0
  21
-86.02325299999985
+86.02325299999981
  31
 0.0
   0
@@ -2411,15 +2411,15 @@ LINE
   8
 0
  10
-244.16468440467273
+244.16468440467267
  20
-4.127328470363125
+4.127328470363068
  30
 0.0
  11
-229.9999999999999
+229.99999999999983
  21
-3.2957359508145606e-07
+3.2957353823803714e-07
  31
 0.0
   0
@@ -2429,15 +2429,15 @@ LINE
   8
 0
  10
-294.5823422023364
+294.5823422023363
  20
-18.81810532610061
+18.818105326100554
  30
 0.0
  11
-244.16468440467273
+244.16468440467267
  21
-4.127328470363125
+4.127328470363068
  31
 0.0
   0
@@ -2449,13 +2449,13 @@ LINE
  10
 344.99999999999994
  20
-33.50888218183812
+33.50888218183806
  30
 0.0
  11
-294.58234220233635
+294.5823422023363
  21
-18.818105326100635
+18.81810532610058
  31
 0.0
   0
@@ -2469,13 +2469,13 @@ DOTTED
  10
 344.99999999999994
  20
-33.50888218183812
+33.50888218183806
  30
 0.0
  11
-275.00000000000006
+275.0
  21
-86.02325299999987
+86.02325299999983
  31
 0.0
   0
@@ -2487,15 +2487,15 @@ DOTTED
   8
 0
  10
-345.00000000000006
+345.0
  20
-86.02325299999974
+86.02325299999968
  30
 0.0
  11
-275.00000000000006
+274.99999999999994
  21
-86.02325299999988
+86.02325299999983
  31
 0.0
   0
@@ -2507,15 +2507,15 @@ DOTTED
   8
 0
  10
-344.99999999999994
+344.9999999999999
  20
-33.50888218183812
+33.50888218183806
  30
 0.0
  11
-345.00000000000006
+345.0
  21
-86.02325299999974
+86.02325299999968
  31
 0.0
   0
@@ -2525,15 +2525,15 @@ LINE
   8
 0
  10
-362.50479027272047
+362.5047902727204
  20
-33.508882181838096
+33.50888218183804
  30
 0.0
  11
 344.99999999999994
  21
-33.50888218183812
+33.50888218183806
  31
 0.0
   0
@@ -2543,15 +2543,15 @@ LINE
   8
 0
  10
-362.5047902727206
+362.5047902727205
  20
-86.02325299999971
+86.02325299999966
  30
 0.0
  11
-362.50479027272047
+362.5047902727204
  21
-33.508882181838096
+33.50888218183804
  31
 0.0
   0
@@ -2561,15 +2561,15 @@ LINE
   8
 0
  10
-345.00000000000006
+345.0
  20
-86.02325299999974
+86.02325299999968
  30
 0.0
  11
-362.5047902727206
+362.5047902727205
  21
-86.02325299999971
+86.02325299999966
  31
 0.0
   0
@@ -2581,13 +2581,13 @@ LINE
  10
 97.4952097272796
  20
-292.53762381816176
+322.53762381816176
  30
 0.0
  11
 115.00000000000013
  21
-292.53762381816176
+322.53762381816176
  31
 0.0
   0
@@ -2599,13 +2599,13 @@ LINE
  10
 97.49520972727954
  20
-240.02325300000018
+270.0232530000002
  30
 0.0
  11
 97.4952097272796
  21
-292.53762381816176
+322.53762381816176
  31
 0.0
   0
@@ -2617,13 +2617,13 @@ LINE
  10
 115.00000000000007
  20
-240.02325300000015
+270.0232530000002
  30
 0.0
  11
 97.49520972727954
  21
-240.02325300000018
+270.0232530000002
  31
 0.0
   0
@@ -2633,13 +2633,13 @@ LINE
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 166.023253
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 146.023253
  31
@@ -2671,7 +2671,7 @@ DOTTED
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 146.023253
  30
@@ -2689,13 +2689,13 @@ LINE
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 146.023253
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 122.02325300000003
  31
@@ -2727,7 +2727,7 @@ DOTTED
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 122.02325300000003
  30
@@ -2745,13 +2745,13 @@ LINE
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 122.02325300000003
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 102.02325300000003
  31
@@ -2789,7 +2789,7 @@ DOTTED
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 102.02325300000003
  31
@@ -2819,7 +2819,7 @@ LINE
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 92.02325300000001
  30
@@ -2837,13 +2837,13 @@ LINE
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 102.02325300000003
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 92.02325300000001
  31
@@ -2945,13 +2945,85 @@ LINE
   8
 0
  10
-356.0833333333335
+389.29545454545473
+ 20
+182.273253
+ 30
+0.0
+ 11
+402.5227272727274
+ 21
+182.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+402.5227272727274
  20
 182.273253
  30
 0.0
  11
-367.9166666666668
+402.5227272727274
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+402.5227272727274
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+389.29545454545473
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+389.29545454545473
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+389.29545454545473
+ 21
+182.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+357.47727272727286
+ 20
+182.273253
+ 30
+0.0
+ 11
+370.70454545454555
  21
 182.273253
  31
@@ -2963,13 +3035,13 @@ LINE
   8
 0
  10
-367.9166666666668
+370.70454545454555
  20
 182.273253
  30
 0.0
  11
-367.9166666666668
+370.70454545454555
  21
 182.77325300000004
  31
@@ -2981,13 +3053,13 @@ LINE
   8
 0
  10
-367.9166666666668
+370.70454545454555
  20
 182.77325300000004
  30
 0.0
  11
-356.0833333333335
+357.47727272727286
  21
 182.77325300000004
  31
@@ -2999,13 +3071,13 @@ LINE
   8
 0
  10
-356.0833333333335
+357.47727272727286
  20
 182.77325300000004
  30
 0.0
  11
-356.0833333333335
+357.47727272727286
  21
 182.273253
  31
@@ -3019,13 +3091,13 @@ LINE
  10
 358.1285927045405
  20
-275.03283354544106
+305.0328335454411
  30
 0.0
  11
 349.3761975681803
  21
-275.03283354544106
+305.0328335454411
  31
 0.0
   0
@@ -3037,13 +3109,13 @@ LINE
  10
 349.3761975681803
  20
-275.03283354544106
+305.0328335454411
  30
 0.0
  11
 349.3761975681803
  21
-257.52804327272054
+287.5280432727206
  31
 0.0
   0
@@ -3055,13 +3127,13 @@ LINE
  10
 349.3761975681803
  20
-257.52804327272054
+287.5280432727206
  30
 0.0
  11
 358.1285927045405
  21
-257.52804327272054
+287.5280432727206
  31
 0.0
   0
@@ -3073,13 +3145,13 @@ LINE
  10
 256.9879208023066
  20
-304.247756013529
+334.247756013529
  30
 0.0
  11
 274.2738435039604
  21
-299.210956522076
+329.2109565220759
  31
 0.0
   0
@@ -3091,13 +3163,13 @@ LINE
  10
 274.2738435039604
  20
-299.210956522076
+329.2109565220759
  30
 0.0
  11
-274.41371737683426
+274.4137173768342
  21
-299.69099329117523
+329.6909932911753
  31
 0.0
   0
@@ -3107,15 +3179,15 @@ LINE
   8
 0
  10
-274.41371737683426
+274.4137173768342
  20
-299.69099329117523
+329.6909932911753
  30
 0.0
  11
 257.1277946751804
  21
-304.7277927826283
+334.7277927826282
  31
 0.0
   0
@@ -3127,13 +3199,13 @@ LINE
  10
 257.1277946751804
  20
-304.7277927826283
+334.7277927826282
  30
 0.0
  11
 256.9879208023066
  21
-304.247756013529
+334.247756013529
  31
 0.0
   0
@@ -3145,13 +3217,13 @@ LINE
  10
 185.72615649603986
  20
-299.210956522076
+329.21095652207595
  30
 0.0
  11
 203.0120791976937
  21
-304.247756013529
+334.247756013529
  31
 0.0
   0
@@ -3163,13 +3235,13 @@ LINE
  10
 203.0120791976937
  20
-304.247756013529
+334.247756013529
  30
 0.0
  11
 202.87220532481987
  21
-304.72779278262834
+334.7277927826283
  31
 0.0
   0
@@ -3181,13 +3253,13 @@ LINE
  10
 202.87220532481987
  20
-304.72779278262834
+334.7277927826283
  30
 0.0
  11
 185.58628262316603
  21
-299.69099329117523
+329.6909932911753
  31
 0.0
   0
@@ -3199,13 +3271,13 @@ LINE
  10
 185.58628262316603
  20
-299.69099329117523
+329.6909932911753
  30
 0.0
  11
 185.72615649603986
  21
-299.210956522076
+329.21095652207595
  31
 0.0
   0
@@ -3215,13 +3287,85 @@ LINE
   8
 0
  10
-92.08333333333333
+89.29545454545456
+ 20
+182.27325300000012
+ 30
+0.0
+ 11
+102.52272727272727
+ 21
+182.27325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.52272727272727
+ 20
+182.27325300000012
+ 30
+0.0
+ 11
+102.52272727272727
+ 21
+182.77325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.52272727272727
+ 20
+182.77325300000012
+ 30
+0.0
+ 11
+89.29545454545456
+ 21
+182.77325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.29545454545456
+ 20
+182.77325300000012
+ 30
+0.0
+ 11
+89.29545454545456
+ 21
+182.27325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.477272727272755
  20
 182.27325300000015
  30
 0.0
  11
-103.9166666666667
+70.70454545454545
  21
 182.27325300000015
  31
@@ -3233,13 +3377,13 @@ LINE
   8
 0
  10
-103.9166666666667
+70.70454545454545
  20
 182.27325300000015
  30
 0.0
  11
-103.9166666666667
+70.70454545454545
  21
 182.77325300000015
  31
@@ -3251,13 +3395,13 @@ LINE
   8
 0
  10
-103.9166666666667
+70.70454545454545
  20
 182.77325300000015
  30
 0.0
  11
-92.08333333333333
+57.477272727272755
  21
 182.77325300000015
  31
@@ -3269,13 +3413,13 @@ LINE
   8
 0
  10
-92.08333333333333
+57.477272727272755
  20
 182.77325300000015
  30
 0.0
  11
-92.08333333333333
+57.477272727272755
  21
 182.27325300000015
  31
@@ -3289,13 +3433,13 @@ LINE
  10
 4.000000000000001
  20
-173.77325300000024
+173.7732530000002
  30
 0.0
  11
 4.000000000000001
  21
-182.27325300000024
+182.2732530000002
  31
 0.0
   0
@@ -3307,13 +3451,13 @@ LINE
  10
 4.000000000000001
  20
-182.27325300000024
+182.2732530000002
  30
 0.0
  11
 3.5000000000000004
  21
-182.27325300000024
+182.2732530000002
  31
 0.0
   0
@@ -3325,13 +3469,13 @@ LINE
  10
 3.5000000000000004
  20
-182.27325300000024
+182.2732530000002
  30
 0.0
  11
 3.5000000000000004
  21
-173.77325300000024
+173.7732530000002
  31
 0.0
   0
@@ -3343,13 +3487,13 @@ LINE
  10
 3.5000000000000004
  20
-173.77325300000024
+173.7732530000002
  30
 0.0
  11
 4.000000000000001
  21
-173.77325300000024
+173.7732530000002
  31
 0.0
   0
@@ -3359,13 +3503,13 @@ LINE
   8
 0
  10
-104.00000000000001
+85.99999999999996
  20
 147.02325300000012
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
 151.02325300000012
  31
@@ -3377,15 +3521,15 @@ LINE
   8
 0
  10
-104.00000000000001
+85.99999999999996
  20
 151.02325300000012
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
-151.02325300000015
+151.02325300000012
  31
 0.0
   0
@@ -3395,13 +3539,13 @@ LINE
   8
 0
  10
-92.00000000000001
+73.99999999999994
  20
-151.02325300000015
+151.02325300000012
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
 147.02325300000012
  31
@@ -3413,13 +3557,13 @@ LINE
   8
 0
  10
-92.00000000000001
+73.99999999999994
  20
 147.02325300000012
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
 147.02325300000012
  31
@@ -3431,13 +3575,13 @@ LINE
   8
 0
  10
-102.50000000000001
+84.49999999999994
  20
 159.0232530000001
  30
 0.0
  11
-102.50000000000001
+84.49999999999994
  21
 163.02325300000012
  31
@@ -3449,13 +3593,13 @@ LINE
   8
 0
  10
-102.50000000000001
+84.49999999999994
  20
 163.02325300000012
  30
 0.0
  11
-93.50000000000001
+75.49999999999994
  21
 163.02325300000012
  31
@@ -3467,13 +3611,13 @@ LINE
   8
 0
  10
-93.50000000000001
+75.49999999999994
  20
 163.02325300000012
  30
 0.0
  11
-93.50000000000001
+75.49999999999994
  21
 159.0232530000001
  31
@@ -3485,13 +3629,13 @@ LINE
   8
 0
  10
-93.50000000000001
+75.49999999999994
  20
 159.0232530000001
  30
 0.0
  11
-102.50000000000001
+84.49999999999994
  21
 159.0232530000001
  31
@@ -3503,13 +3647,13 @@ LINE
   8
 0
  10
-104.00000000000001
+85.99999999999996
  20
 122.52325300000011
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
 145.5232530000001
  31
@@ -3521,15 +3665,15 @@ LINE
   8
 0
  10
-104.00000000000001
+85.99999999999996
  20
 145.5232530000001
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
-145.52325300000012
+145.5232530000001
  31
 0.0
   0
@@ -3539,13 +3683,13 @@ LINE
   8
 0
  10
-92.00000000000001
+73.99999999999994
  20
-145.52325300000012
+145.5232530000001
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
 122.52325300000011
  31
@@ -3557,13 +3701,13 @@ LINE
   8
 0
  10
-92.00000000000001
+73.99999999999994
  20
 122.52325300000011
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
 122.52325300000011
  31
@@ -3575,15 +3719,15 @@ LINE
   8
 0
  10
-104.00000000000001
+85.99999999999996
  20
-117.02325300000011
+117.02325300000008
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
-121.02325300000011
+121.0232530000001
  31
 0.0
   0
@@ -3593,13 +3737,13 @@ LINE
   8
 0
  10
-104.00000000000001
+85.99999999999996
  20
-121.02325300000011
+121.0232530000001
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
 121.02325300000011
  31
@@ -3611,13 +3755,13 @@ LINE
   8
 0
  10
-92.00000000000001
+73.99999999999994
  20
 121.02325300000011
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
 117.02325300000011
  31
@@ -3629,15 +3773,15 @@ LINE
   8
 0
  10
-92.00000000000001
+73.99999999999994
  20
 117.02325300000011
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
-117.02325300000011
+117.02325300000008
  31
 0.0
   0
@@ -3647,13 +3791,121 @@ LINE
   8
 0
  10
-103.6666666666667
+102.27272727272721
+ 20
+94.52325300000007
+ 30
+0.0
+ 11
+107.27272727272721
+ 21
+94.52325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.27272727272721
+ 20
+94.52325300000007
+ 30
+0.0
+ 11
+102.27272727272721
+ 21
+99.52325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.27272727272721
+ 20
+99.52325300000007
+ 30
+0.0
+ 11
+89.5454545454545
+ 21
+99.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.5454545454545
+ 20
+99.52325300000008
+ 30
+0.0
+ 11
+84.54545454545452
+ 21
+94.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+84.54545454545452
+ 20
+94.52325300000008
+ 30
+0.0
+ 11
+89.5454545454545
+ 21
+94.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.45454545454538
+ 20
+94.5232530000001
+ 30
+0.0
+ 11
+75.4545454545454
+ 21
+94.5232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.4545454545454
  20
 94.5232530000001
  30
 0.0
  11
-103.6666666666667
+70.45454545454538
  21
 99.5232530000001
  31
@@ -3665,13 +3917,13 @@ LINE
   8
 0
  10
-103.6666666666667
+70.45454545454538
  20
 99.5232530000001
  30
 0.0
  11
-92.33333333333331
+57.72727272727264
  21
 99.52325300000011
  31
@@ -3683,13 +3935,13 @@ LINE
   8
 0
  10
-92.33333333333331
+57.72727272727264
  20
 99.52325300000011
  30
 0.0
  11
-92.33333333333331
+52.72727272727264
  21
 94.52325300000011
  31
@@ -3701,15 +3953,15 @@ LINE
   8
 0
  10
-101.87140729545952
+52.72727272727264
  20
-51.01367245455902
+94.52325300000011
  30
 0.0
  11
-110.62380243181975
+57.72727272727264
  21
-51.01367245455902
+94.52325300000011
  31
 0.0
   0
@@ -3719,15 +3971,33 @@ LINE
   8
 0
  10
-110.62380243181975
+101.87140729545946
+ 20
+51.013672454558964
+ 30
+0.0
+ 11
+110.6238024318197
+ 21
+51.013672454558964
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.6238024318197
  20
-51.01367245455902
+51.013672454558964
  30
 0.0
  11
-110.6238024318198
+110.62380243181975
  21
-68.51846272727956
+68.5184627272795
  31
 0.0
   0
@@ -3737,15 +4007,15 @@ LINE
   8
 0
  10
-110.6238024318198
+110.62380243181975
  20
-68.51846272727956
+68.5184627272795
  30
 0.0
  11
-101.87140729545958
+101.87140729545952
  21
-68.51846272727956
+68.5184627272795
  31
 0.0
   0
@@ -3755,15 +4025,15 @@ LINE
   8
 0
  10
-203.01207919769348
+203.01207919769342
  20
-21.798749986471023
+21.798749986470966
  30
 0.0
  11
-185.7261564960397
+185.72615649603964
  21
-26.83554947792408
+26.835549477924022
  31
 0.0
   0
@@ -3773,15 +4043,15 @@ LINE
   8
 0
  10
-185.7261564960397
+185.72615649603964
  20
-26.83554947792408
+26.835549477924022
  30
 0.0
  11
-185.58628262316586
+185.5862826231658
  21
-26.355512708824794
+26.355512708824737
  31
 0.0
   0
@@ -3791,15 +4061,15 @@ LINE
   8
 0
  10
-185.58628262316586
+185.5862826231658
  20
-26.355512708824794
+26.355512708824737
  30
 0.0
  11
-202.87220532481965
+202.8722053248196
  21
-21.318713217371737
+21.318713217371684
  31
 0.0
   0
@@ -3809,15 +4079,15 @@ LINE
   8
 0
  10
-202.87220532481965
+202.8722053248196
  20
-21.318713217371737
+21.318713217371684
  30
 0.0
  11
-203.01207919769348
+203.01207919769342
  21
-21.798749986471023
+21.798749986470966
  31
 0.0
   0
@@ -3827,15 +4097,15 @@ LINE
   8
 0
  10
-274.27384350396017
+274.27384350396005
  20
-26.83554947792391
+26.835549477923852
  30
 0.0
  11
-256.9879208023064
+256.9879208023063
  21
-21.79874998647091
+21.798749986470856
  31
 0.0
   0
@@ -3845,15 +4115,15 @@ LINE
   8
 0
  10
-256.9879208023064
+256.9879208023063
  20
-21.79874998647091
+21.798749986470856
  30
 0.0
  11
-257.1277946751802
+257.12779467518016
  21
-21.318713217371627
+21.31871321737157
  31
 0.0
   0
@@ -3863,15 +4133,15 @@ LINE
   8
 0
  10
-257.1277946751802
+257.12779467518016
  20
-21.318713217371627
+21.31871321737157
  30
 0.0
  11
-274.413717376834
+274.4137173768339
  21
-26.355512708824623
+26.355512708824563
  31
 0.0
   0
@@ -3881,15 +4151,15 @@ LINE
   8
 0
  10
-274.413717376834
+274.4137173768339
  20
-26.355512708824623
+26.355512708824563
  30
 0.0
  11
-274.27384350396017
+274.27384350396005
  21
-26.83554947792391
+26.835549477923852
  31
 0.0
   0
@@ -3901,13 +4171,13 @@ LINE
  10
 358.1285927045404
  20
-68.51846272727916
+68.5184627272791
  30
 0.0
  11
-349.37619756818015
+349.3761975681801
  21
-68.51846272727917
+68.51846272727911
  31
 0.0
   0
@@ -3917,15 +4187,15 @@ LINE
   8
 0
  10
-349.37619756818015
+349.3761975681801
  20
-68.51846272727917
+68.51846272727911
  30
 0.0
  11
-349.37619756818015
+349.3761975681801
  21
-51.013672454558645
+51.013672454558595
  31
 0.0
   0
@@ -3935,15 +4205,15 @@ LINE
   8
 0
  10
-349.37619756818015
+349.3761975681801
  20
-51.013672454558645
+51.013672454558595
  30
 0.0
  11
-358.1285927045404
+358.1285927045403
  21
-51.01367245455863
+51.01367245455858
  31
 0.0
   0
@@ -3955,13 +4225,13 @@ LINE
  10
 101.87140729545968
  20
-257.52804327272065
+287.5280432727207
  30
 0.0
  11
 110.62380243181993
  21
-257.52804327272065
+287.5280432727207
  31
 0.0
   0
@@ -3973,13 +4243,13 @@ LINE
  10
 110.62380243181993
  20
-257.52804327272065
+287.5280432727207
  30
 0.0
  11
 110.62380243181998
  21
-275.0328335454412
+305.03283354544124
  31
 0.0
   0
@@ -3991,13 +4261,13 @@ LINE
  10
 110.62380243181998
  20
-275.0328335454412
+305.03283354544124
  30
 0.0
  11
 101.87140729545975
  21
-275.03283354544124
+305.03283354544124
  31
 0.0
   0
@@ -4007,13 +4277,13 @@ LINE
   8
 0
  10
-368.0000000000001
+386.0000000000001
  20
 147.02325300000004
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 151.02325300000004
  31
@@ -4025,13 +4295,13 @@ LINE
   8
 0
  10
-368.0000000000001
+386.0000000000001
  20
 151.02325300000004
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 151.02325300000004
  31
@@ -4043,13 +4313,13 @@ LINE
   8
 0
  10
-356.00000000000017
+374.00000000000017
  20
 151.02325300000004
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 147.02325300000004
  31
@@ -4061,13 +4331,13 @@ LINE
   8
 0
  10
-356.00000000000017
+374.00000000000017
  20
 147.02325300000004
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 147.02325300000004
  31
@@ -4079,13 +4349,13 @@ LINE
   8
 0
  10
-366.50000000000017
+384.50000000000017
  20
 159.023253
  30
 0.0
  11
-366.50000000000017
+384.50000000000017
  21
 163.02325300000004
  31
@@ -4097,13 +4367,13 @@ LINE
   8
 0
  10
-366.50000000000017
+384.50000000000017
  20
 163.02325300000004
  30
 0.0
  11
-357.50000000000017
+375.50000000000017
  21
 163.02325300000004
  31
@@ -4115,13 +4385,13 @@ LINE
   8
 0
  10
-357.50000000000017
+375.50000000000017
  20
 163.02325300000004
  30
 0.0
  11
-357.50000000000017
+375.50000000000017
  21
 159.023253
  31
@@ -4133,13 +4403,13 @@ LINE
   8
 0
  10
-357.50000000000017
+375.50000000000017
  20
 159.023253
  30
 0.0
  11
-366.50000000000017
+384.50000000000017
  21
 159.023253
  31
@@ -4151,13 +4421,13 @@ LINE
   8
 0
  10
-368.0000000000001
+386.0000000000001
  20
 122.52325300000003
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 145.523253
  31
@@ -4169,13 +4439,13 @@ LINE
   8
 0
  10
-368.0000000000001
+386.0000000000001
  20
 145.523253
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 145.523253
  31
@@ -4187,13 +4457,13 @@ LINE
   8
 0
  10
-356.00000000000017
+374.00000000000017
  20
 145.523253
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 122.52325300000003
  31
@@ -4205,13 +4475,13 @@ LINE
   8
 0
  10
-356.00000000000017
+374.00000000000017
  20
 122.52325300000003
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 122.52325300000003
  31
@@ -4223,13 +4493,13 @@ LINE
   8
 0
  10
-368.0000000000001
+386.0000000000001
  20
 117.02325300000003
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 121.02325300000003
  31
@@ -4241,13 +4511,13 @@ LINE
   8
 0
  10
-368.0000000000001
+386.0000000000001
  20
 121.02325300000003
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 121.02325300000003
  31
@@ -4259,13 +4529,13 @@ LINE
   8
 0
  10
-356.00000000000017
+374.00000000000017
  20
 121.02325300000003
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 117.02325300000003
  31
@@ -4277,13 +4547,13 @@ LINE
   8
 0
  10
-356.00000000000017
+374.00000000000017
  20
 117.02325300000003
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 117.02325300000003
  31
@@ -4295,13 +4565,121 @@ LINE
   8
 0
  10
-367.6666666666668
+402.2727272727274
  20
 94.52325300000001
  30
 0.0
  11
-367.6666666666668
+407.2727272727274
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.2727272727274
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+402.2727272727274
+ 21
+99.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+402.2727272727274
+ 20
+99.52325300000003
+ 30
+0.0
+ 11
+389.54545454545473
+ 21
+99.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+389.54545454545473
+ 20
+99.52325300000003
+ 30
+0.0
+ 11
+384.54545454545473
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+384.54545454545473
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+389.54545454545473
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+370.4545454545456
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+375.45454545454555
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+375.45454545454555
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+370.4545454545456
  21
 99.52325300000003
  31
@@ -4313,13 +4691,13 @@ LINE
   8
 0
  10
-367.6666666666668
+370.4545454545456
  20
 99.52325300000003
  30
 0.0
  11
-356.3333333333335
+357.72727272727286
  21
 99.52325300000003
  31
@@ -4331,13 +4709,31 @@ LINE
   8
 0
  10
-356.3333333333335
+357.72727272727286
  20
 99.52325300000003
  30
 0.0
  11
-356.3333333333335
+352.7272727272729
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+352.7272727272729
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+357.72727272727286
  21
 94.52325300000001
  31
diff --git a/rocolib/output/BoatWithServoMount/graph-lasercutter.svg b/rocolib/output/BoatWithServoMount/graph-lasercutter.svg
index b3371be3b1573ced3914ff2069aee01c9c6480d9..f9c3be06b44ee753f28f6be401e4d807f0ef686c 100644
--- a/rocolib/output/BoatWithServoMount/graph-lasercutter.svg
+++ b/rocolib/output/BoatWithServoMount/graph-lasercutter.svg
@@ -1,189 +1,211 @@
 <?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="326.046506mm" version="1.1" viewBox="0.000000 0.000000 465.000000 326.046506" width="465.000000mm">
+<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="356.046506mm" version="1.1" viewBox="0.000000 0.000000 465.000000 356.046506" width="465.000000mm">
   <defs/>
-  <line stroke="#000000" x1="415.00000000000017" x2="379.00000000000017" y1="166.023253" y2="166.023253"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="415.00000000000017" y1="166.023253" y2="166.023253"/>
   <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="415.00000000000017" x2="415.00000000000017" y1="166.023253" y2="190.02325300000004"/>
-  <line stroke="#000000" x1="379.00000000000017" x2="415.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="415.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
   <line stroke="#000000" x1="415.00000000000017" x2="460.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
   <line stroke="#000000" x1="460.00000000000017" x2="415.00000000000017" y1="166.023253" y2="166.023253"/>
   <line stroke="#000000" x1="465.00000000000017" x2="460.00000000000017" y1="166.023253" y2="166.023253"/>
   <line stroke="#000000" x1="465.00000000000017" x2="465.00000000000017" y1="190.02325300000004" y2="166.023253"/>
   <line stroke="#000000" x1="460.00000000000017" x2="465.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
-  <line stroke="#000000" x1="345.0000000000001" x2="379.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="415.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0000000000001" x2="345.0000000000001" y1="166.023253" y2="190.02325300000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="379.00000000000017" x2="345.0000000000001" y1="166.023253" y2="166.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="415.00000000000017" x2="345.0000000000001" y1="166.023253" y2="166.023253"/>
   <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="166.023253" y2="86.02325300000003"/>
-  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="240.02325300000004" y2="190.02325300000004"/>
-  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="240.02325300000004" y2="240.02325300000004"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="270.02325300000007" y2="190.02325300000004"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="270.02325300000007" y2="270.02325300000007"/>
   <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="86.02325300000003" y2="86.02325300000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="275.00000000000017" y1="240.02325300000004" y2="86.02325300000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="345.0000000000001" y1="240.02325300000004" y2="240.02325300000004"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0000000000001" x2="345.0000000000001" y1="240.02325300000004" y2="292.53762381816165"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="345.0000000000001" y1="240.02325300000004" y2="292.53762381816165"/>
-  <line stroke="#000000" x1="362.5047902727207" x2="345.0000000000001" y1="240.02325300000004" y2="240.02325300000004"/>
-  <line stroke="#000000" x1="362.5047902727207" x2="362.5047902727207" y1="292.53762381816165" y2="240.02325300000004"/>
-  <line stroke="#000000" x1="345.0000000000001" x2="362.5047902727207" y1="292.53762381816165" y2="292.53762381816165"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="294.58234220233663" y1="240.02325300000004" y2="307.22840067389916"/>
-  <line stroke="#000000" x1="294.58234220233663" x2="345.0000000000001" y1="307.22840067389916" y2="292.53762381816165"/>
-  <line stroke="#000000" x1="244.16468440467298" x2="294.58234220233663" y1="321.9191775296368" y2="307.22840067389916"/>
-  <line stroke="#000000" x1="230.00000000000014" x2="244.16468440467298" y1="326.0465056704263" y2="321.9191775296368"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.00000000000014" x2="275.00000000000017" y1="326.0465056704263" y2="240.02325300000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.0000000000001" x2="275.00000000000017" y1="240.02325300000007" y2="240.02325300000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="185.0000000000001" x2="230.0000000000001" y1="240.0232530000001" y2="240.02325300000007"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.00000000000014" x2="185.00000000000009" y1="326.0465056704263" y2="240.0232530000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="165.4176577976637" x2="185.00000000000009" y1="307.22840067389933" y2="240.02325300000007"/>
-  <line stroke="#000000" x1="215.83531559532727" x2="230.00000000000014" y1="321.91917752963684" y2="326.0465056704263"/>
-  <line stroke="#000000" x1="165.4176577976637" x2="215.83531559532727" y1="307.22840067389933" y2="321.91917752963684"/>
-  <line stroke="#000000" x1="115.00000000000013" x2="165.41765779766374" y1="292.53762381816176" y2="307.22840067389933"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000013" x2="185.00000000000009" y1="292.53762381816176" y2="240.0232530000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000007" x2="185.0000000000001" y1="240.02325300000015" y2="240.02325300000007"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000013" x2="115.00000000000007" y1="292.53762381816176" y2="240.02325300000015"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="185.00000000000009" x2="184.99999999999997" y1="240.0232530000001" y2="86.023253"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000007" y1="190.02325300000012" y2="240.02325300000015"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="115.00000000000001" y1="190.02325300000012" y2="166.0232530000001"/>
-  <line stroke="#000000" x1="114.99999999999996" x2="115.00000000000001" y1="86.02325300000008" y2="166.0232530000001"/>
-  <line stroke="#000000" x1="114.99999999999996" x2="114.99999999999996" y1="86.02325300000008" y2="86.02325300000008"/>
-  <line stroke="#000000" x1="115.00000000000007" x2="115.00000000000007" y1="240.02325300000015" y2="240.02325300000015"/>
-  <line stroke="#000000" x1="81.00000000000001" x2="115.00000000000001" y1="190.02325300000015" y2="190.02325300000012"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="81.00000000000001" y1="166.0232530000001" y2="166.02325300000015"/>
-  <line stroke="#000000" x1="45.0" x2="81.00000000000001" y1="190.0232530000002" y2="190.02325300000015"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="45.0" x2="45.0" y1="190.0232530000002" y2="166.02325300000018"/>
-  <line stroke="#000000" x1="81.00000000000001" x2="45.0" y1="166.02325300000015" y2="166.02325300000018"/>
-  <line stroke="#000000" x1="45.0" x2="0.0" y1="166.02325300000018" y2="166.02325300000024"/>
-  <line stroke="#000000" x1="0.0" x2="45.0" y1="190.0232530000002" y2="190.0232530000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="166.02325300000024" y2="190.0232530000002"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="166.0232530000001" y2="146.0232530000001"/>
-  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="146.02325300000015" y2="166.02325300000015"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="81.00000000000001" y1="146.0232530000001" y2="146.02325300000015"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="146.02325300000012" y2="122.02325300000008"/>
-  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="122.02325300000012" y2="146.02325300000015"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="81.00000000000001" y1="122.02325300000008" y2="122.02325300000012"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="122.0232530000001" y2="102.02325300000008"/>
-  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="102.02325300000011" y2="122.02325300000014"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="81.00000000000001" x2="115.00000000000001" y1="102.02325300000011" y2="102.02325300000008"/>
-  <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="92.02325300000011" y2="102.0232530000001"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="81.00000000000001" y1="92.02325300000007" y2="92.02325300000011"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="102.02325300000008" y2="92.02325300000007"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.99999999999997" x2="114.99999999999996" y1="86.02325300000001" y2="86.02325300000008"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="114.99999999999996" x2="114.9999999999999" y1="86.02325300000008" y2="33.508882181838494"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.99999999999997" x2="114.9999999999999" y1="86.02325300000001" y2="33.508882181838494"/>
-  <line stroke="#000000" x1="97.49520972727943" x2="114.99999999999996" y1="86.0232530000001" y2="86.02325300000008"/>
-  <line stroke="#000000" x1="97.49520972727937" x2="97.49520972727943" y1="33.50888218183852" y2="86.0232530000001"/>
-  <line stroke="#000000" x1="114.9999999999999" x2="97.49520972727937" y1="33.508882181838494" y2="33.50888218183852"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="185.00000000000003" x2="165.4176577976635" y1="86.02325300000004" y2="18.818105326100866"/>
-  <line stroke="#000000" x1="165.4176577976635" x2="114.9999999999999" y1="18.818105326100866" y2="33.508882181838494"/>
-  <line stroke="#000000" x1="215.83531559532705" x2="165.41765779766348" y1="4.127328470363211" y2="18.818105326100834"/>
-  <line stroke="#000000" x1="229.99999999999991" x2="215.83531559532705" y1="3.295736235031655e-07" y2="4.127328470363211"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="229.99999999999991" x2="185.0" y1="3.295736235031655e-07" y2="86.02325300000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.00000000000003" x2="185.0" y1="86.02325299999997" y2="86.02325300000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000006" x2="229.99999999999997" y1="86.02325299999988" y2="86.02325299999995"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="229.9999999999999" x2="275.00000000000006" y1="3.295736235031655e-07" y2="86.02325299999988"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="294.5823422023364" x2="275.00000000000006" y1="18.81810532610061" y2="86.02325299999985"/>
-  <line stroke="#000000" x1="244.16468440467273" x2="229.9999999999999" y1="4.127328470363125" y2="3.2957359508145606e-07"/>
-  <line stroke="#000000" x1="294.5823422023364" x2="244.16468440467273" y1="18.81810532610061" y2="4.127328470363125"/>
-  <line stroke="#000000" x1="344.99999999999994" x2="294.58234220233635" y1="33.50888218183812" y2="18.818105326100635"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.99999999999994" x2="275.00000000000006" y1="33.50888218183812" y2="86.02325299999987"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.00000000000006" x2="275.00000000000006" y1="86.02325299999974" y2="86.02325299999988"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.99999999999994" x2="345.00000000000006" y1="33.50888218183812" y2="86.02325299999974"/>
-  <line stroke="#000000" x1="362.50479027272047" x2="344.99999999999994" y1="33.508882181838096" y2="33.50888218183812"/>
-  <line stroke="#000000" x1="362.5047902727206" x2="362.50479027272047" y1="86.02325299999971" y2="33.508882181838096"/>
-  <line stroke="#000000" x1="345.00000000000006" x2="362.5047902727206" y1="86.02325299999974" y2="86.02325299999971"/>
-  <line stroke="#000000" x1="97.4952097272796" x2="115.00000000000013" y1="292.53762381816176" y2="292.53762381816176"/>
-  <line stroke="#000000" x1="97.49520972727954" x2="97.4952097272796" y1="240.02325300000018" y2="292.53762381816176"/>
-  <line stroke="#000000" x1="115.00000000000007" x2="97.49520972727954" y1="240.02325300000015" y2="240.02325300000018"/>
-  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="166.023253" y2="146.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="275.00000000000017" y1="270.02325300000007" y2="86.02325300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="345.0000000000001" y1="270.02325300000007" y2="270.02325300000007"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0000000000001" x2="345.0000000000001" y1="270.02325300000007" y2="322.53762381816165"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="345.0000000000001" y1="270.02325300000007" y2="322.53762381816165"/>
+  <line stroke="#000000" x1="362.5047902727207" x2="345.0000000000001" y1="270.02325300000007" y2="270.02325300000007"/>
+  <line stroke="#000000" x1="362.5047902727207" x2="362.5047902727207" y1="322.53762381816165" y2="270.02325300000007"/>
+  <line stroke="#000000" x1="345.0000000000001" x2="362.5047902727207" y1="322.53762381816165" y2="322.53762381816165"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="294.58234220233663" y1="270.02325300000007" y2="337.2284006738992"/>
+  <line stroke="#000000" x1="294.58234220233663" x2="345.0000000000001" y1="337.2284006738992" y2="322.53762381816165"/>
+  <line stroke="#000000" x1="244.16468440467298" x2="294.58234220233663" y1="351.9191775296368" y2="337.2284006738992"/>
+  <line stroke="#000000" x1="230.00000000000014" x2="244.16468440467298" y1="356.04650567042637" y2="351.9191775296368"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.00000000000014" x2="275.00000000000017" y1="356.04650567042637" y2="270.02325300000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.0000000000001" x2="275.00000000000017" y1="270.0232530000001" y2="270.02325300000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="185.0000000000001" x2="230.0000000000001" y1="270.0232530000001" y2="270.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.00000000000014" x2="185.00000000000009" y1="356.04650567042637" y2="270.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="165.4176577976637" x2="185.00000000000009" y1="337.2284006738993" y2="270.0232530000001"/>
+  <line stroke="#000000" x1="215.83531559532727" x2="230.00000000000014" y1="351.91917752963684" y2="356.04650567042637"/>
+  <line stroke="#000000" x1="165.4176577976637" x2="215.83531559532727" y1="337.2284006738993" y2="351.91917752963684"/>
+  <line stroke="#000000" x1="115.00000000000013" x2="165.41765779766374" y1="322.53762381816176" y2="337.2284006738993"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000013" x2="185.00000000000009" y1="322.53762381816176" y2="270.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000007" x2="185.0000000000001" y1="270.0232530000002" y2="270.0232530000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000013" x2="115.00000000000007" y1="322.53762381816176" y2="270.0232530000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="185.0000000000001" x2="184.99999999999997" y1="270.0232530000001" y2="86.02325299999998"/>
+  <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000007" y1="190.0232530000001" y2="270.0232530000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="114.99999999999996" y1="190.0232530000001" y2="166.02325300000007"/>
+  <line stroke="#000000" x1="114.9999999999999" x2="114.99999999999996" y1="86.02325300000004" y2="166.02325300000007"/>
+  <line stroke="#000000" x1="114.9999999999999" x2="114.9999999999999" y1="86.02325300000004" y2="86.02325300000004"/>
+  <line stroke="#000000" x1="115.00000000000007" x2="115.00000000000007" y1="270.0232530000002" y2="270.0232530000002"/>
+  <line stroke="#000000" x1="45.0" x2="115.00000000000001" y1="190.02325300000018" y2="190.0232530000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="45.0" y1="166.02325300000007" y2="166.02325300000015"/>
+  <line stroke="#000000" x1="45.0" x2="45.0" y1="190.02325300000018" y2="190.02325300000018"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="45.0" x2="45.0" y1="190.02325300000018" y2="166.02325300000015"/>
+  <line stroke="#000000" x1="45.0" x2="45.0" y1="166.02325300000015" y2="166.02325300000015"/>
+  <line stroke="#000000" x1="45.0" x2="0.0" y1="166.02325300000015" y2="166.0232530000002"/>
+  <line stroke="#000000" x1="0.0" x2="45.0" y1="190.0232530000002" y2="190.02325300000018"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="166.0232530000002" y2="190.0232530000002"/>
+  <line stroke="#000000" x1="114.99999999999996" x2="114.99999999999996" y1="166.02325300000007" y2="146.0232530000001"/>
+  <line stroke="#000000" x1="44.99999999999995" x2="44.99999999999995" y1="146.02325300000015" y2="166.02325300000015"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="114.99999999999996" x2="44.99999999999995" y1="146.0232530000001" y2="146.02325300000015"/>
+  <line stroke="#000000" x1="114.99999999999996" x2="114.99999999999996" y1="146.0232530000001" y2="122.02325300000007"/>
+  <line stroke="#000000" x1="44.99999999999995" x2="44.99999999999995" y1="122.02325300000014" y2="146.02325300000015"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="114.99999999999996" x2="44.99999999999995" y1="122.02325300000007" y2="122.02325300000014"/>
+  <line stroke="#000000" x1="114.99999999999996" x2="114.99999999999996" y1="122.02325300000007" y2="102.02325300000005"/>
+  <line stroke="#000000" x1="44.99999999999995" x2="44.99999999999995" y1="102.02325300000011" y2="122.02325300000014"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="44.99999999999995" x2="114.99999999999996" y1="102.02325300000011" y2="102.02325300000005"/>
+  <line stroke="#000000" x1="44.99999999999989" x2="44.99999999999995" y1="92.02325300000012" y2="102.02325300000014"/>
+  <line stroke="#000000" x1="114.99999999999996" x2="44.99999999999989" y1="92.02325300000004" y2="92.02325300000012"/>
+  <line stroke="#000000" x1="114.99999999999996" x2="114.99999999999996" y1="102.02325300000005" y2="92.02325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.9999999999999" x2="114.9999999999999" y1="86.02325299999997" y2="86.02325300000004"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="114.9999999999999" x2="114.99999999999984" y1="86.02325300000004" y2="33.50888218183843"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.9999999999999" x2="114.99999999999984" y1="86.02325299999997" y2="33.50888218183843"/>
+  <line stroke="#000000" x1="97.49520972727937" x2="114.9999999999999" y1="86.02325300000005" y2="86.02325300000004"/>
+  <line stroke="#000000" x1="97.49520972727932" x2="97.49520972727937" y1="33.508882181838466" y2="86.02325300000005"/>
+  <line stroke="#000000" x1="114.99999999999984" x2="97.49520972727932" y1="33.50888218183843" y2="33.508882181838466"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.99999999999997" x2="165.41765779766345" y1="86.02325299999997" y2="18.81810532610078"/>
+  <line stroke="#000000" x1="165.41765779766345" x2="114.99999999999984" y1="18.81810532610078" y2="33.50888218183843"/>
+  <line stroke="#000000" x1="215.83531559532696" x2="165.41765779766342" y1="4.127328470363154" y2="18.81810532610078"/>
+  <line stroke="#000000" x1="229.99999999999986" x2="215.83531559532696" y1="3.2957356665974663e-07" y2="4.127328470363154"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="229.99999999999986" x2="184.99999999999994" y1="3.2957356665974663e-07" y2="86.02325299999997"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="229.99999999999994" x2="184.99999999999994" y1="86.02325299999991" y2="86.02325299999997"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.0" x2="229.99999999999994" y1="86.02325299999983" y2="86.02325299999988"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="229.99999999999983" x2="275.0" y1="3.2957356665974663e-07" y2="86.02325299999983"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="294.5823422023363" x2="275.0" y1="18.818105326100554" y2="86.02325299999981"/>
+  <line stroke="#000000" x1="244.16468440467267" x2="229.99999999999983" y1="4.127328470363068" y2="3.2957353823803714e-07"/>
+  <line stroke="#000000" x1="294.5823422023363" x2="244.16468440467267" y1="18.818105326100554" y2="4.127328470363068"/>
+  <line stroke="#000000" x1="344.99999999999994" x2="294.5823422023363" y1="33.50888218183806" y2="18.81810532610058"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.99999999999994" x2="275.0" y1="33.50888218183806" y2="86.02325299999983"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0" x2="274.99999999999994" y1="86.02325299999968" y2="86.02325299999983"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.9999999999999" x2="345.0" y1="33.50888218183806" y2="86.02325299999968"/>
+  <line stroke="#000000" x1="362.5047902727204" x2="344.99999999999994" y1="33.50888218183804" y2="33.50888218183806"/>
+  <line stroke="#000000" x1="362.5047902727205" x2="362.5047902727204" y1="86.02325299999966" y2="33.50888218183804"/>
+  <line stroke="#000000" x1="345.0" x2="362.5047902727205" y1="86.02325299999968" y2="86.02325299999966"/>
+  <line stroke="#000000" x1="97.4952097272796" x2="115.00000000000013" y1="322.53762381816176" y2="322.53762381816176"/>
+  <line stroke="#000000" x1="97.49520972727954" x2="97.4952097272796" y1="270.0232530000002" y2="322.53762381816176"/>
+  <line stroke="#000000" x1="115.00000000000007" x2="97.49520972727954" y1="270.0232530000002" y2="270.0232530000002"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="415.00000000000017" y1="166.023253" y2="146.023253"/>
   <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="146.023253" y2="166.023253"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="379.00000000000017" x2="345.0000000000001" y1="146.023253" y2="146.023253"/>
-  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="146.023253" y2="122.02325300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="415.00000000000017" x2="345.0000000000001" y1="146.023253" y2="146.023253"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="415.00000000000017" y1="146.023253" y2="122.02325300000003"/>
   <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="122.02325300000003" y2="146.023253"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="379.00000000000017" x2="345.0000000000001" y1="122.02325300000003" y2="122.02325300000003"/>
-  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="122.02325300000003" y2="102.02325300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="415.00000000000017" x2="345.0000000000001" y1="122.02325300000003" y2="122.02325300000003"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="415.00000000000017" y1="122.02325300000003" y2="102.02325300000003"/>
   <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="102.02325300000003" y2="122.02325300000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0000000000001" x2="379.00000000000017" y1="102.02325300000003" y2="102.02325300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0000000000001" x2="415.00000000000017" y1="102.02325300000003" y2="102.02325300000003"/>
   <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="92.02325300000001" y2="102.02325300000003"/>
-  <line stroke="#000000" x1="379.00000000000017" x2="345.0000000000001" y1="92.02325300000001" y2="92.02325300000001"/>
-  <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="102.02325300000003" y2="92.02325300000001"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="345.0000000000001" y1="92.02325300000001" y2="92.02325300000001"/>
+  <line stroke="#000000" x1="415.00000000000017" x2="415.00000000000017" y1="102.02325300000003" y2="92.02325300000001"/>
   <line stroke="#888888" x1="463.7500000000001" x2="463.7500000000001" y1="182.023253" y2="184.523253"/>
   <line stroke="#888888" x1="463.7500000000001" x2="461.25000000000017" y1="184.523253" y2="182.023253"/>
   <line stroke="#888888" x1="461.25000000000017" x2="461.25000000000017" y1="182.023253" y2="174.02325300000004"/>
   <line stroke="#888888" x1="461.25000000000017" x2="463.7500000000001" y1="174.02325300000004" y2="171.52325300000004"/>
   <line stroke="#888888" x1="463.7500000000001" x2="463.7500000000001" y1="171.52325300000004" y2="174.02325300000004"/>
-  <line stroke="#888888" x1="356.0833333333335" x2="367.9166666666668" y1="182.273253" y2="182.273253"/>
-  <line stroke="#888888" x1="367.9166666666668" x2="367.9166666666668" y1="182.273253" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="367.9166666666668" x2="356.0833333333335" y1="182.77325300000004" y2="182.77325300000004"/>
-  <line stroke="#888888" x1="356.0833333333335" x2="356.0833333333335" y1="182.77325300000004" y2="182.273253"/>
-  <line stroke="#888888" x1="358.1285927045405" x2="349.3761975681803" y1="275.03283354544106" y2="275.03283354544106"/>
-  <line stroke="#888888" x1="349.3761975681803" x2="349.3761975681803" y1="275.03283354544106" y2="257.52804327272054"/>
-  <line stroke="#888888" x1="349.3761975681803" x2="358.1285927045405" y1="257.52804327272054" y2="257.52804327272054"/>
-  <line stroke="#888888" x1="256.9879208023066" x2="274.2738435039604" y1="304.247756013529" y2="299.210956522076"/>
-  <line stroke="#888888" x1="274.2738435039604" x2="274.41371737683426" y1="299.210956522076" y2="299.69099329117523"/>
-  <line stroke="#888888" x1="274.41371737683426" x2="257.1277946751804" y1="299.69099329117523" y2="304.7277927826283"/>
-  <line stroke="#888888" x1="257.1277946751804" x2="256.9879208023066" y1="304.7277927826283" y2="304.247756013529"/>
-  <line stroke="#888888" x1="185.72615649603986" x2="203.0120791976937" y1="299.210956522076" y2="304.247756013529"/>
-  <line stroke="#888888" x1="203.0120791976937" x2="202.87220532481987" y1="304.247756013529" y2="304.72779278262834"/>
-  <line stroke="#888888" x1="202.87220532481987" x2="185.58628262316603" y1="304.72779278262834" y2="299.69099329117523"/>
-  <line stroke="#888888" x1="185.58628262316603" x2="185.72615649603986" y1="299.69099329117523" y2="299.210956522076"/>
-  <line stroke="#888888" x1="92.08333333333333" x2="103.9166666666667" y1="182.27325300000015" y2="182.27325300000015"/>
-  <line stroke="#888888" x1="103.9166666666667" x2="103.9166666666667" y1="182.27325300000015" y2="182.77325300000015"/>
-  <line stroke="#888888" x1="103.9166666666667" x2="92.08333333333333" y1="182.77325300000015" y2="182.77325300000015"/>
-  <line stroke="#888888" x1="92.08333333333333" x2="92.08333333333333" y1="182.77325300000015" y2="182.27325300000015"/>
-  <line stroke="#888888" x1="4.000000000000001" x2="4.000000000000001" y1="173.77325300000024" y2="182.27325300000024"/>
-  <line stroke="#888888" x1="4.000000000000001" x2="3.5000000000000004" y1="182.27325300000024" y2="182.27325300000024"/>
-  <line stroke="#888888" x1="3.5000000000000004" x2="3.5000000000000004" y1="182.27325300000024" y2="173.77325300000024"/>
-  <line stroke="#888888" x1="3.5000000000000004" x2="4.000000000000001" y1="173.77325300000024" y2="173.77325300000024"/>
-  <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="147.02325300000012" y2="151.02325300000012"/>
-  <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="151.02325300000012" y2="151.02325300000015"/>
-  <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="151.02325300000015" y2="147.02325300000012"/>
-  <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="147.02325300000012" y2="147.02325300000012"/>
-  <line stroke="#888888" x1="102.50000000000001" x2="102.50000000000001" y1="159.0232530000001" y2="163.02325300000012"/>
-  <line stroke="#888888" x1="102.50000000000001" x2="93.50000000000001" y1="163.02325300000012" y2="163.02325300000012"/>
-  <line stroke="#888888" x1="93.50000000000001" x2="93.50000000000001" y1="163.02325300000012" y2="159.0232530000001"/>
-  <line stroke="#888888" x1="93.50000000000001" x2="102.50000000000001" y1="159.0232530000001" y2="159.0232530000001"/>
-  <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="122.52325300000011" y2="145.5232530000001"/>
-  <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="145.5232530000001" y2="145.52325300000012"/>
-  <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="145.52325300000012" y2="122.52325300000011"/>
-  <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="122.52325300000011" y2="122.52325300000011"/>
-  <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="117.02325300000011" y2="121.02325300000011"/>
-  <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="121.02325300000011" y2="121.02325300000011"/>
-  <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="121.02325300000011" y2="117.02325300000011"/>
-  <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="117.02325300000011" y2="117.02325300000011"/>
-  <line stroke="#888888" x1="103.6666666666667" x2="103.6666666666667" y1="94.5232530000001" y2="99.5232530000001"/>
-  <line stroke="#888888" x1="103.6666666666667" x2="92.33333333333331" y1="99.5232530000001" y2="99.52325300000011"/>
-  <line stroke="#888888" x1="92.33333333333331" x2="92.33333333333331" y1="99.52325300000011" y2="94.52325300000011"/>
-  <line stroke="#888888" x1="101.87140729545952" x2="110.62380243181975" y1="51.01367245455902" y2="51.01367245455902"/>
-  <line stroke="#888888" x1="110.62380243181975" x2="110.6238024318198" y1="51.01367245455902" y2="68.51846272727956"/>
-  <line stroke="#888888" x1="110.6238024318198" x2="101.87140729545958" y1="68.51846272727956" y2="68.51846272727956"/>
-  <line stroke="#888888" x1="203.01207919769348" x2="185.7261564960397" y1="21.798749986471023" y2="26.83554947792408"/>
-  <line stroke="#888888" x1="185.7261564960397" x2="185.58628262316586" y1="26.83554947792408" y2="26.355512708824794"/>
-  <line stroke="#888888" x1="185.58628262316586" x2="202.87220532481965" y1="26.355512708824794" y2="21.318713217371737"/>
-  <line stroke="#888888" x1="202.87220532481965" x2="203.01207919769348" y1="21.318713217371737" y2="21.798749986471023"/>
-  <line stroke="#888888" x1="274.27384350396017" x2="256.9879208023064" y1="26.83554947792391" y2="21.79874998647091"/>
-  <line stroke="#888888" x1="256.9879208023064" x2="257.1277946751802" y1="21.79874998647091" y2="21.318713217371627"/>
-  <line stroke="#888888" x1="257.1277946751802" x2="274.413717376834" y1="21.318713217371627" y2="26.355512708824623"/>
-  <line stroke="#888888" x1="274.413717376834" x2="274.27384350396017" y1="26.355512708824623" y2="26.83554947792391"/>
-  <line stroke="#888888" x1="358.1285927045404" x2="349.37619756818015" y1="68.51846272727916" y2="68.51846272727917"/>
-  <line stroke="#888888" x1="349.37619756818015" x2="349.37619756818015" y1="68.51846272727917" y2="51.013672454558645"/>
-  <line stroke="#888888" x1="349.37619756818015" x2="358.1285927045404" y1="51.013672454558645" y2="51.01367245455863"/>
-  <line stroke="#888888" x1="101.87140729545968" x2="110.62380243181993" y1="257.52804327272065" y2="257.52804327272065"/>
-  <line stroke="#888888" x1="110.62380243181993" x2="110.62380243181998" y1="257.52804327272065" y2="275.0328335454412"/>
-  <line stroke="#888888" x1="110.62380243181998" x2="101.87140729545975" y1="275.0328335454412" y2="275.03283354544124"/>
-  <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="147.02325300000004" y2="151.02325300000004"/>
-  <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="151.02325300000004" y2="151.02325300000004"/>
-  <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="151.02325300000004" y2="147.02325300000004"/>
-  <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="147.02325300000004" y2="147.02325300000004"/>
-  <line stroke="#888888" x1="366.50000000000017" x2="366.50000000000017" y1="159.023253" y2="163.02325300000004"/>
-  <line stroke="#888888" x1="366.50000000000017" x2="357.50000000000017" y1="163.02325300000004" y2="163.02325300000004"/>
-  <line stroke="#888888" x1="357.50000000000017" x2="357.50000000000017" y1="163.02325300000004" y2="159.023253"/>
-  <line stroke="#888888" x1="357.50000000000017" x2="366.50000000000017" y1="159.023253" y2="159.023253"/>
-  <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="122.52325300000003" y2="145.523253"/>
-  <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="145.523253" y2="145.523253"/>
-  <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="145.523253" y2="122.52325300000003"/>
-  <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="122.52325300000003" y2="122.52325300000003"/>
-  <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="117.02325300000003" y2="121.02325300000003"/>
-  <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="121.02325300000003" y2="121.02325300000003"/>
-  <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="121.02325300000003" y2="117.02325300000003"/>
-  <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="117.02325300000003" y2="117.02325300000003"/>
-  <line stroke="#888888" x1="367.6666666666668" x2="367.6666666666668" y1="94.52325300000001" y2="99.52325300000003"/>
-  <line stroke="#888888" x1="367.6666666666668" x2="356.3333333333335" y1="99.52325300000003" y2="99.52325300000003"/>
-  <line stroke="#888888" x1="356.3333333333335" x2="356.3333333333335" y1="99.52325300000003" y2="94.52325300000001"/>
+  <line stroke="#888888" x1="389.29545454545473" x2="402.5227272727274" y1="182.273253" y2="182.273253"/>
+  <line stroke="#888888" x1="402.5227272727274" x2="402.5227272727274" y1="182.273253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="402.5227272727274" x2="389.29545454545473" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="389.29545454545473" x2="389.29545454545473" y1="182.77325300000004" y2="182.273253"/>
+  <line stroke="#888888" x1="357.47727272727286" x2="370.70454545454555" y1="182.273253" y2="182.273253"/>
+  <line stroke="#888888" x1="370.70454545454555" x2="370.70454545454555" y1="182.273253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="370.70454545454555" x2="357.47727272727286" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="357.47727272727286" x2="357.47727272727286" y1="182.77325300000004" y2="182.273253"/>
+  <line stroke="#888888" x1="358.1285927045405" x2="349.3761975681803" y1="305.0328335454411" y2="305.0328335454411"/>
+  <line stroke="#888888" x1="349.3761975681803" x2="349.3761975681803" y1="305.0328335454411" y2="287.5280432727206"/>
+  <line stroke="#888888" x1="349.3761975681803" x2="358.1285927045405" y1="287.5280432727206" y2="287.5280432727206"/>
+  <line stroke="#888888" x1="256.9879208023066" x2="274.2738435039604" y1="334.247756013529" y2="329.2109565220759"/>
+  <line stroke="#888888" x1="274.2738435039604" x2="274.4137173768342" y1="329.2109565220759" y2="329.6909932911753"/>
+  <line stroke="#888888" x1="274.4137173768342" x2="257.1277946751804" y1="329.6909932911753" y2="334.7277927826282"/>
+  <line stroke="#888888" x1="257.1277946751804" x2="256.9879208023066" y1="334.7277927826282" y2="334.247756013529"/>
+  <line stroke="#888888" x1="185.72615649603986" x2="203.0120791976937" y1="329.21095652207595" y2="334.247756013529"/>
+  <line stroke="#888888" x1="203.0120791976937" x2="202.87220532481987" y1="334.247756013529" y2="334.7277927826283"/>
+  <line stroke="#888888" x1="202.87220532481987" x2="185.58628262316603" y1="334.7277927826283" y2="329.6909932911753"/>
+  <line stroke="#888888" x1="185.58628262316603" x2="185.72615649603986" y1="329.6909932911753" y2="329.21095652207595"/>
+  <line stroke="#888888" x1="89.29545454545456" x2="102.52272727272727" y1="182.27325300000012" y2="182.27325300000012"/>
+  <line stroke="#888888" x1="102.52272727272727" x2="102.52272727272727" y1="182.27325300000012" y2="182.77325300000012"/>
+  <line stroke="#888888" x1="102.52272727272727" x2="89.29545454545456" y1="182.77325300000012" y2="182.77325300000012"/>
+  <line stroke="#888888" x1="89.29545454545456" x2="89.29545454545456" y1="182.77325300000012" y2="182.27325300000012"/>
+  <line stroke="#888888" x1="57.477272727272755" x2="70.70454545454545" y1="182.27325300000015" y2="182.27325300000015"/>
+  <line stroke="#888888" x1="70.70454545454545" x2="70.70454545454545" y1="182.27325300000015" y2="182.77325300000015"/>
+  <line stroke="#888888" x1="70.70454545454545" x2="57.477272727272755" y1="182.77325300000015" y2="182.77325300000015"/>
+  <line stroke="#888888" x1="57.477272727272755" x2="57.477272727272755" y1="182.77325300000015" y2="182.27325300000015"/>
+  <line stroke="#888888" x1="4.000000000000001" x2="4.000000000000001" y1="173.7732530000002" y2="182.2732530000002"/>
+  <line stroke="#888888" x1="4.000000000000001" x2="3.5000000000000004" y1="182.2732530000002" y2="182.2732530000002"/>
+  <line stroke="#888888" x1="3.5000000000000004" x2="3.5000000000000004" y1="182.2732530000002" y2="173.7732530000002"/>
+  <line stroke="#888888" x1="3.5000000000000004" x2="4.000000000000001" y1="173.7732530000002" y2="173.7732530000002"/>
+  <line stroke="#888888" x1="85.99999999999996" x2="85.99999999999996" y1="147.02325300000012" y2="151.02325300000012"/>
+  <line stroke="#888888" x1="85.99999999999996" x2="73.99999999999994" y1="151.02325300000012" y2="151.02325300000012"/>
+  <line stroke="#888888" x1="73.99999999999994" x2="73.99999999999994" y1="151.02325300000012" y2="147.02325300000012"/>
+  <line stroke="#888888" x1="73.99999999999994" x2="85.99999999999996" y1="147.02325300000012" y2="147.02325300000012"/>
+  <line stroke="#888888" x1="84.49999999999994" x2="84.49999999999994" y1="159.0232530000001" y2="163.02325300000012"/>
+  <line stroke="#888888" x1="84.49999999999994" x2="75.49999999999994" y1="163.02325300000012" y2="163.02325300000012"/>
+  <line stroke="#888888" x1="75.49999999999994" x2="75.49999999999994" y1="163.02325300000012" y2="159.0232530000001"/>
+  <line stroke="#888888" x1="75.49999999999994" x2="84.49999999999994" y1="159.0232530000001" y2="159.0232530000001"/>
+  <line stroke="#888888" x1="85.99999999999996" x2="85.99999999999996" y1="122.52325300000011" y2="145.5232530000001"/>
+  <line stroke="#888888" x1="85.99999999999996" x2="73.99999999999994" y1="145.5232530000001" y2="145.5232530000001"/>
+  <line stroke="#888888" x1="73.99999999999994" x2="73.99999999999994" y1="145.5232530000001" y2="122.52325300000011"/>
+  <line stroke="#888888" x1="73.99999999999994" x2="85.99999999999996" y1="122.52325300000011" y2="122.52325300000011"/>
+  <line stroke="#888888" x1="85.99999999999996" x2="85.99999999999996" y1="117.02325300000008" y2="121.0232530000001"/>
+  <line stroke="#888888" x1="85.99999999999996" x2="73.99999999999994" y1="121.0232530000001" y2="121.02325300000011"/>
+  <line stroke="#888888" x1="73.99999999999994" x2="73.99999999999994" y1="121.02325300000011" y2="117.02325300000011"/>
+  <line stroke="#888888" x1="73.99999999999994" x2="85.99999999999996" y1="117.02325300000011" y2="117.02325300000008"/>
+  <line stroke="#888888" x1="102.27272727272721" x2="107.27272727272721" y1="94.52325300000007" y2="94.52325300000007"/>
+  <line stroke="#888888" x1="107.27272727272721" x2="102.27272727272721" y1="94.52325300000007" y2="99.52325300000007"/>
+  <line stroke="#888888" x1="102.27272727272721" x2="89.5454545454545" y1="99.52325300000007" y2="99.52325300000008"/>
+  <line stroke="#888888" x1="89.5454545454545" x2="84.54545454545452" y1="99.52325300000008" y2="94.52325300000008"/>
+  <line stroke="#888888" x1="84.54545454545452" x2="89.5454545454545" y1="94.52325300000008" y2="94.52325300000008"/>
+  <line stroke="#888888" x1="70.45454545454538" x2="75.4545454545454" y1="94.5232530000001" y2="94.5232530000001"/>
+  <line stroke="#888888" x1="75.4545454545454" x2="70.45454545454538" y1="94.5232530000001" y2="99.5232530000001"/>
+  <line stroke="#888888" x1="70.45454545454538" x2="57.72727272727264" y1="99.5232530000001" y2="99.52325300000011"/>
+  <line stroke="#888888" x1="57.72727272727264" x2="52.72727272727264" y1="99.52325300000011" y2="94.52325300000011"/>
+  <line stroke="#888888" x1="52.72727272727264" x2="57.72727272727264" y1="94.52325300000011" y2="94.52325300000011"/>
+  <line stroke="#888888" x1="101.87140729545946" x2="110.6238024318197" y1="51.013672454558964" y2="51.013672454558964"/>
+  <line stroke="#888888" x1="110.6238024318197" x2="110.62380243181975" y1="51.013672454558964" y2="68.5184627272795"/>
+  <line stroke="#888888" x1="110.62380243181975" x2="101.87140729545952" y1="68.5184627272795" y2="68.5184627272795"/>
+  <line stroke="#888888" x1="203.01207919769342" x2="185.72615649603964" y1="21.798749986470966" y2="26.835549477924022"/>
+  <line stroke="#888888" x1="185.72615649603964" x2="185.5862826231658" y1="26.835549477924022" y2="26.355512708824737"/>
+  <line stroke="#888888" x1="185.5862826231658" x2="202.8722053248196" y1="26.355512708824737" y2="21.318713217371684"/>
+  <line stroke="#888888" x1="202.8722053248196" x2="203.01207919769342" y1="21.318713217371684" y2="21.798749986470966"/>
+  <line stroke="#888888" x1="274.27384350396005" x2="256.9879208023063" y1="26.835549477923852" y2="21.798749986470856"/>
+  <line stroke="#888888" x1="256.9879208023063" x2="257.12779467518016" y1="21.798749986470856" y2="21.31871321737157"/>
+  <line stroke="#888888" x1="257.12779467518016" x2="274.4137173768339" y1="21.31871321737157" y2="26.355512708824563"/>
+  <line stroke="#888888" x1="274.4137173768339" x2="274.27384350396005" y1="26.355512708824563" y2="26.835549477923852"/>
+  <line stroke="#888888" x1="358.1285927045404" x2="349.3761975681801" y1="68.5184627272791" y2="68.51846272727911"/>
+  <line stroke="#888888" x1="349.3761975681801" x2="349.3761975681801" y1="68.51846272727911" y2="51.013672454558595"/>
+  <line stroke="#888888" x1="349.3761975681801" x2="358.1285927045403" y1="51.013672454558595" y2="51.01367245455858"/>
+  <line stroke="#888888" x1="101.87140729545968" x2="110.62380243181993" y1="287.5280432727207" y2="287.5280432727207"/>
+  <line stroke="#888888" x1="110.62380243181993" x2="110.62380243181998" y1="287.5280432727207" y2="305.03283354544124"/>
+  <line stroke="#888888" x1="110.62380243181998" x2="101.87140729545975" y1="305.03283354544124" y2="305.03283354544124"/>
+  <line stroke="#888888" x1="386.0000000000001" x2="386.0000000000001" y1="147.02325300000004" y2="151.02325300000004"/>
+  <line stroke="#888888" x1="386.0000000000001" x2="374.00000000000017" y1="151.02325300000004" y2="151.02325300000004"/>
+  <line stroke="#888888" x1="374.00000000000017" x2="374.00000000000017" y1="151.02325300000004" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="374.00000000000017" x2="386.0000000000001" y1="147.02325300000004" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="384.50000000000017" x2="384.50000000000017" y1="159.023253" y2="163.02325300000004"/>
+  <line stroke="#888888" x1="384.50000000000017" x2="375.50000000000017" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#888888" x1="375.50000000000017" x2="375.50000000000017" y1="163.02325300000004" y2="159.023253"/>
+  <line stroke="#888888" x1="375.50000000000017" x2="384.50000000000017" y1="159.023253" y2="159.023253"/>
+  <line stroke="#888888" x1="386.0000000000001" x2="386.0000000000001" y1="122.52325300000003" y2="145.523253"/>
+  <line stroke="#888888" x1="386.0000000000001" x2="374.00000000000017" y1="145.523253" y2="145.523253"/>
+  <line stroke="#888888" x1="374.00000000000017" x2="374.00000000000017" y1="145.523253" y2="122.52325300000003"/>
+  <line stroke="#888888" x1="374.00000000000017" x2="386.0000000000001" y1="122.52325300000003" y2="122.52325300000003"/>
+  <line stroke="#888888" x1="386.0000000000001" x2="386.0000000000001" y1="117.02325300000003" y2="121.02325300000003"/>
+  <line stroke="#888888" x1="386.0000000000001" x2="374.00000000000017" y1="121.02325300000003" y2="121.02325300000003"/>
+  <line stroke="#888888" x1="374.00000000000017" x2="374.00000000000017" y1="121.02325300000003" y2="117.02325300000003"/>
+  <line stroke="#888888" x1="374.00000000000017" x2="386.0000000000001" y1="117.02325300000003" y2="117.02325300000003"/>
+  <line stroke="#888888" x1="402.2727272727274" x2="407.2727272727274" y1="94.52325300000001" y2="94.52325300000001"/>
+  <line stroke="#888888" x1="407.2727272727274" x2="402.2727272727274" y1="94.52325300000001" y2="99.52325300000003"/>
+  <line stroke="#888888" x1="402.2727272727274" x2="389.54545454545473" y1="99.52325300000003" y2="99.52325300000003"/>
+  <line stroke="#888888" x1="389.54545454545473" x2="384.54545454545473" y1="99.52325300000003" y2="94.52325300000001"/>
+  <line stroke="#888888" x1="384.54545454545473" x2="389.54545454545473" y1="94.52325300000001" y2="94.52325300000001"/>
+  <line stroke="#888888" x1="370.4545454545456" x2="375.45454545454555" y1="94.52325300000001" y2="94.52325300000001"/>
+  <line stroke="#888888" x1="375.45454545454555" x2="370.4545454545456" y1="94.52325300000001" y2="99.52325300000003"/>
+  <line stroke="#888888" x1="370.4545454545456" x2="357.72727272727286" y1="99.52325300000003" y2="99.52325300000003"/>
+  <line stroke="#888888" x1="357.72727272727286" x2="352.7272727272729" y1="99.52325300000003" y2="94.52325300000001"/>
+  <line stroke="#888888" x1="352.7272727272729" x2="357.72727272727286" y1="94.52325300000001" y2="94.52325300000001"/>
 </svg>
diff --git a/rocolib/output/BoatWithServoMount/graph-model.png b/rocolib/output/BoatWithServoMount/graph-model.png
index 508527523e31627a5652282620491d098f82cded..affeacd51b668d2bf28b239c6e4b0b7b569522b7 100644
Binary files a/rocolib/output/BoatWithServoMount/graph-model.png and b/rocolib/output/BoatWithServoMount/graph-model.png differ
diff --git a/rocolib/output/BoatWithServoMount/graph-model.stl b/rocolib/output/BoatWithServoMount/graph-model.stl
index 074ff5f00ca46afb46d619082b3f8e7a2e2d299b..6d4a804532b94136402028842759aca42457b031 100644
--- a/rocolib/output/BoatWithServoMount/graph-model.stl
+++ b/rocolib/output/BoatWithServoMount/graph-model.stl
@@ -1,786 +1,758 @@
 solid python
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.0000
-vertex -0.0180 -0.0120 0.0000
-vertex 0.0180 -0.0120 0.0000
+vertex 0.0000 -0.0800 -0.0000
+vertex 0.0000 0.1040 0.0000
+vertex 0.0000 0.1040 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0120 0.0000
-vertex 0.0180 0.0120 0.0000
-vertex -0.0180 0.0120 0.0000
+vertex 0.0000 0.1040 0.0900
+vertex 0.0000 -0.0800 0.0900
+vertex 0.0000 -0.0800 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 0.0900
-vertex -0.0180 0.0120 0.0900
-vertex 0.0180 0.0120 0.0900
+vertex -0.0700 -0.0800 0.0000
+vertex -0.0700 0.1040 0.0000
+vertex 0.0000 0.1040 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0120 0.0900
-vertex 0.0180 -0.0120 0.0900
-vertex -0.0180 -0.0120 0.0900
+vertex 0.0000 0.1040 -0.0000
+vertex 0.0000 -0.0800 -0.0000
+vertex -0.0700 -0.0800 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0920 -0.0000
-vertex 0.0180 0.0620 0.0000
-vertex 0.0180 0.0620 0.0900
+vertex 0.0000 -0.0800 0.0900
+vertex 0.0000 0.1040 0.0900
+vertex -0.0700 0.1040 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0620 0.0900
-vertex 0.0180 -0.0920 0.0900
-vertex 0.0180 -0.0920 -0.0000
+vertex -0.0700 0.1040 0.0900
+vertex -0.0700 -0.0800 0.0900
+vertex 0.0000 -0.0800 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0920 0.0000
-vertex -0.0520 0.0620 0.0000
-vertex 0.0180 0.0620 -0.0000
+vertex 0.0000 0.1040 -0.0000
+vertex -0.0700 0.1040 -0.0000
+vertex -0.0700 0.1430 0.0351
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0620 -0.0000
-vertex 0.0180 -0.0920 -0.0000
-vertex -0.0520 -0.0920 0.0000
+vertex -0.0700 0.1430 0.0351
+vertex -0.0700 0.1540 0.0450
+vertex 0.0000 0.1040 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0920 0.0900
-vertex 0.0180 0.0620 0.0900
-vertex -0.0520 0.0620 0.0900
+vertex 0.0000 0.1040 0.0450
+vertex 0.0000 0.1040 -0.0000
+vertex -0.0700 0.1540 0.0450
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0620 0.0900
-vertex -0.0520 -0.0920 0.0900
-vertex 0.0180 -0.0920 0.0900
+vertex 0.0000 0.1040 0.0450
+vertex -0.0700 0.1540 0.0450
+vertex 0.0000 0.1040 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0620 -0.0000
-vertex -0.0520 0.0620 -0.0000
-vertex -0.0520 0.1010 0.0351
+vertex -0.0700 0.1430 0.0549
+vertex -0.0700 0.1040 0.0900
+vertex 0.0000 0.1040 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.1010 0.0351
-vertex -0.0520 0.1120 0.0450
-vertex 0.0180 0.0620 -0.0000
+vertex 0.0000 0.1040 0.0900
+vertex -0.0700 0.1540 0.0450
+vertex -0.0700 0.1430 0.0549
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0620 0.0450
-vertex 0.0180 0.0620 -0.0000
-vertex -0.0520 0.1120 0.0450
+vertex -0.0700 0.1040 -0.0000
+vertex 0.0000 0.1040 -0.0000
+vertex -0.0700 0.1430 0.0351
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0620 0.0450
-vertex -0.0520 0.1120 0.0450
-vertex 0.0180 0.0620 0.0900
+vertex -0.0700 0.1040 0.0000
+vertex -0.0700 0.1430 0.0351
+vertex 0.0000 0.1040 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.1010 0.0549
-vertex -0.0520 0.0620 0.0900
-vertex 0.0180 0.0620 0.0900
+vertex -0.0700 0.1040 0.0900
+vertex -0.0700 0.1430 0.0549
+vertex 0.0000 0.1040 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0620 0.0900
-vertex -0.0520 0.1120 0.0450
-vertex -0.0520 0.1010 0.0549
+vertex -0.0700 0.1040 0.0900
+vertex 0.0000 0.1040 0.0900
+vertex -0.0700 0.1430 0.0549
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0620 -0.0000
-vertex 0.0180 0.0620 -0.0000
-vertex -0.0520 0.1010 0.0351
+vertex 0.0000 -0.0800 0.0900
+vertex -0.0700 -0.0800 0.0900
+vertex -0.0700 -0.1190 0.0549
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0620 0.0000
-vertex -0.0520 0.1010 0.0351
-vertex 0.0180 0.0620 -0.0000
+vertex -0.0700 -0.1190 0.0549
+vertex -0.0700 -0.1300 0.0450
+vertex 0.0000 -0.0800 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0620 0.0900
-vertex -0.0520 0.1010 0.0549
-vertex 0.0180 0.0620 0.0900
+vertex 0.0000 -0.0800 0.0450
+vertex 0.0000 -0.0800 0.0900
+vertex -0.0700 -0.1300 0.0450
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0620 0.0900
-vertex 0.0180 0.0620 0.0900
-vertex -0.0520 0.1010 0.0549
+vertex 0.0000 -0.0800 0.0450
+vertex -0.0700 -0.1300 0.0450
+vertex 0.0000 -0.0800 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0920 0.0900
-vertex -0.0520 -0.0920 0.0900
-vertex -0.0520 -0.1310 0.0549
+vertex -0.0700 -0.1190 0.0351
+vertex -0.0700 -0.0800 -0.0000
+vertex 0.0000 -0.0800 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.1310 0.0549
-vertex -0.0520 -0.1420 0.0450
-vertex 0.0180 -0.0920 0.0900
+vertex 0.0000 -0.0800 -0.0000
+vertex -0.0700 -0.1300 0.0450
+vertex -0.0700 -0.1190 0.0351
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0920 0.0450
-vertex 0.0180 -0.0920 0.0900
-vertex -0.0520 -0.1420 0.0450
+vertex -0.0700 -0.0800 0.0900
+vertex 0.0000 -0.0800 0.0900
+vertex -0.0700 -0.1190 0.0549
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0920 0.0450
-vertex -0.0520 -0.1420 0.0450
-vertex 0.0180 -0.0920 -0.0000
+vertex -0.0700 -0.0800 0.0900
+vertex -0.0700 -0.1190 0.0549
+vertex 0.0000 -0.0800 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.1310 0.0351
-vertex -0.0520 -0.0920 -0.0000
-vertex 0.0180 -0.0920 -0.0000
+vertex -0.0700 -0.0800 -0.0000
+vertex -0.0700 -0.1190 0.0351
+vertex 0.0000 -0.0800 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0920 -0.0000
-vertex -0.0520 -0.1420 0.0450
-vertex -0.0520 -0.1310 0.0351
+vertex -0.0700 -0.0800 -0.0000
+vertex 0.0000 -0.0800 -0.0000
+vertex -0.0700 -0.1190 0.0351
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0920 0.0900
-vertex 0.0180 -0.0920 0.0900
-vertex -0.0520 -0.1310 0.0549
+vertex 0.0000 0.0000 0.0450
+vertex 0.0000 0.0240 0.0450
+vertex 0.0000 0.0240 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0920 0.0900
-vertex -0.0520 -0.1310 0.0549
-vertex 0.0180 -0.0920 0.0900
+vertex 0.0000 0.0240 0.0000
+vertex 0.0000 0.0000 0.0000
+vertex 0.0000 0.0000 0.0450
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0920 -0.0000
-vertex -0.0520 -0.1310 0.0351
-vertex 0.0180 -0.0920 -0.0000
+vertex 0.0000 0.0240 0.0450
+vertex 0.0000 -0.0000 0.0450
+vertex 0.0000 -0.0000 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0920 -0.0000
-vertex 0.0180 -0.0920 -0.0000
-vertex -0.0520 -0.1310 0.0351
+vertex 0.0000 -0.0000 0.0900
+vertex 0.0000 0.0240 0.0900
+vertex 0.0000 0.0240 0.0450
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0120 0.0450
-vertex 0.0180 0.0120 0.0450
-vertex 0.0180 0.0120 0.0000
+vertex 0.0000 0.0240 -0.0000
+vertex -0.0290 0.0240 -0.0150
+vertex -0.0410 0.0240 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0120 0.0000
-vertex 0.0180 -0.0120 0.0000
-vertex 0.0180 -0.0120 0.0450
+vertex -0.0290 0.0240 -0.0150
+vertex 0.0000 0.0240 -0.0000
+vertex 0.0000 0.0240 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0120 0.0450
-vertex 0.0180 -0.0120 0.0450
-vertex 0.0180 -0.0120 0.0900
+vertex -0.0700 0.0240 -0.0000
+vertex -0.0410 0.0240 -0.0150
+vertex -0.0700 0.0240 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0120 0.0900
-vertex 0.0180 0.0120 0.0900
-vertex 0.0180 0.0120 0.0450
+vertex -0.0410 0.0240 -0.0150
+vertex -0.0700 0.0240 -0.0000
+vertex 0.0000 0.0240 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 -0.0000
-vertex -0.0290 0.0120 -0.0150
-vertex -0.0410 0.0120 -0.0150
+vertex -0.0290 0.0240 -0.0190
+vertex 0.0000 0.0240 -0.0200
+vertex -0.0700 0.0240 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0120 -0.0150
-vertex -0.0180 0.0120 -0.0000
-vertex -0.0180 0.0120 -0.0200
+vertex 0.0000 0.0240 -0.0200
+vertex -0.0290 0.0240 -0.0190
+vertex -0.0290 0.0240 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 -0.0000
-vertex -0.0410 0.0120 -0.0150
-vertex -0.0520 0.0120 -0.0200
+vertex -0.0410 0.0240 -0.0190
+vertex -0.0700 0.0240 -0.0200
+vertex -0.0410 0.0240 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0120 -0.0150
-vertex -0.0520 0.0120 -0.0000
-vertex -0.0180 0.0120 -0.0000
+vertex -0.0700 0.0240 -0.0200
+vertex -0.0410 0.0240 -0.0190
+vertex -0.0290 0.0240 -0.0190
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0120 -0.0190
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0520 0.0120 -0.0200
+vertex 0.0000 0.0240 -0.0200
+vertex -0.0290 0.0235 -0.0200
+vertex -0.0410 0.0235 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0290 0.0120 -0.0190
-vertex -0.0290 0.0120 -0.0150
+vertex -0.0290 0.0235 -0.0200
+vertex 0.0000 0.0240 -0.0200
+vertex 0.0000 -0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0120 -0.0190
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0410 0.0120 -0.0150
+vertex -0.0700 0.0240 -0.0200
+vertex -0.0410 0.0235 -0.0200
+vertex -0.0410 0.0005 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0410 0.0120 -0.0190
-vertex -0.0290 0.0120 -0.0190
+vertex -0.0410 0.0235 -0.0200
+vertex -0.0700 0.0240 -0.0200
+vertex 0.0000 0.0240 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0290 0.0115 -0.0200
-vertex -0.0410 0.0115 -0.0200
+vertex -0.0290 0.0005 -0.0200
+vertex 0.0000 -0.0000 -0.0200
+vertex -0.0700 -0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0115 -0.0200
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0180 -0.0120 -0.0200
+vertex 0.0000 -0.0000 -0.0200
+vertex -0.0290 0.0005 -0.0200
+vertex -0.0290 0.0235 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0410 0.0115 -0.0200
-vertex -0.0410 -0.0115 -0.0200
+vertex -0.0410 0.0005 -0.0200
+vertex -0.0700 -0.0000 -0.0200
+vertex -0.0700 0.0240 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0115 -0.0200
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0180 0.0120 -0.0200
+vertex -0.0700 -0.0000 -0.0200
+vertex -0.0410 0.0005 -0.0200
+vertex -0.0290 0.0005 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0115 -0.0200
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0520 -0.0120 -0.0200
+vertex 0.0000 -0.0000 -0.0200
+vertex -0.0290 -0.0000 -0.0150
+vertex -0.0290 -0.0000 -0.0190
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0290 -0.0115 -0.0200
-vertex -0.0290 0.0115 -0.0200
+vertex -0.0290 -0.0000 -0.0150
+vertex 0.0000 -0.0000 -0.0200
+vertex 0.0000 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0115 -0.0200
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0520 0.0120 -0.0200
+vertex 0.0000 -0.0000 -0.0200
+vertex -0.0290 -0.0000 -0.0190
+vertex -0.0410 -0.0000 -0.0190
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0410 -0.0115 -0.0200
-vertex -0.0290 -0.0115 -0.0200
+vertex -0.0700 -0.0000 -0.0200
+vertex -0.0410 -0.0000 -0.0190
+vertex -0.0410 -0.0000 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0290 -0.0120 -0.0150
-vertex -0.0290 -0.0120 -0.0190
+vertex -0.0410 -0.0000 -0.0190
+vertex -0.0700 -0.0000 -0.0200
+vertex 0.0000 -0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0120 -0.0150
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0180 -0.0120 0.0000
+vertex -0.0700 -0.0000 -0.0200
+vertex -0.0410 -0.0000 -0.0150
+vertex -0.0700 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0290 -0.0120 -0.0190
-vertex -0.0410 -0.0120 -0.0190
+vertex -0.0290 -0.0000 -0.0150
+vertex -0.0305 -0.0000 -0.0070
+vertex -0.0410 -0.0000 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0410 -0.0120 -0.0190
-vertex -0.0410 -0.0120 -0.0150
+vertex -0.0305 -0.0000 -0.0070
+vertex 0.0000 0.0000 0.0000
+vertex -0.0305 -0.0000 -0.0030
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0120 -0.0190
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0180 -0.0120 -0.0200
+vertex 0.0000 0.0000 0.0000
+vertex -0.0305 -0.0000 -0.0070
+vertex -0.0290 -0.0000 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0410 -0.0120 -0.0150
-vertex -0.0520 -0.0120 0.0000
+vertex -0.0305 -0.0000 -0.0030
+vertex 0.0000 0.0000 0.0000
+vertex -0.0700 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0120 -0.0150
-vertex -0.0305 -0.0120 -0.0070
-vertex -0.0410 -0.0120 -0.0150
+vertex -0.0395 -0.0000 -0.0070
+vertex -0.0395 -0.0000 -0.0030
+vertex -0.0700 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0305 -0.0120 -0.0070
-vertex -0.0180 -0.0120 0.0000
-vertex -0.0305 -0.0120 -0.0030
+vertex -0.0700 0.0000 0.0000
+vertex -0.0395 -0.0000 -0.0030
+vertex -0.0305 -0.0000 -0.0030
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 0.0000
-vertex -0.0305 -0.0120 -0.0070
-vertex -0.0290 -0.0120 -0.0150
+vertex -0.0395 -0.0000 -0.0070
+vertex -0.0700 0.0000 0.0000
+vertex -0.0410 -0.0000 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0305 -0.0120 -0.0030
-vertex -0.0180 -0.0120 0.0000
-vertex -0.0520 -0.0120 0.0000
+vertex -0.0305 -0.0000 -0.0070
+vertex -0.0395 -0.0000 -0.0070
+vertex -0.0410 -0.0000 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 -0.0120 -0.0070
-vertex -0.0395 -0.0120 -0.0030
-vertex -0.0520 -0.0120 0.0000
+vertex -0.0700 0.0000 0.0000
+vertex 0.0000 0.0000 0.0000
+vertex 0.0000 0.0240 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 0.0000
-vertex -0.0395 -0.0120 -0.0030
-vertex -0.0305 -0.0120 -0.0030
+vertex 0.0000 0.0240 0.0000
+vertex -0.0700 0.0240 0.0000
+vertex -0.0700 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 -0.0120 -0.0070
-vertex -0.0520 -0.0120 0.0000
-vertex -0.0410 -0.0120 -0.0150
+vertex -0.0700 0.0240 0.0900
+vertex -0.0410 0.0240 0.1050
+vertex -0.0290 0.0240 0.1050
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0305 -0.0120 -0.0070
-vertex -0.0395 -0.0120 -0.0070
-vertex -0.0410 -0.0120 -0.0150
+vertex -0.0410 0.0240 0.1050
+vertex -0.0700 0.0240 0.0900
+vertex -0.0700 0.0240 0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 0.0000
-vertex -0.0180 -0.0120 0.0000
-vertex -0.0180 0.0120 0.0000
+vertex 0.0000 0.0240 0.0900
+vertex -0.0290 0.0240 0.1050
+vertex 0.0000 0.0240 0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.0000
-vertex -0.0520 0.0120 0.0000
-vertex -0.0520 -0.0120 0.0000
+vertex -0.0290 0.0240 0.1050
+vertex 0.0000 0.0240 0.0900
+vertex -0.0700 0.0240 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 0.0900
-vertex -0.0410 0.0120 0.1050
-vertex -0.0290 0.0120 0.1050
+vertex -0.0410 0.0240 0.1090
+vertex -0.0700 0.0240 0.1100
+vertex 0.0000 0.0240 0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0120 0.1050
-vertex -0.0520 0.0120 0.0900
-vertex -0.0520 0.0120 0.1100
+vertex -0.0700 0.0240 0.1100
+vertex -0.0410 0.0240 0.1090
+vertex -0.0410 0.0240 0.1050
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.0900
-vertex -0.0290 0.0120 0.1050
-vertex -0.0180 0.0120 0.1100
+vertex -0.0290 0.0240 0.1090
+vertex 0.0000 0.0240 0.1100
+vertex -0.0290 0.0240 0.1050
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0120 0.1050
-vertex -0.0180 0.0120 0.0900
-vertex -0.0520 0.0120 0.0900
+vertex 0.0000 0.0240 0.1100
+vertex -0.0290 0.0240 0.1090
+vertex -0.0410 0.0240 0.1090
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0120 0.1090
-vertex -0.0520 0.0120 0.1100
-vertex -0.0180 0.0120 0.1100
+vertex -0.0700 0.0240 0.1100
+vertex -0.0410 0.0235 0.1100
+vertex -0.0290 0.0235 0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 0.1100
-vertex -0.0410 0.0120 0.1090
-vertex -0.0410 0.0120 0.1050
+vertex -0.0410 0.0235 0.1100
+vertex -0.0700 0.0240 0.1100
+vertex -0.0700 -0.0000 0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0120 0.1090
-vertex -0.0180 0.0120 0.1100
-vertex -0.0290 0.0120 0.1050
+vertex 0.0000 0.0240 0.1100
+vertex -0.0290 0.0235 0.1100
+vertex -0.0290 0.0005 0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.1100
-vertex -0.0290 0.0120 0.1090
-vertex -0.0410 0.0120 0.1090
+vertex -0.0290 0.0235 0.1100
+vertex 0.0000 0.0240 0.1100
+vertex -0.0700 0.0240 0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 0.1100
-vertex -0.0410 0.0115 0.1100
-vertex -0.0290 0.0115 0.1100
+vertex -0.0410 0.0005 0.1100
+vertex -0.0700 -0.0000 0.1100
+vertex 0.0000 -0.0000 0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0115 0.1100
-vertex -0.0520 0.0120 0.1100
-vertex -0.0520 -0.0120 0.1100
+vertex -0.0700 -0.0000 0.1100
+vertex -0.0410 0.0005 0.1100
+vertex -0.0410 0.0235 0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.1100
-vertex -0.0290 0.0115 0.1100
-vertex -0.0290 -0.0115 0.1100
+vertex -0.0290 0.0005 0.1100
+vertex 0.0000 -0.0000 0.1100
+vertex 0.0000 0.0240 0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0115 0.1100
-vertex -0.0180 0.0120 0.1100
-vertex -0.0520 0.0120 0.1100
+vertex 0.0000 -0.0000 0.1100
+vertex -0.0290 0.0005 0.1100
+vertex -0.0410 0.0005 0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0115 0.1100
-vertex -0.0520 -0.0120 0.1100
-vertex -0.0180 -0.0120 0.1100
+vertex -0.0700 -0.0000 0.1100
+vertex -0.0410 -0.0000 0.1050
+vertex -0.0410 -0.0000 0.1090
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 0.1100
-vertex -0.0410 -0.0115 0.1100
-vertex -0.0410 0.0115 0.1100
+vertex -0.0410 -0.0000 0.1050
+vertex -0.0700 -0.0000 0.1100
+vertex -0.0700 -0.0000 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0115 0.1100
-vertex -0.0180 -0.0120 0.1100
-vertex -0.0180 0.0120 0.1100
+vertex -0.0700 -0.0000 0.1100
+vertex -0.0410 -0.0000 0.1090
+vertex -0.0290 -0.0000 0.1090
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 0.1100
-vertex -0.0290 -0.0115 0.1100
-vertex -0.0410 -0.0115 0.1100
+vertex 0.0000 -0.0000 0.1100
+vertex -0.0290 -0.0000 0.1090
+vertex -0.0290 -0.0000 0.1050
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 0.1100
-vertex -0.0410 -0.0120 0.1050
-vertex -0.0410 -0.0120 0.1090
+vertex -0.0290 -0.0000 0.1090
+vertex 0.0000 -0.0000 0.1100
+vertex -0.0700 -0.0000 0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0120 0.1050
-vertex -0.0520 -0.0120 0.1100
-vertex -0.0520 -0.0120 0.0900
+vertex 0.0000 -0.0000 0.1100
+vertex -0.0290 -0.0000 0.1050
+vertex 0.0000 -0.0000 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 0.1100
-vertex -0.0410 -0.0120 0.1090
-vertex -0.0290 -0.0120 0.1090
+vertex -0.0410 -0.0000 0.1050
+vertex -0.0395 -0.0000 0.0970
+vertex -0.0290 -0.0000 0.1050
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 0.1100
-vertex -0.0290 -0.0120 0.1090
-vertex -0.0290 -0.0120 0.1050
+vertex -0.0395 -0.0000 0.0970
+vertex -0.0700 -0.0000 0.0900
+vertex -0.0395 -0.0000 0.0930
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0120 0.1090
-vertex -0.0180 -0.0120 0.1100
-vertex -0.0520 -0.0120 0.1100
+vertex -0.0700 -0.0000 0.0900
+vertex -0.0395 -0.0000 0.0970
+vertex -0.0410 -0.0000 0.1050
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 0.1100
-vertex -0.0290 -0.0120 0.1050
-vertex -0.0180 -0.0120 0.0900
+vertex -0.0395 -0.0000 0.0930
+vertex -0.0700 -0.0000 0.0900
+vertex 0.0000 -0.0000 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0120 0.1050
-vertex -0.0395 -0.0120 0.0970
-vertex -0.0290 -0.0120 0.1050
+vertex -0.0305 -0.0000 0.0970
+vertex -0.0305 -0.0000 0.0930
+vertex 0.0000 -0.0000 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 -0.0120 0.0970
-vertex -0.0520 -0.0120 0.0900
-vertex -0.0395 -0.0120 0.0930
+vertex 0.0000 -0.0000 0.0900
+vertex -0.0305 -0.0000 0.0930
+vertex -0.0395 -0.0000 0.0930
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 0.0900
-vertex -0.0395 -0.0120 0.0970
-vertex -0.0410 -0.0120 0.1050
+vertex -0.0305 -0.0000 0.0970
+vertex 0.0000 -0.0000 0.0900
+vertex -0.0290 -0.0000 0.1050
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 -0.0120 0.0930
-vertex -0.0520 -0.0120 0.0900
-vertex -0.0180 -0.0120 0.0900
+vertex -0.0395 -0.0000 0.0970
+vertex -0.0305 -0.0000 0.0970
+vertex -0.0290 -0.0000 0.1050
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0305 -0.0120 0.0970
-vertex -0.0305 -0.0120 0.0930
-vertex -0.0180 -0.0120 0.0900
+vertex 0.0000 -0.0000 0.0900
+vertex -0.0700 -0.0000 0.0900
+vertex -0.0700 0.0240 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 0.0900
-vertex -0.0305 -0.0120 0.0930
-vertex -0.0395 -0.0120 0.0930
+vertex -0.0700 0.0240 0.0900
+vertex 0.0000 0.0240 0.0900
+vertex 0.0000 -0.0000 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0305 -0.0120 0.0970
-vertex -0.0180 -0.0120 0.0900
-vertex -0.0290 -0.0120 0.1050
+vertex -0.0526 0.1443 0.0338
+vertex -0.0700 0.1430 0.0351
+vertex -0.0700 0.1040 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 -0.0120 0.0970
-vertex -0.0305 -0.0120 0.0970
-vertex -0.0290 -0.0120 0.1050
+vertex -0.0700 0.1040 0.0000
+vertex -0.0526 0.1052 -0.0014
+vertex -0.0526 0.1443 0.0338
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 0.0900
-vertex -0.0520 -0.0120 0.0900
-vertex -0.0520 0.0120 0.0900
+vertex -0.0526 0.1052 0.0914
+vertex -0.0700 0.1040 0.0900
+vertex -0.0700 0.1430 0.0549
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 0.0900
-vertex -0.0180 0.0120 0.0900
-vertex -0.0180 -0.0120 0.0900
+vertex -0.0700 0.1430 0.0549
+vertex -0.0526 0.1443 0.0562
+vertex -0.0526 0.1052 0.0914
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0346 0.1023 0.0338
-vertex -0.0520 0.1010 0.0351
-vertex -0.0520 0.0620 0.0000
+vertex -0.0526 -0.1203 0.0562
+vertex -0.0700 -0.1190 0.0549
+vertex -0.0700 -0.0800 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0620 0.0000
-vertex -0.0346 0.0632 -0.0014
-vertex -0.0346 0.1023 0.0338
+vertex -0.0700 -0.0800 0.0900
+vertex -0.0526 -0.0812 0.0914
+vertex -0.0526 -0.1203 0.0562
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0346 0.0632 0.0914
-vertex -0.0520 0.0620 0.0900
-vertex -0.0520 0.1010 0.0549
+vertex -0.0526 -0.0812 -0.0014
+vertex -0.0700 -0.0800 -0.0000
+vertex -0.0700 -0.1190 0.0351
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.1010 0.0549
-vertex -0.0346 0.1023 0.0562
-vertex -0.0346 0.0632 0.0914
+vertex -0.0700 -0.1190 0.0351
+vertex -0.0526 -0.1203 0.0338
+vertex -0.0526 -0.0812 -0.0014
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0346 -0.1323 0.0562
-vertex -0.0520 -0.1310 0.0549
-vertex -0.0520 -0.0920 0.0900
+vertex 0.0000 0.0240 0.0500
+vertex 0.0000 0.0240 0.0450
+vertex 0.0000 0.0000 0.0450
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0920 0.0900
-vertex -0.0346 -0.0932 0.0914
-vertex -0.0346 -0.1323 0.0562
+vertex 0.0000 0.0000 0.0450
+vertex 0.0000 0.0000 0.0500
+vertex 0.0000 0.0240 0.0500
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0346 -0.0932 -0.0014
-vertex -0.0520 -0.0920 -0.0000
-vertex -0.0520 -0.1310 0.0351
+vertex 0.0000 0.0140 -0.0000
+vertex 0.0000 0.0240 -0.0000
+vertex -0.0700 0.0240 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.1310 0.0351
-vertex -0.0346 -0.1323 0.0338
-vertex -0.0346 -0.0932 -0.0014
+vertex -0.0700 0.0240 -0.0000
+vertex -0.0700 0.0140 -0.0000
+vertex 0.0000 0.0140 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0120 0.0500
-vertex 0.0180 0.0120 0.0450
-vertex 0.0180 -0.0120 0.0450
+vertex -0.0700 0.0140 0.0900
+vertex -0.0700 0.0240 0.0900
+vertex 0.0000 0.0240 0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0120 0.0450
-vertex 0.0180 -0.0120 0.0500
-vertex 0.0180 0.0120 0.0500
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0180 0.0020 -0.0000
-vertex -0.0180 0.0120 -0.0000
-vertex -0.0520 0.0120 -0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0520 0.0120 -0.0000
-vertex -0.0520 0.0020 -0.0000
-vertex -0.0180 0.0020 -0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0520 0.0020 0.0900
-vertex -0.0520 0.0120 0.0900
-vertex -0.0180 0.0120 0.0900
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0180 0.0120 0.0900
-vertex -0.0180 0.0020 0.0900
-vertex -0.0520 0.0020 0.0900
+vertex 0.0000 0.0240 0.0900
+vertex 0.0000 0.0140 0.0900
+vertex -0.0700 0.0140 0.0900
 endloop
 endfacet
 endsolid python
diff --git a/rocolib/output/BoatWithServoMount/graph-silhouette.dxf b/rocolib/output/BoatWithServoMount/graph-silhouette.dxf
index fadcf490b4a7b8fdbefcea82309b58dfa38bae0c..c05e522b6e4667f1cdbf523060655f1412c082c3 100644
--- a/rocolib/output/BoatWithServoMount/graph-silhouette.dxf
+++ b/rocolib/output/BoatWithServoMount/graph-silhouette.dxf
@@ -949,7 +949,7 @@ LINE
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 166.023253
  31
@@ -981,7 +981,7 @@ LINE
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 190.02325300000004
  30
@@ -1095,7 +1095,7 @@ LINE
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 190.02325300000004
  31
@@ -1129,7 +1129,7 @@ DOTTED
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 166.023253
  30
@@ -1167,7 +1167,7 @@ LINE
  10
 345.0000000000001
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
@@ -1185,13 +1185,13 @@ LINE
  10
 345.0000000000001
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1223,7 +1223,7 @@ DOTTED
  10
 275.00000000000017
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
@@ -1243,13 +1243,13 @@ DOTTED
  10
 275.00000000000017
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1263,13 +1263,13 @@ DOTTED
  10
 345.0000000000001
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-292.53762381816165
+322.53762381816165
  31
 0.0
   0
@@ -1283,13 +1283,13 @@ DOTTED
  10
 275.00000000000017
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-292.53762381816165
+322.53762381816165
  31
 0.0
   0
@@ -1301,13 +1301,13 @@ LINE
  10
 362.5047902727207
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 345.0000000000001
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1319,13 +1319,13 @@ LINE
  10
 362.5047902727207
  20
-292.53762381816165
+322.53762381816165
  30
 0.0
  11
 362.5047902727207
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1337,13 +1337,13 @@ LINE
  10
 345.0000000000001
  20
-292.53762381816165
+322.53762381816165
  30
 0.0
  11
 362.5047902727207
  21
-292.53762381816165
+322.53762381816165
  31
 0.0
   0
@@ -1357,13 +1357,13 @@ DOTTED
  10
 275.00000000000017
  20
-240.02325300000004
+270.02325300000007
  30
 0.0
  11
 294.58234220233663
  21
-307.22840067389916
+337.2284006738992
  31
 0.0
   0
@@ -1375,13 +1375,13 @@ LINE
  10
 294.58234220233663
  20
-307.22840067389916
+337.2284006738992
  30
 0.0
  11
 345.0000000000001
  21
-292.53762381816165
+322.53762381816165
  31
 0.0
   0
@@ -1393,13 +1393,13 @@ LINE
  10
 244.16468440467298
  20
-321.9191775296368
+351.9191775296368
  30
 0.0
  11
 294.58234220233663
  21
-307.22840067389916
+337.2284006738992
  31
 0.0
   0
@@ -1411,13 +1411,13 @@ LINE
  10
 230.00000000000014
  20
-326.0465056704263
+356.04650567042637
  30
 0.0
  11
 244.16468440467298
  21
-321.9191775296368
+351.9191775296368
  31
 0.0
   0
@@ -1431,13 +1431,13 @@ DOTTED
  10
 230.00000000000014
  20
-326.0465056704263
+356.04650567042637
  30
 0.0
  11
 275.00000000000017
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1451,13 +1451,13 @@ DOTTED
  10
 230.0000000000001
  20
-240.02325300000007
+270.0232530000001
  30
 0.0
  11
 275.00000000000017
  21
-240.02325300000004
+270.02325300000007
  31
 0.0
   0
@@ -1471,13 +1471,13 @@ DOTTED
  10
 185.0000000000001
  20
-240.0232530000001
+270.0232530000001
  30
 0.0
  11
 230.0000000000001
  21
-240.02325300000007
+270.0232530000001
  31
 0.0
   0
@@ -1491,13 +1491,13 @@ DOTTED
  10
 230.00000000000014
  20
-326.0465056704263
+356.04650567042637
  30
 0.0
  11
 185.00000000000009
  21
-240.0232530000001
+270.0232530000001
  31
 0.0
   0
@@ -1511,13 +1511,13 @@ DOTTED
  10
 165.4176577976637
  20
-307.22840067389933
+337.2284006738993
  30
 0.0
  11
 185.00000000000009
  21
-240.02325300000007
+270.0232530000001
  31
 0.0
   0
@@ -1529,13 +1529,13 @@ LINE
  10
 215.83531559532727
  20
-321.91917752963684
+351.91917752963684
  30
 0.0
  11
 230.00000000000014
  21
-326.0465056704263
+356.04650567042637
  31
 0.0
   0
@@ -1547,13 +1547,13 @@ LINE
  10
 165.4176577976637
  20
-307.22840067389933
+337.2284006738993
  30
 0.0
  11
 215.83531559532727
  21
-321.91917752963684
+351.91917752963684
  31
 0.0
   0
@@ -1565,13 +1565,13 @@ LINE
  10
 115.00000000000013
  20
-292.53762381816176
+322.53762381816176
  30
 0.0
  11
 165.41765779766374
  21
-307.22840067389933
+337.2284006738993
  31
 0.0
   0
@@ -1585,13 +1585,13 @@ DOTTED
  10
 115.00000000000013
  20
-292.53762381816176
+322.53762381816176
  30
 0.0
  11
 185.00000000000009
  21
-240.0232530000001
+270.0232530000001
  31
 0.0
   0
@@ -1605,13 +1605,13 @@ DOTTED
  10
 115.00000000000007
  20
-240.02325300000015
+270.0232530000002
  30
 0.0
  11
 185.0000000000001
  21
-240.02325300000007
+270.0232530000001
  31
 0.0
   0
@@ -1625,13 +1625,13 @@ DOTTED
  10
 115.00000000000013
  20
-292.53762381816176
+322.53762381816176
  30
 0.0
  11
 115.00000000000007
  21
-240.02325300000015
+270.0232530000002
  31
 0.0
   0
@@ -1643,15 +1643,15 @@ DOTTED
   8
 0
  10
-185.00000000000009
+185.0000000000001
  20
-240.0232530000001
+270.0232530000001
  30
 0.0
  11
 184.99999999999997
  21
-86.023253
+86.02325299999998
  31
 0.0
   0
@@ -1663,13 +1663,13 @@ LINE
  10
 115.00000000000001
  20
-190.02325300000012
+190.0232530000001
  30
 0.0
  11
 115.00000000000007
  21
-240.02325300000015
+270.0232530000002
  31
 0.0
   0
@@ -1683,13 +1683,13 @@ DOTTED
  10
 115.00000000000001
  20
-190.02325300000012
+190.0232530000001
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-166.0232530000001
+166.02325300000007
  31
 0.0
   0
@@ -1699,15 +1699,15 @@ LINE
   8
 0
  10
-114.99999999999996
+114.9999999999999
  20
-86.02325300000008
+86.02325300000004
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-166.0232530000001
+166.02325300000007
  31
 0.0
   0
@@ -1717,15 +1717,15 @@ LINE
   8
 0
  10
-114.99999999999996
+114.9999999999999
  20
-86.02325300000008
+86.02325300000004
  30
 0.0
  11
-114.99999999999996
+114.9999999999999
  21
-86.02325300000008
+86.02325300000004
  31
 0.0
   0
@@ -1737,13 +1737,13 @@ LINE
  10
 115.00000000000007
  20
-240.02325300000015
+270.0232530000002
  30
 0.0
  11
 115.00000000000007
  21
-240.02325300000015
+270.0232530000002
  31
 0.0
   0
@@ -1753,15 +1753,15 @@ LINE
   8
 0
  10
-81.00000000000001
+45.0
  20
-190.02325300000015
+190.02325300000018
  30
 0.0
  11
 115.00000000000001
  21
-190.02325300000012
+190.0232530000001
  31
 0.0
   0
@@ -1775,11 +1775,11 @@ DOTTED
  10
 115.00000000000001
  20
-166.0232530000001
+166.02325300000007
  30
 0.0
  11
-81.00000000000001
+45.0
  21
 166.02325300000015
  31
@@ -1793,13 +1793,13 @@ LINE
  10
 45.0
  20
-190.0232530000002
+190.02325300000018
  30
 0.0
  11
-81.00000000000001
+45.0
  21
-190.02325300000015
+190.02325300000018
  31
 0.0
   0
@@ -1813,13 +1813,13 @@ DOTTED
  10
 45.0
  20
-190.0232530000002
+190.02325300000018
  30
 0.0
  11
 45.0
  21
-166.02325300000018
+166.02325300000015
  31
 0.0
   0
@@ -1829,7 +1829,7 @@ LINE
   8
 0
  10
-81.00000000000001
+45.0
  20
 166.02325300000015
  30
@@ -1837,7 +1837,7 @@ LINE
  11
 45.0
  21
-166.02325300000018
+166.02325300000015
  31
 0.0
   0
@@ -1849,13 +1849,13 @@ LINE
  10
 45.0
  20
-166.02325300000018
+166.02325300000015
  30
 0.0
  11
 0.0
  21
-166.02325300000024
+166.0232530000002
  31
 0.0
   0
@@ -1873,7 +1873,7 @@ LINE
  11
 45.0
  21
-190.0232530000002
+190.02325300000018
  31
 0.0
   0
@@ -1885,7 +1885,7 @@ LINE
  10
 0.0
  20
-166.02325300000024
+166.0232530000002
  30
 0.0
  11
@@ -1901,13 +1901,13 @@ LINE
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
-166.0232530000001
+166.02325300000007
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
 146.0232530000001
  31
@@ -1919,13 +1919,13 @@ LINE
   8
 0
  10
-81.00000000000001
+44.99999999999995
  20
 146.02325300000015
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
 166.02325300000015
  31
@@ -1939,13 +1939,13 @@ DOTTED
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
 146.0232530000001
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
 146.02325300000015
  31
@@ -1957,15 +1957,15 @@ LINE
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
-146.02325300000012
+146.0232530000001
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-122.02325300000008
+122.02325300000007
  31
 0.0
   0
@@ -1975,13 +1975,13 @@ LINE
   8
 0
  10
-81.00000000000001
+44.99999999999995
  20
-122.02325300000012
+122.02325300000014
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
 146.02325300000015
  31
@@ -1995,15 +1995,15 @@ DOTTED
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
-122.02325300000008
+122.02325300000007
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
-122.02325300000012
+122.02325300000014
  31
 0.0
   0
@@ -2013,15 +2013,15 @@ LINE
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
-122.0232530000001
+122.02325300000007
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-102.02325300000008
+102.02325300000005
  31
 0.0
   0
@@ -2031,13 +2031,13 @@ LINE
   8
 0
  10
-81.00000000000001
+44.99999999999995
  20
 102.02325300000011
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
 122.02325300000014
  31
@@ -2051,15 +2051,15 @@ DOTTED
   8
 0
  10
-81.00000000000001
+44.99999999999995
  20
 102.02325300000011
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-102.02325300000008
+102.02325300000005
  31
 0.0
   0
@@ -2069,15 +2069,15 @@ LINE
   8
 0
  10
-81.00000000000001
+44.99999999999989
  20
-92.02325300000011
+92.02325300000012
  30
 0.0
  11
-81.00000000000001
+44.99999999999995
  21
-102.0232530000001
+102.02325300000014
  31
 0.0
   0
@@ -2087,15 +2087,15 @@ LINE
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
-92.02325300000007
+92.02325300000004
  30
 0.0
  11
-81.00000000000001
+44.99999999999989
  21
-92.02325300000011
+92.02325300000012
  31
 0.0
   0
@@ -2105,15 +2105,15 @@ LINE
   8
 0
  10
-115.00000000000001
+114.99999999999996
  20
-102.02325300000008
+102.02325300000005
  30
 0.0
  11
-115.00000000000001
+114.99999999999996
  21
-92.02325300000007
+92.02325300000004
  31
 0.0
   0
@@ -2125,15 +2125,15 @@ DOTTED
   8
 0
  10
-184.99999999999997
+184.9999999999999
  20
-86.02325300000001
+86.02325299999997
  30
 0.0
  11
-114.99999999999996
+114.9999999999999
  21
-86.02325300000008
+86.02325300000004
  31
 0.0
   0
@@ -2145,15 +2145,15 @@ DOTTED
   8
 0
  10
-114.99999999999996
+114.9999999999999
  20
-86.02325300000008
+86.02325300000004
  30
 0.0
  11
-114.9999999999999
+114.99999999999984
  21
-33.508882181838494
+33.50888218183843
  31
 0.0
   0
@@ -2165,15 +2165,15 @@ DOTTED
   8
 0
  10
-184.99999999999997
+184.9999999999999
  20
-86.02325300000001
+86.02325299999997
  30
 0.0
  11
-114.9999999999999
+114.99999999999984
  21
-33.508882181838494
+33.50888218183843
  31
 0.0
   0
@@ -2183,15 +2183,15 @@ LINE
   8
 0
  10
-97.49520972727943
+97.49520972727937
  20
-86.0232530000001
+86.02325300000005
  30
 0.0
  11
-114.99999999999996
+114.9999999999999
  21
-86.02325300000008
+86.02325300000004
  31
 0.0
   0
@@ -2201,15 +2201,15 @@ LINE
   8
 0
  10
-97.49520972727937
+97.49520972727932
  20
-33.50888218183852
+33.508882181838466
  30
 0.0
  11
-97.49520972727943
+97.49520972727937
  21
-86.0232530000001
+86.02325300000005
  31
 0.0
   0
@@ -2219,15 +2219,15 @@ LINE
   8
 0
  10
-114.9999999999999
+114.99999999999984
  20
-33.508882181838494
+33.50888218183843
  30
 0.0
  11
-97.49520972727937
+97.49520972727932
  21
-33.50888218183852
+33.508882181838466
  31
 0.0
   0
@@ -2239,15 +2239,15 @@ DOTTED
   8
 0
  10
-185.00000000000003
+184.99999999999997
  20
-86.02325300000004
+86.02325299999997
  30
 0.0
  11
-165.4176577976635
+165.41765779766345
  21
-18.818105326100866
+18.81810532610078
  31
 0.0
   0
@@ -2257,15 +2257,15 @@ LINE
   8
 0
  10
-165.4176577976635
+165.41765779766345
  20
-18.818105326100866
+18.81810532610078
  30
 0.0
  11
-114.9999999999999
+114.99999999999984
  21
-33.508882181838494
+33.50888218183843
  31
 0.0
   0
@@ -2275,15 +2275,15 @@ LINE
   8
 0
  10
-215.83531559532705
+215.83531559532696
  20
-4.127328470363211
+4.127328470363154
  30
 0.0
  11
-165.41765779766348
+165.41765779766342
  21
-18.818105326100834
+18.81810532610078
  31
 0.0
   0
@@ -2293,15 +2293,15 @@ LINE
   8
 0
  10
-229.99999999999991
+229.99999999999986
  20
-3.295736235031655e-07
+3.2957356665974663e-07
  30
 0.0
  11
-215.83531559532705
+215.83531559532696
  21
-4.127328470363211
+4.127328470363154
  31
 0.0
   0
@@ -2313,15 +2313,15 @@ DOTTED
   8
 0
  10
-229.99999999999991
+229.99999999999986
  20
-3.295736235031655e-07
+3.2957356665974663e-07
  30
 0.0
  11
-185.0
+184.99999999999994
  21
-86.02325300000003
+86.02325299999997
  31
 0.0
   0
@@ -2333,15 +2333,15 @@ DOTTED
   8
 0
  10
-230.00000000000003
+229.99999999999994
  20
-86.02325299999997
+86.02325299999991
  30
 0.0
  11
-185.0
+184.99999999999994
  21
-86.02325300000003
+86.02325299999997
  31
 0.0
   0
@@ -2353,15 +2353,15 @@ DOTTED
   8
 0
  10
-275.00000000000006
+275.0
  20
-86.02325299999988
+86.02325299999983
  30
 0.0
  11
-229.99999999999997
+229.99999999999994
  21
-86.02325299999995
+86.02325299999988
  31
 0.0
   0
@@ -2373,15 +2373,15 @@ DOTTED
   8
 0
  10
-229.9999999999999
+229.99999999999983
  20
-3.295736235031655e-07
+3.2957356665974663e-07
  30
 0.0
  11
-275.00000000000006
+275.0
  21
-86.02325299999988
+86.02325299999983
  31
 0.0
   0
@@ -2393,15 +2393,15 @@ DOTTED
   8
 0
  10
-294.5823422023364
+294.5823422023363
  20
-18.81810532610061
+18.818105326100554
  30
 0.0
  11
-275.00000000000006
+275.0
  21
-86.02325299999985
+86.02325299999981
  31
 0.0
   0
@@ -2411,15 +2411,15 @@ LINE
   8
 0
  10
-244.16468440467273
+244.16468440467267
  20
-4.127328470363125
+4.127328470363068
  30
 0.0
  11
-229.9999999999999
+229.99999999999983
  21
-3.2957359508145606e-07
+3.2957353823803714e-07
  31
 0.0
   0
@@ -2429,15 +2429,15 @@ LINE
   8
 0
  10
-294.5823422023364
+294.5823422023363
  20
-18.81810532610061
+18.818105326100554
  30
 0.0
  11
-244.16468440467273
+244.16468440467267
  21
-4.127328470363125
+4.127328470363068
  31
 0.0
   0
@@ -2449,13 +2449,13 @@ LINE
  10
 344.99999999999994
  20
-33.50888218183812
+33.50888218183806
  30
 0.0
  11
-294.58234220233635
+294.5823422023363
  21
-18.818105326100635
+18.81810532610058
  31
 0.0
   0
@@ -2469,13 +2469,13 @@ DOTTED
  10
 344.99999999999994
  20
-33.50888218183812
+33.50888218183806
  30
 0.0
  11
-275.00000000000006
+275.0
  21
-86.02325299999987
+86.02325299999983
  31
 0.0
   0
@@ -2487,15 +2487,15 @@ DOTTED
   8
 0
  10
-345.00000000000006
+345.0
  20
-86.02325299999974
+86.02325299999968
  30
 0.0
  11
-275.00000000000006
+274.99999999999994
  21
-86.02325299999988
+86.02325299999983
  31
 0.0
   0
@@ -2507,15 +2507,15 @@ DOTTED
   8
 0
  10
-344.99999999999994
+344.9999999999999
  20
-33.50888218183812
+33.50888218183806
  30
 0.0
  11
-345.00000000000006
+345.0
  21
-86.02325299999974
+86.02325299999968
  31
 0.0
   0
@@ -2525,15 +2525,15 @@ LINE
   8
 0
  10
-362.50479027272047
+362.5047902727204
  20
-33.508882181838096
+33.50888218183804
  30
 0.0
  11
 344.99999999999994
  21
-33.50888218183812
+33.50888218183806
  31
 0.0
   0
@@ -2543,15 +2543,15 @@ LINE
   8
 0
  10
-362.5047902727206
+362.5047902727205
  20
-86.02325299999971
+86.02325299999966
  30
 0.0
  11
-362.50479027272047
+362.5047902727204
  21
-33.508882181838096
+33.50888218183804
  31
 0.0
   0
@@ -2561,15 +2561,15 @@ LINE
   8
 0
  10
-345.00000000000006
+345.0
  20
-86.02325299999974
+86.02325299999968
  30
 0.0
  11
-362.5047902727206
+362.5047902727205
  21
-86.02325299999971
+86.02325299999966
  31
 0.0
   0
@@ -2581,13 +2581,13 @@ LINE
  10
 97.4952097272796
  20
-292.53762381816176
+322.53762381816176
  30
 0.0
  11
 115.00000000000013
  21
-292.53762381816176
+322.53762381816176
  31
 0.0
   0
@@ -2599,13 +2599,13 @@ LINE
  10
 97.49520972727954
  20
-240.02325300000018
+270.0232530000002
  30
 0.0
  11
 97.4952097272796
  21
-292.53762381816176
+322.53762381816176
  31
 0.0
   0
@@ -2617,13 +2617,13 @@ LINE
  10
 115.00000000000007
  20
-240.02325300000015
+270.0232530000002
  30
 0.0
  11
 97.49520972727954
  21
-240.02325300000018
+270.0232530000002
  31
 0.0
   0
@@ -2633,13 +2633,13 @@ LINE
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 166.023253
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 146.023253
  31
@@ -2671,7 +2671,7 @@ DOTTED
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 146.023253
  30
@@ -2689,13 +2689,13 @@ LINE
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 146.023253
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 122.02325300000003
  31
@@ -2727,7 +2727,7 @@ DOTTED
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 122.02325300000003
  30
@@ -2745,13 +2745,13 @@ LINE
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 122.02325300000003
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 102.02325300000003
  31
@@ -2789,7 +2789,7 @@ DOTTED
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 102.02325300000003
  31
@@ -2819,7 +2819,7 @@ LINE
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 92.02325300000001
  30
@@ -2837,13 +2837,13 @@ LINE
   8
 0
  10
-379.00000000000017
+415.00000000000017
  20
 102.02325300000003
  30
 0.0
  11
-379.00000000000017
+415.00000000000017
  21
 92.02325300000001
  31
@@ -2945,13 +2945,85 @@ LINE
   8
 0
  10
-356.0833333333335
+389.29545454545473
+ 20
+182.273253
+ 30
+0.0
+ 11
+402.5227272727274
+ 21
+182.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+402.5227272727274
  20
 182.273253
  30
 0.0
  11
-367.9166666666668
+402.5227272727274
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+402.5227272727274
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+389.29545454545473
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+389.29545454545473
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+389.29545454545473
+ 21
+182.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+357.47727272727286
+ 20
+182.273253
+ 30
+0.0
+ 11
+370.70454545454555
  21
 182.273253
  31
@@ -2963,13 +3035,13 @@ LINE
   8
 0
  10
-367.9166666666668
+370.70454545454555
  20
 182.273253
  30
 0.0
  11
-367.9166666666668
+370.70454545454555
  21
 182.77325300000004
  31
@@ -2981,13 +3053,13 @@ LINE
   8
 0
  10
-367.9166666666668
+370.70454545454555
  20
 182.77325300000004
  30
 0.0
  11
-356.0833333333335
+357.47727272727286
  21
 182.77325300000004
  31
@@ -2999,13 +3071,13 @@ LINE
   8
 0
  10
-356.0833333333335
+357.47727272727286
  20
 182.77325300000004
  30
 0.0
  11
-356.0833333333335
+357.47727272727286
  21
 182.273253
  31
@@ -3019,13 +3091,13 @@ LINE
  10
 358.1285927045405
  20
-275.03283354544106
+305.0328335454411
  30
 0.0
  11
 349.3761975681803
  21
-275.03283354544106
+305.0328335454411
  31
 0.0
   0
@@ -3037,13 +3109,13 @@ LINE
  10
 349.3761975681803
  20
-275.03283354544106
+305.0328335454411
  30
 0.0
  11
 349.3761975681803
  21
-257.52804327272054
+287.5280432727206
  31
 0.0
   0
@@ -3055,13 +3127,13 @@ LINE
  10
 349.3761975681803
  20
-257.52804327272054
+287.5280432727206
  30
 0.0
  11
 358.1285927045405
  21
-257.52804327272054
+287.5280432727206
  31
 0.0
   0
@@ -3073,13 +3145,13 @@ LINE
  10
 256.9879208023066
  20
-304.247756013529
+334.247756013529
  30
 0.0
  11
 274.2738435039604
  21
-299.210956522076
+329.2109565220759
  31
 0.0
   0
@@ -3091,13 +3163,13 @@ LINE
  10
 274.2738435039604
  20
-299.210956522076
+329.2109565220759
  30
 0.0
  11
-274.41371737683426
+274.4137173768342
  21
-299.69099329117523
+329.6909932911753
  31
 0.0
   0
@@ -3107,15 +3179,15 @@ LINE
   8
 0
  10
-274.41371737683426
+274.4137173768342
  20
-299.69099329117523
+329.6909932911753
  30
 0.0
  11
 257.1277946751804
  21
-304.7277927826283
+334.7277927826282
  31
 0.0
   0
@@ -3127,13 +3199,13 @@ LINE
  10
 257.1277946751804
  20
-304.7277927826283
+334.7277927826282
  30
 0.0
  11
 256.9879208023066
  21
-304.247756013529
+334.247756013529
  31
 0.0
   0
@@ -3145,13 +3217,13 @@ LINE
  10
 185.72615649603986
  20
-299.210956522076
+329.21095652207595
  30
 0.0
  11
 203.0120791976937
  21
-304.247756013529
+334.247756013529
  31
 0.0
   0
@@ -3163,13 +3235,13 @@ LINE
  10
 203.0120791976937
  20
-304.247756013529
+334.247756013529
  30
 0.0
  11
 202.87220532481987
  21
-304.72779278262834
+334.7277927826283
  31
 0.0
   0
@@ -3181,13 +3253,13 @@ LINE
  10
 202.87220532481987
  20
-304.72779278262834
+334.7277927826283
  30
 0.0
  11
 185.58628262316603
  21
-299.69099329117523
+329.6909932911753
  31
 0.0
   0
@@ -3199,13 +3271,13 @@ LINE
  10
 185.58628262316603
  20
-299.69099329117523
+329.6909932911753
  30
 0.0
  11
 185.72615649603986
  21
-299.210956522076
+329.21095652207595
  31
 0.0
   0
@@ -3215,13 +3287,85 @@ LINE
   8
 0
  10
-92.08333333333333
+89.29545454545456
+ 20
+182.27325300000012
+ 30
+0.0
+ 11
+102.52272727272727
+ 21
+182.27325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.52272727272727
+ 20
+182.27325300000012
+ 30
+0.0
+ 11
+102.52272727272727
+ 21
+182.77325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.52272727272727
+ 20
+182.77325300000012
+ 30
+0.0
+ 11
+89.29545454545456
+ 21
+182.77325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.29545454545456
+ 20
+182.77325300000012
+ 30
+0.0
+ 11
+89.29545454545456
+ 21
+182.27325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.477272727272755
  20
 182.27325300000015
  30
 0.0
  11
-103.9166666666667
+70.70454545454545
  21
 182.27325300000015
  31
@@ -3233,13 +3377,13 @@ LINE
   8
 0
  10
-103.9166666666667
+70.70454545454545
  20
 182.27325300000015
  30
 0.0
  11
-103.9166666666667
+70.70454545454545
  21
 182.77325300000015
  31
@@ -3251,13 +3395,13 @@ LINE
   8
 0
  10
-103.9166666666667
+70.70454545454545
  20
 182.77325300000015
  30
 0.0
  11
-92.08333333333333
+57.477272727272755
  21
 182.77325300000015
  31
@@ -3269,13 +3413,13 @@ LINE
   8
 0
  10
-92.08333333333333
+57.477272727272755
  20
 182.77325300000015
  30
 0.0
  11
-92.08333333333333
+57.477272727272755
  21
 182.27325300000015
  31
@@ -3289,13 +3433,13 @@ LINE
  10
 4.000000000000001
  20
-173.77325300000024
+173.7732530000002
  30
 0.0
  11
 4.000000000000001
  21
-182.27325300000024
+182.2732530000002
  31
 0.0
   0
@@ -3307,13 +3451,13 @@ LINE
  10
 4.000000000000001
  20
-182.27325300000024
+182.2732530000002
  30
 0.0
  11
 3.5000000000000004
  21
-182.27325300000024
+182.2732530000002
  31
 0.0
   0
@@ -3325,13 +3469,13 @@ LINE
  10
 3.5000000000000004
  20
-182.27325300000024
+182.2732530000002
  30
 0.0
  11
 3.5000000000000004
  21
-173.77325300000024
+173.7732530000002
  31
 0.0
   0
@@ -3343,13 +3487,13 @@ LINE
  10
 3.5000000000000004
  20
-173.77325300000024
+173.7732530000002
  30
 0.0
  11
 4.000000000000001
  21
-173.77325300000024
+173.7732530000002
  31
 0.0
   0
@@ -3359,13 +3503,13 @@ LINE
   8
 0
  10
-104.00000000000001
+85.99999999999996
  20
 147.02325300000012
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
 151.02325300000012
  31
@@ -3377,15 +3521,15 @@ LINE
   8
 0
  10
-104.00000000000001
+85.99999999999996
  20
 151.02325300000012
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
-151.02325300000015
+151.02325300000012
  31
 0.0
   0
@@ -3395,13 +3539,13 @@ LINE
   8
 0
  10
-92.00000000000001
+73.99999999999994
  20
-151.02325300000015
+151.02325300000012
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
 147.02325300000012
  31
@@ -3413,13 +3557,13 @@ LINE
   8
 0
  10
-92.00000000000001
+73.99999999999994
  20
 147.02325300000012
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
 147.02325300000012
  31
@@ -3431,13 +3575,13 @@ LINE
   8
 0
  10
-102.50000000000001
+84.49999999999994
  20
 159.0232530000001
  30
 0.0
  11
-102.50000000000001
+84.49999999999994
  21
 163.02325300000012
  31
@@ -3449,13 +3593,13 @@ LINE
   8
 0
  10
-102.50000000000001
+84.49999999999994
  20
 163.02325300000012
  30
 0.0
  11
-93.50000000000001
+75.49999999999994
  21
 163.02325300000012
  31
@@ -3467,13 +3611,13 @@ LINE
   8
 0
  10
-93.50000000000001
+75.49999999999994
  20
 163.02325300000012
  30
 0.0
  11
-93.50000000000001
+75.49999999999994
  21
 159.0232530000001
  31
@@ -3485,13 +3629,13 @@ LINE
   8
 0
  10
-93.50000000000001
+75.49999999999994
  20
 159.0232530000001
  30
 0.0
  11
-102.50000000000001
+84.49999999999994
  21
 159.0232530000001
  31
@@ -3503,13 +3647,13 @@ LINE
   8
 0
  10
-104.00000000000001
+85.99999999999996
  20
 122.52325300000011
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
 145.5232530000001
  31
@@ -3521,15 +3665,15 @@ LINE
   8
 0
  10
-104.00000000000001
+85.99999999999996
  20
 145.5232530000001
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
-145.52325300000012
+145.5232530000001
  31
 0.0
   0
@@ -3539,13 +3683,13 @@ LINE
   8
 0
  10
-92.00000000000001
+73.99999999999994
  20
-145.52325300000012
+145.5232530000001
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
 122.52325300000011
  31
@@ -3557,13 +3701,13 @@ LINE
   8
 0
  10
-92.00000000000001
+73.99999999999994
  20
 122.52325300000011
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
 122.52325300000011
  31
@@ -3575,15 +3719,15 @@ LINE
   8
 0
  10
-104.00000000000001
+85.99999999999996
  20
-117.02325300000011
+117.02325300000008
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
-121.02325300000011
+121.0232530000001
  31
 0.0
   0
@@ -3593,13 +3737,13 @@ LINE
   8
 0
  10
-104.00000000000001
+85.99999999999996
  20
-121.02325300000011
+121.0232530000001
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
 121.02325300000011
  31
@@ -3611,13 +3755,13 @@ LINE
   8
 0
  10
-92.00000000000001
+73.99999999999994
  20
 121.02325300000011
  30
 0.0
  11
-92.00000000000001
+73.99999999999994
  21
 117.02325300000011
  31
@@ -3629,15 +3773,15 @@ LINE
   8
 0
  10
-92.00000000000001
+73.99999999999994
  20
 117.02325300000011
  30
 0.0
  11
-104.00000000000001
+85.99999999999996
  21
-117.02325300000011
+117.02325300000008
  31
 0.0
   0
@@ -3647,13 +3791,121 @@ LINE
   8
 0
  10
-103.6666666666667
+102.27272727272721
+ 20
+94.52325300000007
+ 30
+0.0
+ 11
+107.27272727272721
+ 21
+94.52325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.27272727272721
+ 20
+94.52325300000007
+ 30
+0.0
+ 11
+102.27272727272721
+ 21
+99.52325300000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.27272727272721
+ 20
+99.52325300000007
+ 30
+0.0
+ 11
+89.5454545454545
+ 21
+99.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.5454545454545
+ 20
+99.52325300000008
+ 30
+0.0
+ 11
+84.54545454545452
+ 21
+94.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+84.54545454545452
+ 20
+94.52325300000008
+ 30
+0.0
+ 11
+89.5454545454545
+ 21
+94.52325300000008
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.45454545454538
+ 20
+94.5232530000001
+ 30
+0.0
+ 11
+75.4545454545454
+ 21
+94.5232530000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.4545454545454
  20
 94.5232530000001
  30
 0.0
  11
-103.6666666666667
+70.45454545454538
  21
 99.5232530000001
  31
@@ -3665,13 +3917,13 @@ LINE
   8
 0
  10
-103.6666666666667
+70.45454545454538
  20
 99.5232530000001
  30
 0.0
  11
-92.33333333333331
+57.72727272727264
  21
 99.52325300000011
  31
@@ -3683,13 +3935,13 @@ LINE
   8
 0
  10
-92.33333333333331
+57.72727272727264
  20
 99.52325300000011
  30
 0.0
  11
-92.33333333333331
+52.72727272727264
  21
 94.52325300000011
  31
@@ -3701,15 +3953,15 @@ LINE
   8
 0
  10
-101.87140729545952
+52.72727272727264
  20
-51.01367245455902
+94.52325300000011
  30
 0.0
  11
-110.62380243181975
+57.72727272727264
  21
-51.01367245455902
+94.52325300000011
  31
 0.0
   0
@@ -3719,15 +3971,33 @@ LINE
   8
 0
  10
-110.62380243181975
+101.87140729545946
+ 20
+51.013672454558964
+ 30
+0.0
+ 11
+110.6238024318197
+ 21
+51.013672454558964
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.6238024318197
  20
-51.01367245455902
+51.013672454558964
  30
 0.0
  11
-110.6238024318198
+110.62380243181975
  21
-68.51846272727956
+68.5184627272795
  31
 0.0
   0
@@ -3737,15 +4007,15 @@ LINE
   8
 0
  10
-110.6238024318198
+110.62380243181975
  20
-68.51846272727956
+68.5184627272795
  30
 0.0
  11
-101.87140729545958
+101.87140729545952
  21
-68.51846272727956
+68.5184627272795
  31
 0.0
   0
@@ -3755,15 +4025,15 @@ LINE
   8
 0
  10
-203.01207919769348
+203.01207919769342
  20
-21.798749986471023
+21.798749986470966
  30
 0.0
  11
-185.7261564960397
+185.72615649603964
  21
-26.83554947792408
+26.835549477924022
  31
 0.0
   0
@@ -3773,15 +4043,15 @@ LINE
   8
 0
  10
-185.7261564960397
+185.72615649603964
  20
-26.83554947792408
+26.835549477924022
  30
 0.0
  11
-185.58628262316586
+185.5862826231658
  21
-26.355512708824794
+26.355512708824737
  31
 0.0
   0
@@ -3791,15 +4061,15 @@ LINE
   8
 0
  10
-185.58628262316586
+185.5862826231658
  20
-26.355512708824794
+26.355512708824737
  30
 0.0
  11
-202.87220532481965
+202.8722053248196
  21
-21.318713217371737
+21.318713217371684
  31
 0.0
   0
@@ -3809,15 +4079,15 @@ LINE
   8
 0
  10
-202.87220532481965
+202.8722053248196
  20
-21.318713217371737
+21.318713217371684
  30
 0.0
  11
-203.01207919769348
+203.01207919769342
  21
-21.798749986471023
+21.798749986470966
  31
 0.0
   0
@@ -3827,15 +4097,15 @@ LINE
   8
 0
  10
-274.27384350396017
+274.27384350396005
  20
-26.83554947792391
+26.835549477923852
  30
 0.0
  11
-256.9879208023064
+256.9879208023063
  21
-21.79874998647091
+21.798749986470856
  31
 0.0
   0
@@ -3845,15 +4115,15 @@ LINE
   8
 0
  10
-256.9879208023064
+256.9879208023063
  20
-21.79874998647091
+21.798749986470856
  30
 0.0
  11
-257.1277946751802
+257.12779467518016
  21
-21.318713217371627
+21.31871321737157
  31
 0.0
   0
@@ -3863,15 +4133,15 @@ LINE
   8
 0
  10
-257.1277946751802
+257.12779467518016
  20
-21.318713217371627
+21.31871321737157
  30
 0.0
  11
-274.413717376834
+274.4137173768339
  21
-26.355512708824623
+26.355512708824563
  31
 0.0
   0
@@ -3881,15 +4151,15 @@ LINE
   8
 0
  10
-274.413717376834
+274.4137173768339
  20
-26.355512708824623
+26.355512708824563
  30
 0.0
  11
-274.27384350396017
+274.27384350396005
  21
-26.83554947792391
+26.835549477923852
  31
 0.0
   0
@@ -3901,13 +4171,13 @@ LINE
  10
 358.1285927045404
  20
-68.51846272727916
+68.5184627272791
  30
 0.0
  11
-349.37619756818015
+349.3761975681801
  21
-68.51846272727917
+68.51846272727911
  31
 0.0
   0
@@ -3917,15 +4187,15 @@ LINE
   8
 0
  10
-349.37619756818015
+349.3761975681801
  20
-68.51846272727917
+68.51846272727911
  30
 0.0
  11
-349.37619756818015
+349.3761975681801
  21
-51.013672454558645
+51.013672454558595
  31
 0.0
   0
@@ -3935,15 +4205,15 @@ LINE
   8
 0
  10
-349.37619756818015
+349.3761975681801
  20
-51.013672454558645
+51.013672454558595
  30
 0.0
  11
-358.1285927045404
+358.1285927045403
  21
-51.01367245455863
+51.01367245455858
  31
 0.0
   0
@@ -3955,13 +4225,13 @@ LINE
  10
 101.87140729545968
  20
-257.52804327272065
+287.5280432727207
  30
 0.0
  11
 110.62380243181993
  21
-257.52804327272065
+287.5280432727207
  31
 0.0
   0
@@ -3973,13 +4243,13 @@ LINE
  10
 110.62380243181993
  20
-257.52804327272065
+287.5280432727207
  30
 0.0
  11
 110.62380243181998
  21
-275.0328335454412
+305.03283354544124
  31
 0.0
   0
@@ -3991,13 +4261,13 @@ LINE
  10
 110.62380243181998
  20
-275.0328335454412
+305.03283354544124
  30
 0.0
  11
 101.87140729545975
  21
-275.03283354544124
+305.03283354544124
  31
 0.0
   0
@@ -4007,13 +4277,13 @@ LINE
   8
 0
  10
-368.0000000000001
+386.0000000000001
  20
 147.02325300000004
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 151.02325300000004
  31
@@ -4025,13 +4295,13 @@ LINE
   8
 0
  10
-368.0000000000001
+386.0000000000001
  20
 151.02325300000004
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 151.02325300000004
  31
@@ -4043,13 +4313,13 @@ LINE
   8
 0
  10
-356.00000000000017
+374.00000000000017
  20
 151.02325300000004
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 147.02325300000004
  31
@@ -4061,13 +4331,13 @@ LINE
   8
 0
  10
-356.00000000000017
+374.00000000000017
  20
 147.02325300000004
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 147.02325300000004
  31
@@ -4079,13 +4349,13 @@ LINE
   8
 0
  10
-366.50000000000017
+384.50000000000017
  20
 159.023253
  30
 0.0
  11
-366.50000000000017
+384.50000000000017
  21
 163.02325300000004
  31
@@ -4097,13 +4367,13 @@ LINE
   8
 0
  10
-366.50000000000017
+384.50000000000017
  20
 163.02325300000004
  30
 0.0
  11
-357.50000000000017
+375.50000000000017
  21
 163.02325300000004
  31
@@ -4115,13 +4385,13 @@ LINE
   8
 0
  10
-357.50000000000017
+375.50000000000017
  20
 163.02325300000004
  30
 0.0
  11
-357.50000000000017
+375.50000000000017
  21
 159.023253
  31
@@ -4133,13 +4403,13 @@ LINE
   8
 0
  10
-357.50000000000017
+375.50000000000017
  20
 159.023253
  30
 0.0
  11
-366.50000000000017
+384.50000000000017
  21
 159.023253
  31
@@ -4151,13 +4421,13 @@ LINE
   8
 0
  10
-368.0000000000001
+386.0000000000001
  20
 122.52325300000003
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 145.523253
  31
@@ -4169,13 +4439,13 @@ LINE
   8
 0
  10
-368.0000000000001
+386.0000000000001
  20
 145.523253
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 145.523253
  31
@@ -4187,13 +4457,13 @@ LINE
   8
 0
  10
-356.00000000000017
+374.00000000000017
  20
 145.523253
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 122.52325300000003
  31
@@ -4205,13 +4475,13 @@ LINE
   8
 0
  10
-356.00000000000017
+374.00000000000017
  20
 122.52325300000003
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 122.52325300000003
  31
@@ -4223,13 +4493,13 @@ LINE
   8
 0
  10
-368.0000000000001
+386.0000000000001
  20
 117.02325300000003
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 121.02325300000003
  31
@@ -4241,13 +4511,13 @@ LINE
   8
 0
  10
-368.0000000000001
+386.0000000000001
  20
 121.02325300000003
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 121.02325300000003
  31
@@ -4259,13 +4529,13 @@ LINE
   8
 0
  10
-356.00000000000017
+374.00000000000017
  20
 121.02325300000003
  30
 0.0
  11
-356.00000000000017
+374.00000000000017
  21
 117.02325300000003
  31
@@ -4277,13 +4547,13 @@ LINE
   8
 0
  10
-356.00000000000017
+374.00000000000017
  20
 117.02325300000003
  30
 0.0
  11
-368.0000000000001
+386.0000000000001
  21
 117.02325300000003
  31
@@ -4295,13 +4565,121 @@ LINE
   8
 0
  10
-367.6666666666668
+402.2727272727274
  20
 94.52325300000001
  30
 0.0
  11
-367.6666666666668
+407.2727272727274
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+407.2727272727274
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+402.2727272727274
+ 21
+99.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+402.2727272727274
+ 20
+99.52325300000003
+ 30
+0.0
+ 11
+389.54545454545473
+ 21
+99.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+389.54545454545473
+ 20
+99.52325300000003
+ 30
+0.0
+ 11
+384.54545454545473
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+384.54545454545473
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+389.54545454545473
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+370.4545454545456
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+375.45454545454555
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+375.45454545454555
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+370.4545454545456
  21
 99.52325300000003
  31
@@ -4313,13 +4691,13 @@ LINE
   8
 0
  10
-367.6666666666668
+370.4545454545456
  20
 99.52325300000003
  30
 0.0
  11
-356.3333333333335
+357.72727272727286
  21
 99.52325300000003
  31
@@ -4331,13 +4709,31 @@ LINE
   8
 0
  10
-356.3333333333335
+357.72727272727286
  20
 99.52325300000003
  30
 0.0
  11
-356.3333333333335
+352.7272727272729
+ 21
+94.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+352.7272727272729
+ 20
+94.52325300000001
+ 30
+0.0
+ 11
+357.72727272727286
  21
 94.52325300000001
  31
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
index 4128fcd65d89fb1921fe0026d594cafe541db2ad..3fcccf6885131a14eca4f8d7bd23774b9e0153b3 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
+++ b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
@@ -1,659 +1,650 @@
 <?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="480.500000mm" version="1.1" viewBox="0.000000 0.000000 696.355061 480.500000" width="696.355061mm">
+<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="480.500000mm" version="1.1" viewBox="0.000000 0.000000 640.355061 480.500000" width="640.355061mm">
   <defs/>
-  <line stroke="#000000" x1="160.30855606972293" x2="98.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="160.30855606972293" y1="166.0" y2="166.0"/>
-  <line opacity="0.25" stroke="#ff0000" x1="98.65427803486146" x2="98.65427803486146" y1="166.0" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="170.30855606972293" x2="160.30855606972293" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="170.30855606972293" x2="170.30855606972293" y1="166.0" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="160.30855606972293" x2="170.30855606972293" y1="166.0" y2="166.0"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="98.65427803486146" y1="166.0" y2="166.0"/>
-  <line opacity="0.25" stroke="#ff0000" x1="71.65427803486145" x2="71.65427803486145" y1="105.00000000000001" y2="166.0"/>
-  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="10.000000000000002" x2="71.65427803486145" y1="166.0" y2="166.0"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="10.000000000000002" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="152.30855606972293" x2="94.65427803486148" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="94.65427803486148" x2="152.30855606972293" y1="166.0" y2="166.0"/>
+  <line opacity="0.25" stroke="#ff0000" x1="94.65427803486148" x2="94.65427803486148" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="162.30855606972293" x2="152.30855606972293" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="162.30855606972293" x2="162.30855606972293" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="152.30855606972293" x2="162.30855606972293" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="67.65427803486148" x2="94.65427803486148" y1="166.0" y2="166.0"/>
+  <line opacity="0.25" stroke="#ff0000" x1="67.65427803486148" x2="67.65427803486148" y1="105.00000000000001" y2="166.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="94.65427803486148" x2="67.65427803486148" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="10.000000000000016" x2="67.65427803486148" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="67.65427803486148" x2="10.000000000000016" y1="105.00000000000001" y2="105.00000000000001"/>
   <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="166.0" y2="166.0"/>
   <line stroke="#000000" x1="0.0" x2="0.0" y1="105.00000000000001" y2="166.0"/>
   <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="105.00000000000001" y2="88.00000000000001"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="88.00000000000001" y2="105.00000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="88.00000000000001" y2="88.00000000000001"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="88.00000000000001" y2="27.000000000000004"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="27.000000000000004" y2="88.00000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="27.000000000000004" y2="27.000000000000004"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="27.000000000000004" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="10.000000000000002" y2="27.000000000000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="71.65427803486145" x2="98.65427803486146" y1="10.000000000000002" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="0.0" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="71.65427803486145" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="10.000000000000002" y2="0.0"/>
-  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="154.90909090909093" y2="154.90909090909093"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="154.90909090909093" y2="143.8181818181818"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="143.8181818181818" y2="143.8181818181818"/>
-  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="127.1818181818182" y2="127.1818181818182"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="127.1818181818182" y2="116.09090909090911"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="116.09090909090911" y2="116.09090909090911"/>
-  <line stroke="#888888" x1="94.15427803486146" x2="94.15427803486146" y1="102.50000000000001" y2="108.50000000000001"/>
-  <line stroke="#888888" x1="94.15427803486146" x2="76.15427803486145" y1="108.50000000000001" y2="108.50000000000001"/>
-  <line stroke="#888888" x1="76.15427803486145" x2="76.15427803486145" y1="108.50000000000001" y2="102.50000000000001"/>
-  <line stroke="#888888" x1="76.15427803486145" x2="94.15427803486146" y1="102.50000000000001" y2="102.50000000000001"/>
-  <line stroke="#888888" x1="80.40427803486146" x2="89.90427803486145" y1="158.25000000000003" y2="158.25000000000003"/>
-  <line stroke="#888888" x1="89.90427803486145" x2="89.90427803486145" y1="158.25000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="89.90427803486145" x2="80.40427803486146" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="80.40427803486146" x2="80.40427803486146" y1="158.75000000000003" y2="158.25000000000003"/>
+  <line stroke="#000000" x1="94.65427803486148" x2="94.65427803486148" y1="105.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="67.65427803486148" x2="67.65427803486148" y1="88.00000000000001" y2="105.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="94.65427803486148" x2="67.65427803486148" y1="88.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="94.65427803486148" x2="94.65427803486148" y1="88.00000000000001" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="67.65427803486148" x2="67.65427803486148" y1="27.000000000000004" y2="88.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="94.65427803486148" x2="67.65427803486148" y1="27.000000000000004" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="94.65427803486148" x2="94.65427803486148" y1="27.000000000000004" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="67.65427803486148" x2="67.65427803486148" y1="10.000000000000002" y2="27.000000000000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="67.65427803486148" x2="94.65427803486148" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="67.65427803486148" x2="67.65427803486148" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="94.65427803486148" x2="67.65427803486148" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="94.65427803486148" x2="94.65427803486148" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="159.80855606972293" x2="154.80855606972293" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="154.80855606972293" x2="154.80855606972293" y1="154.90909090909093" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="154.80855606972293" x2="159.8085560697229" y1="143.8181818181818" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="159.80855606972293" x2="154.80855606972293" y1="127.1818181818182" y2="127.1818181818182"/>
+  <line stroke="#888888" x1="154.80855606972293" x2="154.80855606972293" y1="127.1818181818182" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="154.80855606972293" x2="159.8085560697229" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="90.15427803486148" x2="90.15427803486148" y1="102.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="90.15427803486148" x2="72.15427803486148" y1="108.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="72.15427803486148" x2="72.15427803486148" y1="108.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="72.15427803486148" x2="90.15427803486148" y1="102.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="76.40427803486146" x2="85.90427803486148" y1="158.25000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="85.90427803486148" x2="85.90427803486148" y1="158.25000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="85.90427803486148" x2="76.40427803486146" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="76.40427803486146" x2="76.40427803486146" y1="158.75000000000003" y2="158.25000000000003"/>
   <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="116.09090909090911" y2="116.09090909090911"/>
   <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="116.09090909090911" y2="127.18181818181822"/>
   <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="127.18181818181822" y2="127.18181818181822"/>
-  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="143.81818181818184" y2="143.81818181818184"/>
-  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="143.81818181818184" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="143.8181818181818" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="143.8181818181818" y2="154.90909090909093"/>
   <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="154.90909090909093" y2="154.90909090909093"/>
-  <line stroke="#888888" x1="89.65427803486146" x2="89.65427803486146" y1="2.5000000000000004" y2="7.500000000000001"/>
-  <line stroke="#888888" x1="89.65427803486146" x2="80.65427803486146" y1="7.500000000000001" y2="7.500000000000001"/>
-  <line stroke="#888888" x1="80.65427803486146" x2="80.65427803486146" y1="7.500000000000001" y2="2.5000000000000004"/>
-  <line stroke="#000000" x1="327.33180874014937" x2="266.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line opacity="0.05555555555555555" stroke="#0000ff" x1="327.33180874014937" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line opacity="0.05555555555555555" stroke="#0000ff" x1="361.3318087401493" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="266.3318087401493" x2="266.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="327.33180874014937" x2="253.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="361.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="253.33180874014934" x2="327.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="253.33180874014934" x2="253.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="135.50000000000003" y2="101.50000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="327.33180874014937" x2="327.33180874014937" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="327.33180874014937" x2="327.33180874014937" y1="65.5" y2="101.50000000000001"/>
-  <line opacity="0.5" stroke="#ff0000" x1="327.33180874014937" x2="351.33180874014937" y1="65.5" y2="65.5"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="101.50000000000001" y2="65.5"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="65.5" y2="20.5"/>
-  <line stroke="#000000" x1="327.33180874014937" x2="327.33180874014937" y1="20.5" y2="65.5"/>
-  <line stroke="#000000" x1="327.33180874014937" x2="327.33180874014937" y1="15.500000000000004" y2="20.5"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="327.33180874014937" y1="15.500000000000004" y2="15.500000000000004"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="20.5" y2="15.500000000000004"/>
-  <line stroke="#000000" x1="327.33180874014937" x2="307.3318087401493" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="307.3318087401493" x2="327.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="307.3318087401493" x2="307.3318087401493" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="307.3318087401493" x2="283.3318087401493" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="283.3318087401493" x2="307.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="283.3318087401493" x2="283.3318087401493" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="283.3318087401493" x2="263.33180874014937" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="263.33180874014937" x2="283.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="263.33180874014937" x2="263.33180874014937" y1="135.50000000000003" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="253.33180874014934" x2="263.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="253.33180874014934" x2="253.33180874014934" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="263.33180874014937" x2="253.33180874014934" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line opacity="0.25" stroke="#0000ff" x1="361.3318087401493" x2="422.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="99.36137800081471" y2="135.50000000000003"/>
-  <line opacity="0.25" stroke="#0000ff" x1="422.33180874014937" x2="361.3318087401493" y1="75.36137800081471" y2="75.36137800081471"/>
-  <line opacity="0.5" stroke="#0000ff" x1="422.33180874014937" x2="422.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="39.22275600162939" y2="75.36137800081472"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="361.3318087401493" y1="39.22275600162939" y2="39.22275600162939"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="75.36137800081472" y2="39.22275600162939"/>
-  <line stroke="#000000" x1="432.33180874014937" x2="422.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
-  <line stroke="#000000" x1="432.33180874014937" x2="432.33180874014937" y1="99.36137800081471" y2="75.36137800081471"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="432.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="361.3318087401493" y1="99.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
-  <line opacity="0.5" stroke="#0000ff" x1="422.33180874014937" x2="266.3318087401493" y1="205.50000000000003" y2="205.50000000000003"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="422.33180874014937" x2="422.33180874014937" y1="205.50000000000003" y2="135.50000000000003"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="422.33180874014937" x2="474.84617955831095" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line opacity="1.0" stroke="#ff0000" x1="422.33180874014937" x2="474.84617955831095" y1="205.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="117.99520972727949" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="474.84617955831095" x2="422.33180874014937" y1="117.99520972727949" y2="117.99520972727949"/>
-  <line stroke="#000000" x1="474.84617955831095" x2="474.84617955831095" y1="135.50000000000003" y2="117.99520972727949"/>
-  <line opacity="1.0" stroke="#0000ff" x1="422.33180874014937" x2="489.5369564140486" y1="205.50000000000003" y2="185.91765779766357"/>
-  <line stroke="#000000" x1="489.5369564140486" x2="474.84617955831095" y1="185.91765779766357" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="504.22773326978614" x2="489.5369564140486" y1="236.33531559532716" y2="185.91765779766357"/>
-  <line stroke="#000000" x1="508.3550614105757" x2="504.22773326978614" y1="250.50000000000003" y2="236.33531559532716"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="508.3550614105757" x2="422.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="422.33180874014937" x2="422.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="422.3318087401494" x2="422.33180874014937" y1="295.5" y2="250.50000000000006"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="508.35506141057573" x2="422.3318087401494" y1="250.50000000000003" y2="295.50000000000006"/>
-  <line opacity="1.0" stroke="#0000ff" x1="489.5369564140486" x2="422.33180874014937" y1="315.08234220233646" y2="295.50000000000006"/>
-  <line stroke="#000000" x1="504.22773326978614" x2="508.3550614105757" y1="264.6646844046729" y2="250.50000000000003"/>
-  <line stroke="#000000" x1="489.5369564140486" x2="504.22773326978614" y1="315.08234220233646" y2="264.6646844046729"/>
-  <line stroke="#000000" x1="474.84617955831106" x2="489.5369564140486" y1="365.50000000000006" y2="315.0823422023364"/>
-  <line opacity="1.0" stroke="#ff0000" x1="474.84617955831106" x2="422.3318087401494" y1="365.50000000000006" y2="295.50000000000006"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="422.3318087401495" x2="422.33180874014937" y1="365.5000000000001" y2="295.5"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="474.84617955831106" x2="422.3318087401495" y1="365.50000000000006" y2="365.5000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="422.3318087401494" x2="266.3318087401493" y1="295.50000000000006" y2="295.50000000000017"/>
-  <line opacity="0.05555555555555555" stroke="#0000ff" x1="422.3318087401495" x2="361.3318087401494" y1="365.5000000000001" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="351.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line opacity="0.05555555555555555" stroke="#0000ff" x1="351.3318087401494" x2="327.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="266.33180874014937" x2="327.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="365.5000000000003" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
-  <line stroke="#000000" x1="351.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="253.33180874014937" x2="327.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="253.33180874014937" x2="253.33180874014937" y1="365.5000000000003" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="327.3318087401494" x2="253.33180874014937" y1="365.50000000000017" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="361.3318087401494" x2="351.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="375.5000000000001" y2="365.5000000000001"/>
-  <line stroke="#000000" x1="361.3318087401494" x2="422.3318087401495" y1="375.50000000000017" y2="375.5000000000001"/>
-  <line stroke="#000000" x1="361.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="375.50000000000017"/>
-  <line stroke="#000000" x1="351.3318087401494" x2="351.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
-  <line opacity="0.5" stroke="#0000ff" x1="327.3318087401494" x2="327.3318087401495" y1="365.50000000000017" y2="399.5000000000001"/>
-  <line stroke="#000000" x1="351.3318087401495" x2="351.3318087401494" y1="435.50000000000017" y2="399.5000000000001"/>
-  <line opacity="0.5" stroke="#ff0000" x1="351.3318087401495" x2="327.3318087401495" y1="435.50000000000017" y2="435.50000000000017"/>
-  <line stroke="#000000" x1="327.3318087401495" x2="327.3318087401495" y1="399.5000000000001" y2="435.50000000000017"/>
-  <line stroke="#000000" x1="327.3318087401495" x2="327.33180874014954" y1="435.50000000000017" y2="480.50000000000017"/>
-  <line stroke="#000000" x1="351.3318087401495" x2="351.3318087401494" y1="480.50000000000017" y2="435.50000000000017"/>
-  <line stroke="#000000" x1="327.33180874014954" x2="351.3318087401495" y1="480.50000000000017" y2="480.50000000000017"/>
-  <line stroke="#000000" x1="327.3318087401494" x2="307.33180874014937" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="307.3318087401495" x2="327.3318087401495" y1="399.5000000000001" y2="399.5000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="307.33180874014937" x2="307.3318087401495" y1="365.50000000000017" y2="399.5000000000001"/>
-  <line stroke="#000000" x1="307.33180874014937" x2="283.33180874014937" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="283.3318087401494" x2="307.3318087401495" y1="399.5000000000001" y2="399.5000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="283.33180874014937" x2="283.3318087401494" y1="365.50000000000017" y2="399.5000000000001"/>
-  <line stroke="#000000" x1="283.33180874014937" x2="263.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="263.3318087401494" x2="283.3318087401494" y1="399.5000000000001" y2="399.5000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="263.3318087401494" x2="263.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="253.33180874014943" x2="263.3318087401494" y1="399.5000000000001" y2="399.5000000000001"/>
-  <line stroke="#000000" x1="253.3318087401494" x2="253.33180874014943" y1="365.50000000000017" y2="399.5000000000001"/>
-  <line stroke="#000000" x1="263.3318087401494" x2="253.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="266.3318087401493" x2="266.33180874014937" y1="295.50000000000017" y2="365.5000000000002"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="266.33180874014937" x2="213.81743792198782" y1="365.5000000000003" y2="365.5000000000003"/>
-  <line opacity="1.0" stroke="#ff0000" x1="266.3318087401493" x2="213.81743792198782" y1="295.5000000000002" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="383.00479027272075" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="213.81743792198782" x2="266.33180874014937" y1="383.00479027272087" y2="383.00479027272075"/>
-  <line stroke="#000000" x1="213.81743792198782" x2="213.81743792198782" y1="365.5000000000003" y2="383.00479027272087"/>
-  <line opacity="1.0" stroke="#0000ff" x1="266.3318087401493" x2="199.12666106625016" y1="295.50000000000017" y2="315.08234220233675"/>
-  <line stroke="#000000" x1="199.12666106625016" x2="213.81743792198782" y1="315.08234220233675" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="184.43588421051248" x2="199.12666106625016" y1="264.6646844046731" y2="315.08234220233675"/>
-  <line stroke="#000000" x1="180.30855606972295" x2="184.43588421051248" y1="250.50000000000028" y2="264.6646844046731"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="180.30855606972295" x2="266.3318087401493" y1="250.50000000000028" y2="295.50000000000017"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="266.3318087401493" x2="266.3318087401493" y1="250.50000000000017" y2="295.50000000000017"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="266.33180874014926" x2="266.3318087401493" y1="205.50000000000017" y2="250.5000000000002"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="180.3085560697229" x2="266.33180874014926" y1="250.5000000000003" y2="205.50000000000014"/>
-  <line opacity="1.0" stroke="#0000ff" x1="199.12666106624997" x2="266.33180874014926" y1="185.91765779766385" y2="205.50000000000014"/>
-  <line stroke="#000000" x1="184.43588421051243" x2="180.3085560697229" y1="236.33531559532744" y2="250.5000000000003"/>
-  <line stroke="#000000" x1="199.12666106624997" x2="184.43588421051243" y1="185.91765779766385" y2="236.33531559532744"/>
-  <line stroke="#000000" x1="213.81743792198745" x2="199.12666106624997" y1="135.50000000000023" y2="185.91765779766385"/>
-  <line opacity="1.0" stroke="#ff0000" x1="213.81743792198745" x2="266.3318087401492" y1="135.50000000000023" y2="205.50000000000017"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="266.3318087401491" x2="266.33180874014926" y1="135.5000000000001" y2="205.50000000000017"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="213.81743792198748" x2="266.3318087401491" y1="135.50000000000023" y2="135.5000000000001"/>
-  <line stroke="#000000" x1="213.81743792198742" x2="213.81743792198748" y1="117.9952097272797" y2="135.50000000000023"/>
-  <line stroke="#000000" x1="266.3318087401491" x2="213.81743792198742" y1="117.9952097272796" y2="117.9952097272797"/>
-  <line stroke="#000000" x1="266.3318087401491" x2="266.3318087401491" y1="135.5000000000001" y2="117.9952097272796"/>
-  <line stroke="#000000" x1="474.8461795583111" x2="474.84617955831106" y1="383.0047902727206" y2="365.50000000000006"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="474.8461795583111" y1="383.00479027272064" y2="383.0047902727206"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="383.00479027272064"/>
-  <line stroke="#888888" x1="288.76362692196756" x2="277.1727178310585" y1="143.25" y2="143.25"/>
-  <line stroke="#888888" x1="277.1727178310585" x2="277.1727178310585" y1="143.25" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="277.1727178310585" x2="288.76362692196756" y1="142.75000000000003" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="288.76362692196756" x2="288.76362692196756" y1="142.75000000000003" y2="143.25"/>
-  <line stroke="#888888" x1="316.49089964924025" x2="304.8999905583311" y1="143.25" y2="143.25"/>
-  <line stroke="#888888" x1="304.8999905583311" x2="304.8999905583311" y1="143.25" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="304.8999905583311" x2="316.49089964924025" y1="142.75000000000003" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="316.49089964924025" x2="316.49089964924025" y1="142.75000000000003" y2="143.25"/>
-  <line stroke="#888888" x1="343.5818087401493" x2="343.5818087401493" y1="124.41666666666669" y2="112.58333333333334"/>
-  <line stroke="#888888" x1="343.5818087401493" x2="344.08180874014937" y1="112.58333333333334" y2="112.58333333333334"/>
-  <line stroke="#888888" x1="344.08180874014937" x2="344.08180874014937" y1="112.58333333333334" y2="124.41666666666669"/>
-  <line stroke="#888888" x1="344.08180874014937" x2="343.5818087401493" y1="124.41666666666669" y2="124.41666666666669"/>
-  <line stroke="#888888" x1="343.3318087401493" x2="345.83180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
-  <line stroke="#888888" x1="345.83180874014937" x2="343.3318087401493" y1="16.750000000000004" y2="19.250000000000004"/>
-  <line stroke="#888888" x1="343.3318087401493" x2="335.33180874014937" y1="19.250000000000004" y2="19.250000000000004"/>
-  <line stroke="#888888" x1="335.33180874014937" x2="332.83180874014937" y1="19.250000000000004" y2="16.750000000000004"/>
-  <line stroke="#888888" x1="332.83180874014937" x2="335.33180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
-  <line stroke="#888888" x1="308.33180874014937" x2="312.33180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="312.33180874014937" x2="312.33180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="312.33180874014937" x2="308.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="308.33180874014937" x2="308.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="320.3318087401493" x2="324.33180874014937" y1="114.00000000000001" y2="114.00000000000001"/>
-  <line stroke="#888888" x1="324.33180874014937" x2="324.33180874014937" y1="114.00000000000001" y2="123.00000000000001"/>
-  <line stroke="#888888" x1="324.33180874014937" x2="320.3318087401493" y1="123.00000000000001" y2="123.00000000000001"/>
-  <line stroke="#888888" x1="320.3318087401493" x2="320.3318087401493" y1="123.00000000000001" y2="114.00000000000001"/>
-  <line stroke="#888888" x1="283.8318087401493" x2="306.8318087401493" y1="112.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="306.8318087401493" x2="306.8318087401493" y1="112.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="306.8318087401493" x2="283.8318087401493" y1="124.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="283.8318087401493" x2="283.8318087401493" y1="124.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="278.33180874014937" x2="282.33180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="282.33180874014937" x2="282.33180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="282.33180874014937" x2="278.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="278.33180874014937" x2="278.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="255.83180874014934" x2="260.83180874014937" y1="112.83333333333336" y2="112.83333333333336"/>
-  <line stroke="#888888" x1="260.83180874014937" x2="260.83180874014937" y1="112.83333333333336" y2="124.16666666666669"/>
-  <line stroke="#888888" x1="260.83180874014937" x2="255.83180874014934" y1="124.16666666666669" y2="124.16666666666669"/>
-  <line stroke="#888888" x1="379.3318087401493" x2="390.33180874014937" y1="80.86137800081471" y2="80.86137800081471"/>
-  <line stroke="#888888" x1="390.33180874014937" x2="390.33180874014937" y1="80.86137800081471" y2="93.86137800081471"/>
-  <line stroke="#888888" x1="390.33180874014937" x2="379.3318087401493" y1="93.86137800081471" y2="93.86137800081471"/>
-  <line stroke="#888888" x1="379.3318087401493" x2="379.3318087401493" y1="93.86137800081471" y2="80.86137800081471"/>
-  <line stroke="#888888" x1="410.83180874014937" x2="416.83180874014937" y1="82.36137800081471" y2="82.36137800081471"/>
-  <line stroke="#888888" x1="416.83180874014937" x2="416.83180874014937" y1="82.36137800081471" y2="92.36137800081471"/>
-  <line stroke="#888888" x1="416.83180874014937" x2="410.83180874014937" y1="92.36137800081471" y2="92.36137800081471"/>
-  <line stroke="#888888" x1="410.83180874014937" x2="410.83180874014937" y1="92.36137800081471" y2="82.36137800081471"/>
-  <line stroke="#888888" x1="383.76362692196756" x2="372.1727178310585" y1="46.9727560016294" y2="46.9727560016294"/>
-  <line stroke="#888888" x1="372.1727178310585" x2="372.1727178310585" y1="46.9727560016294" y2="46.4727560016294"/>
-  <line stroke="#888888" x1="372.1727178310585" x2="383.76362692196756" y1="46.4727560016294" y2="46.4727560016294"/>
-  <line stroke="#888888" x1="383.76362692196756" x2="383.76362692196756" y1="46.4727560016294" y2="46.9727560016294"/>
-  <line stroke="#888888" x1="411.49089964924025" x2="399.8999905583312" y1="46.9727560016294" y2="46.9727560016294"/>
-  <line stroke="#888888" x1="399.8999905583312" x2="399.8999905583312" y1="46.9727560016294" y2="46.4727560016294"/>
-  <line stroke="#888888" x1="399.8999905583312" x2="411.49089964924025" y1="46.4727560016294" y2="46.4727560016294"/>
-  <line stroke="#888888" x1="411.49089964924025" x2="411.49089964924025" y1="46.4727560016294" y2="46.9727560016294"/>
-  <line stroke="#888888" x1="429.8318087401493" x2="424.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="424.83180874014937" x2="424.83180874014937" y1="91.36137800081471" y2="83.36137800081471"/>
-  <line stroke="#888888" x1="424.83180874014937" x2="429.8318087401493" y1="83.36137800081471" y2="83.36137800081471"/>
-  <line stroke="#888888" x1="353.83180874014937" x2="358.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
-  <line stroke="#888888" x1="358.83180874014937" x2="358.83180874014937" y1="83.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="358.83180874014937" x2="353.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="457.3413892855904" x2="457.3413892855904" y1="122.37140729545962" y2="131.12380243181985"/>
-  <line stroke="#888888" x1="457.3413892855904" x2="439.8365990128699" y1="131.12380243181985" y2="131.12380243181988"/>
-  <line stroke="#888888" x1="439.8365990128699" x2="439.8365990128699" y1="131.12380243181988" y2="122.37140729545962"/>
-  <line stroke="#888888" x1="486.5563117536783" x2="481.5195122622253" y1="223.5120791976936" y2="206.22615649603978"/>
-  <line stroke="#888888" x1="481.5195122622253" x2="481.99954903132453" y1="206.22615649603978" y2="206.08628262316594"/>
-  <line stroke="#888888" x1="481.99954903132453" x2="487.0363485227776" y1="206.08628262316594" y2="223.37220532481973"/>
-  <line stroke="#888888" x1="487.0363485227776" x2="486.5563117536783" y1="223.37220532481973" y2="223.5120791976936"/>
-  <line stroke="#888888" x1="481.5195122622253" x2="486.55631175367836" y1="294.77384350396034" y2="277.4879208023065"/>
-  <line stroke="#888888" x1="486.55631175367836" x2="487.0363485227776" y1="277.4879208023065" y2="277.6277946751803"/>
-  <line stroke="#888888" x1="487.0363485227776" x2="481.9995490313246" y1="277.6277946751803" y2="294.91371737683414"/>
-  <line stroke="#888888" x1="481.9995490313246" x2="481.5195122622253" y1="294.91371737683414" y2="294.77384350396034"/>
-  <line stroke="#888888" x1="304.8999905583312" x2="316.4908996492403" y1="357.7500000000002" y2="357.75000000000017"/>
-  <line stroke="#888888" x1="316.4908996492403" x2="316.4908996492403" y1="357.75000000000017" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="316.4908996492403" x2="304.8999905583312" y1="358.25000000000017" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="304.8999905583312" x2="304.8999905583312" y1="358.25000000000017" y2="357.7500000000002"/>
-  <line stroke="#888888" x1="277.1727178310585" x2="288.7636269219676" y1="357.7500000000002" y2="357.7500000000002"/>
-  <line stroke="#888888" x1="288.7636269219676" x2="288.7636269219676" y1="357.7500000000002" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="288.7636269219676" x2="277.1727178310585" y1="358.25000000000017" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="277.1727178310585" x2="277.1727178310585" y1="358.25000000000017" y2="357.7500000000002"/>
-  <line stroke="#888888" x1="372.42271783105855" x2="372.42271783105855" y1="373.0000000000001" y2="368.0000000000001"/>
-  <line stroke="#888888" x1="372.42271783105855" x2="383.5136269219676" y1="368.0000000000001" y2="368.0000000000001"/>
-  <line stroke="#888888" x1="383.5136269219676" x2="383.51362692196767" y1="368.0000000000001" y2="373.0000000000001"/>
-  <line stroke="#888888" x1="400.14999055833124" x2="400.14999055833124" y1="373.0000000000001" y2="368.0000000000001"/>
-  <line stroke="#888888" x1="400.14999055833124" x2="411.24089964924036" y1="368.0000000000001" y2="368.00000000000006"/>
-  <line stroke="#888888" x1="411.24089964924036" x2="411.2408996492404" y1="368.00000000000006" y2="373.00000000000006"/>
-  <line stroke="#888888" x1="343.5818087401495" x2="343.5818087401495" y1="388.4166666666668" y2="376.5833333333335"/>
-  <line stroke="#888888" x1="343.5818087401495" x2="344.0818087401495" y1="376.5833333333335" y2="376.5833333333335"/>
-  <line stroke="#888888" x1="344.0818087401495" x2="344.0818087401495" y1="376.5833333333335" y2="388.4166666666668"/>
-  <line stroke="#888888" x1="344.0818087401495" x2="343.5818087401495" y1="388.4166666666668" y2="388.4166666666668"/>
-  <line stroke="#888888" x1="335.08180874014954" x2="343.58180874014954" y1="476.50000000000017" y2="476.50000000000017"/>
-  <line stroke="#888888" x1="343.58180874014954" x2="343.58180874014954" y1="476.50000000000017" y2="477.00000000000017"/>
-  <line stroke="#888888" x1="343.58180874014954" x2="335.08180874014954" y1="477.00000000000017" y2="477.00000000000017"/>
-  <line stroke="#888888" x1="335.08180874014954" x2="335.08180874014954" y1="477.00000000000017" y2="476.50000000000017"/>
-  <line stroke="#888888" x1="308.3318087401494" x2="312.3318087401494" y1="376.50000000000017" y2="376.50000000000017"/>
-  <line stroke="#888888" x1="312.3318087401494" x2="312.3318087401495" y1="376.50000000000017" y2="388.50000000000017"/>
-  <line stroke="#888888" x1="312.3318087401495" x2="308.3318087401495" y1="388.50000000000017" y2="388.50000000000017"/>
-  <line stroke="#888888" x1="308.3318087401495" x2="308.3318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
-  <line stroke="#888888" x1="320.33180874014937" x2="324.3318087401494" y1="378.00000000000017" y2="378.00000000000017"/>
-  <line stroke="#888888" x1="324.3318087401494" x2="324.3318087401494" y1="378.00000000000017" y2="387.00000000000017"/>
-  <line stroke="#888888" x1="324.3318087401494" x2="320.3318087401494" y1="387.00000000000017" y2="387.00000000000017"/>
-  <line stroke="#888888" x1="320.3318087401494" x2="320.33180874014937" y1="387.00000000000017" y2="378.00000000000017"/>
-  <line stroke="#888888" x1="283.83180874014937" x2="306.83180874014937" y1="376.50000000000017" y2="376.50000000000017"/>
-  <line stroke="#888888" x1="306.83180874014937" x2="306.8318087401494" y1="376.50000000000017" y2="388.50000000000017"/>
-  <line stroke="#888888" x1="306.8318087401494" x2="283.83180874014937" y1="388.50000000000017" y2="388.50000000000017"/>
-  <line stroke="#888888" x1="283.83180874014937" x2="283.83180874014937" y1="388.50000000000017" y2="376.50000000000017"/>
-  <line stroke="#888888" x1="278.3318087401494" x2="282.3318087401494" y1="376.50000000000017" y2="376.50000000000017"/>
-  <line stroke="#888888" x1="282.3318087401494" x2="282.3318087401494" y1="376.50000000000017" y2="388.50000000000017"/>
-  <line stroke="#888888" x1="282.3318087401494" x2="278.3318087401494" y1="388.50000000000017" y2="388.50000000000017"/>
-  <line stroke="#888888" x1="278.3318087401494" x2="278.3318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
-  <line stroke="#888888" x1="255.8318087401494" x2="260.8318087401494" y1="376.8333333333335" y2="376.8333333333335"/>
-  <line stroke="#888888" x1="260.8318087401494" x2="260.8318087401494" y1="376.8333333333335" y2="388.16666666666686"/>
-  <line stroke="#888888" x1="260.8318087401494" x2="255.8318087401494" y1="388.16666666666686" y2="388.16666666666686"/>
-  <line stroke="#888888" x1="231.32222819470834" x2="231.32222819470834" y1="378.6285927045407" y2="369.87619756818043"/>
-  <line stroke="#888888" x1="231.32222819470834" x2="248.82701846742887" y1="369.87619756818043" y2="369.87619756818043"/>
-  <line stroke="#888888" x1="248.82701846742887" x2="248.82701846742887" y1="369.87619756818043" y2="378.6285927045407"/>
-  <line stroke="#888888" x1="202.10730572662035" x2="207.1441052180734" y1="277.4879208023067" y2="294.7738435039605"/>
-  <line stroke="#888888" x1="207.1441052180734" x2="206.66406844897412" y1="294.7738435039605" y2="294.9137173768343"/>
-  <line stroke="#888888" x1="206.66406844897412" x2="201.62726895752107" y1="294.9137173768343" y2="277.62779467518055"/>
-  <line stroke="#888888" x1="201.62726895752107" x2="202.10730572662035" y1="277.62779467518055" y2="277.4879208023067"/>
-  <line stroke="#888888" x1="207.14410521807326" x2="202.10730572662024" y1="206.22615649604003" y2="223.51207919769385"/>
-  <line stroke="#888888" x1="202.10730572662024" x2="201.62726895752098" y1="223.51207919769385" y2="223.37220532482002"/>
-  <line stroke="#888888" x1="201.62726895752098" x2="206.66406844897395" y1="223.37220532482002" y2="206.08628262316617"/>
-  <line stroke="#888888" x1="206.66406844897395" x2="207.14410521807326" y1="206.08628262316617" y2="206.22615649604003"/>
-  <line stroke="#888888" x1="248.8270184674285" x2="248.82701846742856" y1="122.37140729545976" y2="131.12380243182005"/>
-  <line stroke="#888888" x1="248.82701846742856" x2="231.322228194708" y1="131.12380243182005" y2="131.12380243182008"/>
-  <line stroke="#888888" x1="231.322228194708" x2="231.32222819470798" y1="131.12380243182008" y2="122.3714072954598"/>
-  <line stroke="#888888" x1="439.83659901287" x2="439.83659901287" y1="378.6285927045405" y2="369.87619756818015"/>
-  <line stroke="#888888" x1="439.83659901287" x2="457.34138928559054" y1="369.87619756818015" y2="369.87619756818015"/>
-  <line stroke="#888888" x1="457.34138928559054" x2="457.34138928559054" y1="369.87619756818015" y2="378.6285927045405"/>
-  <line opacity="0.5" stroke="#0000ff" x1="551.3550614105758" x2="612.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="612.3550614105757" x2="612.3550614105757" y1="123.50000000000001" y2="147.5"/>
-  <line opacity="0.5" stroke="#0000ff" x1="612.3550614105757" x2="551.3550614105758" y1="147.5" y2="147.5"/>
-  <line opacity="0.5" stroke="#0000ff" x1="551.3550614105758" x2="551.3550614105758" y1="147.5" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="551.3550614105758" x2="551.3550614105758" y1="116.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="611.3550614105757" x2="551.3550614105758" y1="116.50000000000001" y2="116.50000000000001"/>
-  <line stroke="#000000" x1="611.3550614105757" x2="611.3550614105757" y1="123.50000000000001" y2="116.50000000000001"/>
-  <line stroke="#000000" x1="619.3550614105757" x2="612.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="619.3550614105757" x2="619.3550614105757" y1="147.5" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="612.3550614105757" x2="619.3550614105757" y1="147.5" y2="147.5"/>
-  <line opacity="0.5" stroke="#0000ff" x1="612.3550614105757" x2="612.3550614105757" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="552.3550614105758" x2="612.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="552.3550614105758" x2="552.3550614105758" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="636.3550614105758" x2="612.3550614105757" y1="147.5" y2="147.5"/>
-  <line opacity="0.5" stroke="#0000ff" x1="636.3550614105758" x2="636.3550614105758" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="612.3550614105757" x2="636.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="696.3550614105758" x2="636.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="696.3550614105758" x2="696.3550614105758" y1="208.50000000000003" y2="147.5"/>
-  <line stroke="#000000" x1="636.3550614105758" x2="696.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="552.3550614105758" x2="528.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="528.3550614105758" x2="552.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="528.3550614105758" x2="528.3550614105758" y1="208.50000000000003" y2="147.5"/>
-  <line stroke="#000000" x1="518.3550614105758" x2="528.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="518.3550614105758" x2="518.3550614105758" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="528.3550614105758" x2="518.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="544.3550614105758" x2="551.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="544.3550614105758" x2="544.3550614105758" y1="123.50000000000001" y2="147.5"/>
-  <line stroke="#000000" x1="551.3550614105758" x2="544.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#888888" x1="600.4459705014849" x2="603.9459705014848" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="603.9459705014848" x2="600.4459705014849" y1="118.25000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="600.4459705014849" x2="589.5368795923938" y1="121.75000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="589.5368795923938" x2="586.036879592394" y1="121.75000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="586.036879592394" x2="589.5368795923938" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="573.1732432287577" x2="576.6732432287575" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="576.6732432287575" x2="573.1732432287577" y1="118.25000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="573.1732432287577" x2="562.2641523196666" y1="121.75000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="562.2641523196666" x2="558.7641523196667" y1="121.75000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="558.7641523196667" x2="562.2641523196666" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="617.6050614105757" x2="614.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
-  <line stroke="#888888" x1="614.1050614105758" x2="614.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/>
-  <line stroke="#888888" x1="614.1050614105758" x2="617.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/>
-  <line stroke="#888888" x1="559.8550614105758" x2="559.8550614105758" y1="199.00000000000003" y2="181.00000000000003"/>
-  <line stroke="#888888" x1="559.8550614105758" x2="594.8550614105757" y1="181.00000000000003" y2="181.00000000000003"/>
-  <line stroke="#888888" x1="594.8550614105757" x2="594.8550614105757" y1="181.00000000000003" y2="199.00000000000003"/>
-  <line stroke="#888888" x1="594.8550614105757" x2="559.8550614105758" y1="199.00000000000003" y2="199.00000000000003"/>
-  <line stroke="#888888" x1="612.8550614105757" x2="612.8550614105757" y1="160.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="612.8550614105757" x2="615.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="615.8550614105758" x2="615.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="615.8550614105758" x2="612.8550614105757" y1="160.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="632.8550614105758" x2="632.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="632.8550614105758" x2="635.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="635.8550614105758" x2="635.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="635.8550614105758" x2="632.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="628.6050614105758" x2="620.1050614105758" y1="155.25000000000003" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="620.1050614105758" x2="620.1050614105758" y1="155.25000000000003" y2="154.75"/>
-  <line stroke="#888888" x1="620.1050614105758" x2="628.6050614105758" y1="154.75" y2="154.75"/>
-  <line stroke="#888888" x1="628.6050614105758" x2="628.6050614105758" y1="154.75" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="620.1050614105758" x2="628.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="628.6050614105758" x2="628.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="628.6050614105758" x2="620.1050614105758" y1="203.50000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="620.1050614105758" x2="620.1050614105758" y1="203.50000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="651.3550614105758" x2="651.3550614105758" y1="198.50000000000003" y2="185.50000000000003"/>
-  <line stroke="#888888" x1="651.3550614105758" x2="681.3550614105758" y1="185.50000000000003" y2="185.50000000000003"/>
-  <line stroke="#888888" x1="681.3550614105758" x2="681.3550614105758" y1="185.50000000000003" y2="198.50000000000003"/>
-  <line stroke="#888888" x1="681.3550614105758" x2="651.3550614105758" y1="198.50000000000003" y2="198.50000000000003"/>
-  <line stroke="#888888" x1="658.4232432287575" x2="647.0141523196667" y1="153.00000000000003" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="647.0141523196667" x2="647.0141523196667" y1="153.00000000000003" y2="152.5"/>
-  <line stroke="#888888" x1="647.0141523196667" x2="658.4232432287575" y1="152.5" y2="152.5"/>
-  <line stroke="#888888" x1="658.4232432287575" x2="658.4232432287575" y1="152.5" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="685.6959705014849" x2="674.2868795923939" y1="153.00000000000003" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="674.2868795923939" x2="674.2868795923939" y1="153.00000000000003" y2="152.5"/>
-  <line stroke="#888888" x1="674.2868795923939" x2="685.6959705014849" y1="152.5" y2="152.5"/>
-  <line stroke="#888888" x1="685.6959705014849" x2="685.6959705014849" y1="152.5" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="688.6050614105757" x2="688.6050614105757" y1="169.93181818181822" y2="158.3409090909091"/>
-  <line stroke="#888888" x1="688.6050614105757" x2="689.1050614105757" y1="158.3409090909091" y2="158.3409090909091"/>
-  <line stroke="#888888" x1="689.1050614105757" x2="689.1050614105757" y1="158.3409090909091" y2="169.93181818181822"/>
-  <line stroke="#888888" x1="689.1050614105757" x2="688.6050614105757" y1="169.93181818181822" y2="169.93181818181822"/>
-  <line stroke="#888888" x1="688.6050614105757" x2="688.6050614105757" y1="197.65909090909093" y2="186.06818181818184"/>
-  <line stroke="#888888" x1="688.6050614105757" x2="689.1050614105757" y1="186.06818181818184" y2="186.06818181818184"/>
-  <line stroke="#888888" x1="689.1050614105757" x2="689.1050614105757" y1="186.06818181818184" y2="197.65909090909093"/>
-  <line stroke="#888888" x1="689.1050614105757" x2="688.6050614105757" y1="197.65909090909093" y2="197.65909090909093"/>
-  <line stroke="#888888" x1="528.8550614105758" x2="528.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="528.8550614105758" x2="531.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="531.8550614105758" x2="531.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="531.8550614105758" x2="528.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="548.8550614105757" x2="548.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="548.8550614105757" x2="551.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="551.8550614105758" x2="551.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="551.8550614105758" x2="548.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="544.6050614105757" x2="536.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="536.1050614105757" x2="536.1050614105757" y1="155.25000000000003" y2="154.75"/>
-  <line stroke="#888888" x1="536.1050614105757" x2="544.6050614105757" y1="154.75" y2="154.75"/>
-  <line stroke="#888888" x1="544.6050614105757" x2="544.6050614105757" y1="154.75" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="536.1050614105757" x2="544.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="544.6050614105757" x2="544.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="544.6050614105757" x2="536.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="536.1050614105757" x2="536.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="520.8550614105757" x2="525.8550614105757" y1="158.59090909090912" y2="158.59090909090912"/>
-  <line stroke="#888888" x1="525.8550614105757" x2="525.8550614105757" y1="158.59090909090912" y2="169.68181818181822"/>
-  <line stroke="#888888" x1="525.8550614105757" x2="520.8550614105757" y1="169.68181818181822" y2="169.68181818181822"/>
-  <line stroke="#888888" x1="520.8550614105757" x2="525.8550614105757" y1="186.31818181818184" y2="186.31818181818184"/>
-  <line stroke="#888888" x1="525.8550614105757" x2="525.8550614105757" y1="186.31818181818184" y2="197.40909090909093"/>
-  <line stroke="#888888" x1="525.8550614105757" x2="520.8550614105757" y1="197.40909090909093" y2="197.40909090909093"/>
-  <line stroke="#888888" x1="546.1050614105758" x2="549.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/>
-  <line stroke="#888888" x1="549.6050614105758" x2="549.6050614105758" y1="131.50000000000003" y2="139.50000000000003"/>
-  <line stroke="#888888" x1="549.6050614105758" x2="546.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="85.65427803486148" x2="85.65427803486148" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="85.65427803486148" x2="76.65427803486148" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="76.65427803486148" x2="76.65427803486148" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#000000" x1="319.33180874014937" x2="258.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.05555555555555555" stroke="#0000ff" x1="319.33180874014937" x2="343.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="353.33180874014937" x2="343.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.05555555555555555" stroke="#0000ff" x1="353.33180874014937" x2="414.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="414.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="258.33180874014937" x2="258.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="319.33180874014937" x2="245.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="353.33180874014937" x2="343.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="414.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="353.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="245.33180874014934" x2="319.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="245.33180874014934" x2="245.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="343.3318087401493" y1="135.50000000000003" y2="101.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="319.33180874014937" x2="319.33180874014937" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="319.33180874014937" x2="319.33180874014937" y1="65.5" y2="101.50000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="319.33180874014937" x2="343.3318087401493" y1="65.5" y2="65.5"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="343.3318087401493" y1="101.50000000000001" y2="65.5"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="343.3318087401493" y1="65.5" y2="20.5"/>
+  <line stroke="#000000" x1="319.33180874014937" x2="319.33180874014937" y1="20.5" y2="65.5"/>
+  <line stroke="#000000" x1="319.33180874014937" x2="319.33180874014937" y1="15.500000000000004" y2="20.5"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="319.33180874014937" y1="15.500000000000004" y2="15.500000000000004"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="343.3318087401493" y1="20.5" y2="15.500000000000004"/>
+  <line stroke="#000000" x1="319.33180874014937" x2="299.33180874014937" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="299.33180874014937" x2="319.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="299.33180874014937" x2="299.33180874014937" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="299.33180874014937" x2="275.3318087401493" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="275.3318087401493" x2="299.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="275.3318087401493" x2="275.3318087401493" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="275.3318087401493" x2="255.33180874014934" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="255.33180874014934" x2="275.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="255.33180874014934" x2="255.33180874014934" y1="135.50000000000003" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="245.33180874014934" x2="255.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="245.33180874014934" x2="245.33180874014934" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="255.33180874014934" x2="245.33180874014934" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line opacity="0.25" stroke="#0000ff" x1="353.33180874014937" x2="414.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="414.33180874014937" y1="135.50000000000003" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="353.33180874014937" x2="353.33180874014937" y1="99.36137800081471" y2="135.50000000000003"/>
+  <line opacity="0.25" stroke="#0000ff" x1="414.33180874014937" x2="353.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line opacity="0.5" stroke="#0000ff" x1="414.33180874014937" x2="414.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="353.33180874014937" x2="353.33180874014937" y1="39.22275600162939" y2="75.36137800081472"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="353.33180874014937" y1="39.22275600162939" y2="39.22275600162939"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="414.33180874014937" y1="75.36137800081472" y2="39.22275600162939"/>
+  <line stroke="#000000" x1="424.33180874014937" x2="414.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#000000" x1="424.33180874014937" x2="424.33180874014937" y1="99.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="424.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="353.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="343.3318087401493" y1="75.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="353.33180874014937" x2="343.3318087401493" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line opacity="0.5" stroke="#0000ff" x1="414.33180874014937" x2="258.33180874014937" y1="205.50000000000003" y2="205.50000000000003"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="414.33180874014937" x2="414.33180874014937" y1="205.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="414.33180874014937" x2="466.8461795583109" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="1.0" stroke="#ff0000" x1="414.33180874014937" x2="466.8461795583109" y1="205.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="414.33180874014937" y1="117.99520972727949" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="466.8461795583109" x2="414.33180874014937" y1="117.99520972727949" y2="117.99520972727949"/>
+  <line stroke="#000000" x1="466.8461795583109" x2="466.8461795583109" y1="135.50000000000003" y2="117.99520972727949"/>
+  <line opacity="1.0" stroke="#0000ff" x1="414.33180874014937" x2="481.5369564140486" y1="205.50000000000003" y2="185.91765779766357"/>
+  <line stroke="#000000" x1="481.5369564140486" x2="466.8461795583109" y1="185.91765779766357" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="496.22773326978614" x2="481.5369564140486" y1="236.33531559532716" y2="185.91765779766357"/>
+  <line stroke="#000000" x1="500.3550614105757" x2="496.22773326978614" y1="250.50000000000003" y2="236.33531559532716"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="500.3550614105757" x2="414.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="414.33180874014937" x2="414.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="414.3318087401494" x2="414.33180874014937" y1="295.5" y2="250.50000000000006"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="500.35506141057573" x2="414.3318087401494" y1="250.50000000000003" y2="295.50000000000006"/>
+  <line opacity="1.0" stroke="#0000ff" x1="481.5369564140486" x2="414.33180874014937" y1="315.08234220233646" y2="295.50000000000006"/>
+  <line stroke="#000000" x1="496.22773326978614" x2="500.3550614105757" y1="264.6646844046729" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="481.5369564140486" x2="496.22773326978614" y1="315.08234220233646" y2="264.6646844046729"/>
+  <line stroke="#000000" x1="466.84617955831106" x2="481.5369564140486" y1="365.50000000000006" y2="315.0823422023364"/>
+  <line opacity="1.0" stroke="#ff0000" x1="466.84617955831106" x2="414.3318087401494" y1="365.50000000000006" y2="295.50000000000006"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="414.3318087401495" x2="414.33180874014937" y1="365.5000000000001" y2="295.5"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="466.84617955831106" x2="414.3318087401495" y1="365.50000000000006" y2="365.5000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="414.3318087401494" x2="258.33180874014937" y1="295.50000000000006" y2="295.50000000000017"/>
+  <line opacity="0.05555555555555555" stroke="#0000ff" x1="414.3318087401495" x2="353.3318087401495" y1="365.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="343.3318087401494" x2="353.3318087401495" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line opacity="0.05555555555555555" stroke="#0000ff" x1="343.3318087401494" x2="319.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="258.3318087401494" x2="319.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="258.3318087401494" x2="258.3318087401494" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="414.3318087401495" x2="414.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="343.3318087401494" x2="353.3318087401495" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="245.3318087401494" x2="319.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="245.3318087401494" x2="245.3318087401494" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="319.3318087401494" x2="245.3318087401494" y1="365.50000000000017" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="353.3318087401495" x2="343.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="414.3318087401495" x2="414.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="414.3318087401495" x2="414.3318087401495" y1="375.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="353.3318087401495" x2="414.3318087401495" y1="375.50000000000017" y2="375.5000000000001"/>
+  <line stroke="#000000" x1="353.3318087401495" x2="353.3318087401495" y1="365.50000000000017" y2="375.50000000000017"/>
+  <line stroke="#000000" x1="343.3318087401494" x2="343.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
+  <line opacity="0.5" stroke="#0000ff" x1="319.3318087401494" x2="319.3318087401494" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="343.33180874014954" x2="343.3318087401494" y1="435.50000000000017" y2="399.5000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="343.33180874014954" x2="319.3318087401494" y1="435.50000000000017" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="319.3318087401494" x2="319.3318087401494" y1="399.5000000000001" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="319.3318087401494" x2="319.3318087401495" y1="435.50000000000017" y2="480.50000000000017"/>
+  <line stroke="#000000" x1="343.33180874014954" x2="343.3318087401494" y1="480.50000000000017" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="319.3318087401495" x2="343.33180874014954" y1="480.50000000000017" y2="480.50000000000017"/>
+  <line stroke="#000000" x1="319.3318087401494" x2="299.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="299.3318087401495" x2="319.3318087401494" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="299.3318087401494" x2="299.3318087401495" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="299.3318087401494" x2="275.33180874014937" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="275.3318087401494" x2="299.3318087401495" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="275.33180874014937" x2="275.3318087401494" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="275.33180874014937" x2="255.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="255.33180874014943" x2="275.3318087401494" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="255.33180874014943" x2="255.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="245.33180874014943" x2="255.33180874014943" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="245.3318087401494" x2="245.33180874014943" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="255.3318087401494" x2="245.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="258.33180874014937" x2="258.3318087401494" y1="295.50000000000017" y2="365.5000000000002"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="258.3318087401494" x2="205.8174379219878" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line opacity="1.0" stroke="#ff0000" x1="258.33180874014937" x2="205.8174379219878" y1="295.5000000000002" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="258.3318087401494" x2="258.3318087401494" y1="383.00479027272075" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="205.8174379219878" x2="258.3318087401494" y1="383.00479027272087" y2="383.00479027272075"/>
+  <line stroke="#000000" x1="205.8174379219878" x2="205.8174379219878" y1="365.5000000000003" y2="383.00479027272087"/>
+  <line opacity="1.0" stroke="#0000ff" x1="258.33180874014937" x2="191.12666106625016" y1="295.50000000000017" y2="315.08234220233675"/>
+  <line stroke="#000000" x1="191.12666106625016" x2="205.8174379219878" y1="315.08234220233675" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="176.4358842105125" x2="191.12666106625016" y1="264.6646844046731" y2="315.08234220233675"/>
+  <line stroke="#000000" x1="172.30855606972295" x2="176.4358842105125" y1="250.50000000000028" y2="264.6646844046731"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="172.30855606972295" x2="258.33180874014937" y1="250.50000000000028" y2="295.50000000000017"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="258.3318087401493" x2="258.33180874014937" y1="250.50000000000017" y2="295.50000000000017"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="258.3318087401492" x2="258.3318087401493" y1="205.50000000000017" y2="250.5000000000002"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="172.30855606972293" x2="258.3318087401492" y1="250.5000000000003" y2="205.50000000000014"/>
+  <line opacity="1.0" stroke="#0000ff" x1="191.12666106624997" x2="258.3318087401492" y1="185.91765779766385" y2="205.50000000000014"/>
+  <line stroke="#000000" x1="176.43588421051246" x2="172.30855606972293" y1="236.33531559532744" y2="250.5000000000003"/>
+  <line stroke="#000000" x1="191.12666106624997" x2="176.43588421051246" y1="185.91765779766385" y2="236.33531559532744"/>
+  <line stroke="#000000" x1="205.81743792198745" x2="191.12666106624997" y1="135.50000000000023" y2="185.91765779766385"/>
+  <line opacity="1.0" stroke="#ff0000" x1="205.81743792198745" x2="258.33180874014914" y1="135.50000000000023" y2="205.50000000000017"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="258.33180874014903" x2="258.3318087401492" y1="135.5000000000001" y2="205.50000000000017"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="205.81743792198748" x2="258.33180874014903" y1="135.50000000000023" y2="135.5000000000001"/>
+  <line stroke="#000000" x1="205.81743792198742" x2="205.81743792198748" y1="117.9952097272797" y2="135.50000000000023"/>
+  <line stroke="#000000" x1="258.33180874014903" x2="205.81743792198742" y1="117.9952097272796" y2="117.9952097272797"/>
+  <line stroke="#000000" x1="258.33180874014903" x2="258.33180874014903" y1="135.5000000000001" y2="117.9952097272796"/>
+  <line stroke="#000000" x1="466.8461795583111" x2="466.84617955831106" y1="383.0047902727206" y2="365.50000000000006"/>
+  <line stroke="#000000" x1="414.3318087401495" x2="466.8461795583111" y1="383.00479027272064" y2="383.0047902727206"/>
+  <line stroke="#000000" x1="414.3318087401495" x2="414.3318087401495" y1="365.5000000000001" y2="383.00479027272064"/>
+  <line stroke="#888888" x1="280.7636269219675" x2="269.1727178310585" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="269.1727178310585" x2="269.1727178310585" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="269.1727178310585" x2="280.7636269219675" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="280.7636269219675" x2="280.7636269219675" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="308.49089964924025" x2="296.8999905583312" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="296.8999905583312" x2="296.8999905583312" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="296.8999905583312" x2="308.49089964924025" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="308.49089964924025" x2="308.49089964924025" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="335.58180874014937" x2="335.58180874014937" y1="124.41666666666669" y2="112.58333333333334"/>
+  <line stroke="#888888" x1="335.58180874014937" x2="336.08180874014937" y1="112.58333333333334" y2="112.58333333333334"/>
+  <line stroke="#888888" x1="336.08180874014937" x2="336.08180874014937" y1="112.58333333333334" y2="124.41666666666669"/>
+  <line stroke="#888888" x1="336.08180874014937" x2="335.58180874014937" y1="124.41666666666669" y2="124.41666666666669"/>
+  <line stroke="#888888" x1="335.33180874014937" x2="337.83180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="337.83180874014937" x2="335.33180874014937" y1="16.750000000000004" y2="19.250000000000004"/>
+  <line stroke="#888888" x1="335.33180874014937" x2="327.33180874014937" y1="19.250000000000004" y2="19.250000000000004"/>
+  <line stroke="#888888" x1="327.33180874014937" x2="324.8318087401493" y1="19.250000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="324.8318087401493" x2="327.33180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="300.33180874014937" x2="304.33180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="304.33180874014937" x2="304.33180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="304.33180874014937" x2="300.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="300.33180874014937" x2="300.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="312.33180874014937" x2="316.3318087401493" y1="114.00000000000001" y2="114.00000000000001"/>
+  <line stroke="#888888" x1="316.3318087401493" x2="316.3318087401493" y1="114.00000000000001" y2="123.00000000000001"/>
+  <line stroke="#888888" x1="316.3318087401493" x2="312.33180874014937" y1="123.00000000000001" y2="123.00000000000001"/>
+  <line stroke="#888888" x1="312.33180874014937" x2="312.33180874014937" y1="123.00000000000001" y2="114.00000000000001"/>
+  <line stroke="#888888" x1="275.8318087401493" x2="298.83180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="298.83180874014937" x2="298.83180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="298.83180874014937" x2="275.8318087401493" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="275.8318087401493" x2="275.8318087401493" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="270.33180874014937" x2="274.3318087401493" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="274.3318087401493" x2="274.3318087401493" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="274.3318087401493" x2="270.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="270.33180874014937" x2="270.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="247.83180874014934" x2="252.83180874014934" y1="112.83333333333336" y2="112.83333333333336"/>
+  <line stroke="#888888" x1="252.83180874014934" x2="252.83180874014934" y1="112.83333333333336" y2="124.16666666666669"/>
+  <line stroke="#888888" x1="252.83180874014934" x2="247.83180874014934" y1="124.16666666666669" y2="124.16666666666669"/>
+  <line stroke="#888888" x1="371.33180874014937" x2="382.33180874014937" y1="80.86137800081471" y2="80.86137800081471"/>
+  <line stroke="#888888" x1="382.33180874014937" x2="382.33180874014937" y1="80.86137800081471" y2="93.86137800081471"/>
+  <line stroke="#888888" x1="382.33180874014937" x2="371.33180874014937" y1="93.86137800081471" y2="93.86137800081471"/>
+  <line stroke="#888888" x1="371.33180874014937" x2="371.33180874014937" y1="93.86137800081471" y2="80.86137800081471"/>
+  <line stroke="#888888" x1="402.8318087401493" x2="408.83180874014937" y1="82.36137800081471" y2="82.36137800081471"/>
+  <line stroke="#888888" x1="408.83180874014937" x2="408.83180874014937" y1="82.36137800081471" y2="92.36137800081471"/>
+  <line stroke="#888888" x1="408.83180874014937" x2="402.8318087401493" y1="92.36137800081471" y2="92.36137800081471"/>
+  <line stroke="#888888" x1="402.8318087401493" x2="402.8318087401493" y1="92.36137800081471" y2="82.36137800081471"/>
+  <line stroke="#888888" x1="375.76362692196756" x2="364.17271783105843" y1="46.9727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="364.17271783105843" x2="364.17271783105843" y1="46.9727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="364.17271783105843" x2="375.76362692196756" y1="46.4727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="375.76362692196756" x2="375.76362692196756" y1="46.4727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="403.4908996492402" x2="391.8999905583312" y1="46.9727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="391.8999905583312" x2="391.8999905583312" y1="46.9727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="391.8999905583312" x2="403.4908996492402" y1="46.4727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="403.4908996492402" x2="403.4908996492402" y1="46.4727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="421.83180874014937" x2="416.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="416.83180874014937" x2="416.83180874014937" y1="91.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="416.83180874014937" x2="421.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="345.83180874014937" x2="350.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="350.83180874014937" x2="350.83180874014937" y1="83.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="350.83180874014937" x2="345.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="449.3413892855904" x2="449.3413892855904" y1="122.37140729545962" y2="131.12380243181985"/>
+  <line stroke="#888888" x1="449.3413892855904" x2="431.8365990128699" y1="131.12380243181985" y2="131.12380243181988"/>
+  <line stroke="#888888" x1="431.8365990128699" x2="431.8365990128699" y1="131.12380243181988" y2="122.37140729545962"/>
+  <line stroke="#888888" x1="478.55631175367824" x2="473.5195122622253" y1="223.5120791976936" y2="206.22615649603978"/>
+  <line stroke="#888888" x1="473.5195122622253" x2="473.99954903132453" y1="206.22615649603978" y2="206.08628262316594"/>
+  <line stroke="#888888" x1="473.99954903132453" x2="479.0363485227776" y1="206.08628262316594" y2="223.37220532481973"/>
+  <line stroke="#888888" x1="479.0363485227776" x2="478.55631175367824" y1="223.37220532481973" y2="223.5120791976936"/>
+  <line stroke="#888888" x1="473.5195122622253" x2="478.55631175367836" y1="294.77384350396034" y2="277.4879208023065"/>
+  <line stroke="#888888" x1="478.55631175367836" x2="479.0363485227776" y1="277.4879208023065" y2="277.6277946751803"/>
+  <line stroke="#888888" x1="479.0363485227776" x2="473.9995490313246" y1="277.6277946751803" y2="294.91371737683414"/>
+  <line stroke="#888888" x1="473.9995490313246" x2="473.5195122622253" y1="294.91371737683414" y2="294.77384350396034"/>
+  <line stroke="#888888" x1="296.89999055833124" x2="308.4908996492403" y1="357.7500000000002" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="308.4908996492403" x2="308.4908996492403" y1="357.75000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="308.4908996492403" x2="296.89999055833124" y1="358.25000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="296.89999055833124" x2="296.89999055833124" y1="358.25000000000017" y2="357.7500000000002"/>
+  <line stroke="#888888" x1="269.1727178310585" x2="280.76362692196756" y1="357.7500000000002" y2="357.7500000000002"/>
+  <line stroke="#888888" x1="280.76362692196756" x2="280.76362692196756" y1="357.7500000000002" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="280.76362692196756" x2="269.1727178310585" y1="358.25000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="269.1727178310585" x2="269.1727178310585" y1="358.25000000000017" y2="357.7500000000002"/>
+  <line stroke="#888888" x1="364.4227178310585" x2="364.4227178310585" y1="373.0000000000001" y2="368.0000000000001"/>
+  <line stroke="#888888" x1="364.4227178310585" x2="375.5136269219676" y1="368.0000000000001" y2="368.0000000000001"/>
+  <line stroke="#888888" x1="375.5136269219676" x2="375.51362692196767" y1="368.0000000000001" y2="373.0000000000001"/>
+  <line stroke="#888888" x1="392.1499905583313" x2="392.1499905583313" y1="373.0000000000001" y2="368.0000000000001"/>
+  <line stroke="#888888" x1="392.1499905583313" x2="403.2408996492403" y1="368.0000000000001" y2="368.00000000000006"/>
+  <line stroke="#888888" x1="403.2408996492403" x2="403.24089964924036" y1="368.00000000000006" y2="373.00000000000006"/>
+  <line stroke="#888888" x1="335.5818087401495" x2="335.5818087401495" y1="388.4166666666668" y2="376.5833333333335"/>
+  <line stroke="#888888" x1="335.5818087401495" x2="336.0818087401495" y1="376.5833333333335" y2="376.5833333333335"/>
+  <line stroke="#888888" x1="336.0818087401495" x2="336.0818087401495" y1="376.5833333333335" y2="388.4166666666668"/>
+  <line stroke="#888888" x1="336.0818087401495" x2="335.5818087401495" y1="388.4166666666668" y2="388.4166666666668"/>
+  <line stroke="#888888" x1="327.08180874014954" x2="335.58180874014954" y1="476.50000000000017" y2="476.50000000000017"/>
+  <line stroke="#888888" x1="335.58180874014954" x2="335.58180874014954" y1="476.50000000000017" y2="477.00000000000017"/>
+  <line stroke="#888888" x1="335.58180874014954" x2="327.08180874014954" y1="477.00000000000017" y2="477.00000000000017"/>
+  <line stroke="#888888" x1="327.08180874014954" x2="327.08180874014954" y1="477.00000000000017" y2="476.50000000000017"/>
+  <line stroke="#888888" x1="300.3318087401494" x2="304.3318087401494" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="304.3318087401494" x2="304.3318087401495" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="304.3318087401495" x2="300.3318087401495" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="300.3318087401495" x2="300.3318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="312.3318087401494" x2="316.3318087401494" y1="378.00000000000017" y2="378.00000000000017"/>
+  <line stroke="#888888" x1="316.3318087401494" x2="316.3318087401494" y1="378.00000000000017" y2="387.00000000000017"/>
+  <line stroke="#888888" x1="316.3318087401494" x2="312.3318087401495" y1="387.00000000000017" y2="387.00000000000017"/>
+  <line stroke="#888888" x1="312.3318087401495" x2="312.3318087401494" y1="387.00000000000017" y2="378.00000000000017"/>
+  <line stroke="#888888" x1="275.8318087401494" x2="298.8318087401494" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="298.8318087401494" x2="298.8318087401495" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="298.8318087401495" x2="275.8318087401494" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="275.8318087401494" x2="275.8318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="270.3318087401494" x2="274.33180874014937" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="274.33180874014937" x2="274.33180874014937" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="274.33180874014937" x2="270.3318087401494" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="270.3318087401494" x2="270.3318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="247.8318087401494" x2="252.8318087401494" y1="376.8333333333335" y2="376.8333333333335"/>
+  <line stroke="#888888" x1="252.8318087401494" x2="252.8318087401494" y1="376.8333333333335" y2="388.16666666666686"/>
+  <line stroke="#888888" x1="252.8318087401494" x2="247.8318087401494" y1="388.16666666666686" y2="388.16666666666686"/>
+  <line stroke="#888888" x1="223.32222819470834" x2="223.32222819470834" y1="378.6285927045407" y2="369.87619756818043"/>
+  <line stroke="#888888" x1="223.32222819470834" x2="240.82701846742887" y1="369.87619756818043" y2="369.87619756818043"/>
+  <line stroke="#888888" x1="240.82701846742887" x2="240.82701846742887" y1="369.87619756818043" y2="378.6285927045407"/>
+  <line stroke="#888888" x1="194.10730572662035" x2="199.1441052180734" y1="277.4879208023067" y2="294.7738435039605"/>
+  <line stroke="#888888" x1="199.1441052180734" x2="198.66406844897412" y1="294.7738435039605" y2="294.9137173768343"/>
+  <line stroke="#888888" x1="198.66406844897412" x2="193.62726895752107" y1="294.9137173768343" y2="277.62779467518055"/>
+  <line stroke="#888888" x1="193.62726895752107" x2="194.10730572662035" y1="277.62779467518055" y2="277.4879208023067"/>
+  <line stroke="#888888" x1="199.14410521807326" x2="194.10730572662027" y1="206.22615649604003" y2="223.51207919769385"/>
+  <line stroke="#888888" x1="194.10730572662027" x2="193.62726895752098" y1="223.51207919769385" y2="223.37220532482002"/>
+  <line stroke="#888888" x1="193.62726895752098" x2="198.66406844897398" y1="223.37220532482002" y2="206.08628262316617"/>
+  <line stroke="#888888" x1="198.66406844897398" x2="199.14410521807326" y1="206.08628262316617" y2="206.22615649604003"/>
+  <line stroke="#888888" x1="240.8270184674285" x2="240.82701846742853" y1="122.37140729545976" y2="131.12380243182005"/>
+  <line stroke="#888888" x1="240.82701846742853" x2="223.322228194708" y1="131.12380243182005" y2="131.12380243182008"/>
+  <line stroke="#888888" x1="223.322228194708" x2="223.32222819470798" y1="131.12380243182008" y2="122.3714072954598"/>
+  <line stroke="#888888" x1="431.83659901287" x2="431.83659901287" y1="378.6285927045405" y2="369.87619756818015"/>
+  <line stroke="#888888" x1="431.83659901287" x2="449.34138928559054" y1="369.87619756818015" y2="369.87619756818015"/>
+  <line stroke="#888888" x1="449.34138928559054" x2="449.34138928559054" y1="369.87619756818015" y2="378.6285927045405"/>
+  <line opacity="0.5" stroke="#0000ff" x1="519.3550614105758" x2="580.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="580.3550614105758" x2="580.3550614105758" y1="123.50000000000001" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="580.3550614105758" x2="519.3550614105758" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="519.3550614105758" x2="519.3550614105758" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="519.3550614105758" x2="519.3550614105758" y1="116.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="555.3550614105757" x2="519.3550614105758" y1="116.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="555.3550614105757" x2="555.3550614105757" y1="123.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="587.3550614105758" x2="580.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="587.3550614105758" x2="587.3550614105758" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="580.3550614105758" x2="587.3550614105758" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="580.3550614105758" x2="580.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="544.3550614105758" x2="580.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="544.3550614105758" x2="544.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="604.3550614105758" x2="580.3550614105758" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="604.3550614105758" x2="604.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="580.3550614105758" x2="604.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="640.3550614105757" x2="604.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="640.3550614105757" x2="640.3550614105757" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="604.3550614105758" x2="640.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="544.3550614105758" x2="520.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="520.3550614105758" x2="544.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="520.3550614105758" x2="520.3550614105758" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="510.35506141057573" x2="520.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="510.35506141057573" x2="510.35506141057573" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="520.3550614105758" x2="510.35506141057573" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="512.3550614105757" x2="519.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="512.3550614105757" x2="512.3550614105757" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#000000" x1="519.3550614105758" x2="512.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#888888" x1="543.3550614105758" x2="546.8550614105757" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="546.8550614105757" x2="543.3550614105758" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="543.3550614105758" x2="531.3550614105757" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="531.3550614105757" x2="527.8550614105758" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="527.8550614105758" x2="531.3550614105757" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="585.6050614105758" x2="582.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="582.1050614105758" x2="582.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="582.1050614105758" x2="585.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="557.4693471248615" x2="557.4693471248615" y1="202.25000000000003" y2="184.25"/>
+  <line stroke="#888888" x1="557.4693471248615" x2="578.0407756962901" y1="184.25" y2="184.25"/>
+  <line stroke="#888888" x1="578.0407756962901" x2="578.0407756962901" y1="184.25" y2="202.25000000000003"/>
+  <line stroke="#888888" x1="578.0407756962901" x2="557.4693471248615" y1="202.25000000000003" y2="202.25000000000003"/>
+  <line stroke="#888888" x1="580.8550614105758" x2="580.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="580.8550614105758" x2="583.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="583.8550614105757" x2="583.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="583.8550614105757" x2="580.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="600.8550614105757" x2="600.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="600.8550614105757" x2="603.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="603.8550614105757" x2="603.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="603.8550614105757" x2="600.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="596.6050614105757" x2="588.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="588.1050614105757" x2="588.1050614105757" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="588.1050614105757" x2="596.6050614105757" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="596.6050614105757" x2="596.6050614105757" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="588.1050614105757" x2="596.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="596.6050614105757" x2="596.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="596.6050614105757" x2="588.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="588.1050614105757" x2="588.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="609.9093471248615" x2="609.9093471248615" y1="204.02" y2="191.02"/>
+  <line stroke="#888888" x1="609.9093471248615" x2="630.48077569629" y1="191.02" y2="191.02"/>
+  <line stroke="#888888" x1="630.48077569629" x2="630.48077569629" y1="191.02" y2="204.02"/>
+  <line stroke="#888888" x1="630.48077569629" x2="609.9093471248615" y1="204.02" y2="204.02"/>
+  <line stroke="#888888" x1="628.6050614105758" x2="616.1050614105757" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="616.1050614105757" x2="616.1050614105757" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="616.1050614105757" x2="628.6050614105758" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="628.6050614105758" x2="628.6050614105758" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="632.6050614105758" x2="632.6050614105758" y1="169.93181818181822" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="632.6050614105758" x2="633.1050614105757" y1="158.3409090909091" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="633.1050614105757" y1="158.3409090909091" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="632.6050614105758" y1="169.93181818181822" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="632.6050614105758" x2="632.6050614105758" y1="197.65909090909093" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="632.6050614105758" x2="633.1050614105757" y1="186.06818181818184" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="633.1050614105757" y1="186.06818181818184" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="632.6050614105758" y1="197.65909090909093" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="520.8550614105757" x2="520.8550614105757" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="520.8550614105757" x2="523.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="523.8550614105758" x2="523.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="523.8550614105758" x2="520.8550614105757" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="540.8550614105758" x2="540.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="540.8550614105758" x2="543.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="540.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="536.6050614105758" x2="528.1050614105758" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="528.1050614105758" x2="528.1050614105758" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="528.1050614105758" x2="536.6050614105758" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="536.6050614105758" x2="536.6050614105758" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="528.1050614105758" x2="536.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="536.6050614105758" x2="536.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="536.6050614105758" x2="528.1050614105758" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="528.1050614105758" x2="528.1050614105758" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="512.8550614105757" x2="517.8550614105757" y1="158.59090909090912" y2="158.59090909090912"/>
+  <line stroke="#888888" x1="517.8550614105757" x2="517.8550614105757" y1="158.59090909090912" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="517.8550614105757" x2="512.8550614105757" y1="169.68181818181822" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="512.8550614105757" x2="517.8550614105757" y1="186.31818181818184" y2="186.31818181818184"/>
+  <line stroke="#888888" x1="517.8550614105757" x2="517.8550614105757" y1="186.31818181818184" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="517.8550614105757" x2="512.8550614105757" y1="197.40909090909093" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="514.1050614105758" x2="517.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="517.6050614105757" x2="517.6050614105757" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="517.6050614105757" x2="514.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
 </svg>
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
index 4f288b5c5cec2cc33e44045f7c8f9104b38ef1b4..52f8aea4124876d6f6357f8501666554e96a99dd 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
@@ -1063,13 +1063,13 @@ LINE
   8
 cut
  10
-160.30855606972293
+152.30855606972293
  20
 105.00000000000001
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 105.00000000000001
  31
@@ -1081,13 +1081,13 @@ LINE
   8
 cut
  10
-98.65427803486146
+94.65427803486148
  20
 166.0
  30
 0.0
  11
-160.30855606972293
+152.30855606972293
  21
 166.0
  31
@@ -1101,13 +1101,13 @@ DOTTED
   8
 -45
  10
-98.65427803486146
+94.65427803486148
  20
 166.0
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 105.00000000000001
  31
@@ -1119,13 +1119,13 @@ LINE
   8
 cut
  10
-170.30855606972293
+162.30855606972293
  20
 105.00000000000001
  30
 0.0
  11
-160.30855606972293
+152.30855606972293
  21
 105.00000000000001
  31
@@ -1137,13 +1137,13 @@ LINE
   8
 cut
  10
-170.30855606972293
+162.30855606972293
  20
 166.0
  30
 0.0
  11
-170.30855606972293
+162.30855606972293
  21
 105.00000000000001
  31
@@ -1155,13 +1155,13 @@ LINE
   8
 cut
  10
-160.30855606972293
+152.30855606972293
  20
 166.0
  30
 0.0
  11
-170.30855606972293
+162.30855606972293
  21
 166.0
  31
@@ -1173,13 +1173,13 @@ LINE
   8
 cut
  10
-71.65427803486145
+67.65427803486148
  20
 166.0
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 166.0
  31
@@ -1193,13 +1193,13 @@ DOTTED
   8
 -45
  10
-71.65427803486145
+67.65427803486148
  20
 105.00000000000001
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 166.0
  31
@@ -1213,13 +1213,13 @@ DOTTED
   8
 90
  10
-98.65427803486146
+94.65427803486148
  20
 105.00000000000001
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 105.00000000000001
  31
@@ -1231,13 +1231,13 @@ LINE
   8
 cut
  10
-10.000000000000002
+10.000000000000016
  20
 166.0
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 166.0
  31
@@ -1249,13 +1249,13 @@ LINE
   8
 cut
  10
-71.65427803486145
+67.65427803486148
  20
 105.00000000000001
  30
 0.0
  11
-10.000000000000002
+10.000000000000016
  21
 105.00000000000001
  31
@@ -1321,13 +1321,13 @@ LINE
   8
 cut
  10
-98.65427803486146
+94.65427803486148
  20
 105.00000000000001
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 88.00000000000001
  31
@@ -1339,13 +1339,13 @@ LINE
   8
 cut
  10
-71.65427803486145
+67.65427803486148
  20
 88.00000000000001
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 105.00000000000001
  31
@@ -1359,13 +1359,13 @@ DOTTED
   8
 90
  10
-98.65427803486146
+94.65427803486148
  20
 88.00000000000001
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 88.00000000000001
  31
@@ -1377,13 +1377,13 @@ LINE
   8
 cut
  10
-98.65427803486146
+94.65427803486148
  20
 88.00000000000001
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 27.000000000000004
  31
@@ -1395,13 +1395,13 @@ LINE
   8
 cut
  10
-71.65427803486145
+67.65427803486148
  20
 27.000000000000004
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 88.00000000000001
  31
@@ -1415,13 +1415,13 @@ DOTTED
   8
 90
  10
-98.65427803486146
+94.65427803486148
  20
 27.000000000000004
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 27.000000000000004
  31
@@ -1433,13 +1433,13 @@ LINE
   8
 cut
  10
-98.65427803486146
+94.65427803486148
  20
 27.000000000000004
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 10.000000000000002
  31
@@ -1451,13 +1451,13 @@ LINE
   8
 cut
  10
-71.65427803486145
+67.65427803486148
  20
 10.000000000000002
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 27.000000000000004
  31
@@ -1471,13 +1471,13 @@ DOTTED
   8
 90
  10
-71.65427803486145
+67.65427803486148
  20
 10.000000000000002
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 10.000000000000002
  31
@@ -1489,13 +1489,13 @@ LINE
   8
 cut
  10
-71.65427803486145
+67.65427803486148
  20
 0.0
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 10.000000000000002
  31
@@ -1507,13 +1507,13 @@ LINE
   8
 cut
  10
-98.65427803486146
+94.65427803486148
  20
 0.0
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 0.0
  31
@@ -1525,13 +1525,13 @@ LINE
   8
 cut
  10
-98.65427803486146
+94.65427803486148
  20
 10.000000000000002
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 0.0
  31
@@ -1543,13 +1543,13 @@ LINE
   8
 cut
  10
-167.80855606972293
+159.80855606972293
  20
 154.90909090909093
  30
 0.0
  11
-162.80855606972293
+154.80855606972293
  21
 154.90909090909093
  31
@@ -1561,13 +1561,13 @@ LINE
   8
 cut
  10
-162.80855606972293
+154.80855606972293
  20
 154.90909090909093
  30
 0.0
  11
-162.80855606972293
+154.80855606972293
  21
 143.8181818181818
  31
@@ -1579,13 +1579,13 @@ LINE
   8
 cut
  10
-162.80855606972293
+154.80855606972293
  20
 143.8181818181818
  30
 0.0
  11
-167.80855606972293
+159.8085560697229
  21
 143.8181818181818
  31
@@ -1597,13 +1597,13 @@ LINE
   8
 cut
  10
-167.80855606972293
+159.80855606972293
  20
 127.1818181818182
  30
 0.0
  11
-162.80855606972293
+154.80855606972293
  21
 127.1818181818182
  31
@@ -1615,13 +1615,13 @@ LINE
   8
 cut
  10
-162.80855606972293
+154.80855606972293
  20
 127.1818181818182
  30
 0.0
  11
-162.80855606972293
+154.80855606972293
  21
 116.09090909090911
  31
@@ -1633,13 +1633,13 @@ LINE
   8
 cut
  10
-162.80855606972293
+154.80855606972293
  20
 116.09090909090911
  30
 0.0
  11
-167.80855606972293
+159.8085560697229
  21
 116.09090909090911
  31
@@ -1651,13 +1651,13 @@ LINE
   8
 cut
  10
-94.15427803486146
+90.15427803486148
  20
 102.50000000000001
  30
 0.0
  11
-94.15427803486146
+90.15427803486148
  21
 108.50000000000001
  31
@@ -1669,13 +1669,13 @@ LINE
   8
 cut
  10
-94.15427803486146
+90.15427803486148
  20
 108.50000000000001
  30
 0.0
  11
-76.15427803486145
+72.15427803486148
  21
 108.50000000000001
  31
@@ -1687,13 +1687,13 @@ LINE
   8
 cut
  10
-76.15427803486145
+72.15427803486148
  20
 108.50000000000001
  30
 0.0
  11
-76.15427803486145
+72.15427803486148
  21
 102.50000000000001
  31
@@ -1705,13 +1705,13 @@ LINE
   8
 cut
  10
-76.15427803486145
+72.15427803486148
  20
 102.50000000000001
  30
 0.0
  11
-94.15427803486146
+90.15427803486148
  21
 102.50000000000001
  31
@@ -1723,13 +1723,13 @@ LINE
   8
 cut
  10
-80.40427803486146
+76.40427803486146
  20
 158.25000000000003
  30
 0.0
  11
-89.90427803486145
+85.90427803486148
  21
 158.25000000000003
  31
@@ -1741,13 +1741,13 @@ LINE
   8
 cut
  10
-89.90427803486145
+85.90427803486148
  20
 158.25000000000003
  30
 0.0
  11
-89.90427803486145
+85.90427803486148
  21
 158.75000000000003
  31
@@ -1759,13 +1759,13 @@ LINE
   8
 cut
  10
-89.90427803486145
+85.90427803486148
  20
 158.75000000000003
  30
 0.0
  11
-80.40427803486146
+76.40427803486146
  21
 158.75000000000003
  31
@@ -1777,13 +1777,13 @@ LINE
   8
 cut
  10
-80.40427803486146
+76.40427803486146
  20
 158.75000000000003
  30
 0.0
  11
-80.40427803486146
+76.40427803486146
  21
 158.25000000000003
  31
@@ -1851,13 +1851,13 @@ cut
  10
 2.5000000000000004
  20
-143.81818181818184
+143.8181818181818
  30
 0.0
  11
 7.500000000000001
  21
-143.81818181818184
+143.8181818181818
  31
 0.0
   0
@@ -1869,7 +1869,7 @@ cut
  10
 7.500000000000001
  20
-143.81818181818184
+143.8181818181818
  30
 0.0
  11
@@ -1903,13 +1903,13 @@ LINE
   8
 cut
  10
-89.65427803486146
+85.65427803486148
  20
 2.5000000000000004
  30
 0.0
  11
-89.65427803486146
+85.65427803486148
  21
 7.500000000000001
  31
@@ -1921,13 +1921,13 @@ LINE
   8
 cut
  10
-89.65427803486146
+85.65427803486148
  20
 7.500000000000001
  30
 0.0
  11
-80.65427803486146
+76.65427803486148
  21
 7.500000000000001
  31
@@ -1939,13 +1939,13 @@ LINE
   8
 cut
  10
-80.65427803486146
+76.65427803486148
  20
 7.500000000000001
  30
 0.0
  11
-80.65427803486146
+76.65427803486148
  21
 2.5000000000000004
  31
@@ -1957,13 +1957,13 @@ LINE
   8
 cut
  10
-327.33180874014937
+319.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 135.50000000000003
  31
@@ -1977,13 +1977,13 @@ DOTTED
   8
 10
  10
-327.33180874014937
+319.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 135.50000000000003
  31
@@ -1995,13 +1995,13 @@ LINE
   8
 cut
  10
-361.3318087401493
+353.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 135.50000000000003
  31
@@ -2015,13 +2015,13 @@ DOTTED
   8
 10
  10
-361.3318087401493
+353.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -2033,13 +2033,13 @@ LINE
   8
 cut
  10
-422.33180874014937
+414.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -2051,13 +2051,13 @@ LINE
   8
 cut
  10
-266.3318087401493
+258.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 135.50000000000003
  31
@@ -2069,13 +2069,13 @@ LINE
   8
 cut
  10
-327.33180874014937
+319.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-253.33180874014934
+245.33180874014934
  21
 135.50000000000003
  31
@@ -2087,13 +2087,13 @@ LINE
   8
 cut
  10
-361.3318087401493
+353.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 135.50000000000003
  31
@@ -2105,13 +2105,13 @@ LINE
   8
 cut
  10
-422.33180874014937
+414.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -2123,13 +2123,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+343.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 135.50000000000003
  31
@@ -2141,13 +2141,13 @@ LINE
   8
 cut
  10
-253.33180874014934
+245.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 135.50000000000003
  31
@@ -2159,13 +2159,13 @@ LINE
   8
 cut
  10
-253.33180874014934
+245.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-253.33180874014934
+245.33180874014934
  21
 135.50000000000003
  31
@@ -2177,13 +2177,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+343.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 101.50000000000001
  31
@@ -2197,13 +2197,13 @@ DOTTED
   8
 90
  10
-327.33180874014937
+319.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 135.50000000000003
  31
@@ -2215,13 +2215,13 @@ LINE
   8
 cut
  10
-327.33180874014937
+319.33180874014937
  20
 65.5
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 101.50000000000001
  31
@@ -2235,13 +2235,13 @@ DOTTED
   8
 -90
  10
-327.33180874014937
+319.33180874014937
  20
 65.5
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 65.5
  31
@@ -2253,13 +2253,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+343.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 65.5
  31
@@ -2271,13 +2271,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+343.3318087401493
  20
 65.5
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 20.5
  31
@@ -2289,13 +2289,13 @@ LINE
   8
 cut
  10
-327.33180874014937
+319.33180874014937
  20
 20.5
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 65.5
  31
@@ -2307,13 +2307,13 @@ LINE
   8
 cut
  10
-327.33180874014937
+319.33180874014937
  20
 15.500000000000004
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 20.5
  31
@@ -2325,13 +2325,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+343.3318087401493
  20
 15.500000000000004
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 15.500000000000004
  31
@@ -2343,13 +2343,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+343.3318087401493
  20
 20.5
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 15.500000000000004
  31
@@ -2361,13 +2361,13 @@ LINE
   8
 cut
  10
-327.33180874014937
+319.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-307.3318087401493
+299.33180874014937
  21
 101.50000000000001
  31
@@ -2379,13 +2379,13 @@ LINE
   8
 cut
  10
-307.3318087401493
+299.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 135.50000000000003
  31
@@ -2399,13 +2399,13 @@ DOTTED
   8
 90
  10
-307.3318087401493
+299.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-307.3318087401493
+299.33180874014937
  21
 135.50000000000003
  31
@@ -2417,13 +2417,13 @@ LINE
   8
 cut
  10
-307.3318087401493
+299.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-283.3318087401493
+275.3318087401493
  21
 101.50000000000001
  31
@@ -2435,13 +2435,13 @@ LINE
   8
 cut
  10
-283.3318087401493
+275.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-307.3318087401493
+299.33180874014937
  21
 135.50000000000003
  31
@@ -2455,13 +2455,13 @@ DOTTED
   8
 90
  10
-283.3318087401493
+275.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-283.3318087401493
+275.3318087401493
  21
 135.50000000000003
  31
@@ -2473,13 +2473,13 @@ LINE
   8
 cut
  10
-283.3318087401493
+275.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-263.33180874014937
+255.33180874014934
  21
 101.50000000000001
  31
@@ -2491,13 +2491,13 @@ LINE
   8
 cut
  10
-263.33180874014937
+255.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-283.3318087401493
+275.3318087401493
  21
 135.50000000000003
  31
@@ -2511,13 +2511,13 @@ DOTTED
   8
 90
  10
-263.33180874014937
+255.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-263.33180874014937
+255.33180874014934
  21
 101.50000000000001
  31
@@ -2529,13 +2529,13 @@ LINE
   8
 cut
  10
-253.33180874014934
+245.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-263.33180874014937
+255.33180874014934
  21
 135.50000000000003
  31
@@ -2547,13 +2547,13 @@ LINE
   8
 cut
  10
-253.33180874014934
+245.33180874014934
  20
 101.50000000000001
  30
 0.0
  11
-253.33180874014934
+245.33180874014934
  21
 135.50000000000003
  31
@@ -2565,13 +2565,13 @@ LINE
   8
 cut
  10
-263.33180874014937
+255.33180874014934
  20
 101.50000000000001
  30
 0.0
  11
-253.33180874014934
+245.33180874014934
  21
 101.50000000000001
  31
@@ -2585,13 +2585,13 @@ DOTTED
   8
 45
  10
-361.3318087401493
+353.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 99.36137800081471
  31
@@ -2603,13 +2603,13 @@ LINE
   8
 cut
  10
-422.33180874014937
+414.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 99.36137800081471
  31
@@ -2621,13 +2621,13 @@ LINE
   8
 cut
  10
-361.3318087401493
+353.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 135.50000000000003
  31
@@ -2641,13 +2641,13 @@ DOTTED
   8
 45
  10
-422.33180874014937
+414.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 75.36137800081471
  31
@@ -2661,13 +2661,13 @@ DOTTED
   8
 90
  10
-422.33180874014937
+414.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 99.36137800081471
  31
@@ -2679,13 +2679,13 @@ LINE
   8
 cut
  10
-361.3318087401493
+353.33180874014937
  20
 39.22275600162939
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 75.36137800081472
  31
@@ -2697,13 +2697,13 @@ LINE
   8
 cut
  10
-422.33180874014937
+414.33180874014937
  20
 39.22275600162939
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 39.22275600162939
  31
@@ -2715,13 +2715,13 @@ LINE
   8
 cut
  10
-422.33180874014937
+414.33180874014937
  20
 75.36137800081472
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 39.22275600162939
  31
@@ -2733,13 +2733,13 @@ LINE
   8
 cut
  10
-432.33180874014937
+424.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 75.36137800081471
  31
@@ -2751,13 +2751,13 @@ LINE
   8
 cut
  10
-432.33180874014937
+424.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-432.33180874014937
+424.33180874014937
  21
 75.36137800081471
  31
@@ -2769,13 +2769,13 @@ LINE
   8
 cut
  10
-422.33180874014937
+414.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-432.33180874014937
+424.33180874014937
  21
 99.36137800081471
  31
@@ -2787,13 +2787,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+343.3318087401493
  20
 99.36137800081471
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 99.36137800081471
  31
@@ -2805,13 +2805,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+343.3318087401493
  20
 75.36137800081471
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 99.36137800081471
  31
@@ -2823,13 +2823,13 @@ LINE
   8
 cut
  10
-361.3318087401493
+353.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 75.36137800081471
  31
@@ -2843,13 +2843,13 @@ DOTTED
   8
 90
  10
-422.33180874014937
+414.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 205.50000000000003
  31
@@ -2863,13 +2863,13 @@ DOTTED
   8
 41.987212495816664
  10
-422.33180874014937
+414.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -2883,13 +2883,13 @@ DOTTED
   8
 -174
  10
-422.33180874014937
+414.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-474.84617955831095
+466.8461795583109
  21
 135.50000000000003
  31
@@ -2903,13 +2903,13 @@ DOTTED
   8
 -180
  10
-422.33180874014937
+414.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-474.84617955831095
+466.8461795583109
  21
 135.50000000000003
  31
@@ -2921,13 +2921,13 @@ LINE
   8
 cut
  10
-422.33180874014937
+414.33180874014937
  20
 117.99520972727949
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -2939,13 +2939,13 @@ LINE
   8
 cut
  10
-474.84617955831095
+466.8461795583109
  20
 117.99520972727949
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 117.99520972727949
  31
@@ -2957,13 +2957,13 @@ LINE
   8
 cut
  10
-474.84617955831095
+466.8461795583109
  20
 135.50000000000003
  30
 0.0
  11
-474.84617955831095
+466.8461795583109
  21
 117.99520972727949
  31
@@ -2977,13 +2977,13 @@ DOTTED
   8
 180
  10
-422.33180874014937
+414.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-489.5369564140486
+481.5369564140486
  21
 185.91765779766357
  31
@@ -2995,13 +2995,13 @@ LINE
   8
 cut
  10
-489.5369564140486
+481.5369564140486
  20
 185.91765779766357
  30
 0.0
  11
-474.84617955831095
+466.8461795583109
  21
 135.50000000000003
  31
@@ -3013,13 +3013,13 @@ LINE
   8
 cut
  10
-504.22773326978614
+496.22773326978614
  20
 236.33531559532716
  30
 0.0
  11
-489.5369564140486
+481.5369564140486
  21
 185.91765779766357
  31
@@ -3031,13 +3031,13 @@ LINE
   8
 cut
  10
-508.3550614105757
+500.3550614105757
  20
 250.50000000000003
  30
 0.0
  11
-504.22773326978614
+496.22773326978614
  21
 236.33531559532716
  31
@@ -3051,13 +3051,13 @@ DOTTED
   8
 57.019129652304315
  10
-508.3550614105757
+500.3550614105757
  20
 250.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 205.50000000000003
  31
@@ -3071,13 +3071,13 @@ DOTTED
   8
 54.462322208025626
  10
-422.33180874014937
+414.33180874014937
  20
 250.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 205.50000000000003
  31
@@ -3091,13 +3091,13 @@ DOTTED
   8
 54.462322208025626
  10
-422.3318087401494
+414.3318087401494
  20
 295.5
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 250.50000000000006
  31
@@ -3111,13 +3111,13 @@ DOTTED
   8
 57.019129652304315
  10
-508.35506141057573
+500.35506141057573
  20
 250.50000000000003
  30
 0.0
  11
-422.3318087401494
+414.3318087401494
  21
 295.50000000000006
  31
@@ -3131,13 +3131,13 @@ DOTTED
   8
 180
  10
-489.5369564140486
+481.5369564140486
  20
 315.08234220233646
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 295.50000000000006
  31
@@ -3149,13 +3149,13 @@ LINE
   8
 cut
  10
-504.22773326978614
+496.22773326978614
  20
 264.6646844046729
  30
 0.0
  11
-508.3550614105757
+500.3550614105757
  21
 250.50000000000003
  31
@@ -3167,13 +3167,13 @@ LINE
   8
 cut
  10
-489.5369564140486
+481.5369564140486
  20
 315.08234220233646
  30
 0.0
  11
-504.22773326978614
+496.22773326978614
  21
 264.6646844046729
  31
@@ -3185,13 +3185,13 @@ LINE
   8
 cut
  10
-474.84617955831106
+466.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-489.5369564140486
+481.5369564140486
  21
 315.0823422023364
  31
@@ -3205,13 +3205,13 @@ DOTTED
   8
 -180
  10
-474.84617955831106
+466.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-422.3318087401494
+414.3318087401494
  21
 295.50000000000006
  31
@@ -3225,13 +3225,13 @@ DOTTED
   8
 41.987212495816664
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 295.5
  31
@@ -3245,13 +3245,13 @@ DOTTED
   8
 -174
  10
-474.84617955831106
+466.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 365.5000000000001
  31
@@ -3265,13 +3265,13 @@ DOTTED
   8
 90
  10
-422.3318087401494
+414.3318087401494
  20
 295.50000000000006
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 295.50000000000017
  31
@@ -3285,13 +3285,13 @@ DOTTED
   8
 10
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-361.3318087401494
+353.3318087401495
  21
 365.50000000000017
  31
@@ -3303,13 +3303,13 @@ LINE
   8
 cut
  10
-351.3318087401494
+343.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-361.3318087401494
+353.3318087401495
  21
 365.50000000000017
  31
@@ -3323,13 +3323,13 @@ DOTTED
   8
 10
  10
-351.3318087401494
+343.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-327.3318087401494
+319.3318087401494
  21
 365.50000000000017
  31
@@ -3341,13 +3341,13 @@ LINE
   8
 cut
  10
-266.33180874014937
+258.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-327.3318087401494
+319.3318087401494
  21
 365.50000000000017
  31
@@ -3359,13 +3359,13 @@ LINE
   8
 cut
  10
-266.33180874014937
+258.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-266.33180874014937
+258.3318087401494
  21
 365.5000000000003
  31
@@ -3377,13 +3377,13 @@ LINE
   8
 cut
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 365.5000000000001
  31
@@ -3395,13 +3395,13 @@ LINE
   8
 cut
  10
-351.3318087401494
+343.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-361.3318087401494
+353.3318087401495
  21
 365.50000000000017
  31
@@ -3413,13 +3413,13 @@ LINE
   8
 cut
  10
-253.33180874014937
+245.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-327.3318087401494
+319.3318087401494
  21
 365.50000000000017
  31
@@ -3431,13 +3431,13 @@ LINE
   8
 cut
  10
-253.33180874014937
+245.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-253.33180874014937
+245.3318087401494
  21
 365.5000000000003
  31
@@ -3449,13 +3449,13 @@ LINE
   8
 cut
  10
-327.3318087401494
+319.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-253.33180874014937
+245.3318087401494
  21
 365.5000000000003
  31
@@ -3467,13 +3467,13 @@ LINE
   8
 cut
  10
-361.3318087401494
+353.3318087401495
  20
 365.50000000000017
  30
 0.0
  11
-351.3318087401494
+343.3318087401494
  21
 365.50000000000017
  31
@@ -3485,13 +3485,13 @@ LINE
   8
 cut
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 365.5000000000001
  31
@@ -3503,13 +3503,13 @@ LINE
   8
 cut
  10
-422.3318087401495
+414.3318087401495
  20
 375.5000000000001
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 365.5000000000001
  31
@@ -3521,13 +3521,13 @@ LINE
   8
 cut
  10
-361.3318087401494
+353.3318087401495
  20
 375.50000000000017
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 375.5000000000001
  31
@@ -3539,13 +3539,13 @@ LINE
   8
 cut
  10
-361.3318087401494
+353.3318087401495
  20
 365.50000000000017
  30
 0.0
  11
-361.3318087401494
+353.3318087401495
  21
 375.50000000000017
  31
@@ -3557,13 +3557,13 @@ LINE
   8
 cut
  10
-351.3318087401494
+343.3318087401494
  20
 399.5000000000001
  30
 0.0
  11
-351.3318087401494
+343.3318087401494
  21
 365.50000000000017
  31
@@ -3577,13 +3577,13 @@ DOTTED
   8
 90
  10
-327.3318087401494
+319.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-327.3318087401495
+319.3318087401494
  21
 399.5000000000001
  31
@@ -3595,13 +3595,13 @@ LINE
   8
 cut
  10
-351.3318087401495
+343.33180874014954
  20
 435.50000000000017
  30
 0.0
  11
-351.3318087401494
+343.3318087401494
  21
 399.5000000000001
  31
@@ -3615,13 +3615,13 @@ DOTTED
   8
 -90
  10
-351.3318087401495
+343.33180874014954
  20
 435.50000000000017
  30
 0.0
  11
-327.3318087401495
+319.3318087401494
  21
 435.50000000000017
  31
@@ -3633,13 +3633,13 @@ LINE
   8
 cut
  10
-327.3318087401495
+319.3318087401494
  20
 399.5000000000001
  30
 0.0
  11
-327.3318087401495
+319.3318087401494
  21
 435.50000000000017
  31
@@ -3651,13 +3651,13 @@ LINE
   8
 cut
  10
-327.3318087401495
+319.3318087401494
  20
 435.50000000000017
  30
 0.0
  11
-327.33180874014954
+319.3318087401495
  21
 480.50000000000017
  31
@@ -3669,13 +3669,13 @@ LINE
   8
 cut
  10
-351.3318087401495
+343.33180874014954
  20
 480.50000000000017
  30
 0.0
  11
-351.3318087401494
+343.3318087401494
  21
 435.50000000000017
  31
@@ -3687,13 +3687,13 @@ LINE
   8
 cut
  10
-327.33180874014954
+319.3318087401495
  20
 480.50000000000017
  30
 0.0
  11
-351.3318087401495
+343.33180874014954
  21
 480.50000000000017
  31
@@ -3705,13 +3705,13 @@ LINE
   8
 cut
  10
-327.3318087401494
+319.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-307.33180874014937
+299.3318087401494
  21
 365.50000000000017
  31
@@ -3723,13 +3723,13 @@ LINE
   8
 cut
  10
-307.3318087401495
+299.3318087401495
  20
 399.5000000000001
  30
 0.0
  11
-327.3318087401495
+319.3318087401494
  21
 399.5000000000001
  31
@@ -3743,13 +3743,13 @@ DOTTED
   8
 90
  10
-307.33180874014937
+299.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-307.3318087401495
+299.3318087401495
  21
 399.5000000000001
  31
@@ -3761,13 +3761,13 @@ LINE
   8
 cut
  10
-307.33180874014937
+299.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-283.33180874014937
+275.33180874014937
  21
 365.50000000000017
  31
@@ -3779,13 +3779,13 @@ LINE
   8
 cut
  10
-283.3318087401494
+275.3318087401494
  20
 399.5000000000001
  30
 0.0
  11
-307.3318087401495
+299.3318087401495
  21
 399.5000000000001
  31
@@ -3799,13 +3799,13 @@ DOTTED
   8
 90
  10
-283.33180874014937
+275.33180874014937
  20
 365.50000000000017
  30
 0.0
  11
-283.3318087401494
+275.3318087401494
  21
 399.5000000000001
  31
@@ -3817,13 +3817,13 @@ LINE
   8
 cut
  10
-283.33180874014937
+275.33180874014937
  20
 365.50000000000017
  30
 0.0
  11
-263.3318087401494
+255.3318087401494
  21
 365.50000000000017
  31
@@ -3835,13 +3835,13 @@ LINE
   8
 cut
  10
-263.3318087401494
+255.33180874014943
  20
 399.5000000000001
  30
 0.0
  11
-283.3318087401494
+275.3318087401494
  21
 399.5000000000001
  31
@@ -3855,13 +3855,13 @@ DOTTED
   8
 90
  10
-263.3318087401494
+255.33180874014943
  20
 399.5000000000001
  30
 0.0
  11
-263.3318087401494
+255.3318087401494
  21
 365.50000000000017
  31
@@ -3873,13 +3873,13 @@ LINE
   8
 cut
  10
-253.33180874014943
+245.33180874014943
  20
 399.5000000000001
  30
 0.0
  11
-263.3318087401494
+255.33180874014943
  21
 399.5000000000001
  31
@@ -3891,13 +3891,13 @@ LINE
   8
 cut
  10
-253.3318087401494
+245.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-253.33180874014943
+245.33180874014943
  21
 399.5000000000001
  31
@@ -3909,13 +3909,13 @@ LINE
   8
 cut
  10
-263.3318087401494
+255.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-253.3318087401494
+245.3318087401494
  21
 365.50000000000017
  31
@@ -3929,13 +3929,13 @@ DOTTED
   8
 41.987212495816664
  10
-266.3318087401493
+258.33180874014937
  20
 295.50000000000017
  30
 0.0
  11
-266.33180874014937
+258.3318087401494
  21
 365.5000000000002
  31
@@ -3949,13 +3949,13 @@ DOTTED
   8
 -174
  10
-266.33180874014937
+258.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-213.81743792198782
+205.8174379219878
  21
 365.5000000000003
  31
@@ -3969,13 +3969,13 @@ DOTTED
   8
 -180
  10
-266.3318087401493
+258.33180874014937
  20
 295.5000000000002
  30
 0.0
  11
-213.81743792198782
+205.8174379219878
  21
 365.5000000000003
  31
@@ -3987,13 +3987,13 @@ LINE
   8
 cut
  10
-266.33180874014937
+258.3318087401494
  20
 383.00479027272075
  30
 0.0
  11
-266.33180874014937
+258.3318087401494
  21
 365.5000000000003
  31
@@ -4005,13 +4005,13 @@ LINE
   8
 cut
  10
-213.81743792198782
+205.8174379219878
  20
 383.00479027272087
  30
 0.0
  11
-266.33180874014937
+258.3318087401494
  21
 383.00479027272075
  31
@@ -4023,13 +4023,13 @@ LINE
   8
 cut
  10
-213.81743792198782
+205.8174379219878
  20
 365.5000000000003
  30
 0.0
  11
-213.81743792198782
+205.8174379219878
  21
 383.00479027272087
  31
@@ -4043,13 +4043,13 @@ DOTTED
   8
 180
  10
-266.3318087401493
+258.33180874014937
  20
 295.50000000000017
  30
 0.0
  11
-199.12666106625016
+191.12666106625016
  21
 315.08234220233675
  31
@@ -4061,13 +4061,13 @@ LINE
   8
 cut
  10
-199.12666106625016
+191.12666106625016
  20
 315.08234220233675
  30
 0.0
  11
-213.81743792198782
+205.8174379219878
  21
 365.5000000000003
  31
@@ -4079,13 +4079,13 @@ LINE
   8
 cut
  10
-184.43588421051248
+176.4358842105125
  20
 264.6646844046731
  30
 0.0
  11
-199.12666106625016
+191.12666106625016
  21
 315.08234220233675
  31
@@ -4097,13 +4097,13 @@ LINE
   8
 cut
  10
-180.30855606972295
+172.30855606972295
  20
 250.50000000000028
  30
 0.0
  11
-184.43588421051248
+176.4358842105125
  21
 264.6646844046731
  31
@@ -4117,13 +4117,13 @@ DOTTED
   8
 57.019129652304315
  10
-180.30855606972295
+172.30855606972295
  20
 250.50000000000028
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 295.50000000000017
  31
@@ -4137,13 +4137,13 @@ DOTTED
   8
 54.462322208025626
  10
-266.3318087401493
+258.3318087401493
  20
 250.50000000000017
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 295.50000000000017
  31
@@ -4157,13 +4157,13 @@ DOTTED
   8
 54.462322208025626
  10
-266.33180874014926
+258.3318087401492
  20
 205.50000000000017
  30
 0.0
  11
-266.3318087401493
+258.3318087401493
  21
 250.5000000000002
  31
@@ -4177,13 +4177,13 @@ DOTTED
   8
 57.019129652304315
  10
-180.3085560697229
+172.30855606972293
  20
 250.5000000000003
  30
 0.0
  11
-266.33180874014926
+258.3318087401492
  21
 205.50000000000014
  31
@@ -4197,13 +4197,13 @@ DOTTED
   8
 180
  10
-199.12666106624997
+191.12666106624997
  20
 185.91765779766385
  30
 0.0
  11
-266.33180874014926
+258.3318087401492
  21
 205.50000000000014
  31
@@ -4215,13 +4215,13 @@ LINE
   8
 cut
  10
-184.43588421051243
+176.43588421051246
  20
 236.33531559532744
  30
 0.0
  11
-180.3085560697229
+172.30855606972293
  21
 250.5000000000003
  31
@@ -4233,13 +4233,13 @@ LINE
   8
 cut
  10
-199.12666106624997
+191.12666106624997
  20
 185.91765779766385
  30
 0.0
  11
-184.43588421051243
+176.43588421051246
  21
 236.33531559532744
  31
@@ -4251,13 +4251,13 @@ LINE
   8
 cut
  10
-213.81743792198745
+205.81743792198745
  20
 135.50000000000023
  30
 0.0
  11
-199.12666106624997
+191.12666106624997
  21
 185.91765779766385
  31
@@ -4271,13 +4271,13 @@ DOTTED
   8
 -180
  10
-213.81743792198745
+205.81743792198745
  20
 135.50000000000023
  30
 0.0
  11
-266.3318087401492
+258.33180874014914
  21
 205.50000000000017
  31
@@ -4291,13 +4291,13 @@ DOTTED
   8
 41.987212495816664
  10
-266.3318087401491
+258.33180874014903
  20
 135.5000000000001
  30
 0.0
  11
-266.33180874014926
+258.3318087401492
  21
 205.50000000000017
  31
@@ -4311,13 +4311,13 @@ DOTTED
   8
 -174
  10
-213.81743792198748
+205.81743792198748
  20
 135.50000000000023
  30
 0.0
  11
-266.3318087401491
+258.33180874014903
  21
 135.5000000000001
  31
@@ -4329,13 +4329,13 @@ LINE
   8
 cut
  10
-213.81743792198742
+205.81743792198742
  20
 117.9952097272797
  30
 0.0
  11
-213.81743792198748
+205.81743792198748
  21
 135.50000000000023
  31
@@ -4347,13 +4347,13 @@ LINE
   8
 cut
  10
-266.3318087401491
+258.33180874014903
  20
 117.9952097272796
  30
 0.0
  11
-213.81743792198742
+205.81743792198742
  21
 117.9952097272797
  31
@@ -4365,13 +4365,13 @@ LINE
   8
 cut
  10
-266.3318087401491
+258.33180874014903
  20
 135.5000000000001
  30
 0.0
  11
-266.3318087401491
+258.33180874014903
  21
 117.9952097272796
  31
@@ -4383,13 +4383,13 @@ LINE
   8
 cut
  10
-474.8461795583111
+466.8461795583111
  20
 383.0047902727206
  30
 0.0
  11
-474.84617955831106
+466.84617955831106
  21
 365.50000000000006
  31
@@ -4401,13 +4401,13 @@ LINE
   8
 cut
  10
-422.3318087401495
+414.3318087401495
  20
 383.00479027272064
  30
 0.0
  11
-474.8461795583111
+466.8461795583111
  21
 383.0047902727206
  31
@@ -4419,13 +4419,13 @@ LINE
   8
 cut
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 383.00479027272064
  31
@@ -4437,13 +4437,13 @@ LINE
   8
 cut
  10
-288.76362692196756
+280.7636269219675
  20
 143.25
  30
 0.0
  11
-277.1727178310585
+269.1727178310585
  21
 143.25
  31
@@ -4455,13 +4455,13 @@ LINE
   8
 cut
  10
-277.1727178310585
+269.1727178310585
  20
 143.25
  30
 0.0
  11
-277.1727178310585
+269.1727178310585
  21
 142.75000000000003
  31
@@ -4473,13 +4473,13 @@ LINE
   8
 cut
  10
-277.1727178310585
+269.1727178310585
  20
 142.75000000000003
  30
 0.0
  11
-288.76362692196756
+280.7636269219675
  21
 142.75000000000003
  31
@@ -4491,13 +4491,13 @@ LINE
   8
 cut
  10
-288.76362692196756
+280.7636269219675
  20
 142.75000000000003
  30
 0.0
  11
-288.76362692196756
+280.7636269219675
  21
 143.25
  31
@@ -4509,13 +4509,13 @@ LINE
   8
 cut
  10
-316.49089964924025
+308.49089964924025
  20
 143.25
  30
 0.0
  11
-304.8999905583311
+296.8999905583312
  21
 143.25
  31
@@ -4527,13 +4527,13 @@ LINE
   8
 cut
  10
-304.8999905583311
+296.8999905583312
  20
 143.25
  30
 0.0
  11
-304.8999905583311
+296.8999905583312
  21
 142.75000000000003
  31
@@ -4545,13 +4545,13 @@ LINE
   8
 cut
  10
-304.8999905583311
+296.8999905583312
  20
 142.75000000000003
  30
 0.0
  11
-316.49089964924025
+308.49089964924025
  21
 142.75000000000003
  31
@@ -4563,13 +4563,13 @@ LINE
   8
 cut
  10
-316.49089964924025
+308.49089964924025
  20
 142.75000000000003
  30
 0.0
  11
-316.49089964924025
+308.49089964924025
  21
 143.25
  31
@@ -4581,13 +4581,13 @@ LINE
   8
 cut
  10
-343.5818087401493
+335.58180874014937
  20
 124.41666666666669
  30
 0.0
  11
-343.5818087401493
+335.58180874014937
  21
 112.58333333333334
  31
@@ -4599,13 +4599,13 @@ LINE
   8
 cut
  10
-343.5818087401493
+335.58180874014937
  20
 112.58333333333334
  30
 0.0
  11
-344.08180874014937
+336.08180874014937
  21
 112.58333333333334
  31
@@ -4617,13 +4617,13 @@ LINE
   8
 cut
  10
-344.08180874014937
+336.08180874014937
  20
 112.58333333333334
  30
 0.0
  11
-344.08180874014937
+336.08180874014937
  21
 124.41666666666669
  31
@@ -4635,13 +4635,13 @@ LINE
   8
 cut
  10
-344.08180874014937
+336.08180874014937
  20
 124.41666666666669
  30
 0.0
  11
-343.5818087401493
+335.58180874014937
  21
 124.41666666666669
  31
@@ -4653,13 +4653,13 @@ LINE
   8
 cut
  10
-343.3318087401493
+335.33180874014937
  20
 16.750000000000004
  30
 0.0
  11
-345.83180874014937
+337.83180874014937
  21
 16.750000000000004
  31
@@ -4671,13 +4671,13 @@ LINE
   8
 cut
  10
-345.83180874014937
+337.83180874014937
  20
 16.750000000000004
  30
 0.0
  11
-343.3318087401493
+335.33180874014937
  21
 19.250000000000004
  31
@@ -4689,13 +4689,13 @@ LINE
   8
 cut
  10
-343.3318087401493
+335.33180874014937
  20
 19.250000000000004
  30
 0.0
  11
-335.33180874014937
+327.33180874014937
  21
 19.250000000000004
  31
@@ -4707,13 +4707,13 @@ LINE
   8
 cut
  10
-335.33180874014937
+327.33180874014937
  20
 19.250000000000004
  30
 0.0
  11
-332.83180874014937
+324.8318087401493
  21
 16.750000000000004
  31
@@ -4725,13 +4725,13 @@ LINE
   8
 cut
  10
-332.83180874014937
+324.8318087401493
  20
 16.750000000000004
  30
 0.0
  11
-335.33180874014937
+327.33180874014937
  21
 16.750000000000004
  31
@@ -4743,13 +4743,13 @@ LINE
   8
 cut
  10
-308.33180874014937
+300.33180874014937
  20
 112.50000000000001
  30
 0.0
  11
-312.33180874014937
+304.33180874014937
  21
 112.50000000000001
  31
@@ -4761,13 +4761,13 @@ LINE
   8
 cut
  10
-312.33180874014937
+304.33180874014937
  20
 112.50000000000001
  30
 0.0
  11
-312.33180874014937
+304.33180874014937
  21
 124.50000000000001
  31
@@ -4779,13 +4779,13 @@ LINE
   8
 cut
  10
-312.33180874014937
+304.33180874014937
  20
 124.50000000000001
  30
 0.0
  11
-308.33180874014937
+300.33180874014937
  21
 124.50000000000001
  31
@@ -4797,13 +4797,13 @@ LINE
   8
 cut
  10
-308.33180874014937
+300.33180874014937
  20
 124.50000000000001
  30
 0.0
  11
-308.33180874014937
+300.33180874014937
  21
 112.50000000000001
  31
@@ -4815,13 +4815,13 @@ LINE
   8
 cut
  10
-320.3318087401493
+312.33180874014937
  20
 114.00000000000001
  30
 0.0
  11
-324.33180874014937
+316.3318087401493
  21
 114.00000000000001
  31
@@ -4833,13 +4833,13 @@ LINE
   8
 cut
  10
-324.33180874014937
+316.3318087401493
  20
 114.00000000000001
  30
 0.0
  11
-324.33180874014937
+316.3318087401493
  21
 123.00000000000001
  31
@@ -4851,13 +4851,13 @@ LINE
   8
 cut
  10
-324.33180874014937
+316.3318087401493
  20
 123.00000000000001
  30
 0.0
  11
-320.3318087401493
+312.33180874014937
  21
 123.00000000000001
  31
@@ -4869,13 +4869,13 @@ LINE
   8
 cut
  10
-320.3318087401493
+312.33180874014937
  20
 123.00000000000001
  30
 0.0
  11
-320.3318087401493
+312.33180874014937
  21
 114.00000000000001
  31
@@ -4887,13 +4887,13 @@ LINE
   8
 cut
  10
-283.8318087401493
+275.8318087401493
  20
 112.50000000000001
  30
 0.0
  11
-306.8318087401493
+298.83180874014937
  21
 112.50000000000001
  31
@@ -4905,13 +4905,13 @@ LINE
   8
 cut
  10
-306.8318087401493
+298.83180874014937
  20
 112.50000000000001
  30
 0.0
  11
-306.8318087401493
+298.83180874014937
  21
 124.50000000000001
  31
@@ -4923,13 +4923,13 @@ LINE
   8
 cut
  10
-306.8318087401493
+298.83180874014937
  20
 124.50000000000001
  30
 0.0
  11
-283.8318087401493
+275.8318087401493
  21
 124.50000000000001
  31
@@ -4941,13 +4941,13 @@ LINE
   8
 cut
  10
-283.8318087401493
+275.8318087401493
  20
 124.50000000000001
  30
 0.0
  11
-283.8318087401493
+275.8318087401493
  21
 112.50000000000001
  31
@@ -4959,13 +4959,13 @@ LINE
   8
 cut
  10
-278.33180874014937
+270.33180874014937
  20
 112.50000000000001
  30
 0.0
  11
-282.33180874014937
+274.3318087401493
  21
 112.50000000000001
  31
@@ -4977,13 +4977,13 @@ LINE
   8
 cut
  10
-282.33180874014937
+274.3318087401493
  20
 112.50000000000001
  30
 0.0
  11
-282.33180874014937
+274.3318087401493
  21
 124.50000000000001
  31
@@ -4995,13 +4995,13 @@ LINE
   8
 cut
  10
-282.33180874014937
+274.3318087401493
  20
 124.50000000000001
  30
 0.0
  11
-278.33180874014937
+270.33180874014937
  21
 124.50000000000001
  31
@@ -5013,13 +5013,13 @@ LINE
   8
 cut
  10
-278.33180874014937
+270.33180874014937
  20
 124.50000000000001
  30
 0.0
  11
-278.33180874014937
+270.33180874014937
  21
 112.50000000000001
  31
@@ -5031,13 +5031,13 @@ LINE
   8
 cut
  10
-255.83180874014934
+247.83180874014934
  20
 112.83333333333336
  30
 0.0
  11
-260.83180874014937
+252.83180874014934
  21
 112.83333333333336
  31
@@ -5049,13 +5049,13 @@ LINE
   8
 cut
  10
-260.83180874014937
+252.83180874014934
  20
 112.83333333333336
  30
 0.0
  11
-260.83180874014937
+252.83180874014934
  21
 124.16666666666669
  31
@@ -5067,13 +5067,13 @@ LINE
   8
 cut
  10
-260.83180874014937
+252.83180874014934
  20
 124.16666666666669
  30
 0.0
  11
-255.83180874014934
+247.83180874014934
  21
 124.16666666666669
  31
@@ -5085,13 +5085,13 @@ LINE
   8
 cut
  10
-379.3318087401493
+371.33180874014937
  20
 80.86137800081471
  30
 0.0
  11
-390.33180874014937
+382.33180874014937
  21
 80.86137800081471
  31
@@ -5103,13 +5103,13 @@ LINE
   8
 cut
  10
-390.33180874014937
+382.33180874014937
  20
 80.86137800081471
  30
 0.0
  11
-390.33180874014937
+382.33180874014937
  21
 93.86137800081471
  31
@@ -5121,13 +5121,13 @@ LINE
   8
 cut
  10
-390.33180874014937
+382.33180874014937
  20
 93.86137800081471
  30
 0.0
  11
-379.3318087401493
+371.33180874014937
  21
 93.86137800081471
  31
@@ -5139,13 +5139,13 @@ LINE
   8
 cut
  10
-379.3318087401493
+371.33180874014937
  20
 93.86137800081471
  30
 0.0
  11
-379.3318087401493
+371.33180874014937
  21
 80.86137800081471
  31
@@ -5157,13 +5157,13 @@ LINE
   8
 cut
  10
-410.83180874014937
+402.8318087401493
  20
 82.36137800081471
  30
 0.0
  11
-416.83180874014937
+408.83180874014937
  21
 82.36137800081471
  31
@@ -5175,13 +5175,13 @@ LINE
   8
 cut
  10
-416.83180874014937
+408.83180874014937
  20
 82.36137800081471
  30
 0.0
  11
-416.83180874014937
+408.83180874014937
  21
 92.36137800081471
  31
@@ -5193,13 +5193,13 @@ LINE
   8
 cut
  10
-416.83180874014937
+408.83180874014937
  20
 92.36137800081471
  30
 0.0
  11
-410.83180874014937
+402.8318087401493
  21
 92.36137800081471
  31
@@ -5211,13 +5211,13 @@ LINE
   8
 cut
  10
-410.83180874014937
+402.8318087401493
  20
 92.36137800081471
  30
 0.0
  11
-410.83180874014937
+402.8318087401493
  21
 82.36137800081471
  31
@@ -5229,13 +5229,13 @@ LINE
   8
 cut
  10
-383.76362692196756
+375.76362692196756
  20
 46.9727560016294
  30
 0.0
  11
-372.1727178310585
+364.17271783105843
  21
 46.9727560016294
  31
@@ -5247,13 +5247,13 @@ LINE
   8
 cut
  10
-372.1727178310585
+364.17271783105843
  20
 46.9727560016294
  30
 0.0
  11
-372.1727178310585
+364.17271783105843
  21
 46.4727560016294
  31
@@ -5265,13 +5265,13 @@ LINE
   8
 cut
  10
-372.1727178310585
+364.17271783105843
  20
 46.4727560016294
  30
 0.0
  11
-383.76362692196756
+375.76362692196756
  21
 46.4727560016294
  31
@@ -5283,13 +5283,13 @@ LINE
   8
 cut
  10
-383.76362692196756
+375.76362692196756
  20
 46.4727560016294
  30
 0.0
  11
-383.76362692196756
+375.76362692196756
  21
 46.9727560016294
  31
@@ -5301,13 +5301,13 @@ LINE
   8
 cut
  10
-411.49089964924025
+403.4908996492402
  20
 46.9727560016294
  30
 0.0
  11
-399.8999905583312
+391.8999905583312
  21
 46.9727560016294
  31
@@ -5319,13 +5319,13 @@ LINE
   8
 cut
  10
-399.8999905583312
+391.8999905583312
  20
 46.9727560016294
  30
 0.0
  11
-399.8999905583312
+391.8999905583312
  21
 46.4727560016294
  31
@@ -5337,13 +5337,13 @@ LINE
   8
 cut
  10
-399.8999905583312
+391.8999905583312
  20
 46.4727560016294
  30
 0.0
  11
-411.49089964924025
+403.4908996492402
  21
 46.4727560016294
  31
@@ -5355,13 +5355,13 @@ LINE
   8
 cut
  10
-411.49089964924025
+403.4908996492402
  20
 46.4727560016294
  30
 0.0
  11
-411.49089964924025
+403.4908996492402
  21
 46.9727560016294
  31
@@ -5373,13 +5373,13 @@ LINE
   8
 cut
  10
-429.8318087401493
+421.83180874014937
  20
 91.36137800081471
  30
 0.0
  11
-424.83180874014937
+416.83180874014937
  21
 91.36137800081471
  31
@@ -5391,13 +5391,13 @@ LINE
   8
 cut
  10
-424.83180874014937
+416.83180874014937
  20
 91.36137800081471
  30
 0.0
  11
-424.83180874014937
+416.83180874014937
  21
 83.36137800081471
  31
@@ -5409,13 +5409,13 @@ LINE
   8
 cut
  10
-424.83180874014937
+416.83180874014937
  20
 83.36137800081471
  30
 0.0
  11
-429.8318087401493
+421.83180874014937
  21
 83.36137800081471
  31
@@ -5427,13 +5427,13 @@ LINE
   8
 cut
  10
-353.83180874014937
+345.83180874014937
  20
 83.36137800081471
  30
 0.0
  11
-358.83180874014937
+350.83180874014937
  21
 83.36137800081471
  31
@@ -5445,13 +5445,13 @@ LINE
   8
 cut
  10
-358.83180874014937
+350.83180874014937
  20
 83.36137800081471
  30
 0.0
  11
-358.83180874014937
+350.83180874014937
  21
 91.36137800081471
  31
@@ -5463,13 +5463,13 @@ LINE
   8
 cut
  10
-358.83180874014937
+350.83180874014937
  20
 91.36137800081471
  30
 0.0
  11
-353.83180874014937
+345.83180874014937
  21
 91.36137800081471
  31
@@ -5481,13 +5481,13 @@ LINE
   8
 cut
  10
-457.3413892855904
+449.3413892855904
  20
 122.37140729545962
  30
 0.0
  11
-457.3413892855904
+449.3413892855904
  21
 131.12380243181985
  31
@@ -5499,13 +5499,13 @@ LINE
   8
 cut
  10
-457.3413892855904
+449.3413892855904
  20
 131.12380243181985
  30
 0.0
  11
-439.8365990128699
+431.8365990128699
  21
 131.12380243181988
  31
@@ -5517,13 +5517,13 @@ LINE
   8
 cut
  10
-439.8365990128699
+431.8365990128699
  20
 131.12380243181988
  30
 0.0
  11
-439.8365990128699
+431.8365990128699
  21
 122.37140729545962
  31
@@ -5535,13 +5535,13 @@ LINE
   8
 cut
  10
-486.5563117536783
+478.55631175367824
  20
 223.5120791976936
  30
 0.0
  11
-481.5195122622253
+473.5195122622253
  21
 206.22615649603978
  31
@@ -5553,13 +5553,13 @@ LINE
   8
 cut
  10
-481.5195122622253
+473.5195122622253
  20
 206.22615649603978
  30
 0.0
  11
-481.99954903132453
+473.99954903132453
  21
 206.08628262316594
  31
@@ -5571,13 +5571,13 @@ LINE
   8
 cut
  10
-481.99954903132453
+473.99954903132453
  20
 206.08628262316594
  30
 0.0
  11
-487.0363485227776
+479.0363485227776
  21
 223.37220532481973
  31
@@ -5589,13 +5589,13 @@ LINE
   8
 cut
  10
-487.0363485227776
+479.0363485227776
  20
 223.37220532481973
  30
 0.0
  11
-486.5563117536783
+478.55631175367824
  21
 223.5120791976936
  31
@@ -5607,13 +5607,13 @@ LINE
   8
 cut
  10
-481.5195122622253
+473.5195122622253
  20
 294.77384350396034
  30
 0.0
  11
-486.55631175367836
+478.55631175367836
  21
 277.4879208023065
  31
@@ -5625,13 +5625,13 @@ LINE
   8
 cut
  10
-486.55631175367836
+478.55631175367836
  20
 277.4879208023065
  30
 0.0
  11
-487.0363485227776
+479.0363485227776
  21
 277.6277946751803
  31
@@ -5643,13 +5643,13 @@ LINE
   8
 cut
  10
-487.0363485227776
+479.0363485227776
  20
 277.6277946751803
  30
 0.0
  11
-481.9995490313246
+473.9995490313246
  21
 294.91371737683414
  31
@@ -5661,13 +5661,13 @@ LINE
   8
 cut
  10
-481.9995490313246
+473.9995490313246
  20
 294.91371737683414
  30
 0.0
  11
-481.5195122622253
+473.5195122622253
  21
 294.77384350396034
  31
@@ -5679,13 +5679,13 @@ LINE
   8
 cut
  10
-304.8999905583312
+296.89999055833124
  20
 357.7500000000002
  30
 0.0
  11
-316.4908996492403
+308.4908996492403
  21
 357.75000000000017
  31
@@ -5697,13 +5697,13 @@ LINE
   8
 cut
  10
-316.4908996492403
+308.4908996492403
  20
 357.75000000000017
  30
 0.0
  11
-316.4908996492403
+308.4908996492403
  21
 358.25000000000017
  31
@@ -5715,13 +5715,13 @@ LINE
   8
 cut
  10
-316.4908996492403
+308.4908996492403
  20
 358.25000000000017
  30
 0.0
  11
-304.8999905583312
+296.89999055833124
  21
 358.25000000000017
  31
@@ -5733,13 +5733,13 @@ LINE
   8
 cut
  10
-304.8999905583312
+296.89999055833124
  20
 358.25000000000017
  30
 0.0
  11
-304.8999905583312
+296.89999055833124
  21
 357.7500000000002
  31
@@ -5751,13 +5751,13 @@ LINE
   8
 cut
  10
-277.1727178310585
+269.1727178310585
  20
 357.7500000000002
  30
 0.0
  11
-288.7636269219676
+280.76362692196756
  21
 357.7500000000002
  31
@@ -5769,13 +5769,13 @@ LINE
   8
 cut
  10
-288.7636269219676
+280.76362692196756
  20
 357.7500000000002
  30
 0.0
  11
-288.7636269219676
+280.76362692196756
  21
 358.25000000000017
  31
@@ -5787,13 +5787,13 @@ LINE
   8
 cut
  10
-288.7636269219676
+280.76362692196756
  20
 358.25000000000017
  30
 0.0
  11
-277.1727178310585
+269.1727178310585
  21
 358.25000000000017
  31
@@ -5805,13 +5805,13 @@ LINE
   8
 cut
  10
-277.1727178310585
+269.1727178310585
  20
 358.25000000000017
  30
 0.0
  11
-277.1727178310585
+269.1727178310585
  21
 357.7500000000002
  31
@@ -5823,13 +5823,13 @@ LINE
   8
 cut
  10
-372.42271783105855
+364.4227178310585
  20
 373.0000000000001
  30
 0.0
  11
-372.42271783105855
+364.4227178310585
  21
 368.0000000000001
  31
@@ -5841,13 +5841,13 @@ LINE
   8
 cut
  10
-372.42271783105855
+364.4227178310585
  20
 368.0000000000001
  30
 0.0
  11
-383.5136269219676
+375.5136269219676
  21
 368.0000000000001
  31
@@ -5859,13 +5859,13 @@ LINE
   8
 cut
  10
-383.5136269219676
+375.5136269219676
  20
 368.0000000000001
  30
 0.0
  11
-383.51362692196767
+375.51362692196767
  21
 373.0000000000001
  31
@@ -5877,13 +5877,13 @@ LINE
   8
 cut
  10
-400.14999055833124
+392.1499905583313
  20
 373.0000000000001
  30
 0.0
  11
-400.14999055833124
+392.1499905583313
  21
 368.0000000000001
  31
@@ -5895,13 +5895,13 @@ LINE
   8
 cut
  10
-400.14999055833124
+392.1499905583313
  20
 368.0000000000001
  30
 0.0
  11
-411.24089964924036
+403.2408996492403
  21
 368.00000000000006
  31
@@ -5913,13 +5913,13 @@ LINE
   8
 cut
  10
-411.24089964924036
+403.2408996492403
  20
 368.00000000000006
  30
 0.0
  11
-411.2408996492404
+403.24089964924036
  21
 373.00000000000006
  31
@@ -5931,13 +5931,13 @@ LINE
   8
 cut
  10
-343.5818087401495
+335.5818087401495
  20
 388.4166666666668
  30
 0.0
  11
-343.5818087401495
+335.5818087401495
  21
 376.5833333333335
  31
@@ -5949,13 +5949,13 @@ LINE
   8
 cut
  10
-343.5818087401495
+335.5818087401495
  20
 376.5833333333335
  30
 0.0
  11
-344.0818087401495
+336.0818087401495
  21
 376.5833333333335
  31
@@ -5967,13 +5967,13 @@ LINE
   8
 cut
  10
-344.0818087401495
+336.0818087401495
  20
 376.5833333333335
  30
 0.0
  11
-344.0818087401495
+336.0818087401495
  21
 388.4166666666668
  31
@@ -5985,13 +5985,13 @@ LINE
   8
 cut
  10
-344.0818087401495
+336.0818087401495
  20
 388.4166666666668
  30
 0.0
  11
-343.5818087401495
+335.5818087401495
  21
 388.4166666666668
  31
@@ -6003,13 +6003,13 @@ LINE
   8
 cut
  10
-335.08180874014954
+327.08180874014954
  20
 476.50000000000017
  30
 0.0
  11
-343.58180874014954
+335.58180874014954
  21
 476.50000000000017
  31
@@ -6021,13 +6021,13 @@ LINE
   8
 cut
  10
-343.58180874014954
+335.58180874014954
  20
 476.50000000000017
  30
 0.0
  11
-343.58180874014954
+335.58180874014954
  21
 477.00000000000017
  31
@@ -6039,13 +6039,13 @@ LINE
   8
 cut
  10
-343.58180874014954
+335.58180874014954
  20
 477.00000000000017
  30
 0.0
  11
-335.08180874014954
+327.08180874014954
  21
 477.00000000000017
  31
@@ -6057,13 +6057,13 @@ LINE
   8
 cut
  10
-335.08180874014954
+327.08180874014954
  20
 477.00000000000017
  30
 0.0
  11
-335.08180874014954
+327.08180874014954
  21
 476.50000000000017
  31
@@ -6075,13 +6075,13 @@ LINE
   8
 cut
  10
-308.3318087401494
+300.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-312.3318087401494
+304.3318087401494
  21
 376.50000000000017
  31
@@ -6093,13 +6093,13 @@ LINE
   8
 cut
  10
-312.3318087401494
+304.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-312.3318087401495
+304.3318087401495
  21
 388.50000000000017
  31
@@ -6111,13 +6111,13 @@ LINE
   8
 cut
  10
-312.3318087401495
+304.3318087401495
  20
 388.50000000000017
  30
 0.0
  11
-308.3318087401495
+300.3318087401495
  21
 388.50000000000017
  31
@@ -6129,13 +6129,13 @@ LINE
   8
 cut
  10
-308.3318087401495
+300.3318087401495
  20
 388.50000000000017
  30
 0.0
  11
-308.3318087401494
+300.3318087401494
  21
 376.50000000000017
  31
@@ -6147,13 +6147,13 @@ LINE
   8
 cut
  10
-320.33180874014937
+312.3318087401494
  20
 378.00000000000017
  30
 0.0
  11
-324.3318087401494
+316.3318087401494
  21
 378.00000000000017
  31
@@ -6165,13 +6165,13 @@ LINE
   8
 cut
  10
-324.3318087401494
+316.3318087401494
  20
 378.00000000000017
  30
 0.0
  11
-324.3318087401494
+316.3318087401494
  21
 387.00000000000017
  31
@@ -6183,13 +6183,13 @@ LINE
   8
 cut
  10
-324.3318087401494
+316.3318087401494
  20
 387.00000000000017
  30
 0.0
  11
-320.3318087401494
+312.3318087401495
  21
 387.00000000000017
  31
@@ -6201,13 +6201,13 @@ LINE
   8
 cut
  10
-320.3318087401494
+312.3318087401495
  20
 387.00000000000017
  30
 0.0
  11
-320.33180874014937
+312.3318087401494
  21
 378.00000000000017
  31
@@ -6219,13 +6219,13 @@ LINE
   8
 cut
  10
-283.83180874014937
+275.8318087401494
  20
 376.50000000000017
  30
 0.0
  11
-306.83180874014937
+298.8318087401494
  21
 376.50000000000017
  31
@@ -6237,13 +6237,13 @@ LINE
   8
 cut
  10
-306.83180874014937
+298.8318087401494
  20
 376.50000000000017
  30
 0.0
  11
-306.8318087401494
+298.8318087401495
  21
 388.50000000000017
  31
@@ -6255,13 +6255,13 @@ LINE
   8
 cut
  10
-306.8318087401494
+298.8318087401495
  20
 388.50000000000017
  30
 0.0
  11
-283.83180874014937
+275.8318087401494
  21
 388.50000000000017
  31
@@ -6273,13 +6273,13 @@ LINE
   8
 cut
  10
-283.83180874014937
+275.8318087401494
  20
 388.50000000000017
  30
 0.0
  11
-283.83180874014937
+275.8318087401494
  21
 376.50000000000017
  31
@@ -6291,13 +6291,13 @@ LINE
   8
 cut
  10
-278.3318087401494
+270.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-282.3318087401494
+274.33180874014937
  21
 376.50000000000017
  31
@@ -6309,13 +6309,13 @@ LINE
   8
 cut
  10
-282.3318087401494
+274.33180874014937
  20
 376.50000000000017
  30
 0.0
  11
-282.3318087401494
+274.33180874014937
  21
 388.50000000000017
  31
@@ -6327,13 +6327,13 @@ LINE
   8
 cut
  10
-282.3318087401494
+274.33180874014937
  20
 388.50000000000017
  30
 0.0
  11
-278.3318087401494
+270.3318087401494
  21
 388.50000000000017
  31
@@ -6345,13 +6345,13 @@ LINE
   8
 cut
  10
-278.3318087401494
+270.3318087401494
  20
 388.50000000000017
  30
 0.0
  11
-278.3318087401494
+270.3318087401494
  21
 376.50000000000017
  31
@@ -6363,13 +6363,13 @@ LINE
   8
 cut
  10
-255.8318087401494
+247.8318087401494
  20
 376.8333333333335
  30
 0.0
  11
-260.8318087401494
+252.8318087401494
  21
 376.8333333333335
  31
@@ -6381,13 +6381,13 @@ LINE
   8
 cut
  10
-260.8318087401494
+252.8318087401494
  20
 376.8333333333335
  30
 0.0
  11
-260.8318087401494
+252.8318087401494
  21
 388.16666666666686
  31
@@ -6399,13 +6399,13 @@ LINE
   8
 cut
  10
-260.8318087401494
+252.8318087401494
  20
 388.16666666666686
  30
 0.0
  11
-255.8318087401494
+247.8318087401494
  21
 388.16666666666686
  31
@@ -6417,13 +6417,13 @@ LINE
   8
 cut
  10
-231.32222819470834
+223.32222819470834
  20
 378.6285927045407
  30
 0.0
  11
-231.32222819470834
+223.32222819470834
  21
 369.87619756818043
  31
@@ -6435,13 +6435,13 @@ LINE
   8
 cut
  10
-231.32222819470834
+223.32222819470834
  20
 369.87619756818043
  30
 0.0
  11
-248.82701846742887
+240.82701846742887
  21
 369.87619756818043
  31
@@ -6453,13 +6453,13 @@ LINE
   8
 cut
  10
-248.82701846742887
+240.82701846742887
  20
 369.87619756818043
  30
 0.0
  11
-248.82701846742887
+240.82701846742887
  21
 378.6285927045407
  31
@@ -6471,13 +6471,13 @@ LINE
   8
 cut
  10
-202.10730572662035
+194.10730572662035
  20
 277.4879208023067
  30
 0.0
  11
-207.1441052180734
+199.1441052180734
  21
 294.7738435039605
  31
@@ -6489,13 +6489,13 @@ LINE
   8
 cut
  10
-207.1441052180734
+199.1441052180734
  20
 294.7738435039605
  30
 0.0
  11
-206.66406844897412
+198.66406844897412
  21
 294.9137173768343
  31
@@ -6507,13 +6507,13 @@ LINE
   8
 cut
  10
-206.66406844897412
+198.66406844897412
  20
 294.9137173768343
  30
 0.0
  11
-201.62726895752107
+193.62726895752107
  21
 277.62779467518055
  31
@@ -6525,13 +6525,13 @@ LINE
   8
 cut
  10
-201.62726895752107
+193.62726895752107
  20
 277.62779467518055
  30
 0.0
  11
-202.10730572662035
+194.10730572662035
  21
 277.4879208023067
  31
@@ -6543,13 +6543,13 @@ LINE
   8
 cut
  10
-207.14410521807326
+199.14410521807326
  20
 206.22615649604003
  30
 0.0
  11
-202.10730572662024
+194.10730572662027
  21
 223.51207919769385
  31
@@ -6561,13 +6561,13 @@ LINE
   8
 cut
  10
-202.10730572662024
+194.10730572662027
  20
 223.51207919769385
  30
 0.0
  11
-201.62726895752098
+193.62726895752098
  21
 223.37220532482002
  31
@@ -6579,13 +6579,13 @@ LINE
   8
 cut
  10
-201.62726895752098
+193.62726895752098
  20
 223.37220532482002
  30
 0.0
  11
-206.66406844897395
+198.66406844897398
  21
 206.08628262316617
  31
@@ -6597,13 +6597,13 @@ LINE
   8
 cut
  10
-206.66406844897395
+198.66406844897398
  20
 206.08628262316617
  30
 0.0
  11
-207.14410521807326
+199.14410521807326
  21
 206.22615649604003
  31
@@ -6615,13 +6615,13 @@ LINE
   8
 cut
  10
-248.8270184674285
+240.8270184674285
  20
 122.37140729545976
  30
 0.0
  11
-248.82701846742856
+240.82701846742853
  21
 131.12380243182005
  31
@@ -6633,13 +6633,13 @@ LINE
   8
 cut
  10
-248.82701846742856
+240.82701846742853
  20
 131.12380243182005
  30
 0.0
  11
-231.322228194708
+223.322228194708
  21
 131.12380243182008
  31
@@ -6651,13 +6651,13 @@ LINE
   8
 cut
  10
-231.322228194708
+223.322228194708
  20
 131.12380243182008
  30
 0.0
  11
-231.32222819470798
+223.32222819470798
  21
 122.3714072954598
  31
@@ -6669,13 +6669,13 @@ LINE
   8
 cut
  10
-439.83659901287
+431.83659901287
  20
 378.6285927045405
  30
 0.0
  11
-439.83659901287
+431.83659901287
  21
 369.87619756818015
  31
@@ -6687,13 +6687,13 @@ LINE
   8
 cut
  10
-439.83659901287
+431.83659901287
  20
 369.87619756818015
  30
 0.0
  11
-457.34138928559054
+449.34138928559054
  21
 369.87619756818015
  31
@@ -6705,13 +6705,13 @@ LINE
   8
 cut
  10
-457.34138928559054
+449.34138928559054
  20
 369.87619756818015
  30
 0.0
  11
-457.34138928559054
+449.34138928559054
  21
 378.6285927045405
  31
@@ -6725,13 +6725,13 @@ DOTTED
   8
 90
  10
-551.3550614105758
+519.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 123.50000000000001
  31
@@ -6745,13 +6745,13 @@ DOTTED
   8
 90
  10
-612.3550614105757
+580.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 147.5
  31
@@ -6765,13 +6765,13 @@ DOTTED
   8
 90
  10
-612.3550614105757
+580.3550614105758
  20
 147.5
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 147.5
  31
@@ -6785,13 +6785,13 @@ DOTTED
   8
 90
  10
-551.3550614105758
+519.3550614105758
  20
 147.5
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 123.50000000000001
  31
@@ -6803,13 +6803,13 @@ LINE
   8
 cut
  10
-551.3550614105758
+519.3550614105758
  20
 116.50000000000001
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 123.50000000000001
  31
@@ -6821,13 +6821,13 @@ LINE
   8
 cut
  10
-611.3550614105757
+555.3550614105757
  20
 116.50000000000001
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 116.50000000000001
  31
@@ -6839,13 +6839,13 @@ LINE
   8
 cut
  10
-611.3550614105757
+555.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-611.3550614105757
+555.3550614105757
  21
 116.50000000000001
  31
@@ -6857,13 +6857,13 @@ LINE
   8
 cut
  10
-619.3550614105757
+587.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 123.50000000000001
  31
@@ -6875,13 +6875,13 @@ LINE
   8
 cut
  10
-619.3550614105757
+587.3550614105758
  20
 147.5
  30
 0.0
  11
-619.3550614105757
+587.3550614105758
  21
 123.50000000000001
  31
@@ -6893,13 +6893,13 @@ LINE
   8
 cut
  10
-612.3550614105757
+580.3550614105758
  20
 147.5
  30
 0.0
  11
-619.3550614105757
+587.3550614105758
  21
 147.5
  31
@@ -6913,13 +6913,13 @@ DOTTED
   8
 90
  10
-612.3550614105757
+580.3550614105758
  20
 147.5
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 208.50000000000003
  31
@@ -6931,13 +6931,13 @@ LINE
   8
 cut
  10
-552.3550614105758
+544.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 208.50000000000003
  31
@@ -6951,13 +6951,13 @@ DOTTED
   8
 90
  10
-552.3550614105758
+544.3550614105758
  20
 147.5
  30
 0.0
  11
-552.3550614105758
+544.3550614105758
  21
 208.50000000000003
  31
@@ -6969,13 +6969,13 @@ LINE
   8
 cut
  10
-636.3550614105758
+604.3550614105758
  20
 147.5
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 147.5
  31
@@ -6989,13 +6989,13 @@ DOTTED
   8
 90
  10
-636.3550614105758
+604.3550614105758
  20
 147.5
  30
 0.0
  11
-636.3550614105758
+604.3550614105758
  21
 208.50000000000003
  31
@@ -7007,13 +7007,13 @@ LINE
   8
 cut
  10
-612.3550614105757
+580.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-636.3550614105758
+604.3550614105758
  21
 208.50000000000003
  31
@@ -7025,13 +7025,13 @@ LINE
   8
 cut
  10
-696.3550614105758
+640.3550614105757
  20
 147.5
  30
 0.0
  11
-636.3550614105758
+604.3550614105758
  21
 147.5
  31
@@ -7043,13 +7043,13 @@ LINE
   8
 cut
  10
-696.3550614105758
+640.3550614105757
  20
 208.50000000000003
  30
 0.0
  11
-696.3550614105758
+640.3550614105757
  21
 147.5
  31
@@ -7061,13 +7061,13 @@ LINE
   8
 cut
  10
-636.3550614105758
+604.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-696.3550614105758
+640.3550614105757
  21
 208.50000000000003
  31
@@ -7079,13 +7079,13 @@ LINE
   8
 cut
  10
-552.3550614105758
+544.3550614105758
  20
 147.5
  30
 0.0
  11
-528.3550614105758
+520.3550614105758
  21
 147.5
  31
@@ -7097,13 +7097,13 @@ LINE
   8
 cut
  10
-528.3550614105758
+520.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-552.3550614105758
+544.3550614105758
  21
 208.50000000000003
  31
@@ -7117,13 +7117,13 @@ DOTTED
   8
 90
  10
-528.3550614105758
+520.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-528.3550614105758
+520.3550614105758
  21
 147.5
  31
@@ -7135,13 +7135,13 @@ LINE
   8
 cut
  10
-518.3550614105758
+510.35506141057573
  20
 208.50000000000003
  30
 0.0
  11
-528.3550614105758
+520.3550614105758
  21
 208.50000000000003
  31
@@ -7153,13 +7153,13 @@ LINE
   8
 cut
  10
-518.3550614105758
+510.35506141057573
  20
 147.5
  30
 0.0
  11
-518.3550614105758
+510.35506141057573
  21
 208.50000000000003
  31
@@ -7171,13 +7171,13 @@ LINE
   8
 cut
  10
-528.3550614105758
+520.3550614105758
  20
 147.5
  30
 0.0
  11
-518.3550614105758
+510.35506141057573
  21
 147.5
  31
@@ -7189,13 +7189,13 @@ LINE
   8
 cut
  10
-544.3550614105758
+512.3550614105757
  20
 147.5
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 147.5
  31
@@ -7207,13 +7207,13 @@ LINE
   8
 cut
  10
-544.3550614105758
+512.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-544.3550614105758
+512.3550614105757
  21
 147.5
  31
@@ -7225,13 +7225,13 @@ LINE
   8
 cut
  10
-551.3550614105758
+519.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-544.3550614105758
+512.3550614105757
  21
 123.50000000000001
  31
@@ -7243,85 +7243,13 @@ LINE
   8
 cut
  10
-600.4459705014849
- 20
-118.25000000000001
- 30
-0.0
- 11
-603.9459705014848
- 21
-118.25000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-603.9459705014848
- 20
-118.25000000000001
- 30
-0.0
- 11
-600.4459705014849
- 21
-121.75000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-600.4459705014849
- 20
-121.75000000000001
- 30
-0.0
- 11
-589.5368795923938
- 21
-121.75000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-589.5368795923938
- 20
-121.75000000000001
- 30
-0.0
- 11
-586.036879592394
- 21
-118.25000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-586.036879592394
+543.3550614105758
  20
 118.25000000000001
  30
 0.0
  11
-589.5368795923938
+546.8550614105757
  21
 118.25000000000001
  31
@@ -7333,31 +7261,13 @@ LINE
   8
 cut
  10
-573.1732432287577
+546.8550614105757
  20
 118.25000000000001
  30
 0.0
  11
-576.6732432287575
- 21
-118.25000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-576.6732432287575
- 20
-118.25000000000001
- 30
-0.0
- 11
-573.1732432287577
+543.3550614105758
  21
 121.75000000000001
  31
@@ -7369,13 +7279,13 @@ LINE
   8
 cut
  10
-573.1732432287577
+543.3550614105758
  20
 121.75000000000001
  30
 0.0
  11
-562.2641523196666
+531.3550614105757
  21
 121.75000000000001
  31
@@ -7387,13 +7297,13 @@ LINE
   8
 cut
  10
-562.2641523196666
+531.3550614105757
  20
 121.75000000000001
  30
 0.0
  11
-558.7641523196667
+527.8550614105758
  21
 118.25000000000001
  31
@@ -7405,13 +7315,13 @@ LINE
   8
 cut
  10
-558.7641523196667
+527.8550614105758
  20
 118.25000000000001
  30
 0.0
  11
-562.2641523196666
+531.3550614105757
  21
 118.25000000000001
  31
@@ -7423,13 +7333,13 @@ LINE
   8
 cut
  10
-617.6050614105757
+585.6050614105758
  20
 139.50000000000003
  30
 0.0
  11
-614.1050614105758
+582.1050614105758
  21
 139.50000000000003
  31
@@ -7441,13 +7351,13 @@ LINE
   8
 cut
  10
-614.1050614105758
+582.1050614105758
  20
 139.50000000000003
  30
 0.0
  11
-614.1050614105758
+582.1050614105758
  21
 131.50000000000003
  31
@@ -7459,13 +7369,13 @@ LINE
   8
 cut
  10
-614.1050614105758
+582.1050614105758
  20
 131.50000000000003
  30
 0.0
  11
-617.6050614105757
+585.6050614105758
  21
 131.50000000000003
  31
@@ -7477,15 +7387,15 @@ LINE
   8
 cut
  10
-559.8550614105758
+557.4693471248615
  20
-199.00000000000003
+202.25000000000003
  30
 0.0
  11
-559.8550614105758
+557.4693471248615
  21
-181.00000000000003
+184.25
  31
 0.0
   0
@@ -7495,15 +7405,15 @@ LINE
   8
 cut
  10
-559.8550614105758
+557.4693471248615
  20
-181.00000000000003
+184.25
  30
 0.0
  11
-594.8550614105757
+578.0407756962901
  21
-181.00000000000003
+184.25
  31
 0.0
   0
@@ -7513,15 +7423,15 @@ LINE
   8
 cut
  10
-594.8550614105757
+578.0407756962901
  20
-181.00000000000003
+184.25
  30
 0.0
  11
-594.8550614105757
+578.0407756962901
  21
-199.00000000000003
+202.25000000000003
  31
 0.0
   0
@@ -7531,15 +7441,15 @@ LINE
   8
 cut
  10
-594.8550614105757
+578.0407756962901
  20
-199.00000000000003
+202.25000000000003
  30
 0.0
  11
-559.8550614105758
+557.4693471248615
  21
-199.00000000000003
+202.25000000000003
  31
 0.0
   0
@@ -7549,13 +7459,13 @@ LINE
   8
 cut
  10
-612.8550614105757
+580.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-612.8550614105757
+580.8550614105758
  21
 157.75000000000003
  31
@@ -7567,13 +7477,13 @@ LINE
   8
 cut
  10
-612.8550614105757
+580.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-615.8550614105758
+583.8550614105757
  21
 157.75000000000003
  31
@@ -7585,13 +7495,13 @@ LINE
   8
 cut
  10
-615.8550614105758
+583.8550614105757
  20
 157.75000000000003
  30
 0.0
  11
-615.8550614105758
+583.8550614105757
  21
 160.75000000000003
  31
@@ -7603,13 +7513,13 @@ LINE
   8
 cut
  10
-615.8550614105758
+583.8550614105757
  20
 160.75000000000003
  30
 0.0
  11
-612.8550614105757
+580.8550614105758
  21
 160.75000000000003
  31
@@ -7621,13 +7531,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 159.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 158.75000000000003
  31
@@ -7639,13 +7549,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 158.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 158.75000000000003
  31
@@ -7657,13 +7567,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 158.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 159.75000000000003
  31
@@ -7675,13 +7585,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 159.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 159.75000000000003
  31
@@ -7693,13 +7603,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 161.25
  31
@@ -7711,13 +7621,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 161.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 161.25
  31
@@ -7729,13 +7639,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 161.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 162.25000000000003
  31
@@ -7747,13 +7657,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 162.25000000000003
  31
@@ -7765,13 +7675,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 161.25
  31
@@ -7783,13 +7693,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 161.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 161.25
  31
@@ -7801,13 +7711,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 161.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 162.25000000000003
  31
@@ -7819,13 +7729,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 162.25000000000003
  31
@@ -7837,13 +7747,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 163.75
  31
@@ -7855,13 +7765,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 163.75
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 163.75
  31
@@ -7873,13 +7783,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 163.75
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 164.75000000000003
  31
@@ -7891,13 +7801,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 164.75000000000003
  31
@@ -7909,13 +7819,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 163.75
  31
@@ -7927,13 +7837,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 163.75
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 163.75
  31
@@ -7945,13 +7855,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 163.75
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 164.75000000000003
  31
@@ -7963,13 +7873,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 164.75000000000003
  31
@@ -7981,13 +7891,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 166.25
  31
@@ -7999,13 +7909,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 166.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 166.25
  31
@@ -8017,13 +7927,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 166.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 167.25000000000003
  31
@@ -8035,13 +7945,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 167.25000000000003
  31
@@ -8053,13 +7963,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 166.25
  31
@@ -8071,13 +7981,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 166.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 166.25
  31
@@ -8089,13 +7999,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 166.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 167.25000000000003
  31
@@ -8107,13 +8017,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 167.25000000000003
  31
@@ -8125,13 +8035,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 168.75000000000003
  31
@@ -8143,13 +8053,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 168.75000000000003
  31
@@ -8161,13 +8071,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 169.75000000000003
  31
@@ -8179,13 +8089,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 169.75000000000003
  31
@@ -8197,13 +8107,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 168.75000000000003
  31
@@ -8215,13 +8125,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 168.75000000000003
  31
@@ -8233,13 +8143,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 169.75000000000003
  31
@@ -8251,13 +8161,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 169.75000000000003
  31
@@ -8269,13 +8179,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 171.25000000000003
  31
@@ -8287,13 +8197,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 171.25000000000003
  31
@@ -8305,13 +8215,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 172.25000000000003
  31
@@ -8323,13 +8233,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 172.25000000000003
  31
@@ -8341,13 +8251,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 171.25000000000003
  31
@@ -8359,13 +8269,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 171.25000000000003
  31
@@ -8377,13 +8287,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 172.25000000000003
  31
@@ -8395,13 +8305,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 172.25000000000003
  31
@@ -8413,13 +8323,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 173.75000000000003
  31
@@ -8431,13 +8341,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 173.75000000000003
  31
@@ -8449,13 +8359,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 174.75000000000003
  31
@@ -8467,13 +8377,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 174.75000000000003
  31
@@ -8485,13 +8395,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 173.75000000000003
  31
@@ -8503,13 +8413,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 173.75000000000003
  31
@@ -8521,13 +8431,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 174.75000000000003
  31
@@ -8539,13 +8449,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 174.75000000000003
  31
@@ -8557,13 +8467,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 177.25
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 176.25000000000003
  31
@@ -8575,13 +8485,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 176.25000000000003
  31
@@ -8593,13 +8503,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 177.25
  31
@@ -8611,13 +8521,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 177.25
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 177.25
  31
@@ -8629,13 +8539,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 177.25
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 176.25000000000003
  31
@@ -8647,13 +8557,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 176.25000000000003
  31
@@ -8665,13 +8575,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 177.25
  31
@@ -8683,13 +8593,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 177.25
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 177.25
  31
@@ -8701,13 +8611,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 179.75
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 178.75000000000003
  31
@@ -8719,13 +8629,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 178.75000000000003
  31
@@ -8737,13 +8647,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 179.75
  31
@@ -8755,13 +8665,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 179.75
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 179.75
  31
@@ -8773,13 +8683,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 179.75
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 178.75000000000003
  31
@@ -8791,13 +8701,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 178.75000000000003
  31
@@ -8809,13 +8719,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 179.75
  31
@@ -8827,13 +8737,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 179.75
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 179.75
  31
@@ -8845,13 +8755,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 182.25
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 181.25000000000003
  31
@@ -8863,13 +8773,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 181.25000000000003
  31
@@ -8881,13 +8791,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 182.25
  31
@@ -8899,13 +8809,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 182.25
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 182.25
  31
@@ -8917,13 +8827,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 182.25
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 181.25000000000003
  31
@@ -8935,13 +8845,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 181.25000000000003
  31
@@ -8953,13 +8863,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 182.25
  31
@@ -8971,13 +8881,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 182.25
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 182.25
  31
@@ -8989,13 +8899,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 183.75000000000003
  31
@@ -9007,13 +8917,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 183.75000000000003
  31
@@ -9025,13 +8935,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 184.75000000000003
  31
@@ -9043,13 +8953,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 184.75000000000003
  31
@@ -9061,13 +8971,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 183.75000000000003
  31
@@ -9079,13 +8989,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 183.75000000000003
  31
@@ -9097,13 +9007,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 184.75000000000003
  31
@@ -9115,13 +9025,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 184.75000000000003
  31
@@ -9133,13 +9043,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 186.25000000000003
  31
@@ -9151,13 +9061,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 186.25000000000003
  31
@@ -9169,13 +9079,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 187.25000000000003
  31
@@ -9187,13 +9097,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 187.25000000000003
  31
@@ -9205,13 +9115,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 186.25000000000003
  31
@@ -9223,13 +9133,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 186.25000000000003
  31
@@ -9241,13 +9151,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 187.25000000000003
  31
@@ -9259,13 +9169,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 187.25000000000003
  31
@@ -9277,13 +9187,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 188.75
  31
@@ -9295,13 +9205,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 188.75
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 188.75
  31
@@ -9313,13 +9223,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 188.75
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 189.75000000000003
  31
@@ -9331,13 +9241,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 189.75000000000003
  31
@@ -9349,13 +9259,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 188.75
  31
@@ -9367,13 +9277,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 188.75
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 188.75
  31
@@ -9385,13 +9295,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 188.75
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 189.75000000000003
  31
@@ -9403,13 +9313,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 189.75000000000003
  31
@@ -9421,13 +9331,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 191.25
  31
@@ -9439,13 +9349,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 191.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 191.25
  31
@@ -9457,13 +9367,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 191.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 192.25000000000003
  31
@@ -9475,13 +9385,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 192.25000000000003
  31
@@ -9493,13 +9403,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 191.25
  31
@@ -9511,13 +9421,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 191.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 191.25
  31
@@ -9529,13 +9439,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 191.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 192.25000000000003
  31
@@ -9547,13 +9457,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 192.25000000000003
  31
@@ -9565,13 +9475,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 193.75000000000003
  31
@@ -9583,13 +9493,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 193.75000000000003
  31
@@ -9601,13 +9511,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 194.75000000000003
  31
@@ -9619,13 +9529,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 194.75000000000003
  31
@@ -9637,13 +9547,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 193.75000000000003
  31
@@ -9655,13 +9565,13 @@ LINE
   8
 cut
  10
-633.8550614105758
+601.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 193.75000000000003
  31
@@ -9673,13 +9583,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 194.75000000000003
  31
@@ -9691,13 +9601,13 @@ LINE
   8
 cut
  10
-634.8550614105758
+602.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 194.75000000000003
  31
@@ -9709,13 +9619,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 196.25000000000003
  31
@@ -9727,13 +9637,13 @@ LINE
   8
 cut
  10
-613.8550614105758
+581.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 196.25000000000003
  31
@@ -9745,13 +9655,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 196.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 197.25000000000003
  31
@@ -9763,13 +9673,13 @@ LINE
   8
 cut
  10
-614.8550614105758
+582.8550614105757
  20
 197.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 197.25000000000003
  31
@@ -9781,13 +9691,13 @@ LINE
   8
 cut
  10
-632.8550614105758
+600.8550614105757
  20
 198.25000000000003
  30
 0.0
  11
-632.8550614105758
+600.8550614105757
  21
 195.25000000000003
  31
@@ -9799,13 +9709,13 @@ LINE
   8
 cut
  10
-632.8550614105758
+600.8550614105757
  20
 195.25000000000003
  30
 0.0
  11
-635.8550614105758
+603.8550614105757
  21
 195.25000000000003
  31
@@ -9817,13 +9727,13 @@ LINE
   8
 cut
  10
-635.8550614105758
+603.8550614105757
  20
 195.25000000000003
  30
 0.0
  11
-635.8550614105758
+603.8550614105757
  21
 198.25000000000003
  31
@@ -9835,13 +9745,13 @@ LINE
   8
 cut
  10
-635.8550614105758
+603.8550614105757
  20
 198.25000000000003
  30
 0.0
  11
-632.8550614105758
+600.8550614105757
  21
 198.25000000000003
  31
@@ -9853,13 +9763,13 @@ LINE
   8
 cut
  10
-628.6050614105758
+596.6050614105757
  20
 155.25000000000003
  30
 0.0
  11
-620.1050614105758
+588.1050614105757
  21
 155.25000000000003
  31
@@ -9871,13 +9781,13 @@ LINE
   8
 cut
  10
-620.1050614105758
+588.1050614105757
  20
 155.25000000000003
  30
 0.0
  11
-620.1050614105758
+588.1050614105757
  21
 154.75
  31
@@ -9889,13 +9799,13 @@ LINE
   8
 cut
  10
-620.1050614105758
+588.1050614105757
  20
 154.75
  30
 0.0
  11
-628.6050614105758
+596.6050614105757
  21
 154.75
  31
@@ -9907,13 +9817,13 @@ LINE
   8
 cut
  10
-628.6050614105758
+596.6050614105757
  20
 154.75
  30
 0.0
  11
-628.6050614105758
+596.6050614105757
  21
 155.25000000000003
  31
@@ -9925,13 +9835,13 @@ LINE
   8
 cut
  10
-620.1050614105758
+588.1050614105757
  20
 203.00000000000003
  30
 0.0
  11
-628.6050614105758
+596.6050614105757
  21
 203.00000000000003
  31
@@ -9943,13 +9853,13 @@ LINE
   8
 cut
  10
-628.6050614105758
+596.6050614105757
  20
 203.00000000000003
  30
 0.0
  11
-628.6050614105758
+596.6050614105757
  21
 203.50000000000003
  31
@@ -9961,13 +9871,13 @@ LINE
   8
 cut
  10
-628.6050614105758
+596.6050614105757
  20
 203.50000000000003
  30
 0.0
  11
-620.1050614105758
+588.1050614105757
  21
 203.50000000000003
  31
@@ -9979,13 +9889,13 @@ LINE
   8
 cut
  10
-620.1050614105758
+588.1050614105757
  20
 203.50000000000003
  30
 0.0
  11
-620.1050614105758
+588.1050614105757
  21
 203.00000000000003
  31
@@ -9997,51 +9907,15 @@ LINE
   8
 cut
  10
-651.3550614105758
- 20
-198.50000000000003
- 30
-0.0
- 11
-651.3550614105758
- 21
-185.50000000000003
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-651.3550614105758
- 20
-185.50000000000003
- 30
-0.0
- 11
-681.3550614105758
- 21
-185.50000000000003
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-681.3550614105758
+609.9093471248615
  20
-185.50000000000003
+204.02
  30
 0.0
  11
-681.3550614105758
+609.9093471248615
  21
-198.50000000000003
+191.02
  31
 0.0
   0
@@ -10051,15 +9925,15 @@ LINE
   8
 cut
  10
-681.3550614105758
+609.9093471248615
  20
-198.50000000000003
+191.02
  30
 0.0
  11
-651.3550614105758
+630.48077569629
  21
-198.50000000000003
+191.02
  31
 0.0
   0
@@ -10069,15 +9943,15 @@ LINE
   8
 cut
  10
-658.4232432287575
+630.48077569629
  20
-153.00000000000003
+191.02
  30
 0.0
  11
-647.0141523196667
+630.48077569629
  21
-153.00000000000003
+204.02
  31
 0.0
   0
@@ -10087,15 +9961,15 @@ LINE
   8
 cut
  10
-647.0141523196667
+630.48077569629
  20
-153.00000000000003
+204.02
  30
 0.0
  11
-647.0141523196667
+609.9093471248615
  21
-152.5
+204.02
  31
 0.0
   0
@@ -10105,49 +9979,13 @@ LINE
   8
 cut
  10
-647.0141523196667
- 20
-152.5
- 30
-0.0
- 11
-658.4232432287575
- 21
-152.5
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-658.4232432287575
- 20
-152.5
- 30
-0.0
- 11
-658.4232432287575
- 21
-153.00000000000003
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-685.6959705014849
+628.6050614105758
  20
 153.00000000000003
  30
 0.0
  11
-674.2868795923939
+616.1050614105757
  21
 153.00000000000003
  31
@@ -10159,13 +9997,13 @@ LINE
   8
 cut
  10
-674.2868795923939
+616.1050614105757
  20
 153.00000000000003
  30
 0.0
  11
-674.2868795923939
+616.1050614105757
  21
 152.5
  31
@@ -10177,13 +10015,13 @@ LINE
   8
 cut
  10
-674.2868795923939
+616.1050614105757
  20
 152.5
  30
 0.0
  11
-685.6959705014849
+628.6050614105758
  21
 152.5
  31
@@ -10195,13 +10033,13 @@ LINE
   8
 cut
  10
-685.6959705014849
+628.6050614105758
  20
 152.5
  30
 0.0
  11
-685.6959705014849
+628.6050614105758
  21
 153.00000000000003
  31
@@ -10213,13 +10051,13 @@ LINE
   8
 cut
  10
-688.6050614105757
+632.6050614105758
  20
 169.93181818181822
  30
 0.0
  11
-688.6050614105757
+632.6050614105758
  21
 158.3409090909091
  31
@@ -10231,13 +10069,13 @@ LINE
   8
 cut
  10
-688.6050614105757
+632.6050614105758
  20
 158.3409090909091
  30
 0.0
  11
-689.1050614105757
+633.1050614105757
  21
 158.3409090909091
  31
@@ -10249,13 +10087,13 @@ LINE
   8
 cut
  10
-689.1050614105757
+633.1050614105757
  20
 158.3409090909091
  30
 0.0
  11
-689.1050614105757
+633.1050614105757
  21
 169.93181818181822
  31
@@ -10267,13 +10105,13 @@ LINE
   8
 cut
  10
-689.1050614105757
+633.1050614105757
  20
 169.93181818181822
  30
 0.0
  11
-688.6050614105757
+632.6050614105758
  21
 169.93181818181822
  31
@@ -10285,13 +10123,13 @@ LINE
   8
 cut
  10
-688.6050614105757
+632.6050614105758
  20
 197.65909090909093
  30
 0.0
  11
-688.6050614105757
+632.6050614105758
  21
 186.06818181818184
  31
@@ -10303,13 +10141,13 @@ LINE
   8
 cut
  10
-688.6050614105757
+632.6050614105758
  20
 186.06818181818184
  30
 0.0
  11
-689.1050614105757
+633.1050614105757
  21
 186.06818181818184
  31
@@ -10321,13 +10159,13 @@ LINE
   8
 cut
  10
-689.1050614105757
+633.1050614105757
  20
 186.06818181818184
  30
 0.0
  11
-689.1050614105757
+633.1050614105757
  21
 197.65909090909093
  31
@@ -10339,13 +10177,13 @@ LINE
   8
 cut
  10
-689.1050614105757
+633.1050614105757
  20
 197.65909090909093
  30
 0.0
  11
-688.6050614105757
+632.6050614105758
  21
 197.65909090909093
  31
@@ -10357,13 +10195,13 @@ LINE
   8
 cut
  10
-528.8550614105758
+520.8550614105757
  20
 160.75000000000003
  30
 0.0
  11
-528.8550614105758
+520.8550614105757
  21
 157.75000000000003
  31
@@ -10375,13 +10213,13 @@ LINE
   8
 cut
  10
-528.8550614105758
+520.8550614105757
  20
 157.75000000000003
  30
 0.0
  11
-531.8550614105758
+523.8550614105758
  21
 157.75000000000003
  31
@@ -10393,13 +10231,13 @@ LINE
   8
 cut
  10
-531.8550614105758
+523.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-531.8550614105758
+523.8550614105758
  21
 160.75000000000003
  31
@@ -10411,13 +10249,13 @@ LINE
   8
 cut
  10
-531.8550614105758
+523.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-528.8550614105758
+520.8550614105757
  21
 160.75000000000003
  31
@@ -10429,13 +10267,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 158.75000000000003
  31
@@ -10447,13 +10285,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 158.75000000000003
  31
@@ -10465,13 +10303,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 159.75000000000003
  31
@@ -10483,13 +10321,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 159.75000000000003
  31
@@ -10501,13 +10339,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 161.25
  31
@@ -10519,13 +10357,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 161.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 161.25
  31
@@ -10537,13 +10375,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 161.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 162.25000000000003
  31
@@ -10555,13 +10393,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 162.25000000000003
  31
@@ -10573,13 +10411,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 161.25
  31
@@ -10591,13 +10429,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 161.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 161.25
  31
@@ -10609,13 +10447,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 161.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 162.25000000000003
  31
@@ -10627,13 +10465,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 162.25000000000003
  31
@@ -10645,13 +10483,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 163.75
  31
@@ -10663,13 +10501,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 163.75
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 163.75
  31
@@ -10681,13 +10519,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 163.75
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 164.75000000000003
  31
@@ -10699,13 +10537,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 164.75000000000003
  31
@@ -10717,13 +10555,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 163.75
  31
@@ -10735,13 +10573,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 163.75
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 163.75
  31
@@ -10753,13 +10591,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 163.75
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 164.75000000000003
  31
@@ -10771,13 +10609,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 164.75000000000003
  31
@@ -10789,13 +10627,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 166.25
  31
@@ -10807,13 +10645,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 166.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 166.25
  31
@@ -10825,13 +10663,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 166.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 167.25000000000003
  31
@@ -10843,13 +10681,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 167.25000000000003
  31
@@ -10861,13 +10699,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 166.25
  31
@@ -10879,13 +10717,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 166.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 166.25
  31
@@ -10897,13 +10735,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 166.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 167.25000000000003
  31
@@ -10915,13 +10753,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 167.25000000000003
  31
@@ -10933,13 +10771,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 168.75000000000003
  31
@@ -10951,13 +10789,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 168.75000000000003
  31
@@ -10969,13 +10807,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 169.75000000000003
  31
@@ -10987,13 +10825,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 169.75000000000003
  31
@@ -11005,13 +10843,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 168.75000000000003
  31
@@ -11023,13 +10861,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 168.75000000000003
  31
@@ -11041,13 +10879,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 169.75000000000003
  31
@@ -11059,13 +10897,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 169.75000000000003
  31
@@ -11077,13 +10915,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 171.25000000000003
  31
@@ -11095,13 +10933,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 171.25000000000003
  31
@@ -11113,13 +10951,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 172.25000000000003
  31
@@ -11131,13 +10969,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 172.25000000000003
  31
@@ -11149,13 +10987,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 171.25000000000003
  31
@@ -11167,13 +11005,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 171.25000000000003
  31
@@ -11185,13 +11023,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 172.25000000000003
  31
@@ -11203,13 +11041,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 172.25000000000003
  31
@@ -11221,13 +11059,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 173.75000000000003
  31
@@ -11239,13 +11077,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 173.75000000000003
  31
@@ -11257,13 +11095,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 174.75000000000003
  31
@@ -11275,13 +11113,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 174.75000000000003
  31
@@ -11293,13 +11131,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 173.75000000000003
  31
@@ -11311,13 +11149,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 173.75000000000003
  31
@@ -11329,13 +11167,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 174.75000000000003
  31
@@ -11347,13 +11185,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 174.75000000000003
  31
@@ -11365,13 +11203,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 177.25
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 176.25000000000003
  31
@@ -11383,13 +11221,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 176.25000000000003
  31
@@ -11401,13 +11239,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 177.25
  31
@@ -11419,13 +11257,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 177.25
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 177.25
  31
@@ -11437,13 +11275,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 177.25
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 176.25000000000003
  31
@@ -11455,13 +11293,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 176.25000000000003
  31
@@ -11473,13 +11311,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 177.25
  31
@@ -11491,13 +11329,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 177.25
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 177.25
  31
@@ -11509,13 +11347,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 179.75
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 178.75000000000003
  31
@@ -11527,13 +11365,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 178.75000000000003
  31
@@ -11545,13 +11383,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 179.75
  31
@@ -11563,13 +11401,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 179.75
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 179.75
  31
@@ -11581,13 +11419,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 179.75
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 178.75000000000003
  31
@@ -11599,13 +11437,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 178.75000000000003
  31
@@ -11617,13 +11455,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 179.75
  31
@@ -11635,13 +11473,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 179.75
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 179.75
  31
@@ -11653,13 +11491,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 182.25
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 181.25000000000003
  31
@@ -11671,13 +11509,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 181.25000000000003
  31
@@ -11689,13 +11527,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 182.25
  31
@@ -11707,13 +11545,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 182.25
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 182.25
  31
@@ -11725,13 +11563,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 182.25
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 181.25000000000003
  31
@@ -11743,13 +11581,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 181.25000000000003
  31
@@ -11761,13 +11599,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 182.25
  31
@@ -11779,13 +11617,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 182.25
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 182.25
  31
@@ -11797,13 +11635,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 183.75000000000003
  31
@@ -11815,13 +11653,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 183.75000000000003
  31
@@ -11833,13 +11671,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 184.75000000000003
  31
@@ -11851,13 +11689,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 184.75000000000003
  31
@@ -11869,13 +11707,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 183.75000000000003
  31
@@ -11887,13 +11725,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 183.75000000000003
  31
@@ -11905,13 +11743,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 184.75000000000003
  31
@@ -11923,13 +11761,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 184.75000000000003
  31
@@ -11941,13 +11779,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 186.25000000000003
  31
@@ -11959,13 +11797,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 186.25000000000003
  31
@@ -11977,13 +11815,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 187.25000000000003
  31
@@ -11995,13 +11833,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 187.25000000000003
  31
@@ -12013,13 +11851,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 186.25000000000003
  31
@@ -12031,13 +11869,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 186.25000000000003
  31
@@ -12049,13 +11887,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 187.25000000000003
  31
@@ -12067,13 +11905,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 187.25000000000003
  31
@@ -12085,13 +11923,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 188.75
  31
@@ -12103,13 +11941,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 188.75
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 188.75
  31
@@ -12121,13 +11959,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 188.75
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 189.75000000000003
  31
@@ -12139,13 +11977,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 189.75000000000003
  31
@@ -12157,13 +11995,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 188.75
  31
@@ -12175,13 +12013,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 188.75
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 188.75
  31
@@ -12193,13 +12031,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 188.75
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 189.75000000000003
  31
@@ -12211,13 +12049,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 189.75000000000003
  31
@@ -12229,13 +12067,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 191.25
  31
@@ -12247,13 +12085,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 191.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 191.25
  31
@@ -12265,13 +12103,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 191.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 192.25000000000003
  31
@@ -12283,13 +12121,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 192.25000000000003
  31
@@ -12301,13 +12139,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 191.25
  31
@@ -12319,13 +12157,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 191.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 191.25
  31
@@ -12337,13 +12175,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 191.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 192.25000000000003
  31
@@ -12355,13 +12193,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 192.25000000000003
  31
@@ -12373,13 +12211,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 193.75000000000003
  31
@@ -12391,13 +12229,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 193.75000000000003
  31
@@ -12409,13 +12247,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 194.75000000000003
  31
@@ -12427,13 +12265,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 194.75000000000003
  31
@@ -12445,13 +12283,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 193.75000000000003
  31
@@ -12463,13 +12301,13 @@ LINE
   8
 cut
  10
-549.8550614105758
+541.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 193.75000000000003
  31
@@ -12481,13 +12319,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 194.75000000000003
  31
@@ -12499,13 +12337,13 @@ LINE
   8
 cut
  10
-550.8550614105758
+542.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 194.75000000000003
  31
@@ -12517,13 +12355,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 197.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 196.25000000000003
  31
@@ -12535,13 +12373,13 @@ LINE
   8
 cut
  10
-529.8550614105758
+521.8550614105757
  20
 196.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 196.25000000000003
  31
@@ -12553,13 +12391,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 197.25000000000003
  31
@@ -12571,13 +12409,13 @@ LINE
   8
 cut
  10
-530.8550614105757
+522.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 197.25000000000003
  31
@@ -12589,13 +12427,13 @@ LINE
   8
 cut
  10
-548.8550614105757
+540.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-548.8550614105757
+540.8550614105758
  21
 195.25000000000003
  31
@@ -12607,13 +12445,13 @@ LINE
   8
 cut
  10
-548.8550614105757
+540.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-551.8550614105758
+543.8550614105758
  21
 195.25000000000003
  31
@@ -12625,13 +12463,13 @@ LINE
   8
 cut
  10
-551.8550614105758
+543.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-551.8550614105758
+543.8550614105758
  21
 198.25000000000003
  31
@@ -12643,13 +12481,13 @@ LINE
   8
 cut
  10
-551.8550614105758
+543.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-548.8550614105757
+540.8550614105758
  21
 198.25000000000003
  31
@@ -12661,13 +12499,13 @@ LINE
   8
 cut
  10
-544.6050614105757
+536.6050614105758
  20
 155.25000000000003
  30
 0.0
  11
-536.1050614105757
+528.1050614105758
  21
 155.25000000000003
  31
@@ -12679,13 +12517,13 @@ LINE
   8
 cut
  10
-536.1050614105757
+528.1050614105758
  20
 155.25000000000003
  30
 0.0
  11
-536.1050614105757
+528.1050614105758
  21
 154.75
  31
@@ -12697,13 +12535,13 @@ LINE
   8
 cut
  10
-536.1050614105757
+528.1050614105758
  20
 154.75
  30
 0.0
  11
-544.6050614105757
+536.6050614105758
  21
 154.75
  31
@@ -12715,13 +12553,13 @@ LINE
   8
 cut
  10
-544.6050614105757
+536.6050614105758
  20
 154.75
  30
 0.0
  11
-544.6050614105757
+536.6050614105758
  21
 155.25000000000003
  31
@@ -12733,13 +12571,13 @@ LINE
   8
 cut
  10
-536.1050614105757
+528.1050614105758
  20
 203.00000000000003
  30
 0.0
  11
-544.6050614105757
+536.6050614105758
  21
 203.00000000000003
  31
@@ -12751,13 +12589,13 @@ LINE
   8
 cut
  10
-544.6050614105757
+536.6050614105758
  20
 203.00000000000003
  30
 0.0
  11
-544.6050614105757
+536.6050614105758
  21
 203.50000000000003
  31
@@ -12769,13 +12607,13 @@ LINE
   8
 cut
  10
-544.6050614105757
+536.6050614105758
  20
 203.50000000000003
  30
 0.0
  11
-536.1050614105757
+528.1050614105758
  21
 203.50000000000003
  31
@@ -12787,13 +12625,13 @@ LINE
   8
 cut
  10
-536.1050614105757
+528.1050614105758
  20
 203.50000000000003
  30
 0.0
  11
-536.1050614105757
+528.1050614105758
  21
 203.00000000000003
  31
@@ -12805,13 +12643,13 @@ LINE
   8
 cut
  10
-520.8550614105757
+512.8550614105757
  20
 158.59090909090912
  30
 0.0
  11
-525.8550614105757
+517.8550614105757
  21
 158.59090909090912
  31
@@ -12823,13 +12661,13 @@ LINE
   8
 cut
  10
-525.8550614105757
+517.8550614105757
  20
 158.59090909090912
  30
 0.0
  11
-525.8550614105757
+517.8550614105757
  21
 169.68181818181822
  31
@@ -12841,13 +12679,13 @@ LINE
   8
 cut
  10
-525.8550614105757
+517.8550614105757
  20
 169.68181818181822
  30
 0.0
  11
-520.8550614105757
+512.8550614105757
  21
 169.68181818181822
  31
@@ -12859,13 +12697,13 @@ LINE
   8
 cut
  10
-520.8550614105757
+512.8550614105757
  20
 186.31818181818184
  30
 0.0
  11
-525.8550614105757
+517.8550614105757
  21
 186.31818181818184
  31
@@ -12877,13 +12715,13 @@ LINE
   8
 cut
  10
-525.8550614105757
+517.8550614105757
  20
 186.31818181818184
  30
 0.0
  11
-525.8550614105757
+517.8550614105757
  21
 197.40909090909093
  31
@@ -12895,13 +12733,13 @@ LINE
   8
 cut
  10
-525.8550614105757
+517.8550614105757
  20
 197.40909090909093
  30
 0.0
  11
-520.8550614105757
+512.8550614105757
  21
 197.40909090909093
  31
@@ -12913,13 +12751,13 @@ LINE
   8
 cut
  10
-546.1050614105758
+514.1050614105758
  20
 131.50000000000003
  30
 0.0
  11
-549.6050614105758
+517.6050614105757
  21
 131.50000000000003
  31
@@ -12931,13 +12769,13 @@ LINE
   8
 cut
  10
-549.6050614105758
+517.6050614105757
  20
 131.50000000000003
  30
 0.0
  11
-549.6050614105758
+517.6050614105757
  21
 139.50000000000003
  31
@@ -12949,13 +12787,13 @@ LINE
   8
 cut
  10
-549.6050614105758
+517.6050614105757
  20
 139.50000000000003
  30
 0.0
  11
-546.1050614105758
+514.1050614105758
  21
 139.50000000000003
  31
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
index 79b1edf69566da304a920bbaa7658c28bf9dd041..9f76dd5a86b73015539b104b14ccb2b8bf6f7df3 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
@@ -943,13 +943,13 @@ LINE
   8
 0
  10
-160.30855606972293
+152.30855606972293
  20
 105.00000000000001
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 105.00000000000001
  31
@@ -961,13 +961,13 @@ LINE
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 166.0
  30
 0.0
  11
-160.30855606972293
+152.30855606972293
  21
 166.0
  31
@@ -981,13 +981,13 @@ DOTTED
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 166.0
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 105.00000000000001
  31
@@ -999,13 +999,13 @@ LINE
   8
 0
  10
-170.30855606972293
+162.30855606972293
  20
 105.00000000000001
  30
 0.0
  11
-160.30855606972293
+152.30855606972293
  21
 105.00000000000001
  31
@@ -1017,13 +1017,13 @@ LINE
   8
 0
  10
-170.30855606972293
+162.30855606972293
  20
 166.0
  30
 0.0
  11
-170.30855606972293
+162.30855606972293
  21
 105.00000000000001
  31
@@ -1035,13 +1035,13 @@ LINE
   8
 0
  10
-160.30855606972293
+152.30855606972293
  20
 166.0
  30
 0.0
  11
-170.30855606972293
+162.30855606972293
  21
 166.0
  31
@@ -1053,13 +1053,13 @@ LINE
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 166.0
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 166.0
  31
@@ -1073,13 +1073,13 @@ DOTTED
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 105.00000000000001
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 166.0
  31
@@ -1093,13 +1093,13 @@ DOTTED
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 105.00000000000001
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 105.00000000000001
  31
@@ -1111,13 +1111,13 @@ LINE
   8
 0
  10
-10.000000000000002
+10.000000000000016
  20
 166.0
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 166.0
  31
@@ -1129,13 +1129,13 @@ LINE
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 105.00000000000001
  30
 0.0
  11
-10.000000000000002
+10.000000000000016
  21
 105.00000000000001
  31
@@ -1201,13 +1201,13 @@ LINE
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 105.00000000000001
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 88.00000000000001
  31
@@ -1219,13 +1219,13 @@ LINE
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 88.00000000000001
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 105.00000000000001
  31
@@ -1239,13 +1239,13 @@ DOTTED
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 88.00000000000001
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 88.00000000000001
  31
@@ -1257,13 +1257,13 @@ LINE
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 88.00000000000001
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 27.000000000000004
  31
@@ -1275,13 +1275,13 @@ LINE
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 27.000000000000004
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 88.00000000000001
  31
@@ -1295,13 +1295,13 @@ DOTTED
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 27.000000000000004
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 27.000000000000004
  31
@@ -1313,13 +1313,13 @@ LINE
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 27.000000000000004
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 10.000000000000002
  31
@@ -1331,13 +1331,13 @@ LINE
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 10.000000000000002
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 27.000000000000004
  31
@@ -1351,13 +1351,13 @@ DOTTED
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 10.000000000000002
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 10.000000000000002
  31
@@ -1369,13 +1369,13 @@ LINE
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 0.0
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 10.000000000000002
  31
@@ -1387,13 +1387,13 @@ LINE
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 0.0
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 0.0
  31
@@ -1405,13 +1405,13 @@ LINE
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 10.000000000000002
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 0.0
  31
@@ -1423,13 +1423,13 @@ LINE
   8
 0
  10
-167.80855606972293
+159.80855606972293
  20
 154.90909090909093
  30
 0.0
  11
-162.80855606972293
+154.80855606972293
  21
 154.90909090909093
  31
@@ -1441,13 +1441,13 @@ LINE
   8
 0
  10
-162.80855606972293
+154.80855606972293
  20
 154.90909090909093
  30
 0.0
  11
-162.80855606972293
+154.80855606972293
  21
 143.8181818181818
  31
@@ -1459,13 +1459,13 @@ LINE
   8
 0
  10
-162.80855606972293
+154.80855606972293
  20
 143.8181818181818
  30
 0.0
  11
-167.80855606972293
+159.8085560697229
  21
 143.8181818181818
  31
@@ -1477,13 +1477,13 @@ LINE
   8
 0
  10
-167.80855606972293
+159.80855606972293
  20
 127.1818181818182
  30
 0.0
  11
-162.80855606972293
+154.80855606972293
  21
 127.1818181818182
  31
@@ -1495,13 +1495,13 @@ LINE
   8
 0
  10
-162.80855606972293
+154.80855606972293
  20
 127.1818181818182
  30
 0.0
  11
-162.80855606972293
+154.80855606972293
  21
 116.09090909090911
  31
@@ -1513,13 +1513,13 @@ LINE
   8
 0
  10
-162.80855606972293
+154.80855606972293
  20
 116.09090909090911
  30
 0.0
  11
-167.80855606972293
+159.8085560697229
  21
 116.09090909090911
  31
@@ -1531,13 +1531,13 @@ LINE
   8
 0
  10
-94.15427803486146
+90.15427803486148
  20
 102.50000000000001
  30
 0.0
  11
-94.15427803486146
+90.15427803486148
  21
 108.50000000000001
  31
@@ -1549,13 +1549,13 @@ LINE
   8
 0
  10
-94.15427803486146
+90.15427803486148
  20
 108.50000000000001
  30
 0.0
  11
-76.15427803486145
+72.15427803486148
  21
 108.50000000000001
  31
@@ -1567,13 +1567,13 @@ LINE
   8
 0
  10
-76.15427803486145
+72.15427803486148
  20
 108.50000000000001
  30
 0.0
  11
-76.15427803486145
+72.15427803486148
  21
 102.50000000000001
  31
@@ -1585,13 +1585,13 @@ LINE
   8
 0
  10
-76.15427803486145
+72.15427803486148
  20
 102.50000000000001
  30
 0.0
  11
-94.15427803486146
+90.15427803486148
  21
 102.50000000000001
  31
@@ -1603,13 +1603,13 @@ LINE
   8
 0
  10
-80.40427803486146
+76.40427803486146
  20
 158.25000000000003
  30
 0.0
  11
-89.90427803486145
+85.90427803486148
  21
 158.25000000000003
  31
@@ -1621,13 +1621,13 @@ LINE
   8
 0
  10
-89.90427803486145
+85.90427803486148
  20
 158.25000000000003
  30
 0.0
  11
-89.90427803486145
+85.90427803486148
  21
 158.75000000000003
  31
@@ -1639,13 +1639,13 @@ LINE
   8
 0
  10
-89.90427803486145
+85.90427803486148
  20
 158.75000000000003
  30
 0.0
  11
-80.40427803486146
+76.40427803486146
  21
 158.75000000000003
  31
@@ -1657,13 +1657,13 @@ LINE
   8
 0
  10
-80.40427803486146
+76.40427803486146
  20
 158.75000000000003
  30
 0.0
  11
-80.40427803486146
+76.40427803486146
  21
 158.25000000000003
  31
@@ -1731,13 +1731,13 @@ LINE
  10
 2.5000000000000004
  20
-143.81818181818184
+143.8181818181818
  30
 0.0
  11
 7.500000000000001
  21
-143.81818181818184
+143.8181818181818
  31
 0.0
   0
@@ -1749,7 +1749,7 @@ LINE
  10
 7.500000000000001
  20
-143.81818181818184
+143.8181818181818
  30
 0.0
  11
@@ -1783,13 +1783,13 @@ LINE
   8
 0
  10
-89.65427803486146
+85.65427803486148
  20
 2.5000000000000004
  30
 0.0
  11
-89.65427803486146
+85.65427803486148
  21
 7.500000000000001
  31
@@ -1801,13 +1801,13 @@ LINE
   8
 0
  10
-89.65427803486146
+85.65427803486148
  20
 7.500000000000001
  30
 0.0
  11
-80.65427803486146
+76.65427803486148
  21
 7.500000000000001
  31
@@ -1819,13 +1819,13 @@ LINE
   8
 0
  10
-80.65427803486146
+76.65427803486148
  20
 7.500000000000001
  30
 0.0
  11
-80.65427803486146
+76.65427803486148
  21
 2.5000000000000004
  31
@@ -1837,13 +1837,13 @@ LINE
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 135.50000000000003
  31
@@ -1857,13 +1857,13 @@ DOTTED
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 135.50000000000003
  31
@@ -1875,13 +1875,13 @@ LINE
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 135.50000000000003
  31
@@ -1895,13 +1895,13 @@ DOTTED
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -1913,13 +1913,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -1931,13 +1931,13 @@ LINE
   8
 0
  10
-266.3318087401493
+258.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 135.50000000000003
  31
@@ -1949,13 +1949,13 @@ LINE
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-253.33180874014934
+245.33180874014934
  21
 135.50000000000003
  31
@@ -1967,13 +1967,13 @@ LINE
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 135.50000000000003
  31
@@ -1985,13 +1985,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -2003,13 +2003,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 135.50000000000003
  31
@@ -2021,13 +2021,13 @@ LINE
   8
 0
  10
-253.33180874014934
+245.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 135.50000000000003
  31
@@ -2039,13 +2039,13 @@ LINE
   8
 0
  10
-253.33180874014934
+245.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-253.33180874014934
+245.33180874014934
  21
 135.50000000000003
  31
@@ -2057,13 +2057,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 101.50000000000001
  31
@@ -2077,13 +2077,13 @@ DOTTED
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 135.50000000000003
  31
@@ -2095,13 +2095,13 @@ LINE
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 65.5
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 101.50000000000001
  31
@@ -2115,13 +2115,13 @@ DOTTED
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 65.5
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 65.5
  31
@@ -2133,13 +2133,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 65.5
  31
@@ -2151,13 +2151,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 65.5
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 20.5
  31
@@ -2169,13 +2169,13 @@ LINE
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 20.5
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 65.5
  31
@@ -2187,13 +2187,13 @@ LINE
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 15.500000000000004
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 20.5
  31
@@ -2205,13 +2205,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 15.500000000000004
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 15.500000000000004
  31
@@ -2223,13 +2223,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 20.5
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 15.500000000000004
  31
@@ -2241,13 +2241,13 @@ LINE
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-307.3318087401493
+299.33180874014937
  21
 101.50000000000001
  31
@@ -2259,13 +2259,13 @@ LINE
   8
 0
  10
-307.3318087401493
+299.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 135.50000000000003
  31
@@ -2279,13 +2279,13 @@ DOTTED
   8
 0
  10
-307.3318087401493
+299.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-307.3318087401493
+299.33180874014937
  21
 135.50000000000003
  31
@@ -2297,13 +2297,13 @@ LINE
   8
 0
  10
-307.3318087401493
+299.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-283.3318087401493
+275.3318087401493
  21
 101.50000000000001
  31
@@ -2315,13 +2315,13 @@ LINE
   8
 0
  10
-283.3318087401493
+275.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-307.3318087401493
+299.33180874014937
  21
 135.50000000000003
  31
@@ -2335,13 +2335,13 @@ DOTTED
   8
 0
  10
-283.3318087401493
+275.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-283.3318087401493
+275.3318087401493
  21
 135.50000000000003
  31
@@ -2353,13 +2353,13 @@ LINE
   8
 0
  10
-283.3318087401493
+275.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-263.33180874014937
+255.33180874014934
  21
 101.50000000000001
  31
@@ -2371,13 +2371,13 @@ LINE
   8
 0
  10
-263.33180874014937
+255.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-283.3318087401493
+275.3318087401493
  21
 135.50000000000003
  31
@@ -2391,13 +2391,13 @@ DOTTED
   8
 0
  10
-263.33180874014937
+255.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-263.33180874014937
+255.33180874014934
  21
 101.50000000000001
  31
@@ -2409,13 +2409,13 @@ LINE
   8
 0
  10
-253.33180874014934
+245.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-263.33180874014937
+255.33180874014934
  21
 135.50000000000003
  31
@@ -2427,13 +2427,13 @@ LINE
   8
 0
  10
-253.33180874014934
+245.33180874014934
  20
 101.50000000000001
  30
 0.0
  11
-253.33180874014934
+245.33180874014934
  21
 135.50000000000003
  31
@@ -2445,13 +2445,13 @@ LINE
   8
 0
  10
-263.33180874014937
+255.33180874014934
  20
 101.50000000000001
  30
 0.0
  11
-253.33180874014934
+245.33180874014934
  21
 101.50000000000001
  31
@@ -2465,13 +2465,13 @@ DOTTED
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 99.36137800081471
  31
@@ -2483,13 +2483,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 99.36137800081471
  31
@@ -2501,13 +2501,13 @@ LINE
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 135.50000000000003
  31
@@ -2521,13 +2521,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 75.36137800081471
  31
@@ -2541,13 +2541,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 99.36137800081471
  31
@@ -2559,13 +2559,13 @@ LINE
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 39.22275600162939
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 75.36137800081472
  31
@@ -2577,13 +2577,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 39.22275600162939
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 39.22275600162939
  31
@@ -2595,13 +2595,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 75.36137800081472
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 39.22275600162939
  31
@@ -2613,13 +2613,13 @@ LINE
   8
 0
  10
-432.33180874014937
+424.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 75.36137800081471
  31
@@ -2631,13 +2631,13 @@ LINE
   8
 0
  10
-432.33180874014937
+424.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-432.33180874014937
+424.33180874014937
  21
 75.36137800081471
  31
@@ -2649,13 +2649,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-432.33180874014937
+424.33180874014937
  21
 99.36137800081471
  31
@@ -2667,13 +2667,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 99.36137800081471
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 99.36137800081471
  31
@@ -2685,13 +2685,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 75.36137800081471
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 99.36137800081471
  31
@@ -2703,13 +2703,13 @@ LINE
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 75.36137800081471
  31
@@ -2723,13 +2723,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 205.50000000000003
  31
@@ -2743,13 +2743,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -2763,13 +2763,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-474.84617955831095
+466.8461795583109
  21
 135.50000000000003
  31
@@ -2783,13 +2783,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-474.84617955831095
+466.8461795583109
  21
 135.50000000000003
  31
@@ -2801,13 +2801,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 117.99520972727949
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -2819,13 +2819,13 @@ LINE
   8
 0
  10
-474.84617955831095
+466.8461795583109
  20
 117.99520972727949
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 117.99520972727949
  31
@@ -2837,13 +2837,13 @@ LINE
   8
 0
  10
-474.84617955831095
+466.8461795583109
  20
 135.50000000000003
  30
 0.0
  11
-474.84617955831095
+466.8461795583109
  21
 117.99520972727949
  31
@@ -2857,13 +2857,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-489.5369564140486
+481.5369564140486
  21
 185.91765779766357
  31
@@ -2875,13 +2875,13 @@ LINE
   8
 0
  10
-489.5369564140486
+481.5369564140486
  20
 185.91765779766357
  30
 0.0
  11
-474.84617955831095
+466.8461795583109
  21
 135.50000000000003
  31
@@ -2893,13 +2893,13 @@ LINE
   8
 0
  10
-504.22773326978614
+496.22773326978614
  20
 236.33531559532716
  30
 0.0
  11
-489.5369564140486
+481.5369564140486
  21
 185.91765779766357
  31
@@ -2911,13 +2911,13 @@ LINE
   8
 0
  10
-508.3550614105757
+500.3550614105757
  20
 250.50000000000003
  30
 0.0
  11
-504.22773326978614
+496.22773326978614
  21
 236.33531559532716
  31
@@ -2931,13 +2931,13 @@ DOTTED
   8
 0
  10
-508.3550614105757
+500.3550614105757
  20
 250.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 205.50000000000003
  31
@@ -2951,13 +2951,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 250.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 205.50000000000003
  31
@@ -2971,13 +2971,13 @@ DOTTED
   8
 0
  10
-422.3318087401494
+414.3318087401494
  20
 295.5
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 250.50000000000006
  31
@@ -2991,13 +2991,13 @@ DOTTED
   8
 0
  10
-508.35506141057573
+500.35506141057573
  20
 250.50000000000003
  30
 0.0
  11
-422.3318087401494
+414.3318087401494
  21
 295.50000000000006
  31
@@ -3011,13 +3011,13 @@ DOTTED
   8
 0
  10
-489.5369564140486
+481.5369564140486
  20
 315.08234220233646
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 295.50000000000006
  31
@@ -3029,13 +3029,13 @@ LINE
   8
 0
  10
-504.22773326978614
+496.22773326978614
  20
 264.6646844046729
  30
 0.0
  11
-508.3550614105757
+500.3550614105757
  21
 250.50000000000003
  31
@@ -3047,13 +3047,13 @@ LINE
   8
 0
  10
-489.5369564140486
+481.5369564140486
  20
 315.08234220233646
  30
 0.0
  11
-504.22773326978614
+496.22773326978614
  21
 264.6646844046729
  31
@@ -3065,13 +3065,13 @@ LINE
   8
 0
  10
-474.84617955831106
+466.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-489.5369564140486
+481.5369564140486
  21
 315.0823422023364
  31
@@ -3085,13 +3085,13 @@ DOTTED
   8
 0
  10
-474.84617955831106
+466.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-422.3318087401494
+414.3318087401494
  21
 295.50000000000006
  31
@@ -3105,13 +3105,13 @@ DOTTED
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 295.5
  31
@@ -3125,13 +3125,13 @@ DOTTED
   8
 0
  10
-474.84617955831106
+466.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 365.5000000000001
  31
@@ -3145,13 +3145,13 @@ DOTTED
   8
 0
  10
-422.3318087401494
+414.3318087401494
  20
 295.50000000000006
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 295.50000000000017
  31
@@ -3165,13 +3165,13 @@ DOTTED
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-361.3318087401494
+353.3318087401495
  21
 365.50000000000017
  31
@@ -3183,13 +3183,13 @@ LINE
   8
 0
  10
-351.3318087401494
+343.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-361.3318087401494
+353.3318087401495
  21
 365.50000000000017
  31
@@ -3203,13 +3203,13 @@ DOTTED
   8
 0
  10
-351.3318087401494
+343.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-327.3318087401494
+319.3318087401494
  21
 365.50000000000017
  31
@@ -3221,13 +3221,13 @@ LINE
   8
 0
  10
-266.33180874014937
+258.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-327.3318087401494
+319.3318087401494
  21
 365.50000000000017
  31
@@ -3239,13 +3239,13 @@ LINE
   8
 0
  10
-266.33180874014937
+258.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-266.33180874014937
+258.3318087401494
  21
 365.5000000000003
  31
@@ -3257,13 +3257,13 @@ LINE
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 365.5000000000001
  31
@@ -3275,13 +3275,13 @@ LINE
   8
 0
  10
-351.3318087401494
+343.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-361.3318087401494
+353.3318087401495
  21
 365.50000000000017
  31
@@ -3293,13 +3293,13 @@ LINE
   8
 0
  10
-253.33180874014937
+245.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-327.3318087401494
+319.3318087401494
  21
 365.50000000000017
  31
@@ -3311,13 +3311,13 @@ LINE
   8
 0
  10
-253.33180874014937
+245.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-253.33180874014937
+245.3318087401494
  21
 365.5000000000003
  31
@@ -3329,13 +3329,13 @@ LINE
   8
 0
  10
-327.3318087401494
+319.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-253.33180874014937
+245.3318087401494
  21
 365.5000000000003
  31
@@ -3347,13 +3347,13 @@ LINE
   8
 0
  10
-361.3318087401494
+353.3318087401495
  20
 365.50000000000017
  30
 0.0
  11
-351.3318087401494
+343.3318087401494
  21
 365.50000000000017
  31
@@ -3365,13 +3365,13 @@ LINE
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 365.5000000000001
  31
@@ -3383,13 +3383,13 @@ LINE
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 375.5000000000001
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 365.5000000000001
  31
@@ -3401,13 +3401,13 @@ LINE
   8
 0
  10
-361.3318087401494
+353.3318087401495
  20
 375.50000000000017
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 375.5000000000001
  31
@@ -3419,13 +3419,13 @@ LINE
   8
 0
  10
-361.3318087401494
+353.3318087401495
  20
 365.50000000000017
  30
 0.0
  11
-361.3318087401494
+353.3318087401495
  21
 375.50000000000017
  31
@@ -3437,13 +3437,13 @@ LINE
   8
 0
  10
-351.3318087401494
+343.3318087401494
  20
 399.5000000000001
  30
 0.0
  11
-351.3318087401494
+343.3318087401494
  21
 365.50000000000017
  31
@@ -3457,13 +3457,13 @@ DOTTED
   8
 0
  10
-327.3318087401494
+319.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-327.3318087401495
+319.3318087401494
  21
 399.5000000000001
  31
@@ -3475,13 +3475,13 @@ LINE
   8
 0
  10
-351.3318087401495
+343.33180874014954
  20
 435.50000000000017
  30
 0.0
  11
-351.3318087401494
+343.3318087401494
  21
 399.5000000000001
  31
@@ -3495,13 +3495,13 @@ DOTTED
   8
 0
  10
-351.3318087401495
+343.33180874014954
  20
 435.50000000000017
  30
 0.0
  11
-327.3318087401495
+319.3318087401494
  21
 435.50000000000017
  31
@@ -3513,13 +3513,13 @@ LINE
   8
 0
  10
-327.3318087401495
+319.3318087401494
  20
 399.5000000000001
  30
 0.0
  11
-327.3318087401495
+319.3318087401494
  21
 435.50000000000017
  31
@@ -3531,13 +3531,13 @@ LINE
   8
 0
  10
-327.3318087401495
+319.3318087401494
  20
 435.50000000000017
  30
 0.0
  11
-327.33180874014954
+319.3318087401495
  21
 480.50000000000017
  31
@@ -3549,13 +3549,13 @@ LINE
   8
 0
  10
-351.3318087401495
+343.33180874014954
  20
 480.50000000000017
  30
 0.0
  11
-351.3318087401494
+343.3318087401494
  21
 435.50000000000017
  31
@@ -3567,13 +3567,13 @@ LINE
   8
 0
  10
-327.33180874014954
+319.3318087401495
  20
 480.50000000000017
  30
 0.0
  11
-351.3318087401495
+343.33180874014954
  21
 480.50000000000017
  31
@@ -3585,13 +3585,13 @@ LINE
   8
 0
  10
-327.3318087401494
+319.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-307.33180874014937
+299.3318087401494
  21
 365.50000000000017
  31
@@ -3603,13 +3603,13 @@ LINE
   8
 0
  10
-307.3318087401495
+299.3318087401495
  20
 399.5000000000001
  30
 0.0
  11
-327.3318087401495
+319.3318087401494
  21
 399.5000000000001
  31
@@ -3623,13 +3623,13 @@ DOTTED
   8
 0
  10
-307.33180874014937
+299.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-307.3318087401495
+299.3318087401495
  21
 399.5000000000001
  31
@@ -3641,13 +3641,13 @@ LINE
   8
 0
  10
-307.33180874014937
+299.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-283.33180874014937
+275.33180874014937
  21
 365.50000000000017
  31
@@ -3659,13 +3659,13 @@ LINE
   8
 0
  10
-283.3318087401494
+275.3318087401494
  20
 399.5000000000001
  30
 0.0
  11
-307.3318087401495
+299.3318087401495
  21
 399.5000000000001
  31
@@ -3679,13 +3679,13 @@ DOTTED
   8
 0
  10
-283.33180874014937
+275.33180874014937
  20
 365.50000000000017
  30
 0.0
  11
-283.3318087401494
+275.3318087401494
  21
 399.5000000000001
  31
@@ -3697,13 +3697,13 @@ LINE
   8
 0
  10
-283.33180874014937
+275.33180874014937
  20
 365.50000000000017
  30
 0.0
  11
-263.3318087401494
+255.3318087401494
  21
 365.50000000000017
  31
@@ -3715,13 +3715,13 @@ LINE
   8
 0
  10
-263.3318087401494
+255.33180874014943
  20
 399.5000000000001
  30
 0.0
  11
-283.3318087401494
+275.3318087401494
  21
 399.5000000000001
  31
@@ -3735,13 +3735,13 @@ DOTTED
   8
 0
  10
-263.3318087401494
+255.33180874014943
  20
 399.5000000000001
  30
 0.0
  11
-263.3318087401494
+255.3318087401494
  21
 365.50000000000017
  31
@@ -3753,13 +3753,13 @@ LINE
   8
 0
  10
-253.33180874014943
+245.33180874014943
  20
 399.5000000000001
  30
 0.0
  11
-263.3318087401494
+255.33180874014943
  21
 399.5000000000001
  31
@@ -3771,13 +3771,13 @@ LINE
   8
 0
  10
-253.3318087401494
+245.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-253.33180874014943
+245.33180874014943
  21
 399.5000000000001
  31
@@ -3789,13 +3789,13 @@ LINE
   8
 0
  10
-263.3318087401494
+255.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-253.3318087401494
+245.3318087401494
  21
 365.50000000000017
  31
@@ -3809,13 +3809,13 @@ DOTTED
   8
 0
  10
-266.3318087401493
+258.33180874014937
  20
 295.50000000000017
  30
 0.0
  11
-266.33180874014937
+258.3318087401494
  21
 365.5000000000002
  31
@@ -3829,13 +3829,13 @@ DOTTED
   8
 0
  10
-266.33180874014937
+258.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-213.81743792198782
+205.8174379219878
  21
 365.5000000000003
  31
@@ -3849,13 +3849,13 @@ DOTTED
   8
 0
  10
-266.3318087401493
+258.33180874014937
  20
 295.5000000000002
  30
 0.0
  11
-213.81743792198782
+205.8174379219878
  21
 365.5000000000003
  31
@@ -3867,13 +3867,13 @@ LINE
   8
 0
  10
-266.33180874014937
+258.3318087401494
  20
 383.00479027272075
  30
 0.0
  11
-266.33180874014937
+258.3318087401494
  21
 365.5000000000003
  31
@@ -3885,13 +3885,13 @@ LINE
   8
 0
  10
-213.81743792198782
+205.8174379219878
  20
 383.00479027272087
  30
 0.0
  11
-266.33180874014937
+258.3318087401494
  21
 383.00479027272075
  31
@@ -3903,13 +3903,13 @@ LINE
   8
 0
  10
-213.81743792198782
+205.8174379219878
  20
 365.5000000000003
  30
 0.0
  11
-213.81743792198782
+205.8174379219878
  21
 383.00479027272087
  31
@@ -3923,13 +3923,13 @@ DOTTED
   8
 0
  10
-266.3318087401493
+258.33180874014937
  20
 295.50000000000017
  30
 0.0
  11
-199.12666106625016
+191.12666106625016
  21
 315.08234220233675
  31
@@ -3941,13 +3941,13 @@ LINE
   8
 0
  10
-199.12666106625016
+191.12666106625016
  20
 315.08234220233675
  30
 0.0
  11
-213.81743792198782
+205.8174379219878
  21
 365.5000000000003
  31
@@ -3959,13 +3959,13 @@ LINE
   8
 0
  10
-184.43588421051248
+176.4358842105125
  20
 264.6646844046731
  30
 0.0
  11
-199.12666106625016
+191.12666106625016
  21
 315.08234220233675
  31
@@ -3977,13 +3977,13 @@ LINE
   8
 0
  10
-180.30855606972295
+172.30855606972295
  20
 250.50000000000028
  30
 0.0
  11
-184.43588421051248
+176.4358842105125
  21
 264.6646844046731
  31
@@ -3997,13 +3997,13 @@ DOTTED
   8
 0
  10
-180.30855606972295
+172.30855606972295
  20
 250.50000000000028
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 295.50000000000017
  31
@@ -4017,13 +4017,13 @@ DOTTED
   8
 0
  10
-266.3318087401493
+258.3318087401493
  20
 250.50000000000017
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 295.50000000000017
  31
@@ -4037,13 +4037,13 @@ DOTTED
   8
 0
  10
-266.33180874014926
+258.3318087401492
  20
 205.50000000000017
  30
 0.0
  11
-266.3318087401493
+258.3318087401493
  21
 250.5000000000002
  31
@@ -4057,13 +4057,13 @@ DOTTED
   8
 0
  10
-180.3085560697229
+172.30855606972293
  20
 250.5000000000003
  30
 0.0
  11
-266.33180874014926
+258.3318087401492
  21
 205.50000000000014
  31
@@ -4077,13 +4077,13 @@ DOTTED
   8
 0
  10
-199.12666106624997
+191.12666106624997
  20
 185.91765779766385
  30
 0.0
  11
-266.33180874014926
+258.3318087401492
  21
 205.50000000000014
  31
@@ -4095,13 +4095,13 @@ LINE
   8
 0
  10
-184.43588421051243
+176.43588421051246
  20
 236.33531559532744
  30
 0.0
  11
-180.3085560697229
+172.30855606972293
  21
 250.5000000000003
  31
@@ -4113,13 +4113,13 @@ LINE
   8
 0
  10
-199.12666106624997
+191.12666106624997
  20
 185.91765779766385
  30
 0.0
  11
-184.43588421051243
+176.43588421051246
  21
 236.33531559532744
  31
@@ -4131,13 +4131,13 @@ LINE
   8
 0
  10
-213.81743792198745
+205.81743792198745
  20
 135.50000000000023
  30
 0.0
  11
-199.12666106624997
+191.12666106624997
  21
 185.91765779766385
  31
@@ -4151,13 +4151,13 @@ DOTTED
   8
 0
  10
-213.81743792198745
+205.81743792198745
  20
 135.50000000000023
  30
 0.0
  11
-266.3318087401492
+258.33180874014914
  21
 205.50000000000017
  31
@@ -4171,13 +4171,13 @@ DOTTED
   8
 0
  10
-266.3318087401491
+258.33180874014903
  20
 135.5000000000001
  30
 0.0
  11
-266.33180874014926
+258.3318087401492
  21
 205.50000000000017
  31
@@ -4191,13 +4191,13 @@ DOTTED
   8
 0
  10
-213.81743792198748
+205.81743792198748
  20
 135.50000000000023
  30
 0.0
  11
-266.3318087401491
+258.33180874014903
  21
 135.5000000000001
  31
@@ -4209,13 +4209,13 @@ LINE
   8
 0
  10
-213.81743792198742
+205.81743792198742
  20
 117.9952097272797
  30
 0.0
  11
-213.81743792198748
+205.81743792198748
  21
 135.50000000000023
  31
@@ -4227,13 +4227,13 @@ LINE
   8
 0
  10
-266.3318087401491
+258.33180874014903
  20
 117.9952097272796
  30
 0.0
  11
-213.81743792198742
+205.81743792198742
  21
 117.9952097272797
  31
@@ -4245,13 +4245,13 @@ LINE
   8
 0
  10
-266.3318087401491
+258.33180874014903
  20
 135.5000000000001
  30
 0.0
  11
-266.3318087401491
+258.33180874014903
  21
 117.9952097272796
  31
@@ -4263,13 +4263,13 @@ LINE
   8
 0
  10
-474.8461795583111
+466.8461795583111
  20
 383.0047902727206
  30
 0.0
  11
-474.84617955831106
+466.84617955831106
  21
 365.50000000000006
  31
@@ -4281,13 +4281,13 @@ LINE
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 383.00479027272064
  30
 0.0
  11
-474.8461795583111
+466.8461795583111
  21
 383.0047902727206
  31
@@ -4299,13 +4299,13 @@ LINE
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 383.00479027272064
  31
@@ -4317,13 +4317,13 @@ LINE
   8
 0
  10
-288.76362692196756
+280.7636269219675
  20
 143.25
  30
 0.0
  11
-277.1727178310585
+269.1727178310585
  21
 143.25
  31
@@ -4335,13 +4335,13 @@ LINE
   8
 0
  10
-277.1727178310585
+269.1727178310585
  20
 143.25
  30
 0.0
  11
-277.1727178310585
+269.1727178310585
  21
 142.75000000000003
  31
@@ -4353,13 +4353,13 @@ LINE
   8
 0
  10
-277.1727178310585
+269.1727178310585
  20
 142.75000000000003
  30
 0.0
  11
-288.76362692196756
+280.7636269219675
  21
 142.75000000000003
  31
@@ -4371,13 +4371,13 @@ LINE
   8
 0
  10
-288.76362692196756
+280.7636269219675
  20
 142.75000000000003
  30
 0.0
  11
-288.76362692196756
+280.7636269219675
  21
 143.25
  31
@@ -4389,13 +4389,13 @@ LINE
   8
 0
  10
-316.49089964924025
+308.49089964924025
  20
 143.25
  30
 0.0
  11
-304.8999905583311
+296.8999905583312
  21
 143.25
  31
@@ -4407,13 +4407,13 @@ LINE
   8
 0
  10
-304.8999905583311
+296.8999905583312
  20
 143.25
  30
 0.0
  11
-304.8999905583311
+296.8999905583312
  21
 142.75000000000003
  31
@@ -4425,13 +4425,13 @@ LINE
   8
 0
  10
-304.8999905583311
+296.8999905583312
  20
 142.75000000000003
  30
 0.0
  11
-316.49089964924025
+308.49089964924025
  21
 142.75000000000003
  31
@@ -4443,13 +4443,13 @@ LINE
   8
 0
  10
-316.49089964924025
+308.49089964924025
  20
 142.75000000000003
  30
 0.0
  11
-316.49089964924025
+308.49089964924025
  21
 143.25
  31
@@ -4461,13 +4461,13 @@ LINE
   8
 0
  10
-343.5818087401493
+335.58180874014937
  20
 124.41666666666669
  30
 0.0
  11
-343.5818087401493
+335.58180874014937
  21
 112.58333333333334
  31
@@ -4479,13 +4479,13 @@ LINE
   8
 0
  10
-343.5818087401493
+335.58180874014937
  20
 112.58333333333334
  30
 0.0
  11
-344.08180874014937
+336.08180874014937
  21
 112.58333333333334
  31
@@ -4497,13 +4497,13 @@ LINE
   8
 0
  10
-344.08180874014937
+336.08180874014937
  20
 112.58333333333334
  30
 0.0
  11
-344.08180874014937
+336.08180874014937
  21
 124.41666666666669
  31
@@ -4515,13 +4515,13 @@ LINE
   8
 0
  10
-344.08180874014937
+336.08180874014937
  20
 124.41666666666669
  30
 0.0
  11
-343.5818087401493
+335.58180874014937
  21
 124.41666666666669
  31
@@ -4533,13 +4533,13 @@ LINE
   8
 0
  10
-343.3318087401493
+335.33180874014937
  20
 16.750000000000004
  30
 0.0
  11
-345.83180874014937
+337.83180874014937
  21
 16.750000000000004
  31
@@ -4551,13 +4551,13 @@ LINE
   8
 0
  10
-345.83180874014937
+337.83180874014937
  20
 16.750000000000004
  30
 0.0
  11
-343.3318087401493
+335.33180874014937
  21
 19.250000000000004
  31
@@ -4569,13 +4569,13 @@ LINE
   8
 0
  10
-343.3318087401493
+335.33180874014937
  20
 19.250000000000004
  30
 0.0
  11
-335.33180874014937
+327.33180874014937
  21
 19.250000000000004
  31
@@ -4587,13 +4587,13 @@ LINE
   8
 0
  10
-335.33180874014937
+327.33180874014937
  20
 19.250000000000004
  30
 0.0
  11
-332.83180874014937
+324.8318087401493
  21
 16.750000000000004
  31
@@ -4605,13 +4605,13 @@ LINE
   8
 0
  10
-332.83180874014937
+324.8318087401493
  20
 16.750000000000004
  30
 0.0
  11
-335.33180874014937
+327.33180874014937
  21
 16.750000000000004
  31
@@ -4623,13 +4623,13 @@ LINE
   8
 0
  10
-308.33180874014937
+300.33180874014937
  20
 112.50000000000001
  30
 0.0
  11
-312.33180874014937
+304.33180874014937
  21
 112.50000000000001
  31
@@ -4641,13 +4641,13 @@ LINE
   8
 0
  10
-312.33180874014937
+304.33180874014937
  20
 112.50000000000001
  30
 0.0
  11
-312.33180874014937
+304.33180874014937
  21
 124.50000000000001
  31
@@ -4659,13 +4659,13 @@ LINE
   8
 0
  10
-312.33180874014937
+304.33180874014937
  20
 124.50000000000001
  30
 0.0
  11
-308.33180874014937
+300.33180874014937
  21
 124.50000000000001
  31
@@ -4677,13 +4677,13 @@ LINE
   8
 0
  10
-308.33180874014937
+300.33180874014937
  20
 124.50000000000001
  30
 0.0
  11
-308.33180874014937
+300.33180874014937
  21
 112.50000000000001
  31
@@ -4695,13 +4695,13 @@ LINE
   8
 0
  10
-320.3318087401493
+312.33180874014937
  20
 114.00000000000001
  30
 0.0
  11
-324.33180874014937
+316.3318087401493
  21
 114.00000000000001
  31
@@ -4713,13 +4713,13 @@ LINE
   8
 0
  10
-324.33180874014937
+316.3318087401493
  20
 114.00000000000001
  30
 0.0
  11
-324.33180874014937
+316.3318087401493
  21
 123.00000000000001
  31
@@ -4731,13 +4731,13 @@ LINE
   8
 0
  10
-324.33180874014937
+316.3318087401493
  20
 123.00000000000001
  30
 0.0
  11
-320.3318087401493
+312.33180874014937
  21
 123.00000000000001
  31
@@ -4749,13 +4749,13 @@ LINE
   8
 0
  10
-320.3318087401493
+312.33180874014937
  20
 123.00000000000001
  30
 0.0
  11
-320.3318087401493
+312.33180874014937
  21
 114.00000000000001
  31
@@ -4767,13 +4767,13 @@ LINE
   8
 0
  10
-283.8318087401493
+275.8318087401493
  20
 112.50000000000001
  30
 0.0
  11
-306.8318087401493
+298.83180874014937
  21
 112.50000000000001
  31
@@ -4785,13 +4785,13 @@ LINE
   8
 0
  10
-306.8318087401493
+298.83180874014937
  20
 112.50000000000001
  30
 0.0
  11
-306.8318087401493
+298.83180874014937
  21
 124.50000000000001
  31
@@ -4803,13 +4803,13 @@ LINE
   8
 0
  10
-306.8318087401493
+298.83180874014937
  20
 124.50000000000001
  30
 0.0
  11
-283.8318087401493
+275.8318087401493
  21
 124.50000000000001
  31
@@ -4821,13 +4821,13 @@ LINE
   8
 0
  10
-283.8318087401493
+275.8318087401493
  20
 124.50000000000001
  30
 0.0
  11
-283.8318087401493
+275.8318087401493
  21
 112.50000000000001
  31
@@ -4839,13 +4839,13 @@ LINE
   8
 0
  10
-278.33180874014937
+270.33180874014937
  20
 112.50000000000001
  30
 0.0
  11
-282.33180874014937
+274.3318087401493
  21
 112.50000000000001
  31
@@ -4857,13 +4857,13 @@ LINE
   8
 0
  10
-282.33180874014937
+274.3318087401493
  20
 112.50000000000001
  30
 0.0
  11
-282.33180874014937
+274.3318087401493
  21
 124.50000000000001
  31
@@ -4875,13 +4875,13 @@ LINE
   8
 0
  10
-282.33180874014937
+274.3318087401493
  20
 124.50000000000001
  30
 0.0
  11
-278.33180874014937
+270.33180874014937
  21
 124.50000000000001
  31
@@ -4893,13 +4893,13 @@ LINE
   8
 0
  10
-278.33180874014937
+270.33180874014937
  20
 124.50000000000001
  30
 0.0
  11
-278.33180874014937
+270.33180874014937
  21
 112.50000000000001
  31
@@ -4911,13 +4911,13 @@ LINE
   8
 0
  10
-255.83180874014934
+247.83180874014934
  20
 112.83333333333336
  30
 0.0
  11
-260.83180874014937
+252.83180874014934
  21
 112.83333333333336
  31
@@ -4929,13 +4929,13 @@ LINE
   8
 0
  10
-260.83180874014937
+252.83180874014934
  20
 112.83333333333336
  30
 0.0
  11
-260.83180874014937
+252.83180874014934
  21
 124.16666666666669
  31
@@ -4947,13 +4947,13 @@ LINE
   8
 0
  10
-260.83180874014937
+252.83180874014934
  20
 124.16666666666669
  30
 0.0
  11
-255.83180874014934
+247.83180874014934
  21
 124.16666666666669
  31
@@ -4965,13 +4965,13 @@ LINE
   8
 0
  10
-379.3318087401493
+371.33180874014937
  20
 80.86137800081471
  30
 0.0
  11
-390.33180874014937
+382.33180874014937
  21
 80.86137800081471
  31
@@ -4983,13 +4983,13 @@ LINE
   8
 0
  10
-390.33180874014937
+382.33180874014937
  20
 80.86137800081471
  30
 0.0
  11
-390.33180874014937
+382.33180874014937
  21
 93.86137800081471
  31
@@ -5001,13 +5001,13 @@ LINE
   8
 0
  10
-390.33180874014937
+382.33180874014937
  20
 93.86137800081471
  30
 0.0
  11
-379.3318087401493
+371.33180874014937
  21
 93.86137800081471
  31
@@ -5019,13 +5019,13 @@ LINE
   8
 0
  10
-379.3318087401493
+371.33180874014937
  20
 93.86137800081471
  30
 0.0
  11
-379.3318087401493
+371.33180874014937
  21
 80.86137800081471
  31
@@ -5037,13 +5037,13 @@ LINE
   8
 0
  10
-410.83180874014937
+402.8318087401493
  20
 82.36137800081471
  30
 0.0
  11
-416.83180874014937
+408.83180874014937
  21
 82.36137800081471
  31
@@ -5055,13 +5055,13 @@ LINE
   8
 0
  10
-416.83180874014937
+408.83180874014937
  20
 82.36137800081471
  30
 0.0
  11
-416.83180874014937
+408.83180874014937
  21
 92.36137800081471
  31
@@ -5073,13 +5073,13 @@ LINE
   8
 0
  10
-416.83180874014937
+408.83180874014937
  20
 92.36137800081471
  30
 0.0
  11
-410.83180874014937
+402.8318087401493
  21
 92.36137800081471
  31
@@ -5091,13 +5091,13 @@ LINE
   8
 0
  10
-410.83180874014937
+402.8318087401493
  20
 92.36137800081471
  30
 0.0
  11
-410.83180874014937
+402.8318087401493
  21
 82.36137800081471
  31
@@ -5109,13 +5109,13 @@ LINE
   8
 0
  10
-383.76362692196756
+375.76362692196756
  20
 46.9727560016294
  30
 0.0
  11
-372.1727178310585
+364.17271783105843
  21
 46.9727560016294
  31
@@ -5127,13 +5127,13 @@ LINE
   8
 0
  10
-372.1727178310585
+364.17271783105843
  20
 46.9727560016294
  30
 0.0
  11
-372.1727178310585
+364.17271783105843
  21
 46.4727560016294
  31
@@ -5145,13 +5145,13 @@ LINE
   8
 0
  10
-372.1727178310585
+364.17271783105843
  20
 46.4727560016294
  30
 0.0
  11
-383.76362692196756
+375.76362692196756
  21
 46.4727560016294
  31
@@ -5163,13 +5163,13 @@ LINE
   8
 0
  10
-383.76362692196756
+375.76362692196756
  20
 46.4727560016294
  30
 0.0
  11
-383.76362692196756
+375.76362692196756
  21
 46.9727560016294
  31
@@ -5181,13 +5181,13 @@ LINE
   8
 0
  10
-411.49089964924025
+403.4908996492402
  20
 46.9727560016294
  30
 0.0
  11
-399.8999905583312
+391.8999905583312
  21
 46.9727560016294
  31
@@ -5199,13 +5199,13 @@ LINE
   8
 0
  10
-399.8999905583312
+391.8999905583312
  20
 46.9727560016294
  30
 0.0
  11
-399.8999905583312
+391.8999905583312
  21
 46.4727560016294
  31
@@ -5217,13 +5217,13 @@ LINE
   8
 0
  10
-399.8999905583312
+391.8999905583312
  20
 46.4727560016294
  30
 0.0
  11
-411.49089964924025
+403.4908996492402
  21
 46.4727560016294
  31
@@ -5235,13 +5235,13 @@ LINE
   8
 0
  10
-411.49089964924025
+403.4908996492402
  20
 46.4727560016294
  30
 0.0
  11
-411.49089964924025
+403.4908996492402
  21
 46.9727560016294
  31
@@ -5253,13 +5253,13 @@ LINE
   8
 0
  10
-429.8318087401493
+421.83180874014937
  20
 91.36137800081471
  30
 0.0
  11
-424.83180874014937
+416.83180874014937
  21
 91.36137800081471
  31
@@ -5271,13 +5271,13 @@ LINE
   8
 0
  10
-424.83180874014937
+416.83180874014937
  20
 91.36137800081471
  30
 0.0
  11
-424.83180874014937
+416.83180874014937
  21
 83.36137800081471
  31
@@ -5289,13 +5289,13 @@ LINE
   8
 0
  10
-424.83180874014937
+416.83180874014937
  20
 83.36137800081471
  30
 0.0
  11
-429.8318087401493
+421.83180874014937
  21
 83.36137800081471
  31
@@ -5307,13 +5307,13 @@ LINE
   8
 0
  10
-353.83180874014937
+345.83180874014937
  20
 83.36137800081471
  30
 0.0
  11
-358.83180874014937
+350.83180874014937
  21
 83.36137800081471
  31
@@ -5325,13 +5325,13 @@ LINE
   8
 0
  10
-358.83180874014937
+350.83180874014937
  20
 83.36137800081471
  30
 0.0
  11
-358.83180874014937
+350.83180874014937
  21
 91.36137800081471
  31
@@ -5343,13 +5343,13 @@ LINE
   8
 0
  10
-358.83180874014937
+350.83180874014937
  20
 91.36137800081471
  30
 0.0
  11
-353.83180874014937
+345.83180874014937
  21
 91.36137800081471
  31
@@ -5361,13 +5361,13 @@ LINE
   8
 0
  10
-457.3413892855904
+449.3413892855904
  20
 122.37140729545962
  30
 0.0
  11
-457.3413892855904
+449.3413892855904
  21
 131.12380243181985
  31
@@ -5379,13 +5379,13 @@ LINE
   8
 0
  10
-457.3413892855904
+449.3413892855904
  20
 131.12380243181985
  30
 0.0
  11
-439.8365990128699
+431.8365990128699
  21
 131.12380243181988
  31
@@ -5397,13 +5397,13 @@ LINE
   8
 0
  10
-439.8365990128699
+431.8365990128699
  20
 131.12380243181988
  30
 0.0
  11
-439.8365990128699
+431.8365990128699
  21
 122.37140729545962
  31
@@ -5415,13 +5415,13 @@ LINE
   8
 0
  10
-486.5563117536783
+478.55631175367824
  20
 223.5120791976936
  30
 0.0
  11
-481.5195122622253
+473.5195122622253
  21
 206.22615649603978
  31
@@ -5433,13 +5433,13 @@ LINE
   8
 0
  10
-481.5195122622253
+473.5195122622253
  20
 206.22615649603978
  30
 0.0
  11
-481.99954903132453
+473.99954903132453
  21
 206.08628262316594
  31
@@ -5451,13 +5451,13 @@ LINE
   8
 0
  10
-481.99954903132453
+473.99954903132453
  20
 206.08628262316594
  30
 0.0
  11
-487.0363485227776
+479.0363485227776
  21
 223.37220532481973
  31
@@ -5469,13 +5469,13 @@ LINE
   8
 0
  10
-487.0363485227776
+479.0363485227776
  20
 223.37220532481973
  30
 0.0
  11
-486.5563117536783
+478.55631175367824
  21
 223.5120791976936
  31
@@ -5487,13 +5487,13 @@ LINE
   8
 0
  10
-481.5195122622253
+473.5195122622253
  20
 294.77384350396034
  30
 0.0
  11
-486.55631175367836
+478.55631175367836
  21
 277.4879208023065
  31
@@ -5505,13 +5505,13 @@ LINE
   8
 0
  10
-486.55631175367836
+478.55631175367836
  20
 277.4879208023065
  30
 0.0
  11
-487.0363485227776
+479.0363485227776
  21
 277.6277946751803
  31
@@ -5523,13 +5523,13 @@ LINE
   8
 0
  10
-487.0363485227776
+479.0363485227776
  20
 277.6277946751803
  30
 0.0
  11
-481.9995490313246
+473.9995490313246
  21
 294.91371737683414
  31
@@ -5541,13 +5541,13 @@ LINE
   8
 0
  10
-481.9995490313246
+473.9995490313246
  20
 294.91371737683414
  30
 0.0
  11
-481.5195122622253
+473.5195122622253
  21
 294.77384350396034
  31
@@ -5559,13 +5559,13 @@ LINE
   8
 0
  10
-304.8999905583312
+296.89999055833124
  20
 357.7500000000002
  30
 0.0
  11
-316.4908996492403
+308.4908996492403
  21
 357.75000000000017
  31
@@ -5577,13 +5577,13 @@ LINE
   8
 0
  10
-316.4908996492403
+308.4908996492403
  20
 357.75000000000017
  30
 0.0
  11
-316.4908996492403
+308.4908996492403
  21
 358.25000000000017
  31
@@ -5595,13 +5595,13 @@ LINE
   8
 0
  10
-316.4908996492403
+308.4908996492403
  20
 358.25000000000017
  30
 0.0
  11
-304.8999905583312
+296.89999055833124
  21
 358.25000000000017
  31
@@ -5613,13 +5613,13 @@ LINE
   8
 0
  10
-304.8999905583312
+296.89999055833124
  20
 358.25000000000017
  30
 0.0
  11
-304.8999905583312
+296.89999055833124
  21
 357.7500000000002
  31
@@ -5631,13 +5631,13 @@ LINE
   8
 0
  10
-277.1727178310585
+269.1727178310585
  20
 357.7500000000002
  30
 0.0
  11
-288.7636269219676
+280.76362692196756
  21
 357.7500000000002
  31
@@ -5649,13 +5649,13 @@ LINE
   8
 0
  10
-288.7636269219676
+280.76362692196756
  20
 357.7500000000002
  30
 0.0
  11
-288.7636269219676
+280.76362692196756
  21
 358.25000000000017
  31
@@ -5667,13 +5667,13 @@ LINE
   8
 0
  10
-288.7636269219676
+280.76362692196756
  20
 358.25000000000017
  30
 0.0
  11
-277.1727178310585
+269.1727178310585
  21
 358.25000000000017
  31
@@ -5685,13 +5685,13 @@ LINE
   8
 0
  10
-277.1727178310585
+269.1727178310585
  20
 358.25000000000017
  30
 0.0
  11
-277.1727178310585
+269.1727178310585
  21
 357.7500000000002
  31
@@ -5703,13 +5703,13 @@ LINE
   8
 0
  10
-372.42271783105855
+364.4227178310585
  20
 373.0000000000001
  30
 0.0
  11
-372.42271783105855
+364.4227178310585
  21
 368.0000000000001
  31
@@ -5721,13 +5721,13 @@ LINE
   8
 0
  10
-372.42271783105855
+364.4227178310585
  20
 368.0000000000001
  30
 0.0
  11
-383.5136269219676
+375.5136269219676
  21
 368.0000000000001
  31
@@ -5739,13 +5739,13 @@ LINE
   8
 0
  10
-383.5136269219676
+375.5136269219676
  20
 368.0000000000001
  30
 0.0
  11
-383.51362692196767
+375.51362692196767
  21
 373.0000000000001
  31
@@ -5757,13 +5757,13 @@ LINE
   8
 0
  10
-400.14999055833124
+392.1499905583313
  20
 373.0000000000001
  30
 0.0
  11
-400.14999055833124
+392.1499905583313
  21
 368.0000000000001
  31
@@ -5775,13 +5775,13 @@ LINE
   8
 0
  10
-400.14999055833124
+392.1499905583313
  20
 368.0000000000001
  30
 0.0
  11
-411.24089964924036
+403.2408996492403
  21
 368.00000000000006
  31
@@ -5793,13 +5793,13 @@ LINE
   8
 0
  10
-411.24089964924036
+403.2408996492403
  20
 368.00000000000006
  30
 0.0
  11
-411.2408996492404
+403.24089964924036
  21
 373.00000000000006
  31
@@ -5811,13 +5811,13 @@ LINE
   8
 0
  10
-343.5818087401495
+335.5818087401495
  20
 388.4166666666668
  30
 0.0
  11
-343.5818087401495
+335.5818087401495
  21
 376.5833333333335
  31
@@ -5829,13 +5829,13 @@ LINE
   8
 0
  10
-343.5818087401495
+335.5818087401495
  20
 376.5833333333335
  30
 0.0
  11
-344.0818087401495
+336.0818087401495
  21
 376.5833333333335
  31
@@ -5847,13 +5847,13 @@ LINE
   8
 0
  10
-344.0818087401495
+336.0818087401495
  20
 376.5833333333335
  30
 0.0
  11
-344.0818087401495
+336.0818087401495
  21
 388.4166666666668
  31
@@ -5865,13 +5865,13 @@ LINE
   8
 0
  10
-344.0818087401495
+336.0818087401495
  20
 388.4166666666668
  30
 0.0
  11
-343.5818087401495
+335.5818087401495
  21
 388.4166666666668
  31
@@ -5883,13 +5883,13 @@ LINE
   8
 0
  10
-335.08180874014954
+327.08180874014954
  20
 476.50000000000017
  30
 0.0
  11
-343.58180874014954
+335.58180874014954
  21
 476.50000000000017
  31
@@ -5901,13 +5901,13 @@ LINE
   8
 0
  10
-343.58180874014954
+335.58180874014954
  20
 476.50000000000017
  30
 0.0
  11
-343.58180874014954
+335.58180874014954
  21
 477.00000000000017
  31
@@ -5919,13 +5919,13 @@ LINE
   8
 0
  10
-343.58180874014954
+335.58180874014954
  20
 477.00000000000017
  30
 0.0
  11
-335.08180874014954
+327.08180874014954
  21
 477.00000000000017
  31
@@ -5937,13 +5937,13 @@ LINE
   8
 0
  10
-335.08180874014954
+327.08180874014954
  20
 477.00000000000017
  30
 0.0
  11
-335.08180874014954
+327.08180874014954
  21
 476.50000000000017
  31
@@ -5955,13 +5955,13 @@ LINE
   8
 0
  10
-308.3318087401494
+300.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-312.3318087401494
+304.3318087401494
  21
 376.50000000000017
  31
@@ -5973,13 +5973,13 @@ LINE
   8
 0
  10
-312.3318087401494
+304.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-312.3318087401495
+304.3318087401495
  21
 388.50000000000017
  31
@@ -5991,13 +5991,13 @@ LINE
   8
 0
  10
-312.3318087401495
+304.3318087401495
  20
 388.50000000000017
  30
 0.0
  11
-308.3318087401495
+300.3318087401495
  21
 388.50000000000017
  31
@@ -6009,13 +6009,13 @@ LINE
   8
 0
  10
-308.3318087401495
+300.3318087401495
  20
 388.50000000000017
  30
 0.0
  11
-308.3318087401494
+300.3318087401494
  21
 376.50000000000017
  31
@@ -6027,13 +6027,13 @@ LINE
   8
 0
  10
-320.33180874014937
+312.3318087401494
  20
 378.00000000000017
  30
 0.0
  11
-324.3318087401494
+316.3318087401494
  21
 378.00000000000017
  31
@@ -6045,13 +6045,13 @@ LINE
   8
 0
  10
-324.3318087401494
+316.3318087401494
  20
 378.00000000000017
  30
 0.0
  11
-324.3318087401494
+316.3318087401494
  21
 387.00000000000017
  31
@@ -6063,13 +6063,13 @@ LINE
   8
 0
  10
-324.3318087401494
+316.3318087401494
  20
 387.00000000000017
  30
 0.0
  11
-320.3318087401494
+312.3318087401495
  21
 387.00000000000017
  31
@@ -6081,13 +6081,13 @@ LINE
   8
 0
  10
-320.3318087401494
+312.3318087401495
  20
 387.00000000000017
  30
 0.0
  11
-320.33180874014937
+312.3318087401494
  21
 378.00000000000017
  31
@@ -6099,13 +6099,13 @@ LINE
   8
 0
  10
-283.83180874014937
+275.8318087401494
  20
 376.50000000000017
  30
 0.0
  11
-306.83180874014937
+298.8318087401494
  21
 376.50000000000017
  31
@@ -6117,13 +6117,13 @@ LINE
   8
 0
  10
-306.83180874014937
+298.8318087401494
  20
 376.50000000000017
  30
 0.0
  11
-306.8318087401494
+298.8318087401495
  21
 388.50000000000017
  31
@@ -6135,13 +6135,13 @@ LINE
   8
 0
  10
-306.8318087401494
+298.8318087401495
  20
 388.50000000000017
  30
 0.0
  11
-283.83180874014937
+275.8318087401494
  21
 388.50000000000017
  31
@@ -6153,13 +6153,13 @@ LINE
   8
 0
  10
-283.83180874014937
+275.8318087401494
  20
 388.50000000000017
  30
 0.0
  11
-283.83180874014937
+275.8318087401494
  21
 376.50000000000017
  31
@@ -6171,13 +6171,13 @@ LINE
   8
 0
  10
-278.3318087401494
+270.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-282.3318087401494
+274.33180874014937
  21
 376.50000000000017
  31
@@ -6189,13 +6189,13 @@ LINE
   8
 0
  10
-282.3318087401494
+274.33180874014937
  20
 376.50000000000017
  30
 0.0
  11
-282.3318087401494
+274.33180874014937
  21
 388.50000000000017
  31
@@ -6207,13 +6207,13 @@ LINE
   8
 0
  10
-282.3318087401494
+274.33180874014937
  20
 388.50000000000017
  30
 0.0
  11
-278.3318087401494
+270.3318087401494
  21
 388.50000000000017
  31
@@ -6225,13 +6225,13 @@ LINE
   8
 0
  10
-278.3318087401494
+270.3318087401494
  20
 388.50000000000017
  30
 0.0
  11
-278.3318087401494
+270.3318087401494
  21
 376.50000000000017
  31
@@ -6243,13 +6243,13 @@ LINE
   8
 0
  10
-255.8318087401494
+247.8318087401494
  20
 376.8333333333335
  30
 0.0
  11
-260.8318087401494
+252.8318087401494
  21
 376.8333333333335
  31
@@ -6261,13 +6261,13 @@ LINE
   8
 0
  10
-260.8318087401494
+252.8318087401494
  20
 376.8333333333335
  30
 0.0
  11
-260.8318087401494
+252.8318087401494
  21
 388.16666666666686
  31
@@ -6279,13 +6279,13 @@ LINE
   8
 0
  10
-260.8318087401494
+252.8318087401494
  20
 388.16666666666686
  30
 0.0
  11
-255.8318087401494
+247.8318087401494
  21
 388.16666666666686
  31
@@ -6297,13 +6297,13 @@ LINE
   8
 0
  10
-231.32222819470834
+223.32222819470834
  20
 378.6285927045407
  30
 0.0
  11
-231.32222819470834
+223.32222819470834
  21
 369.87619756818043
  31
@@ -6315,13 +6315,13 @@ LINE
   8
 0
  10
-231.32222819470834
+223.32222819470834
  20
 369.87619756818043
  30
 0.0
  11
-248.82701846742887
+240.82701846742887
  21
 369.87619756818043
  31
@@ -6333,13 +6333,13 @@ LINE
   8
 0
  10
-248.82701846742887
+240.82701846742887
  20
 369.87619756818043
  30
 0.0
  11
-248.82701846742887
+240.82701846742887
  21
 378.6285927045407
  31
@@ -6351,13 +6351,13 @@ LINE
   8
 0
  10
-202.10730572662035
+194.10730572662035
  20
 277.4879208023067
  30
 0.0
  11
-207.1441052180734
+199.1441052180734
  21
 294.7738435039605
  31
@@ -6369,13 +6369,13 @@ LINE
   8
 0
  10
-207.1441052180734
+199.1441052180734
  20
 294.7738435039605
  30
 0.0
  11
-206.66406844897412
+198.66406844897412
  21
 294.9137173768343
  31
@@ -6387,13 +6387,13 @@ LINE
   8
 0
  10
-206.66406844897412
+198.66406844897412
  20
 294.9137173768343
  30
 0.0
  11
-201.62726895752107
+193.62726895752107
  21
 277.62779467518055
  31
@@ -6405,13 +6405,13 @@ LINE
   8
 0
  10
-201.62726895752107
+193.62726895752107
  20
 277.62779467518055
  30
 0.0
  11
-202.10730572662035
+194.10730572662035
  21
 277.4879208023067
  31
@@ -6423,13 +6423,13 @@ LINE
   8
 0
  10
-207.14410521807326
+199.14410521807326
  20
 206.22615649604003
  30
 0.0
  11
-202.10730572662024
+194.10730572662027
  21
 223.51207919769385
  31
@@ -6441,13 +6441,13 @@ LINE
   8
 0
  10
-202.10730572662024
+194.10730572662027
  20
 223.51207919769385
  30
 0.0
  11
-201.62726895752098
+193.62726895752098
  21
 223.37220532482002
  31
@@ -6459,13 +6459,13 @@ LINE
   8
 0
  10
-201.62726895752098
+193.62726895752098
  20
 223.37220532482002
  30
 0.0
  11
-206.66406844897395
+198.66406844897398
  21
 206.08628262316617
  31
@@ -6477,13 +6477,13 @@ LINE
   8
 0
  10
-206.66406844897395
+198.66406844897398
  20
 206.08628262316617
  30
 0.0
  11
-207.14410521807326
+199.14410521807326
  21
 206.22615649604003
  31
@@ -6495,13 +6495,13 @@ LINE
   8
 0
  10
-248.8270184674285
+240.8270184674285
  20
 122.37140729545976
  30
 0.0
  11
-248.82701846742856
+240.82701846742853
  21
 131.12380243182005
  31
@@ -6513,13 +6513,13 @@ LINE
   8
 0
  10
-248.82701846742856
+240.82701846742853
  20
 131.12380243182005
  30
 0.0
  11
-231.322228194708
+223.322228194708
  21
 131.12380243182008
  31
@@ -6531,13 +6531,13 @@ LINE
   8
 0
  10
-231.322228194708
+223.322228194708
  20
 131.12380243182008
  30
 0.0
  11
-231.32222819470798
+223.32222819470798
  21
 122.3714072954598
  31
@@ -6549,13 +6549,13 @@ LINE
   8
 0
  10
-439.83659901287
+431.83659901287
  20
 378.6285927045405
  30
 0.0
  11
-439.83659901287
+431.83659901287
  21
 369.87619756818015
  31
@@ -6567,13 +6567,13 @@ LINE
   8
 0
  10
-439.83659901287
+431.83659901287
  20
 369.87619756818015
  30
 0.0
  11
-457.34138928559054
+449.34138928559054
  21
 369.87619756818015
  31
@@ -6585,13 +6585,13 @@ LINE
   8
 0
  10
-457.34138928559054
+449.34138928559054
  20
 369.87619756818015
  30
 0.0
  11
-457.34138928559054
+449.34138928559054
  21
 378.6285927045405
  31
@@ -6605,13 +6605,13 @@ DOTTED
   8
 0
  10
-551.3550614105758
+519.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 123.50000000000001
  31
@@ -6625,13 +6625,13 @@ DOTTED
   8
 0
  10
-612.3550614105757
+580.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 147.5
  31
@@ -6645,13 +6645,13 @@ DOTTED
   8
 0
  10
-612.3550614105757
+580.3550614105758
  20
 147.5
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 147.5
  31
@@ -6665,13 +6665,13 @@ DOTTED
   8
 0
  10
-551.3550614105758
+519.3550614105758
  20
 147.5
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 123.50000000000001
  31
@@ -6683,13 +6683,13 @@ LINE
   8
 0
  10
-551.3550614105758
+519.3550614105758
  20
 116.50000000000001
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 123.50000000000001
  31
@@ -6701,13 +6701,13 @@ LINE
   8
 0
  10
-611.3550614105757
+555.3550614105757
  20
 116.50000000000001
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 116.50000000000001
  31
@@ -6719,13 +6719,13 @@ LINE
   8
 0
  10
-611.3550614105757
+555.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-611.3550614105757
+555.3550614105757
  21
 116.50000000000001
  31
@@ -6737,13 +6737,13 @@ LINE
   8
 0
  10
-619.3550614105757
+587.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 123.50000000000001
  31
@@ -6755,13 +6755,13 @@ LINE
   8
 0
  10
-619.3550614105757
+587.3550614105758
  20
 147.5
  30
 0.0
  11
-619.3550614105757
+587.3550614105758
  21
 123.50000000000001
  31
@@ -6773,13 +6773,13 @@ LINE
   8
 0
  10
-612.3550614105757
+580.3550614105758
  20
 147.5
  30
 0.0
  11
-619.3550614105757
+587.3550614105758
  21
 147.5
  31
@@ -6793,13 +6793,13 @@ DOTTED
   8
 0
  10
-612.3550614105757
+580.3550614105758
  20
 147.5
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 208.50000000000003
  31
@@ -6811,13 +6811,13 @@ LINE
   8
 0
  10
-552.3550614105758
+544.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 208.50000000000003
  31
@@ -6831,13 +6831,13 @@ DOTTED
   8
 0
  10
-552.3550614105758
+544.3550614105758
  20
 147.5
  30
 0.0
  11
-552.3550614105758
+544.3550614105758
  21
 208.50000000000003
  31
@@ -6849,13 +6849,13 @@ LINE
   8
 0
  10
-636.3550614105758
+604.3550614105758
  20
 147.5
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 147.5
  31
@@ -6869,13 +6869,13 @@ DOTTED
   8
 0
  10
-636.3550614105758
+604.3550614105758
  20
 147.5
  30
 0.0
  11
-636.3550614105758
+604.3550614105758
  21
 208.50000000000003
  31
@@ -6887,13 +6887,13 @@ LINE
   8
 0
  10
-612.3550614105757
+580.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-636.3550614105758
+604.3550614105758
  21
 208.50000000000003
  31
@@ -6905,13 +6905,13 @@ LINE
   8
 0
  10
-696.3550614105758
+640.3550614105757
  20
 147.5
  30
 0.0
  11
-636.3550614105758
+604.3550614105758
  21
 147.5
  31
@@ -6923,13 +6923,13 @@ LINE
   8
 0
  10
-696.3550614105758
+640.3550614105757
  20
 208.50000000000003
  30
 0.0
  11
-696.3550614105758
+640.3550614105757
  21
 147.5
  31
@@ -6941,13 +6941,13 @@ LINE
   8
 0
  10
-636.3550614105758
+604.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-696.3550614105758
+640.3550614105757
  21
 208.50000000000003
  31
@@ -6959,13 +6959,13 @@ LINE
   8
 0
  10
-552.3550614105758
+544.3550614105758
  20
 147.5
  30
 0.0
  11
-528.3550614105758
+520.3550614105758
  21
 147.5
  31
@@ -6977,13 +6977,13 @@ LINE
   8
 0
  10
-528.3550614105758
+520.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-552.3550614105758
+544.3550614105758
  21
 208.50000000000003
  31
@@ -6997,13 +6997,13 @@ DOTTED
   8
 0
  10
-528.3550614105758
+520.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-528.3550614105758
+520.3550614105758
  21
 147.5
  31
@@ -7015,13 +7015,13 @@ LINE
   8
 0
  10
-518.3550614105758
+510.35506141057573
  20
 208.50000000000003
  30
 0.0
  11
-528.3550614105758
+520.3550614105758
  21
 208.50000000000003
  31
@@ -7033,13 +7033,13 @@ LINE
   8
 0
  10
-518.3550614105758
+510.35506141057573
  20
 147.5
  30
 0.0
  11
-518.3550614105758
+510.35506141057573
  21
 208.50000000000003
  31
@@ -7051,13 +7051,13 @@ LINE
   8
 0
  10
-528.3550614105758
+520.3550614105758
  20
 147.5
  30
 0.0
  11
-518.3550614105758
+510.35506141057573
  21
 147.5
  31
@@ -7069,13 +7069,13 @@ LINE
   8
 0
  10
-544.3550614105758
+512.3550614105757
  20
 147.5
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 147.5
  31
@@ -7087,13 +7087,13 @@ LINE
   8
 0
  10
-544.3550614105758
+512.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-544.3550614105758
+512.3550614105757
  21
 147.5
  31
@@ -7105,13 +7105,13 @@ LINE
   8
 0
  10
-551.3550614105758
+519.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-544.3550614105758
+512.3550614105757
  21
 123.50000000000001
  31
@@ -7123,85 +7123,13 @@ LINE
   8
 0
  10
-600.4459705014849
- 20
-118.25000000000001
- 30
-0.0
- 11
-603.9459705014848
- 21
-118.25000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-603.9459705014848
- 20
-118.25000000000001
- 30
-0.0
- 11
-600.4459705014849
- 21
-121.75000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-600.4459705014849
- 20
-121.75000000000001
- 30
-0.0
- 11
-589.5368795923938
- 21
-121.75000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-589.5368795923938
- 20
-121.75000000000001
- 30
-0.0
- 11
-586.036879592394
- 21
-118.25000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-586.036879592394
+543.3550614105758
  20
 118.25000000000001
  30
 0.0
  11
-589.5368795923938
+546.8550614105757
  21
 118.25000000000001
  31
@@ -7213,31 +7141,13 @@ LINE
   8
 0
  10
-573.1732432287577
+546.8550614105757
  20
 118.25000000000001
  30
 0.0
  11
-576.6732432287575
- 21
-118.25000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-576.6732432287575
- 20
-118.25000000000001
- 30
-0.0
- 11
-573.1732432287577
+543.3550614105758
  21
 121.75000000000001
  31
@@ -7249,13 +7159,13 @@ LINE
   8
 0
  10
-573.1732432287577
+543.3550614105758
  20
 121.75000000000001
  30
 0.0
  11
-562.2641523196666
+531.3550614105757
  21
 121.75000000000001
  31
@@ -7267,13 +7177,13 @@ LINE
   8
 0
  10
-562.2641523196666
+531.3550614105757
  20
 121.75000000000001
  30
 0.0
  11
-558.7641523196667
+527.8550614105758
  21
 118.25000000000001
  31
@@ -7285,13 +7195,13 @@ LINE
   8
 0
  10
-558.7641523196667
+527.8550614105758
  20
 118.25000000000001
  30
 0.0
  11
-562.2641523196666
+531.3550614105757
  21
 118.25000000000001
  31
@@ -7303,13 +7213,13 @@ LINE
   8
 0
  10
-617.6050614105757
+585.6050614105758
  20
 139.50000000000003
  30
 0.0
  11
-614.1050614105758
+582.1050614105758
  21
 139.50000000000003
  31
@@ -7321,13 +7231,13 @@ LINE
   8
 0
  10
-614.1050614105758
+582.1050614105758
  20
 139.50000000000003
  30
 0.0
  11
-614.1050614105758
+582.1050614105758
  21
 131.50000000000003
  31
@@ -7339,13 +7249,13 @@ LINE
   8
 0
  10
-614.1050614105758
+582.1050614105758
  20
 131.50000000000003
  30
 0.0
  11
-617.6050614105757
+585.6050614105758
  21
 131.50000000000003
  31
@@ -7357,15 +7267,15 @@ LINE
   8
 0
  10
-559.8550614105758
+557.4693471248615
  20
-199.00000000000003
+202.25000000000003
  30
 0.0
  11
-559.8550614105758
+557.4693471248615
  21
-181.00000000000003
+184.25
  31
 0.0
   0
@@ -7375,15 +7285,15 @@ LINE
   8
 0
  10
-559.8550614105758
+557.4693471248615
  20
-181.00000000000003
+184.25
  30
 0.0
  11
-594.8550614105757
+578.0407756962901
  21
-181.00000000000003
+184.25
  31
 0.0
   0
@@ -7393,15 +7303,15 @@ LINE
   8
 0
  10
-594.8550614105757
+578.0407756962901
  20
-181.00000000000003
+184.25
  30
 0.0
  11
-594.8550614105757
+578.0407756962901
  21
-199.00000000000003
+202.25000000000003
  31
 0.0
   0
@@ -7411,15 +7321,15 @@ LINE
   8
 0
  10
-594.8550614105757
+578.0407756962901
  20
-199.00000000000003
+202.25000000000003
  30
 0.0
  11
-559.8550614105758
+557.4693471248615
  21
-199.00000000000003
+202.25000000000003
  31
 0.0
   0
@@ -7429,13 +7339,13 @@ LINE
   8
 0
  10
-612.8550614105757
+580.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-612.8550614105757
+580.8550614105758
  21
 157.75000000000003
  31
@@ -7447,13 +7357,13 @@ LINE
   8
 0
  10
-612.8550614105757
+580.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-615.8550614105758
+583.8550614105757
  21
 157.75000000000003
  31
@@ -7465,13 +7375,13 @@ LINE
   8
 0
  10
-615.8550614105758
+583.8550614105757
  20
 157.75000000000003
  30
 0.0
  11
-615.8550614105758
+583.8550614105757
  21
 160.75000000000003
  31
@@ -7483,13 +7393,13 @@ LINE
   8
 0
  10
-615.8550614105758
+583.8550614105757
  20
 160.75000000000003
  30
 0.0
  11
-612.8550614105757
+580.8550614105758
  21
 160.75000000000003
  31
@@ -7501,13 +7411,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 159.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 158.75000000000003
  31
@@ -7519,13 +7429,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 158.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 158.75000000000003
  31
@@ -7537,13 +7447,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 158.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 159.75000000000003
  31
@@ -7555,13 +7465,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 159.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 159.75000000000003
  31
@@ -7573,13 +7483,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 161.25
  31
@@ -7591,13 +7501,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 161.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 161.25
  31
@@ -7609,13 +7519,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 161.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 162.25000000000003
  31
@@ -7627,13 +7537,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 162.25000000000003
  31
@@ -7645,13 +7555,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 161.25
  31
@@ -7663,13 +7573,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 161.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 161.25
  31
@@ -7681,13 +7591,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 161.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 162.25000000000003
  31
@@ -7699,13 +7609,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 162.25000000000003
  31
@@ -7717,13 +7627,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 163.75
  31
@@ -7735,13 +7645,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 163.75
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 163.75
  31
@@ -7753,13 +7663,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 163.75
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 164.75000000000003
  31
@@ -7771,13 +7681,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 164.75000000000003
  31
@@ -7789,13 +7699,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 163.75
  31
@@ -7807,13 +7717,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 163.75
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 163.75
  31
@@ -7825,13 +7735,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 163.75
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 164.75000000000003
  31
@@ -7843,13 +7753,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 164.75000000000003
  31
@@ -7861,13 +7771,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 166.25
  31
@@ -7879,13 +7789,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 166.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 166.25
  31
@@ -7897,13 +7807,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 166.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 167.25000000000003
  31
@@ -7915,13 +7825,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 167.25000000000003
  31
@@ -7933,13 +7843,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 166.25
  31
@@ -7951,13 +7861,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 166.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 166.25
  31
@@ -7969,13 +7879,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 166.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 167.25000000000003
  31
@@ -7987,13 +7897,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 167.25000000000003
  31
@@ -8005,13 +7915,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 168.75000000000003
  31
@@ -8023,13 +7933,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 168.75000000000003
  31
@@ -8041,13 +7951,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 169.75000000000003
  31
@@ -8059,13 +7969,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 169.75000000000003
  31
@@ -8077,13 +7987,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 168.75000000000003
  31
@@ -8095,13 +8005,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 168.75000000000003
  31
@@ -8113,13 +8023,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 169.75000000000003
  31
@@ -8131,13 +8041,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 169.75000000000003
  31
@@ -8149,13 +8059,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 171.25000000000003
  31
@@ -8167,13 +8077,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 171.25000000000003
  31
@@ -8185,13 +8095,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 172.25000000000003
  31
@@ -8203,13 +8113,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 172.25000000000003
  31
@@ -8221,13 +8131,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 171.25000000000003
  31
@@ -8239,13 +8149,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 171.25000000000003
  31
@@ -8257,13 +8167,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 172.25000000000003
  31
@@ -8275,13 +8185,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 172.25000000000003
  31
@@ -8293,13 +8203,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 173.75000000000003
  31
@@ -8311,13 +8221,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 173.75000000000003
  31
@@ -8329,13 +8239,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 174.75000000000003
  31
@@ -8347,13 +8257,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 174.75000000000003
  31
@@ -8365,13 +8275,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 173.75000000000003
  31
@@ -8383,13 +8293,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 173.75000000000003
  31
@@ -8401,13 +8311,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 174.75000000000003
  31
@@ -8419,13 +8329,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 174.75000000000003
  31
@@ -8437,13 +8347,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 177.25
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 176.25000000000003
  31
@@ -8455,13 +8365,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 176.25000000000003
  31
@@ -8473,13 +8383,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 177.25
  31
@@ -8491,13 +8401,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 177.25
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 177.25
  31
@@ -8509,13 +8419,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 177.25
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 176.25000000000003
  31
@@ -8527,13 +8437,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 176.25000000000003
  31
@@ -8545,13 +8455,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 177.25
  31
@@ -8563,13 +8473,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 177.25
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 177.25
  31
@@ -8581,13 +8491,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 179.75
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 178.75000000000003
  31
@@ -8599,13 +8509,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 178.75000000000003
  31
@@ -8617,13 +8527,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 179.75
  31
@@ -8635,13 +8545,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 179.75
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 179.75
  31
@@ -8653,13 +8563,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 179.75
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 178.75000000000003
  31
@@ -8671,13 +8581,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 178.75000000000003
  31
@@ -8689,13 +8599,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 179.75
  31
@@ -8707,13 +8617,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 179.75
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 179.75
  31
@@ -8725,13 +8635,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 182.25
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 181.25000000000003
  31
@@ -8743,13 +8653,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 181.25000000000003
  31
@@ -8761,13 +8671,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 182.25
  31
@@ -8779,13 +8689,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 182.25
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 182.25
  31
@@ -8797,13 +8707,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 182.25
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 181.25000000000003
  31
@@ -8815,13 +8725,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 181.25000000000003
  31
@@ -8833,13 +8743,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 182.25
  31
@@ -8851,13 +8761,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 182.25
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 182.25
  31
@@ -8869,13 +8779,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 183.75000000000003
  31
@@ -8887,13 +8797,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 183.75000000000003
  31
@@ -8905,13 +8815,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 184.75000000000003
  31
@@ -8923,13 +8833,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 184.75000000000003
  31
@@ -8941,13 +8851,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 183.75000000000003
  31
@@ -8959,13 +8869,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 183.75000000000003
  31
@@ -8977,13 +8887,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 184.75000000000003
  31
@@ -8995,13 +8905,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 184.75000000000003
  31
@@ -9013,13 +8923,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 186.25000000000003
  31
@@ -9031,13 +8941,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 186.25000000000003
  31
@@ -9049,13 +8959,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 187.25000000000003
  31
@@ -9067,13 +8977,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 187.25000000000003
  31
@@ -9085,13 +8995,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 186.25000000000003
  31
@@ -9103,13 +9013,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 186.25000000000003
  31
@@ -9121,13 +9031,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 187.25000000000003
  31
@@ -9139,13 +9049,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 187.25000000000003
  31
@@ -9157,13 +9067,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 188.75
  31
@@ -9175,13 +9085,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 188.75
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 188.75
  31
@@ -9193,13 +9103,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 188.75
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 189.75000000000003
  31
@@ -9211,13 +9121,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 189.75000000000003
  31
@@ -9229,13 +9139,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 188.75
  31
@@ -9247,13 +9157,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 188.75
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 188.75
  31
@@ -9265,13 +9175,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 188.75
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 189.75000000000003
  31
@@ -9283,13 +9193,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 189.75000000000003
  31
@@ -9301,13 +9211,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 191.25
  31
@@ -9319,13 +9229,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 191.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 191.25
  31
@@ -9337,13 +9247,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 191.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 192.25000000000003
  31
@@ -9355,13 +9265,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 192.25000000000003
  31
@@ -9373,13 +9283,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 191.25
  31
@@ -9391,13 +9301,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 191.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 191.25
  31
@@ -9409,13 +9319,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 191.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 192.25000000000003
  31
@@ -9427,13 +9337,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 192.25000000000003
  31
@@ -9445,13 +9355,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 193.75000000000003
  31
@@ -9463,13 +9373,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 193.75000000000003
  31
@@ -9481,13 +9391,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 194.75000000000003
  31
@@ -9499,13 +9409,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 194.75000000000003
  31
@@ -9517,13 +9427,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 193.75000000000003
  31
@@ -9535,13 +9445,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 193.75000000000003
  31
@@ -9553,13 +9463,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 194.75000000000003
  31
@@ -9571,13 +9481,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 194.75000000000003
  31
@@ -9589,13 +9499,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 196.25000000000003
  31
@@ -9607,13 +9517,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 196.25000000000003
  31
@@ -9625,13 +9535,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 196.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 197.25000000000003
  31
@@ -9643,13 +9553,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 197.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 197.25000000000003
  31
@@ -9661,13 +9571,13 @@ LINE
   8
 0
  10
-632.8550614105758
+600.8550614105757
  20
 198.25000000000003
  30
 0.0
  11
-632.8550614105758
+600.8550614105757
  21
 195.25000000000003
  31
@@ -9679,13 +9589,13 @@ LINE
   8
 0
  10
-632.8550614105758
+600.8550614105757
  20
 195.25000000000003
  30
 0.0
  11
-635.8550614105758
+603.8550614105757
  21
 195.25000000000003
  31
@@ -9697,13 +9607,13 @@ LINE
   8
 0
  10
-635.8550614105758
+603.8550614105757
  20
 195.25000000000003
  30
 0.0
  11
-635.8550614105758
+603.8550614105757
  21
 198.25000000000003
  31
@@ -9715,13 +9625,13 @@ LINE
   8
 0
  10
-635.8550614105758
+603.8550614105757
  20
 198.25000000000003
  30
 0.0
  11
-632.8550614105758
+600.8550614105757
  21
 198.25000000000003
  31
@@ -9733,13 +9643,13 @@ LINE
   8
 0
  10
-628.6050614105758
+596.6050614105757
  20
 155.25000000000003
  30
 0.0
  11
-620.1050614105758
+588.1050614105757
  21
 155.25000000000003
  31
@@ -9751,13 +9661,13 @@ LINE
   8
 0
  10
-620.1050614105758
+588.1050614105757
  20
 155.25000000000003
  30
 0.0
  11
-620.1050614105758
+588.1050614105757
  21
 154.75
  31
@@ -9769,13 +9679,13 @@ LINE
   8
 0
  10
-620.1050614105758
+588.1050614105757
  20
 154.75
  30
 0.0
  11
-628.6050614105758
+596.6050614105757
  21
 154.75
  31
@@ -9787,13 +9697,13 @@ LINE
   8
 0
  10
-628.6050614105758
+596.6050614105757
  20
 154.75
  30
 0.0
  11
-628.6050614105758
+596.6050614105757
  21
 155.25000000000003
  31
@@ -9805,13 +9715,13 @@ LINE
   8
 0
  10
-620.1050614105758
+588.1050614105757
  20
 203.00000000000003
  30
 0.0
  11
-628.6050614105758
+596.6050614105757
  21
 203.00000000000003
  31
@@ -9823,13 +9733,13 @@ LINE
   8
 0
  10
-628.6050614105758
+596.6050614105757
  20
 203.00000000000003
  30
 0.0
  11
-628.6050614105758
+596.6050614105757
  21
 203.50000000000003
  31
@@ -9841,13 +9751,13 @@ LINE
   8
 0
  10
-628.6050614105758
+596.6050614105757
  20
 203.50000000000003
  30
 0.0
  11
-620.1050614105758
+588.1050614105757
  21
 203.50000000000003
  31
@@ -9859,13 +9769,13 @@ LINE
   8
 0
  10
-620.1050614105758
+588.1050614105757
  20
 203.50000000000003
  30
 0.0
  11
-620.1050614105758
+588.1050614105757
  21
 203.00000000000003
  31
@@ -9877,51 +9787,15 @@ LINE
   8
 0
  10
-651.3550614105758
- 20
-198.50000000000003
- 30
-0.0
- 11
-651.3550614105758
- 21
-185.50000000000003
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-651.3550614105758
- 20
-185.50000000000003
- 30
-0.0
- 11
-681.3550614105758
- 21
-185.50000000000003
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-681.3550614105758
+609.9093471248615
  20
-185.50000000000003
+204.02
  30
 0.0
  11
-681.3550614105758
+609.9093471248615
  21
-198.50000000000003
+191.02
  31
 0.0
   0
@@ -9931,15 +9805,15 @@ LINE
   8
 0
  10
-681.3550614105758
+609.9093471248615
  20
-198.50000000000003
+191.02
  30
 0.0
  11
-651.3550614105758
+630.48077569629
  21
-198.50000000000003
+191.02
  31
 0.0
   0
@@ -9949,15 +9823,15 @@ LINE
   8
 0
  10
-658.4232432287575
+630.48077569629
  20
-153.00000000000003
+191.02
  30
 0.0
  11
-647.0141523196667
+630.48077569629
  21
-153.00000000000003
+204.02
  31
 0.0
   0
@@ -9967,15 +9841,15 @@ LINE
   8
 0
  10
-647.0141523196667
+630.48077569629
  20
-153.00000000000003
+204.02
  30
 0.0
  11
-647.0141523196667
+609.9093471248615
  21
-152.5
+204.02
  31
 0.0
   0
@@ -9985,49 +9859,13 @@ LINE
   8
 0
  10
-647.0141523196667
- 20
-152.5
- 30
-0.0
- 11
-658.4232432287575
- 21
-152.5
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-658.4232432287575
- 20
-152.5
- 30
-0.0
- 11
-658.4232432287575
- 21
-153.00000000000003
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-685.6959705014849
+628.6050614105758
  20
 153.00000000000003
  30
 0.0
  11
-674.2868795923939
+616.1050614105757
  21
 153.00000000000003
  31
@@ -10039,13 +9877,13 @@ LINE
   8
 0
  10
-674.2868795923939
+616.1050614105757
  20
 153.00000000000003
  30
 0.0
  11
-674.2868795923939
+616.1050614105757
  21
 152.5
  31
@@ -10057,13 +9895,13 @@ LINE
   8
 0
  10
-674.2868795923939
+616.1050614105757
  20
 152.5
  30
 0.0
  11
-685.6959705014849
+628.6050614105758
  21
 152.5
  31
@@ -10075,13 +9913,13 @@ LINE
   8
 0
  10
-685.6959705014849
+628.6050614105758
  20
 152.5
  30
 0.0
  11
-685.6959705014849
+628.6050614105758
  21
 153.00000000000003
  31
@@ -10093,13 +9931,13 @@ LINE
   8
 0
  10
-688.6050614105757
+632.6050614105758
  20
 169.93181818181822
  30
 0.0
  11
-688.6050614105757
+632.6050614105758
  21
 158.3409090909091
  31
@@ -10111,13 +9949,13 @@ LINE
   8
 0
  10
-688.6050614105757
+632.6050614105758
  20
 158.3409090909091
  30
 0.0
  11
-689.1050614105757
+633.1050614105757
  21
 158.3409090909091
  31
@@ -10129,13 +9967,13 @@ LINE
   8
 0
  10
-689.1050614105757
+633.1050614105757
  20
 158.3409090909091
  30
 0.0
  11
-689.1050614105757
+633.1050614105757
  21
 169.93181818181822
  31
@@ -10147,13 +9985,13 @@ LINE
   8
 0
  10
-689.1050614105757
+633.1050614105757
  20
 169.93181818181822
  30
 0.0
  11
-688.6050614105757
+632.6050614105758
  21
 169.93181818181822
  31
@@ -10165,13 +10003,13 @@ LINE
   8
 0
  10
-688.6050614105757
+632.6050614105758
  20
 197.65909090909093
  30
 0.0
  11
-688.6050614105757
+632.6050614105758
  21
 186.06818181818184
  31
@@ -10183,13 +10021,13 @@ LINE
   8
 0
  10
-688.6050614105757
+632.6050614105758
  20
 186.06818181818184
  30
 0.0
  11
-689.1050614105757
+633.1050614105757
  21
 186.06818181818184
  31
@@ -10201,13 +10039,13 @@ LINE
   8
 0
  10
-689.1050614105757
+633.1050614105757
  20
 186.06818181818184
  30
 0.0
  11
-689.1050614105757
+633.1050614105757
  21
 197.65909090909093
  31
@@ -10219,13 +10057,13 @@ LINE
   8
 0
  10
-689.1050614105757
+633.1050614105757
  20
 197.65909090909093
  30
 0.0
  11
-688.6050614105757
+632.6050614105758
  21
 197.65909090909093
  31
@@ -10237,13 +10075,13 @@ LINE
   8
 0
  10
-528.8550614105758
+520.8550614105757
  20
 160.75000000000003
  30
 0.0
  11
-528.8550614105758
+520.8550614105757
  21
 157.75000000000003
  31
@@ -10255,13 +10093,13 @@ LINE
   8
 0
  10
-528.8550614105758
+520.8550614105757
  20
 157.75000000000003
  30
 0.0
  11
-531.8550614105758
+523.8550614105758
  21
 157.75000000000003
  31
@@ -10273,13 +10111,13 @@ LINE
   8
 0
  10
-531.8550614105758
+523.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-531.8550614105758
+523.8550614105758
  21
 160.75000000000003
  31
@@ -10291,13 +10129,13 @@ LINE
   8
 0
  10
-531.8550614105758
+523.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-528.8550614105758
+520.8550614105757
  21
 160.75000000000003
  31
@@ -10309,13 +10147,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 158.75000000000003
  31
@@ -10327,13 +10165,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 158.75000000000003
  31
@@ -10345,13 +10183,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 159.75000000000003
  31
@@ -10363,13 +10201,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 159.75000000000003
  31
@@ -10381,13 +10219,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 161.25
  31
@@ -10399,13 +10237,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 161.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 161.25
  31
@@ -10417,13 +10255,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 161.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 162.25000000000003
  31
@@ -10435,13 +10273,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 162.25000000000003
  31
@@ -10453,13 +10291,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 161.25
  31
@@ -10471,13 +10309,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 161.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 161.25
  31
@@ -10489,13 +10327,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 161.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 162.25000000000003
  31
@@ -10507,13 +10345,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 162.25000000000003
  31
@@ -10525,13 +10363,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 163.75
  31
@@ -10543,13 +10381,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 163.75
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 163.75
  31
@@ -10561,13 +10399,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 163.75
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 164.75000000000003
  31
@@ -10579,13 +10417,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 164.75000000000003
  31
@@ -10597,13 +10435,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 163.75
  31
@@ -10615,13 +10453,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 163.75
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 163.75
  31
@@ -10633,13 +10471,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 163.75
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 164.75000000000003
  31
@@ -10651,13 +10489,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 164.75000000000003
  31
@@ -10669,13 +10507,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 166.25
  31
@@ -10687,13 +10525,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 166.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 166.25
  31
@@ -10705,13 +10543,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 166.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 167.25000000000003
  31
@@ -10723,13 +10561,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 167.25000000000003
  31
@@ -10741,13 +10579,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 166.25
  31
@@ -10759,13 +10597,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 166.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 166.25
  31
@@ -10777,13 +10615,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 166.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 167.25000000000003
  31
@@ -10795,13 +10633,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 167.25000000000003
  31
@@ -10813,13 +10651,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 168.75000000000003
  31
@@ -10831,13 +10669,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 168.75000000000003
  31
@@ -10849,13 +10687,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 169.75000000000003
  31
@@ -10867,13 +10705,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 169.75000000000003
  31
@@ -10885,13 +10723,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 168.75000000000003
  31
@@ -10903,13 +10741,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 168.75000000000003
  31
@@ -10921,13 +10759,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 169.75000000000003
  31
@@ -10939,13 +10777,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 169.75000000000003
  31
@@ -10957,13 +10795,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 171.25000000000003
  31
@@ -10975,13 +10813,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 171.25000000000003
  31
@@ -10993,13 +10831,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 172.25000000000003
  31
@@ -11011,13 +10849,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 172.25000000000003
  31
@@ -11029,13 +10867,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 171.25000000000003
  31
@@ -11047,13 +10885,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 171.25000000000003
  31
@@ -11065,13 +10903,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 172.25000000000003
  31
@@ -11083,13 +10921,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 172.25000000000003
  31
@@ -11101,13 +10939,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 173.75000000000003
  31
@@ -11119,13 +10957,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 173.75000000000003
  31
@@ -11137,13 +10975,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 174.75000000000003
  31
@@ -11155,13 +10993,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 174.75000000000003
  31
@@ -11173,13 +11011,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 173.75000000000003
  31
@@ -11191,13 +11029,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 173.75000000000003
  31
@@ -11209,13 +11047,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 174.75000000000003
  31
@@ -11227,13 +11065,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 174.75000000000003
  31
@@ -11245,13 +11083,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 177.25
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 176.25000000000003
  31
@@ -11263,13 +11101,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 176.25000000000003
  31
@@ -11281,13 +11119,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 177.25
  31
@@ -11299,13 +11137,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 177.25
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 177.25
  31
@@ -11317,13 +11155,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 177.25
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 176.25000000000003
  31
@@ -11335,13 +11173,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 176.25000000000003
  31
@@ -11353,13 +11191,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 177.25
  31
@@ -11371,13 +11209,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 177.25
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 177.25
  31
@@ -11389,13 +11227,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 179.75
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 178.75000000000003
  31
@@ -11407,13 +11245,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 178.75000000000003
  31
@@ -11425,13 +11263,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 179.75
  31
@@ -11443,13 +11281,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 179.75
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 179.75
  31
@@ -11461,13 +11299,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 179.75
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 178.75000000000003
  31
@@ -11479,13 +11317,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 178.75000000000003
  31
@@ -11497,13 +11335,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 179.75
  31
@@ -11515,13 +11353,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 179.75
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 179.75
  31
@@ -11533,13 +11371,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 182.25
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 181.25000000000003
  31
@@ -11551,13 +11389,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 181.25000000000003
  31
@@ -11569,13 +11407,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 182.25
  31
@@ -11587,13 +11425,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 182.25
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 182.25
  31
@@ -11605,13 +11443,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 182.25
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 181.25000000000003
  31
@@ -11623,13 +11461,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 181.25000000000003
  31
@@ -11641,13 +11479,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 182.25
  31
@@ -11659,13 +11497,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 182.25
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 182.25
  31
@@ -11677,13 +11515,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 183.75000000000003
  31
@@ -11695,13 +11533,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 183.75000000000003
  31
@@ -11713,13 +11551,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 184.75000000000003
  31
@@ -11731,13 +11569,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 184.75000000000003
  31
@@ -11749,13 +11587,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 183.75000000000003
  31
@@ -11767,13 +11605,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 183.75000000000003
  31
@@ -11785,13 +11623,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 184.75000000000003
  31
@@ -11803,13 +11641,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 184.75000000000003
  31
@@ -11821,13 +11659,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 186.25000000000003
  31
@@ -11839,13 +11677,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 186.25000000000003
  31
@@ -11857,13 +11695,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 187.25000000000003
  31
@@ -11875,13 +11713,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 187.25000000000003
  31
@@ -11893,13 +11731,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 186.25000000000003
  31
@@ -11911,13 +11749,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 186.25000000000003
  31
@@ -11929,13 +11767,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 187.25000000000003
  31
@@ -11947,13 +11785,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 187.25000000000003
  31
@@ -11965,13 +11803,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 188.75
  31
@@ -11983,13 +11821,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 188.75
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 188.75
  31
@@ -12001,13 +11839,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 188.75
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 189.75000000000003
  31
@@ -12019,13 +11857,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 189.75000000000003
  31
@@ -12037,13 +11875,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 188.75
  31
@@ -12055,13 +11893,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 188.75
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 188.75
  31
@@ -12073,13 +11911,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 188.75
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 189.75000000000003
  31
@@ -12091,13 +11929,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 189.75000000000003
  31
@@ -12109,13 +11947,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 191.25
  31
@@ -12127,13 +11965,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 191.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 191.25
  31
@@ -12145,13 +11983,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 191.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 192.25000000000003
  31
@@ -12163,13 +12001,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 192.25000000000003
  31
@@ -12181,13 +12019,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 191.25
  31
@@ -12199,13 +12037,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 191.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 191.25
  31
@@ -12217,13 +12055,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 191.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 192.25000000000003
  31
@@ -12235,13 +12073,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 192.25000000000003
  31
@@ -12253,13 +12091,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 193.75000000000003
  31
@@ -12271,13 +12109,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 193.75000000000003
  31
@@ -12289,13 +12127,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 194.75000000000003
  31
@@ -12307,13 +12145,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 194.75000000000003
  31
@@ -12325,13 +12163,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 193.75000000000003
  31
@@ -12343,13 +12181,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 193.75000000000003
  31
@@ -12361,13 +12199,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 194.75000000000003
  31
@@ -12379,13 +12217,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 194.75000000000003
  31
@@ -12397,13 +12235,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 197.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 196.25000000000003
  31
@@ -12415,13 +12253,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 196.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 196.25000000000003
  31
@@ -12433,13 +12271,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 197.25000000000003
  31
@@ -12451,13 +12289,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 197.25000000000003
  31
@@ -12469,13 +12307,13 @@ LINE
   8
 0
  10
-548.8550614105757
+540.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-548.8550614105757
+540.8550614105758
  21
 195.25000000000003
  31
@@ -12487,13 +12325,13 @@ LINE
   8
 0
  10
-548.8550614105757
+540.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-551.8550614105758
+543.8550614105758
  21
 195.25000000000003
  31
@@ -12505,13 +12343,13 @@ LINE
   8
 0
  10
-551.8550614105758
+543.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-551.8550614105758
+543.8550614105758
  21
 198.25000000000003
  31
@@ -12523,13 +12361,13 @@ LINE
   8
 0
  10
-551.8550614105758
+543.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-548.8550614105757
+540.8550614105758
  21
 198.25000000000003
  31
@@ -12541,13 +12379,13 @@ LINE
   8
 0
  10
-544.6050614105757
+536.6050614105758
  20
 155.25000000000003
  30
 0.0
  11
-536.1050614105757
+528.1050614105758
  21
 155.25000000000003
  31
@@ -12559,13 +12397,13 @@ LINE
   8
 0
  10
-536.1050614105757
+528.1050614105758
  20
 155.25000000000003
  30
 0.0
  11
-536.1050614105757
+528.1050614105758
  21
 154.75
  31
@@ -12577,13 +12415,13 @@ LINE
   8
 0
  10
-536.1050614105757
+528.1050614105758
  20
 154.75
  30
 0.0
  11
-544.6050614105757
+536.6050614105758
  21
 154.75
  31
@@ -12595,13 +12433,13 @@ LINE
   8
 0
  10
-544.6050614105757
+536.6050614105758
  20
 154.75
  30
 0.0
  11
-544.6050614105757
+536.6050614105758
  21
 155.25000000000003
  31
@@ -12613,13 +12451,13 @@ LINE
   8
 0
  10
-536.1050614105757
+528.1050614105758
  20
 203.00000000000003
  30
 0.0
  11
-544.6050614105757
+536.6050614105758
  21
 203.00000000000003
  31
@@ -12631,13 +12469,13 @@ LINE
   8
 0
  10
-544.6050614105757
+536.6050614105758
  20
 203.00000000000003
  30
 0.0
  11
-544.6050614105757
+536.6050614105758
  21
 203.50000000000003
  31
@@ -12649,13 +12487,13 @@ LINE
   8
 0
  10
-544.6050614105757
+536.6050614105758
  20
 203.50000000000003
  30
 0.0
  11
-536.1050614105757
+528.1050614105758
  21
 203.50000000000003
  31
@@ -12667,13 +12505,13 @@ LINE
   8
 0
  10
-536.1050614105757
+528.1050614105758
  20
 203.50000000000003
  30
 0.0
  11
-536.1050614105757
+528.1050614105758
  21
 203.00000000000003
  31
@@ -12685,13 +12523,13 @@ LINE
   8
 0
  10
-520.8550614105757
+512.8550614105757
  20
 158.59090909090912
  30
 0.0
  11
-525.8550614105757
+517.8550614105757
  21
 158.59090909090912
  31
@@ -12703,13 +12541,13 @@ LINE
   8
 0
  10
-525.8550614105757
+517.8550614105757
  20
 158.59090909090912
  30
 0.0
  11
-525.8550614105757
+517.8550614105757
  21
 169.68181818181822
  31
@@ -12721,13 +12559,13 @@ LINE
   8
 0
  10
-525.8550614105757
+517.8550614105757
  20
 169.68181818181822
  30
 0.0
  11
-520.8550614105757
+512.8550614105757
  21
 169.68181818181822
  31
@@ -12739,13 +12577,13 @@ LINE
   8
 0
  10
-520.8550614105757
+512.8550614105757
  20
 186.31818181818184
  30
 0.0
  11
-525.8550614105757
+517.8550614105757
  21
 186.31818181818184
  31
@@ -12757,13 +12595,13 @@ LINE
   8
 0
  10
-525.8550614105757
+517.8550614105757
  20
 186.31818181818184
  30
 0.0
  11
-525.8550614105757
+517.8550614105757
  21
 197.40909090909093
  31
@@ -12775,13 +12613,13 @@ LINE
   8
 0
  10
-525.8550614105757
+517.8550614105757
  20
 197.40909090909093
  30
 0.0
  11
-520.8550614105757
+512.8550614105757
  21
 197.40909090909093
  31
@@ -12793,13 +12631,13 @@ LINE
   8
 0
  10
-546.1050614105758
+514.1050614105758
  20
 131.50000000000003
  30
 0.0
  11
-549.6050614105758
+517.6050614105757
  21
 131.50000000000003
  31
@@ -12811,13 +12649,13 @@ LINE
   8
 0
  10
-549.6050614105758
+517.6050614105757
  20
 131.50000000000003
  30
 0.0
  11
-549.6050614105758
+517.6050614105757
  21
 139.50000000000003
  31
@@ -12829,13 +12667,13 @@ LINE
   8
 0
  10
-549.6050614105758
+517.6050614105757
  20
 139.50000000000003
  30
 0.0
  11
-546.1050614105758
+514.1050614105758
  21
 139.50000000000003
  31
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
index 9a4bfc8d9e8ff096c8c0b351c040b168b52bb98f..f2d7596c24de6aa4d68130464af948d5086560dc 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
+++ b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
@@ -1,659 +1,650 @@
 <?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="480.500000mm" version="1.1" viewBox="0.000000 0.000000 696.355061 480.500000" width="696.355061mm">
+<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="480.500000mm" version="1.1" viewBox="0.000000 0.000000 640.355061 480.500000" width="640.355061mm">
   <defs/>
-  <line stroke="#000000" x1="160.30855606972293" x2="98.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="160.30855606972293" y1="166.0" y2="166.0"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="98.65427803486146" y1="166.0" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="170.30855606972293" x2="160.30855606972293" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="170.30855606972293" x2="170.30855606972293" y1="166.0" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="160.30855606972293" x2="170.30855606972293" y1="166.0" y2="166.0"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="98.65427803486146" y1="166.0" y2="166.0"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="71.65427803486145" x2="71.65427803486145" y1="105.00000000000001" y2="166.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="10.000000000000002" x2="71.65427803486145" y1="166.0" y2="166.0"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="10.000000000000002" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="152.30855606972293" x2="94.65427803486148" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="94.65427803486148" x2="152.30855606972293" y1="166.0" y2="166.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.65427803486148" x2="94.65427803486148" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="162.30855606972293" x2="152.30855606972293" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="162.30855606972293" x2="162.30855606972293" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="152.30855606972293" x2="162.30855606972293" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="67.65427803486148" x2="94.65427803486148" y1="166.0" y2="166.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="67.65427803486148" x2="67.65427803486148" y1="105.00000000000001" y2="166.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.65427803486148" x2="67.65427803486148" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="10.000000000000016" x2="67.65427803486148" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="67.65427803486148" x2="10.000000000000016" y1="105.00000000000001" y2="105.00000000000001"/>
   <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="166.0" y2="166.0"/>
   <line stroke="#000000" x1="0.0" x2="0.0" y1="105.00000000000001" y2="166.0"/>
   <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="105.00000000000001" y2="88.00000000000001"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="88.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="88.00000000000001" y2="88.00000000000001"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="88.00000000000001" y2="27.000000000000004"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="27.000000000000004" y2="88.00000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="27.000000000000004" y2="27.000000000000004"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="27.000000000000004" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="10.000000000000002" y2="27.000000000000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="71.65427803486145" x2="98.65427803486146" y1="10.000000000000002" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="0.0" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="71.65427803486145" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="10.000000000000002" y2="0.0"/>
-  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="154.90909090909093" y2="154.90909090909093"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="154.90909090909093" y2="143.8181818181818"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="143.8181818181818" y2="143.8181818181818"/>
-  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="127.1818181818182" y2="127.1818181818182"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="127.1818181818182" y2="116.09090909090911"/>
-  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="116.09090909090911" y2="116.09090909090911"/>
-  <line stroke="#888888" x1="94.15427803486146" x2="94.15427803486146" y1="102.50000000000001" y2="108.50000000000001"/>
-  <line stroke="#888888" x1="94.15427803486146" x2="76.15427803486145" y1="108.50000000000001" y2="108.50000000000001"/>
-  <line stroke="#888888" x1="76.15427803486145" x2="76.15427803486145" y1="108.50000000000001" y2="102.50000000000001"/>
-  <line stroke="#888888" x1="76.15427803486145" x2="94.15427803486146" y1="102.50000000000001" y2="102.50000000000001"/>
-  <line stroke="#888888" x1="80.40427803486146" x2="89.90427803486145" y1="158.25000000000003" y2="158.25000000000003"/>
-  <line stroke="#888888" x1="89.90427803486145" x2="89.90427803486145" y1="158.25000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="89.90427803486145" x2="80.40427803486146" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="80.40427803486146" x2="80.40427803486146" y1="158.75000000000003" y2="158.25000000000003"/>
+  <line stroke="#000000" x1="94.65427803486148" x2="94.65427803486148" y1="105.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="67.65427803486148" x2="67.65427803486148" y1="88.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.65427803486148" x2="67.65427803486148" y1="88.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="94.65427803486148" x2="94.65427803486148" y1="88.00000000000001" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="67.65427803486148" x2="67.65427803486148" y1="27.000000000000004" y2="88.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.65427803486148" x2="67.65427803486148" y1="27.000000000000004" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="94.65427803486148" x2="94.65427803486148" y1="27.000000000000004" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="67.65427803486148" x2="67.65427803486148" y1="10.000000000000002" y2="27.000000000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="67.65427803486148" x2="94.65427803486148" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="67.65427803486148" x2="67.65427803486148" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="94.65427803486148" x2="67.65427803486148" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="94.65427803486148" x2="94.65427803486148" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="159.80855606972293" x2="154.80855606972293" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="154.80855606972293" x2="154.80855606972293" y1="154.90909090909093" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="154.80855606972293" x2="159.8085560697229" y1="143.8181818181818" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="159.80855606972293" x2="154.80855606972293" y1="127.1818181818182" y2="127.1818181818182"/>
+  <line stroke="#888888" x1="154.80855606972293" x2="154.80855606972293" y1="127.1818181818182" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="154.80855606972293" x2="159.8085560697229" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="90.15427803486148" x2="90.15427803486148" y1="102.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="90.15427803486148" x2="72.15427803486148" y1="108.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="72.15427803486148" x2="72.15427803486148" y1="108.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="72.15427803486148" x2="90.15427803486148" y1="102.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="76.40427803486146" x2="85.90427803486148" y1="158.25000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="85.90427803486148" x2="85.90427803486148" y1="158.25000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="85.90427803486148" x2="76.40427803486146" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="76.40427803486146" x2="76.40427803486146" y1="158.75000000000003" y2="158.25000000000003"/>
   <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="116.09090909090911" y2="116.09090909090911"/>
   <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="116.09090909090911" y2="127.18181818181822"/>
   <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="127.18181818181822" y2="127.18181818181822"/>
-  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="143.81818181818184" y2="143.81818181818184"/>
-  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="143.81818181818184" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="143.8181818181818" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="143.8181818181818" y2="154.90909090909093"/>
   <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="154.90909090909093" y2="154.90909090909093"/>
-  <line stroke="#888888" x1="89.65427803486146" x2="89.65427803486146" y1="2.5000000000000004" y2="7.500000000000001"/>
-  <line stroke="#888888" x1="89.65427803486146" x2="80.65427803486146" y1="7.500000000000001" y2="7.500000000000001"/>
-  <line stroke="#888888" x1="80.65427803486146" x2="80.65427803486146" y1="7.500000000000001" y2="2.5000000000000004"/>
-  <line stroke="#000000" x1="327.33180874014937" x2="266.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.33180874014937" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="361.3318087401493" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="266.3318087401493" x2="266.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="327.33180874014937" x2="253.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="361.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="253.33180874014934" x2="327.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="253.33180874014934" x2="253.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="135.50000000000003" y2="101.50000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.33180874014937" x2="327.33180874014937" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="327.33180874014937" x2="327.33180874014937" y1="65.5" y2="101.50000000000001"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.33180874014937" x2="351.33180874014937" y1="65.5" y2="65.5"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="101.50000000000001" y2="65.5"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="65.5" y2="20.5"/>
-  <line stroke="#000000" x1="327.33180874014937" x2="327.33180874014937" y1="20.5" y2="65.5"/>
-  <line stroke="#000000" x1="327.33180874014937" x2="327.33180874014937" y1="15.500000000000004" y2="20.5"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="327.33180874014937" y1="15.500000000000004" y2="15.500000000000004"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="20.5" y2="15.500000000000004"/>
-  <line stroke="#000000" x1="327.33180874014937" x2="307.3318087401493" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="307.3318087401493" x2="327.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="307.3318087401493" x2="307.3318087401493" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="307.3318087401493" x2="283.3318087401493" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="283.3318087401493" x2="307.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="283.3318087401493" x2="283.3318087401493" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="283.3318087401493" x2="263.33180874014937" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="263.33180874014937" x2="283.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="263.33180874014937" x2="263.33180874014937" y1="135.50000000000003" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="253.33180874014934" x2="263.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="253.33180874014934" x2="253.33180874014934" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="263.33180874014937" x2="253.33180874014934" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="361.3318087401493" x2="422.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="99.36137800081471" y2="135.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="361.3318087401493" y1="75.36137800081471" y2="75.36137800081471"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="422.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="39.22275600162939" y2="75.36137800081472"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="361.3318087401493" y1="39.22275600162939" y2="39.22275600162939"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="75.36137800081472" y2="39.22275600162939"/>
-  <line stroke="#000000" x1="432.33180874014937" x2="422.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
-  <line stroke="#000000" x1="432.33180874014937" x2="432.33180874014937" y1="99.36137800081471" y2="75.36137800081471"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="432.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="361.3318087401493" y1="99.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="266.3318087401493" y1="205.50000000000003" y2="205.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="422.33180874014937" y1="205.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="474.84617955831095" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="474.84617955831095" y1="205.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="117.99520972727949" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="474.84617955831095" x2="422.33180874014937" y1="117.99520972727949" y2="117.99520972727949"/>
-  <line stroke="#000000" x1="474.84617955831095" x2="474.84617955831095" y1="135.50000000000003" y2="117.99520972727949"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="489.5369564140486" y1="205.50000000000003" y2="185.91765779766357"/>
-  <line stroke="#000000" x1="489.5369564140486" x2="474.84617955831095" y1="185.91765779766357" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="504.22773326978614" x2="489.5369564140486" y1="236.33531559532716" y2="185.91765779766357"/>
-  <line stroke="#000000" x1="508.3550614105757" x2="504.22773326978614" y1="250.50000000000003" y2="236.33531559532716"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="508.3550614105757" x2="422.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="422.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.3318087401494" x2="422.33180874014937" y1="295.5" y2="250.50000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="508.35506141057573" x2="422.3318087401494" y1="250.50000000000003" y2="295.50000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="489.5369564140486" x2="422.33180874014937" y1="315.08234220233646" y2="295.50000000000006"/>
-  <line stroke="#000000" x1="504.22773326978614" x2="508.3550614105757" y1="264.6646844046729" y2="250.50000000000003"/>
-  <line stroke="#000000" x1="489.5369564140486" x2="504.22773326978614" y1="315.08234220233646" y2="264.6646844046729"/>
-  <line stroke="#000000" x1="474.84617955831106" x2="489.5369564140486" y1="365.50000000000006" y2="315.0823422023364"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="474.84617955831106" x2="422.3318087401494" y1="365.50000000000006" y2="295.50000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.3318087401495" x2="422.33180874014937" y1="365.5000000000001" y2="295.5"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="474.84617955831106" x2="422.3318087401495" y1="365.50000000000006" y2="365.5000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.3318087401494" x2="266.3318087401493" y1="295.50000000000006" y2="295.50000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.3318087401495" x2="361.3318087401494" y1="365.5000000000001" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="351.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="351.3318087401494" x2="327.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="266.33180874014937" x2="327.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="365.5000000000003" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
-  <line stroke="#000000" x1="351.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="253.33180874014937" x2="327.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="253.33180874014937" x2="253.33180874014937" y1="365.5000000000003" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="327.3318087401494" x2="253.33180874014937" y1="365.50000000000017" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="361.3318087401494" x2="351.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="375.5000000000001" y2="365.5000000000001"/>
-  <line stroke="#000000" x1="361.3318087401494" x2="422.3318087401495" y1="375.50000000000017" y2="375.5000000000001"/>
-  <line stroke="#000000" x1="361.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="375.50000000000017"/>
-  <line stroke="#000000" x1="351.3318087401494" x2="351.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.3318087401494" x2="327.3318087401495" y1="365.50000000000017" y2="399.5000000000001"/>
-  <line stroke="#000000" x1="351.3318087401495" x2="351.3318087401494" y1="435.50000000000017" y2="399.5000000000001"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="351.3318087401495" x2="327.3318087401495" y1="435.50000000000017" y2="435.50000000000017"/>
-  <line stroke="#000000" x1="327.3318087401495" x2="327.3318087401495" y1="399.5000000000001" y2="435.50000000000017"/>
-  <line stroke="#000000" x1="327.3318087401495" x2="327.33180874014954" y1="435.50000000000017" y2="480.50000000000017"/>
-  <line stroke="#000000" x1="351.3318087401495" x2="351.3318087401494" y1="480.50000000000017" y2="435.50000000000017"/>
-  <line stroke="#000000" x1="327.33180874014954" x2="351.3318087401495" y1="480.50000000000017" y2="480.50000000000017"/>
-  <line stroke="#000000" x1="327.3318087401494" x2="307.33180874014937" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="307.3318087401495" x2="327.3318087401495" y1="399.5000000000001" y2="399.5000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="307.33180874014937" x2="307.3318087401495" y1="365.50000000000017" y2="399.5000000000001"/>
-  <line stroke="#000000" x1="307.33180874014937" x2="283.33180874014937" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="283.3318087401494" x2="307.3318087401495" y1="399.5000000000001" y2="399.5000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="283.33180874014937" x2="283.3318087401494" y1="365.50000000000017" y2="399.5000000000001"/>
-  <line stroke="#000000" x1="283.33180874014937" x2="263.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="263.3318087401494" x2="283.3318087401494" y1="399.5000000000001" y2="399.5000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="263.3318087401494" x2="263.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
-  <line stroke="#000000" x1="253.33180874014943" x2="263.3318087401494" y1="399.5000000000001" y2="399.5000000000001"/>
-  <line stroke="#000000" x1="253.3318087401494" x2="253.33180874014943" y1="365.50000000000017" y2="399.5000000000001"/>
-  <line stroke="#000000" x1="263.3318087401494" x2="253.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401493" x2="266.33180874014937" y1="295.50000000000017" y2="365.5000000000002"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.33180874014937" x2="213.81743792198782" y1="365.5000000000003" y2="365.5000000000003"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401493" x2="213.81743792198782" y1="295.5000000000002" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="383.00479027272075" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="213.81743792198782" x2="266.33180874014937" y1="383.00479027272087" y2="383.00479027272075"/>
-  <line stroke="#000000" x1="213.81743792198782" x2="213.81743792198782" y1="365.5000000000003" y2="383.00479027272087"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401493" x2="199.12666106625016" y1="295.50000000000017" y2="315.08234220233675"/>
-  <line stroke="#000000" x1="199.12666106625016" x2="213.81743792198782" y1="315.08234220233675" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="184.43588421051248" x2="199.12666106625016" y1="264.6646844046731" y2="315.08234220233675"/>
-  <line stroke="#000000" x1="180.30855606972295" x2="184.43588421051248" y1="250.50000000000028" y2="264.6646844046731"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="180.30855606972295" x2="266.3318087401493" y1="250.50000000000028" y2="295.50000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401493" x2="266.3318087401493" y1="250.50000000000017" y2="295.50000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.33180874014926" x2="266.3318087401493" y1="205.50000000000017" y2="250.5000000000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="180.3085560697229" x2="266.33180874014926" y1="250.5000000000003" y2="205.50000000000014"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="199.12666106624997" x2="266.33180874014926" y1="185.91765779766385" y2="205.50000000000014"/>
-  <line stroke="#000000" x1="184.43588421051243" x2="180.3085560697229" y1="236.33531559532744" y2="250.5000000000003"/>
-  <line stroke="#000000" x1="199.12666106624997" x2="184.43588421051243" y1="185.91765779766385" y2="236.33531559532744"/>
-  <line stroke="#000000" x1="213.81743792198745" x2="199.12666106624997" y1="135.50000000000023" y2="185.91765779766385"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="213.81743792198745" x2="266.3318087401492" y1="135.50000000000023" y2="205.50000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401491" x2="266.33180874014926" y1="135.5000000000001" y2="205.50000000000017"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="213.81743792198748" x2="266.3318087401491" y1="135.50000000000023" y2="135.5000000000001"/>
-  <line stroke="#000000" x1="213.81743792198742" x2="213.81743792198748" y1="117.9952097272797" y2="135.50000000000023"/>
-  <line stroke="#000000" x1="266.3318087401491" x2="213.81743792198742" y1="117.9952097272796" y2="117.9952097272797"/>
-  <line stroke="#000000" x1="266.3318087401491" x2="266.3318087401491" y1="135.5000000000001" y2="117.9952097272796"/>
-  <line stroke="#000000" x1="474.8461795583111" x2="474.84617955831106" y1="383.0047902727206" y2="365.50000000000006"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="474.8461795583111" y1="383.00479027272064" y2="383.0047902727206"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="383.00479027272064"/>
-  <line stroke="#888888" x1="288.76362692196756" x2="277.1727178310585" y1="143.25" y2="143.25"/>
-  <line stroke="#888888" x1="277.1727178310585" x2="277.1727178310585" y1="143.25" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="277.1727178310585" x2="288.76362692196756" y1="142.75000000000003" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="288.76362692196756" x2="288.76362692196756" y1="142.75000000000003" y2="143.25"/>
-  <line stroke="#888888" x1="316.49089964924025" x2="304.8999905583311" y1="143.25" y2="143.25"/>
-  <line stroke="#888888" x1="304.8999905583311" x2="304.8999905583311" y1="143.25" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="304.8999905583311" x2="316.49089964924025" y1="142.75000000000003" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="316.49089964924025" x2="316.49089964924025" y1="142.75000000000003" y2="143.25"/>
-  <line stroke="#888888" x1="343.5818087401493" x2="343.5818087401493" y1="124.41666666666669" y2="112.58333333333334"/>
-  <line stroke="#888888" x1="343.5818087401493" x2="344.08180874014937" y1="112.58333333333334" y2="112.58333333333334"/>
-  <line stroke="#888888" x1="344.08180874014937" x2="344.08180874014937" y1="112.58333333333334" y2="124.41666666666669"/>
-  <line stroke="#888888" x1="344.08180874014937" x2="343.5818087401493" y1="124.41666666666669" y2="124.41666666666669"/>
-  <line stroke="#888888" x1="343.3318087401493" x2="345.83180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
-  <line stroke="#888888" x1="345.83180874014937" x2="343.3318087401493" y1="16.750000000000004" y2="19.250000000000004"/>
-  <line stroke="#888888" x1="343.3318087401493" x2="335.33180874014937" y1="19.250000000000004" y2="19.250000000000004"/>
-  <line stroke="#888888" x1="335.33180874014937" x2="332.83180874014937" y1="19.250000000000004" y2="16.750000000000004"/>
-  <line stroke="#888888" x1="332.83180874014937" x2="335.33180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
-  <line stroke="#888888" x1="308.33180874014937" x2="312.33180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="312.33180874014937" x2="312.33180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="312.33180874014937" x2="308.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="308.33180874014937" x2="308.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="320.3318087401493" x2="324.33180874014937" y1="114.00000000000001" y2="114.00000000000001"/>
-  <line stroke="#888888" x1="324.33180874014937" x2="324.33180874014937" y1="114.00000000000001" y2="123.00000000000001"/>
-  <line stroke="#888888" x1="324.33180874014937" x2="320.3318087401493" y1="123.00000000000001" y2="123.00000000000001"/>
-  <line stroke="#888888" x1="320.3318087401493" x2="320.3318087401493" y1="123.00000000000001" y2="114.00000000000001"/>
-  <line stroke="#888888" x1="283.8318087401493" x2="306.8318087401493" y1="112.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="306.8318087401493" x2="306.8318087401493" y1="112.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="306.8318087401493" x2="283.8318087401493" y1="124.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="283.8318087401493" x2="283.8318087401493" y1="124.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="278.33180874014937" x2="282.33180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="282.33180874014937" x2="282.33180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="282.33180874014937" x2="278.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="278.33180874014937" x2="278.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="255.83180874014934" x2="260.83180874014937" y1="112.83333333333336" y2="112.83333333333336"/>
-  <line stroke="#888888" x1="260.83180874014937" x2="260.83180874014937" y1="112.83333333333336" y2="124.16666666666669"/>
-  <line stroke="#888888" x1="260.83180874014937" x2="255.83180874014934" y1="124.16666666666669" y2="124.16666666666669"/>
-  <line stroke="#888888" x1="379.3318087401493" x2="390.33180874014937" y1="80.86137800081471" y2="80.86137800081471"/>
-  <line stroke="#888888" x1="390.33180874014937" x2="390.33180874014937" y1="80.86137800081471" y2="93.86137800081471"/>
-  <line stroke="#888888" x1="390.33180874014937" x2="379.3318087401493" y1="93.86137800081471" y2="93.86137800081471"/>
-  <line stroke="#888888" x1="379.3318087401493" x2="379.3318087401493" y1="93.86137800081471" y2="80.86137800081471"/>
-  <line stroke="#888888" x1="410.83180874014937" x2="416.83180874014937" y1="82.36137800081471" y2="82.36137800081471"/>
-  <line stroke="#888888" x1="416.83180874014937" x2="416.83180874014937" y1="82.36137800081471" y2="92.36137800081471"/>
-  <line stroke="#888888" x1="416.83180874014937" x2="410.83180874014937" y1="92.36137800081471" y2="92.36137800081471"/>
-  <line stroke="#888888" x1="410.83180874014937" x2="410.83180874014937" y1="92.36137800081471" y2="82.36137800081471"/>
-  <line stroke="#888888" x1="383.76362692196756" x2="372.1727178310585" y1="46.9727560016294" y2="46.9727560016294"/>
-  <line stroke="#888888" x1="372.1727178310585" x2="372.1727178310585" y1="46.9727560016294" y2="46.4727560016294"/>
-  <line stroke="#888888" x1="372.1727178310585" x2="383.76362692196756" y1="46.4727560016294" y2="46.4727560016294"/>
-  <line stroke="#888888" x1="383.76362692196756" x2="383.76362692196756" y1="46.4727560016294" y2="46.9727560016294"/>
-  <line stroke="#888888" x1="411.49089964924025" x2="399.8999905583312" y1="46.9727560016294" y2="46.9727560016294"/>
-  <line stroke="#888888" x1="399.8999905583312" x2="399.8999905583312" y1="46.9727560016294" y2="46.4727560016294"/>
-  <line stroke="#888888" x1="399.8999905583312" x2="411.49089964924025" y1="46.4727560016294" y2="46.4727560016294"/>
-  <line stroke="#888888" x1="411.49089964924025" x2="411.49089964924025" y1="46.4727560016294" y2="46.9727560016294"/>
-  <line stroke="#888888" x1="429.8318087401493" x2="424.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="424.83180874014937" x2="424.83180874014937" y1="91.36137800081471" y2="83.36137800081471"/>
-  <line stroke="#888888" x1="424.83180874014937" x2="429.8318087401493" y1="83.36137800081471" y2="83.36137800081471"/>
-  <line stroke="#888888" x1="353.83180874014937" x2="358.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
-  <line stroke="#888888" x1="358.83180874014937" x2="358.83180874014937" y1="83.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="358.83180874014937" x2="353.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="457.3413892855904" x2="457.3413892855904" y1="122.37140729545962" y2="131.12380243181985"/>
-  <line stroke="#888888" x1="457.3413892855904" x2="439.8365990128699" y1="131.12380243181985" y2="131.12380243181988"/>
-  <line stroke="#888888" x1="439.8365990128699" x2="439.8365990128699" y1="131.12380243181988" y2="122.37140729545962"/>
-  <line stroke="#888888" x1="486.5563117536783" x2="481.5195122622253" y1="223.5120791976936" y2="206.22615649603978"/>
-  <line stroke="#888888" x1="481.5195122622253" x2="481.99954903132453" y1="206.22615649603978" y2="206.08628262316594"/>
-  <line stroke="#888888" x1="481.99954903132453" x2="487.0363485227776" y1="206.08628262316594" y2="223.37220532481973"/>
-  <line stroke="#888888" x1="487.0363485227776" x2="486.5563117536783" y1="223.37220532481973" y2="223.5120791976936"/>
-  <line stroke="#888888" x1="481.5195122622253" x2="486.55631175367836" y1="294.77384350396034" y2="277.4879208023065"/>
-  <line stroke="#888888" x1="486.55631175367836" x2="487.0363485227776" y1="277.4879208023065" y2="277.6277946751803"/>
-  <line stroke="#888888" x1="487.0363485227776" x2="481.9995490313246" y1="277.6277946751803" y2="294.91371737683414"/>
-  <line stroke="#888888" x1="481.9995490313246" x2="481.5195122622253" y1="294.91371737683414" y2="294.77384350396034"/>
-  <line stroke="#888888" x1="304.8999905583312" x2="316.4908996492403" y1="357.7500000000002" y2="357.75000000000017"/>
-  <line stroke="#888888" x1="316.4908996492403" x2="316.4908996492403" y1="357.75000000000017" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="316.4908996492403" x2="304.8999905583312" y1="358.25000000000017" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="304.8999905583312" x2="304.8999905583312" y1="358.25000000000017" y2="357.7500000000002"/>
-  <line stroke="#888888" x1="277.1727178310585" x2="288.7636269219676" y1="357.7500000000002" y2="357.7500000000002"/>
-  <line stroke="#888888" x1="288.7636269219676" x2="288.7636269219676" y1="357.7500000000002" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="288.7636269219676" x2="277.1727178310585" y1="358.25000000000017" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="277.1727178310585" x2="277.1727178310585" y1="358.25000000000017" y2="357.7500000000002"/>
-  <line stroke="#888888" x1="372.42271783105855" x2="372.42271783105855" y1="373.0000000000001" y2="368.0000000000001"/>
-  <line stroke="#888888" x1="372.42271783105855" x2="383.5136269219676" y1="368.0000000000001" y2="368.0000000000001"/>
-  <line stroke="#888888" x1="383.5136269219676" x2="383.51362692196767" y1="368.0000000000001" y2="373.0000000000001"/>
-  <line stroke="#888888" x1="400.14999055833124" x2="400.14999055833124" y1="373.0000000000001" y2="368.0000000000001"/>
-  <line stroke="#888888" x1="400.14999055833124" x2="411.24089964924036" y1="368.0000000000001" y2="368.00000000000006"/>
-  <line stroke="#888888" x1="411.24089964924036" x2="411.2408996492404" y1="368.00000000000006" y2="373.00000000000006"/>
-  <line stroke="#888888" x1="343.5818087401495" x2="343.5818087401495" y1="388.4166666666668" y2="376.5833333333335"/>
-  <line stroke="#888888" x1="343.5818087401495" x2="344.0818087401495" y1="376.5833333333335" y2="376.5833333333335"/>
-  <line stroke="#888888" x1="344.0818087401495" x2="344.0818087401495" y1="376.5833333333335" y2="388.4166666666668"/>
-  <line stroke="#888888" x1="344.0818087401495" x2="343.5818087401495" y1="388.4166666666668" y2="388.4166666666668"/>
-  <line stroke="#888888" x1="335.08180874014954" x2="343.58180874014954" y1="476.50000000000017" y2="476.50000000000017"/>
-  <line stroke="#888888" x1="343.58180874014954" x2="343.58180874014954" y1="476.50000000000017" y2="477.00000000000017"/>
-  <line stroke="#888888" x1="343.58180874014954" x2="335.08180874014954" y1="477.00000000000017" y2="477.00000000000017"/>
-  <line stroke="#888888" x1="335.08180874014954" x2="335.08180874014954" y1="477.00000000000017" y2="476.50000000000017"/>
-  <line stroke="#888888" x1="308.3318087401494" x2="312.3318087401494" y1="376.50000000000017" y2="376.50000000000017"/>
-  <line stroke="#888888" x1="312.3318087401494" x2="312.3318087401495" y1="376.50000000000017" y2="388.50000000000017"/>
-  <line stroke="#888888" x1="312.3318087401495" x2="308.3318087401495" y1="388.50000000000017" y2="388.50000000000017"/>
-  <line stroke="#888888" x1="308.3318087401495" x2="308.3318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
-  <line stroke="#888888" x1="320.33180874014937" x2="324.3318087401494" y1="378.00000000000017" y2="378.00000000000017"/>
-  <line stroke="#888888" x1="324.3318087401494" x2="324.3318087401494" y1="378.00000000000017" y2="387.00000000000017"/>
-  <line stroke="#888888" x1="324.3318087401494" x2="320.3318087401494" y1="387.00000000000017" y2="387.00000000000017"/>
-  <line stroke="#888888" x1="320.3318087401494" x2="320.33180874014937" y1="387.00000000000017" y2="378.00000000000017"/>
-  <line stroke="#888888" x1="283.83180874014937" x2="306.83180874014937" y1="376.50000000000017" y2="376.50000000000017"/>
-  <line stroke="#888888" x1="306.83180874014937" x2="306.8318087401494" y1="376.50000000000017" y2="388.50000000000017"/>
-  <line stroke="#888888" x1="306.8318087401494" x2="283.83180874014937" y1="388.50000000000017" y2="388.50000000000017"/>
-  <line stroke="#888888" x1="283.83180874014937" x2="283.83180874014937" y1="388.50000000000017" y2="376.50000000000017"/>
-  <line stroke="#888888" x1="278.3318087401494" x2="282.3318087401494" y1="376.50000000000017" y2="376.50000000000017"/>
-  <line stroke="#888888" x1="282.3318087401494" x2="282.3318087401494" y1="376.50000000000017" y2="388.50000000000017"/>
-  <line stroke="#888888" x1="282.3318087401494" x2="278.3318087401494" y1="388.50000000000017" y2="388.50000000000017"/>
-  <line stroke="#888888" x1="278.3318087401494" x2="278.3318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
-  <line stroke="#888888" x1="255.8318087401494" x2="260.8318087401494" y1="376.8333333333335" y2="376.8333333333335"/>
-  <line stroke="#888888" x1="260.8318087401494" x2="260.8318087401494" y1="376.8333333333335" y2="388.16666666666686"/>
-  <line stroke="#888888" x1="260.8318087401494" x2="255.8318087401494" y1="388.16666666666686" y2="388.16666666666686"/>
-  <line stroke="#888888" x1="231.32222819470834" x2="231.32222819470834" y1="378.6285927045407" y2="369.87619756818043"/>
-  <line stroke="#888888" x1="231.32222819470834" x2="248.82701846742887" y1="369.87619756818043" y2="369.87619756818043"/>
-  <line stroke="#888888" x1="248.82701846742887" x2="248.82701846742887" y1="369.87619756818043" y2="378.6285927045407"/>
-  <line stroke="#888888" x1="202.10730572662035" x2="207.1441052180734" y1="277.4879208023067" y2="294.7738435039605"/>
-  <line stroke="#888888" x1="207.1441052180734" x2="206.66406844897412" y1="294.7738435039605" y2="294.9137173768343"/>
-  <line stroke="#888888" x1="206.66406844897412" x2="201.62726895752107" y1="294.9137173768343" y2="277.62779467518055"/>
-  <line stroke="#888888" x1="201.62726895752107" x2="202.10730572662035" y1="277.62779467518055" y2="277.4879208023067"/>
-  <line stroke="#888888" x1="207.14410521807326" x2="202.10730572662024" y1="206.22615649604003" y2="223.51207919769385"/>
-  <line stroke="#888888" x1="202.10730572662024" x2="201.62726895752098" y1="223.51207919769385" y2="223.37220532482002"/>
-  <line stroke="#888888" x1="201.62726895752098" x2="206.66406844897395" y1="223.37220532482002" y2="206.08628262316617"/>
-  <line stroke="#888888" x1="206.66406844897395" x2="207.14410521807326" y1="206.08628262316617" y2="206.22615649604003"/>
-  <line stroke="#888888" x1="248.8270184674285" x2="248.82701846742856" y1="122.37140729545976" y2="131.12380243182005"/>
-  <line stroke="#888888" x1="248.82701846742856" x2="231.322228194708" y1="131.12380243182005" y2="131.12380243182008"/>
-  <line stroke="#888888" x1="231.322228194708" x2="231.32222819470798" y1="131.12380243182008" y2="122.3714072954598"/>
-  <line stroke="#888888" x1="439.83659901287" x2="439.83659901287" y1="378.6285927045405" y2="369.87619756818015"/>
-  <line stroke="#888888" x1="439.83659901287" x2="457.34138928559054" y1="369.87619756818015" y2="369.87619756818015"/>
-  <line stroke="#888888" x1="457.34138928559054" x2="457.34138928559054" y1="369.87619756818015" y2="378.6285927045405"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="551.3550614105758" x2="612.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="612.3550614105757" x2="612.3550614105757" y1="123.50000000000001" y2="147.5"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="612.3550614105757" x2="551.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="551.3550614105758" x2="551.3550614105758" y1="147.5" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="551.3550614105758" x2="551.3550614105758" y1="116.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="611.3550614105757" x2="551.3550614105758" y1="116.50000000000001" y2="116.50000000000001"/>
-  <line stroke="#000000" x1="611.3550614105757" x2="611.3550614105757" y1="123.50000000000001" y2="116.50000000000001"/>
-  <line stroke="#000000" x1="619.3550614105757" x2="612.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="619.3550614105757" x2="619.3550614105757" y1="147.5" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="612.3550614105757" x2="619.3550614105757" y1="147.5" y2="147.5"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="612.3550614105757" x2="612.3550614105757" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="552.3550614105758" x2="612.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="552.3550614105758" x2="552.3550614105758" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="636.3550614105758" x2="612.3550614105757" y1="147.5" y2="147.5"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="636.3550614105758" x2="636.3550614105758" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="612.3550614105757" x2="636.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="696.3550614105758" x2="636.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="696.3550614105758" x2="696.3550614105758" y1="208.50000000000003" y2="147.5"/>
-  <line stroke="#000000" x1="636.3550614105758" x2="696.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="552.3550614105758" x2="528.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="528.3550614105758" x2="552.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="528.3550614105758" x2="528.3550614105758" y1="208.50000000000003" y2="147.5"/>
-  <line stroke="#000000" x1="518.3550614105758" x2="528.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="518.3550614105758" x2="518.3550614105758" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="528.3550614105758" x2="518.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="544.3550614105758" x2="551.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="544.3550614105758" x2="544.3550614105758" y1="123.50000000000001" y2="147.5"/>
-  <line stroke="#000000" x1="551.3550614105758" x2="544.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#888888" x1="600.4459705014849" x2="603.9459705014848" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="603.9459705014848" x2="600.4459705014849" y1="118.25000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="600.4459705014849" x2="589.5368795923938" y1="121.75000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="589.5368795923938" x2="586.036879592394" y1="121.75000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="586.036879592394" x2="589.5368795923938" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="573.1732432287577" x2="576.6732432287575" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="576.6732432287575" x2="573.1732432287577" y1="118.25000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="573.1732432287577" x2="562.2641523196666" y1="121.75000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="562.2641523196666" x2="558.7641523196667" y1="121.75000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="558.7641523196667" x2="562.2641523196666" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="617.6050614105757" x2="614.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
-  <line stroke="#888888" x1="614.1050614105758" x2="614.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/>
-  <line stroke="#888888" x1="614.1050614105758" x2="617.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/>
-  <line stroke="#888888" x1="559.8550614105758" x2="559.8550614105758" y1="199.00000000000003" y2="181.00000000000003"/>
-  <line stroke="#888888" x1="559.8550614105758" x2="594.8550614105757" y1="181.00000000000003" y2="181.00000000000003"/>
-  <line stroke="#888888" x1="594.8550614105757" x2="594.8550614105757" y1="181.00000000000003" y2="199.00000000000003"/>
-  <line stroke="#888888" x1="594.8550614105757" x2="559.8550614105758" y1="199.00000000000003" y2="199.00000000000003"/>
-  <line stroke="#888888" x1="612.8550614105757" x2="612.8550614105757" y1="160.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="612.8550614105757" x2="615.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="615.8550614105758" x2="615.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="615.8550614105758" x2="612.8550614105757" y1="160.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="632.8550614105758" x2="632.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="632.8550614105758" x2="635.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="635.8550614105758" x2="635.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="635.8550614105758" x2="632.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="628.6050614105758" x2="620.1050614105758" y1="155.25000000000003" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="620.1050614105758" x2="620.1050614105758" y1="155.25000000000003" y2="154.75"/>
-  <line stroke="#888888" x1="620.1050614105758" x2="628.6050614105758" y1="154.75" y2="154.75"/>
-  <line stroke="#888888" x1="628.6050614105758" x2="628.6050614105758" y1="154.75" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="620.1050614105758" x2="628.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="628.6050614105758" x2="628.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="628.6050614105758" x2="620.1050614105758" y1="203.50000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="620.1050614105758" x2="620.1050614105758" y1="203.50000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="651.3550614105758" x2="651.3550614105758" y1="198.50000000000003" y2="185.50000000000003"/>
-  <line stroke="#888888" x1="651.3550614105758" x2="681.3550614105758" y1="185.50000000000003" y2="185.50000000000003"/>
-  <line stroke="#888888" x1="681.3550614105758" x2="681.3550614105758" y1="185.50000000000003" y2="198.50000000000003"/>
-  <line stroke="#888888" x1="681.3550614105758" x2="651.3550614105758" y1="198.50000000000003" y2="198.50000000000003"/>
-  <line stroke="#888888" x1="658.4232432287575" x2="647.0141523196667" y1="153.00000000000003" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="647.0141523196667" x2="647.0141523196667" y1="153.00000000000003" y2="152.5"/>
-  <line stroke="#888888" x1="647.0141523196667" x2="658.4232432287575" y1="152.5" y2="152.5"/>
-  <line stroke="#888888" x1="658.4232432287575" x2="658.4232432287575" y1="152.5" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="685.6959705014849" x2="674.2868795923939" y1="153.00000000000003" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="674.2868795923939" x2="674.2868795923939" y1="153.00000000000003" y2="152.5"/>
-  <line stroke="#888888" x1="674.2868795923939" x2="685.6959705014849" y1="152.5" y2="152.5"/>
-  <line stroke="#888888" x1="685.6959705014849" x2="685.6959705014849" y1="152.5" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="688.6050614105757" x2="688.6050614105757" y1="169.93181818181822" y2="158.3409090909091"/>
-  <line stroke="#888888" x1="688.6050614105757" x2="689.1050614105757" y1="158.3409090909091" y2="158.3409090909091"/>
-  <line stroke="#888888" x1="689.1050614105757" x2="689.1050614105757" y1="158.3409090909091" y2="169.93181818181822"/>
-  <line stroke="#888888" x1="689.1050614105757" x2="688.6050614105757" y1="169.93181818181822" y2="169.93181818181822"/>
-  <line stroke="#888888" x1="688.6050614105757" x2="688.6050614105757" y1="197.65909090909093" y2="186.06818181818184"/>
-  <line stroke="#888888" x1="688.6050614105757" x2="689.1050614105757" y1="186.06818181818184" y2="186.06818181818184"/>
-  <line stroke="#888888" x1="689.1050614105757" x2="689.1050614105757" y1="186.06818181818184" y2="197.65909090909093"/>
-  <line stroke="#888888" x1="689.1050614105757" x2="688.6050614105757" y1="197.65909090909093" y2="197.65909090909093"/>
-  <line stroke="#888888" x1="528.8550614105758" x2="528.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="528.8550614105758" x2="531.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="531.8550614105758" x2="531.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="531.8550614105758" x2="528.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="548.8550614105757" x2="548.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="548.8550614105757" x2="551.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="551.8550614105758" x2="551.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="551.8550614105758" x2="548.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="544.6050614105757" x2="536.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="536.1050614105757" x2="536.1050614105757" y1="155.25000000000003" y2="154.75"/>
-  <line stroke="#888888" x1="536.1050614105757" x2="544.6050614105757" y1="154.75" y2="154.75"/>
-  <line stroke="#888888" x1="544.6050614105757" x2="544.6050614105757" y1="154.75" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="536.1050614105757" x2="544.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="544.6050614105757" x2="544.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="544.6050614105757" x2="536.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="536.1050614105757" x2="536.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="520.8550614105757" x2="525.8550614105757" y1="158.59090909090912" y2="158.59090909090912"/>
-  <line stroke="#888888" x1="525.8550614105757" x2="525.8550614105757" y1="158.59090909090912" y2="169.68181818181822"/>
-  <line stroke="#888888" x1="525.8550614105757" x2="520.8550614105757" y1="169.68181818181822" y2="169.68181818181822"/>
-  <line stroke="#888888" x1="520.8550614105757" x2="525.8550614105757" y1="186.31818181818184" y2="186.31818181818184"/>
-  <line stroke="#888888" x1="525.8550614105757" x2="525.8550614105757" y1="186.31818181818184" y2="197.40909090909093"/>
-  <line stroke="#888888" x1="525.8550614105757" x2="520.8550614105757" y1="197.40909090909093" y2="197.40909090909093"/>
-  <line stroke="#888888" x1="546.1050614105758" x2="549.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/>
-  <line stroke="#888888" x1="549.6050614105758" x2="549.6050614105758" y1="131.50000000000003" y2="139.50000000000003"/>
-  <line stroke="#888888" x1="549.6050614105758" x2="546.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="85.65427803486148" x2="85.65427803486148" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="85.65427803486148" x2="76.65427803486148" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="76.65427803486148" x2="76.65427803486148" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#000000" x1="319.33180874014937" x2="258.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="319.33180874014937" x2="343.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="353.33180874014937" x2="343.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="353.33180874014937" x2="414.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="414.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="258.33180874014937" x2="258.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="319.33180874014937" x2="245.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="353.33180874014937" x2="343.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="414.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="353.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="245.33180874014934" x2="319.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="245.33180874014934" x2="245.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="343.3318087401493" y1="135.50000000000003" y2="101.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="319.33180874014937" x2="319.33180874014937" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="319.33180874014937" x2="319.33180874014937" y1="65.5" y2="101.50000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="319.33180874014937" x2="343.3318087401493" y1="65.5" y2="65.5"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="343.3318087401493" y1="101.50000000000001" y2="65.5"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="343.3318087401493" y1="65.5" y2="20.5"/>
+  <line stroke="#000000" x1="319.33180874014937" x2="319.33180874014937" y1="20.5" y2="65.5"/>
+  <line stroke="#000000" x1="319.33180874014937" x2="319.33180874014937" y1="15.500000000000004" y2="20.5"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="319.33180874014937" y1="15.500000000000004" y2="15.500000000000004"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="343.3318087401493" y1="20.5" y2="15.500000000000004"/>
+  <line stroke="#000000" x1="319.33180874014937" x2="299.33180874014937" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="299.33180874014937" x2="319.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="299.33180874014937" x2="299.33180874014937" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="299.33180874014937" x2="275.3318087401493" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="275.3318087401493" x2="299.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.3318087401493" x2="275.3318087401493" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="275.3318087401493" x2="255.33180874014934" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="255.33180874014934" x2="275.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.33180874014934" x2="255.33180874014934" y1="135.50000000000003" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="245.33180874014934" x2="255.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="245.33180874014934" x2="245.33180874014934" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="255.33180874014934" x2="245.33180874014934" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="353.33180874014937" x2="414.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="414.33180874014937" y1="135.50000000000003" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="353.33180874014937" x2="353.33180874014937" y1="99.36137800081471" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.33180874014937" x2="353.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.33180874014937" x2="414.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="353.33180874014937" x2="353.33180874014937" y1="39.22275600162939" y2="75.36137800081472"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="353.33180874014937" y1="39.22275600162939" y2="39.22275600162939"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="414.33180874014937" y1="75.36137800081472" y2="39.22275600162939"/>
+  <line stroke="#000000" x1="424.33180874014937" x2="414.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#000000" x1="424.33180874014937" x2="424.33180874014937" y1="99.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="424.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="353.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="343.3318087401493" x2="343.3318087401493" y1="75.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="353.33180874014937" x2="343.3318087401493" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.33180874014937" x2="258.33180874014937" y1="205.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.33180874014937" x2="414.33180874014937" y1="205.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.33180874014937" x2="466.8461795583109" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.33180874014937" x2="466.8461795583109" y1="205.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="414.33180874014937" x2="414.33180874014937" y1="117.99520972727949" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="466.8461795583109" x2="414.33180874014937" y1="117.99520972727949" y2="117.99520972727949"/>
+  <line stroke="#000000" x1="466.8461795583109" x2="466.8461795583109" y1="135.50000000000003" y2="117.99520972727949"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.33180874014937" x2="481.5369564140486" y1="205.50000000000003" y2="185.91765779766357"/>
+  <line stroke="#000000" x1="481.5369564140486" x2="466.8461795583109" y1="185.91765779766357" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="496.22773326978614" x2="481.5369564140486" y1="236.33531559532716" y2="185.91765779766357"/>
+  <line stroke="#000000" x1="500.3550614105757" x2="496.22773326978614" y1="250.50000000000003" y2="236.33531559532716"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="500.3550614105757" x2="414.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.33180874014937" x2="414.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.3318087401494" x2="414.33180874014937" y1="295.5" y2="250.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="500.35506141057573" x2="414.3318087401494" y1="250.50000000000003" y2="295.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="481.5369564140486" x2="414.33180874014937" y1="315.08234220233646" y2="295.50000000000006"/>
+  <line stroke="#000000" x1="496.22773326978614" x2="500.3550614105757" y1="264.6646844046729" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="481.5369564140486" x2="496.22773326978614" y1="315.08234220233646" y2="264.6646844046729"/>
+  <line stroke="#000000" x1="466.84617955831106" x2="481.5369564140486" y1="365.50000000000006" y2="315.0823422023364"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="466.84617955831106" x2="414.3318087401494" y1="365.50000000000006" y2="295.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.3318087401495" x2="414.33180874014937" y1="365.5000000000001" y2="295.5"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="466.84617955831106" x2="414.3318087401495" y1="365.50000000000006" y2="365.5000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.3318087401494" x2="258.33180874014937" y1="295.50000000000006" y2="295.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.3318087401495" x2="353.3318087401495" y1="365.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="343.3318087401494" x2="353.3318087401495" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="343.3318087401494" x2="319.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="258.3318087401494" x2="319.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="258.3318087401494" x2="258.3318087401494" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="414.3318087401495" x2="414.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="343.3318087401494" x2="353.3318087401495" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="245.3318087401494" x2="319.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="245.3318087401494" x2="245.3318087401494" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="319.3318087401494" x2="245.3318087401494" y1="365.50000000000017" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="353.3318087401495" x2="343.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="414.3318087401495" x2="414.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="414.3318087401495" x2="414.3318087401495" y1="375.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="353.3318087401495" x2="414.3318087401495" y1="375.50000000000017" y2="375.5000000000001"/>
+  <line stroke="#000000" x1="353.3318087401495" x2="353.3318087401495" y1="365.50000000000017" y2="375.50000000000017"/>
+  <line stroke="#000000" x1="343.3318087401494" x2="343.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="319.3318087401494" x2="319.3318087401494" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="343.33180874014954" x2="343.3318087401494" y1="435.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="343.33180874014954" x2="319.3318087401494" y1="435.50000000000017" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="319.3318087401494" x2="319.3318087401494" y1="399.5000000000001" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="319.3318087401494" x2="319.3318087401495" y1="435.50000000000017" y2="480.50000000000017"/>
+  <line stroke="#000000" x1="343.33180874014954" x2="343.3318087401494" y1="480.50000000000017" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="319.3318087401495" x2="343.33180874014954" y1="480.50000000000017" y2="480.50000000000017"/>
+  <line stroke="#000000" x1="319.3318087401494" x2="299.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="299.3318087401495" x2="319.3318087401494" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="299.3318087401494" x2="299.3318087401495" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="299.3318087401494" x2="275.33180874014937" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="275.3318087401494" x2="299.3318087401495" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.33180874014937" x2="275.3318087401494" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="275.33180874014937" x2="255.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="255.33180874014943" x2="275.3318087401494" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.33180874014943" x2="255.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="245.33180874014943" x2="255.33180874014943" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="245.3318087401494" x2="245.33180874014943" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="255.3318087401494" x2="245.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="258.33180874014937" x2="258.3318087401494" y1="295.50000000000017" y2="365.5000000000002"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="258.3318087401494" x2="205.8174379219878" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="258.33180874014937" x2="205.8174379219878" y1="295.5000000000002" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="258.3318087401494" x2="258.3318087401494" y1="383.00479027272075" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="205.8174379219878" x2="258.3318087401494" y1="383.00479027272087" y2="383.00479027272075"/>
+  <line stroke="#000000" x1="205.8174379219878" x2="205.8174379219878" y1="365.5000000000003" y2="383.00479027272087"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="258.33180874014937" x2="191.12666106625016" y1="295.50000000000017" y2="315.08234220233675"/>
+  <line stroke="#000000" x1="191.12666106625016" x2="205.8174379219878" y1="315.08234220233675" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="176.4358842105125" x2="191.12666106625016" y1="264.6646844046731" y2="315.08234220233675"/>
+  <line stroke="#000000" x1="172.30855606972295" x2="176.4358842105125" y1="250.50000000000028" y2="264.6646844046731"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="172.30855606972295" x2="258.33180874014937" y1="250.50000000000028" y2="295.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="258.3318087401493" x2="258.33180874014937" y1="250.50000000000017" y2="295.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="258.3318087401492" x2="258.3318087401493" y1="205.50000000000017" y2="250.5000000000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="172.30855606972293" x2="258.3318087401492" y1="250.5000000000003" y2="205.50000000000014"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="191.12666106624997" x2="258.3318087401492" y1="185.91765779766385" y2="205.50000000000014"/>
+  <line stroke="#000000" x1="176.43588421051246" x2="172.30855606972293" y1="236.33531559532744" y2="250.5000000000003"/>
+  <line stroke="#000000" x1="191.12666106624997" x2="176.43588421051246" y1="185.91765779766385" y2="236.33531559532744"/>
+  <line stroke="#000000" x1="205.81743792198745" x2="191.12666106624997" y1="135.50000000000023" y2="185.91765779766385"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="205.81743792198745" x2="258.33180874014914" y1="135.50000000000023" y2="205.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="258.33180874014903" x2="258.3318087401492" y1="135.5000000000001" y2="205.50000000000017"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="205.81743792198748" x2="258.33180874014903" y1="135.50000000000023" y2="135.5000000000001"/>
+  <line stroke="#000000" x1="205.81743792198742" x2="205.81743792198748" y1="117.9952097272797" y2="135.50000000000023"/>
+  <line stroke="#000000" x1="258.33180874014903" x2="205.81743792198742" y1="117.9952097272796" y2="117.9952097272797"/>
+  <line stroke="#000000" x1="258.33180874014903" x2="258.33180874014903" y1="135.5000000000001" y2="117.9952097272796"/>
+  <line stroke="#000000" x1="466.8461795583111" x2="466.84617955831106" y1="383.0047902727206" y2="365.50000000000006"/>
+  <line stroke="#000000" x1="414.3318087401495" x2="466.8461795583111" y1="383.00479027272064" y2="383.0047902727206"/>
+  <line stroke="#000000" x1="414.3318087401495" x2="414.3318087401495" y1="365.5000000000001" y2="383.00479027272064"/>
+  <line stroke="#888888" x1="280.7636269219675" x2="269.1727178310585" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="269.1727178310585" x2="269.1727178310585" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="269.1727178310585" x2="280.7636269219675" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="280.7636269219675" x2="280.7636269219675" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="308.49089964924025" x2="296.8999905583312" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="296.8999905583312" x2="296.8999905583312" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="296.8999905583312" x2="308.49089964924025" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="308.49089964924025" x2="308.49089964924025" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="335.58180874014937" x2="335.58180874014937" y1="124.41666666666669" y2="112.58333333333334"/>
+  <line stroke="#888888" x1="335.58180874014937" x2="336.08180874014937" y1="112.58333333333334" y2="112.58333333333334"/>
+  <line stroke="#888888" x1="336.08180874014937" x2="336.08180874014937" y1="112.58333333333334" y2="124.41666666666669"/>
+  <line stroke="#888888" x1="336.08180874014937" x2="335.58180874014937" y1="124.41666666666669" y2="124.41666666666669"/>
+  <line stroke="#888888" x1="335.33180874014937" x2="337.83180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="337.83180874014937" x2="335.33180874014937" y1="16.750000000000004" y2="19.250000000000004"/>
+  <line stroke="#888888" x1="335.33180874014937" x2="327.33180874014937" y1="19.250000000000004" y2="19.250000000000004"/>
+  <line stroke="#888888" x1="327.33180874014937" x2="324.8318087401493" y1="19.250000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="324.8318087401493" x2="327.33180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="300.33180874014937" x2="304.33180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="304.33180874014937" x2="304.33180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="304.33180874014937" x2="300.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="300.33180874014937" x2="300.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="312.33180874014937" x2="316.3318087401493" y1="114.00000000000001" y2="114.00000000000001"/>
+  <line stroke="#888888" x1="316.3318087401493" x2="316.3318087401493" y1="114.00000000000001" y2="123.00000000000001"/>
+  <line stroke="#888888" x1="316.3318087401493" x2="312.33180874014937" y1="123.00000000000001" y2="123.00000000000001"/>
+  <line stroke="#888888" x1="312.33180874014937" x2="312.33180874014937" y1="123.00000000000001" y2="114.00000000000001"/>
+  <line stroke="#888888" x1="275.8318087401493" x2="298.83180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="298.83180874014937" x2="298.83180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="298.83180874014937" x2="275.8318087401493" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="275.8318087401493" x2="275.8318087401493" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="270.33180874014937" x2="274.3318087401493" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="274.3318087401493" x2="274.3318087401493" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="274.3318087401493" x2="270.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="270.33180874014937" x2="270.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="247.83180874014934" x2="252.83180874014934" y1="112.83333333333336" y2="112.83333333333336"/>
+  <line stroke="#888888" x1="252.83180874014934" x2="252.83180874014934" y1="112.83333333333336" y2="124.16666666666669"/>
+  <line stroke="#888888" x1="252.83180874014934" x2="247.83180874014934" y1="124.16666666666669" y2="124.16666666666669"/>
+  <line stroke="#888888" x1="371.33180874014937" x2="382.33180874014937" y1="80.86137800081471" y2="80.86137800081471"/>
+  <line stroke="#888888" x1="382.33180874014937" x2="382.33180874014937" y1="80.86137800081471" y2="93.86137800081471"/>
+  <line stroke="#888888" x1="382.33180874014937" x2="371.33180874014937" y1="93.86137800081471" y2="93.86137800081471"/>
+  <line stroke="#888888" x1="371.33180874014937" x2="371.33180874014937" y1="93.86137800081471" y2="80.86137800081471"/>
+  <line stroke="#888888" x1="402.8318087401493" x2="408.83180874014937" y1="82.36137800081471" y2="82.36137800081471"/>
+  <line stroke="#888888" x1="408.83180874014937" x2="408.83180874014937" y1="82.36137800081471" y2="92.36137800081471"/>
+  <line stroke="#888888" x1="408.83180874014937" x2="402.8318087401493" y1="92.36137800081471" y2="92.36137800081471"/>
+  <line stroke="#888888" x1="402.8318087401493" x2="402.8318087401493" y1="92.36137800081471" y2="82.36137800081471"/>
+  <line stroke="#888888" x1="375.76362692196756" x2="364.17271783105843" y1="46.9727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="364.17271783105843" x2="364.17271783105843" y1="46.9727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="364.17271783105843" x2="375.76362692196756" y1="46.4727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="375.76362692196756" x2="375.76362692196756" y1="46.4727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="403.4908996492402" x2="391.8999905583312" y1="46.9727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="391.8999905583312" x2="391.8999905583312" y1="46.9727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="391.8999905583312" x2="403.4908996492402" y1="46.4727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="403.4908996492402" x2="403.4908996492402" y1="46.4727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="421.83180874014937" x2="416.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="416.83180874014937" x2="416.83180874014937" y1="91.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="416.83180874014937" x2="421.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="345.83180874014937" x2="350.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="350.83180874014937" x2="350.83180874014937" y1="83.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="350.83180874014937" x2="345.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="449.3413892855904" x2="449.3413892855904" y1="122.37140729545962" y2="131.12380243181985"/>
+  <line stroke="#888888" x1="449.3413892855904" x2="431.8365990128699" y1="131.12380243181985" y2="131.12380243181988"/>
+  <line stroke="#888888" x1="431.8365990128699" x2="431.8365990128699" y1="131.12380243181988" y2="122.37140729545962"/>
+  <line stroke="#888888" x1="478.55631175367824" x2="473.5195122622253" y1="223.5120791976936" y2="206.22615649603978"/>
+  <line stroke="#888888" x1="473.5195122622253" x2="473.99954903132453" y1="206.22615649603978" y2="206.08628262316594"/>
+  <line stroke="#888888" x1="473.99954903132453" x2="479.0363485227776" y1="206.08628262316594" y2="223.37220532481973"/>
+  <line stroke="#888888" x1="479.0363485227776" x2="478.55631175367824" y1="223.37220532481973" y2="223.5120791976936"/>
+  <line stroke="#888888" x1="473.5195122622253" x2="478.55631175367836" y1="294.77384350396034" y2="277.4879208023065"/>
+  <line stroke="#888888" x1="478.55631175367836" x2="479.0363485227776" y1="277.4879208023065" y2="277.6277946751803"/>
+  <line stroke="#888888" x1="479.0363485227776" x2="473.9995490313246" y1="277.6277946751803" y2="294.91371737683414"/>
+  <line stroke="#888888" x1="473.9995490313246" x2="473.5195122622253" y1="294.91371737683414" y2="294.77384350396034"/>
+  <line stroke="#888888" x1="296.89999055833124" x2="308.4908996492403" y1="357.7500000000002" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="308.4908996492403" x2="308.4908996492403" y1="357.75000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="308.4908996492403" x2="296.89999055833124" y1="358.25000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="296.89999055833124" x2="296.89999055833124" y1="358.25000000000017" y2="357.7500000000002"/>
+  <line stroke="#888888" x1="269.1727178310585" x2="280.76362692196756" y1="357.7500000000002" y2="357.7500000000002"/>
+  <line stroke="#888888" x1="280.76362692196756" x2="280.76362692196756" y1="357.7500000000002" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="280.76362692196756" x2="269.1727178310585" y1="358.25000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="269.1727178310585" x2="269.1727178310585" y1="358.25000000000017" y2="357.7500000000002"/>
+  <line stroke="#888888" x1="364.4227178310585" x2="364.4227178310585" y1="373.0000000000001" y2="368.0000000000001"/>
+  <line stroke="#888888" x1="364.4227178310585" x2="375.5136269219676" y1="368.0000000000001" y2="368.0000000000001"/>
+  <line stroke="#888888" x1="375.5136269219676" x2="375.51362692196767" y1="368.0000000000001" y2="373.0000000000001"/>
+  <line stroke="#888888" x1="392.1499905583313" x2="392.1499905583313" y1="373.0000000000001" y2="368.0000000000001"/>
+  <line stroke="#888888" x1="392.1499905583313" x2="403.2408996492403" y1="368.0000000000001" y2="368.00000000000006"/>
+  <line stroke="#888888" x1="403.2408996492403" x2="403.24089964924036" y1="368.00000000000006" y2="373.00000000000006"/>
+  <line stroke="#888888" x1="335.5818087401495" x2="335.5818087401495" y1="388.4166666666668" y2="376.5833333333335"/>
+  <line stroke="#888888" x1="335.5818087401495" x2="336.0818087401495" y1="376.5833333333335" y2="376.5833333333335"/>
+  <line stroke="#888888" x1="336.0818087401495" x2="336.0818087401495" y1="376.5833333333335" y2="388.4166666666668"/>
+  <line stroke="#888888" x1="336.0818087401495" x2="335.5818087401495" y1="388.4166666666668" y2="388.4166666666668"/>
+  <line stroke="#888888" x1="327.08180874014954" x2="335.58180874014954" y1="476.50000000000017" y2="476.50000000000017"/>
+  <line stroke="#888888" x1="335.58180874014954" x2="335.58180874014954" y1="476.50000000000017" y2="477.00000000000017"/>
+  <line stroke="#888888" x1="335.58180874014954" x2="327.08180874014954" y1="477.00000000000017" y2="477.00000000000017"/>
+  <line stroke="#888888" x1="327.08180874014954" x2="327.08180874014954" y1="477.00000000000017" y2="476.50000000000017"/>
+  <line stroke="#888888" x1="300.3318087401494" x2="304.3318087401494" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="304.3318087401494" x2="304.3318087401495" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="304.3318087401495" x2="300.3318087401495" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="300.3318087401495" x2="300.3318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="312.3318087401494" x2="316.3318087401494" y1="378.00000000000017" y2="378.00000000000017"/>
+  <line stroke="#888888" x1="316.3318087401494" x2="316.3318087401494" y1="378.00000000000017" y2="387.00000000000017"/>
+  <line stroke="#888888" x1="316.3318087401494" x2="312.3318087401495" y1="387.00000000000017" y2="387.00000000000017"/>
+  <line stroke="#888888" x1="312.3318087401495" x2="312.3318087401494" y1="387.00000000000017" y2="378.00000000000017"/>
+  <line stroke="#888888" x1="275.8318087401494" x2="298.8318087401494" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="298.8318087401494" x2="298.8318087401495" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="298.8318087401495" x2="275.8318087401494" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="275.8318087401494" x2="275.8318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="270.3318087401494" x2="274.33180874014937" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="274.33180874014937" x2="274.33180874014937" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="274.33180874014937" x2="270.3318087401494" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="270.3318087401494" x2="270.3318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="247.8318087401494" x2="252.8318087401494" y1="376.8333333333335" y2="376.8333333333335"/>
+  <line stroke="#888888" x1="252.8318087401494" x2="252.8318087401494" y1="376.8333333333335" y2="388.16666666666686"/>
+  <line stroke="#888888" x1="252.8318087401494" x2="247.8318087401494" y1="388.16666666666686" y2="388.16666666666686"/>
+  <line stroke="#888888" x1="223.32222819470834" x2="223.32222819470834" y1="378.6285927045407" y2="369.87619756818043"/>
+  <line stroke="#888888" x1="223.32222819470834" x2="240.82701846742887" y1="369.87619756818043" y2="369.87619756818043"/>
+  <line stroke="#888888" x1="240.82701846742887" x2="240.82701846742887" y1="369.87619756818043" y2="378.6285927045407"/>
+  <line stroke="#888888" x1="194.10730572662035" x2="199.1441052180734" y1="277.4879208023067" y2="294.7738435039605"/>
+  <line stroke="#888888" x1="199.1441052180734" x2="198.66406844897412" y1="294.7738435039605" y2="294.9137173768343"/>
+  <line stroke="#888888" x1="198.66406844897412" x2="193.62726895752107" y1="294.9137173768343" y2="277.62779467518055"/>
+  <line stroke="#888888" x1="193.62726895752107" x2="194.10730572662035" y1="277.62779467518055" y2="277.4879208023067"/>
+  <line stroke="#888888" x1="199.14410521807326" x2="194.10730572662027" y1="206.22615649604003" y2="223.51207919769385"/>
+  <line stroke="#888888" x1="194.10730572662027" x2="193.62726895752098" y1="223.51207919769385" y2="223.37220532482002"/>
+  <line stroke="#888888" x1="193.62726895752098" x2="198.66406844897398" y1="223.37220532482002" y2="206.08628262316617"/>
+  <line stroke="#888888" x1="198.66406844897398" x2="199.14410521807326" y1="206.08628262316617" y2="206.22615649604003"/>
+  <line stroke="#888888" x1="240.8270184674285" x2="240.82701846742853" y1="122.37140729545976" y2="131.12380243182005"/>
+  <line stroke="#888888" x1="240.82701846742853" x2="223.322228194708" y1="131.12380243182005" y2="131.12380243182008"/>
+  <line stroke="#888888" x1="223.322228194708" x2="223.32222819470798" y1="131.12380243182008" y2="122.3714072954598"/>
+  <line stroke="#888888" x1="431.83659901287" x2="431.83659901287" y1="378.6285927045405" y2="369.87619756818015"/>
+  <line stroke="#888888" x1="431.83659901287" x2="449.34138928559054" y1="369.87619756818015" y2="369.87619756818015"/>
+  <line stroke="#888888" x1="449.34138928559054" x2="449.34138928559054" y1="369.87619756818015" y2="378.6285927045405"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="519.3550614105758" x2="580.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="580.3550614105758" x2="580.3550614105758" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="580.3550614105758" x2="519.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="519.3550614105758" x2="519.3550614105758" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="519.3550614105758" x2="519.3550614105758" y1="116.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="555.3550614105757" x2="519.3550614105758" y1="116.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="555.3550614105757" x2="555.3550614105757" y1="123.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="587.3550614105758" x2="580.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="587.3550614105758" x2="587.3550614105758" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="580.3550614105758" x2="587.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="580.3550614105758" x2="580.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="544.3550614105758" x2="580.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="544.3550614105758" x2="544.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="604.3550614105758" x2="580.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.3550614105758" x2="604.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="580.3550614105758" x2="604.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="640.3550614105757" x2="604.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="640.3550614105757" x2="640.3550614105757" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="604.3550614105758" x2="640.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="544.3550614105758" x2="520.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="520.3550614105758" x2="544.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="520.3550614105758" x2="520.3550614105758" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="510.35506141057573" x2="520.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="510.35506141057573" x2="510.35506141057573" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="520.3550614105758" x2="510.35506141057573" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="512.3550614105757" x2="519.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="512.3550614105757" x2="512.3550614105757" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#000000" x1="519.3550614105758" x2="512.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#888888" x1="543.3550614105758" x2="546.8550614105757" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="546.8550614105757" x2="543.3550614105758" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="543.3550614105758" x2="531.3550614105757" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="531.3550614105757" x2="527.8550614105758" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="527.8550614105758" x2="531.3550614105757" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="585.6050614105758" x2="582.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="582.1050614105758" x2="582.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="582.1050614105758" x2="585.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="557.4693471248615" x2="557.4693471248615" y1="202.25000000000003" y2="184.25"/>
+  <line stroke="#888888" x1="557.4693471248615" x2="578.0407756962901" y1="184.25" y2="184.25"/>
+  <line stroke="#888888" x1="578.0407756962901" x2="578.0407756962901" y1="184.25" y2="202.25000000000003"/>
+  <line stroke="#888888" x1="578.0407756962901" x2="557.4693471248615" y1="202.25000000000003" y2="202.25000000000003"/>
+  <line stroke="#888888" x1="580.8550614105758" x2="580.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="580.8550614105758" x2="583.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="583.8550614105757" x2="583.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="583.8550614105757" x2="580.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="601.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="601.8550614105757" x2="602.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="602.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="602.8550614105757" x2="601.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="581.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="581.8550614105758" x2="582.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="582.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="582.8550614105757" x2="581.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="600.8550614105757" x2="600.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="600.8550614105757" x2="603.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="603.8550614105757" x2="603.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="603.8550614105757" x2="600.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="596.6050614105757" x2="588.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="588.1050614105757" x2="588.1050614105757" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="588.1050614105757" x2="596.6050614105757" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="596.6050614105757" x2="596.6050614105757" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="588.1050614105757" x2="596.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="596.6050614105757" x2="596.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="596.6050614105757" x2="588.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="588.1050614105757" x2="588.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="609.9093471248615" x2="609.9093471248615" y1="204.02" y2="191.02"/>
+  <line stroke="#888888" x1="609.9093471248615" x2="630.48077569629" y1="191.02" y2="191.02"/>
+  <line stroke="#888888" x1="630.48077569629" x2="630.48077569629" y1="191.02" y2="204.02"/>
+  <line stroke="#888888" x1="630.48077569629" x2="609.9093471248615" y1="204.02" y2="204.02"/>
+  <line stroke="#888888" x1="628.6050614105758" x2="616.1050614105757" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="616.1050614105757" x2="616.1050614105757" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="616.1050614105757" x2="628.6050614105758" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="628.6050614105758" x2="628.6050614105758" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="632.6050614105758" x2="632.6050614105758" y1="169.93181818181822" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="632.6050614105758" x2="633.1050614105757" y1="158.3409090909091" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="633.1050614105757" y1="158.3409090909091" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="632.6050614105758" y1="169.93181818181822" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="632.6050614105758" x2="632.6050614105758" y1="197.65909090909093" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="632.6050614105758" x2="633.1050614105757" y1="186.06818181818184" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="633.1050614105757" y1="186.06818181818184" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="632.6050614105758" y1="197.65909090909093" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="520.8550614105757" x2="520.8550614105757" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="520.8550614105757" x2="523.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="523.8550614105758" x2="523.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="523.8550614105758" x2="520.8550614105757" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="542.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="541.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="521.8550614105757" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="521.8550614105757" x2="522.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="522.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="522.8550614105758" x2="521.8550614105757" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="540.8550614105758" x2="540.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="540.8550614105758" x2="543.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="540.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="536.6050614105758" x2="528.1050614105758" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="528.1050614105758" x2="528.1050614105758" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="528.1050614105758" x2="536.6050614105758" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="536.6050614105758" x2="536.6050614105758" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="528.1050614105758" x2="536.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="536.6050614105758" x2="536.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="536.6050614105758" x2="528.1050614105758" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="528.1050614105758" x2="528.1050614105758" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="512.8550614105757" x2="517.8550614105757" y1="158.59090909090912" y2="158.59090909090912"/>
+  <line stroke="#888888" x1="517.8550614105757" x2="517.8550614105757" y1="158.59090909090912" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="517.8550614105757" x2="512.8550614105757" y1="169.68181818181822" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="512.8550614105757" x2="517.8550614105757" y1="186.31818181818184" y2="186.31818181818184"/>
+  <line stroke="#888888" x1="517.8550614105757" x2="517.8550614105757" y1="186.31818181818184" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="517.8550614105757" x2="512.8550614105757" y1="197.40909090909093" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="514.1050614105758" x2="517.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="517.6050614105757" x2="517.6050614105757" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="517.6050614105757" x2="514.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
 </svg>
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-model.png b/rocolib/output/BoatWithServoStackBattery/graph-model.png
index 092685693d941fad3eae3c5d43726216f16bbda1..a46762ae8358bc03131bae0e6080f536c19635bb 100644
Binary files a/rocolib/output/BoatWithServoStackBattery/graph-model.png and b/rocolib/output/BoatWithServoStackBattery/graph-model.png differ
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-model.stl b/rocolib/output/BoatWithServoStackBattery/graph-model.stl
index ea1fc435fbf24d74e6fe0dd215d72973e5af6423..89bdd03cdf8c517953ffc2f21e5c11fb58fb0d39 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-model.stl
+++ b/rocolib/output/BoatWithServoStackBattery/graph-model.stl
@@ -1,128 +1,128 @@
 solid python
 facet normal 0 0 0
 outer loop
-vertex -0.0308 0.0305 0.0000
-vertex -0.0308 -0.0305 0.0000
-vertex 0.0308 -0.0305 0.0000
+vertex -0.0288 0.0305 0.0000
+vertex -0.0288 -0.0305 0.0000
+vertex 0.0288 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0308 -0.0305 0.0000
-vertex 0.0308 0.0305 0.0000
-vertex -0.0308 0.0305 0.0000
+vertex 0.0288 -0.0305 0.0000
+vertex 0.0288 0.0305 0.0000
+vertex -0.0288 0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0499 -0.0305 0.0191
-vertex -0.0499 0.0305 0.0191
-vertex -0.0499 0.0305 0.0807
+vertex -0.0479 -0.0305 0.0191
+vertex -0.0479 0.0305 0.0191
+vertex -0.0479 0.0305 0.0767
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0499 0.0305 0.0807
-vertex -0.0499 -0.0305 0.0807
-vertex -0.0499 -0.0305 0.0191
+vertex -0.0479 0.0305 0.0767
+vertex -0.0479 -0.0305 0.0767
+vertex -0.0479 -0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0499 0.0305 0.0191
-vertex -0.0308 0.0305 -0.0000
-vertex -0.0428 0.0305 -0.0120
+vertex -0.0479 0.0305 0.0191
+vertex -0.0288 0.0305 -0.0000
+vertex -0.0408 0.0305 -0.0120
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0428 0.0305 -0.0120
-vertex -0.0619 0.0305 0.0071
-vertex -0.0499 0.0305 0.0191
+vertex -0.0408 0.0305 -0.0120
+vertex -0.0599 0.0305 0.0071
+vertex -0.0479 0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0619 0.0305 0.0071
-vertex -0.0428 0.0305 -0.0120
-vertex -0.0428 -0.0305 -0.0120
+vertex -0.0599 0.0305 0.0071
+vertex -0.0408 0.0305 -0.0120
+vertex -0.0408 -0.0305 -0.0120
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0428 -0.0305 -0.0120
-vertex -0.0619 -0.0305 0.0071
-vertex -0.0619 0.0305 0.0071
+vertex -0.0408 -0.0305 -0.0120
+vertex -0.0599 -0.0305 0.0071
+vertex -0.0599 0.0305 0.0071
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0619 -0.0305 0.0071
-vertex -0.0428 -0.0305 -0.0120
-vertex -0.0308 -0.0305 0.0000
+vertex -0.0599 -0.0305 0.0071
+vertex -0.0408 -0.0305 -0.0120
+vertex -0.0288 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0308 -0.0305 0.0000
-vertex -0.0499 -0.0305 0.0191
-vertex -0.0619 -0.0305 0.0071
+vertex -0.0288 -0.0305 0.0000
+vertex -0.0479 -0.0305 0.0191
+vertex -0.0599 -0.0305 0.0071
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0340 -0.0330 0.0032
-vertex -0.0467 -0.0305 0.0159
-vertex -0.0467 -0.0330 0.0159
+vertex -0.0320 -0.0330 0.0032
+vertex -0.0447 -0.0305 0.0159
+vertex -0.0447 -0.0330 0.0159
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0308 -0.0305 0.0000
-vertex -0.0340 -0.0270 0.0032
-vertex -0.0340 -0.0305 0.0032
+vertex -0.0288 -0.0305 0.0000
+vertex -0.0320 -0.0270 0.0032
+vertex -0.0320 -0.0305 0.0032
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0340 -0.0270 0.0032
-vertex -0.0308 0.0305 0.0000
-vertex -0.0499 0.0305 0.0191
+vertex -0.0320 -0.0270 0.0032
+vertex -0.0288 0.0305 0.0000
+vertex -0.0479 0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0308 0.0305 0.0000
-vertex -0.0340 -0.0270 0.0032
-vertex -0.0308 -0.0305 0.0000
+vertex -0.0288 0.0305 0.0000
+vertex -0.0320 -0.0270 0.0032
+vertex -0.0288 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0467 -0.0270 0.0159
-vertex -0.0499 0.0305 0.0191
-vertex -0.0499 -0.0305 0.0191
+vertex -0.0447 -0.0270 0.0159
+vertex -0.0479 0.0305 0.0191
+vertex -0.0479 -0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0499 0.0305 0.0191
-vertex -0.0467 -0.0270 0.0159
-vertex -0.0340 -0.0270 0.0032
+vertex -0.0479 0.0305 0.0191
+vertex -0.0447 -0.0270 0.0159
+vertex -0.0320 -0.0270 0.0032
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0499 -0.0305 0.0191
-vertex -0.0467 -0.0305 0.0159
-vertex -0.0467 -0.0270 0.0159
+vertex -0.0479 -0.0305 0.0191
+vertex -0.0447 -0.0305 0.0159
+vertex -0.0447 -0.0270 0.0159
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0467 -0.0305 0.0159
-vertex -0.0340 -0.0330 0.0032
-vertex -0.0340 -0.0305 0.0032
+vertex -0.0447 -0.0305 0.0159
+vertex -0.0320 -0.0330 0.0032
+vertex -0.0320 -0.0305 0.0032
 endloop
 endfacet
 facet normal 0 0 0
@@ -953,1393 +953,1393 @@ 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
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0115 -0.0103
+vertex -0.0055 -0.0115 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0115 -0.0132
-vertex -0.0295 -0.0105 -0.0138
-vertex -0.0295 -0.0105 -0.0148
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0138
+vertex -0.0055 -0.0105 -0.0148
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0115 -0.0103
-vertex -0.0295 -0.0120 0.0000
-vertex -0.0295 -0.0085 -0.0103
+vertex -0.0055 -0.0115 -0.0103
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0085 -0.0103
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0120 0.0000
-vertex -0.0295 -0.0115 -0.0132
-vertex -0.0295 -0.0120 -0.0610
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0148
-vertex -0.0295 -0.0105 -0.0163
-vertex -0.0295 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0148
+vertex -0.0055 -0.0105 -0.0163
+vertex -0.0055 -0.0115 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0163
-vertex -0.0295 -0.0105 -0.0148
-vertex -0.0295 -0.0095 -0.0148
+vertex -0.0055 -0.0105 -0.0163
+vertex -0.0055 -0.0105 -0.0148
+vertex -0.0055 -0.0095 -0.0148
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0173
-vertex -0.0295 -0.0105 -0.0187
-vertex -0.0295 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0173
+vertex -0.0055 -0.0105 -0.0187
+vertex -0.0055 -0.0115 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0187
-vertex -0.0295 -0.0105 -0.0173
-vertex -0.0295 -0.0095 -0.0173
+vertex -0.0055 -0.0105 -0.0187
+vertex -0.0055 -0.0105 -0.0173
+vertex -0.0055 -0.0095 -0.0173
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0163
-vertex -0.0295 -0.0105 -0.0173
-vertex -0.0295 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0163
+vertex -0.0055 -0.0105 -0.0173
+vertex -0.0055 -0.0115 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0115 -0.0132
-vertex -0.0295 -0.0105 -0.0187
-vertex -0.0295 -0.0105 -0.0198
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0187
+vertex -0.0055 -0.0105 -0.0198
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0198
-vertex -0.0295 -0.0105 -0.0213
-vertex -0.0295 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0198
+vertex -0.0055 -0.0105 -0.0213
+vertex -0.0055 -0.0115 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0213
-vertex -0.0295 -0.0105 -0.0198
-vertex -0.0295 -0.0095 -0.0198
+vertex -0.0055 -0.0105 -0.0213
+vertex -0.0055 -0.0105 -0.0198
+vertex -0.0055 -0.0095 -0.0198
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0222
-vertex -0.0295 -0.0105 -0.0238
-vertex -0.0295 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0222
+vertex -0.0055 -0.0105 -0.0238
+vertex -0.0055 -0.0115 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0238
-vertex -0.0295 -0.0105 -0.0222
-vertex -0.0295 -0.0095 -0.0222
+vertex -0.0055 -0.0105 -0.0238
+vertex -0.0055 -0.0105 -0.0222
+vertex -0.0055 -0.0095 -0.0222
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0213
-vertex -0.0295 -0.0105 -0.0222
-vertex -0.0295 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0213
+vertex -0.0055 -0.0105 -0.0222
+vertex -0.0055 -0.0115 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0248
-vertex -0.0295 -0.0105 -0.0262
-vertex -0.0295 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0248
+vertex -0.0055 -0.0105 -0.0262
+vertex -0.0055 -0.0115 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0262
-vertex -0.0295 -0.0105 -0.0248
-vertex -0.0295 -0.0095 -0.0248
+vertex -0.0055 -0.0105 -0.0262
+vertex -0.0055 -0.0105 -0.0248
+vertex -0.0055 -0.0095 -0.0248
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0272
-vertex -0.0295 -0.0105 -0.0288
-vertex -0.0295 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0272
+vertex -0.0055 -0.0105 -0.0288
+vertex -0.0055 -0.0115 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0288
-vertex -0.0295 -0.0105 -0.0272
-vertex -0.0295 -0.0095 -0.0272
+vertex -0.0055 -0.0105 -0.0288
+vertex -0.0055 -0.0105 -0.0272
+vertex -0.0055 -0.0095 -0.0272
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0262
-vertex -0.0295 -0.0105 -0.0272
-vertex -0.0295 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0262
+vertex -0.0055 -0.0105 -0.0272
+vertex -0.0055 -0.0115 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0238
-vertex -0.0295 -0.0105 -0.0248
-vertex -0.0295 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0238
+vertex -0.0055 -0.0105 -0.0248
+vertex -0.0055 -0.0115 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0115 -0.0132
-vertex -0.0295 -0.0105 -0.0288
-vertex -0.0295 -0.0105 -0.0298
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0288
+vertex -0.0055 -0.0105 -0.0298
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0163
-vertex -0.0295 -0.0105 -0.0163
-vertex -0.0295 -0.0095 -0.0148
+vertex -0.0055 -0.0095 -0.0163
+vertex -0.0055 -0.0105 -0.0163
+vertex -0.0055 -0.0095 -0.0148
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0148
-vertex -0.0295 -0.0095 -0.0138
-vertex -0.0295 -0.0085 -0.0132
+vertex -0.0055 -0.0095 -0.0148
+vertex -0.0055 -0.0095 -0.0138
+vertex -0.0055 -0.0085 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0187
-vertex -0.0295 -0.0105 -0.0187
-vertex -0.0295 -0.0095 -0.0173
+vertex -0.0055 -0.0095 -0.0187
+vertex -0.0055 -0.0105 -0.0187
+vertex -0.0055 -0.0095 -0.0173
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0173
-vertex -0.0295 -0.0095 -0.0163
-vertex -0.0295 -0.0085 -0.0132
+vertex -0.0055 -0.0095 -0.0173
+vertex -0.0055 -0.0095 -0.0163
+vertex -0.0055 -0.0085 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0148
-vertex -0.0295 -0.0085 -0.0132
-vertex -0.0295 -0.0095 -0.0163
+vertex -0.0055 -0.0095 -0.0148
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 -0.0095 -0.0163
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0173
-vertex -0.0295 0.0095 -0.0173
-vertex -0.0295 -0.0095 -0.0187
+vertex -0.0055 -0.0095 -0.0173
+vertex -0.0055 0.0095 -0.0173
+vertex -0.0055 -0.0095 -0.0187
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0085 -0.0132
-vertex -0.0295 -0.0085 -0.0103
-vertex -0.0295 0.0095 -0.0112
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 -0.0085 -0.0103
+vertex -0.0055 0.0095 -0.0112
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0213
-vertex -0.0295 -0.0105 -0.0213
-vertex -0.0295 -0.0095 -0.0198
+vertex -0.0055 -0.0095 -0.0213
+vertex -0.0055 -0.0105 -0.0213
+vertex -0.0055 -0.0095 -0.0198
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0187
-vertex -0.0295 -0.0095 -0.0198
-vertex -0.0295 -0.0095 -0.0187
+vertex -0.0055 0.0095 -0.0187
+vertex -0.0055 -0.0095 -0.0198
+vertex -0.0055 -0.0095 -0.0187
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0198
-vertex -0.0295 0.0095 -0.0198
-vertex -0.0295 -0.0095 -0.0213
+vertex -0.0055 -0.0095 -0.0198
+vertex -0.0055 0.0095 -0.0198
+vertex -0.0055 -0.0095 -0.0213
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0138
-vertex -0.0295 -0.0115 -0.0132
-vertex -0.0295 -0.0085 -0.0132
+vertex -0.0055 -0.0095 -0.0138
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0085 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0138
-vertex -0.0295 -0.0115 -0.0132
-vertex -0.0295 -0.0095 -0.0138
+vertex -0.0055 -0.0105 -0.0138
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0095 -0.0138
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0238
-vertex -0.0295 -0.0105 -0.0238
-vertex -0.0295 -0.0095 -0.0222
+vertex -0.0055 -0.0095 -0.0238
+vertex -0.0055 -0.0105 -0.0238
+vertex -0.0055 -0.0095 -0.0222
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0213
-vertex -0.0295 -0.0095 -0.0222
-vertex -0.0295 -0.0095 -0.0213
+vertex -0.0055 0.0095 -0.0213
+vertex -0.0055 -0.0095 -0.0222
+vertex -0.0055 -0.0095 -0.0213
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0248
-vertex -0.0295 -0.0095 -0.0262
-vertex -0.0295 -0.0105 -0.0262
+vertex -0.0055 -0.0095 -0.0248
+vertex -0.0055 -0.0095 -0.0262
+vertex -0.0055 -0.0105 -0.0262
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0238
-vertex -0.0295 -0.0095 -0.0222
-vertex -0.0295 0.0095 -0.0222
+vertex -0.0055 -0.0095 -0.0238
+vertex -0.0055 -0.0095 -0.0222
+vertex -0.0055 0.0095 -0.0222
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0248
-vertex -0.0295 -0.0095 -0.0262
-vertex -0.0295 -0.0095 -0.0248
+vertex -0.0055 0.0095 -0.0248
+vertex -0.0055 -0.0095 -0.0262
+vertex -0.0055 -0.0095 -0.0248
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0272
-vertex -0.0295 -0.0095 -0.0288
-vertex -0.0295 -0.0095 -0.0272
+vertex -0.0055 0.0095 -0.0272
+vertex -0.0055 -0.0095 -0.0288
+vertex -0.0055 -0.0095 -0.0272
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0288
-vertex -0.0295 -0.0095 -0.0298
-vertex -0.0295 -0.0095 -0.0288
+vertex -0.0055 0.0095 -0.0288
+vertex -0.0055 -0.0095 -0.0298
+vertex -0.0055 -0.0095 -0.0288
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0272
-vertex -0.0295 -0.0095 -0.0262
-vertex -0.0295 0.0095 -0.0262
+vertex -0.0055 -0.0095 -0.0272
+vertex -0.0055 -0.0095 -0.0262
+vertex -0.0055 0.0095 -0.0262
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0288
-vertex -0.0295 -0.0105 -0.0288
-vertex -0.0295 -0.0095 -0.0272
+vertex -0.0055 -0.0095 -0.0288
+vertex -0.0055 -0.0105 -0.0288
+vertex -0.0055 -0.0095 -0.0272
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0248
-vertex -0.0295 -0.0095 -0.0238
-vertex -0.0295 0.0095 -0.0238
+vertex -0.0055 -0.0095 -0.0248
+vertex -0.0055 -0.0095 -0.0238
+vertex -0.0055 0.0095 -0.0238
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0298
-vertex -0.0295 -0.0095 -0.0298
-vertex -0.0295 -0.0095 -0.0312
+vertex -0.0055 -0.0105 -0.0298
+vertex -0.0055 -0.0095 -0.0298
+vertex -0.0055 -0.0095 -0.0312
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0298
-vertex -0.0295 0.0095 -0.0298
-vertex -0.0295 -0.0095 -0.0312
+vertex -0.0055 -0.0095 -0.0298
+vertex -0.0055 0.0095 -0.0298
+vertex -0.0055 -0.0095 -0.0312
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0120 0.0000
-vertex -0.0295 0.0120 0.0000
-vertex -0.0295 -0.0085 -0.0103
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 -0.0085 -0.0103
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0115 -0.0132
-vertex -0.0295 -0.0105 -0.0298
-vertex -0.0295 -0.0105 -0.0312
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0298
+vertex -0.0055 -0.0105 -0.0312
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0338
-vertex -0.0295 -0.0115 -0.0132
-vertex -0.0295 -0.0105 -0.0323
+vertex -0.0055 -0.0105 -0.0338
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0323
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0348
-vertex -0.0295 -0.0120 -0.0610
-vertex -0.0295 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0348
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0115 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0323
-vertex -0.0295 -0.0095 -0.0323
-vertex -0.0295 -0.0105 -0.0338
+vertex -0.0055 -0.0105 -0.0323
+vertex -0.0055 -0.0095 -0.0323
+vertex -0.0055 -0.0105 -0.0338
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0348
-vertex -0.0295 -0.0115 -0.0132
-vertex -0.0295 -0.0105 -0.0338
+vertex -0.0055 -0.0105 -0.0348
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0338
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0362
-vertex -0.0295 -0.0105 -0.0372
-vertex -0.0295 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0362
+vertex -0.0055 -0.0105 -0.0372
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0387
-vertex -0.0295 -0.0105 -0.0398
-vertex -0.0295 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0387
+vertex -0.0055 -0.0105 -0.0398
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0372
-vertex -0.0295 -0.0095 -0.0372
-vertex -0.0295 -0.0105 -0.0387
+vertex -0.0055 -0.0105 -0.0372
+vertex -0.0055 -0.0095 -0.0372
+vertex -0.0055 -0.0105 -0.0387
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0372
-vertex -0.0295 -0.0105 -0.0387
-vertex -0.0295 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0372
+vertex -0.0055 -0.0105 -0.0387
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0348
-vertex -0.0295 -0.0095 -0.0348
-vertex -0.0295 -0.0105 -0.0362
+vertex -0.0055 -0.0105 -0.0348
+vertex -0.0055 -0.0095 -0.0348
+vertex -0.0055 -0.0105 -0.0362
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0348
-vertex -0.0295 -0.0105 -0.0362
-vertex -0.0295 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0348
+vertex -0.0055 -0.0105 -0.0362
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0413
-vertex -0.0295 -0.0105 -0.0423
-vertex -0.0295 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0413
+vertex -0.0055 -0.0105 -0.0423
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0120 -0.0610
-vertex -0.0295 -0.0105 -0.0438
-vertex -0.0295 -0.0105 -0.0447
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0438
+vertex -0.0055 -0.0105 -0.0447
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0438
-vertex -0.0295 -0.0120 -0.0610
-vertex -0.0295 -0.0105 -0.0423
+vertex -0.0055 -0.0105 -0.0438
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0423
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0423
-vertex -0.0295 -0.0095 -0.0423
-vertex -0.0295 -0.0105 -0.0438
+vertex -0.0055 -0.0105 -0.0423
+vertex -0.0055 -0.0095 -0.0423
+vertex -0.0055 -0.0105 -0.0438
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0413
-vertex -0.0295 -0.0120 -0.0610
-vertex -0.0295 -0.0105 -0.0398
+vertex -0.0055 -0.0105 -0.0413
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0398
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0447
-vertex -0.0295 -0.0105 -0.0462
-vertex -0.0295 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0447
+vertex -0.0055 -0.0105 -0.0462
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0462
-vertex -0.0295 -0.0105 -0.0447
-vertex -0.0295 -0.0095 -0.0447
+vertex -0.0055 -0.0105 -0.0462
+vertex -0.0055 -0.0105 -0.0447
+vertex -0.0055 -0.0095 -0.0447
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0473
-vertex -0.0295 -0.0105 -0.0488
-vertex -0.0295 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0473
+vertex -0.0055 -0.0105 -0.0488
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0488
-vertex -0.0295 -0.0105 -0.0473
-vertex -0.0295 -0.0095 -0.0473
+vertex -0.0055 -0.0105 -0.0488
+vertex -0.0055 -0.0105 -0.0473
+vertex -0.0055 -0.0095 -0.0473
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0462
-vertex -0.0295 -0.0105 -0.0473
-vertex -0.0295 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0462
+vertex -0.0055 -0.0105 -0.0473
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0120 -0.0610
-vertex -0.0295 -0.0105 -0.0488
-vertex -0.0295 -0.0105 -0.0498
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0488
+vertex -0.0055 -0.0105 -0.0498
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0398
-vertex -0.0295 -0.0095 -0.0398
-vertex -0.0295 -0.0105 -0.0413
+vertex -0.0055 -0.0105 -0.0398
+vertex -0.0055 -0.0095 -0.0398
+vertex -0.0055 -0.0105 -0.0413
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0323
-vertex -0.0295 -0.0115 -0.0132
-vertex -0.0295 -0.0105 -0.0312
+vertex -0.0055 -0.0105 -0.0323
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0312
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0338
-vertex -0.0295 -0.0105 -0.0338
-vertex -0.0295 -0.0095 -0.0323
+vertex -0.0055 -0.0095 -0.0338
+vertex -0.0055 -0.0105 -0.0338
+vertex -0.0055 -0.0095 -0.0323
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0312
-vertex -0.0295 -0.0095 -0.0323
-vertex -0.0295 -0.0095 -0.0312
+vertex -0.0055 0.0095 -0.0312
+vertex -0.0055 -0.0095 -0.0323
+vertex -0.0055 -0.0095 -0.0312
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0362
-vertex -0.0295 -0.0105 -0.0362
-vertex -0.0295 -0.0095 -0.0348
+vertex -0.0055 -0.0095 -0.0362
+vertex -0.0055 -0.0105 -0.0362
+vertex -0.0055 -0.0095 -0.0348
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0338
-vertex -0.0295 -0.0095 -0.0348
-vertex -0.0295 -0.0095 -0.0338
+vertex -0.0055 0.0095 -0.0338
+vertex -0.0055 -0.0095 -0.0348
+vertex -0.0055 -0.0095 -0.0338
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0338
-vertex -0.0295 -0.0095 -0.0323
-vertex -0.0295 0.0095 -0.0323
+vertex -0.0055 -0.0095 -0.0338
+vertex -0.0055 -0.0095 -0.0323
+vertex -0.0055 0.0095 -0.0323
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0387
-vertex -0.0295 -0.0105 -0.0387
-vertex -0.0295 -0.0095 -0.0372
+vertex -0.0055 -0.0095 -0.0387
+vertex -0.0055 -0.0105 -0.0387
+vertex -0.0055 -0.0095 -0.0372
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0362
-vertex -0.0295 -0.0095 -0.0372
-vertex -0.0295 -0.0095 -0.0362
+vertex -0.0055 0.0095 -0.0362
+vertex -0.0055 -0.0095 -0.0372
+vertex -0.0055 -0.0095 -0.0362
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0413
-vertex -0.0295 -0.0105 -0.0413
-vertex -0.0295 -0.0095 -0.0398
+vertex -0.0055 -0.0095 -0.0413
+vertex -0.0055 -0.0105 -0.0413
+vertex -0.0055 -0.0095 -0.0398
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0387
-vertex -0.0295 -0.0095 -0.0398
-vertex -0.0295 -0.0095 -0.0387
+vertex -0.0055 0.0095 -0.0387
+vertex -0.0055 -0.0095 -0.0398
+vertex -0.0055 -0.0095 -0.0387
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0387
-vertex -0.0295 -0.0095 -0.0372
-vertex -0.0295 0.0095 -0.0372
+vertex -0.0055 -0.0095 -0.0387
+vertex -0.0055 -0.0095 -0.0372
+vertex -0.0055 0.0095 -0.0372
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0362
-vertex -0.0295 -0.0095 -0.0348
-vertex -0.0295 0.0095 -0.0348
+vertex -0.0055 -0.0095 -0.0362
+vertex -0.0055 -0.0095 -0.0348
+vertex -0.0055 0.0095 -0.0348
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0438
-vertex -0.0295 -0.0105 -0.0438
-vertex -0.0295 -0.0095 -0.0423
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 -0.0105 -0.0438
+vertex -0.0055 -0.0095 -0.0423
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0413
-vertex -0.0295 -0.0095 -0.0423
-vertex -0.0295 -0.0095 -0.0413
+vertex -0.0055 0.0095 -0.0413
+vertex -0.0055 -0.0095 -0.0423
+vertex -0.0055 -0.0095 -0.0413
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0447
-vertex -0.0295 -0.0095 -0.0462
-vertex -0.0295 -0.0105 -0.0462
+vertex -0.0055 -0.0095 -0.0447
+vertex -0.0055 -0.0095 -0.0462
+vertex -0.0055 -0.0105 -0.0462
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0438
-vertex -0.0295 -0.0095 -0.0423
-vertex -0.0295 0.0095 -0.0423
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 -0.0095 -0.0423
+vertex -0.0055 0.0095 -0.0423
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0085 -0.0478
-vertex -0.0295 -0.0095 -0.0462
-vertex -0.0295 -0.0095 -0.0447
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 -0.0095 -0.0462
+vertex -0.0055 -0.0095 -0.0447
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0085 -0.0478
-vertex -0.0295 -0.0095 -0.0488
-vertex -0.0295 -0.0095 -0.0473
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 -0.0095 -0.0488
+vertex -0.0055 -0.0095 -0.0473
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0085 -0.0478
-vertex -0.0295 -0.0095 -0.0498
-vertex -0.0295 -0.0095 -0.0488
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 -0.0095 -0.0498
+vertex -0.0055 -0.0095 -0.0488
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0473
-vertex -0.0295 -0.0095 -0.0462
-vertex -0.0295 0.0085 -0.0478
+vertex -0.0055 -0.0095 -0.0473
+vertex -0.0055 -0.0095 -0.0462
+vertex -0.0055 0.0085 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0488
-vertex -0.0295 -0.0105 -0.0488
-vertex -0.0295 -0.0095 -0.0473
+vertex -0.0055 -0.0095 -0.0488
+vertex -0.0055 -0.0105 -0.0488
+vertex -0.0055 -0.0095 -0.0473
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0447
-vertex -0.0295 -0.0095 -0.0438
-vertex -0.0295 0.0085 -0.0478
+vertex -0.0055 -0.0095 -0.0447
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 0.0085 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0498
-vertex -0.0295 -0.0095 -0.0498
-vertex -0.0295 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0498
+vertex -0.0055 -0.0095 -0.0498
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0413
-vertex -0.0295 -0.0095 -0.0398
-vertex -0.0295 0.0095 -0.0398
+vertex -0.0055 -0.0095 -0.0413
+vertex -0.0055 -0.0095 -0.0398
+vertex -0.0055 0.0095 -0.0398
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0105 -0.0312
-vertex -0.0295 -0.0105 -0.0298
-vertex -0.0295 -0.0095 -0.0312
+vertex -0.0055 -0.0105 -0.0312
+vertex -0.0055 -0.0105 -0.0298
+vertex -0.0055 -0.0095 -0.0312
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0120 -0.0610
-vertex -0.0295 -0.0095 -0.0498
-vertex -0.0295 0.0085 -0.0508
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0095 -0.0498
+vertex -0.0055 0.0085 -0.0508
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0173
-vertex -0.0295 -0.0095 -0.0173
-vertex -0.0295 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0173
+vertex -0.0055 -0.0095 -0.0173
+vertex -0.0055 -0.0085 -0.0132
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0138
-vertex -0.0295 -0.0085 -0.0132
-vertex -0.0295 0.0095 -0.0123
+vertex -0.0055 0.0095 -0.0138
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0123
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0163
-vertex -0.0295 -0.0085 -0.0132
-vertex -0.0295 0.0095 -0.0148
+vertex -0.0055 0.0095 -0.0163
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0148
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0123
-vertex -0.0295 0.0105 -0.0123
-vertex -0.0295 0.0095 -0.0138
+vertex -0.0055 0.0095 -0.0123
+vertex -0.0055 0.0105 -0.0123
+vertex -0.0055 0.0095 -0.0138
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0148
-vertex -0.0295 -0.0085 -0.0132
-vertex -0.0295 0.0095 -0.0138
+vertex -0.0055 0.0095 -0.0148
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0138
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0187
-vertex -0.0295 -0.0095 -0.0187
-vertex -0.0295 0.0095 -0.0173
+vertex -0.0055 0.0095 -0.0187
+vertex -0.0055 -0.0095 -0.0187
+vertex -0.0055 0.0095 -0.0173
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0213
-vertex -0.0295 -0.0095 -0.0213
-vertex -0.0295 0.0095 -0.0198
+vertex -0.0055 0.0095 -0.0213
+vertex -0.0055 -0.0095 -0.0213
+vertex -0.0055 0.0095 -0.0198
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0173
-vertex -0.0295 0.0105 -0.0173
-vertex -0.0295 0.0095 -0.0187
+vertex -0.0055 0.0095 -0.0173
+vertex -0.0055 0.0105 -0.0173
+vertex -0.0055 0.0095 -0.0187
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0198
-vertex -0.0295 -0.0095 -0.0198
-vertex -0.0295 0.0095 -0.0187
+vertex -0.0055 0.0095 -0.0198
+vertex -0.0055 -0.0095 -0.0198
+vertex -0.0055 0.0095 -0.0187
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0148
-vertex -0.0295 0.0105 -0.0148
-vertex -0.0295 0.0095 -0.0163
+vertex -0.0055 0.0095 -0.0148
+vertex -0.0055 0.0105 -0.0148
+vertex -0.0055 0.0095 -0.0163
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0173
-vertex -0.0295 -0.0085 -0.0132
-vertex -0.0295 0.0095 -0.0163
+vertex -0.0055 0.0095 -0.0173
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0163
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0238
-vertex -0.0295 -0.0095 -0.0238
-vertex -0.0295 0.0095 -0.0222
+vertex -0.0055 0.0095 -0.0238
+vertex -0.0055 -0.0095 -0.0238
+vertex -0.0055 0.0095 -0.0222
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0262
-vertex -0.0295 -0.0095 -0.0262
-vertex -0.0295 0.0095 -0.0248
+vertex -0.0055 0.0095 -0.0262
+vertex -0.0055 -0.0095 -0.0262
+vertex -0.0055 0.0095 -0.0248
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0222
-vertex -0.0295 0.0105 -0.0222
-vertex -0.0295 0.0095 -0.0238
+vertex -0.0055 0.0095 -0.0222
+vertex -0.0055 0.0105 -0.0222
+vertex -0.0055 0.0095 -0.0238
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0248
-vertex -0.0295 -0.0095 -0.0248
-vertex -0.0295 0.0095 -0.0238
+vertex -0.0055 0.0095 -0.0248
+vertex -0.0055 -0.0095 -0.0248
+vertex -0.0055 0.0095 -0.0238
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0288
-vertex -0.0295 -0.0095 -0.0288
-vertex -0.0295 0.0095 -0.0272
+vertex -0.0055 0.0095 -0.0288
+vertex -0.0055 -0.0095 -0.0288
+vertex -0.0055 0.0095 -0.0272
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0312
-vertex -0.0295 -0.0095 -0.0312
-vertex -0.0295 0.0095 -0.0298
+vertex -0.0055 0.0095 -0.0312
+vertex -0.0055 -0.0095 -0.0312
+vertex -0.0055 0.0095 -0.0298
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0272
-vertex -0.0295 0.0105 -0.0272
-vertex -0.0295 0.0095 -0.0288
+vertex -0.0055 0.0095 -0.0272
+vertex -0.0055 0.0105 -0.0272
+vertex -0.0055 0.0095 -0.0288
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0298
-vertex -0.0295 -0.0095 -0.0298
-vertex -0.0295 0.0095 -0.0288
+vertex -0.0055 0.0095 -0.0298
+vertex -0.0055 -0.0095 -0.0298
+vertex -0.0055 0.0095 -0.0288
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0248
-vertex -0.0295 0.0105 -0.0248
-vertex -0.0295 0.0095 -0.0262
+vertex -0.0055 0.0095 -0.0248
+vertex -0.0055 0.0105 -0.0248
+vertex -0.0055 0.0095 -0.0262
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0272
-vertex -0.0295 -0.0095 -0.0272
-vertex -0.0295 0.0095 -0.0262
+vertex -0.0055 0.0095 -0.0272
+vertex -0.0055 -0.0095 -0.0272
+vertex -0.0055 0.0095 -0.0262
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0198
-vertex -0.0295 0.0105 -0.0198
-vertex -0.0295 0.0095 -0.0213
+vertex -0.0055 0.0095 -0.0198
+vertex -0.0055 0.0105 -0.0198
+vertex -0.0055 0.0095 -0.0213
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0222
-vertex -0.0295 -0.0095 -0.0222
-vertex -0.0295 0.0095 -0.0213
+vertex -0.0055 0.0095 -0.0222
+vertex -0.0055 -0.0095 -0.0222
+vertex -0.0055 0.0095 -0.0213
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0123
-vertex -0.0295 0.0105 -0.0112
-vertex -0.0295 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0123
+vertex -0.0055 0.0105 -0.0112
+vertex -0.0055 0.0120 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0148
-vertex -0.0295 0.0105 -0.0138
-vertex -0.0295 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0148
+vertex -0.0055 0.0105 -0.0138
+vertex -0.0055 0.0120 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0123
-vertex -0.0295 0.0120 0.0000
-vertex -0.0295 0.0105 -0.0138
+vertex -0.0055 0.0105 -0.0123
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0138
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0123
-vertex -0.0295 0.0105 -0.0138
-vertex -0.0295 0.0095 -0.0138
+vertex -0.0055 0.0105 -0.0123
+vertex -0.0055 0.0105 -0.0138
+vertex -0.0055 0.0095 -0.0138
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0163
-vertex -0.0295 0.0120 0.0000
-vertex -0.0295 0.0105 -0.0173
+vertex -0.0055 0.0105 -0.0163
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0173
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0120 0.0000
-vertex -0.0295 0.0105 -0.0163
-vertex -0.0295 0.0105 -0.0148
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0163
+vertex -0.0055 0.0105 -0.0148
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0173
-vertex -0.0295 0.0105 -0.0187
-vertex -0.0295 0.0095 -0.0187
+vertex -0.0055 0.0105 -0.0173
+vertex -0.0055 0.0105 -0.0187
+vertex -0.0055 0.0095 -0.0187
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0187
-vertex -0.0295 0.0105 -0.0173
-vertex -0.0295 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0187
+vertex -0.0055 0.0105 -0.0173
+vertex -0.0055 0.0120 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0120 0.0000
-vertex -0.0295 0.0105 -0.0198
-vertex -0.0295 0.0105 -0.0187
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0198
+vertex -0.0055 0.0105 -0.0187
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0112
-vertex -0.0295 0.0095 -0.0112
-vertex -0.0295 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0112
+vertex -0.0055 0.0095 -0.0112
+vertex -0.0055 0.0120 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0148
-vertex -0.0295 0.0105 -0.0163
-vertex -0.0295 0.0095 -0.0163
+vertex -0.0055 0.0105 -0.0148
+vertex -0.0055 0.0105 -0.0163
+vertex -0.0055 0.0095 -0.0163
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0198
-vertex -0.0295 0.0105 -0.0213
-vertex -0.0295 0.0095 -0.0213
+vertex -0.0055 0.0105 -0.0198
+vertex -0.0055 0.0105 -0.0213
+vertex -0.0055 0.0095 -0.0213
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0213
-vertex -0.0295 0.0105 -0.0198
-vertex -0.0295 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0213
+vertex -0.0055 0.0105 -0.0198
+vertex -0.0055 0.0120 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0222
-vertex -0.0295 0.0105 -0.0238
-vertex -0.0295 0.0095 -0.0238
+vertex -0.0055 0.0105 -0.0222
+vertex -0.0055 0.0105 -0.0238
+vertex -0.0055 0.0095 -0.0238
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0238
-vertex -0.0295 0.0105 -0.0222
-vertex -0.0295 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0238
+vertex -0.0055 0.0105 -0.0222
+vertex -0.0055 0.0120 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0213
-vertex -0.0295 0.0120 0.0000
-vertex -0.0295 0.0105 -0.0222
+vertex -0.0055 0.0105 -0.0213
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0222
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0248
-vertex -0.0295 0.0105 -0.0262
-vertex -0.0295 0.0095 -0.0262
+vertex -0.0055 0.0105 -0.0248
+vertex -0.0055 0.0105 -0.0262
+vertex -0.0055 0.0095 -0.0262
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0262
-vertex -0.0295 0.0105 -0.0248
-vertex -0.0295 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0262
+vertex -0.0055 0.0105 -0.0248
+vertex -0.0055 0.0120 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0272
-vertex -0.0295 0.0105 -0.0288
-vertex -0.0295 0.0095 -0.0288
+vertex -0.0055 0.0105 -0.0272
+vertex -0.0055 0.0105 -0.0288
+vertex -0.0055 0.0095 -0.0288
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0115 -0.0478
-vertex -0.0295 0.0105 -0.0288
-vertex -0.0295 0.0105 -0.0272
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0288
+vertex -0.0055 0.0105 -0.0272
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0115 -0.0478
-vertex -0.0295 0.0105 -0.0298
-vertex -0.0295 0.0105 -0.0288
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0298
+vertex -0.0055 0.0105 -0.0288
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0272
-vertex -0.0295 0.0105 -0.0262
-vertex -0.0295 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0272
+vertex -0.0055 0.0105 -0.0262
+vertex -0.0055 0.0115 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0238
-vertex -0.0295 0.0120 0.0000
-vertex -0.0295 0.0105 -0.0248
+vertex -0.0055 0.0105 -0.0238
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0248
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0120 0.0000
-vertex -0.0295 0.0115 -0.0478
-vertex -0.0295 0.0105 -0.0262
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0262
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0112
-vertex -0.0295 -0.0085 -0.0103
-vertex -0.0295 0.0120 0.0000
+vertex -0.0055 0.0095 -0.0112
+vertex -0.0055 -0.0085 -0.0103
+vertex -0.0055 0.0120 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0298
-vertex -0.0295 0.0105 -0.0298
-vertex -0.0295 0.0105 -0.0312
+vertex -0.0055 0.0095 -0.0298
+vertex -0.0055 0.0105 -0.0298
+vertex -0.0055 0.0105 -0.0312
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0338
-vertex -0.0295 -0.0095 -0.0338
-vertex -0.0295 0.0095 -0.0323
+vertex -0.0055 0.0095 -0.0338
+vertex -0.0055 -0.0095 -0.0338
+vertex -0.0055 0.0095 -0.0323
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0362
-vertex -0.0295 -0.0095 -0.0362
-vertex -0.0295 0.0095 -0.0348
+vertex -0.0055 0.0095 -0.0362
+vertex -0.0055 -0.0095 -0.0362
+vertex -0.0055 0.0095 -0.0348
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0323
-vertex -0.0295 0.0105 -0.0323
-vertex -0.0295 0.0095 -0.0338
+vertex -0.0055 0.0095 -0.0323
+vertex -0.0055 0.0105 -0.0323
+vertex -0.0055 0.0095 -0.0338
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0348
-vertex -0.0295 -0.0095 -0.0348
-vertex -0.0295 0.0095 -0.0338
+vertex -0.0055 0.0095 -0.0348
+vertex -0.0055 -0.0095 -0.0348
+vertex -0.0055 0.0095 -0.0338
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0387
-vertex -0.0295 -0.0095 -0.0387
-vertex -0.0295 0.0095 -0.0372
+vertex -0.0055 0.0095 -0.0387
+vertex -0.0055 -0.0095 -0.0387
+vertex -0.0055 0.0095 -0.0372
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0413
-vertex -0.0295 -0.0095 -0.0413
-vertex -0.0295 0.0095 -0.0398
+vertex -0.0055 0.0095 -0.0413
+vertex -0.0055 -0.0095 -0.0413
+vertex -0.0055 0.0095 -0.0398
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0372
-vertex -0.0295 0.0105 -0.0372
-vertex -0.0295 0.0095 -0.0387
+vertex -0.0055 0.0095 -0.0372
+vertex -0.0055 0.0105 -0.0372
+vertex -0.0055 0.0095 -0.0387
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0398
-vertex -0.0295 -0.0095 -0.0398
-vertex -0.0295 0.0095 -0.0387
+vertex -0.0055 0.0095 -0.0398
+vertex -0.0055 -0.0095 -0.0398
+vertex -0.0055 0.0095 -0.0387
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0348
-vertex -0.0295 0.0105 -0.0348
-vertex -0.0295 0.0095 -0.0362
+vertex -0.0055 0.0095 -0.0348
+vertex -0.0055 0.0105 -0.0348
+vertex -0.0055 0.0095 -0.0362
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0372
-vertex -0.0295 -0.0095 -0.0372
-vertex -0.0295 0.0095 -0.0362
+vertex -0.0055 0.0095 -0.0372
+vertex -0.0055 -0.0095 -0.0372
+vertex -0.0055 0.0095 -0.0362
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0438
-vertex -0.0295 -0.0095 -0.0438
-vertex -0.0295 0.0095 -0.0423
+vertex -0.0055 0.0095 -0.0438
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 0.0095 -0.0423
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0085 -0.0478
-vertex -0.0295 0.0085 -0.0508
-vertex -0.0295 -0.0095 -0.0498
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 0.0085 -0.0508
+vertex -0.0055 -0.0095 -0.0498
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0115 -0.0478
-vertex -0.0295 0.0085 -0.0478
-vertex -0.0295 0.0095 -0.0473
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 0.0095 -0.0473
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0438
-vertex -0.0295 0.0095 -0.0438
-vertex -0.0295 0.0085 -0.0478
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 0.0095 -0.0438
+vertex -0.0055 0.0085 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0423
-vertex -0.0295 0.0095 -0.0413
-vertex -0.0295 0.0095 -0.0423
+vertex -0.0055 -0.0095 -0.0423
+vertex -0.0055 0.0095 -0.0413
+vertex -0.0055 0.0095 -0.0423
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0438
-vertex -0.0295 0.0095 -0.0447
-vertex -0.0295 0.0085 -0.0478
+vertex -0.0055 0.0095 -0.0438
+vertex -0.0055 0.0095 -0.0447
+vertex -0.0055 0.0085 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0462
-vertex -0.0295 0.0095 -0.0473
-vertex -0.0295 0.0085 -0.0478
+vertex -0.0055 0.0095 -0.0462
+vertex -0.0055 0.0095 -0.0473
+vertex -0.0055 0.0085 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0447
-vertex -0.0295 0.0105 -0.0447
-vertex -0.0295 0.0095 -0.0462
+vertex -0.0055 0.0095 -0.0447
+vertex -0.0055 0.0105 -0.0447
+vertex -0.0055 0.0095 -0.0462
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0447
-vertex -0.0295 0.0095 -0.0462
-vertex -0.0295 0.0085 -0.0478
+vertex -0.0055 0.0095 -0.0447
+vertex -0.0055 0.0095 -0.0462
+vertex -0.0055 0.0085 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0423
-vertex -0.0295 0.0105 -0.0423
-vertex -0.0295 0.0095 -0.0438
+vertex -0.0055 0.0095 -0.0423
+vertex -0.0055 0.0105 -0.0423
+vertex -0.0055 0.0095 -0.0438
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0473
-vertex -0.0295 0.0105 -0.0473
-vertex -0.0295 0.0115 -0.0478
+vertex -0.0055 0.0095 -0.0473
+vertex -0.0055 0.0105 -0.0473
+vertex -0.0055 0.0115 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0398
-vertex -0.0295 0.0105 -0.0398
-vertex -0.0295 0.0095 -0.0413
+vertex -0.0055 0.0095 -0.0398
+vertex -0.0055 0.0105 -0.0398
+vertex -0.0055 0.0095 -0.0413
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0095 -0.0323
-vertex -0.0295 0.0095 -0.0312
-vertex -0.0295 0.0095 -0.0323
+vertex -0.0055 -0.0095 -0.0323
+vertex -0.0055 0.0095 -0.0312
+vertex -0.0055 0.0095 -0.0323
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0323
-vertex -0.0295 0.0105 -0.0312
-vertex -0.0295 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0323
+vertex -0.0055 0.0105 -0.0312
+vertex -0.0055 0.0115 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0348
-vertex -0.0295 0.0105 -0.0338
-vertex -0.0295 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0348
+vertex -0.0055 0.0105 -0.0338
+vertex -0.0055 0.0115 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0323
-vertex -0.0295 0.0115 -0.0478
-vertex -0.0295 0.0105 -0.0338
+vertex -0.0055 0.0105 -0.0323
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0338
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0323
-vertex -0.0295 0.0105 -0.0338
-vertex -0.0295 0.0095 -0.0338
+vertex -0.0055 0.0105 -0.0323
+vertex -0.0055 0.0105 -0.0338
+vertex -0.0055 0.0095 -0.0338
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0372
-vertex -0.0295 0.0105 -0.0362
-vertex -0.0295 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0372
+vertex -0.0055 0.0105 -0.0362
+vertex -0.0055 0.0115 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0398
-vertex -0.0295 0.0105 -0.0387
-vertex -0.0295 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0398
+vertex -0.0055 0.0105 -0.0387
+vertex -0.0055 0.0115 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0372
-vertex -0.0295 0.0115 -0.0478
-vertex -0.0295 0.0105 -0.0387
+vertex -0.0055 0.0105 -0.0372
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0387
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0372
-vertex -0.0295 0.0105 -0.0387
-vertex -0.0295 0.0095 -0.0387
+vertex -0.0055 0.0105 -0.0372
+vertex -0.0055 0.0105 -0.0387
+vertex -0.0055 0.0095 -0.0387
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0348
-vertex -0.0295 0.0115 -0.0478
-vertex -0.0295 0.0105 -0.0362
+vertex -0.0055 0.0105 -0.0348
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0362
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0348
-vertex -0.0295 0.0105 -0.0362
-vertex -0.0295 0.0095 -0.0362
+vertex -0.0055 0.0105 -0.0348
+vertex -0.0055 0.0105 -0.0362
+vertex -0.0055 0.0095 -0.0362
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0423
-vertex -0.0295 0.0105 -0.0413
-vertex -0.0295 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0423
+vertex -0.0055 0.0105 -0.0413
+vertex -0.0055 0.0115 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0447
-vertex -0.0295 0.0105 -0.0438
-vertex -0.0295 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0447
+vertex -0.0055 0.0105 -0.0438
+vertex -0.0055 0.0115 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0423
-vertex -0.0295 0.0115 -0.0478
-vertex -0.0295 0.0105 -0.0438
+vertex -0.0055 0.0105 -0.0423
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0438
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0423
-vertex -0.0295 0.0105 -0.0438
-vertex -0.0295 0.0095 -0.0438
+vertex -0.0055 0.0105 -0.0423
+vertex -0.0055 0.0105 -0.0438
+vertex -0.0055 0.0095 -0.0438
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0473
-vertex -0.0295 0.0105 -0.0462
-vertex -0.0295 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0473
+vertex -0.0055 0.0105 -0.0462
+vertex -0.0055 0.0115 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0115 -0.0478
-vertex -0.0295 0.0120 -0.0610
-vertex -0.0295 0.0115 -0.0508
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0120 -0.0610
+vertex -0.0055 0.0115 -0.0508
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0120 -0.0610
-vertex -0.0295 0.0115 -0.0478
-vertex -0.0295 0.0120 0.0000
+vertex -0.0055 0.0120 -0.0610
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0120 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0120 -0.0610
-vertex -0.0295 0.0085 -0.0508
-vertex -0.0295 0.0115 -0.0508
+vertex -0.0055 0.0120 -0.0610
+vertex -0.0055 0.0085 -0.0508
+vertex -0.0055 0.0115 -0.0508
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0462
-vertex -0.0295 0.0105 -0.0447
-vertex -0.0295 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0462
+vertex -0.0055 0.0105 -0.0447
+vertex -0.0055 0.0115 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0413
-vertex -0.0295 0.0105 -0.0398
-vertex -0.0295 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0413
+vertex -0.0055 0.0105 -0.0398
+vertex -0.0055 0.0115 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0447
-vertex -0.0295 0.0105 -0.0462
-vertex -0.0295 0.0095 -0.0462
+vertex -0.0055 0.0105 -0.0447
+vertex -0.0055 0.0105 -0.0462
+vertex -0.0055 0.0095 -0.0462
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0312
-vertex -0.0295 0.0105 -0.0298
-vertex -0.0295 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0312
+vertex -0.0055 0.0105 -0.0298
+vertex -0.0055 0.0115 -0.0478
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0105 -0.0398
-vertex -0.0295 0.0105 -0.0413
-vertex -0.0295 0.0095 -0.0413
+vertex -0.0055 0.0105 -0.0398
+vertex -0.0055 0.0105 -0.0413
+vertex -0.0055 0.0095 -0.0413
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0312
-vertex -0.0295 0.0095 -0.0298
-vertex -0.0295 0.0105 -0.0312
+vertex -0.0055 0.0095 -0.0312
+vertex -0.0055 0.0095 -0.0298
+vertex -0.0055 0.0105 -0.0312
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0085 -0.0508
-vertex -0.0295 0.0120 -0.0610
-vertex -0.0295 -0.0120 -0.0610
+vertex -0.0055 0.0085 -0.0508
+vertex -0.0055 0.0120 -0.0610
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0095 -0.0123
-vertex -0.0295 -0.0085 -0.0132
-vertex -0.0295 0.0095 -0.0112
+vertex -0.0055 0.0095 -0.0123
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0112
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0120 0.0000
-vertex -0.0220 0.0120 -0.0335
-vertex -0.0295 0.0120 -0.0610
+vertex -0.0055 0.0120 0.0000
+vertex 0.0076 0.0120 -0.0367
+vertex -0.0055 0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0220 0.0120 -0.0335
-vertex -0.0295 0.0120 0.0000
-vertex 0.0130 0.0120 -0.0335
+vertex 0.0076 0.0120 -0.0367
+vertex -0.0055 0.0120 0.0000
+vertex 0.0305 0.0120 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 0.0120 -0.0610
-vertex -0.0220 0.0120 -0.0515
-vertex 0.0130 0.0120 -0.0515
+vertex -0.0055 0.0120 -0.0610
+vertex 0.0076 0.0120 -0.0548
+vertex 0.0305 0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0220 0.0120 -0.0515
-vertex -0.0295 0.0120 -0.0610
-vertex -0.0220 0.0120 -0.0335
+vertex 0.0076 0.0120 -0.0548
+vertex -0.0055 0.0120 -0.0610
+vertex 0.0076 0.0120 -0.0367
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0130 0.0120 -0.0335
+vertex 0.0282 0.0120 -0.0367
 vertex 0.0305 0.0120 0.0000
 vertex 0.0305 0.0120 -0.0610
 endloop
@@ -2347,22 +2347,22 @@ 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
+vertex 0.0282 0.0120 -0.0367
+vertex 0.0076 0.0120 -0.0367
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0130 0.0120 -0.0515
+vertex 0.0282 0.0120 -0.0548
 vertex 0.0305 0.0120 -0.0610
-vertex -0.0295 0.0120 -0.0610
+vertex 0.0076 0.0120 -0.0548
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.0305 0.0120 -0.0610
-vertex 0.0130 0.0120 -0.0515
-vertex 0.0130 0.0120 -0.0335
+vertex 0.0282 0.0120 -0.0548
+vertex 0.0282 0.0120 -0.0367
 endloop
 endfacet
 facet normal 0 0 0
@@ -3726,99 +3726,99 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.0305 -0.0120 0.0000
-vertex 0.0155 -0.0120 -0.0380
+vertex 0.0249 -0.0120 -0.0435
 vertex 0.0305 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0155 -0.0120 -0.0380
+vertex 0.0249 -0.0120 -0.0435
 vertex 0.0305 -0.0120 0.0000
-vertex -0.0295 -0.0120 0.0000
+vertex 0.0044 -0.0120 -0.0435
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.0305 -0.0120 -0.0610
-vertex 0.0155 -0.0120 -0.0510
-vertex -0.0145 -0.0120 -0.0510
+vertex 0.0249 -0.0120 -0.0565
+vertex 0.0044 -0.0120 -0.0565
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0155 -0.0120 -0.0510
+vertex 0.0249 -0.0120 -0.0565
 vertex 0.0305 -0.0120 -0.0610
-vertex 0.0155 -0.0120 -0.0380
+vertex 0.0249 -0.0120 -0.0435
 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
+vertex 0.0044 -0.0120 -0.0435
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0120 0.0000
-vertex -0.0145 -0.0120 -0.0380
-vertex 0.0155 -0.0120 -0.0380
+vertex -0.0055 -0.0120 0.0000
+vertex 0.0044 -0.0120 -0.0435
+vertex 0.0305 -0.0120 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0145 -0.0120 -0.0510
-vertex -0.0295 -0.0120 -0.0610
+vertex 0.0044 -0.0120 -0.0565
+vertex -0.0055 -0.0120 -0.0610
 vertex 0.0305 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0120 -0.0610
-vertex -0.0145 -0.0120 -0.0510
-vertex -0.0145 -0.0120 -0.0380
+vertex -0.0055 -0.0120 -0.0610
+vertex 0.0044 -0.0120 -0.0565
+vertex 0.0044 -0.0120 -0.0435
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0308 0.0205 -0.0000
-vertex -0.0308 0.0305 -0.0000
-vertex -0.0499 0.0305 0.0191
+vertex -0.0288 0.0205 -0.0000
+vertex -0.0288 0.0305 -0.0000
+vertex -0.0479 0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0499 0.0305 0.0191
-vertex -0.0499 0.0205 0.0191
-vertex -0.0308 0.0205 -0.0000
+vertex -0.0479 0.0305 0.0191
+vertex -0.0479 0.0205 0.0191
+vertex -0.0288 0.0205 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0408 0.0305 0.0000
-vertex 0.0308 0.0305 0.0000
-vertex 0.0308 -0.0305 0.0000
+vertex 0.0388 0.0305 0.0000
+vertex 0.0288 0.0305 0.0000
+vertex 0.0288 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0308 -0.0305 0.0000
-vertex 0.0408 -0.0305 0.0000
-vertex 0.0408 0.0305 0.0000
+vertex 0.0288 -0.0305 0.0000
+vertex 0.0388 -0.0305 0.0000
+vertex 0.0388 0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0499 -0.0305 0.0907
-vertex -0.0499 -0.0305 0.0807
-vertex -0.0499 0.0305 0.0807
+vertex -0.0479 -0.0305 0.0867
+vertex -0.0479 -0.0305 0.0767
+vertex -0.0479 0.0305 0.0767
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0499 0.0305 0.0807
-vertex -0.0499 0.0305 0.0907
-vertex -0.0499 -0.0305 0.0907
+vertex -0.0479 0.0305 0.0767
+vertex -0.0479 0.0305 0.0867
+vertex -0.0479 -0.0305 0.0867
 endloop
 endfacet
 facet normal 0 0 0
@@ -3991,8 +3991,8 @@ 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.0055 -0.0120 -0.0070
+vertex 0.0055 -0.0120 0.0000
 vertex -0.0305 -0.0120 0.0000
 endloop
 endfacet
@@ -4000,21 +4000,21 @@ 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
+vertex 0.0055 -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
+vertex 0.0045 -0.0120 -0.0000
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0120 -0.0610
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0295 -0.0120 -0.0610
-vertex -0.0195 -0.0120 -0.0610
-vertex -0.0195 -0.0120 -0.0000
+vertex -0.0055 -0.0120 -0.0610
+vertex 0.0045 -0.0120 -0.0610
+vertex 0.0045 -0.0120 -0.0000
 endloop
 endfacet
 endsolid python
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
index 64dfa1eaae01996e55eca8c29e855d6173ef514e..af0627b2bbad9bc17324f2115283495ece127d0d 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
@@ -943,13 +943,13 @@ LINE
   8
 0
  10
-160.30855606972293
+152.30855606972293
  20
 105.00000000000001
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 105.00000000000001
  31
@@ -961,13 +961,13 @@ LINE
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 166.0
  30
 0.0
  11
-160.30855606972293
+152.30855606972293
  21
 166.0
  31
@@ -981,13 +981,13 @@ DOTTED
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 166.0
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 105.00000000000001
  31
@@ -999,13 +999,13 @@ LINE
   8
 0
  10
-170.30855606972293
+162.30855606972293
  20
 105.00000000000001
  30
 0.0
  11
-160.30855606972293
+152.30855606972293
  21
 105.00000000000001
  31
@@ -1017,13 +1017,13 @@ LINE
   8
 0
  10
-170.30855606972293
+162.30855606972293
  20
 166.0
  30
 0.0
  11
-170.30855606972293
+162.30855606972293
  21
 105.00000000000001
  31
@@ -1035,13 +1035,13 @@ LINE
   8
 0
  10
-160.30855606972293
+152.30855606972293
  20
 166.0
  30
 0.0
  11
-170.30855606972293
+162.30855606972293
  21
 166.0
  31
@@ -1053,13 +1053,13 @@ LINE
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 166.0
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 166.0
  31
@@ -1073,13 +1073,13 @@ DOTTED
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 105.00000000000001
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 166.0
  31
@@ -1093,13 +1093,13 @@ DOTTED
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 105.00000000000001
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 105.00000000000001
  31
@@ -1111,13 +1111,13 @@ LINE
   8
 0
  10
-10.000000000000002
+10.000000000000016
  20
 166.0
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 166.0
  31
@@ -1129,13 +1129,13 @@ LINE
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 105.00000000000001
  30
 0.0
  11
-10.000000000000002
+10.000000000000016
  21
 105.00000000000001
  31
@@ -1201,13 +1201,13 @@ LINE
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 105.00000000000001
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 88.00000000000001
  31
@@ -1219,13 +1219,13 @@ LINE
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 88.00000000000001
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 105.00000000000001
  31
@@ -1239,13 +1239,13 @@ DOTTED
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 88.00000000000001
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 88.00000000000001
  31
@@ -1257,13 +1257,13 @@ LINE
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 88.00000000000001
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 27.000000000000004
  31
@@ -1275,13 +1275,13 @@ LINE
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 27.000000000000004
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 88.00000000000001
  31
@@ -1295,13 +1295,13 @@ DOTTED
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 27.000000000000004
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 27.000000000000004
  31
@@ -1313,13 +1313,13 @@ LINE
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 27.000000000000004
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 10.000000000000002
  31
@@ -1331,13 +1331,13 @@ LINE
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 10.000000000000002
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 27.000000000000004
  31
@@ -1351,13 +1351,13 @@ DOTTED
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 10.000000000000002
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 10.000000000000002
  31
@@ -1369,13 +1369,13 @@ LINE
   8
 0
  10
-71.65427803486145
+67.65427803486148
  20
 0.0
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 10.000000000000002
  31
@@ -1387,13 +1387,13 @@ LINE
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 0.0
  30
 0.0
  11
-71.65427803486145
+67.65427803486148
  21
 0.0
  31
@@ -1405,13 +1405,13 @@ LINE
   8
 0
  10
-98.65427803486146
+94.65427803486148
  20
 10.000000000000002
  30
 0.0
  11
-98.65427803486146
+94.65427803486148
  21
 0.0
  31
@@ -1423,13 +1423,13 @@ LINE
   8
 0
  10
-167.80855606972293
+159.80855606972293
  20
 154.90909090909093
  30
 0.0
  11
-162.80855606972293
+154.80855606972293
  21
 154.90909090909093
  31
@@ -1441,13 +1441,13 @@ LINE
   8
 0
  10
-162.80855606972293
+154.80855606972293
  20
 154.90909090909093
  30
 0.0
  11
-162.80855606972293
+154.80855606972293
  21
 143.8181818181818
  31
@@ -1459,13 +1459,13 @@ LINE
   8
 0
  10
-162.80855606972293
+154.80855606972293
  20
 143.8181818181818
  30
 0.0
  11
-167.80855606972293
+159.8085560697229
  21
 143.8181818181818
  31
@@ -1477,13 +1477,13 @@ LINE
   8
 0
  10
-167.80855606972293
+159.80855606972293
  20
 127.1818181818182
  30
 0.0
  11
-162.80855606972293
+154.80855606972293
  21
 127.1818181818182
  31
@@ -1495,13 +1495,13 @@ LINE
   8
 0
  10
-162.80855606972293
+154.80855606972293
  20
 127.1818181818182
  30
 0.0
  11
-162.80855606972293
+154.80855606972293
  21
 116.09090909090911
  31
@@ -1513,13 +1513,13 @@ LINE
   8
 0
  10
-162.80855606972293
+154.80855606972293
  20
 116.09090909090911
  30
 0.0
  11
-167.80855606972293
+159.8085560697229
  21
 116.09090909090911
  31
@@ -1531,13 +1531,13 @@ LINE
   8
 0
  10
-94.15427803486146
+90.15427803486148
  20
 102.50000000000001
  30
 0.0
  11
-94.15427803486146
+90.15427803486148
  21
 108.50000000000001
  31
@@ -1549,13 +1549,13 @@ LINE
   8
 0
  10
-94.15427803486146
+90.15427803486148
  20
 108.50000000000001
  30
 0.0
  11
-76.15427803486145
+72.15427803486148
  21
 108.50000000000001
  31
@@ -1567,13 +1567,13 @@ LINE
   8
 0
  10
-76.15427803486145
+72.15427803486148
  20
 108.50000000000001
  30
 0.0
  11
-76.15427803486145
+72.15427803486148
  21
 102.50000000000001
  31
@@ -1585,13 +1585,13 @@ LINE
   8
 0
  10
-76.15427803486145
+72.15427803486148
  20
 102.50000000000001
  30
 0.0
  11
-94.15427803486146
+90.15427803486148
  21
 102.50000000000001
  31
@@ -1603,13 +1603,13 @@ LINE
   8
 0
  10
-80.40427803486146
+76.40427803486146
  20
 158.25000000000003
  30
 0.0
  11
-89.90427803486145
+85.90427803486148
  21
 158.25000000000003
  31
@@ -1621,13 +1621,13 @@ LINE
   8
 0
  10
-89.90427803486145
+85.90427803486148
  20
 158.25000000000003
  30
 0.0
  11
-89.90427803486145
+85.90427803486148
  21
 158.75000000000003
  31
@@ -1639,13 +1639,13 @@ LINE
   8
 0
  10
-89.90427803486145
+85.90427803486148
  20
 158.75000000000003
  30
 0.0
  11
-80.40427803486146
+76.40427803486146
  21
 158.75000000000003
  31
@@ -1657,13 +1657,13 @@ LINE
   8
 0
  10
-80.40427803486146
+76.40427803486146
  20
 158.75000000000003
  30
 0.0
  11
-80.40427803486146
+76.40427803486146
  21
 158.25000000000003
  31
@@ -1731,13 +1731,13 @@ LINE
  10
 2.5000000000000004
  20
-143.81818181818184
+143.8181818181818
  30
 0.0
  11
 7.500000000000001
  21
-143.81818181818184
+143.8181818181818
  31
 0.0
   0
@@ -1749,7 +1749,7 @@ LINE
  10
 7.500000000000001
  20
-143.81818181818184
+143.8181818181818
  30
 0.0
  11
@@ -1783,13 +1783,13 @@ LINE
   8
 0
  10
-89.65427803486146
+85.65427803486148
  20
 2.5000000000000004
  30
 0.0
  11
-89.65427803486146
+85.65427803486148
  21
 7.500000000000001
  31
@@ -1801,13 +1801,13 @@ LINE
   8
 0
  10
-89.65427803486146
+85.65427803486148
  20
 7.500000000000001
  30
 0.0
  11
-80.65427803486146
+76.65427803486148
  21
 7.500000000000001
  31
@@ -1819,13 +1819,13 @@ LINE
   8
 0
  10
-80.65427803486146
+76.65427803486148
  20
 7.500000000000001
  30
 0.0
  11
-80.65427803486146
+76.65427803486148
  21
 2.5000000000000004
  31
@@ -1837,13 +1837,13 @@ LINE
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 135.50000000000003
  31
@@ -1857,13 +1857,13 @@ DOTTED
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 135.50000000000003
  31
@@ -1875,13 +1875,13 @@ LINE
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 135.50000000000003
  31
@@ -1895,13 +1895,13 @@ DOTTED
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -1913,13 +1913,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -1931,13 +1931,13 @@ LINE
   8
 0
  10
-266.3318087401493
+258.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 135.50000000000003
  31
@@ -1949,13 +1949,13 @@ LINE
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-253.33180874014934
+245.33180874014934
  21
 135.50000000000003
  31
@@ -1967,13 +1967,13 @@ LINE
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 135.50000000000003
  31
@@ -1985,13 +1985,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -2003,13 +2003,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 135.50000000000003
  31
@@ -2021,13 +2021,13 @@ LINE
   8
 0
  10
-253.33180874014934
+245.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 135.50000000000003
  31
@@ -2039,13 +2039,13 @@ LINE
   8
 0
  10
-253.33180874014934
+245.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-253.33180874014934
+245.33180874014934
  21
 135.50000000000003
  31
@@ -2057,13 +2057,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 101.50000000000001
  31
@@ -2077,13 +2077,13 @@ DOTTED
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 135.50000000000003
  31
@@ -2095,13 +2095,13 @@ LINE
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 65.5
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 101.50000000000001
  31
@@ -2115,13 +2115,13 @@ DOTTED
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 65.5
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 65.5
  31
@@ -2133,13 +2133,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 65.5
  31
@@ -2151,13 +2151,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 65.5
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 20.5
  31
@@ -2169,13 +2169,13 @@ LINE
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 20.5
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 65.5
  31
@@ -2187,13 +2187,13 @@ LINE
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 15.500000000000004
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 20.5
  31
@@ -2205,13 +2205,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 15.500000000000004
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 15.500000000000004
  31
@@ -2223,13 +2223,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 20.5
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 15.500000000000004
  31
@@ -2241,13 +2241,13 @@ LINE
   8
 0
  10
-327.33180874014937
+319.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-307.3318087401493
+299.33180874014937
  21
 101.50000000000001
  31
@@ -2259,13 +2259,13 @@ LINE
   8
 0
  10
-307.3318087401493
+299.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-327.33180874014937
+319.33180874014937
  21
 135.50000000000003
  31
@@ -2279,13 +2279,13 @@ DOTTED
   8
 0
  10
-307.3318087401493
+299.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-307.3318087401493
+299.33180874014937
  21
 135.50000000000003
  31
@@ -2297,13 +2297,13 @@ LINE
   8
 0
  10
-307.3318087401493
+299.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-283.3318087401493
+275.3318087401493
  21
 101.50000000000001
  31
@@ -2315,13 +2315,13 @@ LINE
   8
 0
  10
-283.3318087401493
+275.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-307.3318087401493
+299.33180874014937
  21
 135.50000000000003
  31
@@ -2335,13 +2335,13 @@ DOTTED
   8
 0
  10
-283.3318087401493
+275.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-283.3318087401493
+275.3318087401493
  21
 135.50000000000003
  31
@@ -2353,13 +2353,13 @@ LINE
   8
 0
  10
-283.3318087401493
+275.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-263.33180874014937
+255.33180874014934
  21
 101.50000000000001
  31
@@ -2371,13 +2371,13 @@ LINE
   8
 0
  10
-263.33180874014937
+255.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-283.3318087401493
+275.3318087401493
  21
 135.50000000000003
  31
@@ -2391,13 +2391,13 @@ DOTTED
   8
 0
  10
-263.33180874014937
+255.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-263.33180874014937
+255.33180874014934
  21
 101.50000000000001
  31
@@ -2409,13 +2409,13 @@ LINE
   8
 0
  10
-253.33180874014934
+245.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-263.33180874014937
+255.33180874014934
  21
 135.50000000000003
  31
@@ -2427,13 +2427,13 @@ LINE
   8
 0
  10
-253.33180874014934
+245.33180874014934
  20
 101.50000000000001
  30
 0.0
  11
-253.33180874014934
+245.33180874014934
  21
 135.50000000000003
  31
@@ -2445,13 +2445,13 @@ LINE
   8
 0
  10
-263.33180874014937
+255.33180874014934
  20
 101.50000000000001
  30
 0.0
  11
-253.33180874014934
+245.33180874014934
  21
 101.50000000000001
  31
@@ -2465,13 +2465,13 @@ DOTTED
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 99.36137800081471
  31
@@ -2483,13 +2483,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 99.36137800081471
  31
@@ -2501,13 +2501,13 @@ LINE
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 135.50000000000003
  31
@@ -2521,13 +2521,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 75.36137800081471
  31
@@ -2541,13 +2541,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 99.36137800081471
  31
@@ -2559,13 +2559,13 @@ LINE
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 39.22275600162939
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 75.36137800081472
  31
@@ -2577,13 +2577,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 39.22275600162939
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 39.22275600162939
  31
@@ -2595,13 +2595,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 75.36137800081472
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 39.22275600162939
  31
@@ -2613,13 +2613,13 @@ LINE
   8
 0
  10
-432.33180874014937
+424.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 75.36137800081471
  31
@@ -2631,13 +2631,13 @@ LINE
   8
 0
  10
-432.33180874014937
+424.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-432.33180874014937
+424.33180874014937
  21
 75.36137800081471
  31
@@ -2649,13 +2649,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-432.33180874014937
+424.33180874014937
  21
 99.36137800081471
  31
@@ -2667,13 +2667,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 99.36137800081471
  30
 0.0
  11
-361.3318087401493
+353.33180874014937
  21
 99.36137800081471
  31
@@ -2685,13 +2685,13 @@ LINE
   8
 0
  10
-351.33180874014937
+343.3318087401493
  20
 75.36137800081471
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 99.36137800081471
  31
@@ -2703,13 +2703,13 @@ LINE
   8
 0
  10
-361.3318087401493
+353.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-351.33180874014937
+343.3318087401493
  21
 75.36137800081471
  31
@@ -2723,13 +2723,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 205.50000000000003
  31
@@ -2743,13 +2743,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -2763,13 +2763,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-474.84617955831095
+466.8461795583109
  21
 135.50000000000003
  31
@@ -2783,13 +2783,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-474.84617955831095
+466.8461795583109
  21
 135.50000000000003
  31
@@ -2801,13 +2801,13 @@ LINE
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 117.99520972727949
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 135.50000000000003
  31
@@ -2819,13 +2819,13 @@ LINE
   8
 0
  10
-474.84617955831095
+466.8461795583109
  20
 117.99520972727949
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 117.99520972727949
  31
@@ -2837,13 +2837,13 @@ LINE
   8
 0
  10
-474.84617955831095
+466.8461795583109
  20
 135.50000000000003
  30
 0.0
  11
-474.84617955831095
+466.8461795583109
  21
 117.99520972727949
  31
@@ -2857,13 +2857,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-489.5369564140486
+481.5369564140486
  21
 185.91765779766357
  31
@@ -2875,13 +2875,13 @@ LINE
   8
 0
  10
-489.5369564140486
+481.5369564140486
  20
 185.91765779766357
  30
 0.0
  11
-474.84617955831095
+466.8461795583109
  21
 135.50000000000003
  31
@@ -2893,13 +2893,13 @@ LINE
   8
 0
  10
-504.22773326978614
+496.22773326978614
  20
 236.33531559532716
  30
 0.0
  11
-489.5369564140486
+481.5369564140486
  21
 185.91765779766357
  31
@@ -2911,13 +2911,13 @@ LINE
   8
 0
  10
-508.3550614105757
+500.3550614105757
  20
 250.50000000000003
  30
 0.0
  11
-504.22773326978614
+496.22773326978614
  21
 236.33531559532716
  31
@@ -2931,13 +2931,13 @@ DOTTED
   8
 0
  10
-508.3550614105757
+500.3550614105757
  20
 250.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 205.50000000000003
  31
@@ -2951,13 +2951,13 @@ DOTTED
   8
 0
  10
-422.33180874014937
+414.33180874014937
  20
 250.50000000000003
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 205.50000000000003
  31
@@ -2971,13 +2971,13 @@ DOTTED
   8
 0
  10
-422.3318087401494
+414.3318087401494
  20
 295.5
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 250.50000000000006
  31
@@ -2991,13 +2991,13 @@ DOTTED
   8
 0
  10
-508.35506141057573
+500.35506141057573
  20
 250.50000000000003
  30
 0.0
  11
-422.3318087401494
+414.3318087401494
  21
 295.50000000000006
  31
@@ -3011,13 +3011,13 @@ DOTTED
   8
 0
  10
-489.5369564140486
+481.5369564140486
  20
 315.08234220233646
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 295.50000000000006
  31
@@ -3029,13 +3029,13 @@ LINE
   8
 0
  10
-504.22773326978614
+496.22773326978614
  20
 264.6646844046729
  30
 0.0
  11
-508.3550614105757
+500.3550614105757
  21
 250.50000000000003
  31
@@ -3047,13 +3047,13 @@ LINE
   8
 0
  10
-489.5369564140486
+481.5369564140486
  20
 315.08234220233646
  30
 0.0
  11
-504.22773326978614
+496.22773326978614
  21
 264.6646844046729
  31
@@ -3065,13 +3065,13 @@ LINE
   8
 0
  10
-474.84617955831106
+466.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-489.5369564140486
+481.5369564140486
  21
 315.0823422023364
  31
@@ -3085,13 +3085,13 @@ DOTTED
   8
 0
  10
-474.84617955831106
+466.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-422.3318087401494
+414.3318087401494
  21
 295.50000000000006
  31
@@ -3105,13 +3105,13 @@ DOTTED
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-422.33180874014937
+414.33180874014937
  21
 295.5
  31
@@ -3125,13 +3125,13 @@ DOTTED
   8
 0
  10
-474.84617955831106
+466.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 365.5000000000001
  31
@@ -3145,13 +3145,13 @@ DOTTED
   8
 0
  10
-422.3318087401494
+414.3318087401494
  20
 295.50000000000006
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 295.50000000000017
  31
@@ -3165,13 +3165,13 @@ DOTTED
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-361.3318087401494
+353.3318087401495
  21
 365.50000000000017
  31
@@ -3183,13 +3183,13 @@ LINE
   8
 0
  10
-351.3318087401494
+343.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-361.3318087401494
+353.3318087401495
  21
 365.50000000000017
  31
@@ -3203,13 +3203,13 @@ DOTTED
   8
 0
  10
-351.3318087401494
+343.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-327.3318087401494
+319.3318087401494
  21
 365.50000000000017
  31
@@ -3221,13 +3221,13 @@ LINE
   8
 0
  10
-266.33180874014937
+258.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-327.3318087401494
+319.3318087401494
  21
 365.50000000000017
  31
@@ -3239,13 +3239,13 @@ LINE
   8
 0
  10
-266.33180874014937
+258.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-266.33180874014937
+258.3318087401494
  21
 365.5000000000003
  31
@@ -3257,13 +3257,13 @@ LINE
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 365.5000000000001
  31
@@ -3275,13 +3275,13 @@ LINE
   8
 0
  10
-351.3318087401494
+343.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-361.3318087401494
+353.3318087401495
  21
 365.50000000000017
  31
@@ -3293,13 +3293,13 @@ LINE
   8
 0
  10
-253.33180874014937
+245.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-327.3318087401494
+319.3318087401494
  21
 365.50000000000017
  31
@@ -3311,13 +3311,13 @@ LINE
   8
 0
  10
-253.33180874014937
+245.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-253.33180874014937
+245.3318087401494
  21
 365.5000000000003
  31
@@ -3329,13 +3329,13 @@ LINE
   8
 0
  10
-327.3318087401494
+319.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-253.33180874014937
+245.3318087401494
  21
 365.5000000000003
  31
@@ -3347,13 +3347,13 @@ LINE
   8
 0
  10
-361.3318087401494
+353.3318087401495
  20
 365.50000000000017
  30
 0.0
  11
-351.3318087401494
+343.3318087401494
  21
 365.50000000000017
  31
@@ -3365,13 +3365,13 @@ LINE
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 365.5000000000001
  31
@@ -3383,13 +3383,13 @@ LINE
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 375.5000000000001
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 365.5000000000001
  31
@@ -3401,13 +3401,13 @@ LINE
   8
 0
  10
-361.3318087401494
+353.3318087401495
  20
 375.50000000000017
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 375.5000000000001
  31
@@ -3419,13 +3419,13 @@ LINE
   8
 0
  10
-361.3318087401494
+353.3318087401495
  20
 365.50000000000017
  30
 0.0
  11
-361.3318087401494
+353.3318087401495
  21
 375.50000000000017
  31
@@ -3437,13 +3437,13 @@ LINE
   8
 0
  10
-351.3318087401494
+343.3318087401494
  20
 399.5000000000001
  30
 0.0
  11
-351.3318087401494
+343.3318087401494
  21
 365.50000000000017
  31
@@ -3457,13 +3457,13 @@ DOTTED
   8
 0
  10
-327.3318087401494
+319.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-327.3318087401495
+319.3318087401494
  21
 399.5000000000001
  31
@@ -3475,13 +3475,13 @@ LINE
   8
 0
  10
-351.3318087401495
+343.33180874014954
  20
 435.50000000000017
  30
 0.0
  11
-351.3318087401494
+343.3318087401494
  21
 399.5000000000001
  31
@@ -3495,13 +3495,13 @@ DOTTED
   8
 0
  10
-351.3318087401495
+343.33180874014954
  20
 435.50000000000017
  30
 0.0
  11
-327.3318087401495
+319.3318087401494
  21
 435.50000000000017
  31
@@ -3513,13 +3513,13 @@ LINE
   8
 0
  10
-327.3318087401495
+319.3318087401494
  20
 399.5000000000001
  30
 0.0
  11
-327.3318087401495
+319.3318087401494
  21
 435.50000000000017
  31
@@ -3531,13 +3531,13 @@ LINE
   8
 0
  10
-327.3318087401495
+319.3318087401494
  20
 435.50000000000017
  30
 0.0
  11
-327.33180874014954
+319.3318087401495
  21
 480.50000000000017
  31
@@ -3549,13 +3549,13 @@ LINE
   8
 0
  10
-351.3318087401495
+343.33180874014954
  20
 480.50000000000017
  30
 0.0
  11
-351.3318087401494
+343.3318087401494
  21
 435.50000000000017
  31
@@ -3567,13 +3567,13 @@ LINE
   8
 0
  10
-327.33180874014954
+319.3318087401495
  20
 480.50000000000017
  30
 0.0
  11
-351.3318087401495
+343.33180874014954
  21
 480.50000000000017
  31
@@ -3585,13 +3585,13 @@ LINE
   8
 0
  10
-327.3318087401494
+319.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-307.33180874014937
+299.3318087401494
  21
 365.50000000000017
  31
@@ -3603,13 +3603,13 @@ LINE
   8
 0
  10
-307.3318087401495
+299.3318087401495
  20
 399.5000000000001
  30
 0.0
  11
-327.3318087401495
+319.3318087401494
  21
 399.5000000000001
  31
@@ -3623,13 +3623,13 @@ DOTTED
   8
 0
  10
-307.33180874014937
+299.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-307.3318087401495
+299.3318087401495
  21
 399.5000000000001
  31
@@ -3641,13 +3641,13 @@ LINE
   8
 0
  10
-307.33180874014937
+299.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-283.33180874014937
+275.33180874014937
  21
 365.50000000000017
  31
@@ -3659,13 +3659,13 @@ LINE
   8
 0
  10
-283.3318087401494
+275.3318087401494
  20
 399.5000000000001
  30
 0.0
  11
-307.3318087401495
+299.3318087401495
  21
 399.5000000000001
  31
@@ -3679,13 +3679,13 @@ DOTTED
   8
 0
  10
-283.33180874014937
+275.33180874014937
  20
 365.50000000000017
  30
 0.0
  11
-283.3318087401494
+275.3318087401494
  21
 399.5000000000001
  31
@@ -3697,13 +3697,13 @@ LINE
   8
 0
  10
-283.33180874014937
+275.33180874014937
  20
 365.50000000000017
  30
 0.0
  11
-263.3318087401494
+255.3318087401494
  21
 365.50000000000017
  31
@@ -3715,13 +3715,13 @@ LINE
   8
 0
  10
-263.3318087401494
+255.33180874014943
  20
 399.5000000000001
  30
 0.0
  11
-283.3318087401494
+275.3318087401494
  21
 399.5000000000001
  31
@@ -3735,13 +3735,13 @@ DOTTED
   8
 0
  10
-263.3318087401494
+255.33180874014943
  20
 399.5000000000001
  30
 0.0
  11
-263.3318087401494
+255.3318087401494
  21
 365.50000000000017
  31
@@ -3753,13 +3753,13 @@ LINE
   8
 0
  10
-253.33180874014943
+245.33180874014943
  20
 399.5000000000001
  30
 0.0
  11
-263.3318087401494
+255.33180874014943
  21
 399.5000000000001
  31
@@ -3771,13 +3771,13 @@ LINE
   8
 0
  10
-253.3318087401494
+245.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-253.33180874014943
+245.33180874014943
  21
 399.5000000000001
  31
@@ -3789,13 +3789,13 @@ LINE
   8
 0
  10
-263.3318087401494
+255.3318087401494
  20
 365.50000000000017
  30
 0.0
  11
-253.3318087401494
+245.3318087401494
  21
 365.50000000000017
  31
@@ -3809,13 +3809,13 @@ DOTTED
   8
 0
  10
-266.3318087401493
+258.33180874014937
  20
 295.50000000000017
  30
 0.0
  11
-266.33180874014937
+258.3318087401494
  21
 365.5000000000002
  31
@@ -3829,13 +3829,13 @@ DOTTED
   8
 0
  10
-266.33180874014937
+258.3318087401494
  20
 365.5000000000003
  30
 0.0
  11
-213.81743792198782
+205.8174379219878
  21
 365.5000000000003
  31
@@ -3849,13 +3849,13 @@ DOTTED
   8
 0
  10
-266.3318087401493
+258.33180874014937
  20
 295.5000000000002
  30
 0.0
  11
-213.81743792198782
+205.8174379219878
  21
 365.5000000000003
  31
@@ -3867,13 +3867,13 @@ LINE
   8
 0
  10
-266.33180874014937
+258.3318087401494
  20
 383.00479027272075
  30
 0.0
  11
-266.33180874014937
+258.3318087401494
  21
 365.5000000000003
  31
@@ -3885,13 +3885,13 @@ LINE
   8
 0
  10
-213.81743792198782
+205.8174379219878
  20
 383.00479027272087
  30
 0.0
  11
-266.33180874014937
+258.3318087401494
  21
 383.00479027272075
  31
@@ -3903,13 +3903,13 @@ LINE
   8
 0
  10
-213.81743792198782
+205.8174379219878
  20
 365.5000000000003
  30
 0.0
  11
-213.81743792198782
+205.8174379219878
  21
 383.00479027272087
  31
@@ -3923,13 +3923,13 @@ DOTTED
   8
 0
  10
-266.3318087401493
+258.33180874014937
  20
 295.50000000000017
  30
 0.0
  11
-199.12666106625016
+191.12666106625016
  21
 315.08234220233675
  31
@@ -3941,13 +3941,13 @@ LINE
   8
 0
  10
-199.12666106625016
+191.12666106625016
  20
 315.08234220233675
  30
 0.0
  11
-213.81743792198782
+205.8174379219878
  21
 365.5000000000003
  31
@@ -3959,13 +3959,13 @@ LINE
   8
 0
  10
-184.43588421051248
+176.4358842105125
  20
 264.6646844046731
  30
 0.0
  11
-199.12666106625016
+191.12666106625016
  21
 315.08234220233675
  31
@@ -3977,13 +3977,13 @@ LINE
   8
 0
  10
-180.30855606972295
+172.30855606972295
  20
 250.50000000000028
  30
 0.0
  11
-184.43588421051248
+176.4358842105125
  21
 264.6646844046731
  31
@@ -3997,13 +3997,13 @@ DOTTED
   8
 0
  10
-180.30855606972295
+172.30855606972295
  20
 250.50000000000028
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 295.50000000000017
  31
@@ -4017,13 +4017,13 @@ DOTTED
   8
 0
  10
-266.3318087401493
+258.3318087401493
  20
 250.50000000000017
  30
 0.0
  11
-266.3318087401493
+258.33180874014937
  21
 295.50000000000017
  31
@@ -4037,13 +4037,13 @@ DOTTED
   8
 0
  10
-266.33180874014926
+258.3318087401492
  20
 205.50000000000017
  30
 0.0
  11
-266.3318087401493
+258.3318087401493
  21
 250.5000000000002
  31
@@ -4057,13 +4057,13 @@ DOTTED
   8
 0
  10
-180.3085560697229
+172.30855606972293
  20
 250.5000000000003
  30
 0.0
  11
-266.33180874014926
+258.3318087401492
  21
 205.50000000000014
  31
@@ -4077,13 +4077,13 @@ DOTTED
   8
 0
  10
-199.12666106624997
+191.12666106624997
  20
 185.91765779766385
  30
 0.0
  11
-266.33180874014926
+258.3318087401492
  21
 205.50000000000014
  31
@@ -4095,13 +4095,13 @@ LINE
   8
 0
  10
-184.43588421051243
+176.43588421051246
  20
 236.33531559532744
  30
 0.0
  11
-180.3085560697229
+172.30855606972293
  21
 250.5000000000003
  31
@@ -4113,13 +4113,13 @@ LINE
   8
 0
  10
-199.12666106624997
+191.12666106624997
  20
 185.91765779766385
  30
 0.0
  11
-184.43588421051243
+176.43588421051246
  21
 236.33531559532744
  31
@@ -4131,13 +4131,13 @@ LINE
   8
 0
  10
-213.81743792198745
+205.81743792198745
  20
 135.50000000000023
  30
 0.0
  11
-199.12666106624997
+191.12666106624997
  21
 185.91765779766385
  31
@@ -4151,13 +4151,13 @@ DOTTED
   8
 0
  10
-213.81743792198745
+205.81743792198745
  20
 135.50000000000023
  30
 0.0
  11
-266.3318087401492
+258.33180874014914
  21
 205.50000000000017
  31
@@ -4171,13 +4171,13 @@ DOTTED
   8
 0
  10
-266.3318087401491
+258.33180874014903
  20
 135.5000000000001
  30
 0.0
  11
-266.33180874014926
+258.3318087401492
  21
 205.50000000000017
  31
@@ -4191,13 +4191,13 @@ DOTTED
   8
 0
  10
-213.81743792198748
+205.81743792198748
  20
 135.50000000000023
  30
 0.0
  11
-266.3318087401491
+258.33180874014903
  21
 135.5000000000001
  31
@@ -4209,13 +4209,13 @@ LINE
   8
 0
  10
-213.81743792198742
+205.81743792198742
  20
 117.9952097272797
  30
 0.0
  11
-213.81743792198748
+205.81743792198748
  21
 135.50000000000023
  31
@@ -4227,13 +4227,13 @@ LINE
   8
 0
  10
-266.3318087401491
+258.33180874014903
  20
 117.9952097272796
  30
 0.0
  11
-213.81743792198742
+205.81743792198742
  21
 117.9952097272797
  31
@@ -4245,13 +4245,13 @@ LINE
   8
 0
  10
-266.3318087401491
+258.33180874014903
  20
 135.5000000000001
  30
 0.0
  11
-266.3318087401491
+258.33180874014903
  21
 117.9952097272796
  31
@@ -4263,13 +4263,13 @@ LINE
   8
 0
  10
-474.8461795583111
+466.8461795583111
  20
 383.0047902727206
  30
 0.0
  11
-474.84617955831106
+466.84617955831106
  21
 365.50000000000006
  31
@@ -4281,13 +4281,13 @@ LINE
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 383.00479027272064
  30
 0.0
  11
-474.8461795583111
+466.8461795583111
  21
 383.0047902727206
  31
@@ -4299,13 +4299,13 @@ LINE
   8
 0
  10
-422.3318087401495
+414.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-422.3318087401495
+414.3318087401495
  21
 383.00479027272064
  31
@@ -4317,13 +4317,13 @@ LINE
   8
 0
  10
-288.76362692196756
+280.7636269219675
  20
 143.25
  30
 0.0
  11
-277.1727178310585
+269.1727178310585
  21
 143.25
  31
@@ -4335,13 +4335,13 @@ LINE
   8
 0
  10
-277.1727178310585
+269.1727178310585
  20
 143.25
  30
 0.0
  11
-277.1727178310585
+269.1727178310585
  21
 142.75000000000003
  31
@@ -4353,13 +4353,13 @@ LINE
   8
 0
  10
-277.1727178310585
+269.1727178310585
  20
 142.75000000000003
  30
 0.0
  11
-288.76362692196756
+280.7636269219675
  21
 142.75000000000003
  31
@@ -4371,13 +4371,13 @@ LINE
   8
 0
  10
-288.76362692196756
+280.7636269219675
  20
 142.75000000000003
  30
 0.0
  11
-288.76362692196756
+280.7636269219675
  21
 143.25
  31
@@ -4389,13 +4389,13 @@ LINE
   8
 0
  10
-316.49089964924025
+308.49089964924025
  20
 143.25
  30
 0.0
  11
-304.8999905583311
+296.8999905583312
  21
 143.25
  31
@@ -4407,13 +4407,13 @@ LINE
   8
 0
  10
-304.8999905583311
+296.8999905583312
  20
 143.25
  30
 0.0
  11
-304.8999905583311
+296.8999905583312
  21
 142.75000000000003
  31
@@ -4425,13 +4425,13 @@ LINE
   8
 0
  10
-304.8999905583311
+296.8999905583312
  20
 142.75000000000003
  30
 0.0
  11
-316.49089964924025
+308.49089964924025
  21
 142.75000000000003
  31
@@ -4443,13 +4443,13 @@ LINE
   8
 0
  10
-316.49089964924025
+308.49089964924025
  20
 142.75000000000003
  30
 0.0
  11
-316.49089964924025
+308.49089964924025
  21
 143.25
  31
@@ -4461,13 +4461,13 @@ LINE
   8
 0
  10
-343.5818087401493
+335.58180874014937
  20
 124.41666666666669
  30
 0.0
  11
-343.5818087401493
+335.58180874014937
  21
 112.58333333333334
  31
@@ -4479,13 +4479,13 @@ LINE
   8
 0
  10
-343.5818087401493
+335.58180874014937
  20
 112.58333333333334
  30
 0.0
  11
-344.08180874014937
+336.08180874014937
  21
 112.58333333333334
  31
@@ -4497,13 +4497,13 @@ LINE
   8
 0
  10
-344.08180874014937
+336.08180874014937
  20
 112.58333333333334
  30
 0.0
  11
-344.08180874014937
+336.08180874014937
  21
 124.41666666666669
  31
@@ -4515,13 +4515,13 @@ LINE
   8
 0
  10
-344.08180874014937
+336.08180874014937
  20
 124.41666666666669
  30
 0.0
  11
-343.5818087401493
+335.58180874014937
  21
 124.41666666666669
  31
@@ -4533,13 +4533,13 @@ LINE
   8
 0
  10
-343.3318087401493
+335.33180874014937
  20
 16.750000000000004
  30
 0.0
  11
-345.83180874014937
+337.83180874014937
  21
 16.750000000000004
  31
@@ -4551,13 +4551,13 @@ LINE
   8
 0
  10
-345.83180874014937
+337.83180874014937
  20
 16.750000000000004
  30
 0.0
  11
-343.3318087401493
+335.33180874014937
  21
 19.250000000000004
  31
@@ -4569,13 +4569,13 @@ LINE
   8
 0
  10
-343.3318087401493
+335.33180874014937
  20
 19.250000000000004
  30
 0.0
  11
-335.33180874014937
+327.33180874014937
  21
 19.250000000000004
  31
@@ -4587,13 +4587,13 @@ LINE
   8
 0
  10
-335.33180874014937
+327.33180874014937
  20
 19.250000000000004
  30
 0.0
  11
-332.83180874014937
+324.8318087401493
  21
 16.750000000000004
  31
@@ -4605,13 +4605,13 @@ LINE
   8
 0
  10
-332.83180874014937
+324.8318087401493
  20
 16.750000000000004
  30
 0.0
  11
-335.33180874014937
+327.33180874014937
  21
 16.750000000000004
  31
@@ -4623,13 +4623,13 @@ LINE
   8
 0
  10
-308.33180874014937
+300.33180874014937
  20
 112.50000000000001
  30
 0.0
  11
-312.33180874014937
+304.33180874014937
  21
 112.50000000000001
  31
@@ -4641,13 +4641,13 @@ LINE
   8
 0
  10
-312.33180874014937
+304.33180874014937
  20
 112.50000000000001
  30
 0.0
  11
-312.33180874014937
+304.33180874014937
  21
 124.50000000000001
  31
@@ -4659,13 +4659,13 @@ LINE
   8
 0
  10
-312.33180874014937
+304.33180874014937
  20
 124.50000000000001
  30
 0.0
  11
-308.33180874014937
+300.33180874014937
  21
 124.50000000000001
  31
@@ -4677,13 +4677,13 @@ LINE
   8
 0
  10
-308.33180874014937
+300.33180874014937
  20
 124.50000000000001
  30
 0.0
  11
-308.33180874014937
+300.33180874014937
  21
 112.50000000000001
  31
@@ -4695,13 +4695,13 @@ LINE
   8
 0
  10
-320.3318087401493
+312.33180874014937
  20
 114.00000000000001
  30
 0.0
  11
-324.33180874014937
+316.3318087401493
  21
 114.00000000000001
  31
@@ -4713,13 +4713,13 @@ LINE
   8
 0
  10
-324.33180874014937
+316.3318087401493
  20
 114.00000000000001
  30
 0.0
  11
-324.33180874014937
+316.3318087401493
  21
 123.00000000000001
  31
@@ -4731,13 +4731,13 @@ LINE
   8
 0
  10
-324.33180874014937
+316.3318087401493
  20
 123.00000000000001
  30
 0.0
  11
-320.3318087401493
+312.33180874014937
  21
 123.00000000000001
  31
@@ -4749,13 +4749,13 @@ LINE
   8
 0
  10
-320.3318087401493
+312.33180874014937
  20
 123.00000000000001
  30
 0.0
  11
-320.3318087401493
+312.33180874014937
  21
 114.00000000000001
  31
@@ -4767,13 +4767,13 @@ LINE
   8
 0
  10
-283.8318087401493
+275.8318087401493
  20
 112.50000000000001
  30
 0.0
  11
-306.8318087401493
+298.83180874014937
  21
 112.50000000000001
  31
@@ -4785,13 +4785,13 @@ LINE
   8
 0
  10
-306.8318087401493
+298.83180874014937
  20
 112.50000000000001
  30
 0.0
  11
-306.8318087401493
+298.83180874014937
  21
 124.50000000000001
  31
@@ -4803,13 +4803,13 @@ LINE
   8
 0
  10
-306.8318087401493
+298.83180874014937
  20
 124.50000000000001
  30
 0.0
  11
-283.8318087401493
+275.8318087401493
  21
 124.50000000000001
  31
@@ -4821,13 +4821,13 @@ LINE
   8
 0
  10
-283.8318087401493
+275.8318087401493
  20
 124.50000000000001
  30
 0.0
  11
-283.8318087401493
+275.8318087401493
  21
 112.50000000000001
  31
@@ -4839,13 +4839,13 @@ LINE
   8
 0
  10
-278.33180874014937
+270.33180874014937
  20
 112.50000000000001
  30
 0.0
  11
-282.33180874014937
+274.3318087401493
  21
 112.50000000000001
  31
@@ -4857,13 +4857,13 @@ LINE
   8
 0
  10
-282.33180874014937
+274.3318087401493
  20
 112.50000000000001
  30
 0.0
  11
-282.33180874014937
+274.3318087401493
  21
 124.50000000000001
  31
@@ -4875,13 +4875,13 @@ LINE
   8
 0
  10
-282.33180874014937
+274.3318087401493
  20
 124.50000000000001
  30
 0.0
  11
-278.33180874014937
+270.33180874014937
  21
 124.50000000000001
  31
@@ -4893,13 +4893,13 @@ LINE
   8
 0
  10
-278.33180874014937
+270.33180874014937
  20
 124.50000000000001
  30
 0.0
  11
-278.33180874014937
+270.33180874014937
  21
 112.50000000000001
  31
@@ -4911,13 +4911,13 @@ LINE
   8
 0
  10
-255.83180874014934
+247.83180874014934
  20
 112.83333333333336
  30
 0.0
  11
-260.83180874014937
+252.83180874014934
  21
 112.83333333333336
  31
@@ -4929,13 +4929,13 @@ LINE
   8
 0
  10
-260.83180874014937
+252.83180874014934
  20
 112.83333333333336
  30
 0.0
  11
-260.83180874014937
+252.83180874014934
  21
 124.16666666666669
  31
@@ -4947,13 +4947,13 @@ LINE
   8
 0
  10
-260.83180874014937
+252.83180874014934
  20
 124.16666666666669
  30
 0.0
  11
-255.83180874014934
+247.83180874014934
  21
 124.16666666666669
  31
@@ -4965,13 +4965,13 @@ LINE
   8
 0
  10
-379.3318087401493
+371.33180874014937
  20
 80.86137800081471
  30
 0.0
  11
-390.33180874014937
+382.33180874014937
  21
 80.86137800081471
  31
@@ -4983,13 +4983,13 @@ LINE
   8
 0
  10
-390.33180874014937
+382.33180874014937
  20
 80.86137800081471
  30
 0.0
  11
-390.33180874014937
+382.33180874014937
  21
 93.86137800081471
  31
@@ -5001,13 +5001,13 @@ LINE
   8
 0
  10
-390.33180874014937
+382.33180874014937
  20
 93.86137800081471
  30
 0.0
  11
-379.3318087401493
+371.33180874014937
  21
 93.86137800081471
  31
@@ -5019,13 +5019,13 @@ LINE
   8
 0
  10
-379.3318087401493
+371.33180874014937
  20
 93.86137800081471
  30
 0.0
  11
-379.3318087401493
+371.33180874014937
  21
 80.86137800081471
  31
@@ -5037,13 +5037,13 @@ LINE
   8
 0
  10
-410.83180874014937
+402.8318087401493
  20
 82.36137800081471
  30
 0.0
  11
-416.83180874014937
+408.83180874014937
  21
 82.36137800081471
  31
@@ -5055,13 +5055,13 @@ LINE
   8
 0
  10
-416.83180874014937
+408.83180874014937
  20
 82.36137800081471
  30
 0.0
  11
-416.83180874014937
+408.83180874014937
  21
 92.36137800081471
  31
@@ -5073,13 +5073,13 @@ LINE
   8
 0
  10
-416.83180874014937
+408.83180874014937
  20
 92.36137800081471
  30
 0.0
  11
-410.83180874014937
+402.8318087401493
  21
 92.36137800081471
  31
@@ -5091,13 +5091,13 @@ LINE
   8
 0
  10
-410.83180874014937
+402.8318087401493
  20
 92.36137800081471
  30
 0.0
  11
-410.83180874014937
+402.8318087401493
  21
 82.36137800081471
  31
@@ -5109,13 +5109,13 @@ LINE
   8
 0
  10
-383.76362692196756
+375.76362692196756
  20
 46.9727560016294
  30
 0.0
  11
-372.1727178310585
+364.17271783105843
  21
 46.9727560016294
  31
@@ -5127,13 +5127,13 @@ LINE
   8
 0
  10
-372.1727178310585
+364.17271783105843
  20
 46.9727560016294
  30
 0.0
  11
-372.1727178310585
+364.17271783105843
  21
 46.4727560016294
  31
@@ -5145,13 +5145,13 @@ LINE
   8
 0
  10
-372.1727178310585
+364.17271783105843
  20
 46.4727560016294
  30
 0.0
  11
-383.76362692196756
+375.76362692196756
  21
 46.4727560016294
  31
@@ -5163,13 +5163,13 @@ LINE
   8
 0
  10
-383.76362692196756
+375.76362692196756
  20
 46.4727560016294
  30
 0.0
  11
-383.76362692196756
+375.76362692196756
  21
 46.9727560016294
  31
@@ -5181,13 +5181,13 @@ LINE
   8
 0
  10
-411.49089964924025
+403.4908996492402
  20
 46.9727560016294
  30
 0.0
  11
-399.8999905583312
+391.8999905583312
  21
 46.9727560016294
  31
@@ -5199,13 +5199,13 @@ LINE
   8
 0
  10
-399.8999905583312
+391.8999905583312
  20
 46.9727560016294
  30
 0.0
  11
-399.8999905583312
+391.8999905583312
  21
 46.4727560016294
  31
@@ -5217,13 +5217,13 @@ LINE
   8
 0
  10
-399.8999905583312
+391.8999905583312
  20
 46.4727560016294
  30
 0.0
  11
-411.49089964924025
+403.4908996492402
  21
 46.4727560016294
  31
@@ -5235,13 +5235,13 @@ LINE
   8
 0
  10
-411.49089964924025
+403.4908996492402
  20
 46.4727560016294
  30
 0.0
  11
-411.49089964924025
+403.4908996492402
  21
 46.9727560016294
  31
@@ -5253,13 +5253,13 @@ LINE
   8
 0
  10
-429.8318087401493
+421.83180874014937
  20
 91.36137800081471
  30
 0.0
  11
-424.83180874014937
+416.83180874014937
  21
 91.36137800081471
  31
@@ -5271,13 +5271,13 @@ LINE
   8
 0
  10
-424.83180874014937
+416.83180874014937
  20
 91.36137800081471
  30
 0.0
  11
-424.83180874014937
+416.83180874014937
  21
 83.36137800081471
  31
@@ -5289,13 +5289,13 @@ LINE
   8
 0
  10
-424.83180874014937
+416.83180874014937
  20
 83.36137800081471
  30
 0.0
  11
-429.8318087401493
+421.83180874014937
  21
 83.36137800081471
  31
@@ -5307,13 +5307,13 @@ LINE
   8
 0
  10
-353.83180874014937
+345.83180874014937
  20
 83.36137800081471
  30
 0.0
  11
-358.83180874014937
+350.83180874014937
  21
 83.36137800081471
  31
@@ -5325,13 +5325,13 @@ LINE
   8
 0
  10
-358.83180874014937
+350.83180874014937
  20
 83.36137800081471
  30
 0.0
  11
-358.83180874014937
+350.83180874014937
  21
 91.36137800081471
  31
@@ -5343,13 +5343,13 @@ LINE
   8
 0
  10
-358.83180874014937
+350.83180874014937
  20
 91.36137800081471
  30
 0.0
  11
-353.83180874014937
+345.83180874014937
  21
 91.36137800081471
  31
@@ -5361,13 +5361,13 @@ LINE
   8
 0
  10
-457.3413892855904
+449.3413892855904
  20
 122.37140729545962
  30
 0.0
  11
-457.3413892855904
+449.3413892855904
  21
 131.12380243181985
  31
@@ -5379,13 +5379,13 @@ LINE
   8
 0
  10
-457.3413892855904
+449.3413892855904
  20
 131.12380243181985
  30
 0.0
  11
-439.8365990128699
+431.8365990128699
  21
 131.12380243181988
  31
@@ -5397,13 +5397,13 @@ LINE
   8
 0
  10
-439.8365990128699
+431.8365990128699
  20
 131.12380243181988
  30
 0.0
  11
-439.8365990128699
+431.8365990128699
  21
 122.37140729545962
  31
@@ -5415,13 +5415,13 @@ LINE
   8
 0
  10
-486.5563117536783
+478.55631175367824
  20
 223.5120791976936
  30
 0.0
  11
-481.5195122622253
+473.5195122622253
  21
 206.22615649603978
  31
@@ -5433,13 +5433,13 @@ LINE
   8
 0
  10
-481.5195122622253
+473.5195122622253
  20
 206.22615649603978
  30
 0.0
  11
-481.99954903132453
+473.99954903132453
  21
 206.08628262316594
  31
@@ -5451,13 +5451,13 @@ LINE
   8
 0
  10
-481.99954903132453
+473.99954903132453
  20
 206.08628262316594
  30
 0.0
  11
-487.0363485227776
+479.0363485227776
  21
 223.37220532481973
  31
@@ -5469,13 +5469,13 @@ LINE
   8
 0
  10
-487.0363485227776
+479.0363485227776
  20
 223.37220532481973
  30
 0.0
  11
-486.5563117536783
+478.55631175367824
  21
 223.5120791976936
  31
@@ -5487,13 +5487,13 @@ LINE
   8
 0
  10
-481.5195122622253
+473.5195122622253
  20
 294.77384350396034
  30
 0.0
  11
-486.55631175367836
+478.55631175367836
  21
 277.4879208023065
  31
@@ -5505,13 +5505,13 @@ LINE
   8
 0
  10
-486.55631175367836
+478.55631175367836
  20
 277.4879208023065
  30
 0.0
  11
-487.0363485227776
+479.0363485227776
  21
 277.6277946751803
  31
@@ -5523,13 +5523,13 @@ LINE
   8
 0
  10
-487.0363485227776
+479.0363485227776
  20
 277.6277946751803
  30
 0.0
  11
-481.9995490313246
+473.9995490313246
  21
 294.91371737683414
  31
@@ -5541,13 +5541,13 @@ LINE
   8
 0
  10
-481.9995490313246
+473.9995490313246
  20
 294.91371737683414
  30
 0.0
  11
-481.5195122622253
+473.5195122622253
  21
 294.77384350396034
  31
@@ -5559,13 +5559,13 @@ LINE
   8
 0
  10
-304.8999905583312
+296.89999055833124
  20
 357.7500000000002
  30
 0.0
  11
-316.4908996492403
+308.4908996492403
  21
 357.75000000000017
  31
@@ -5577,13 +5577,13 @@ LINE
   8
 0
  10
-316.4908996492403
+308.4908996492403
  20
 357.75000000000017
  30
 0.0
  11
-316.4908996492403
+308.4908996492403
  21
 358.25000000000017
  31
@@ -5595,13 +5595,13 @@ LINE
   8
 0
  10
-316.4908996492403
+308.4908996492403
  20
 358.25000000000017
  30
 0.0
  11
-304.8999905583312
+296.89999055833124
  21
 358.25000000000017
  31
@@ -5613,13 +5613,13 @@ LINE
   8
 0
  10
-304.8999905583312
+296.89999055833124
  20
 358.25000000000017
  30
 0.0
  11
-304.8999905583312
+296.89999055833124
  21
 357.7500000000002
  31
@@ -5631,13 +5631,13 @@ LINE
   8
 0
  10
-277.1727178310585
+269.1727178310585
  20
 357.7500000000002
  30
 0.0
  11
-288.7636269219676
+280.76362692196756
  21
 357.7500000000002
  31
@@ -5649,13 +5649,13 @@ LINE
   8
 0
  10
-288.7636269219676
+280.76362692196756
  20
 357.7500000000002
  30
 0.0
  11
-288.7636269219676
+280.76362692196756
  21
 358.25000000000017
  31
@@ -5667,13 +5667,13 @@ LINE
   8
 0
  10
-288.7636269219676
+280.76362692196756
  20
 358.25000000000017
  30
 0.0
  11
-277.1727178310585
+269.1727178310585
  21
 358.25000000000017
  31
@@ -5685,13 +5685,13 @@ LINE
   8
 0
  10
-277.1727178310585
+269.1727178310585
  20
 358.25000000000017
  30
 0.0
  11
-277.1727178310585
+269.1727178310585
  21
 357.7500000000002
  31
@@ -5703,13 +5703,13 @@ LINE
   8
 0
  10
-372.42271783105855
+364.4227178310585
  20
 373.0000000000001
  30
 0.0
  11
-372.42271783105855
+364.4227178310585
  21
 368.0000000000001
  31
@@ -5721,13 +5721,13 @@ LINE
   8
 0
  10
-372.42271783105855
+364.4227178310585
  20
 368.0000000000001
  30
 0.0
  11
-383.5136269219676
+375.5136269219676
  21
 368.0000000000001
  31
@@ -5739,13 +5739,13 @@ LINE
   8
 0
  10
-383.5136269219676
+375.5136269219676
  20
 368.0000000000001
  30
 0.0
  11
-383.51362692196767
+375.51362692196767
  21
 373.0000000000001
  31
@@ -5757,13 +5757,13 @@ LINE
   8
 0
  10
-400.14999055833124
+392.1499905583313
  20
 373.0000000000001
  30
 0.0
  11
-400.14999055833124
+392.1499905583313
  21
 368.0000000000001
  31
@@ -5775,13 +5775,13 @@ LINE
   8
 0
  10
-400.14999055833124
+392.1499905583313
  20
 368.0000000000001
  30
 0.0
  11
-411.24089964924036
+403.2408996492403
  21
 368.00000000000006
  31
@@ -5793,13 +5793,13 @@ LINE
   8
 0
  10
-411.24089964924036
+403.2408996492403
  20
 368.00000000000006
  30
 0.0
  11
-411.2408996492404
+403.24089964924036
  21
 373.00000000000006
  31
@@ -5811,13 +5811,13 @@ LINE
   8
 0
  10
-343.5818087401495
+335.5818087401495
  20
 388.4166666666668
  30
 0.0
  11
-343.5818087401495
+335.5818087401495
  21
 376.5833333333335
  31
@@ -5829,13 +5829,13 @@ LINE
   8
 0
  10
-343.5818087401495
+335.5818087401495
  20
 376.5833333333335
  30
 0.0
  11
-344.0818087401495
+336.0818087401495
  21
 376.5833333333335
  31
@@ -5847,13 +5847,13 @@ LINE
   8
 0
  10
-344.0818087401495
+336.0818087401495
  20
 376.5833333333335
  30
 0.0
  11
-344.0818087401495
+336.0818087401495
  21
 388.4166666666668
  31
@@ -5865,13 +5865,13 @@ LINE
   8
 0
  10
-344.0818087401495
+336.0818087401495
  20
 388.4166666666668
  30
 0.0
  11
-343.5818087401495
+335.5818087401495
  21
 388.4166666666668
  31
@@ -5883,13 +5883,13 @@ LINE
   8
 0
  10
-335.08180874014954
+327.08180874014954
  20
 476.50000000000017
  30
 0.0
  11
-343.58180874014954
+335.58180874014954
  21
 476.50000000000017
  31
@@ -5901,13 +5901,13 @@ LINE
   8
 0
  10
-343.58180874014954
+335.58180874014954
  20
 476.50000000000017
  30
 0.0
  11
-343.58180874014954
+335.58180874014954
  21
 477.00000000000017
  31
@@ -5919,13 +5919,13 @@ LINE
   8
 0
  10
-343.58180874014954
+335.58180874014954
  20
 477.00000000000017
  30
 0.0
  11
-335.08180874014954
+327.08180874014954
  21
 477.00000000000017
  31
@@ -5937,13 +5937,13 @@ LINE
   8
 0
  10
-335.08180874014954
+327.08180874014954
  20
 477.00000000000017
  30
 0.0
  11
-335.08180874014954
+327.08180874014954
  21
 476.50000000000017
  31
@@ -5955,13 +5955,13 @@ LINE
   8
 0
  10
-308.3318087401494
+300.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-312.3318087401494
+304.3318087401494
  21
 376.50000000000017
  31
@@ -5973,13 +5973,13 @@ LINE
   8
 0
  10
-312.3318087401494
+304.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-312.3318087401495
+304.3318087401495
  21
 388.50000000000017
  31
@@ -5991,13 +5991,13 @@ LINE
   8
 0
  10
-312.3318087401495
+304.3318087401495
  20
 388.50000000000017
  30
 0.0
  11
-308.3318087401495
+300.3318087401495
  21
 388.50000000000017
  31
@@ -6009,13 +6009,13 @@ LINE
   8
 0
  10
-308.3318087401495
+300.3318087401495
  20
 388.50000000000017
  30
 0.0
  11
-308.3318087401494
+300.3318087401494
  21
 376.50000000000017
  31
@@ -6027,13 +6027,13 @@ LINE
   8
 0
  10
-320.33180874014937
+312.3318087401494
  20
 378.00000000000017
  30
 0.0
  11
-324.3318087401494
+316.3318087401494
  21
 378.00000000000017
  31
@@ -6045,13 +6045,13 @@ LINE
   8
 0
  10
-324.3318087401494
+316.3318087401494
  20
 378.00000000000017
  30
 0.0
  11
-324.3318087401494
+316.3318087401494
  21
 387.00000000000017
  31
@@ -6063,13 +6063,13 @@ LINE
   8
 0
  10
-324.3318087401494
+316.3318087401494
  20
 387.00000000000017
  30
 0.0
  11
-320.3318087401494
+312.3318087401495
  21
 387.00000000000017
  31
@@ -6081,13 +6081,13 @@ LINE
   8
 0
  10
-320.3318087401494
+312.3318087401495
  20
 387.00000000000017
  30
 0.0
  11
-320.33180874014937
+312.3318087401494
  21
 378.00000000000017
  31
@@ -6099,13 +6099,13 @@ LINE
   8
 0
  10
-283.83180874014937
+275.8318087401494
  20
 376.50000000000017
  30
 0.0
  11
-306.83180874014937
+298.8318087401494
  21
 376.50000000000017
  31
@@ -6117,13 +6117,13 @@ LINE
   8
 0
  10
-306.83180874014937
+298.8318087401494
  20
 376.50000000000017
  30
 0.0
  11
-306.8318087401494
+298.8318087401495
  21
 388.50000000000017
  31
@@ -6135,13 +6135,13 @@ LINE
   8
 0
  10
-306.8318087401494
+298.8318087401495
  20
 388.50000000000017
  30
 0.0
  11
-283.83180874014937
+275.8318087401494
  21
 388.50000000000017
  31
@@ -6153,13 +6153,13 @@ LINE
   8
 0
  10
-283.83180874014937
+275.8318087401494
  20
 388.50000000000017
  30
 0.0
  11
-283.83180874014937
+275.8318087401494
  21
 376.50000000000017
  31
@@ -6171,13 +6171,13 @@ LINE
   8
 0
  10
-278.3318087401494
+270.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-282.3318087401494
+274.33180874014937
  21
 376.50000000000017
  31
@@ -6189,13 +6189,13 @@ LINE
   8
 0
  10
-282.3318087401494
+274.33180874014937
  20
 376.50000000000017
  30
 0.0
  11
-282.3318087401494
+274.33180874014937
  21
 388.50000000000017
  31
@@ -6207,13 +6207,13 @@ LINE
   8
 0
  10
-282.3318087401494
+274.33180874014937
  20
 388.50000000000017
  30
 0.0
  11
-278.3318087401494
+270.3318087401494
  21
 388.50000000000017
  31
@@ -6225,13 +6225,13 @@ LINE
   8
 0
  10
-278.3318087401494
+270.3318087401494
  20
 388.50000000000017
  30
 0.0
  11
-278.3318087401494
+270.3318087401494
  21
 376.50000000000017
  31
@@ -6243,13 +6243,13 @@ LINE
   8
 0
  10
-255.8318087401494
+247.8318087401494
  20
 376.8333333333335
  30
 0.0
  11
-260.8318087401494
+252.8318087401494
  21
 376.8333333333335
  31
@@ -6261,13 +6261,13 @@ LINE
   8
 0
  10
-260.8318087401494
+252.8318087401494
  20
 376.8333333333335
  30
 0.0
  11
-260.8318087401494
+252.8318087401494
  21
 388.16666666666686
  31
@@ -6279,13 +6279,13 @@ LINE
   8
 0
  10
-260.8318087401494
+252.8318087401494
  20
 388.16666666666686
  30
 0.0
  11
-255.8318087401494
+247.8318087401494
  21
 388.16666666666686
  31
@@ -6297,13 +6297,13 @@ LINE
   8
 0
  10
-231.32222819470834
+223.32222819470834
  20
 378.6285927045407
  30
 0.0
  11
-231.32222819470834
+223.32222819470834
  21
 369.87619756818043
  31
@@ -6315,13 +6315,13 @@ LINE
   8
 0
  10
-231.32222819470834
+223.32222819470834
  20
 369.87619756818043
  30
 0.0
  11
-248.82701846742887
+240.82701846742887
  21
 369.87619756818043
  31
@@ -6333,13 +6333,13 @@ LINE
   8
 0
  10
-248.82701846742887
+240.82701846742887
  20
 369.87619756818043
  30
 0.0
  11
-248.82701846742887
+240.82701846742887
  21
 378.6285927045407
  31
@@ -6351,13 +6351,13 @@ LINE
   8
 0
  10
-202.10730572662035
+194.10730572662035
  20
 277.4879208023067
  30
 0.0
  11
-207.1441052180734
+199.1441052180734
  21
 294.7738435039605
  31
@@ -6369,13 +6369,13 @@ LINE
   8
 0
  10
-207.1441052180734
+199.1441052180734
  20
 294.7738435039605
  30
 0.0
  11
-206.66406844897412
+198.66406844897412
  21
 294.9137173768343
  31
@@ -6387,13 +6387,13 @@ LINE
   8
 0
  10
-206.66406844897412
+198.66406844897412
  20
 294.9137173768343
  30
 0.0
  11
-201.62726895752107
+193.62726895752107
  21
 277.62779467518055
  31
@@ -6405,13 +6405,13 @@ LINE
   8
 0
  10
-201.62726895752107
+193.62726895752107
  20
 277.62779467518055
  30
 0.0
  11
-202.10730572662035
+194.10730572662035
  21
 277.4879208023067
  31
@@ -6423,13 +6423,13 @@ LINE
   8
 0
  10
-207.14410521807326
+199.14410521807326
  20
 206.22615649604003
  30
 0.0
  11
-202.10730572662024
+194.10730572662027
  21
 223.51207919769385
  31
@@ -6441,13 +6441,13 @@ LINE
   8
 0
  10
-202.10730572662024
+194.10730572662027
  20
 223.51207919769385
  30
 0.0
  11
-201.62726895752098
+193.62726895752098
  21
 223.37220532482002
  31
@@ -6459,13 +6459,13 @@ LINE
   8
 0
  10
-201.62726895752098
+193.62726895752098
  20
 223.37220532482002
  30
 0.0
  11
-206.66406844897395
+198.66406844897398
  21
 206.08628262316617
  31
@@ -6477,13 +6477,13 @@ LINE
   8
 0
  10
-206.66406844897395
+198.66406844897398
  20
 206.08628262316617
  30
 0.0
  11
-207.14410521807326
+199.14410521807326
  21
 206.22615649604003
  31
@@ -6495,13 +6495,13 @@ LINE
   8
 0
  10
-248.8270184674285
+240.8270184674285
  20
 122.37140729545976
  30
 0.0
  11
-248.82701846742856
+240.82701846742853
  21
 131.12380243182005
  31
@@ -6513,13 +6513,13 @@ LINE
   8
 0
  10
-248.82701846742856
+240.82701846742853
  20
 131.12380243182005
  30
 0.0
  11
-231.322228194708
+223.322228194708
  21
 131.12380243182008
  31
@@ -6531,13 +6531,13 @@ LINE
   8
 0
  10
-231.322228194708
+223.322228194708
  20
 131.12380243182008
  30
 0.0
  11
-231.32222819470798
+223.32222819470798
  21
 122.3714072954598
  31
@@ -6549,13 +6549,13 @@ LINE
   8
 0
  10
-439.83659901287
+431.83659901287
  20
 378.6285927045405
  30
 0.0
  11
-439.83659901287
+431.83659901287
  21
 369.87619756818015
  31
@@ -6567,13 +6567,13 @@ LINE
   8
 0
  10
-439.83659901287
+431.83659901287
  20
 369.87619756818015
  30
 0.0
  11
-457.34138928559054
+449.34138928559054
  21
 369.87619756818015
  31
@@ -6585,13 +6585,13 @@ LINE
   8
 0
  10
-457.34138928559054
+449.34138928559054
  20
 369.87619756818015
  30
 0.0
  11
-457.34138928559054
+449.34138928559054
  21
 378.6285927045405
  31
@@ -6605,13 +6605,13 @@ DOTTED
   8
 0
  10
-551.3550614105758
+519.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 123.50000000000001
  31
@@ -6625,13 +6625,13 @@ DOTTED
   8
 0
  10
-612.3550614105757
+580.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 147.5
  31
@@ -6645,13 +6645,13 @@ DOTTED
   8
 0
  10
-612.3550614105757
+580.3550614105758
  20
 147.5
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 147.5
  31
@@ -6665,13 +6665,13 @@ DOTTED
   8
 0
  10
-551.3550614105758
+519.3550614105758
  20
 147.5
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 123.50000000000001
  31
@@ -6683,13 +6683,13 @@ LINE
   8
 0
  10
-551.3550614105758
+519.3550614105758
  20
 116.50000000000001
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 123.50000000000001
  31
@@ -6701,13 +6701,13 @@ LINE
   8
 0
  10
-611.3550614105757
+555.3550614105757
  20
 116.50000000000001
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 116.50000000000001
  31
@@ -6719,13 +6719,13 @@ LINE
   8
 0
  10
-611.3550614105757
+555.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-611.3550614105757
+555.3550614105757
  21
 116.50000000000001
  31
@@ -6737,13 +6737,13 @@ LINE
   8
 0
  10
-619.3550614105757
+587.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 123.50000000000001
  31
@@ -6755,13 +6755,13 @@ LINE
   8
 0
  10
-619.3550614105757
+587.3550614105758
  20
 147.5
  30
 0.0
  11
-619.3550614105757
+587.3550614105758
  21
 123.50000000000001
  31
@@ -6773,13 +6773,13 @@ LINE
   8
 0
  10
-612.3550614105757
+580.3550614105758
  20
 147.5
  30
 0.0
  11
-619.3550614105757
+587.3550614105758
  21
 147.5
  31
@@ -6793,13 +6793,13 @@ DOTTED
   8
 0
  10
-612.3550614105757
+580.3550614105758
  20
 147.5
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 208.50000000000003
  31
@@ -6811,13 +6811,13 @@ LINE
   8
 0
  10
-552.3550614105758
+544.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 208.50000000000003
  31
@@ -6831,13 +6831,13 @@ DOTTED
   8
 0
  10
-552.3550614105758
+544.3550614105758
  20
 147.5
  30
 0.0
  11
-552.3550614105758
+544.3550614105758
  21
 208.50000000000003
  31
@@ -6849,13 +6849,13 @@ LINE
   8
 0
  10
-636.3550614105758
+604.3550614105758
  20
 147.5
  30
 0.0
  11
-612.3550614105757
+580.3550614105758
  21
 147.5
  31
@@ -6869,13 +6869,13 @@ DOTTED
   8
 0
  10
-636.3550614105758
+604.3550614105758
  20
 147.5
  30
 0.0
  11
-636.3550614105758
+604.3550614105758
  21
 208.50000000000003
  31
@@ -6887,13 +6887,13 @@ LINE
   8
 0
  10
-612.3550614105757
+580.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-636.3550614105758
+604.3550614105758
  21
 208.50000000000003
  31
@@ -6905,13 +6905,13 @@ LINE
   8
 0
  10
-696.3550614105758
+640.3550614105757
  20
 147.5
  30
 0.0
  11
-636.3550614105758
+604.3550614105758
  21
 147.5
  31
@@ -6923,13 +6923,13 @@ LINE
   8
 0
  10
-696.3550614105758
+640.3550614105757
  20
 208.50000000000003
  30
 0.0
  11
-696.3550614105758
+640.3550614105757
  21
 147.5
  31
@@ -6941,13 +6941,13 @@ LINE
   8
 0
  10
-636.3550614105758
+604.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-696.3550614105758
+640.3550614105757
  21
 208.50000000000003
  31
@@ -6959,13 +6959,13 @@ LINE
   8
 0
  10
-552.3550614105758
+544.3550614105758
  20
 147.5
  30
 0.0
  11
-528.3550614105758
+520.3550614105758
  21
 147.5
  31
@@ -6977,13 +6977,13 @@ LINE
   8
 0
  10
-528.3550614105758
+520.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-552.3550614105758
+544.3550614105758
  21
 208.50000000000003
  31
@@ -6997,13 +6997,13 @@ DOTTED
   8
 0
  10
-528.3550614105758
+520.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-528.3550614105758
+520.3550614105758
  21
 147.5
  31
@@ -7015,13 +7015,13 @@ LINE
   8
 0
  10
-518.3550614105758
+510.35506141057573
  20
 208.50000000000003
  30
 0.0
  11
-528.3550614105758
+520.3550614105758
  21
 208.50000000000003
  31
@@ -7033,13 +7033,13 @@ LINE
   8
 0
  10
-518.3550614105758
+510.35506141057573
  20
 147.5
  30
 0.0
  11
-518.3550614105758
+510.35506141057573
  21
 208.50000000000003
  31
@@ -7051,13 +7051,13 @@ LINE
   8
 0
  10
-528.3550614105758
+520.3550614105758
  20
 147.5
  30
 0.0
  11
-518.3550614105758
+510.35506141057573
  21
 147.5
  31
@@ -7069,13 +7069,13 @@ LINE
   8
 0
  10
-544.3550614105758
+512.3550614105757
  20
 147.5
  30
 0.0
  11
-551.3550614105758
+519.3550614105758
  21
 147.5
  31
@@ -7087,13 +7087,13 @@ LINE
   8
 0
  10
-544.3550614105758
+512.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-544.3550614105758
+512.3550614105757
  21
 147.5
  31
@@ -7105,13 +7105,13 @@ LINE
   8
 0
  10
-551.3550614105758
+519.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-544.3550614105758
+512.3550614105757
  21
 123.50000000000001
  31
@@ -7123,85 +7123,13 @@ LINE
   8
 0
  10
-600.4459705014849
- 20
-118.25000000000001
- 30
-0.0
- 11
-603.9459705014848
- 21
-118.25000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-603.9459705014848
- 20
-118.25000000000001
- 30
-0.0
- 11
-600.4459705014849
- 21
-121.75000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-600.4459705014849
- 20
-121.75000000000001
- 30
-0.0
- 11
-589.5368795923938
- 21
-121.75000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-589.5368795923938
- 20
-121.75000000000001
- 30
-0.0
- 11
-586.036879592394
- 21
-118.25000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-586.036879592394
+543.3550614105758
  20
 118.25000000000001
  30
 0.0
  11
-589.5368795923938
+546.8550614105757
  21
 118.25000000000001
  31
@@ -7213,31 +7141,13 @@ LINE
   8
 0
  10
-573.1732432287577
+546.8550614105757
  20
 118.25000000000001
  30
 0.0
  11
-576.6732432287575
- 21
-118.25000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-576.6732432287575
- 20
-118.25000000000001
- 30
-0.0
- 11
-573.1732432287577
+543.3550614105758
  21
 121.75000000000001
  31
@@ -7249,13 +7159,13 @@ LINE
   8
 0
  10
-573.1732432287577
+543.3550614105758
  20
 121.75000000000001
  30
 0.0
  11
-562.2641523196666
+531.3550614105757
  21
 121.75000000000001
  31
@@ -7267,13 +7177,13 @@ LINE
   8
 0
  10
-562.2641523196666
+531.3550614105757
  20
 121.75000000000001
  30
 0.0
  11
-558.7641523196667
+527.8550614105758
  21
 118.25000000000001
  31
@@ -7285,13 +7195,13 @@ LINE
   8
 0
  10
-558.7641523196667
+527.8550614105758
  20
 118.25000000000001
  30
 0.0
  11
-562.2641523196666
+531.3550614105757
  21
 118.25000000000001
  31
@@ -7303,13 +7213,13 @@ LINE
   8
 0
  10
-617.6050614105757
+585.6050614105758
  20
 139.50000000000003
  30
 0.0
  11
-614.1050614105758
+582.1050614105758
  21
 139.50000000000003
  31
@@ -7321,13 +7231,13 @@ LINE
   8
 0
  10
-614.1050614105758
+582.1050614105758
  20
 139.50000000000003
  30
 0.0
  11
-614.1050614105758
+582.1050614105758
  21
 131.50000000000003
  31
@@ -7339,13 +7249,13 @@ LINE
   8
 0
  10
-614.1050614105758
+582.1050614105758
  20
 131.50000000000003
  30
 0.0
  11
-617.6050614105757
+585.6050614105758
  21
 131.50000000000003
  31
@@ -7357,15 +7267,15 @@ LINE
   8
 0
  10
-559.8550614105758
+557.4693471248615
  20
-199.00000000000003
+202.25000000000003
  30
 0.0
  11
-559.8550614105758
+557.4693471248615
  21
-181.00000000000003
+184.25
  31
 0.0
   0
@@ -7375,15 +7285,15 @@ LINE
   8
 0
  10
-559.8550614105758
+557.4693471248615
  20
-181.00000000000003
+184.25
  30
 0.0
  11
-594.8550614105757
+578.0407756962901
  21
-181.00000000000003
+184.25
  31
 0.0
   0
@@ -7393,15 +7303,15 @@ LINE
   8
 0
  10
-594.8550614105757
+578.0407756962901
  20
-181.00000000000003
+184.25
  30
 0.0
  11
-594.8550614105757
+578.0407756962901
  21
-199.00000000000003
+202.25000000000003
  31
 0.0
   0
@@ -7411,15 +7321,15 @@ LINE
   8
 0
  10
-594.8550614105757
+578.0407756962901
  20
-199.00000000000003
+202.25000000000003
  30
 0.0
  11
-559.8550614105758
+557.4693471248615
  21
-199.00000000000003
+202.25000000000003
  31
 0.0
   0
@@ -7429,13 +7339,13 @@ LINE
   8
 0
  10
-612.8550614105757
+580.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-612.8550614105757
+580.8550614105758
  21
 157.75000000000003
  31
@@ -7447,13 +7357,13 @@ LINE
   8
 0
  10
-612.8550614105757
+580.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-615.8550614105758
+583.8550614105757
  21
 157.75000000000003
  31
@@ -7465,13 +7375,13 @@ LINE
   8
 0
  10
-615.8550614105758
+583.8550614105757
  20
 157.75000000000003
  30
 0.0
  11
-615.8550614105758
+583.8550614105757
  21
 160.75000000000003
  31
@@ -7483,13 +7393,13 @@ LINE
   8
 0
  10
-615.8550614105758
+583.8550614105757
  20
 160.75000000000003
  30
 0.0
  11
-612.8550614105757
+580.8550614105758
  21
 160.75000000000003
  31
@@ -7501,13 +7411,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 159.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 158.75000000000003
  31
@@ -7519,13 +7429,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 158.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 158.75000000000003
  31
@@ -7537,13 +7447,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 158.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 159.75000000000003
  31
@@ -7555,13 +7465,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 159.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 159.75000000000003
  31
@@ -7573,13 +7483,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 161.25
  31
@@ -7591,13 +7501,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 161.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 161.25
  31
@@ -7609,13 +7519,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 161.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 162.25000000000003
  31
@@ -7627,13 +7537,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 162.25000000000003
  31
@@ -7645,13 +7555,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 161.25
  31
@@ -7663,13 +7573,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 161.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 161.25
  31
@@ -7681,13 +7591,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 161.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 162.25000000000003
  31
@@ -7699,13 +7609,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 162.25000000000003
  31
@@ -7717,13 +7627,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 163.75
  31
@@ -7735,13 +7645,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 163.75
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 163.75
  31
@@ -7753,13 +7663,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 163.75
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 164.75000000000003
  31
@@ -7771,13 +7681,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 164.75000000000003
  31
@@ -7789,13 +7699,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 163.75
  31
@@ -7807,13 +7717,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 163.75
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 163.75
  31
@@ -7825,13 +7735,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 163.75
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 164.75000000000003
  31
@@ -7843,13 +7753,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 164.75000000000003
  31
@@ -7861,13 +7771,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 166.25
  31
@@ -7879,13 +7789,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 166.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 166.25
  31
@@ -7897,13 +7807,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 166.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 167.25000000000003
  31
@@ -7915,13 +7825,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 167.25000000000003
  31
@@ -7933,13 +7843,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 166.25
  31
@@ -7951,13 +7861,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 166.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 166.25
  31
@@ -7969,13 +7879,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 166.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 167.25000000000003
  31
@@ -7987,13 +7897,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 167.25000000000003
  31
@@ -8005,13 +7915,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 168.75000000000003
  31
@@ -8023,13 +7933,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 168.75000000000003
  31
@@ -8041,13 +7951,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 169.75000000000003
  31
@@ -8059,13 +7969,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 169.75000000000003
  31
@@ -8077,13 +7987,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 168.75000000000003
  31
@@ -8095,13 +8005,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 168.75000000000003
  31
@@ -8113,13 +8023,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 169.75000000000003
  31
@@ -8131,13 +8041,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 169.75000000000003
  31
@@ -8149,13 +8059,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 171.25000000000003
  31
@@ -8167,13 +8077,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 171.25000000000003
  31
@@ -8185,13 +8095,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 172.25000000000003
  31
@@ -8203,13 +8113,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 172.25000000000003
  31
@@ -8221,13 +8131,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 171.25000000000003
  31
@@ -8239,13 +8149,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 171.25000000000003
  31
@@ -8257,13 +8167,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 172.25000000000003
  31
@@ -8275,13 +8185,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 172.25000000000003
  31
@@ -8293,13 +8203,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 173.75000000000003
  31
@@ -8311,13 +8221,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 173.75000000000003
  31
@@ -8329,13 +8239,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 174.75000000000003
  31
@@ -8347,13 +8257,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 174.75000000000003
  31
@@ -8365,13 +8275,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 173.75000000000003
  31
@@ -8383,13 +8293,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 173.75000000000003
  31
@@ -8401,13 +8311,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 174.75000000000003
  31
@@ -8419,13 +8329,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 174.75000000000003
  31
@@ -8437,13 +8347,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 177.25
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 176.25000000000003
  31
@@ -8455,13 +8365,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 176.25000000000003
  31
@@ -8473,13 +8383,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 177.25
  31
@@ -8491,13 +8401,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 177.25
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 177.25
  31
@@ -8509,13 +8419,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 177.25
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 176.25000000000003
  31
@@ -8527,13 +8437,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 176.25000000000003
  31
@@ -8545,13 +8455,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 177.25
  31
@@ -8563,13 +8473,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 177.25
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 177.25
  31
@@ -8581,13 +8491,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 179.75
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 178.75000000000003
  31
@@ -8599,13 +8509,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 178.75000000000003
  31
@@ -8617,13 +8527,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 179.75
  31
@@ -8635,13 +8545,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 179.75
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 179.75
  31
@@ -8653,13 +8563,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 179.75
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 178.75000000000003
  31
@@ -8671,13 +8581,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 178.75000000000003
  31
@@ -8689,13 +8599,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 179.75
  31
@@ -8707,13 +8617,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 179.75
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 179.75
  31
@@ -8725,13 +8635,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 182.25
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 181.25000000000003
  31
@@ -8743,13 +8653,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 181.25000000000003
  31
@@ -8761,13 +8671,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 182.25
  31
@@ -8779,13 +8689,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 182.25
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 182.25
  31
@@ -8797,13 +8707,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 182.25
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 181.25000000000003
  31
@@ -8815,13 +8725,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 181.25000000000003
  31
@@ -8833,13 +8743,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 182.25
  31
@@ -8851,13 +8761,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 182.25
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 182.25
  31
@@ -8869,13 +8779,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 183.75000000000003
  31
@@ -8887,13 +8797,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 183.75000000000003
  31
@@ -8905,13 +8815,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 184.75000000000003
  31
@@ -8923,13 +8833,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 184.75000000000003
  31
@@ -8941,13 +8851,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 183.75000000000003
  31
@@ -8959,13 +8869,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 183.75000000000003
  31
@@ -8977,13 +8887,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 184.75000000000003
  31
@@ -8995,13 +8905,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 184.75000000000003
  31
@@ -9013,13 +8923,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 186.25000000000003
  31
@@ -9031,13 +8941,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 186.25000000000003
  31
@@ -9049,13 +8959,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 187.25000000000003
  31
@@ -9067,13 +8977,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 187.25000000000003
  31
@@ -9085,13 +8995,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 186.25000000000003
  31
@@ -9103,13 +9013,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 186.25000000000003
  31
@@ -9121,13 +9031,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 187.25000000000003
  31
@@ -9139,13 +9049,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 187.25000000000003
  31
@@ -9157,13 +9067,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 188.75
  31
@@ -9175,13 +9085,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 188.75
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 188.75
  31
@@ -9193,13 +9103,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 188.75
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 189.75000000000003
  31
@@ -9211,13 +9121,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 189.75000000000003
  31
@@ -9229,13 +9139,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 188.75
  31
@@ -9247,13 +9157,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 188.75
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 188.75
  31
@@ -9265,13 +9175,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 188.75
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 189.75000000000003
  31
@@ -9283,13 +9193,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 189.75000000000003
  31
@@ -9301,13 +9211,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 191.25
  31
@@ -9319,13 +9229,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 191.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 191.25
  31
@@ -9337,13 +9247,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 191.25
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 192.25000000000003
  31
@@ -9355,13 +9265,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 192.25000000000003
  31
@@ -9373,13 +9283,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 191.25
  31
@@ -9391,13 +9301,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 191.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 191.25
  31
@@ -9409,13 +9319,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 191.25
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 192.25000000000003
  31
@@ -9427,13 +9337,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 192.25000000000003
  31
@@ -9445,13 +9355,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 193.75000000000003
  31
@@ -9463,13 +9373,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 193.75000000000003
  31
@@ -9481,13 +9391,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 194.75000000000003
  31
@@ -9499,13 +9409,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 194.75000000000003
  31
@@ -9517,13 +9427,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 193.75000000000003
  31
@@ -9535,13 +9445,13 @@ LINE
   8
 0
  10
-633.8550614105758
+601.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 193.75000000000003
  31
@@ -9553,13 +9463,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-634.8550614105758
+602.8550614105757
  21
 194.75000000000003
  31
@@ -9571,13 +9481,13 @@ LINE
   8
 0
  10
-634.8550614105758
+602.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-633.8550614105758
+601.8550614105757
  21
 194.75000000000003
  31
@@ -9589,13 +9499,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 196.25000000000003
  31
@@ -9607,13 +9517,13 @@ LINE
   8
 0
  10
-613.8550614105758
+581.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 196.25000000000003
  31
@@ -9625,13 +9535,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 196.25000000000003
  30
 0.0
  11
-614.8550614105758
+582.8550614105757
  21
 197.25000000000003
  31
@@ -9643,13 +9553,13 @@ LINE
   8
 0
  10
-614.8550614105758
+582.8550614105757
  20
 197.25000000000003
  30
 0.0
  11
-613.8550614105758
+581.8550614105758
  21
 197.25000000000003
  31
@@ -9661,13 +9571,13 @@ LINE
   8
 0
  10
-632.8550614105758
+600.8550614105757
  20
 198.25000000000003
  30
 0.0
  11
-632.8550614105758
+600.8550614105757
  21
 195.25000000000003
  31
@@ -9679,13 +9589,13 @@ LINE
   8
 0
  10
-632.8550614105758
+600.8550614105757
  20
 195.25000000000003
  30
 0.0
  11
-635.8550614105758
+603.8550614105757
  21
 195.25000000000003
  31
@@ -9697,13 +9607,13 @@ LINE
   8
 0
  10
-635.8550614105758
+603.8550614105757
  20
 195.25000000000003
  30
 0.0
  11
-635.8550614105758
+603.8550614105757
  21
 198.25000000000003
  31
@@ -9715,13 +9625,13 @@ LINE
   8
 0
  10
-635.8550614105758
+603.8550614105757
  20
 198.25000000000003
  30
 0.0
  11
-632.8550614105758
+600.8550614105757
  21
 198.25000000000003
  31
@@ -9733,13 +9643,13 @@ LINE
   8
 0
  10
-628.6050614105758
+596.6050614105757
  20
 155.25000000000003
  30
 0.0
  11
-620.1050614105758
+588.1050614105757
  21
 155.25000000000003
  31
@@ -9751,13 +9661,13 @@ LINE
   8
 0
  10
-620.1050614105758
+588.1050614105757
  20
 155.25000000000003
  30
 0.0
  11
-620.1050614105758
+588.1050614105757
  21
 154.75
  31
@@ -9769,13 +9679,13 @@ LINE
   8
 0
  10
-620.1050614105758
+588.1050614105757
  20
 154.75
  30
 0.0
  11
-628.6050614105758
+596.6050614105757
  21
 154.75
  31
@@ -9787,13 +9697,13 @@ LINE
   8
 0
  10
-628.6050614105758
+596.6050614105757
  20
 154.75
  30
 0.0
  11
-628.6050614105758
+596.6050614105757
  21
 155.25000000000003
  31
@@ -9805,13 +9715,13 @@ LINE
   8
 0
  10
-620.1050614105758
+588.1050614105757
  20
 203.00000000000003
  30
 0.0
  11
-628.6050614105758
+596.6050614105757
  21
 203.00000000000003
  31
@@ -9823,13 +9733,13 @@ LINE
   8
 0
  10
-628.6050614105758
+596.6050614105757
  20
 203.00000000000003
  30
 0.0
  11
-628.6050614105758
+596.6050614105757
  21
 203.50000000000003
  31
@@ -9841,13 +9751,13 @@ LINE
   8
 0
  10
-628.6050614105758
+596.6050614105757
  20
 203.50000000000003
  30
 0.0
  11
-620.1050614105758
+588.1050614105757
  21
 203.50000000000003
  31
@@ -9859,13 +9769,13 @@ LINE
   8
 0
  10
-620.1050614105758
+588.1050614105757
  20
 203.50000000000003
  30
 0.0
  11
-620.1050614105758
+588.1050614105757
  21
 203.00000000000003
  31
@@ -9877,51 +9787,15 @@ LINE
   8
 0
  10
-651.3550614105758
- 20
-198.50000000000003
- 30
-0.0
- 11
-651.3550614105758
- 21
-185.50000000000003
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-651.3550614105758
- 20
-185.50000000000003
- 30
-0.0
- 11
-681.3550614105758
- 21
-185.50000000000003
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-681.3550614105758
+609.9093471248615
  20
-185.50000000000003
+204.02
  30
 0.0
  11
-681.3550614105758
+609.9093471248615
  21
-198.50000000000003
+191.02
  31
 0.0
   0
@@ -9931,15 +9805,15 @@ LINE
   8
 0
  10
-681.3550614105758
+609.9093471248615
  20
-198.50000000000003
+191.02
  30
 0.0
  11
-651.3550614105758
+630.48077569629
  21
-198.50000000000003
+191.02
  31
 0.0
   0
@@ -9949,15 +9823,15 @@ LINE
   8
 0
  10
-658.4232432287575
+630.48077569629
  20
-153.00000000000003
+191.02
  30
 0.0
  11
-647.0141523196667
+630.48077569629
  21
-153.00000000000003
+204.02
  31
 0.0
   0
@@ -9967,15 +9841,15 @@ LINE
   8
 0
  10
-647.0141523196667
+630.48077569629
  20
-153.00000000000003
+204.02
  30
 0.0
  11
-647.0141523196667
+609.9093471248615
  21
-152.5
+204.02
  31
 0.0
   0
@@ -9985,49 +9859,13 @@ LINE
   8
 0
  10
-647.0141523196667
- 20
-152.5
- 30
-0.0
- 11
-658.4232432287575
- 21
-152.5
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-658.4232432287575
- 20
-152.5
- 30
-0.0
- 11
-658.4232432287575
- 21
-153.00000000000003
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-685.6959705014849
+628.6050614105758
  20
 153.00000000000003
  30
 0.0
  11
-674.2868795923939
+616.1050614105757
  21
 153.00000000000003
  31
@@ -10039,13 +9877,13 @@ LINE
   8
 0
  10
-674.2868795923939
+616.1050614105757
  20
 153.00000000000003
  30
 0.0
  11
-674.2868795923939
+616.1050614105757
  21
 152.5
  31
@@ -10057,13 +9895,13 @@ LINE
   8
 0
  10
-674.2868795923939
+616.1050614105757
  20
 152.5
  30
 0.0
  11
-685.6959705014849
+628.6050614105758
  21
 152.5
  31
@@ -10075,13 +9913,13 @@ LINE
   8
 0
  10
-685.6959705014849
+628.6050614105758
  20
 152.5
  30
 0.0
  11
-685.6959705014849
+628.6050614105758
  21
 153.00000000000003
  31
@@ -10093,13 +9931,13 @@ LINE
   8
 0
  10
-688.6050614105757
+632.6050614105758
  20
 169.93181818181822
  30
 0.0
  11
-688.6050614105757
+632.6050614105758
  21
 158.3409090909091
  31
@@ -10111,13 +9949,13 @@ LINE
   8
 0
  10
-688.6050614105757
+632.6050614105758
  20
 158.3409090909091
  30
 0.0
  11
-689.1050614105757
+633.1050614105757
  21
 158.3409090909091
  31
@@ -10129,13 +9967,13 @@ LINE
   8
 0
  10
-689.1050614105757
+633.1050614105757
  20
 158.3409090909091
  30
 0.0
  11
-689.1050614105757
+633.1050614105757
  21
 169.93181818181822
  31
@@ -10147,13 +9985,13 @@ LINE
   8
 0
  10
-689.1050614105757
+633.1050614105757
  20
 169.93181818181822
  30
 0.0
  11
-688.6050614105757
+632.6050614105758
  21
 169.93181818181822
  31
@@ -10165,13 +10003,13 @@ LINE
   8
 0
  10
-688.6050614105757
+632.6050614105758
  20
 197.65909090909093
  30
 0.0
  11
-688.6050614105757
+632.6050614105758
  21
 186.06818181818184
  31
@@ -10183,13 +10021,13 @@ LINE
   8
 0
  10
-688.6050614105757
+632.6050614105758
  20
 186.06818181818184
  30
 0.0
  11
-689.1050614105757
+633.1050614105757
  21
 186.06818181818184
  31
@@ -10201,13 +10039,13 @@ LINE
   8
 0
  10
-689.1050614105757
+633.1050614105757
  20
 186.06818181818184
  30
 0.0
  11
-689.1050614105757
+633.1050614105757
  21
 197.65909090909093
  31
@@ -10219,13 +10057,13 @@ LINE
   8
 0
  10
-689.1050614105757
+633.1050614105757
  20
 197.65909090909093
  30
 0.0
  11
-688.6050614105757
+632.6050614105758
  21
 197.65909090909093
  31
@@ -10237,13 +10075,13 @@ LINE
   8
 0
  10
-528.8550614105758
+520.8550614105757
  20
 160.75000000000003
  30
 0.0
  11
-528.8550614105758
+520.8550614105757
  21
 157.75000000000003
  31
@@ -10255,13 +10093,13 @@ LINE
   8
 0
  10
-528.8550614105758
+520.8550614105757
  20
 157.75000000000003
  30
 0.0
  11
-531.8550614105758
+523.8550614105758
  21
 157.75000000000003
  31
@@ -10273,13 +10111,13 @@ LINE
   8
 0
  10
-531.8550614105758
+523.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-531.8550614105758
+523.8550614105758
  21
 160.75000000000003
  31
@@ -10291,13 +10129,13 @@ LINE
   8
 0
  10
-531.8550614105758
+523.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-528.8550614105758
+520.8550614105757
  21
 160.75000000000003
  31
@@ -10309,13 +10147,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 158.75000000000003
  31
@@ -10327,13 +10165,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 158.75000000000003
  31
@@ -10345,13 +10183,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 159.75000000000003
  31
@@ -10363,13 +10201,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 159.75000000000003
  31
@@ -10381,13 +10219,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 161.25
  31
@@ -10399,13 +10237,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 161.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 161.25
  31
@@ -10417,13 +10255,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 161.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 162.25000000000003
  31
@@ -10435,13 +10273,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 162.25000000000003
  31
@@ -10453,13 +10291,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 161.25
  31
@@ -10471,13 +10309,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 161.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 161.25
  31
@@ -10489,13 +10327,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 161.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 162.25000000000003
  31
@@ -10507,13 +10345,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 162.25000000000003
  31
@@ -10525,13 +10363,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 163.75
  31
@@ -10543,13 +10381,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 163.75
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 163.75
  31
@@ -10561,13 +10399,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 163.75
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 164.75000000000003
  31
@@ -10579,13 +10417,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 164.75000000000003
  31
@@ -10597,13 +10435,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 163.75
  31
@@ -10615,13 +10453,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 163.75
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 163.75
  31
@@ -10633,13 +10471,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 163.75
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 164.75000000000003
  31
@@ -10651,13 +10489,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 164.75000000000003
  31
@@ -10669,13 +10507,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 166.25
  31
@@ -10687,13 +10525,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 166.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 166.25
  31
@@ -10705,13 +10543,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 166.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 167.25000000000003
  31
@@ -10723,13 +10561,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 167.25000000000003
  31
@@ -10741,13 +10579,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 166.25
  31
@@ -10759,13 +10597,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 166.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 166.25
  31
@@ -10777,13 +10615,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 166.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 167.25000000000003
  31
@@ -10795,13 +10633,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 167.25000000000003
  31
@@ -10813,13 +10651,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 168.75000000000003
  31
@@ -10831,13 +10669,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 168.75000000000003
  31
@@ -10849,13 +10687,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 169.75000000000003
  31
@@ -10867,13 +10705,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 169.75000000000003
  31
@@ -10885,13 +10723,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 168.75000000000003
  31
@@ -10903,13 +10741,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 168.75000000000003
  31
@@ -10921,13 +10759,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 169.75000000000003
  31
@@ -10939,13 +10777,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 169.75000000000003
  31
@@ -10957,13 +10795,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 171.25000000000003
  31
@@ -10975,13 +10813,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 171.25000000000003
  31
@@ -10993,13 +10831,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 172.25000000000003
  31
@@ -11011,13 +10849,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 172.25000000000003
  31
@@ -11029,13 +10867,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 171.25000000000003
  31
@@ -11047,13 +10885,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 171.25000000000003
  31
@@ -11065,13 +10903,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 172.25000000000003
  31
@@ -11083,13 +10921,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 172.25000000000003
  31
@@ -11101,13 +10939,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 173.75000000000003
  31
@@ -11119,13 +10957,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 173.75000000000003
  31
@@ -11137,13 +10975,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 174.75000000000003
  31
@@ -11155,13 +10993,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 174.75000000000003
  31
@@ -11173,13 +11011,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 173.75000000000003
  31
@@ -11191,13 +11029,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 173.75000000000003
  31
@@ -11209,13 +11047,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 174.75000000000003
  31
@@ -11227,13 +11065,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 174.75000000000003
  31
@@ -11245,13 +11083,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 177.25
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 176.25000000000003
  31
@@ -11263,13 +11101,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 176.25000000000003
  31
@@ -11281,13 +11119,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 177.25
  31
@@ -11299,13 +11137,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 177.25
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 177.25
  31
@@ -11317,13 +11155,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 177.25
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 176.25000000000003
  31
@@ -11335,13 +11173,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 176.25000000000003
  31
@@ -11353,13 +11191,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 177.25
  31
@@ -11371,13 +11209,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 177.25
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 177.25
  31
@@ -11389,13 +11227,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 179.75
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 178.75000000000003
  31
@@ -11407,13 +11245,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 178.75000000000003
  31
@@ -11425,13 +11263,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 179.75
  31
@@ -11443,13 +11281,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 179.75
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 179.75
  31
@@ -11461,13 +11299,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 179.75
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 178.75000000000003
  31
@@ -11479,13 +11317,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 178.75000000000003
  31
@@ -11497,13 +11335,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 179.75
  31
@@ -11515,13 +11353,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 179.75
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 179.75
  31
@@ -11533,13 +11371,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 182.25
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 181.25000000000003
  31
@@ -11551,13 +11389,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 181.25000000000003
  31
@@ -11569,13 +11407,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 182.25
  31
@@ -11587,13 +11425,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 182.25
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 182.25
  31
@@ -11605,13 +11443,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 182.25
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 181.25000000000003
  31
@@ -11623,13 +11461,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 181.25000000000003
  31
@@ -11641,13 +11479,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 182.25
  31
@@ -11659,13 +11497,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 182.25
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 182.25
  31
@@ -11677,13 +11515,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 183.75000000000003
  31
@@ -11695,13 +11533,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 183.75000000000003
  31
@@ -11713,13 +11551,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 184.75000000000003
  31
@@ -11731,13 +11569,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 184.75000000000003
  31
@@ -11749,13 +11587,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 183.75000000000003
  31
@@ -11767,13 +11605,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 183.75000000000003
  31
@@ -11785,13 +11623,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 184.75000000000003
  31
@@ -11803,13 +11641,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 184.75000000000003
  31
@@ -11821,13 +11659,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 186.25000000000003
  31
@@ -11839,13 +11677,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 186.25000000000003
  31
@@ -11857,13 +11695,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 187.25000000000003
  31
@@ -11875,13 +11713,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 187.25000000000003
  31
@@ -11893,13 +11731,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 186.25000000000003
  31
@@ -11911,13 +11749,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 186.25000000000003
  31
@@ -11929,13 +11767,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 187.25000000000003
  31
@@ -11947,13 +11785,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 187.25000000000003
  31
@@ -11965,13 +11803,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 188.75
  31
@@ -11983,13 +11821,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 188.75
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 188.75
  31
@@ -12001,13 +11839,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 188.75
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 189.75000000000003
  31
@@ -12019,13 +11857,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 189.75000000000003
  31
@@ -12037,13 +11875,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 188.75
  31
@@ -12055,13 +11893,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 188.75
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 188.75
  31
@@ -12073,13 +11911,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 188.75
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 189.75000000000003
  31
@@ -12091,13 +11929,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 189.75000000000003
  31
@@ -12109,13 +11947,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 191.25
  31
@@ -12127,13 +11965,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 191.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 191.25
  31
@@ -12145,13 +11983,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 191.25
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 192.25000000000003
  31
@@ -12163,13 +12001,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 192.25000000000003
  31
@@ -12181,13 +12019,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 191.25
  31
@@ -12199,13 +12037,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 191.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 191.25
  31
@@ -12217,13 +12055,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 191.25
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 192.25000000000003
  31
@@ -12235,13 +12073,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 192.25000000000003
  31
@@ -12253,13 +12091,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 193.75000000000003
  31
@@ -12271,13 +12109,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 193.75000000000003
  31
@@ -12289,13 +12127,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 194.75000000000003
  31
@@ -12307,13 +12145,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 194.75000000000003
  31
@@ -12325,13 +12163,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 193.75000000000003
  31
@@ -12343,13 +12181,13 @@ LINE
   8
 0
  10
-549.8550614105758
+541.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 193.75000000000003
  31
@@ -12361,13 +12199,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-550.8550614105758
+542.8550614105758
  21
 194.75000000000003
  31
@@ -12379,13 +12217,13 @@ LINE
   8
 0
  10
-550.8550614105758
+542.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-549.8550614105758
+541.8550614105758
  21
 194.75000000000003
  31
@@ -12397,13 +12235,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 197.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 196.25000000000003
  31
@@ -12415,13 +12253,13 @@ LINE
   8
 0
  10
-529.8550614105758
+521.8550614105757
  20
 196.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 196.25000000000003
  31
@@ -12433,13 +12271,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-530.8550614105757
+522.8550614105758
  21
 197.25000000000003
  31
@@ -12451,13 +12289,13 @@ LINE
   8
 0
  10
-530.8550614105757
+522.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-529.8550614105758
+521.8550614105757
  21
 197.25000000000003
  31
@@ -12469,13 +12307,13 @@ LINE
   8
 0
  10
-548.8550614105757
+540.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-548.8550614105757
+540.8550614105758
  21
 195.25000000000003
  31
@@ -12487,13 +12325,13 @@ LINE
   8
 0
  10
-548.8550614105757
+540.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-551.8550614105758
+543.8550614105758
  21
 195.25000000000003
  31
@@ -12505,13 +12343,13 @@ LINE
   8
 0
  10
-551.8550614105758
+543.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-551.8550614105758
+543.8550614105758
  21
 198.25000000000003
  31
@@ -12523,13 +12361,13 @@ LINE
   8
 0
  10
-551.8550614105758
+543.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-548.8550614105757
+540.8550614105758
  21
 198.25000000000003
  31
@@ -12541,13 +12379,13 @@ LINE
   8
 0
  10
-544.6050614105757
+536.6050614105758
  20
 155.25000000000003
  30
 0.0
  11
-536.1050614105757
+528.1050614105758
  21
 155.25000000000003
  31
@@ -12559,13 +12397,13 @@ LINE
   8
 0
  10
-536.1050614105757
+528.1050614105758
  20
 155.25000000000003
  30
 0.0
  11
-536.1050614105757
+528.1050614105758
  21
 154.75
  31
@@ -12577,13 +12415,13 @@ LINE
   8
 0
  10
-536.1050614105757
+528.1050614105758
  20
 154.75
  30
 0.0
  11
-544.6050614105757
+536.6050614105758
  21
 154.75
  31
@@ -12595,13 +12433,13 @@ LINE
   8
 0
  10
-544.6050614105757
+536.6050614105758
  20
 154.75
  30
 0.0
  11
-544.6050614105757
+536.6050614105758
  21
 155.25000000000003
  31
@@ -12613,13 +12451,13 @@ LINE
   8
 0
  10
-536.1050614105757
+528.1050614105758
  20
 203.00000000000003
  30
 0.0
  11
-544.6050614105757
+536.6050614105758
  21
 203.00000000000003
  31
@@ -12631,13 +12469,13 @@ LINE
   8
 0
  10
-544.6050614105757
+536.6050614105758
  20
 203.00000000000003
  30
 0.0
  11
-544.6050614105757
+536.6050614105758
  21
 203.50000000000003
  31
@@ -12649,13 +12487,13 @@ LINE
   8
 0
  10
-544.6050614105757
+536.6050614105758
  20
 203.50000000000003
  30
 0.0
  11
-536.1050614105757
+528.1050614105758
  21
 203.50000000000003
  31
@@ -12667,13 +12505,13 @@ LINE
   8
 0
  10
-536.1050614105757
+528.1050614105758
  20
 203.50000000000003
  30
 0.0
  11
-536.1050614105757
+528.1050614105758
  21
 203.00000000000003
  31
@@ -12685,13 +12523,13 @@ LINE
   8
 0
  10
-520.8550614105757
+512.8550614105757
  20
 158.59090909090912
  30
 0.0
  11
-525.8550614105757
+517.8550614105757
  21
 158.59090909090912
  31
@@ -12703,13 +12541,13 @@ LINE
   8
 0
  10
-525.8550614105757
+517.8550614105757
  20
 158.59090909090912
  30
 0.0
  11
-525.8550614105757
+517.8550614105757
  21
 169.68181818181822
  31
@@ -12721,13 +12559,13 @@ LINE
   8
 0
  10
-525.8550614105757
+517.8550614105757
  20
 169.68181818181822
  30
 0.0
  11
-520.8550614105757
+512.8550614105757
  21
 169.68181818181822
  31
@@ -12739,13 +12577,13 @@ LINE
   8
 0
  10
-520.8550614105757
+512.8550614105757
  20
 186.31818181818184
  30
 0.0
  11
-525.8550614105757
+517.8550614105757
  21
 186.31818181818184
  31
@@ -12757,13 +12595,13 @@ LINE
   8
 0
  10
-525.8550614105757
+517.8550614105757
  20
 186.31818181818184
  30
 0.0
  11
-525.8550614105757
+517.8550614105757
  21
 197.40909090909093
  31
@@ -12775,13 +12613,13 @@ LINE
   8
 0
  10
-525.8550614105757
+517.8550614105757
  20
 197.40909090909093
  30
 0.0
  11
-520.8550614105757
+512.8550614105757
  21
 197.40909090909093
  31
@@ -12793,13 +12631,13 @@ LINE
   8
 0
  10
-546.1050614105758
+514.1050614105758
  20
 131.50000000000003
  30
 0.0
  11
-549.6050614105758
+517.6050614105757
  21
 131.50000000000003
  31
@@ -12811,13 +12649,13 @@ LINE
   8
 0
  10
-549.6050614105758
+517.6050614105757
  20
 131.50000000000003
  30
 0.0
  11
-549.6050614105758
+517.6050614105757
  21
 139.50000000000003
  31
@@ -12829,13 +12667,13 @@ LINE
   8
 0
  10
-549.6050614105758
+517.6050614105757
  20
 139.50000000000003
  30
 0.0
  11
-546.1050614105758
+514.1050614105758
  21
 139.50000000000003
  31
diff --git a/rocolib/output/BoatWithServoStackBattery/tree.png b/rocolib/output/BoatWithServoStackBattery/tree.png
index 9d9f59fb47c54c6cb069f269db3e45cea6cf0c2d..366ad41f3614407b80192ff38cd89999639b8247 100644
Binary files a/rocolib/output/BoatWithServoStackBattery/tree.png and b/rocolib/output/BoatWithServoStackBattery/tree.png differ