diff --git a/rocolib/builders/PaddleboatWithCameraBuilder.py b/rocolib/builders/PaddleboatWithCameraBuilder.py
index 4085ffc1aa9aa703f10c6ef9d22c2c33dbeb9e9a..4e648e9d2eb5807cd7578c6fea7b8980ba0c562a 100644
--- a/rocolib/builders/PaddleboatWithCameraBuilder.py
+++ b/rocolib/builders/PaddleboatWithCameraBuilder.py
@@ -24,9 +24,6 @@ for i in range(2):
                     '(getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"),'
                     'getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"), x[0]- 9 * getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"),'
                     'getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"))')
-    # c.addSubcomponent("rect%d" % i, "Rectangle")
-    # c.addConstraint(("rect%d" %i, "l"), "depth")
-    # c.addConstraint(("rect%d" %i, "w"), "driveservo", "getDim(x, 'motorwidth')")
 
 c.addConnection(("boat", "staredge"), ("split0", "topedge0"))
 c.addConnection(("boat", "portedge"), ("split1", "topedge0"))
@@ -34,4 +31,24 @@ c.addConnection(("boat", "portedge"), ("split1", "topedge0"))
 c.addConnection(("mount0", "beam.botedge2"), ("split0", "botedge4"), angle=-180)
 c.addConnection(("mount1", "beam.botedge2"), ("split1", "botedge5"), angle=-180)
 
+#Seats
+c.addSubcomponent("camHolder", "Rectangle")
+c.addConstraint(("camHolder", "l"), "boat.width")
+c.addConstraint(("camHolder", "w"), "boat.width", "13") #asks for another param, so I just put boat.width
+# c.addConnection(("split0", "botedge0"), ("boat", "portedge"), angle=90)
+# c.addConnection(("split1", "topedge0"), ("boat", "staredge"), angle=90, tabWidth=10)
+c.addConnection(("split0", "botedge0"), ("camHolder", "r"), angle=90)
+c.addConnection(("split1", "botedge9"), ("camHolder", "l"), tabWidth=6, angle=90)
+
+c.addSubcomponent("boatSupport", "Rectangle")
+c.addConstraint(("boatSupport", "l"), "boat.width")
+c.addConstraint(("boatSupport", "w"), "boat.width", "13") #asks for another param, so I just put boat.width
+# c.addConnection(("split0", "botedge0"), ("boat", "portedge"), angle=90)
+# c.addConnection(("split1", "topedge0"), ("boat", "staredge"), angle=90, tabWidth=10)
+c.addConnection(("split0", "botedge9"), ("boatSupport", "r"), tabWidth=6, angle=90)
+c.addConnection(("split1", "botedge0"), ("boatSupport", "l"), angle=90)
+
+c.addSubcomponent("stack", "SubESP32Stack")
+
+
 c.toLibrary("PaddleboatWithCamera")
diff --git a/rocolib/builders/SubESP32StackBuilder.py b/rocolib/builders/SubESP32StackBuilder.py
index 8e36918e304f05fd6d11c6d0e1f06e60534a8fee..90b248edb5fdfc168feb99217bee1aa614a64e3a 100644
--- a/rocolib/builders/SubESP32StackBuilder.py
+++ b/rocolib/builders/SubESP32StackBuilder.py
@@ -11,7 +11,7 @@ c.addParameter("length", 61, paramType="length")
 
 c.addParameter("brains", "esp32stack", paramType="dimension")
 c.addConstraint(("holder", "length"), "length")
-c.addConstraint(("holder", "depth"), "brains", "getDim(x, 'height')")
+c.addConstraint(("holder", "depth"), "brains", "60")
 c.addConstraint(("holder", "width"), "brains", "getDim(x, 'width')")
 
 #This parameter will change when the dimensions of the car or vehicle is changed
diff --git a/rocolib/library/PaddleboatWithCamera.yaml b/rocolib/library/PaddleboatWithCamera.yaml
index 7c75cb3be97ff059e230a90d0b1a7485c505fa34..f5bb90978ce7ab149e5519c3a1f09f1add6f6654 100644
--- a/rocolib/library/PaddleboatWithCamera.yaml
+++ b/rocolib/library/PaddleboatWithCamera.yaml
@@ -23,6 +23,32 @@ connections:
   - - split1
     - botedge5
   - angle: -180
+  connection4:
+  - - split0
+    - botedge0
+  - - camHolder
+    - r
+  - angle: 90
+  connection5:
+  - - split1
+    - botedge9
+  - - camHolder
+    - l
+  - angle: 90
+    tabWidth: 6
+  connection6:
+  - - split0
+    - botedge9
+  - - boatSupport
+    - r
+  - angle: 90
+    tabWidth: 6
+  connection7:
+  - - split1
+    - botedge0
+  - - boatSupport
+    - l
+  - angle: 90
 interfaces: {}
 parameters:
   boat.boat._dx:
@@ -235,6 +261,24 @@ subcomponents:
         parameter: boat.stern._q_k
       width:
         parameter: boat.width
+  boatSupport:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      l:
+        parameter: boat.width
+      w:
+        function: '13'
+        parameter: boat.width
+  camHolder:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      l:
+        parameter: boat.width
+      w:
+        function: '13'
+        parameter: boat.width
   mount0:
     classname: MountedServo
     kwargs: {}
@@ -281,3 +325,7 @@ subcomponents:
       toplength:
         function: (x,)
         parameter: boat.length
+  stack:
+    classname: SubESP32Stack
+    kwargs: {}
+    parameters: {}
diff --git a/rocolib/library/SubESP32Stack.yaml b/rocolib/library/SubESP32Stack.yaml
index c465dd7cf2bcac153709c0050b104c4961d30057..7fa318693d01fafcbfcc68eaf3607f4d275eebfa 100644
--- a/rocolib/library/SubESP32Stack.yaml
+++ b/rocolib/library/SubESP32Stack.yaml
@@ -136,7 +136,7 @@ subcomponents:
     kwargs: {}
     parameters:
       depth:
-        function: getDim(x, 'height')
+        function: '60'
         parameter: brains
       length:
         parameter: length
diff --git a/rocolib/output/.DS_Store b/rocolib/output/.DS_Store
index 2f66512b8dbf4be042193fffe5ca7117e64c5a6b..192fc1695f4b31c8d7f28ad8817ec8c110761fef 100644
Binary files a/rocolib/output/.DS_Store and b/rocolib/output/.DS_Store differ
diff --git a/rocolib/output/PaddleboatWithCamera/graph-anim.svg b/rocolib/output/PaddleboatWithCamera/graph-anim.svg
index 4a1d723f1bc93368a54fac57c4d011e60f513e80..d908c09491811dabc891e12c87977bd7f22073b9 100644
--- a/rocolib/output/PaddleboatWithCamera/graph-anim.svg
+++ b/rocolib/output/PaddleboatWithCamera/graph-anim.svg
@@ -1,180 +1,206 @@
 <?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="234.031242mm" version="1.1" viewBox="0.000000 0.000000 310.000000 234.031242" width="310.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="234.031242mm" version="1.1" viewBox="0.000000 0.000000 498.000000 234.031242" width="498.000000mm">
   <defs/>
-  <line opacity="0.5" stroke="#0000ff" x1="179.99999999999994" x2="179.99999999999994" y1="64.03124199999999" y2="194.03124200000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="109.99999999999996" x2="109.99999999999996" y1="64.03124199999999" y2="194.03124200000002"/>
-  <line opacity="0.21477671252272268" stroke="#0000ff" x1="144.99999999999997" x2="109.99999999999996" y1="64.03124199999999" y2="64.03124199999999"/>
-  <line opacity="0.21477671252272268" stroke="#0000ff" x1="179.99999999999994" x2="144.99999999999997" y1="64.03124199999999" y2="64.03124199999999"/>
-  <line opacity="0.3833772688091895" stroke="#0000ff" x1="144.99999999999997" x2="109.99999999999996" y1="-3.7432849353535863e-07" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="112.32105756343545" x2="91.16052878171769" y1="17.44773491586702" y2="28.745631275293622"/>
-  <line stroke="#000000" x1="144.99999999999997" x2="112.32105756343545" y1="-3.743284651136492e-07" y2="17.44773491586702"/>
-  <line opacity="1.0" stroke="#0000ff" x1="109.99999999999996" x2="91.16052878171769" y1="64.03124199999999" y2="28.745631275293622"/>
-  <line opacity="1.0" stroke="#ff0000" x1="109.99999999999996" x2="69.99999999999996" y1="64.03124199999999" y2="40.04352763472023"/>
-  <line stroke="#000000" x1="91.16052878171769" x2="69.99999999999996" y1="28.745631275293608" y2="40.04352763472023"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="69.99999999999996" x2="69.99999999999996" y1="64.031242" y2="40.04352763472023"/>
-  <line opacity="0.1944001122142148" stroke="#0000ff" x1="109.99999999999996" x2="69.99999999999996" y1="64.03124199999999" y2="64.031242"/>
-  <line stroke="#000000" x1="62.00409521157335" x2="69.99999999999996" y1="64.031242" y2="64.031242"/>
-  <line stroke="#000000" x1="62.004095211573336" x2="62.00409521157335" y1="40.04352763472023" y2="64.031242"/>
-  <line stroke="#000000" x1="69.99999999999994" x2="62.004095211573336" y1="40.04352763472023" y2="40.04352763472023"/>
-  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="110.00000000000001" y1="194.031242" y2="194.031242"/>
-  <line opacity="1.0" stroke="#ff0000" x1="70.00000000000001" x2="110.0" y1="234.031242" y2="194.031242"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="70.00000000000001" x2="70.0" y1="234.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="110.00000000000001" y1="234.031242" y2="234.031242"/>
-  <line opacity="1.0" stroke="#0000ff" x1="110.00000000000001" x2="110.0" y1="234.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="149.99999999999997" x2="145.0" y1="234.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="110.0" x2="149.99999999999997" y1="234.031242" y2="234.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="110.0" x2="145.0" y1="194.031242" y2="194.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="145.0" x2="179.99999999999997" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="140.00000000000003" x2="179.99999999999997" y1="234.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="145.0" x2="140.00000000000003" y1="234.031242" y2="234.031242"/>
-  <line opacity="1.0" stroke="#0000ff" x1="179.99999999999997" x2="179.99999999999997" y1="194.031242" y2="234.031242"/>
-  <line opacity="1.0" stroke="#ff0000" x1="179.99999999999997" x2="219.99999999999997" y1="194.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="179.99999999999997" x2="219.99999999999997" y1="234.031242" y2="234.031242"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="219.99999999999997" x2="219.99999999999997" y1="194.031242" y2="234.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="179.99999999999997" x2="219.99999999999997" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="233.33333333333334" x2="220.0" y1="194.03124200000002" y2="194.03124200000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="179.99999999999997" x2="179.99999999999997" y1="64.03124199999999" y2="194.03124200000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="109.99999999999999" x2="109.99999999999999" y1="64.03124199999999" y2="194.03124200000002"/>
+  <line opacity="0.21477671252272268" stroke="#0000ff" x1="145.0" x2="109.99999999999999" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line opacity="0.21477671252272268" stroke="#0000ff" x1="179.99999999999997" x2="145.0" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line opacity="0.3833772688091895" stroke="#0000ff" x1="145.0" x2="109.99999999999999" y1="-3.7432849353535863e-07" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="112.32105756343546" x2="91.16052878171773" y1="17.44773491586702" y2="28.745631275293622"/>
+  <line stroke="#000000" x1="145.0" x2="112.32105756343546" y1="-3.743284651136492e-07" y2="17.44773491586702"/>
+  <line opacity="1.0" stroke="#0000ff" x1="109.99999999999999" x2="91.16052878171773" y1="64.03124199999999" y2="28.745631275293622"/>
+  <line opacity="1.0" stroke="#ff0000" x1="109.99999999999999" x2="69.99999999999999" y1="64.03124199999999" y2="40.04352763472023"/>
+  <line stroke="#000000" x1="91.16052878171773" x2="69.99999999999999" y1="28.745631275293608" y2="40.04352763472023"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="69.99999999999999" x2="69.99999999999999" y1="64.031242" y2="40.04352763472023"/>
+  <line opacity="0.1944001122142148" stroke="#0000ff" x1="109.99999999999999" x2="69.99999999999999" y1="64.03124199999999" y2="64.031242"/>
+  <line stroke="#000000" x1="62.00409521157338" x2="69.99999999999999" y1="64.031242" y2="64.031242"/>
+  <line stroke="#000000" x1="62.004095211573365" x2="62.00409521157338" y1="40.04352763472023" y2="64.031242"/>
+  <line stroke="#000000" x1="69.99999999999997" x2="62.004095211573365" y1="40.04352763472023" y2="40.04352763472023"/>
+  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000004" x2="110.00000000000004" y1="194.031242" y2="194.031242"/>
+  <line opacity="1.0" stroke="#ff0000" x1="70.00000000000004" x2="110.00000000000003" y1="234.031242" y2="194.031242"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="70.00000000000004" x2="70.00000000000003" y1="234.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="110.00000000000004" y1="234.031242" y2="234.031242"/>
+  <line opacity="1.0" stroke="#0000ff" x1="110.00000000000004" x2="110.00000000000003" y1="234.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="150.0" x2="145.00000000000003" y1="234.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="110.00000000000003" x2="150.0" y1="234.031242" y2="234.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="110.00000000000003" x2="145.00000000000003" y1="194.031242" y2="194.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="145.00000000000003" x2="180.0" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="140.00000000000003" x2="180.0" y1="234.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="145.00000000000003" x2="140.00000000000003" y1="234.031242" y2="234.031242"/>
+  <line opacity="1.0" stroke="#0000ff" x1="180.0" x2="180.0" y1="194.031242" y2="234.031242"/>
+  <line opacity="1.0" stroke="#ff0000" x1="180.0" x2="220.00000000000003" y1="194.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="180.0" x2="220.00000000000003" y1="234.031242" y2="234.031242"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="220.00000000000003" x2="220.00000000000003" y1="194.031242" y2="234.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="180.0" x2="220.00000000000003" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="233.33333333333334" x2="220.00000000000003" y1="194.03124200000002" y2="194.03124200000002"/>
   <line stroke="#000000" x1="233.33333333333334" x2="233.33333333333334" y1="234.031242" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="220.0" x2="233.33333333333334" y1="234.031242" y2="234.031242"/>
-  <line opacity="0.1944001122142148" stroke="#0000ff" x1="220.00000000000003" x2="180.0" y1="64.031242" y2="64.03124199999999"/>
-  <line opacity="1.0" stroke="#ff0000" x1="220.00000000000003" x2="180.0" y1="40.04352763472023" y2="64.03124199999999"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="220.00000000000003" x2="220.0" y1="40.04352763472023" y2="64.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="198.83947121828228" y1="40.043527634720235" y2="28.745631275293622"/>
-  <line opacity="1.0" stroke="#0000ff" x1="198.83947121828228" x2="180.0" y1="28.745631275293622" y2="64.03124199999999"/>
-  <line opacity="0.3833772688091895" stroke="#0000ff" x1="145.00000000000003" x2="180.0" y1="-3.743284651136492e-07" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="177.6789424365645" x2="145.00000000000003" y1="17.44773491586702" y2="-3.743284651136492e-07"/>
-  <line stroke="#000000" x1="198.83947121828228" x2="177.6789424365645" y1="28.745631275293622" y2="17.44773491586702"/>
-  <line stroke="#000000" x1="227.99590478842663" x2="220.00000000000003" y1="40.04352763472023" y2="40.04352763472023"/>
-  <line stroke="#000000" x1="227.99590478842663" x2="227.99590478842663" y1="64.031242" y2="40.04352763472023"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="227.99590478842663" y1="64.031242" y2="64.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="77.031242" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="233.33333333333334" y1="234.031242" y2="234.031242"/>
+  <line opacity="0.1944001122142148" stroke="#0000ff" x1="220.00000000000003" x2="180.00000000000006" y1="64.031242" y2="64.03124199999999"/>
+  <line opacity="1.0" stroke="#ff0000" x1="220.00000000000003" x2="180.00000000000006" y1="40.04352763472023" y2="64.03124199999999"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="220.00000000000003" x2="220.00000000000003" y1="40.04352763472023" y2="64.031242"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="198.8394712182823" y1="40.043527634720235" y2="28.745631275293622"/>
+  <line opacity="1.0" stroke="#0000ff" x1="198.8394712182823" x2="180.00000000000006" y1="28.745631275293622" y2="64.03124199999999"/>
+  <line opacity="0.3833772688091895" stroke="#0000ff" x1="145.00000000000006" x2="180.00000000000006" y1="-3.743284651136492e-07" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="177.67894243656454" x2="145.00000000000006" y1="17.44773491586702" y2="-3.743284651136492e-07"/>
+  <line stroke="#000000" x1="198.83947121828228" x2="177.67894243656454" y1="28.745631275293622" y2="17.44773491586702"/>
+  <line stroke="#000000" x1="227.99590478842666" x2="220.00000000000006" y1="40.04352763472023" y2="40.04352763472023"/>
+  <line stroke="#000000" x1="227.99590478842666" x2="227.99590478842666" y1="64.031242" y2="40.04352763472023"/>
+  <line stroke="#000000" x1="220.00000000000006" x2="227.99590478842666" y1="64.031242" y2="64.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="220.00000000000003" x2="220.00000000000003" y1="64.03124199999999" y2="77.031242"/>
   <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="90.03124199999999" y2="77.031242"/>
   <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="103.031242" y2="90.03124199999999"/>
-  <line stroke="#000000" x1="220.0" x2="220.00000000000003" y1="116.03124199999999" y2="103.031242"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="129.03124199999996" y2="116.03124199999999"/>
-  <line opacity="1.0" stroke="#ff0000" x1="220.0" x2="220.0" y1="142.031242" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="155.03124199999996" y2="142.031242"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="168.031242" y2="155.03124199999996"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="181.031242" y2="168.031242"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="194.031242" y2="181.031242"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="116.03124199999999" y2="103.031242"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="129.03124199999996" y2="116.03124199999999"/>
+  <line opacity="1.0" stroke="#ff0000" x1="220.00000000000003" x2="220.00000000000003" y1="142.031242" y2="129.03124199999996"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="155.03124199999996" y2="142.031242"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="168.031242" y2="155.03124199999996"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="181.031242" y2="168.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="220.00000000000003" x2="220.00000000000003" y1="181.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="194.031242" y2="194.031242"/>
   <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="226.00000000000003" x2="220.00000000000003" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="226.00000000000003" x2="226.00000000000003" y1="77.031242" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="226.00000000000003" y1="77.031242" y2="77.031242"/>
   <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="142.03124200000002" y2="129.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="290.00000000000006" x2="220.0" y1="142.03124200000002" y2="142.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="290.00000000000006" x2="220.0" y1="129.031242" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="290.0" x2="290.0" y1="161.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="219.99999999999997" x2="290.0" y1="161.031242" y2="161.03124200000002"/>
-  <line stroke="#000000" x1="219.99999999999997" x2="219.99999999999997" y1="142.031242" y2="161.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="290.00000000000006" x2="220.00000000000003" y1="142.03124200000002" y2="142.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="290.00000000000006" x2="220.00000000000003" y1="129.031242" y2="129.03124199999996"/>
+  <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="161.03124200000002" y2="142.03124200000002"/>
+  <line stroke="#000000" x1="220.0" x2="290.00000000000006" y1="161.031242" y2="161.03124200000002"/>
+  <line stroke="#000000" x1="220.0" x2="220.0" y1="142.031242" y2="161.031242"/>
   <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="129.031242" y2="110.031242"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="110.03124199999999" y2="129.03124199999996"/>
-  <line opacity="0.5" stroke="#0000ff" x1="290.00000000000006" x2="220.0" y1="110.031242" y2="110.03124199999999"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="110.03124199999999" y2="129.03124199999996"/>
+  <line opacity="0.5" stroke="#0000ff" x1="290.00000000000006" x2="220.00000000000003" y1="110.031242" y2="110.03124199999999"/>
   <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="110.031242" y2="97.03124200000002"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="97.031242" y2="110.03124199999999"/>
-  <line opacity="0.5" stroke="#0000ff" x1="220.0" x2="290.00000000000006" y1="97.031242" y2="97.03124200000002"/>
-  <line stroke="#000000" x1="219.99999999999997" x2="219.99999999999997" y1="87.031242" y2="97.031242"/>
-  <line stroke="#000000" x1="290.0" x2="219.99999999999997" y1="87.03124200000002" y2="87.031242"/>
-  <line stroke="#000000" x1="290.0" x2="290.0" y1="97.03124200000002" y2="87.03124200000002"/>
-  <line stroke="#000000" x1="56.66666666666668" x2="70.00000000000001" y1="234.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="56.666666666666664" x2="56.66666666666668" y1="194.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="70.0" x2="56.666666666666664" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="181.03124200000002" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="70.0" x2="70.00000000000001" y1="168.03124200000002" y2="181.03124200000002"/>
-  <line stroke="#000000" x1="70.0" x2="70.0" y1="155.031242" y2="168.03124200000002"/>
-  <line stroke="#000000" x1="70.0" x2="70.0" y1="142.03124200000002" y2="155.031242"/>
-  <line opacity="1.0" stroke="#ff0000" x1="69.99999999999999" x2="70.0" y1="129.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="69.99999999999999" x2="69.99999999999999" y1="116.03124200000002" y2="129.03124200000002"/>
-  <line stroke="#000000" x1="69.99999999999999" x2="69.99999999999999" y1="103.03124200000002" y2="116.03124200000002"/>
-  <line stroke="#000000" x1="69.99999999999999" x2="69.99999999999999" y1="90.031242" y2="103.03124200000002"/>
-  <line stroke="#000000" x1="69.99999999999997" x2="69.99999999999999" y1="77.03124200000002" y2="90.031242"/>
-  <line stroke="#000000" x1="69.99999999999997" x2="69.99999999999997" y1="64.03124200000003" y2="77.03124200000002"/>
-  <line stroke="#000000" x1="69.99999999999997" x2="69.99999999999997" y1="64.03124200000003" y2="64.03124200000003"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="194.03124200000002" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="129.03124200000002" y2="142.03124200000005"/>
-  <line opacity="0.5" stroke="#0000ff" x1="0.0" x2="69.99999999999999" y1="129.03124200000002" y2="129.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="0.0" x2="70.0" y1="142.03124200000005" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="110.03124200000003" y2="129.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="0.0" y1="110.03124200000002" y2="110.03124200000003"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="129.031242" y2="110.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="142.03124200000005" y2="161.03124200000005"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="161.03124200000002" y2="142.03124200000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="0.0" x2="70.00000000000001" y1="161.03124200000005" y2="161.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="161.03124200000005" y2="174.03124200000005"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="174.03124200000002" y2="161.03124200000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="0.0" y1="174.03124200000002" y2="174.03124200000005"/>
-  <line stroke="#000000" x1="70.0" x2="70.0" y1="184.03124200000002" y2="174.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="70.0" y1="184.03124200000002" y2="184.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="174.03124200000005" y2="184.03124200000002"/>
-  <line stroke="#888888" x1="108.43030382152985" x2="100.93572409356511" y1="26.606620936353796" y2="30.608079779724527"/>
-  <line stroke="#888888" x1="100.93572409356511" x2="100.70023070333659" y1="30.608079779724527" y2="30.167009645665704"/>
-  <line stroke="#888888" x1="100.70023070333659" x2="108.19481043130132" y1="30.167009645665704" y2="26.165550802294977"/>
-  <line stroke="#888888" x1="108.19481043130132" x2="108.43030382152985" y1="26.165550802294977" y2="26.606620936353796"/>
-  <line stroke="#888888" x1="64.00307140867999" x2="68.0010238028933" y1="48.03943242314682" y2="48.03943242314682"/>
-  <line stroke="#888888" x1="68.0010238028933" x2="68.0010238028933" y1="48.03943242314682" y2="56.03533721157341"/>
-  <line stroke="#888888" x1="68.0010238028933" x2="64.00307140867999" y1="56.03533721157341" y2="56.03533721157343"/>
-  <line stroke="#888888" x1="123.08333333333333" x2="136.91666666666663" y1="223.781242" y2="223.781242"/>
-  <line stroke="#888888" x1="136.91666666666663" x2="136.91666666666663" y1="223.781242" y2="224.281242"/>
-  <line stroke="#888888" x1="136.91666666666663" x2="123.08333333333333" y1="224.281242" y2="224.281242"/>
-  <line stroke="#888888" x1="123.08333333333333" x2="123.08333333333333" y1="224.281242" y2="223.781242"/>
-  <line stroke="#888888" x1="153.08333333333334" x2="166.91666666666666" y1="223.781242" y2="223.781242"/>
-  <line stroke="#888888" x1="166.91666666666666" x2="166.91666666666666" y1="223.781242" y2="224.281242"/>
-  <line stroke="#888888" x1="166.91666666666666" x2="153.08333333333334" y1="224.281242" y2="224.281242"/>
-  <line stroke="#888888" x1="153.08333333333334" x2="153.08333333333334" y1="224.281242" y2="223.781242"/>
-  <line stroke="#888888" x1="229.99999999999997" x2="223.33333333333334" y1="220.69790866666668" y2="220.69790866666668"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="97.031242" y2="110.03124199999999"/>
+  <line opacity="0.5" stroke="#0000ff" x1="220.00000000000003" x2="290.00000000000006" y1="97.031242" y2="97.03124200000002"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="87.031242" y2="97.031242"/>
+  <line stroke="#000000" x1="290.00000000000006" x2="220.00000000000003" y1="87.03124200000002" y2="87.031242"/>
+  <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="97.03124200000002" y2="87.03124200000002"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="290.00000000000006" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="290.00000000000006" x2="220.00000000000003" y1="181.031242" y2="181.031242"/>
+  <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="194.031242" y2="181.031242"/>
+  <line stroke="#000000" x1="56.66666666666671" x2="70.00000000000004" y1="234.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="56.66666666666669" x2="56.66666666666671" y1="194.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="70.00000000000003" x2="56.66666666666669" y1="194.031242" y2="194.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000004" x2="70.00000000000004" y1="194.03124200000002" y2="181.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000004" y1="168.03124200000002" y2="181.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000003" y1="155.031242" y2="168.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000003" y1="142.03124200000002" y2="155.031242"/>
+  <line opacity="1.0" stroke="#ff0000" x1="70.00000000000001" x2="70.00000000000003" y1="129.03124200000002" y2="142.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="116.03124200000002" y2="129.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="103.03124200000002" y2="116.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="90.031242" y2="103.03124200000002"/>
+  <line stroke="#000000" x1="70.0" x2="70.00000000000001" y1="77.03124200000002" y2="90.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="70.0" x2="70.0" y1="77.03124200000002" y2="64.03124200000003"/>
+  <line stroke="#000000" x1="70.0" x2="70.0" y1="64.03124200000003" y2="64.03124200000003"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="70.00000000000004" y1="194.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="64.00000000000004" x2="70.00000000000004" y1="194.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="64.00000000000004" x2="64.00000000000004" y1="181.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="64.00000000000004" y1="181.03124200000002" y2="181.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="129.03124200000002" y2="142.03124200000005"/>
+  <line opacity="0.5" stroke="#0000ff" x1="2.8421709430404014e-14" x2="70.00000000000001" y1="129.03124200000002" y2="129.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="2.8421709430404014e-14" x2="70.00000000000003" y1="142.03124200000005" y2="142.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="110.03124200000003" y2="129.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="2.8421709430404014e-14" y1="110.03124200000002" y2="110.03124200000003"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="70.00000000000004" y1="129.031242" y2="110.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="142.03124200000005" y2="161.03124200000005"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="70.00000000000004" y1="161.03124200000002" y2="142.03124200000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="2.8421709430404014e-14" x2="70.00000000000004" y1="161.03124200000005" y2="161.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="161.03124200000005" y2="174.03124200000005"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="70.00000000000004" y1="174.03124200000002" y2="161.03124200000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000004" x2="2.8421709430404014e-14" y1="174.03124200000002" y2="174.03124200000005"/>
+  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000003" y1="184.03124200000002" y2="174.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="70.00000000000003" y1="184.03124200000002" y2="184.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="174.03124200000005" y2="184.03124200000002"/>
+  <line stroke="#000000" x1="0.0" x2="69.99999999999999" y1="77.03124200000003" y2="77.03124200000002"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="64.03124200000003" y2="77.03124200000003"/>
+  <line stroke="#000000" x1="69.99999999999999" x2="0.0" y1="64.031242" y2="64.03124200000003"/>
+  <line stroke="#888888" x1="108.43030382152989" x2="100.93572409356514" y1="26.606620936353796" y2="30.608079779724527"/>
+  <line stroke="#888888" x1="100.93572409356514" x2="100.70023070333662" y1="30.608079779724527" y2="30.167009645665704"/>
+  <line stroke="#888888" x1="100.70023070333662" x2="108.19481043130136" y1="30.167009645665704" y2="26.165550802294977"/>
+  <line stroke="#888888" x1="108.19481043130136" x2="108.43030382152989" y1="26.165550802294977" y2="26.606620936353796"/>
+  <line stroke="#888888" x1="64.00307140868003" x2="68.00102380289331" y1="48.03943242314682" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="68.00102380289331" x2="68.00102380289331" y1="48.03943242314682" y2="56.03533721157341"/>
+  <line stroke="#888888" x1="68.00102380289331" x2="64.00307140868003" y1="56.03533721157341" y2="56.03533721157343"/>
+  <line stroke="#888888" x1="123.08333333333336" x2="136.9166666666667" y1="223.781242" y2="223.781242"/>
+  <line stroke="#888888" x1="136.9166666666667" x2="136.9166666666667" y1="223.781242" y2="224.281242"/>
+  <line stroke="#888888" x1="136.9166666666667" x2="123.08333333333336" y1="224.281242" y2="224.281242"/>
+  <line stroke="#888888" x1="123.08333333333336" x2="123.08333333333336" y1="224.281242" y2="223.781242"/>
+  <line stroke="#888888" x1="153.08333333333337" x2="166.9166666666667" y1="223.781242" y2="223.781242"/>
+  <line stroke="#888888" x1="166.9166666666667" x2="166.9166666666667" y1="223.781242" y2="224.281242"/>
+  <line stroke="#888888" x1="166.9166666666667" x2="153.08333333333337" y1="224.281242" y2="224.281242"/>
+  <line stroke="#888888" x1="153.08333333333337" x2="153.08333333333337" y1="224.281242" y2="223.781242"/>
+  <line stroke="#888888" x1="230.00000000000003" x2="223.33333333333334" y1="220.69790866666668" y2="220.69790866666668"/>
   <line stroke="#888888" x1="223.33333333333334" x2="223.33333333333334" y1="220.69790866666668" y2="207.3645753333333"/>
-  <line stroke="#888888" x1="223.33333333333334" x2="229.99999999999997" y1="207.3645753333333" y2="207.3645753333333"/>
-  <line stroke="#888888" x1="189.06427590643486" x2="181.5696961784701" y1="30.608079779724527" y2="26.60662093635381"/>
-  <line stroke="#888888" x1="181.5696961784701" x2="181.80518956869864" y1="26.60662093635381" y2="26.165550802294977"/>
-  <line stroke="#888888" x1="181.80518956869864" x2="189.29976929666338" y1="26.165550802294977" y2="30.167009645665704"/>
-  <line stroke="#888888" x1="189.29976929666338" x2="189.06427590643486" y1="30.167009645665704" y2="30.608079779724527"/>
-  <line stroke="#888888" x1="225.99692859131997" x2="221.99897619710666" y1="56.03533721157341" y2="56.03533721157341"/>
-  <line stroke="#888888" x1="221.99897619710666" x2="221.99897619710666" y1="56.03533721157341" y2="48.03943242314682"/>
-  <line stroke="#888888" x1="221.99897619710666" x2="225.99692859131997" y1="48.03943242314682" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="223.33333333333334" x2="230.00000000000003" y1="207.3645753333333" y2="207.3645753333333"/>
+  <line stroke="#888888" x1="189.0642759064349" x2="181.56969617847014" y1="30.608079779724527" y2="26.60662093635381"/>
+  <line stroke="#888888" x1="181.56969617847014" x2="181.80518956869867" y1="26.60662093635381" y2="26.165550802294977"/>
+  <line stroke="#888888" x1="181.80518956869867" x2="189.2997692966634" y1="26.165550802294977" y2="30.167009645665704"/>
+  <line stroke="#888888" x1="189.2997692966634" x2="189.0642759064349" y1="30.167009645665704" y2="30.608079779724527"/>
+  <line stroke="#888888" x1="225.99692859132" x2="221.99897619710669" y1="56.03533721157341" y2="56.03533721157341"/>
+  <line stroke="#888888" x1="221.99897619710669" x2="221.99897619710669" y1="56.03533721157341" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="221.99897619710669" x2="225.99692859132" y1="48.03943242314682" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="221.50000000000003" y1="72.69790866666666" y2="72.69790866666666"/>
+  <line stroke="#888888" x1="221.50000000000003" x2="221.50000000000003" y1="72.69790866666666" y2="68.36457533333333"/>
+  <line stroke="#888888" x1="221.50000000000003" x2="224.50000000000003" y1="68.36457533333333" y2="68.36457533333333"/>
   <line stroke="#888888" x1="264.2954545454545" x2="277.52272727272725" y1="153.28124200000002" y2="153.28124200000002"/>
   <line stroke="#888888" x1="277.52272727272725" x2="277.52272727272725" y1="153.28124200000002" y2="153.78124200000002"/>
   <line stroke="#888888" x1="277.52272727272725" x2="264.2954545454545" y1="153.78124200000002" y2="153.78124200000002"/>
   <line stroke="#888888" x1="264.2954545454545" x2="264.2954545454545" y1="153.78124200000002" y2="153.28124200000002"/>
-  <line stroke="#888888" x1="232.47727272727272" x2="245.7045454545454" y1="153.281242" y2="153.281242"/>
-  <line stroke="#888888" x1="245.7045454545454" x2="245.7045454545454" y1="153.281242" y2="153.781242"/>
-  <line stroke="#888888" x1="245.7045454545454" x2="232.47727272727272" y1="153.781242" y2="153.781242"/>
+  <line stroke="#888888" x1="232.47727272727272" x2="245.70454545454547" y1="153.281242" y2="153.281242"/>
+  <line stroke="#888888" x1="245.70454545454547" x2="245.70454545454547" y1="153.281242" y2="153.781242"/>
+  <line stroke="#888888" x1="245.70454545454547" x2="232.47727272727272" y1="153.781242" y2="153.781242"/>
   <line stroke="#888888" x1="232.47727272727272" x2="232.47727272727272" y1="153.781242" y2="153.281242"/>
-  <line stroke="#888888" x1="248.0" x2="248.0" y1="97.096242" y2="109.96624200000001"/>
-  <line stroke="#888888" x1="248.0" x2="225.0" y1="109.96624200000001" y2="109.966242"/>
-  <line stroke="#888888" x1="225.0" x2="225.0" y1="109.966242" y2="97.096242"/>
-  <line stroke="#888888" x1="225.0" x2="248.0" y1="97.096242" y2="97.096242"/>
+  <line stroke="#888888" x1="248.00000000000006" x2="248.00000000000006" y1="97.096242" y2="109.96624200000001"/>
+  <line stroke="#888888" x1="248.00000000000006" x2="225.00000000000003" y1="109.96624200000001" y2="109.966242"/>
+  <line stroke="#888888" x1="225.00000000000003" x2="225.00000000000003" y1="109.966242" y2="97.096242"/>
+  <line stroke="#888888" x1="225.00000000000003" x2="248.00000000000006" y1="97.096242" y2="97.096242"/>
   <line stroke="#888888" x1="277.2727272727273" x2="282.27272727272725" y1="89.53124200000002" y2="89.53124200000002"/>
   <line stroke="#888888" x1="282.27272727272725" x2="277.2727272727273" y1="89.53124200000002" y2="94.53124199999999"/>
   <line stroke="#888888" x1="277.2727272727273" x2="264.54545454545456" y1="94.53124199999999" y2="94.53124199999999"/>
   <line stroke="#888888" x1="264.54545454545456" x2="259.5454545454545" y1="94.53124199999999" y2="89.531242"/>
   <line stroke="#888888" x1="259.5454545454545" x2="264.54545454545456" y1="89.531242" y2="89.531242"/>
-  <line stroke="#888888" x1="245.45454545454544" x2="250.45454545454544" y1="89.531242" y2="89.531242"/>
-  <line stroke="#888888" x1="250.45454545454544" x2="245.45454545454544" y1="89.531242" y2="94.53124199999999"/>
-  <line stroke="#888888" x1="245.45454545454544" x2="232.72727272727272" y1="94.53124199999999" y2="94.53124199999999"/>
-  <line stroke="#888888" x1="232.72727272727272" x2="227.72727272727272" y1="94.53124199999999" y2="89.531242"/>
-  <line stroke="#888888" x1="227.72727272727272" x2="232.72727272727272" y1="89.531242" y2="89.531242"/>
-  <line stroke="#888888" x1="59.99999999999999" x2="66.66666666666666" y1="207.3645753333333" y2="207.3645753333333"/>
-  <line stroke="#888888" x1="66.66666666666666" x2="66.66666666666667" y1="207.3645753333333" y2="220.69790866666668"/>
-  <line stroke="#888888" x1="66.66666666666667" x2="60.00000000000001" y1="220.69790866666668" y2="220.69790866666668"/>
-  <line stroke="#888888" x1="25.704545454545457" x2="12.477272727272721" y1="117.78124200000002" y2="117.78124200000003"/>
-  <line stroke="#888888" x1="12.477272727272721" x2="12.477272727272721" y1="117.78124200000003" y2="117.28124200000003"/>
-  <line stroke="#888888" x1="12.477272727272721" x2="25.704545454545457" y1="117.28124200000003" y2="117.281242"/>
-  <line stroke="#888888" x1="25.704545454545457" x2="25.704545454545457" y1="117.281242" y2="117.78124200000002"/>
-  <line stroke="#888888" x1="57.52272727272727" x2="44.29545454545455" y1="117.78124200000002" y2="117.78124200000002"/>
-  <line stroke="#888888" x1="44.29545454545455" x2="44.29545454545455" y1="117.78124200000002" y2="117.281242"/>
-  <line stroke="#888888" x1="44.29545454545455" x2="57.52272727272727" y1="117.281242" y2="117.281242"/>
-  <line stroke="#888888" x1="57.52272727272727" x2="57.52272727272727" y1="117.281242" y2="117.78124200000002"/>
-  <line stroke="#888888" x1="42.0" x2="42.0" y1="173.96624200000002" y2="161.09624200000005"/>
-  <line stroke="#888888" x1="42.0" x2="65.0" y1="161.09624200000005" y2="161.09624200000002"/>
-  <line stroke="#888888" x1="65.0" x2="65.0" y1="161.09624200000002" y2="173.96624200000002"/>
-  <line stroke="#888888" x1="65.0" x2="42.0" y1="173.96624200000002" y2="173.96624200000002"/>
-  <line stroke="#888888" x1="12.72727272727272" x2="7.72727272727272" y1="181.53124200000005" y2="181.53124200000005"/>
-  <line stroke="#888888" x1="7.72727272727272" x2="12.72727272727272" y1="181.53124200000005" y2="176.53124200000005"/>
-  <line stroke="#888888" x1="12.72727272727272" x2="25.454545454545457" y1="176.53124200000005" y2="176.53124200000002"/>
-  <line stroke="#888888" x1="25.454545454545457" x2="30.454545454545457" y1="176.53124200000002" y2="181.53124200000002"/>
-  <line stroke="#888888" x1="30.454545454545457" x2="25.454545454545457" y1="181.53124200000002" y2="181.53124200000002"/>
-  <line stroke="#888888" x1="44.54545454545454" x2="39.54545454545454" y1="181.53124200000002" y2="181.53124200000002"/>
-  <line stroke="#888888" x1="39.54545454545454" x2="44.54545454545454" y1="181.53124200000002" y2="176.53124200000002"/>
-  <line stroke="#888888" x1="44.54545454545454" x2="57.27272727272726" y1="176.53124200000002" y2="176.53124200000002"/>
-  <line stroke="#888888" x1="57.27272727272726" x2="62.27272727272726" y1="176.53124200000002" y2="181.53124200000002"/>
-  <line stroke="#888888" x1="62.27272727272726" x2="57.27272727272726" y1="181.53124200000002" y2="181.53124200000002"/>
+  <line stroke="#888888" x1="245.45454545454547" x2="250.45454545454547" y1="89.531242" y2="89.531242"/>
+  <line stroke="#888888" x1="250.45454545454547" x2="245.45454545454547" y1="89.531242" y2="94.53124199999999"/>
+  <line stroke="#888888" x1="245.45454545454547" x2="232.72727272727275" y1="94.53124199999999" y2="94.53124199999999"/>
+  <line stroke="#888888" x1="232.72727272727275" x2="227.72727272727275" y1="94.53124199999999" y2="89.531242"/>
+  <line stroke="#888888" x1="227.72727272727275" x2="232.72727272727275" y1="89.531242" y2="89.531242"/>
+  <line stroke="#888888" x1="285.25000000000006" x2="285.25000000000006" y1="189.94790866666668" y2="185.11457533333333"/>
+  <line stroke="#888888" x1="285.25000000000006" x2="285.75" y1="185.11457533333333" y2="185.11457533333333"/>
+  <line stroke="#888888" x1="285.75" x2="285.75" y1="185.11457533333333" y2="189.94790866666668"/>
+  <line stroke="#888888" x1="285.75" x2="285.25000000000006" y1="189.94790866666668" y2="189.94790866666668"/>
+  <line stroke="#888888" x1="60.00000000000002" x2="66.66666666666669" y1="207.3645753333333" y2="207.3645753333333"/>
+  <line stroke="#888888" x1="66.66666666666669" x2="66.66666666666671" y1="207.3645753333333" y2="220.69790866666668"/>
+  <line stroke="#888888" x1="66.66666666666671" x2="60.000000000000036" y1="220.69790866666668" y2="220.69790866666668"/>
+  <line stroke="#888888" x1="65.50000000000003" x2="68.50000000000004" y1="185.36457533333336" y2="185.36457533333336"/>
+  <line stroke="#888888" x1="68.50000000000004" x2="68.50000000000004" y1="185.36457533333336" y2="189.69790866666668"/>
+  <line stroke="#888888" x1="68.50000000000004" x2="65.50000000000003" y1="189.69790866666668" y2="189.69790866666668"/>
+  <line stroke="#888888" x1="25.704545454545485" x2="12.47727272727275" y1="117.78124200000002" y2="117.78124200000003"/>
+  <line stroke="#888888" x1="12.47727272727275" x2="12.47727272727275" y1="117.78124200000003" y2="117.28124200000003"/>
+  <line stroke="#888888" x1="12.47727272727275" x2="25.704545454545485" y1="117.28124200000003" y2="117.281242"/>
+  <line stroke="#888888" x1="25.704545454545485" x2="25.704545454545485" y1="117.281242" y2="117.78124200000002"/>
+  <line stroke="#888888" x1="57.5227272727273" x2="44.29545454545458" y1="117.78124200000002" y2="117.78124200000002"/>
+  <line stroke="#888888" x1="44.29545454545458" x2="44.29545454545458" y1="117.78124200000002" y2="117.281242"/>
+  <line stroke="#888888" x1="44.29545454545458" x2="57.5227272727273" y1="117.281242" y2="117.281242"/>
+  <line stroke="#888888" x1="57.5227272727273" x2="57.5227272727273" y1="117.281242" y2="117.78124200000002"/>
+  <line stroke="#888888" x1="42.00000000000003" x2="42.00000000000003" y1="173.96624200000002" y2="161.09624200000005"/>
+  <line stroke="#888888" x1="42.00000000000003" x2="65.00000000000004" y1="161.09624200000005" y2="161.09624200000002"/>
+  <line stroke="#888888" x1="65.00000000000004" x2="65.00000000000004" y1="161.09624200000002" y2="173.96624200000002"/>
+  <line stroke="#888888" x1="65.00000000000004" x2="42.00000000000003" y1="173.96624200000002" y2="173.96624200000002"/>
+  <line stroke="#888888" x1="12.727272727272748" x2="7.727272727272749" y1="181.53124200000005" y2="181.53124200000005"/>
+  <line stroke="#888888" x1="7.727272727272749" x2="12.727272727272748" y1="181.53124200000005" y2="176.53124200000005"/>
+  <line stroke="#888888" x1="12.727272727272748" x2="25.454545454545485" y1="176.53124200000005" y2="176.53124200000002"/>
+  <line stroke="#888888" x1="25.454545454545485" x2="30.454545454545485" y1="176.53124200000002" y2="181.53124200000002"/>
+  <line stroke="#888888" x1="30.454545454545485" x2="25.454545454545485" y1="181.53124200000002" y2="181.53124200000002"/>
+  <line stroke="#888888" x1="44.54545454545457" x2="39.54545454545457" y1="181.53124200000002" y2="181.53124200000002"/>
+  <line stroke="#888888" x1="39.54545454545457" x2="44.54545454545457" y1="181.53124200000002" y2="176.53124200000002"/>
+  <line stroke="#888888" x1="44.54545454545457" x2="57.27272727272729" y1="176.53124200000002" y2="176.53124200000002"/>
+  <line stroke="#888888" x1="57.27272727272729" x2="62.27272727272729" y1="176.53124200000002" y2="181.53124200000002"/>
+  <line stroke="#888888" x1="62.27272727272729" x2="57.27272727272729" y1="181.53124200000002" y2="181.53124200000002"/>
+  <line stroke="#888888" x1="4.750000000000001" x2="4.750000000000001" y1="68.11457533333336" y2="72.94790866666668"/>
+  <line stroke="#888888" x1="4.750000000000001" x2="4.25" y1="72.94790866666668" y2="72.94790866666668"/>
+  <line stroke="#888888" x1="4.25" x2="4.25" y1="72.94790866666668" y2="68.11457533333336"/>
+  <line stroke="#888888" x1="4.25" x2="4.750000000000001" y1="68.11457533333336" y2="68.11457533333336"/>
   <line stroke="#000000" x1="300.0" x2="300.0" y1="129.031242" y2="129.031242"/>
   <line stroke="#000000" x1="300.0" x2="300.0" y1="129.031242" y2="129.031242"/>
   <line stroke="#000000" x1="300.0" x2="300.0" y1="129.031242" y2="129.031242"/>
@@ -183,4 +209,58 @@
   <line stroke="#000000" x1="310.0" x2="310.0" y1="129.031242" y2="129.031242"/>
   <line stroke="#000000" x1="310.0" x2="310.0" y1="129.031242" y2="129.031242"/>
   <line stroke="#000000" x1="310.0" x2="310.0" y1="129.031242" y2="129.031242"/>
+  <line stroke="#000000" x1="354.00000000000006" x2="330.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="354.00000000000006" x2="354.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="330.00000000000006" x2="354.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="330.00000000000006" x2="330.00000000000006" y1="159.531242" y2="98.531242"/>
+  <line stroke="#000000" x1="414.0" x2="354.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="414.0" x2="414.0" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="354.00000000000006" x2="414.0" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="438.00000000000006" x2="414.0" y1="98.531242" y2="98.531242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="438.00000000000006" x2="438.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="414.0" x2="438.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="498.00000000000006" x2="438.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line stroke="#000000" x1="498.00000000000006" x2="498.00000000000006" y1="159.531242" y2="98.531242"/>
+  <line stroke="#000000" x1="438.00000000000006" x2="498.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="320.00000000000006" x2="330.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="320.00000000000006" x2="320.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="330.00000000000006" x2="320.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line stroke="#888888" x1="331.40000000000003" x2="332.6000000000001" y1="108.531242" y2="108.531242"/>
+  <line stroke="#888888" x1="332.6000000000001" x2="332.6000000000001" y1="108.531242" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="332.6000000000001" x2="331.40000000000003" y1="149.53124200000002" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="331.40000000000003" x2="331.40000000000003" y1="149.53124200000002" y2="108.531242"/>
+  <line stroke="#888888" x1="351.4" x2="352.6000000000001" y1="109.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="352.6000000000001" x2="352.6000000000001" y1="109.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="352.6000000000001" x2="351.4" y1="139.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="351.4" x2="351.4" y1="139.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="362.00000000000006" x2="362.00000000000006" y1="150.031242" y2="132.03124200000002"/>
+  <line stroke="#888888" x1="362.00000000000006" x2="392.00000000000006" y1="132.03124200000002" y2="132.03124200000002"/>
+  <line stroke="#888888" x1="392.00000000000006" x2="392.00000000000006" y1="132.03124200000002" y2="150.031242"/>
+  <line stroke="#888888" x1="392.00000000000006" x2="362.00000000000006" y1="150.031242" y2="150.031242"/>
+  <line stroke="#888888" x1="435.40000000000003" x2="436.6000000000001" y1="108.531242" y2="108.531242"/>
+  <line stroke="#888888" x1="436.6000000000001" x2="436.6000000000001" y1="108.531242" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="436.6000000000001" x2="435.40000000000003" y1="149.53124200000002" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="435.40000000000003" x2="435.40000000000003" y1="149.53124200000002" y2="108.531242"/>
+  <line stroke="#888888" x1="415.4" x2="416.6000000000001" y1="109.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="416.6000000000001" x2="416.6000000000001" y1="109.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="416.6000000000001" x2="415.4" y1="139.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="415.4" x2="415.4" y1="139.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="453.00000000000006" x2="453.00000000000006" y1="112.531242" y2="105.531242"/>
+  <line stroke="#888888" x1="453.00000000000006" x2="473.00000000000006" y1="105.531242" y2="105.531242"/>
+  <line stroke="#888888" x1="473.00000000000006" x2="473.00000000000006" y1="105.531242" y2="112.531242"/>
+  <line stroke="#888888" x1="473.00000000000006" x2="453.00000000000006" y1="112.531242" y2="112.531242"/>
+  <line stroke="#888888" x1="490.25000000000006" x2="490.25000000000006" y1="120.9630601818182" y2="109.3721510909091"/>
+  <line stroke="#888888" x1="490.25000000000006" x2="490.75000000000006" y1="109.3721510909091" y2="109.3721510909091"/>
+  <line stroke="#888888" x1="490.75000000000006" x2="490.75000000000006" y1="109.3721510909091" y2="120.9630601818182"/>
+  <line stroke="#888888" x1="490.75000000000006" x2="490.25000000000006" y1="120.9630601818182" y2="120.9630601818182"/>
+  <line stroke="#888888" x1="490.25000000000006" x2="490.25000000000006" y1="148.69033290909093" y2="137.09942381818183"/>
+  <line stroke="#888888" x1="490.25000000000006" x2="490.75000000000006" y1="137.09942381818183" y2="137.09942381818183"/>
+  <line stroke="#888888" x1="490.75000000000006" x2="490.75000000000006" y1="137.09942381818183" y2="148.69033290909093"/>
+  <line stroke="#888888" x1="490.75000000000006" x2="490.25000000000006" y1="148.69033290909093" y2="148.69033290909093"/>
+  <line stroke="#888888" x1="322.5" x2="327.5" y1="109.6221510909091" y2="109.6221510909091"/>
+  <line stroke="#888888" x1="327.5" x2="327.5" y1="109.6221510909091" y2="120.7130601818182"/>
+  <line stroke="#888888" x1="327.5" x2="322.5" y1="120.7130601818182" y2="120.7130601818182"/>
+  <line stroke="#888888" x1="322.5" x2="327.5" y1="137.34942381818186" y2="137.34942381818186"/>
+  <line stroke="#888888" x1="327.5" x2="327.5" y1="137.34942381818186" y2="148.44033290909093"/>
+  <line stroke="#888888" x1="327.5" x2="322.5" y1="148.44033290909093" y2="148.44033290909093"/>
 </svg>
diff --git a/rocolib/output/PaddleboatWithCamera/graph-autofold-default.dxf b/rocolib/output/PaddleboatWithCamera/graph-autofold-default.dxf
index def697e49281c98ab943664b2b4026a187aeb357..86f11bf0c6084706be4dbf9874576e1070326765 100644
--- a/rocolib/output/PaddleboatWithCamera/graph-autofold-default.dxf
+++ b/rocolib/output/PaddleboatWithCamera/graph-autofold-default.dxf
@@ -1035,13 +1035,13 @@ DOTTED
   8
 90
  10
-179.99999999999994
+179.99999999999997
  20
 64.03124199999999
  30
 0.0
  11
-179.99999999999994
+179.99999999999997
  21
 194.03124200000002
  31
@@ -1055,13 +1055,13 @@ DOTTED
   8
 90
  10
-109.99999999999996
+109.99999999999999
  20
 64.03124199999999
  30
 0.0
  11
-109.99999999999996
+109.99999999999999
  21
 194.03124200000002
  31
@@ -1075,13 +1075,13 @@ DOTTED
   8
 38.65980825409008
  10
-144.99999999999997
+145.0
  20
 64.03124199999999
  30
 0.0
  11
-109.99999999999996
+109.99999999999999
  21
 64.03124199999999
  31
@@ -1095,13 +1095,13 @@ DOTTED
   8
 38.65980825409008
  10
-179.99999999999994
+179.99999999999997
  20
 64.03124199999999
  30
 0.0
  11
-144.99999999999997
+145.0
  21
 64.03124199999999
  31
@@ -1115,13 +1115,13 @@ DOTTED
   8
 69.0079083856541
  10
-144.99999999999997
+145.0
  20
 -3.7432849353535863e-07
  30
 0.0
  11
-109.99999999999996
+109.99999999999999
  21
 64.03124199999999
  31
@@ -1133,13 +1133,13 @@ LINE
   8
 cut
  10
-112.32105756343545
+112.32105756343546
  20
 17.44773491586702
  30
 0.0
  11
-91.16052878171769
+91.16052878171773
  21
 28.745631275293622
  31
@@ -1151,13 +1151,13 @@ LINE
   8
 cut
  10
-144.99999999999997
+145.0
  20
 -3.743284651136492e-07
  30
 0.0
  11
-112.32105756343545
+112.32105756343546
  21
 17.44773491586702
  31
@@ -1171,13 +1171,13 @@ DOTTED
   8
 180
  10
-109.99999999999996
+109.99999999999999
  20
 64.03124199999999
  30
 0.0
  11
-91.16052878171769
+91.16052878171773
  21
 28.745631275293622
  31
@@ -1191,13 +1191,13 @@ DOTTED
   8
 -180
  10
-109.99999999999996
+109.99999999999999
  20
 64.03124199999999
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 40.04352763472023
  31
@@ -1209,13 +1209,13 @@ LINE
   8
 cut
  10
-91.16052878171769
+91.16052878171773
  20
 28.745631275293608
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 40.04352763472023
  31
@@ -1229,13 +1229,13 @@ DOTTED
   8
 -174
  10
-69.99999999999996
+69.99999999999999
  20
 64.031242
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 40.04352763472023
  31
@@ -1249,13 +1249,13 @@ DOTTED
   8
 34.99202019855866
  10
-109.99999999999996
+109.99999999999999
  20
 64.03124199999999
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 64.031242
  31
@@ -1267,13 +1267,13 @@ LINE
   8
 cut
  10
-62.00409521157335
+62.00409521157338
  20
 64.031242
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 64.031242
  31
@@ -1285,13 +1285,13 @@ LINE
   8
 cut
  10
-62.004095211573336
+62.004095211573365
  20
 40.04352763472023
  30
 0.0
  11
-62.00409521157335
+62.00409521157338
  21
 64.031242
  31
@@ -1303,13 +1303,13 @@ LINE
   8
 cut
  10
-69.99999999999994
+69.99999999999997
  20
 40.04352763472023
  30
 0.0
  11
-62.004095211573336
+62.004095211573365
  21
 40.04352763472023
  31
@@ -1323,13 +1323,13 @@ DOTTED
   8
 90.0
  10
-70.00000000000001
+70.00000000000004
  20
 194.031242
  30
 0.0
  11
-110.00000000000001
+110.00000000000004
  21
 194.031242
  31
@@ -1343,13 +1343,13 @@ DOTTED
   8
 -180
  10
-70.00000000000001
+70.00000000000004
  20
 234.031242
  30
 0.0
  11
-110.0
+110.00000000000003
  21
 194.031242
  31
@@ -1363,13 +1363,13 @@ DOTTED
   8
 -174
  10
-70.00000000000001
+70.00000000000004
  20
 234.031242
  30
 0.0
  11
-70.0
+70.00000000000003
  21
 194.031242
  31
@@ -1381,13 +1381,13 @@ LINE
   8
 cut
  10
-70.00000000000001
+70.00000000000004
  20
 234.031242
  30
 0.0
  11
-110.00000000000001
+110.00000000000004
  21
 234.031242
  31
@@ -1401,13 +1401,13 @@ DOTTED
   8
 180
  10
-110.00000000000001
+110.00000000000004
  20
 234.031242
  30
 0.0
  11
-110.0
+110.00000000000003
  21
 194.031242
  31
@@ -1419,13 +1419,13 @@ LINE
   8
 cut
  10
-149.99999999999997
+150.0
  20
 234.031242
  30
 0.0
  11
-145.0
+145.00000000000003
  21
 234.031242
  31
@@ -1437,13 +1437,13 @@ LINE
   8
 cut
  10
-110.0
+110.00000000000003
  20
 234.031242
  30
 0.0
  11
-149.99999999999997
+150.0
  21
 234.031242
  31
@@ -1457,13 +1457,13 @@ DOTTED
   8
 90.0
  10
-110.0
+110.00000000000003
  20
 194.031242
  30
 0.0
  11
-145.0
+145.00000000000003
  21
 194.031242
  31
@@ -1477,13 +1477,13 @@ DOTTED
   8
 90.0
  10
-145.0
+145.00000000000003
  20
 194.031242
  30
 0.0
  11
-179.99999999999997
+180.0
  21
 194.031242
  31
@@ -1501,7 +1501,7 @@ cut
  30
 0.0
  11
-179.99999999999997
+180.0
  21
 234.031242
  31
@@ -1513,7 +1513,7 @@ LINE
   8
 cut
  10
-145.0
+145.00000000000003
  20
 234.031242
  30
@@ -1533,13 +1533,13 @@ DOTTED
   8
 180
  10
-179.99999999999997
+180.0
  20
 194.031242
  30
 0.0
  11
-179.99999999999997
+180.0
  21
 234.031242
  31
@@ -1553,13 +1553,13 @@ DOTTED
   8
 -180
  10
-179.99999999999997
+180.0
  20
 194.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 234.031242
  31
@@ -1571,13 +1571,13 @@ LINE
   8
 cut
  10
-179.99999999999997
+180.0
  20
 234.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 234.031242
  31
@@ -1591,13 +1591,13 @@ DOTTED
   8
 -174
  10
-219.99999999999997
+220.00000000000003
  20
 194.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 234.031242
  31
@@ -1611,13 +1611,13 @@ DOTTED
   8
 90.0
  10
-179.99999999999997
+180.0
  20
 194.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 194.031242
  31
@@ -1635,7 +1635,7 @@ cut
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 194.03124200000002
  31
@@ -1665,7 +1665,7 @@ LINE
   8
 cut
  10
-220.0
+220.00000000000003
  20
 234.031242
  30
@@ -1691,7 +1691,7 @@ DOTTED
  30
 0.0
  11
-180.0
+180.00000000000006
  21
 64.03124199999999
  31
@@ -1711,7 +1711,7 @@ DOTTED
  30
 0.0
  11
-180.0
+180.00000000000006
  21
 64.03124199999999
  31
@@ -1731,7 +1731,7 @@ DOTTED
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 64.031242
  31
@@ -1749,7 +1749,7 @@ cut
  30
 0.0
  11
-198.83947121828228
+198.8394712182823
  21
 28.745631275293622
  31
@@ -1763,13 +1763,13 @@ DOTTED
   8
 180
  10
-198.83947121828228
+198.8394712182823
  20
 28.745631275293622
  30
 0.0
  11
-180.0
+180.00000000000006
  21
 64.03124199999999
  31
@@ -1783,13 +1783,13 @@ DOTTED
   8
 69.0079083856541
  10
-145.00000000000003
+145.00000000000006
  20
 -3.743284651136492e-07
  30
 0.0
  11
-180.0
+180.00000000000006
  21
 64.03124199999999
  31
@@ -1801,13 +1801,13 @@ LINE
   8
 cut
  10
-177.6789424365645
+177.67894243656454
  20
 17.44773491586702
  30
 0.0
  11
-145.00000000000003
+145.00000000000006
  21
 -3.743284651136492e-07
  31
@@ -1825,7 +1825,7 @@ cut
  30
 0.0
  11
-177.6789424365645
+177.67894243656454
  21
 17.44773491586702
  31
@@ -1837,13 +1837,13 @@ LINE
   8
 cut
  10
-227.99590478842663
+227.99590478842666
  20
 40.04352763472023
  30
 0.0
  11
-220.00000000000003
+220.00000000000006
  21
 40.04352763472023
  31
@@ -1855,13 +1855,13 @@ LINE
   8
 cut
  10
-227.99590478842663
+227.99590478842666
  20
 64.031242
  30
 0.0
  11
-227.99590478842663
+227.99590478842666
  21
 40.04352763472023
  31
@@ -1873,33 +1873,35 @@ LINE
   8
 cut
  10
-220.00000000000003
+220.00000000000006
  20
 64.031242
  30
 0.0
  11
-227.99590478842663
+227.99590478842666
  21
 64.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
 220.00000000000003
  20
-77.031242
+64.03124199999999
  30
 0.0
  11
 220.00000000000003
  21
-64.03124199999999
+77.031242
  31
 0.0
   0
@@ -1945,7 +1947,7 @@ LINE
   8
 cut
  10
-220.0
+220.00000000000003
  20
 116.03124199999999
  30
@@ -1963,13 +1965,13 @@ LINE
   8
 cut
  10
-220.0
+220.00000000000003
  20
 129.03124199999996
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 116.03124199999999
  31
@@ -1983,13 +1985,13 @@ DOTTED
   8
 -180
  10
-220.0
+220.00000000000003
  20
 142.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 129.03124199999996
  31
@@ -2001,13 +2003,13 @@ LINE
   8
 cut
  10
-220.0
+220.00000000000003
  20
 155.03124199999996
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 142.031242
  31
@@ -2019,13 +2021,13 @@ LINE
   8
 cut
  10
-220.0
+220.00000000000003
  20
 168.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 155.03124199999996
  31
@@ -2037,33 +2039,35 @@ LINE
   8
 cut
  10
-220.0
+220.00000000000003
  20
 181.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 168.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-220.0
+220.00000000000003
  20
-194.031242
+181.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
-181.031242
+194.031242
  31
 0.0
   0
@@ -2073,13 +2077,13 @@ LINE
   8
 cut
  10
-220.0
+220.00000000000003
  20
 194.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 194.031242
  31
@@ -2109,6 +2113,60 @@ LINE
   8
 cut
  10
+226.00000000000003
+ 20
+64.03124199999999
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+64.03124199999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+226.00000000000003
+ 20
+77.031242
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+64.03124199999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.00000000000003
+ 20
+77.031242
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+77.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
 290.00000000000006
  20
 142.03124200000002
@@ -2135,7 +2193,7 @@ DOTTED
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 142.031242
  31
@@ -2155,7 +2213,7 @@ DOTTED
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 129.03124199999996
  31
@@ -2167,13 +2225,13 @@ LINE
   8
 cut
  10
-290.0
+290.00000000000006
  20
 161.03124200000002
  30
 0.0
  11
-290.0
+290.00000000000006
  21
 142.03124200000002
  31
@@ -2185,13 +2243,13 @@ LINE
   8
 cut
  10
-219.99999999999997
+220.0
  20
 161.031242
  30
 0.0
  11
-290.0
+290.00000000000006
  21
 161.03124200000002
  31
@@ -2203,13 +2261,13 @@ LINE
   8
 cut
  10
-219.99999999999997
+220.0
  20
 142.031242
  30
 0.0
  11
-219.99999999999997
+220.0
  21
 161.031242
  31
@@ -2239,13 +2297,13 @@ LINE
   8
 cut
  10
-220.0
+220.00000000000003
  20
 110.03124199999999
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 129.03124199999996
  31
@@ -2265,7 +2323,7 @@ DOTTED
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 110.03124199999999
  31
@@ -2295,13 +2353,13 @@ LINE
   8
 cut
  10
-220.0
+220.00000000000003
  20
 97.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 110.03124199999999
  31
@@ -2315,7 +2373,7 @@ DOTTED
   8
 90
  10
-220.0
+220.00000000000003
  20
 97.031242
  30
@@ -2333,13 +2391,13 @@ LINE
   8
 cut
  10
-219.99999999999997
+220.00000000000003
  20
 87.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 97.031242
  31
@@ -2351,13 +2409,13 @@ LINE
   8
 cut
  10
-290.0
+290.00000000000006
  20
 87.03124200000002
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 87.031242
  31
@@ -2369,13 +2427,13 @@ LINE
   8
 cut
  10
-290.0
+290.00000000000006
  20
 97.03124200000002
  30
 0.0
  11
-290.0
+290.00000000000006
  21
 87.03124200000002
  31
@@ -2387,15 +2445,15 @@ LINE
   8
 cut
  10
-56.66666666666668
+220.00000000000003
  20
-234.031242
+194.031242
  30
 0.0
  11
-70.00000000000001
+290.00000000000006
  21
-234.031242
+194.031242
  31
 0.0
   0
@@ -2405,15 +2463,15 @@ LINE
   8
 cut
  10
-56.666666666666664
+290.00000000000006
  20
-194.031242
+181.031242
  30
 0.0
  11
-56.66666666666668
+220.00000000000003
  21
-234.031242
+181.031242
  31
 0.0
   0
@@ -2423,15 +2481,15 @@ LINE
   8
 cut
  10
-70.0
+290.00000000000006
  20
 194.031242
  30
 0.0
  11
-56.666666666666664
+290.00000000000006
  21
-194.031242
+181.031242
  31
 0.0
   0
@@ -2441,15 +2499,15 @@ LINE
   8
 cut
  10
-70.00000000000001
+56.66666666666671
  20
-181.03124200000002
+234.031242
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
-194.03124200000002
+234.031242
  31
 0.0
   0
@@ -2459,15 +2517,15 @@ LINE
   8
 cut
  10
-70.0
+56.66666666666669
  20
-168.03124200000002
+194.031242
  30
 0.0
  11
-70.00000000000001
+56.66666666666671
  21
-181.03124200000002
+234.031242
  31
 0.0
   0
@@ -2477,53 +2535,53 @@ LINE
   8
 cut
  10
-70.0
+70.00000000000003
  20
-155.031242
+194.031242
  30
 0.0
  11
-70.0
+56.66666666666669
  21
-168.03124200000002
+194.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-70.0
+70.00000000000004
  20
-142.03124200000002
+194.03124200000002
  30
 0.0
  11
-70.0
+70.00000000000004
  21
-155.031242
+181.03124200000002
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
  10
-69.99999999999999
+70.00000000000003
  20
-129.03124200000002
+168.03124200000002
  30
 0.0
  11
-70.0
+70.00000000000004
  21
-142.03124200000002
+181.03124200000002
  31
 0.0
   0
@@ -2533,15 +2591,15 @@ LINE
   8
 cut
  10
-69.99999999999999
+70.00000000000003
  20
-116.03124200000002
+155.031242
  30
 0.0
  11
-69.99999999999999
+70.00000000000003
  21
-129.03124200000002
+168.03124200000002
  31
 0.0
   0
@@ -2551,13 +2609,69 @@ LINE
   8
 cut
  10
-69.99999999999999
+70.00000000000003
+ 20
+142.03124200000002
+ 30
+0.0
+ 11
+70.00000000000003
+ 21
+155.031242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+70.00000000000001
+ 20
+129.03124200000002
+ 30
+0.0
+ 11
+70.00000000000003
+ 21
+142.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
+ 20
+116.03124200000002
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+129.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000001
  20
 103.03124200000002
  30
 0.0
  11
-69.99999999999999
+70.00000000000001
  21
 116.03124200000002
  31
@@ -2569,13 +2683,13 @@ LINE
   8
 cut
  10
-69.99999999999999
+70.00000000000001
  20
 90.031242
  30
 0.0
  11
-69.99999999999999
+70.00000000000001
  21
 103.03124200000002
  31
@@ -2587,33 +2701,53 @@ LINE
   8
 cut
  10
-69.99999999999997
+70.0
  20
 77.03124200000002
  30
 0.0
  11
-69.99999999999999
+70.00000000000001
  21
 90.031242
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+70.0
+ 20
+77.03124200000002
+ 30
+0.0
+ 11
+70.0
+ 21
+64.03124200000003
+ 31
+0.0
+  0
 LINE
  62
 5
   8
 cut
  10
-69.99999999999997
+70.0
  20
 64.03124200000003
  30
 0.0
  11
-69.99999999999997
+70.0
  21
-77.03124200000002
+64.03124200000003
  31
 0.0
   0
@@ -2623,15 +2757,15 @@ LINE
   8
 cut
  10
-69.99999999999997
+70.00000000000004
  20
-64.03124200000003
+194.03124200000002
  30
 0.0
  11
-69.99999999999997
+70.00000000000004
  21
-64.03124200000003
+194.03124200000002
  31
 0.0
   0
@@ -2641,13 +2775,13 @@ LINE
   8
 cut
  10
-70.00000000000001
+64.00000000000004
  20
 194.03124200000002
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 194.03124200000002
  31
@@ -2659,13 +2793,49 @@ LINE
   8
 cut
  10
+64.00000000000004
+ 20
+181.03124200000002
+ 30
+0.0
+ 11
+64.00000000000004
+ 21
+194.03124200000002
+ 31
 0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.00000000000004
  20
-129.03124200000002
+181.03124200000002
  30
 0.0
  11
+64.00000000000004
+ 21
+181.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.8421709430404014e-14
+ 20
+129.03124200000002
+ 30
 0.0
+ 11
+2.8421709430404014e-14
  21
 142.03124200000005
  31
@@ -2679,13 +2849,13 @@ DOTTED
   8
 90
  10
-0.0
+2.8421709430404014e-14
  20
 129.03124200000002
  30
 0.0
  11
-69.99999999999999
+70.00000000000001
  21
 129.031242
  31
@@ -2699,13 +2869,13 @@ DOTTED
   8
 90
  10
-0.0
+2.8421709430404014e-14
  20
 142.03124200000005
  30
 0.0
  11
-70.0
+70.00000000000003
  21
 142.03124200000002
  31
@@ -2717,13 +2887,13 @@ LINE
   8
 cut
  10
-0.0
+2.8421709430404014e-14
  20
 110.03124200000003
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 129.03124200000002
  31
@@ -2735,13 +2905,13 @@ LINE
   8
 cut
  10
-70.00000000000001
+70.00000000000004
  20
 110.03124200000002
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 110.03124200000003
  31
@@ -2753,13 +2923,13 @@ LINE
   8
 cut
  10
-70.00000000000001
+70.00000000000004
  20
 129.031242
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 110.03124200000002
  31
@@ -2771,13 +2941,13 @@ LINE
   8
 cut
  10
-0.0
+2.8421709430404014e-14
  20
 142.03124200000005
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 161.03124200000005
  31
@@ -2789,13 +2959,13 @@ LINE
   8
 cut
  10
-70.00000000000001
+70.00000000000004
  20
 161.03124200000002
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 142.03124200000002
  31
@@ -2809,13 +2979,13 @@ DOTTED
   8
 90
  10
-0.0
+2.8421709430404014e-14
  20
 161.03124200000005
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 161.03124200000002
  31
@@ -2827,13 +2997,13 @@ LINE
   8
 cut
  10
-0.0
+2.8421709430404014e-14
  20
 161.03124200000005
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 174.03124200000005
  31
@@ -2845,13 +3015,13 @@ LINE
   8
 cut
  10
-70.00000000000001
+70.00000000000004
  20
 174.03124200000002
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 161.03124200000002
  31
@@ -2865,13 +3035,13 @@ DOTTED
   8
 90
  10
-70.00000000000001
+70.00000000000004
  20
 174.03124200000002
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 174.03124200000005
  31
@@ -2883,13 +3053,13 @@ LINE
   8
 cut
  10
-70.0
+70.00000000000003
  20
 184.03124200000002
  30
 0.0
  11
-70.0
+70.00000000000003
  21
 174.03124200000002
  31
@@ -2901,13 +3071,13 @@ LINE
   8
 cut
  10
-0.0
+2.8421709430404014e-14
  20
 184.03124200000002
  30
 0.0
  11
-70.0
+70.00000000000003
  21
 184.03124200000002
  31
@@ -2919,13 +3089,13 @@ LINE
   8
 cut
  10
-0.0
+2.8421709430404014e-14
  20
 174.03124200000005
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 184.03124200000002
  31
@@ -2937,13 +3107,67 @@ LINE
   8
 cut
  10
-108.43030382152985
+0.0
+ 20
+77.03124200000003
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+77.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+64.03124200000003
+ 30
+0.0
+ 11
+0.0
+ 21
+77.03124200000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+69.99999999999999
+ 20
+64.031242
+ 30
+0.0
+ 11
+0.0
+ 21
+64.03124200000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.43030382152989
  20
 26.606620936353796
  30
 0.0
  11
-100.93572409356511
+100.93572409356514
  21
 30.608079779724527
  31
@@ -2955,13 +3179,13 @@ LINE
   8
 cut
  10
-100.93572409356511
+100.93572409356514
  20
 30.608079779724527
  30
 0.0
  11
-100.70023070333659
+100.70023070333662
  21
 30.167009645665704
  31
@@ -2973,13 +3197,13 @@ LINE
   8
 cut
  10
-100.70023070333659
+100.70023070333662
  20
 30.167009645665704
  30
 0.0
  11
-108.19481043130132
+108.19481043130136
  21
 26.165550802294977
  31
@@ -2991,13 +3215,13 @@ LINE
   8
 cut
  10
-108.19481043130132
+108.19481043130136
  20
 26.165550802294977
  30
 0.0
  11
-108.43030382152985
+108.43030382152989
  21
 26.606620936353796
  31
@@ -3009,13 +3233,13 @@ LINE
   8
 cut
  10
-64.00307140867999
+64.00307140868003
  20
 48.03943242314682
  30
 0.0
  11
-68.0010238028933
+68.00102380289331
  21
 48.03943242314682
  31
@@ -3027,13 +3251,13 @@ LINE
   8
 cut
  10
-68.0010238028933
+68.00102380289331
  20
 48.03943242314682
  30
 0.0
  11
-68.0010238028933
+68.00102380289331
  21
 56.03533721157341
  31
@@ -3045,13 +3269,13 @@ LINE
   8
 cut
  10
-68.0010238028933
+68.00102380289331
  20
 56.03533721157341
  30
 0.0
  11
-64.00307140867999
+64.00307140868003
  21
 56.03533721157343
  31
@@ -3063,13 +3287,13 @@ LINE
   8
 cut
  10
-123.08333333333333
+123.08333333333336
  20
 223.781242
  30
 0.0
  11
-136.91666666666663
+136.9166666666667
  21
 223.781242
  31
@@ -3081,13 +3305,13 @@ LINE
   8
 cut
  10
-136.91666666666663
+136.9166666666667
  20
 223.781242
  30
 0.0
  11
-136.91666666666663
+136.9166666666667
  21
 224.281242
  31
@@ -3099,13 +3323,13 @@ LINE
   8
 cut
  10
-136.91666666666663
+136.9166666666667
  20
 224.281242
  30
 0.0
  11
-123.08333333333333
+123.08333333333336
  21
 224.281242
  31
@@ -3117,13 +3341,13 @@ LINE
   8
 cut
  10
-123.08333333333333
+123.08333333333336
  20
 224.281242
  30
 0.0
  11
-123.08333333333333
+123.08333333333336
  21
 223.781242
  31
@@ -3135,13 +3359,13 @@ LINE
   8
 cut
  10
-153.08333333333334
+153.08333333333337
  20
 223.781242
  30
 0.0
  11
-166.91666666666666
+166.9166666666667
  21
 223.781242
  31
@@ -3153,13 +3377,13 @@ LINE
   8
 cut
  10
-166.91666666666666
+166.9166666666667
  20
 223.781242
  30
 0.0
  11
-166.91666666666666
+166.9166666666667
  21
 224.281242
  31
@@ -3171,13 +3395,13 @@ LINE
   8
 cut
  10
-166.91666666666666
+166.9166666666667
  20
 224.281242
  30
 0.0
  11
-153.08333333333334
+153.08333333333337
  21
 224.281242
  31
@@ -3189,13 +3413,13 @@ LINE
   8
 cut
  10
-153.08333333333334
+153.08333333333337
  20
 224.281242
  30
 0.0
  11
-153.08333333333334
+153.08333333333337
  21
 223.781242
  31
@@ -3207,7 +3431,7 @@ LINE
   8
 cut
  10
-229.99999999999997
+230.00000000000003
  20
 220.69790866666668
  30
@@ -3249,7 +3473,7 @@ cut
  30
 0.0
  11
-229.99999999999997
+230.00000000000003
  21
 207.3645753333333
  31
@@ -3261,13 +3485,13 @@ LINE
   8
 cut
  10
-189.06427590643486
+189.0642759064349
  20
 30.608079779724527
  30
 0.0
  11
-181.5696961784701
+181.56969617847014
  21
 26.60662093635381
  31
@@ -3279,13 +3503,13 @@ LINE
   8
 cut
  10
-181.5696961784701
+181.56969617847014
  20
 26.60662093635381
  30
 0.0
  11
-181.80518956869864
+181.80518956869867
  21
 26.165550802294977
  31
@@ -3297,13 +3521,13 @@ LINE
   8
 cut
  10
-181.80518956869864
+181.80518956869867
  20
 26.165550802294977
  30
 0.0
  11
-189.29976929666338
+189.2997692966634
  21
 30.167009645665704
  31
@@ -3315,13 +3539,13 @@ LINE
   8
 cut
  10
-189.29976929666338
+189.2997692966634
  20
 30.167009645665704
  30
 0.0
  11
-189.06427590643486
+189.0642759064349
  21
 30.608079779724527
  31
@@ -3333,13 +3557,13 @@ LINE
   8
 cut
  10
-225.99692859131997
+225.99692859132
  20
 56.03533721157341
  30
 0.0
  11
-221.99897619710666
+221.99897619710669
  21
 56.03533721157341
  31
@@ -3351,13 +3575,13 @@ LINE
   8
 cut
  10
-221.99897619710666
+221.99897619710669
  20
 56.03533721157341
  30
 0.0
  11
-221.99897619710666
+221.99897619710669
  21
 48.03943242314682
  31
@@ -3369,13 +3593,13 @@ LINE
   8
 cut
  10
-221.99897619710666
+221.99897619710669
  20
 48.03943242314682
  30
 0.0
  11
-225.99692859131997
+225.99692859132
  21
 48.03943242314682
  31
@@ -3387,6 +3611,60 @@ LINE
   8
 cut
  10
+224.50000000000003
+ 20
+72.69790866666666
+ 30
+0.0
+ 11
+221.50000000000003
+ 21
+72.69790866666666
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+221.50000000000003
+ 20
+72.69790866666666
+ 30
+0.0
+ 11
+221.50000000000003
+ 21
+68.36457533333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+221.50000000000003
+ 20
+68.36457533333333
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+68.36457533333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
 264.2954545454545
  20
 153.28124200000002
@@ -3465,7 +3743,7 @@ cut
  30
 0.0
  11
-245.7045454545454
+245.70454545454547
  21
 153.281242
  31
@@ -3477,13 +3755,13 @@ LINE
   8
 cut
  10
-245.7045454545454
+245.70454545454547
  20
 153.281242
  30
 0.0
  11
-245.7045454545454
+245.70454545454547
  21
 153.781242
  31
@@ -3495,7 +3773,7 @@ LINE
   8
 cut
  10
-245.7045454545454
+245.70454545454547
  20
 153.781242
  30
@@ -3531,13 +3809,13 @@ LINE
   8
 cut
  10
-248.0
+248.00000000000006
  20
 97.096242
  30
 0.0
  11
-248.0
+248.00000000000006
  21
 109.96624200000001
  31
@@ -3549,13 +3827,13 @@ LINE
   8
 cut
  10
-248.0
+248.00000000000006
  20
 109.96624200000001
  30
 0.0
  11
-225.0
+225.00000000000003
  21
 109.966242
  31
@@ -3567,13 +3845,13 @@ LINE
   8
 cut
  10
-225.0
+225.00000000000003
  20
 109.966242
  30
 0.0
  11
-225.0
+225.00000000000003
  21
 97.096242
  31
@@ -3585,13 +3863,13 @@ LINE
   8
 cut
  10
-225.0
+225.00000000000003
  20
 97.096242
  30
 0.0
  11
-248.0
+248.00000000000006
  21
 97.096242
  31
@@ -3693,13 +3971,13 @@ LINE
   8
 cut
  10
-245.45454545454544
+245.45454545454547
  20
 89.531242
  30
 0.0
  11
-250.45454545454544
+250.45454545454547
  21
 89.531242
  31
@@ -3711,13 +3989,13 @@ LINE
   8
 cut
  10
-250.45454545454544
+250.45454545454547
  20
 89.531242
  30
 0.0
  11
-245.45454545454544
+245.45454545454547
  21
 94.53124199999999
  31
@@ -3729,13 +4007,13 @@ LINE
   8
 cut
  10
-245.45454545454544
+245.45454545454547
  20
 94.53124199999999
  30
 0.0
  11
-232.72727272727272
+232.72727272727275
  21
 94.53124199999999
  31
@@ -3747,13 +4025,13 @@ LINE
   8
 cut
  10
-232.72727272727272
+232.72727272727275
  20
 94.53124199999999
  30
 0.0
  11
-227.72727272727272
+227.72727272727275
  21
 89.531242
  31
@@ -3765,13 +4043,13 @@ LINE
   8
 cut
  10
-227.72727272727272
+227.72727272727275
  20
 89.531242
  30
 0.0
  11
-232.72727272727272
+232.72727272727275
  21
 89.531242
  31
@@ -3783,15 +4061,15 @@ LINE
   8
 cut
  10
-59.99999999999999
+285.25000000000006
  20
-207.3645753333333
+189.94790866666668
  30
 0.0
  11
-66.66666666666666
+285.25000000000006
  21
-207.3645753333333
+185.11457533333333
  31
 0.0
   0
@@ -3801,13 +4079,85 @@ LINE
   8
 cut
  10
-66.66666666666666
+285.25000000000006
+ 20
+185.11457533333333
+ 30
+0.0
+ 11
+285.75
+ 21
+185.11457533333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+285.75
+ 20
+185.11457533333333
+ 30
+0.0
+ 11
+285.75
+ 21
+189.94790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+285.75
+ 20
+189.94790866666668
+ 30
+0.0
+ 11
+285.25000000000006
+ 21
+189.94790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+60.00000000000002
+ 20
+207.3645753333333
+ 30
+0.0
+ 11
+66.66666666666669
+ 21
+207.3645753333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+66.66666666666669
  20
 207.3645753333333
  30
 0.0
  11
-66.66666666666667
+66.66666666666671
  21
 220.69790866666668
  31
@@ -3819,13 +4169,13 @@ LINE
   8
 cut
  10
-66.66666666666667
+66.66666666666671
  20
 220.69790866666668
  30
 0.0
  11
-60.00000000000001
+60.000000000000036
  21
 220.69790866666668
  31
@@ -3837,13 +4187,67 @@ LINE
   8
 cut
  10
-25.704545454545457
+65.50000000000003
+ 20
+185.36457533333336
+ 30
+0.0
+ 11
+68.50000000000004
+ 21
+185.36457533333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000004
+ 20
+185.36457533333336
+ 30
+0.0
+ 11
+68.50000000000004
+ 21
+189.69790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+68.50000000000004
+ 20
+189.69790866666668
+ 30
+0.0
+ 11
+65.50000000000003
+ 21
+189.69790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+25.704545454545485
  20
 117.78124200000002
  30
 0.0
  11
-12.477272727272721
+12.47727272727275
  21
 117.78124200000003
  31
@@ -3855,13 +4259,13 @@ LINE
   8
 cut
  10
-12.477272727272721
+12.47727272727275
  20
 117.78124200000003
  30
 0.0
  11
-12.477272727272721
+12.47727272727275
  21
 117.28124200000003
  31
@@ -3873,13 +4277,13 @@ LINE
   8
 cut
  10
-12.477272727272721
+12.47727272727275
  20
 117.28124200000003
  30
 0.0
  11
-25.704545454545457
+25.704545454545485
  21
 117.281242
  31
@@ -3891,13 +4295,13 @@ LINE
   8
 cut
  10
-25.704545454545457
+25.704545454545485
  20
 117.281242
  30
 0.0
  11
-25.704545454545457
+25.704545454545485
  21
 117.78124200000002
  31
@@ -3909,13 +4313,13 @@ LINE
   8
 cut
  10
-57.52272727272727
+57.5227272727273
  20
 117.78124200000002
  30
 0.0
  11
-44.29545454545455
+44.29545454545458
  21
 117.78124200000002
  31
@@ -3927,13 +4331,13 @@ LINE
   8
 cut
  10
-44.29545454545455
+44.29545454545458
  20
 117.78124200000002
  30
 0.0
  11
-44.29545454545455
+44.29545454545458
  21
 117.281242
  31
@@ -3945,13 +4349,13 @@ LINE
   8
 cut
  10
-44.29545454545455
+44.29545454545458
  20
 117.281242
  30
 0.0
  11
-57.52272727272727
+57.5227272727273
  21
 117.281242
  31
@@ -3963,13 +4367,13 @@ LINE
   8
 cut
  10
-57.52272727272727
+57.5227272727273
  20
 117.281242
  30
 0.0
  11
-57.52272727272727
+57.5227272727273
  21
 117.78124200000002
  31
@@ -3981,13 +4385,13 @@ LINE
   8
 cut
  10
-42.0
+42.00000000000003
  20
 173.96624200000002
  30
 0.0
  11
-42.0
+42.00000000000003
  21
 161.09624200000005
  31
@@ -3999,13 +4403,13 @@ LINE
   8
 cut
  10
-42.0
+42.00000000000003
  20
 161.09624200000005
  30
 0.0
  11
-65.0
+65.00000000000004
  21
 161.09624200000002
  31
@@ -4017,13 +4421,13 @@ LINE
   8
 cut
  10
-65.0
+65.00000000000004
  20
 161.09624200000002
  30
 0.0
  11
-65.0
+65.00000000000004
  21
 173.96624200000002
  31
@@ -4035,13 +4439,13 @@ LINE
   8
 cut
  10
-65.0
+65.00000000000004
  20
 173.96624200000002
  30
 0.0
  11
-42.0
+42.00000000000003
  21
 173.96624200000002
  31
@@ -4053,13 +4457,13 @@ LINE
   8
 cut
  10
-12.72727272727272
+12.727272727272748
  20
 181.53124200000005
  30
 0.0
  11
-7.72727272727272
+7.727272727272749
  21
 181.53124200000005
  31
@@ -4071,13 +4475,13 @@ LINE
   8
 cut
  10
-7.72727272727272
+7.727272727272749
  20
 181.53124200000005
  30
 0.0
  11
-12.72727272727272
+12.727272727272748
  21
 176.53124200000005
  31
@@ -4089,13 +4493,13 @@ LINE
   8
 cut
  10
-12.72727272727272
+12.727272727272748
  20
 176.53124200000005
  30
 0.0
  11
-25.454545454545457
+25.454545454545485
  21
 176.53124200000002
  31
@@ -4107,13 +4511,13 @@ LINE
   8
 cut
  10
-25.454545454545457
+25.454545454545485
  20
 176.53124200000002
  30
 0.0
  11
-30.454545454545457
+30.454545454545485
  21
 181.53124200000002
  31
@@ -4125,13 +4529,13 @@ LINE
   8
 cut
  10
-30.454545454545457
+30.454545454545485
  20
 181.53124200000002
  30
 0.0
  11
-25.454545454545457
+25.454545454545485
  21
 181.53124200000002
  31
@@ -4143,13 +4547,13 @@ LINE
   8
 cut
  10
-44.54545454545454
+44.54545454545457
  20
 181.53124200000002
  30
 0.0
  11
-39.54545454545454
+39.54545454545457
  21
 181.53124200000002
  31
@@ -4161,13 +4565,13 @@ LINE
   8
 cut
  10
-39.54545454545454
+39.54545454545457
  20
 181.53124200000002
  30
 0.0
  11
-44.54545454545454
+44.54545454545457
  21
 176.53124200000002
  31
@@ -4179,13 +4583,13 @@ LINE
   8
 cut
  10
-44.54545454545454
+44.54545454545457
  20
 176.53124200000002
  30
 0.0
  11
-57.27272727272726
+57.27272727272729
  21
 176.53124200000002
  31
@@ -4197,13 +4601,13 @@ LINE
   8
 cut
  10
-57.27272727272726
+57.27272727272729
  20
 176.53124200000002
  30
 0.0
  11
-62.27272727272726
+62.27272727272729
  21
 181.53124200000002
  31
@@ -4215,13 +4619,13 @@ LINE
   8
 cut
  10
-62.27272727272726
+62.27272727272729
  20
 181.53124200000002
  30
 0.0
  11
-57.27272727272726
+57.27272727272729
  21
 181.53124200000002
  31
@@ -4233,6 +4637,78 @@ LINE
   8
 cut
  10
+4.750000000000001
+ 20
+68.11457533333336
+ 30
+0.0
+ 11
+4.750000000000001
+ 21
+72.94790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+4.750000000000001
+ 20
+72.94790866666668
+ 30
+0.0
+ 11
+4.25
+ 21
+72.94790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+4.25
+ 20
+72.94790866666668
+ 30
+0.0
+ 11
+4.25
+ 21
+68.11457533333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+4.25
+ 20
+68.11457533333336
+ 30
+0.0
+ 11
+4.750000000000001
+ 21
+68.11457533333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
 300.0
  20
 129.031242
@@ -4371,6 +4847,986 @@ cut
  31
 0.0
   0
+LINE
+ 62
+5
+  8
+cut
+ 10
+354.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+330.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+354.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+354.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+330.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+354.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+330.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+330.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+414.0
+ 20
+98.531242
+ 30
+0.0
+ 11
+354.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+414.0
+ 20
+98.531242
+ 30
+0.0
+ 11
+414.0
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+354.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+414.0
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+414.0
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+438.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+438.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+414.0
+ 20
+159.531242
+ 30
+0.0
+ 11
+438.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+498.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+438.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+498.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+498.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+438.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+498.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+320.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+330.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+320.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+320.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+330.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+320.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+331.40000000000003
+ 20
+108.531242
+ 30
+0.0
+ 11
+332.6000000000001
+ 21
+108.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+332.6000000000001
+ 20
+108.531242
+ 30
+0.0
+ 11
+332.6000000000001
+ 21
+149.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+332.6000000000001
+ 20
+149.53124200000002
+ 30
+0.0
+ 11
+331.40000000000003
+ 21
+149.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+331.40000000000003
+ 20
+149.53124200000002
+ 30
+0.0
+ 11
+331.40000000000003
+ 21
+108.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+351.4
+ 20
+109.031242
+ 30
+0.0
+ 11
+352.6000000000001
+ 21
+109.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+352.6000000000001
+ 20
+109.031242
+ 30
+0.0
+ 11
+352.6000000000001
+ 21
+139.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+352.6000000000001
+ 20
+139.031242
+ 30
+0.0
+ 11
+351.4
+ 21
+139.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+351.4
+ 20
+139.031242
+ 30
+0.0
+ 11
+351.4
+ 21
+109.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+362.00000000000006
+ 20
+150.031242
+ 30
+0.0
+ 11
+362.00000000000006
+ 21
+132.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+362.00000000000006
+ 20
+132.03124200000002
+ 30
+0.0
+ 11
+392.00000000000006
+ 21
+132.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+392.00000000000006
+ 20
+132.03124200000002
+ 30
+0.0
+ 11
+392.00000000000006
+ 21
+150.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+392.00000000000006
+ 20
+150.031242
+ 30
+0.0
+ 11
+362.00000000000006
+ 21
+150.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+435.40000000000003
+ 20
+108.531242
+ 30
+0.0
+ 11
+436.6000000000001
+ 21
+108.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+436.6000000000001
+ 20
+108.531242
+ 30
+0.0
+ 11
+436.6000000000001
+ 21
+149.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+436.6000000000001
+ 20
+149.53124200000002
+ 30
+0.0
+ 11
+435.40000000000003
+ 21
+149.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+435.40000000000003
+ 20
+149.53124200000002
+ 30
+0.0
+ 11
+435.40000000000003
+ 21
+108.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+415.4
+ 20
+109.031242
+ 30
+0.0
+ 11
+416.6000000000001
+ 21
+109.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+416.6000000000001
+ 20
+109.031242
+ 30
+0.0
+ 11
+416.6000000000001
+ 21
+139.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+416.6000000000001
+ 20
+139.031242
+ 30
+0.0
+ 11
+415.4
+ 21
+139.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+415.4
+ 20
+139.031242
+ 30
+0.0
+ 11
+415.4
+ 21
+109.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+453.00000000000006
+ 20
+112.531242
+ 30
+0.0
+ 11
+453.00000000000006
+ 21
+105.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+453.00000000000006
+ 20
+105.531242
+ 30
+0.0
+ 11
+473.00000000000006
+ 21
+105.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+473.00000000000006
+ 20
+105.531242
+ 30
+0.0
+ 11
+473.00000000000006
+ 21
+112.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+473.00000000000006
+ 20
+112.531242
+ 30
+0.0
+ 11
+453.00000000000006
+ 21
+112.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+490.25000000000006
+ 20
+120.9630601818182
+ 30
+0.0
+ 11
+490.25000000000006
+ 21
+109.3721510909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+490.25000000000006
+ 20
+109.3721510909091
+ 30
+0.0
+ 11
+490.75000000000006
+ 21
+109.3721510909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+490.75000000000006
+ 20
+109.3721510909091
+ 30
+0.0
+ 11
+490.75000000000006
+ 21
+120.9630601818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+490.75000000000006
+ 20
+120.9630601818182
+ 30
+0.0
+ 11
+490.25000000000006
+ 21
+120.9630601818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+490.25000000000006
+ 20
+148.69033290909093
+ 30
+0.0
+ 11
+490.25000000000006
+ 21
+137.09942381818183
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+490.25000000000006
+ 20
+137.09942381818183
+ 30
+0.0
+ 11
+490.75000000000006
+ 21
+137.09942381818183
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+490.75000000000006
+ 20
+137.09942381818183
+ 30
+0.0
+ 11
+490.75000000000006
+ 21
+148.69033290909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+490.75000000000006
+ 20
+148.69033290909093
+ 30
+0.0
+ 11
+490.25000000000006
+ 21
+148.69033290909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+322.5
+ 20
+109.6221510909091
+ 30
+0.0
+ 11
+327.5
+ 21
+109.6221510909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.5
+ 20
+109.6221510909091
+ 30
+0.0
+ 11
+327.5
+ 21
+120.7130601818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.5
+ 20
+120.7130601818182
+ 30
+0.0
+ 11
+322.5
+ 21
+120.7130601818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+322.5
+ 20
+137.34942381818186
+ 30
+0.0
+ 11
+327.5
+ 21
+137.34942381818186
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.5
+ 20
+137.34942381818186
+ 30
+0.0
+ 11
+327.5
+ 21
+148.44033290909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.5
+ 20
+148.44033290909093
+ 30
+0.0
+ 11
+322.5
+ 21
+148.44033290909093
+ 31
+0.0
+  0
 ENDSEC
   0
 EOF
diff --git a/rocolib/output/PaddleboatWithCamera/graph-autofold-graph.dxf b/rocolib/output/PaddleboatWithCamera/graph-autofold-graph.dxf
index 2fc1014924caef7ae07b550c710958087418844b..d0543418a3383f572923f40f7e291e37cb2c97f0 100644
--- a/rocolib/output/PaddleboatWithCamera/graph-autofold-graph.dxf
+++ b/rocolib/output/PaddleboatWithCamera/graph-autofold-graph.dxf
@@ -945,13 +945,13 @@ DOTTED
   8
 0
  10
-179.99999999999994
+179.99999999999997
  20
 64.03124199999999
  30
 0.0
  11
-179.99999999999994
+179.99999999999997
  21
 194.03124200000002
  31
@@ -965,13 +965,13 @@ DOTTED
   8
 0
  10
-109.99999999999996
+109.99999999999999
  20
 64.03124199999999
  30
 0.0
  11
-109.99999999999996
+109.99999999999999
  21
 194.03124200000002
  31
@@ -985,13 +985,13 @@ DOTTED
   8
 0
  10
-144.99999999999997
+145.0
  20
 64.03124199999999
  30
 0.0
  11
-109.99999999999996
+109.99999999999999
  21
 64.03124199999999
  31
@@ -1005,13 +1005,13 @@ DOTTED
   8
 0
  10
-179.99999999999994
+179.99999999999997
  20
 64.03124199999999
  30
 0.0
  11
-144.99999999999997
+145.0
  21
 64.03124199999999
  31
@@ -1025,13 +1025,13 @@ DOTTED
   8
 0
  10
-144.99999999999997
+145.0
  20
 -3.7432849353535863e-07
  30
 0.0
  11
-109.99999999999996
+109.99999999999999
  21
 64.03124199999999
  31
@@ -1043,13 +1043,13 @@ LINE
   8
 0
  10
-112.32105756343545
+112.32105756343546
  20
 17.44773491586702
  30
 0.0
  11
-91.16052878171769
+91.16052878171773
  21
 28.745631275293622
  31
@@ -1061,13 +1061,13 @@ LINE
   8
 0
  10
-144.99999999999997
+145.0
  20
 -3.743284651136492e-07
  30
 0.0
  11
-112.32105756343545
+112.32105756343546
  21
 17.44773491586702
  31
@@ -1081,13 +1081,13 @@ DOTTED
   8
 0
  10
-109.99999999999996
+109.99999999999999
  20
 64.03124199999999
  30
 0.0
  11
-91.16052878171769
+91.16052878171773
  21
 28.745631275293622
  31
@@ -1101,13 +1101,13 @@ DOTTED
   8
 0
  10
-109.99999999999996
+109.99999999999999
  20
 64.03124199999999
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 40.04352763472023
  31
@@ -1119,13 +1119,13 @@ LINE
   8
 0
  10
-91.16052878171769
+91.16052878171773
  20
 28.745631275293608
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 40.04352763472023
  31
@@ -1139,13 +1139,13 @@ DOTTED
   8
 0
  10
-69.99999999999996
+69.99999999999999
  20
 64.031242
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 40.04352763472023
  31
@@ -1159,13 +1159,13 @@ DOTTED
   8
 0
  10
-109.99999999999996
+109.99999999999999
  20
 64.03124199999999
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 64.031242
  31
@@ -1177,13 +1177,13 @@ LINE
   8
 0
  10
-62.00409521157335
+62.00409521157338
  20
 64.031242
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 64.031242
  31
@@ -1195,13 +1195,13 @@ LINE
   8
 0
  10
-62.004095211573336
+62.004095211573365
  20
 40.04352763472023
  30
 0.0
  11
-62.00409521157335
+62.00409521157338
  21
 64.031242
  31
@@ -1213,13 +1213,13 @@ LINE
   8
 0
  10
-69.99999999999994
+69.99999999999997
  20
 40.04352763472023
  30
 0.0
  11
-62.004095211573336
+62.004095211573365
  21
 40.04352763472023
  31
@@ -1233,13 +1233,13 @@ DOTTED
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 194.031242
  30
 0.0
  11
-110.00000000000001
+110.00000000000004
  21
 194.031242
  31
@@ -1253,13 +1253,13 @@ DOTTED
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 234.031242
  30
 0.0
  11
-110.0
+110.00000000000003
  21
 194.031242
  31
@@ -1273,13 +1273,13 @@ DOTTED
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 234.031242
  30
 0.0
  11
-70.0
+70.00000000000003
  21
 194.031242
  31
@@ -1291,13 +1291,13 @@ LINE
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 234.031242
  30
 0.0
  11
-110.00000000000001
+110.00000000000004
  21
 234.031242
  31
@@ -1311,13 +1311,13 @@ DOTTED
   8
 0
  10
-110.00000000000001
+110.00000000000004
  20
 234.031242
  30
 0.0
  11
-110.0
+110.00000000000003
  21
 194.031242
  31
@@ -1329,13 +1329,13 @@ LINE
   8
 0
  10
-149.99999999999997
+150.0
  20
 234.031242
  30
 0.0
  11
-145.0
+145.00000000000003
  21
 234.031242
  31
@@ -1347,13 +1347,13 @@ LINE
   8
 0
  10
-110.0
+110.00000000000003
  20
 234.031242
  30
 0.0
  11
-149.99999999999997
+150.0
  21
 234.031242
  31
@@ -1367,13 +1367,13 @@ DOTTED
   8
 0
  10
-110.0
+110.00000000000003
  20
 194.031242
  30
 0.0
  11
-145.0
+145.00000000000003
  21
 194.031242
  31
@@ -1387,13 +1387,13 @@ DOTTED
   8
 0
  10
-145.0
+145.00000000000003
  20
 194.031242
  30
 0.0
  11
-179.99999999999997
+180.0
  21
 194.031242
  31
@@ -1411,7 +1411,7 @@ LINE
  30
 0.0
  11
-179.99999999999997
+180.0
  21
 234.031242
  31
@@ -1423,7 +1423,7 @@ LINE
   8
 0
  10
-145.0
+145.00000000000003
  20
 234.031242
  30
@@ -1443,13 +1443,13 @@ DOTTED
   8
 0
  10
-179.99999999999997
+180.0
  20
 194.031242
  30
 0.0
  11
-179.99999999999997
+180.0
  21
 234.031242
  31
@@ -1463,13 +1463,13 @@ DOTTED
   8
 0
  10
-179.99999999999997
+180.0
  20
 194.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 234.031242
  31
@@ -1481,13 +1481,13 @@ LINE
   8
 0
  10
-179.99999999999997
+180.0
  20
 234.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 234.031242
  31
@@ -1501,13 +1501,13 @@ DOTTED
   8
 0
  10
-219.99999999999997
+220.00000000000003
  20
 194.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 234.031242
  31
@@ -1521,13 +1521,13 @@ DOTTED
   8
 0
  10
-179.99999999999997
+180.0
  20
 194.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 194.031242
  31
@@ -1545,7 +1545,7 @@ LINE
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 194.03124200000002
  31
@@ -1575,7 +1575,7 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 234.031242
  30
@@ -1601,7 +1601,7 @@ DOTTED
  30
 0.0
  11
-180.0
+180.00000000000006
  21
 64.03124199999999
  31
@@ -1621,7 +1621,7 @@ DOTTED
  30
 0.0
  11
-180.0
+180.00000000000006
  21
 64.03124199999999
  31
@@ -1641,7 +1641,7 @@ DOTTED
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 64.031242
  31
@@ -1659,7 +1659,7 @@ LINE
  30
 0.0
  11
-198.83947121828228
+198.8394712182823
  21
 28.745631275293622
  31
@@ -1673,13 +1673,13 @@ DOTTED
   8
 0
  10
-198.83947121828228
+198.8394712182823
  20
 28.745631275293622
  30
 0.0
  11
-180.0
+180.00000000000006
  21
 64.03124199999999
  31
@@ -1693,13 +1693,13 @@ DOTTED
   8
 0
  10
-145.00000000000003
+145.00000000000006
  20
 -3.743284651136492e-07
  30
 0.0
  11
-180.0
+180.00000000000006
  21
 64.03124199999999
  31
@@ -1711,13 +1711,13 @@ LINE
   8
 0
  10
-177.6789424365645
+177.67894243656454
  20
 17.44773491586702
  30
 0.0
  11
-145.00000000000003
+145.00000000000006
  21
 -3.743284651136492e-07
  31
@@ -1735,7 +1735,7 @@ LINE
  30
 0.0
  11
-177.6789424365645
+177.67894243656454
  21
 17.44773491586702
  31
@@ -1747,13 +1747,13 @@ LINE
   8
 0
  10
-227.99590478842663
+227.99590478842666
  20
 40.04352763472023
  30
 0.0
  11
-220.00000000000003
+220.00000000000006
  21
 40.04352763472023
  31
@@ -1765,13 +1765,13 @@ LINE
   8
 0
  10
-227.99590478842663
+227.99590478842666
  20
 64.031242
  30
 0.0
  11
-227.99590478842663
+227.99590478842666
  21
 40.04352763472023
  31
@@ -1783,33 +1783,35 @@ LINE
   8
 0
  10
-220.00000000000003
+220.00000000000006
  20
 64.031242
  30
 0.0
  11
-227.99590478842663
+227.99590478842666
  21
 64.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
 220.00000000000003
  20
-77.031242
+64.03124199999999
  30
 0.0
  11
 220.00000000000003
  21
-64.03124199999999
+77.031242
  31
 0.0
   0
@@ -1855,7 +1857,7 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 116.03124199999999
  30
@@ -1873,13 +1875,13 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 129.03124199999996
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 116.03124199999999
  31
@@ -1893,13 +1895,13 @@ DOTTED
   8
 0
  10
-220.0
+220.00000000000003
  20
 142.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 129.03124199999996
  31
@@ -1911,13 +1913,13 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 155.03124199999996
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 142.031242
  31
@@ -1929,13 +1931,13 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 168.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 155.03124199999996
  31
@@ -1947,33 +1949,35 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 181.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 168.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-220.0
+220.00000000000003
  20
-194.031242
+181.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
-181.031242
+194.031242
  31
 0.0
   0
@@ -1983,13 +1987,13 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 194.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 194.031242
  31
@@ -2019,6 +2023,60 @@ LINE
   8
 0
  10
+226.00000000000003
+ 20
+64.03124199999999
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+64.03124199999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.00000000000003
+ 20
+77.031242
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+64.03124199999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000003
+ 20
+77.031242
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+77.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
 290.00000000000006
  20
 142.03124200000002
@@ -2045,7 +2103,7 @@ DOTTED
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 142.031242
  31
@@ -2065,7 +2123,7 @@ DOTTED
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 129.03124199999996
  31
@@ -2077,13 +2135,13 @@ LINE
   8
 0
  10
-290.0
+290.00000000000006
  20
 161.03124200000002
  30
 0.0
  11
-290.0
+290.00000000000006
  21
 142.03124200000002
  31
@@ -2095,13 +2153,13 @@ LINE
   8
 0
  10
-219.99999999999997
+220.0
  20
 161.031242
  30
 0.0
  11
-290.0
+290.00000000000006
  21
 161.03124200000002
  31
@@ -2113,13 +2171,13 @@ LINE
   8
 0
  10
-219.99999999999997
+220.0
  20
 142.031242
  30
 0.0
  11
-219.99999999999997
+220.0
  21
 161.031242
  31
@@ -2149,13 +2207,13 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 110.03124199999999
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 129.03124199999996
  31
@@ -2175,7 +2233,7 @@ DOTTED
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 110.03124199999999
  31
@@ -2205,13 +2263,13 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 97.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 110.03124199999999
  31
@@ -2225,7 +2283,7 @@ DOTTED
   8
 0
  10
-220.0
+220.00000000000003
  20
 97.031242
  30
@@ -2243,13 +2301,13 @@ LINE
   8
 0
  10
-219.99999999999997
+220.00000000000003
  20
 87.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 97.031242
  31
@@ -2261,13 +2319,13 @@ LINE
   8
 0
  10
-290.0
+290.00000000000006
  20
 87.03124200000002
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 87.031242
  31
@@ -2279,13 +2337,13 @@ LINE
   8
 0
  10
-290.0
+290.00000000000006
  20
 97.03124200000002
  30
 0.0
  11
-290.0
+290.00000000000006
  21
 87.03124200000002
  31
@@ -2297,15 +2355,15 @@ LINE
   8
 0
  10
-56.66666666666668
+220.00000000000003
  20
-234.031242
+194.031242
  30
 0.0
  11
-70.00000000000001
+290.00000000000006
  21
-234.031242
+194.031242
  31
 0.0
   0
@@ -2315,15 +2373,15 @@ LINE
   8
 0
  10
-56.666666666666664
+290.00000000000006
  20
-194.031242
+181.031242
  30
 0.0
  11
-56.66666666666668
+220.00000000000003
  21
-234.031242
+181.031242
  31
 0.0
   0
@@ -2333,15 +2391,15 @@ LINE
   8
 0
  10
-70.0
+290.00000000000006
  20
 194.031242
  30
 0.0
  11
-56.666666666666664
+290.00000000000006
  21
-194.031242
+181.031242
  31
 0.0
   0
@@ -2351,15 +2409,15 @@ LINE
   8
 0
  10
-70.00000000000001
+56.66666666666671
  20
-181.03124200000002
+234.031242
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
-194.03124200000002
+234.031242
  31
 0.0
   0
@@ -2369,15 +2427,15 @@ LINE
   8
 0
  10
-70.0
+56.66666666666669
  20
-168.03124200000002
+194.031242
  30
 0.0
  11
-70.00000000000001
+56.66666666666671
  21
-181.03124200000002
+234.031242
  31
 0.0
   0
@@ -2387,53 +2445,53 @@ LINE
   8
 0
  10
-70.0
+70.00000000000003
  20
-155.031242
+194.031242
  30
 0.0
  11
-70.0
+56.66666666666669
  21
-168.03124200000002
+194.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-70.0
+70.00000000000004
  20
-142.03124200000002
+194.03124200000002
  30
 0.0
  11
-70.0
+70.00000000000004
  21
-155.031242
+181.03124200000002
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-69.99999999999999
+70.00000000000003
  20
-129.03124200000002
+168.03124200000002
  30
 0.0
  11
-70.0
+70.00000000000004
  21
-142.03124200000002
+181.03124200000002
  31
 0.0
   0
@@ -2443,15 +2501,15 @@ LINE
   8
 0
  10
-69.99999999999999
+70.00000000000003
  20
-116.03124200000002
+155.031242
  30
 0.0
  11
-69.99999999999999
+70.00000000000003
  21
-129.03124200000002
+168.03124200000002
  31
 0.0
   0
@@ -2461,15 +2519,35 @@ LINE
   8
 0
  10
-69.99999999999999
+70.00000000000003
  20
-103.03124200000002
+142.03124200000002
  30
 0.0
  11
-69.99999999999999
+70.00000000000003
  21
-116.03124200000002
+155.031242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+70.00000000000001
+ 20
+129.03124200000002
+ 30
+0.0
+ 11
+70.00000000000003
+ 21
+142.03124200000002
  31
 0.0
   0
@@ -2479,13 +2557,49 @@ LINE
   8
 0
  10
-69.99999999999999
+70.00000000000001
+ 20
+116.03124200000002
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+129.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+103.03124200000002
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+116.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
  20
 90.031242
  30
 0.0
  11
-69.99999999999999
+70.00000000000001
  21
 103.03124200000002
  31
@@ -2497,33 +2611,35 @@ LINE
   8
 0
  10
-69.99999999999997
+70.0
  20
 77.03124200000002
  30
 0.0
  11
-69.99999999999999
+70.00000000000001
  21
 90.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-69.99999999999997
+70.0
  20
-64.03124200000003
+77.03124200000002
  30
 0.0
  11
-69.99999999999997
+70.0
  21
-77.03124200000002
+64.03124200000003
  31
 0.0
   0
@@ -2533,13 +2649,13 @@ LINE
   8
 0
  10
-69.99999999999997
+70.0
  20
 64.03124200000003
  30
 0.0
  11
-69.99999999999997
+70.0
  21
 64.03124200000003
  31
@@ -2551,13 +2667,13 @@ LINE
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 194.03124200000002
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 194.03124200000002
  31
@@ -2569,13 +2685,67 @@ LINE
   8
 0
  10
+64.00000000000004
+ 20
+194.03124200000002
+ 30
+0.0
+ 11
+70.00000000000004
+ 21
+194.03124200000002
+ 31
 0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+64.00000000000004
  20
-129.03124200000002
+181.03124200000002
  30
 0.0
  11
+64.00000000000004
+ 21
+194.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000004
+ 20
+181.03124200000002
+ 30
+0.0
+ 11
+64.00000000000004
+ 21
+181.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.8421709430404014e-14
+ 20
+129.03124200000002
+ 30
 0.0
+ 11
+2.8421709430404014e-14
  21
 142.03124200000005
  31
@@ -2589,13 +2759,13 @@ DOTTED
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 129.03124200000002
  30
 0.0
  11
-69.99999999999999
+70.00000000000001
  21
 129.031242
  31
@@ -2609,13 +2779,13 @@ DOTTED
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 142.03124200000005
  30
 0.0
  11
-70.0
+70.00000000000003
  21
 142.03124200000002
  31
@@ -2627,13 +2797,13 @@ LINE
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 110.03124200000003
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 129.03124200000002
  31
@@ -2645,13 +2815,13 @@ LINE
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 110.03124200000002
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 110.03124200000003
  31
@@ -2663,13 +2833,13 @@ LINE
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 129.031242
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 110.03124200000002
  31
@@ -2681,13 +2851,13 @@ LINE
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 142.03124200000005
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 161.03124200000005
  31
@@ -2699,13 +2869,13 @@ LINE
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 161.03124200000002
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 142.03124200000002
  31
@@ -2719,13 +2889,13 @@ DOTTED
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 161.03124200000005
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 161.03124200000002
  31
@@ -2737,13 +2907,13 @@ LINE
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 161.03124200000005
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 174.03124200000005
  31
@@ -2755,13 +2925,13 @@ LINE
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 174.03124200000002
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 161.03124200000002
  31
@@ -2775,13 +2945,13 @@ DOTTED
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 174.03124200000002
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 174.03124200000005
  31
@@ -2793,13 +2963,13 @@ LINE
   8
 0
  10
-70.0
+70.00000000000003
  20
 184.03124200000002
  30
 0.0
  11
-70.0
+70.00000000000003
  21
 174.03124200000002
  31
@@ -2811,13 +2981,13 @@ LINE
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 184.03124200000002
  30
 0.0
  11
-70.0
+70.00000000000003
  21
 184.03124200000002
  31
@@ -2829,13 +2999,13 @@ LINE
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 174.03124200000005
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 184.03124200000002
  31
@@ -2847,13 +3017,67 @@ LINE
   8
 0
  10
-108.43030382152985
+0.0
+ 20
+77.03124200000003
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+77.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+64.03124200000003
+ 30
+0.0
+ 11
+0.0
+ 21
+77.03124200000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.99999999999999
+ 20
+64.031242
+ 30
+0.0
+ 11
+0.0
+ 21
+64.03124200000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.43030382152989
  20
 26.606620936353796
  30
 0.0
  11
-100.93572409356511
+100.93572409356514
  21
 30.608079779724527
  31
@@ -2865,13 +3089,13 @@ LINE
   8
 0
  10
-100.93572409356511
+100.93572409356514
  20
 30.608079779724527
  30
 0.0
  11
-100.70023070333659
+100.70023070333662
  21
 30.167009645665704
  31
@@ -2883,13 +3107,13 @@ LINE
   8
 0
  10
-100.70023070333659
+100.70023070333662
  20
 30.167009645665704
  30
 0.0
  11
-108.19481043130132
+108.19481043130136
  21
 26.165550802294977
  31
@@ -2901,13 +3125,13 @@ LINE
   8
 0
  10
-108.19481043130132
+108.19481043130136
  20
 26.165550802294977
  30
 0.0
  11
-108.43030382152985
+108.43030382152989
  21
 26.606620936353796
  31
@@ -2919,13 +3143,13 @@ LINE
   8
 0
  10
-64.00307140867999
+64.00307140868003
  20
 48.03943242314682
  30
 0.0
  11
-68.0010238028933
+68.00102380289331
  21
 48.03943242314682
  31
@@ -2937,13 +3161,13 @@ LINE
   8
 0
  10
-68.0010238028933
+68.00102380289331
  20
 48.03943242314682
  30
 0.0
  11
-68.0010238028933
+68.00102380289331
  21
 56.03533721157341
  31
@@ -2955,13 +3179,13 @@ LINE
   8
 0
  10
-68.0010238028933
+68.00102380289331
  20
 56.03533721157341
  30
 0.0
  11
-64.00307140867999
+64.00307140868003
  21
 56.03533721157343
  31
@@ -2973,13 +3197,13 @@ LINE
   8
 0
  10
-123.08333333333333
+123.08333333333336
  20
 223.781242
  30
 0.0
  11
-136.91666666666663
+136.9166666666667
  21
 223.781242
  31
@@ -2991,13 +3215,13 @@ LINE
   8
 0
  10
-136.91666666666663
+136.9166666666667
  20
 223.781242
  30
 0.0
  11
-136.91666666666663
+136.9166666666667
  21
 224.281242
  31
@@ -3009,13 +3233,13 @@ LINE
   8
 0
  10
-136.91666666666663
+136.9166666666667
  20
 224.281242
  30
 0.0
  11
-123.08333333333333
+123.08333333333336
  21
 224.281242
  31
@@ -3027,13 +3251,13 @@ LINE
   8
 0
  10
-123.08333333333333
+123.08333333333336
  20
 224.281242
  30
 0.0
  11
-123.08333333333333
+123.08333333333336
  21
 223.781242
  31
@@ -3045,13 +3269,13 @@ LINE
   8
 0
  10
-153.08333333333334
+153.08333333333337
  20
 223.781242
  30
 0.0
  11
-166.91666666666666
+166.9166666666667
  21
 223.781242
  31
@@ -3063,13 +3287,13 @@ LINE
   8
 0
  10
-166.91666666666666
+166.9166666666667
  20
 223.781242
  30
 0.0
  11
-166.91666666666666
+166.9166666666667
  21
 224.281242
  31
@@ -3081,13 +3305,13 @@ LINE
   8
 0
  10
-166.91666666666666
+166.9166666666667
  20
 224.281242
  30
 0.0
  11
-153.08333333333334
+153.08333333333337
  21
 224.281242
  31
@@ -3099,13 +3323,13 @@ LINE
   8
 0
  10
-153.08333333333334
+153.08333333333337
  20
 224.281242
  30
 0.0
  11
-153.08333333333334
+153.08333333333337
  21
 223.781242
  31
@@ -3117,7 +3341,7 @@ LINE
   8
 0
  10
-229.99999999999997
+230.00000000000003
  20
 220.69790866666668
  30
@@ -3159,7 +3383,7 @@ LINE
  30
 0.0
  11
-229.99999999999997
+230.00000000000003
  21
 207.3645753333333
  31
@@ -3171,13 +3395,13 @@ LINE
   8
 0
  10
-189.06427590643486
+189.0642759064349
  20
 30.608079779724527
  30
 0.0
  11
-181.5696961784701
+181.56969617847014
  21
 26.60662093635381
  31
@@ -3189,13 +3413,13 @@ LINE
   8
 0
  10
-181.5696961784701
+181.56969617847014
  20
 26.60662093635381
  30
 0.0
  11
-181.80518956869864
+181.80518956869867
  21
 26.165550802294977
  31
@@ -3207,13 +3431,13 @@ LINE
   8
 0
  10
-181.80518956869864
+181.80518956869867
  20
 26.165550802294977
  30
 0.0
  11
-189.29976929666338
+189.2997692966634
  21
 30.167009645665704
  31
@@ -3225,13 +3449,13 @@ LINE
   8
 0
  10
-189.29976929666338
+189.2997692966634
  20
 30.167009645665704
  30
 0.0
  11
-189.06427590643486
+189.0642759064349
  21
 30.608079779724527
  31
@@ -3243,13 +3467,13 @@ LINE
   8
 0
  10
-225.99692859131997
+225.99692859132
  20
 56.03533721157341
  30
 0.0
  11
-221.99897619710666
+221.99897619710669
  21
 56.03533721157341
  31
@@ -3261,13 +3485,13 @@ LINE
   8
 0
  10
-221.99897619710666
+221.99897619710669
  20
 56.03533721157341
  30
 0.0
  11
-221.99897619710666
+221.99897619710669
  21
 48.03943242314682
  31
@@ -3279,13 +3503,13 @@ LINE
   8
 0
  10
-221.99897619710666
+221.99897619710669
  20
 48.03943242314682
  30
 0.0
  11
-225.99692859131997
+225.99692859132
  21
 48.03943242314682
  31
@@ -3297,6 +3521,60 @@ LINE
   8
 0
  10
+224.50000000000003
+ 20
+72.69790866666666
+ 30
+0.0
+ 11
+221.50000000000003
+ 21
+72.69790866666666
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.50000000000003
+ 20
+72.69790866666666
+ 30
+0.0
+ 11
+221.50000000000003
+ 21
+68.36457533333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.50000000000003
+ 20
+68.36457533333333
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+68.36457533333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
 264.2954545454545
  20
 153.28124200000002
@@ -3375,7 +3653,7 @@ LINE
  30
 0.0
  11
-245.7045454545454
+245.70454545454547
  21
 153.281242
  31
@@ -3387,13 +3665,13 @@ LINE
   8
 0
  10
-245.7045454545454
+245.70454545454547
  20
 153.281242
  30
 0.0
  11
-245.7045454545454
+245.70454545454547
  21
 153.781242
  31
@@ -3405,7 +3683,7 @@ LINE
   8
 0
  10
-245.7045454545454
+245.70454545454547
  20
 153.781242
  30
@@ -3441,13 +3719,13 @@ LINE
   8
 0
  10
-248.0
+248.00000000000006
  20
 97.096242
  30
 0.0
  11
-248.0
+248.00000000000006
  21
 109.96624200000001
  31
@@ -3459,13 +3737,13 @@ LINE
   8
 0
  10
-248.0
+248.00000000000006
  20
 109.96624200000001
  30
 0.0
  11
-225.0
+225.00000000000003
  21
 109.966242
  31
@@ -3477,13 +3755,13 @@ LINE
   8
 0
  10
-225.0
+225.00000000000003
  20
 109.966242
  30
 0.0
  11
-225.0
+225.00000000000003
  21
 97.096242
  31
@@ -3495,13 +3773,13 @@ LINE
   8
 0
  10
-225.0
+225.00000000000003
  20
 97.096242
  30
 0.0
  11
-248.0
+248.00000000000006
  21
 97.096242
  31
@@ -3603,13 +3881,13 @@ LINE
   8
 0
  10
-245.45454545454544
+245.45454545454547
  20
 89.531242
  30
 0.0
  11
-250.45454545454544
+250.45454545454547
  21
 89.531242
  31
@@ -3621,13 +3899,13 @@ LINE
   8
 0
  10
-250.45454545454544
+250.45454545454547
  20
 89.531242
  30
 0.0
  11
-245.45454545454544
+245.45454545454547
  21
 94.53124199999999
  31
@@ -3639,13 +3917,13 @@ LINE
   8
 0
  10
-245.45454545454544
+245.45454545454547
  20
 94.53124199999999
  30
 0.0
  11
-232.72727272727272
+232.72727272727275
  21
 94.53124199999999
  31
@@ -3657,13 +3935,13 @@ LINE
   8
 0
  10
-232.72727272727272
+232.72727272727275
  20
 94.53124199999999
  30
 0.0
  11
-227.72727272727272
+227.72727272727275
  21
 89.531242
  31
@@ -3675,13 +3953,13 @@ LINE
   8
 0
  10
-227.72727272727272
+227.72727272727275
  20
 89.531242
  30
 0.0
  11
-232.72727272727272
+232.72727272727275
  21
 89.531242
  31
@@ -3693,15 +3971,15 @@ LINE
   8
 0
  10
-59.99999999999999
+285.25000000000006
  20
-207.3645753333333
+189.94790866666668
  30
 0.0
  11
-66.66666666666666
+285.25000000000006
  21
-207.3645753333333
+185.11457533333333
  31
 0.0
   0
@@ -3711,15 +3989,15 @@ LINE
   8
 0
  10
-66.66666666666666
+285.25000000000006
  20
-207.3645753333333
+185.11457533333333
  30
 0.0
  11
-66.66666666666667
+285.75
  21
-220.69790866666668
+185.11457533333333
  31
 0.0
   0
@@ -3729,15 +4007,15 @@ LINE
   8
 0
  10
-66.66666666666667
+285.75
  20
-220.69790866666668
+185.11457533333333
  30
 0.0
  11
-60.00000000000001
+285.75
  21
-220.69790866666668
+189.94790866666668
  31
 0.0
   0
@@ -3747,13 +4025,139 @@ LINE
   8
 0
  10
-25.704545454545457
+285.75
+ 20
+189.94790866666668
+ 30
+0.0
+ 11
+285.25000000000006
+ 21
+189.94790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+60.00000000000002
+ 20
+207.3645753333333
+ 30
+0.0
+ 11
+66.66666666666669
+ 21
+207.3645753333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+66.66666666666669
+ 20
+207.3645753333333
+ 30
+0.0
+ 11
+66.66666666666671
+ 21
+220.69790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+66.66666666666671
+ 20
+220.69790866666668
+ 30
+0.0
+ 11
+60.000000000000036
+ 21
+220.69790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+65.50000000000003
+ 20
+185.36457533333336
+ 30
+0.0
+ 11
+68.50000000000004
+ 21
+185.36457533333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000004
+ 20
+185.36457533333336
+ 30
+0.0
+ 11
+68.50000000000004
+ 21
+189.69790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000004
+ 20
+189.69790866666668
+ 30
+0.0
+ 11
+65.50000000000003
+ 21
+189.69790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+25.704545454545485
  20
 117.78124200000002
  30
 0.0
  11
-12.477272727272721
+12.47727272727275
  21
 117.78124200000003
  31
@@ -3765,13 +4169,13 @@ LINE
   8
 0
  10
-12.477272727272721
+12.47727272727275
  20
 117.78124200000003
  30
 0.0
  11
-12.477272727272721
+12.47727272727275
  21
 117.28124200000003
  31
@@ -3783,13 +4187,13 @@ LINE
   8
 0
  10
-12.477272727272721
+12.47727272727275
  20
 117.28124200000003
  30
 0.0
  11
-25.704545454545457
+25.704545454545485
  21
 117.281242
  31
@@ -3801,13 +4205,13 @@ LINE
   8
 0
  10
-25.704545454545457
+25.704545454545485
  20
 117.281242
  30
 0.0
  11
-25.704545454545457
+25.704545454545485
  21
 117.78124200000002
  31
@@ -3819,13 +4223,13 @@ LINE
   8
 0
  10
-57.52272727272727
+57.5227272727273
  20
 117.78124200000002
  30
 0.0
  11
-44.29545454545455
+44.29545454545458
  21
 117.78124200000002
  31
@@ -3837,13 +4241,13 @@ LINE
   8
 0
  10
-44.29545454545455
+44.29545454545458
  20
 117.78124200000002
  30
 0.0
  11
-44.29545454545455
+44.29545454545458
  21
 117.281242
  31
@@ -3855,13 +4259,13 @@ LINE
   8
 0
  10
-44.29545454545455
+44.29545454545458
  20
 117.281242
  30
 0.0
  11
-57.52272727272727
+57.5227272727273
  21
 117.281242
  31
@@ -3873,13 +4277,13 @@ LINE
   8
 0
  10
-57.52272727272727
+57.5227272727273
  20
 117.281242
  30
 0.0
  11
-57.52272727272727
+57.5227272727273
  21
 117.78124200000002
  31
@@ -3891,13 +4295,13 @@ LINE
   8
 0
  10
-42.0
+42.00000000000003
  20
 173.96624200000002
  30
 0.0
  11
-42.0
+42.00000000000003
  21
 161.09624200000005
  31
@@ -3909,13 +4313,13 @@ LINE
   8
 0
  10
-42.0
+42.00000000000003
  20
 161.09624200000005
  30
 0.0
  11
-65.0
+65.00000000000004
  21
 161.09624200000002
  31
@@ -3927,13 +4331,13 @@ LINE
   8
 0
  10
-65.0
+65.00000000000004
  20
 161.09624200000002
  30
 0.0
  11
-65.0
+65.00000000000004
  21
 173.96624200000002
  31
@@ -3945,13 +4349,13 @@ LINE
   8
 0
  10
-65.0
+65.00000000000004
  20
 173.96624200000002
  30
 0.0
  11
-42.0
+42.00000000000003
  21
 173.96624200000002
  31
@@ -3963,13 +4367,13 @@ LINE
   8
 0
  10
-12.72727272727272
+12.727272727272748
  20
 181.53124200000005
  30
 0.0
  11
-7.72727272727272
+7.727272727272749
  21
 181.53124200000005
  31
@@ -3981,13 +4385,13 @@ LINE
   8
 0
  10
-7.72727272727272
+7.727272727272749
  20
 181.53124200000005
  30
 0.0
  11
-12.72727272727272
+12.727272727272748
  21
 176.53124200000005
  31
@@ -3999,13 +4403,13 @@ LINE
   8
 0
  10
-12.72727272727272
+12.727272727272748
  20
 176.53124200000005
  30
 0.0
  11
-25.454545454545457
+25.454545454545485
  21
 176.53124200000002
  31
@@ -4017,13 +4421,13 @@ LINE
   8
 0
  10
-25.454545454545457
+25.454545454545485
  20
 176.53124200000002
  30
 0.0
  11
-30.454545454545457
+30.454545454545485
  21
 181.53124200000002
  31
@@ -4035,13 +4439,13 @@ LINE
   8
 0
  10
-30.454545454545457
+30.454545454545485
  20
 181.53124200000002
  30
 0.0
  11
-25.454545454545457
+25.454545454545485
  21
 181.53124200000002
  31
@@ -4053,13 +4457,13 @@ LINE
   8
 0
  10
-44.54545454545454
+44.54545454545457
  20
 181.53124200000002
  30
 0.0
  11
-39.54545454545454
+39.54545454545457
  21
 181.53124200000002
  31
@@ -4071,13 +4475,13 @@ LINE
   8
 0
  10
-39.54545454545454
+39.54545454545457
  20
 181.53124200000002
  30
 0.0
  11
-44.54545454545454
+44.54545454545457
  21
 176.53124200000002
  31
@@ -4089,13 +4493,13 @@ LINE
   8
 0
  10
-44.54545454545454
+44.54545454545457
  20
 176.53124200000002
  30
 0.0
  11
-57.27272727272726
+57.27272727272729
  21
 176.53124200000002
  31
@@ -4107,13 +4511,13 @@ LINE
   8
 0
  10
-57.27272727272726
+57.27272727272729
  20
 176.53124200000002
  30
 0.0
  11
-62.27272727272726
+62.27272727272729
  21
 181.53124200000002
  31
@@ -4125,13 +4529,13 @@ LINE
   8
 0
  10
-62.27272727272726
+62.27272727272729
  20
 181.53124200000002
  30
 0.0
  11
-57.27272727272726
+57.27272727272729
  21
 181.53124200000002
  31
@@ -4143,6 +4547,78 @@ LINE
   8
 0
  10
+4.750000000000001
+ 20
+68.11457533333336
+ 30
+0.0
+ 11
+4.750000000000001
+ 21
+72.94790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.750000000000001
+ 20
+72.94790866666668
+ 30
+0.0
+ 11
+4.25
+ 21
+72.94790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.25
+ 20
+72.94790866666668
+ 30
+0.0
+ 11
+4.25
+ 21
+68.11457533333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.25
+ 20
+68.11457533333336
+ 30
+0.0
+ 11
+4.750000000000001
+ 21
+68.11457533333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
 300.0
  20
 129.031242
@@ -4281,6 +4757,986 @@ LINE
  31
 0.0
   0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+330.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+354.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+354.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+330.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+354.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+330.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+330.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+414.0
+ 20
+98.531242
+ 30
+0.0
+ 11
+354.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+414.0
+ 20
+98.531242
+ 30
+0.0
+ 11
+414.0
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+414.0
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+414.0
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+438.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+438.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+414.0
+ 20
+159.531242
+ 30
+0.0
+ 11
+438.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+438.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+498.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+498.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+320.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+330.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+320.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+320.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+330.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+320.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+331.40000000000003
+ 20
+108.531242
+ 30
+0.0
+ 11
+332.6000000000001
+ 21
+108.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.6000000000001
+ 20
+108.531242
+ 30
+0.0
+ 11
+332.6000000000001
+ 21
+149.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.6000000000001
+ 20
+149.53124200000002
+ 30
+0.0
+ 11
+331.40000000000003
+ 21
+149.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+331.40000000000003
+ 20
+149.53124200000002
+ 30
+0.0
+ 11
+331.40000000000003
+ 21
+108.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+351.4
+ 20
+109.031242
+ 30
+0.0
+ 11
+352.6000000000001
+ 21
+109.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+352.6000000000001
+ 20
+109.031242
+ 30
+0.0
+ 11
+352.6000000000001
+ 21
+139.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+352.6000000000001
+ 20
+139.031242
+ 30
+0.0
+ 11
+351.4
+ 21
+139.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+351.4
+ 20
+139.031242
+ 30
+0.0
+ 11
+351.4
+ 21
+109.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+362.00000000000006
+ 20
+150.031242
+ 30
+0.0
+ 11
+362.00000000000006
+ 21
+132.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+362.00000000000006
+ 20
+132.03124200000002
+ 30
+0.0
+ 11
+392.00000000000006
+ 21
+132.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+392.00000000000006
+ 20
+132.03124200000002
+ 30
+0.0
+ 11
+392.00000000000006
+ 21
+150.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+392.00000000000006
+ 20
+150.031242
+ 30
+0.0
+ 11
+362.00000000000006
+ 21
+150.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+435.40000000000003
+ 20
+108.531242
+ 30
+0.0
+ 11
+436.6000000000001
+ 21
+108.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+436.6000000000001
+ 20
+108.531242
+ 30
+0.0
+ 11
+436.6000000000001
+ 21
+149.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+436.6000000000001
+ 20
+149.53124200000002
+ 30
+0.0
+ 11
+435.40000000000003
+ 21
+149.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+435.40000000000003
+ 20
+149.53124200000002
+ 30
+0.0
+ 11
+435.40000000000003
+ 21
+108.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.4
+ 20
+109.031242
+ 30
+0.0
+ 11
+416.6000000000001
+ 21
+109.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+416.6000000000001
+ 20
+109.031242
+ 30
+0.0
+ 11
+416.6000000000001
+ 21
+139.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+416.6000000000001
+ 20
+139.031242
+ 30
+0.0
+ 11
+415.4
+ 21
+139.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.4
+ 20
+139.031242
+ 30
+0.0
+ 11
+415.4
+ 21
+109.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+453.00000000000006
+ 20
+112.531242
+ 30
+0.0
+ 11
+453.00000000000006
+ 21
+105.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+453.00000000000006
+ 20
+105.531242
+ 30
+0.0
+ 11
+473.00000000000006
+ 21
+105.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+473.00000000000006
+ 20
+105.531242
+ 30
+0.0
+ 11
+473.00000000000006
+ 21
+112.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+473.00000000000006
+ 20
+112.531242
+ 30
+0.0
+ 11
+453.00000000000006
+ 21
+112.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.25000000000006
+ 20
+120.9630601818182
+ 30
+0.0
+ 11
+490.25000000000006
+ 21
+109.3721510909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.25000000000006
+ 20
+109.3721510909091
+ 30
+0.0
+ 11
+490.75000000000006
+ 21
+109.3721510909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.75000000000006
+ 20
+109.3721510909091
+ 30
+0.0
+ 11
+490.75000000000006
+ 21
+120.9630601818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.75000000000006
+ 20
+120.9630601818182
+ 30
+0.0
+ 11
+490.25000000000006
+ 21
+120.9630601818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.25000000000006
+ 20
+148.69033290909093
+ 30
+0.0
+ 11
+490.25000000000006
+ 21
+137.09942381818183
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.25000000000006
+ 20
+137.09942381818183
+ 30
+0.0
+ 11
+490.75000000000006
+ 21
+137.09942381818183
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.75000000000006
+ 20
+137.09942381818183
+ 30
+0.0
+ 11
+490.75000000000006
+ 21
+148.69033290909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.75000000000006
+ 20
+148.69033290909093
+ 30
+0.0
+ 11
+490.25000000000006
+ 21
+148.69033290909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+322.5
+ 20
+109.6221510909091
+ 30
+0.0
+ 11
+327.5
+ 21
+109.6221510909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.5
+ 20
+109.6221510909091
+ 30
+0.0
+ 11
+327.5
+ 21
+120.7130601818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.5
+ 20
+120.7130601818182
+ 30
+0.0
+ 11
+322.5
+ 21
+120.7130601818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+322.5
+ 20
+137.34942381818186
+ 30
+0.0
+ 11
+327.5
+ 21
+137.34942381818186
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.5
+ 20
+137.34942381818186
+ 30
+0.0
+ 11
+327.5
+ 21
+148.44033290909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.5
+ 20
+148.44033290909093
+ 30
+0.0
+ 11
+322.5
+ 21
+148.44033290909093
+ 31
+0.0
+  0
 ENDSEC
   0
 EOF
diff --git a/rocolib/output/PaddleboatWithCamera/graph-lasercutter.svg b/rocolib/output/PaddleboatWithCamera/graph-lasercutter.svg
index ff0490ee00a1f2fa201c94a4b212574738001b54..ff1c9cedd43fee350c3a66dc517752f0e95cae63 100644
--- a/rocolib/output/PaddleboatWithCamera/graph-lasercutter.svg
+++ b/rocolib/output/PaddleboatWithCamera/graph-lasercutter.svg
@@ -1,180 +1,206 @@
 <?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="234.031242mm" version="1.1" viewBox="0.000000 0.000000 310.000000 234.031242" width="310.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="234.031242mm" version="1.1" viewBox="0.000000 0.000000 498.000000 234.031242" width="498.000000mm">
   <defs/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.99999999999994" x2="179.99999999999994" y1="64.03124199999999" y2="194.03124200000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999996" x2="109.99999999999996" y1="64.03124199999999" y2="194.03124200000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="144.99999999999997" x2="109.99999999999996" y1="64.03124199999999" y2="64.03124199999999"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.99999999999994" x2="144.99999999999997" y1="64.03124199999999" y2="64.03124199999999"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="144.99999999999997" x2="109.99999999999996" y1="-3.7432849353535863e-07" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="112.32105756343545" x2="91.16052878171769" y1="17.44773491586702" y2="28.745631275293622"/>
-  <line stroke="#000000" x1="144.99999999999997" x2="112.32105756343545" y1="-3.743284651136492e-07" y2="17.44773491586702"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999996" x2="91.16052878171769" y1="64.03124199999999" y2="28.745631275293622"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999996" x2="69.99999999999996" y1="64.03124199999999" y2="40.04352763472023"/>
-  <line stroke="#000000" x1="91.16052878171769" x2="69.99999999999996" y1="28.745631275293608" y2="40.04352763472023"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="69.99999999999996" x2="69.99999999999996" y1="64.031242" y2="40.04352763472023"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999996" x2="69.99999999999996" y1="64.03124199999999" y2="64.031242"/>
-  <line stroke="#000000" x1="62.00409521157335" x2="69.99999999999996" y1="64.031242" y2="64.031242"/>
-  <line stroke="#000000" x1="62.004095211573336" x2="62.00409521157335" y1="40.04352763472023" y2="64.031242"/>
-  <line stroke="#000000" x1="69.99999999999994" x2="62.004095211573336" y1="40.04352763472023" y2="40.04352763472023"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="110.00000000000001" y1="194.031242" y2="194.031242"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="110.0" y1="234.031242" y2="194.031242"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.0" y1="234.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="110.00000000000001" y1="234.031242" y2="234.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="110.00000000000001" x2="110.0" y1="234.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="149.99999999999997" x2="145.0" y1="234.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="110.0" x2="149.99999999999997" y1="234.031242" y2="234.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="110.0" x2="145.0" y1="194.031242" y2="194.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="145.0" x2="179.99999999999997" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="140.00000000000003" x2="179.99999999999997" y1="234.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="145.0" x2="140.00000000000003" y1="234.031242" y2="234.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.99999999999997" x2="179.99999999999997" y1="194.031242" y2="234.031242"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.99999999999997" x2="219.99999999999997" y1="194.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="179.99999999999997" x2="219.99999999999997" y1="234.031242" y2="234.031242"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.99999999999997" x2="219.99999999999997" y1="194.031242" y2="234.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.99999999999997" x2="219.99999999999997" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="233.33333333333334" x2="220.0" y1="194.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.99999999999997" x2="179.99999999999997" y1="64.03124199999999" y2="194.03124200000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999999" x2="109.99999999999999" y1="64.03124199999999" y2="194.03124200000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="145.0" x2="109.99999999999999" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.99999999999997" x2="145.0" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="145.0" x2="109.99999999999999" y1="-3.7432849353535863e-07" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="112.32105756343546" x2="91.16052878171773" y1="17.44773491586702" y2="28.745631275293622"/>
+  <line stroke="#000000" x1="145.0" x2="112.32105756343546" y1="-3.743284651136492e-07" y2="17.44773491586702"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999999" x2="91.16052878171773" y1="64.03124199999999" y2="28.745631275293622"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999999" x2="69.99999999999999" y1="64.03124199999999" y2="40.04352763472023"/>
+  <line stroke="#000000" x1="91.16052878171773" x2="69.99999999999999" y1="28.745631275293608" y2="40.04352763472023"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="69.99999999999999" x2="69.99999999999999" y1="64.031242" y2="40.04352763472023"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999999" x2="69.99999999999999" y1="64.03124199999999" y2="64.031242"/>
+  <line stroke="#000000" x1="62.00409521157338" x2="69.99999999999999" y1="64.031242" y2="64.031242"/>
+  <line stroke="#000000" x1="62.004095211573365" x2="62.00409521157338" y1="40.04352763472023" y2="64.031242"/>
+  <line stroke="#000000" x1="69.99999999999997" x2="62.004095211573365" y1="40.04352763472023" y2="40.04352763472023"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000004" x2="110.00000000000004" y1="194.031242" y2="194.031242"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000004" x2="110.00000000000003" y1="234.031242" y2="194.031242"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000004" x2="70.00000000000003" y1="234.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="110.00000000000004" y1="234.031242" y2="234.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="110.00000000000004" x2="110.00000000000003" y1="234.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="150.0" x2="145.00000000000003" y1="234.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="110.00000000000003" x2="150.0" y1="234.031242" y2="234.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="110.00000000000003" x2="145.00000000000003" y1="194.031242" y2="194.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="145.00000000000003" x2="180.0" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="140.00000000000003" x2="180.0" y1="234.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="145.00000000000003" x2="140.00000000000003" y1="234.031242" y2="234.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="180.0" x2="180.0" y1="194.031242" y2="234.031242"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="180.0" x2="220.00000000000003" y1="194.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="180.0" x2="220.00000000000003" y1="234.031242" y2="234.031242"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="220.00000000000003" y1="194.031242" y2="234.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="180.0" x2="220.00000000000003" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="233.33333333333334" x2="220.00000000000003" y1="194.03124200000002" y2="194.03124200000002"/>
   <line stroke="#000000" x1="233.33333333333334" x2="233.33333333333334" y1="234.031242" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="220.0" x2="233.33333333333334" y1="234.031242" y2="234.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="180.0" y1="64.031242" y2="64.03124199999999"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="180.0" y1="40.04352763472023" y2="64.03124199999999"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="220.0" y1="40.04352763472023" y2="64.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="198.83947121828228" y1="40.043527634720235" y2="28.745631275293622"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="198.83947121828228" x2="180.0" y1="28.745631275293622" y2="64.03124199999999"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="145.00000000000003" x2="180.0" y1="-3.743284651136492e-07" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="177.6789424365645" x2="145.00000000000003" y1="17.44773491586702" y2="-3.743284651136492e-07"/>
-  <line stroke="#000000" x1="198.83947121828228" x2="177.6789424365645" y1="28.745631275293622" y2="17.44773491586702"/>
-  <line stroke="#000000" x1="227.99590478842663" x2="220.00000000000003" y1="40.04352763472023" y2="40.04352763472023"/>
-  <line stroke="#000000" x1="227.99590478842663" x2="227.99590478842663" y1="64.031242" y2="40.04352763472023"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="227.99590478842663" y1="64.031242" y2="64.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="77.031242" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="233.33333333333334" y1="234.031242" y2="234.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="180.00000000000006" y1="64.031242" y2="64.03124199999999"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="180.00000000000006" y1="40.04352763472023" y2="64.03124199999999"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="220.00000000000003" y1="40.04352763472023" y2="64.031242"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="198.8394712182823" y1="40.043527634720235" y2="28.745631275293622"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="198.8394712182823" x2="180.00000000000006" y1="28.745631275293622" y2="64.03124199999999"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="145.00000000000006" x2="180.00000000000006" y1="-3.743284651136492e-07" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="177.67894243656454" x2="145.00000000000006" y1="17.44773491586702" y2="-3.743284651136492e-07"/>
+  <line stroke="#000000" x1="198.83947121828228" x2="177.67894243656454" y1="28.745631275293622" y2="17.44773491586702"/>
+  <line stroke="#000000" x1="227.99590478842666" x2="220.00000000000006" y1="40.04352763472023" y2="40.04352763472023"/>
+  <line stroke="#000000" x1="227.99590478842666" x2="227.99590478842666" y1="64.031242" y2="40.04352763472023"/>
+  <line stroke="#000000" x1="220.00000000000006" x2="227.99590478842666" y1="64.031242" y2="64.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="220.00000000000003" y1="64.03124199999999" y2="77.031242"/>
   <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="90.03124199999999" y2="77.031242"/>
   <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="103.031242" y2="90.03124199999999"/>
-  <line stroke="#000000" x1="220.0" x2="220.00000000000003" y1="116.03124199999999" y2="103.031242"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="129.03124199999996" y2="116.03124199999999"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.0" x2="220.0" y1="142.031242" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="155.03124199999996" y2="142.031242"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="168.031242" y2="155.03124199999996"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="181.031242" y2="168.031242"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="194.031242" y2="181.031242"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="116.03124199999999" y2="103.031242"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="129.03124199999996" y2="116.03124199999999"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="220.00000000000003" y1="142.031242" y2="129.03124199999996"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="155.03124199999996" y2="142.031242"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="168.031242" y2="155.03124199999996"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="181.031242" y2="168.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="220.00000000000003" y1="181.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="194.031242" y2="194.031242"/>
   <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="226.00000000000003" x2="220.00000000000003" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="226.00000000000003" x2="226.00000000000003" y1="77.031242" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="226.00000000000003" y1="77.031242" y2="77.031242"/>
   <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="142.03124200000002" y2="129.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="290.00000000000006" x2="220.0" y1="142.03124200000002" y2="142.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="290.00000000000006" x2="220.0" y1="129.031242" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="290.0" x2="290.0" y1="161.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="219.99999999999997" x2="290.0" y1="161.031242" y2="161.03124200000002"/>
-  <line stroke="#000000" x1="219.99999999999997" x2="219.99999999999997" y1="142.031242" y2="161.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="290.00000000000006" x2="220.00000000000003" y1="142.03124200000002" y2="142.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="290.00000000000006" x2="220.00000000000003" y1="129.031242" y2="129.03124199999996"/>
+  <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="161.03124200000002" y2="142.03124200000002"/>
+  <line stroke="#000000" x1="220.0" x2="290.00000000000006" y1="161.031242" y2="161.03124200000002"/>
+  <line stroke="#000000" x1="220.0" x2="220.0" y1="142.031242" y2="161.031242"/>
   <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="129.031242" y2="110.031242"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="110.03124199999999" y2="129.03124199999996"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="290.00000000000006" x2="220.0" y1="110.031242" y2="110.03124199999999"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="110.03124199999999" y2="129.03124199999996"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="290.00000000000006" x2="220.00000000000003" y1="110.031242" y2="110.03124199999999"/>
   <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="110.031242" y2="97.03124200000002"/>
-  <line stroke="#000000" x1="220.0" x2="220.0" y1="97.031242" y2="110.03124199999999"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.0" x2="290.00000000000006" y1="97.031242" y2="97.03124200000002"/>
-  <line stroke="#000000" x1="219.99999999999997" x2="219.99999999999997" y1="87.031242" y2="97.031242"/>
-  <line stroke="#000000" x1="290.0" x2="219.99999999999997" y1="87.03124200000002" y2="87.031242"/>
-  <line stroke="#000000" x1="290.0" x2="290.0" y1="97.03124200000002" y2="87.03124200000002"/>
-  <line stroke="#000000" x1="56.66666666666668" x2="70.00000000000001" y1="234.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="56.666666666666664" x2="56.66666666666668" y1="194.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="70.0" x2="56.666666666666664" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="181.03124200000002" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="70.0" x2="70.00000000000001" y1="168.03124200000002" y2="181.03124200000002"/>
-  <line stroke="#000000" x1="70.0" x2="70.0" y1="155.031242" y2="168.03124200000002"/>
-  <line stroke="#000000" x1="70.0" x2="70.0" y1="142.03124200000002" y2="155.031242"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="69.99999999999999" x2="70.0" y1="129.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="69.99999999999999" x2="69.99999999999999" y1="116.03124200000002" y2="129.03124200000002"/>
-  <line stroke="#000000" x1="69.99999999999999" x2="69.99999999999999" y1="103.03124200000002" y2="116.03124200000002"/>
-  <line stroke="#000000" x1="69.99999999999999" x2="69.99999999999999" y1="90.031242" y2="103.03124200000002"/>
-  <line stroke="#000000" x1="69.99999999999997" x2="69.99999999999999" y1="77.03124200000002" y2="90.031242"/>
-  <line stroke="#000000" x1="69.99999999999997" x2="69.99999999999997" y1="64.03124200000003" y2="77.03124200000002"/>
-  <line stroke="#000000" x1="69.99999999999997" x2="69.99999999999997" y1="64.03124200000003" y2="64.03124200000003"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="194.03124200000002" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="129.03124200000002" y2="142.03124200000005"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="69.99999999999999" y1="129.03124200000002" y2="129.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="70.0" y1="142.03124200000005" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="110.03124200000003" y2="129.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="0.0" y1="110.03124200000002" y2="110.03124200000003"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="129.031242" y2="110.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="142.03124200000005" y2="161.03124200000005"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="161.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="70.00000000000001" y1="161.03124200000005" y2="161.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="161.03124200000005" y2="174.03124200000005"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="174.03124200000002" y2="161.03124200000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="0.0" y1="174.03124200000002" y2="174.03124200000005"/>
-  <line stroke="#000000" x1="70.0" x2="70.0" y1="184.03124200000002" y2="174.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="70.0" y1="184.03124200000002" y2="184.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="174.03124200000005" y2="184.03124200000002"/>
-  <line stroke="#888888" x1="108.43030382152985" x2="100.93572409356511" y1="26.606620936353796" y2="30.608079779724527"/>
-  <line stroke="#888888" x1="100.93572409356511" x2="100.70023070333659" y1="30.608079779724527" y2="30.167009645665704"/>
-  <line stroke="#888888" x1="100.70023070333659" x2="108.19481043130132" y1="30.167009645665704" y2="26.165550802294977"/>
-  <line stroke="#888888" x1="108.19481043130132" x2="108.43030382152985" y1="26.165550802294977" y2="26.606620936353796"/>
-  <line stroke="#888888" x1="64.00307140867999" x2="68.0010238028933" y1="48.03943242314682" y2="48.03943242314682"/>
-  <line stroke="#888888" x1="68.0010238028933" x2="68.0010238028933" y1="48.03943242314682" y2="56.03533721157341"/>
-  <line stroke="#888888" x1="68.0010238028933" x2="64.00307140867999" y1="56.03533721157341" y2="56.03533721157343"/>
-  <line stroke="#888888" x1="123.08333333333333" x2="136.91666666666663" y1="223.781242" y2="223.781242"/>
-  <line stroke="#888888" x1="136.91666666666663" x2="136.91666666666663" y1="223.781242" y2="224.281242"/>
-  <line stroke="#888888" x1="136.91666666666663" x2="123.08333333333333" y1="224.281242" y2="224.281242"/>
-  <line stroke="#888888" x1="123.08333333333333" x2="123.08333333333333" y1="224.281242" y2="223.781242"/>
-  <line stroke="#888888" x1="153.08333333333334" x2="166.91666666666666" y1="223.781242" y2="223.781242"/>
-  <line stroke="#888888" x1="166.91666666666666" x2="166.91666666666666" y1="223.781242" y2="224.281242"/>
-  <line stroke="#888888" x1="166.91666666666666" x2="153.08333333333334" y1="224.281242" y2="224.281242"/>
-  <line stroke="#888888" x1="153.08333333333334" x2="153.08333333333334" y1="224.281242" y2="223.781242"/>
-  <line stroke="#888888" x1="229.99999999999997" x2="223.33333333333334" y1="220.69790866666668" y2="220.69790866666668"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="97.031242" y2="110.03124199999999"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="290.00000000000006" y1="97.031242" y2="97.03124200000002"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="87.031242" y2="97.031242"/>
+  <line stroke="#000000" x1="290.00000000000006" x2="220.00000000000003" y1="87.03124200000002" y2="87.031242"/>
+  <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="97.03124200000002" y2="87.03124200000002"/>
+  <line stroke="#000000" x1="220.00000000000003" x2="290.00000000000006" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="290.00000000000006" x2="220.00000000000003" y1="181.031242" y2="181.031242"/>
+  <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="194.031242" y2="181.031242"/>
+  <line stroke="#000000" x1="56.66666666666671" x2="70.00000000000004" y1="234.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="56.66666666666669" x2="56.66666666666671" y1="194.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="70.00000000000003" x2="56.66666666666669" y1="194.031242" y2="194.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000004" x2="70.00000000000004" y1="194.03124200000002" y2="181.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000004" y1="168.03124200000002" y2="181.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000003" y1="155.031242" y2="168.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000003" y1="142.03124200000002" y2="155.031242"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000003" y1="129.03124200000002" y2="142.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="116.03124200000002" y2="129.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="103.03124200000002" y2="116.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="90.031242" y2="103.03124200000002"/>
+  <line stroke="#000000" x1="70.0" x2="70.00000000000001" y1="77.03124200000002" y2="90.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.0" x2="70.0" y1="77.03124200000002" y2="64.03124200000003"/>
+  <line stroke="#000000" x1="70.0" x2="70.0" y1="64.03124200000003" y2="64.03124200000003"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="70.00000000000004" y1="194.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="64.00000000000004" x2="70.00000000000004" y1="194.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="64.00000000000004" x2="64.00000000000004" y1="181.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="64.00000000000004" y1="181.03124200000002" y2="181.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="129.03124200000002" y2="142.03124200000005"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.8421709430404014e-14" x2="70.00000000000001" y1="129.03124200000002" y2="129.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.8421709430404014e-14" x2="70.00000000000003" y1="142.03124200000005" y2="142.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="110.03124200000003" y2="129.03124200000002"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="2.8421709430404014e-14" y1="110.03124200000002" y2="110.03124200000003"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="70.00000000000004" y1="129.031242" y2="110.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="142.03124200000005" y2="161.03124200000005"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="70.00000000000004" y1="161.03124200000002" y2="142.03124200000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.8421709430404014e-14" x2="70.00000000000004" y1="161.03124200000005" y2="161.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="161.03124200000005" y2="174.03124200000005"/>
+  <line stroke="#000000" x1="70.00000000000004" x2="70.00000000000004" y1="174.03124200000002" y2="161.03124200000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000004" x2="2.8421709430404014e-14" y1="174.03124200000002" y2="174.03124200000005"/>
+  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000003" y1="184.03124200000002" y2="174.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="70.00000000000003" y1="184.03124200000002" y2="184.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="174.03124200000005" y2="184.03124200000002"/>
+  <line stroke="#000000" x1="0.0" x2="69.99999999999999" y1="77.03124200000003" y2="77.03124200000002"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="64.03124200000003" y2="77.03124200000003"/>
+  <line stroke="#000000" x1="69.99999999999999" x2="0.0" y1="64.031242" y2="64.03124200000003"/>
+  <line stroke="#888888" x1="108.43030382152989" x2="100.93572409356514" y1="26.606620936353796" y2="30.608079779724527"/>
+  <line stroke="#888888" x1="100.93572409356514" x2="100.70023070333662" y1="30.608079779724527" y2="30.167009645665704"/>
+  <line stroke="#888888" x1="100.70023070333662" x2="108.19481043130136" y1="30.167009645665704" y2="26.165550802294977"/>
+  <line stroke="#888888" x1="108.19481043130136" x2="108.43030382152989" y1="26.165550802294977" y2="26.606620936353796"/>
+  <line stroke="#888888" x1="64.00307140868003" x2="68.00102380289331" y1="48.03943242314682" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="68.00102380289331" x2="68.00102380289331" y1="48.03943242314682" y2="56.03533721157341"/>
+  <line stroke="#888888" x1="68.00102380289331" x2="64.00307140868003" y1="56.03533721157341" y2="56.03533721157343"/>
+  <line stroke="#888888" x1="123.08333333333336" x2="136.9166666666667" y1="223.781242" y2="223.781242"/>
+  <line stroke="#888888" x1="136.9166666666667" x2="136.9166666666667" y1="223.781242" y2="224.281242"/>
+  <line stroke="#888888" x1="136.9166666666667" x2="123.08333333333336" y1="224.281242" y2="224.281242"/>
+  <line stroke="#888888" x1="123.08333333333336" x2="123.08333333333336" y1="224.281242" y2="223.781242"/>
+  <line stroke="#888888" x1="153.08333333333337" x2="166.9166666666667" y1="223.781242" y2="223.781242"/>
+  <line stroke="#888888" x1="166.9166666666667" x2="166.9166666666667" y1="223.781242" y2="224.281242"/>
+  <line stroke="#888888" x1="166.9166666666667" x2="153.08333333333337" y1="224.281242" y2="224.281242"/>
+  <line stroke="#888888" x1="153.08333333333337" x2="153.08333333333337" y1="224.281242" y2="223.781242"/>
+  <line stroke="#888888" x1="230.00000000000003" x2="223.33333333333334" y1="220.69790866666668" y2="220.69790866666668"/>
   <line stroke="#888888" x1="223.33333333333334" x2="223.33333333333334" y1="220.69790866666668" y2="207.3645753333333"/>
-  <line stroke="#888888" x1="223.33333333333334" x2="229.99999999999997" y1="207.3645753333333" y2="207.3645753333333"/>
-  <line stroke="#888888" x1="189.06427590643486" x2="181.5696961784701" y1="30.608079779724527" y2="26.60662093635381"/>
-  <line stroke="#888888" x1="181.5696961784701" x2="181.80518956869864" y1="26.60662093635381" y2="26.165550802294977"/>
-  <line stroke="#888888" x1="181.80518956869864" x2="189.29976929666338" y1="26.165550802294977" y2="30.167009645665704"/>
-  <line stroke="#888888" x1="189.29976929666338" x2="189.06427590643486" y1="30.167009645665704" y2="30.608079779724527"/>
-  <line stroke="#888888" x1="225.99692859131997" x2="221.99897619710666" y1="56.03533721157341" y2="56.03533721157341"/>
-  <line stroke="#888888" x1="221.99897619710666" x2="221.99897619710666" y1="56.03533721157341" y2="48.03943242314682"/>
-  <line stroke="#888888" x1="221.99897619710666" x2="225.99692859131997" y1="48.03943242314682" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="223.33333333333334" x2="230.00000000000003" y1="207.3645753333333" y2="207.3645753333333"/>
+  <line stroke="#888888" x1="189.0642759064349" x2="181.56969617847014" y1="30.608079779724527" y2="26.60662093635381"/>
+  <line stroke="#888888" x1="181.56969617847014" x2="181.80518956869867" y1="26.60662093635381" y2="26.165550802294977"/>
+  <line stroke="#888888" x1="181.80518956869867" x2="189.2997692966634" y1="26.165550802294977" y2="30.167009645665704"/>
+  <line stroke="#888888" x1="189.2997692966634" x2="189.0642759064349" y1="30.167009645665704" y2="30.608079779724527"/>
+  <line stroke="#888888" x1="225.99692859132" x2="221.99897619710669" y1="56.03533721157341" y2="56.03533721157341"/>
+  <line stroke="#888888" x1="221.99897619710669" x2="221.99897619710669" y1="56.03533721157341" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="221.99897619710669" x2="225.99692859132" y1="48.03943242314682" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="224.50000000000003" x2="221.50000000000003" y1="72.69790866666666" y2="72.69790866666666"/>
+  <line stroke="#888888" x1="221.50000000000003" x2="221.50000000000003" y1="72.69790866666666" y2="68.36457533333333"/>
+  <line stroke="#888888" x1="221.50000000000003" x2="224.50000000000003" y1="68.36457533333333" y2="68.36457533333333"/>
   <line stroke="#888888" x1="264.2954545454545" x2="277.52272727272725" y1="153.28124200000002" y2="153.28124200000002"/>
   <line stroke="#888888" x1="277.52272727272725" x2="277.52272727272725" y1="153.28124200000002" y2="153.78124200000002"/>
   <line stroke="#888888" x1="277.52272727272725" x2="264.2954545454545" y1="153.78124200000002" y2="153.78124200000002"/>
   <line stroke="#888888" x1="264.2954545454545" x2="264.2954545454545" y1="153.78124200000002" y2="153.28124200000002"/>
-  <line stroke="#888888" x1="232.47727272727272" x2="245.7045454545454" y1="153.281242" y2="153.281242"/>
-  <line stroke="#888888" x1="245.7045454545454" x2="245.7045454545454" y1="153.281242" y2="153.781242"/>
-  <line stroke="#888888" x1="245.7045454545454" x2="232.47727272727272" y1="153.781242" y2="153.781242"/>
+  <line stroke="#888888" x1="232.47727272727272" x2="245.70454545454547" y1="153.281242" y2="153.281242"/>
+  <line stroke="#888888" x1="245.70454545454547" x2="245.70454545454547" y1="153.281242" y2="153.781242"/>
+  <line stroke="#888888" x1="245.70454545454547" x2="232.47727272727272" y1="153.781242" y2="153.781242"/>
   <line stroke="#888888" x1="232.47727272727272" x2="232.47727272727272" y1="153.781242" y2="153.281242"/>
-  <line stroke="#888888" x1="248.0" x2="248.0" y1="97.096242" y2="109.96624200000001"/>
-  <line stroke="#888888" x1="248.0" x2="225.0" y1="109.96624200000001" y2="109.966242"/>
-  <line stroke="#888888" x1="225.0" x2="225.0" y1="109.966242" y2="97.096242"/>
-  <line stroke="#888888" x1="225.0" x2="248.0" y1="97.096242" y2="97.096242"/>
+  <line stroke="#888888" x1="248.00000000000006" x2="248.00000000000006" y1="97.096242" y2="109.96624200000001"/>
+  <line stroke="#888888" x1="248.00000000000006" x2="225.00000000000003" y1="109.96624200000001" y2="109.966242"/>
+  <line stroke="#888888" x1="225.00000000000003" x2="225.00000000000003" y1="109.966242" y2="97.096242"/>
+  <line stroke="#888888" x1="225.00000000000003" x2="248.00000000000006" y1="97.096242" y2="97.096242"/>
   <line stroke="#888888" x1="277.2727272727273" x2="282.27272727272725" y1="89.53124200000002" y2="89.53124200000002"/>
   <line stroke="#888888" x1="282.27272727272725" x2="277.2727272727273" y1="89.53124200000002" y2="94.53124199999999"/>
   <line stroke="#888888" x1="277.2727272727273" x2="264.54545454545456" y1="94.53124199999999" y2="94.53124199999999"/>
   <line stroke="#888888" x1="264.54545454545456" x2="259.5454545454545" y1="94.53124199999999" y2="89.531242"/>
   <line stroke="#888888" x1="259.5454545454545" x2="264.54545454545456" y1="89.531242" y2="89.531242"/>
-  <line stroke="#888888" x1="245.45454545454544" x2="250.45454545454544" y1="89.531242" y2="89.531242"/>
-  <line stroke="#888888" x1="250.45454545454544" x2="245.45454545454544" y1="89.531242" y2="94.53124199999999"/>
-  <line stroke="#888888" x1="245.45454545454544" x2="232.72727272727272" y1="94.53124199999999" y2="94.53124199999999"/>
-  <line stroke="#888888" x1="232.72727272727272" x2="227.72727272727272" y1="94.53124199999999" y2="89.531242"/>
-  <line stroke="#888888" x1="227.72727272727272" x2="232.72727272727272" y1="89.531242" y2="89.531242"/>
-  <line stroke="#888888" x1="59.99999999999999" x2="66.66666666666666" y1="207.3645753333333" y2="207.3645753333333"/>
-  <line stroke="#888888" x1="66.66666666666666" x2="66.66666666666667" y1="207.3645753333333" y2="220.69790866666668"/>
-  <line stroke="#888888" x1="66.66666666666667" x2="60.00000000000001" y1="220.69790866666668" y2="220.69790866666668"/>
-  <line stroke="#888888" x1="25.704545454545457" x2="12.477272727272721" y1="117.78124200000002" y2="117.78124200000003"/>
-  <line stroke="#888888" x1="12.477272727272721" x2="12.477272727272721" y1="117.78124200000003" y2="117.28124200000003"/>
-  <line stroke="#888888" x1="12.477272727272721" x2="25.704545454545457" y1="117.28124200000003" y2="117.281242"/>
-  <line stroke="#888888" x1="25.704545454545457" x2="25.704545454545457" y1="117.281242" y2="117.78124200000002"/>
-  <line stroke="#888888" x1="57.52272727272727" x2="44.29545454545455" y1="117.78124200000002" y2="117.78124200000002"/>
-  <line stroke="#888888" x1="44.29545454545455" x2="44.29545454545455" y1="117.78124200000002" y2="117.281242"/>
-  <line stroke="#888888" x1="44.29545454545455" x2="57.52272727272727" y1="117.281242" y2="117.281242"/>
-  <line stroke="#888888" x1="57.52272727272727" x2="57.52272727272727" y1="117.281242" y2="117.78124200000002"/>
-  <line stroke="#888888" x1="42.0" x2="42.0" y1="173.96624200000002" y2="161.09624200000005"/>
-  <line stroke="#888888" x1="42.0" x2="65.0" y1="161.09624200000005" y2="161.09624200000002"/>
-  <line stroke="#888888" x1="65.0" x2="65.0" y1="161.09624200000002" y2="173.96624200000002"/>
-  <line stroke="#888888" x1="65.0" x2="42.0" y1="173.96624200000002" y2="173.96624200000002"/>
-  <line stroke="#888888" x1="12.72727272727272" x2="7.72727272727272" y1="181.53124200000005" y2="181.53124200000005"/>
-  <line stroke="#888888" x1="7.72727272727272" x2="12.72727272727272" y1="181.53124200000005" y2="176.53124200000005"/>
-  <line stroke="#888888" x1="12.72727272727272" x2="25.454545454545457" y1="176.53124200000005" y2="176.53124200000002"/>
-  <line stroke="#888888" x1="25.454545454545457" x2="30.454545454545457" y1="176.53124200000002" y2="181.53124200000002"/>
-  <line stroke="#888888" x1="30.454545454545457" x2="25.454545454545457" y1="181.53124200000002" y2="181.53124200000002"/>
-  <line stroke="#888888" x1="44.54545454545454" x2="39.54545454545454" y1="181.53124200000002" y2="181.53124200000002"/>
-  <line stroke="#888888" x1="39.54545454545454" x2="44.54545454545454" y1="181.53124200000002" y2="176.53124200000002"/>
-  <line stroke="#888888" x1="44.54545454545454" x2="57.27272727272726" y1="176.53124200000002" y2="176.53124200000002"/>
-  <line stroke="#888888" x1="57.27272727272726" x2="62.27272727272726" y1="176.53124200000002" y2="181.53124200000002"/>
-  <line stroke="#888888" x1="62.27272727272726" x2="57.27272727272726" y1="181.53124200000002" y2="181.53124200000002"/>
+  <line stroke="#888888" x1="245.45454545454547" x2="250.45454545454547" y1="89.531242" y2="89.531242"/>
+  <line stroke="#888888" x1="250.45454545454547" x2="245.45454545454547" y1="89.531242" y2="94.53124199999999"/>
+  <line stroke="#888888" x1="245.45454545454547" x2="232.72727272727275" y1="94.53124199999999" y2="94.53124199999999"/>
+  <line stroke="#888888" x1="232.72727272727275" x2="227.72727272727275" y1="94.53124199999999" y2="89.531242"/>
+  <line stroke="#888888" x1="227.72727272727275" x2="232.72727272727275" y1="89.531242" y2="89.531242"/>
+  <line stroke="#888888" x1="285.25000000000006" x2="285.25000000000006" y1="189.94790866666668" y2="185.11457533333333"/>
+  <line stroke="#888888" x1="285.25000000000006" x2="285.75" y1="185.11457533333333" y2="185.11457533333333"/>
+  <line stroke="#888888" x1="285.75" x2="285.75" y1="185.11457533333333" y2="189.94790866666668"/>
+  <line stroke="#888888" x1="285.75" x2="285.25000000000006" y1="189.94790866666668" y2="189.94790866666668"/>
+  <line stroke="#888888" x1="60.00000000000002" x2="66.66666666666669" y1="207.3645753333333" y2="207.3645753333333"/>
+  <line stroke="#888888" x1="66.66666666666669" x2="66.66666666666671" y1="207.3645753333333" y2="220.69790866666668"/>
+  <line stroke="#888888" x1="66.66666666666671" x2="60.000000000000036" y1="220.69790866666668" y2="220.69790866666668"/>
+  <line stroke="#888888" x1="65.50000000000003" x2="68.50000000000004" y1="185.36457533333336" y2="185.36457533333336"/>
+  <line stroke="#888888" x1="68.50000000000004" x2="68.50000000000004" y1="185.36457533333336" y2="189.69790866666668"/>
+  <line stroke="#888888" x1="68.50000000000004" x2="65.50000000000003" y1="189.69790866666668" y2="189.69790866666668"/>
+  <line stroke="#888888" x1="25.704545454545485" x2="12.47727272727275" y1="117.78124200000002" y2="117.78124200000003"/>
+  <line stroke="#888888" x1="12.47727272727275" x2="12.47727272727275" y1="117.78124200000003" y2="117.28124200000003"/>
+  <line stroke="#888888" x1="12.47727272727275" x2="25.704545454545485" y1="117.28124200000003" y2="117.281242"/>
+  <line stroke="#888888" x1="25.704545454545485" x2="25.704545454545485" y1="117.281242" y2="117.78124200000002"/>
+  <line stroke="#888888" x1="57.5227272727273" x2="44.29545454545458" y1="117.78124200000002" y2="117.78124200000002"/>
+  <line stroke="#888888" x1="44.29545454545458" x2="44.29545454545458" y1="117.78124200000002" y2="117.281242"/>
+  <line stroke="#888888" x1="44.29545454545458" x2="57.5227272727273" y1="117.281242" y2="117.281242"/>
+  <line stroke="#888888" x1="57.5227272727273" x2="57.5227272727273" y1="117.281242" y2="117.78124200000002"/>
+  <line stroke="#888888" x1="42.00000000000003" x2="42.00000000000003" y1="173.96624200000002" y2="161.09624200000005"/>
+  <line stroke="#888888" x1="42.00000000000003" x2="65.00000000000004" y1="161.09624200000005" y2="161.09624200000002"/>
+  <line stroke="#888888" x1="65.00000000000004" x2="65.00000000000004" y1="161.09624200000002" y2="173.96624200000002"/>
+  <line stroke="#888888" x1="65.00000000000004" x2="42.00000000000003" y1="173.96624200000002" y2="173.96624200000002"/>
+  <line stroke="#888888" x1="12.727272727272748" x2="7.727272727272749" y1="181.53124200000005" y2="181.53124200000005"/>
+  <line stroke="#888888" x1="7.727272727272749" x2="12.727272727272748" y1="181.53124200000005" y2="176.53124200000005"/>
+  <line stroke="#888888" x1="12.727272727272748" x2="25.454545454545485" y1="176.53124200000005" y2="176.53124200000002"/>
+  <line stroke="#888888" x1="25.454545454545485" x2="30.454545454545485" y1="176.53124200000002" y2="181.53124200000002"/>
+  <line stroke="#888888" x1="30.454545454545485" x2="25.454545454545485" y1="181.53124200000002" y2="181.53124200000002"/>
+  <line stroke="#888888" x1="44.54545454545457" x2="39.54545454545457" y1="181.53124200000002" y2="181.53124200000002"/>
+  <line stroke="#888888" x1="39.54545454545457" x2="44.54545454545457" y1="181.53124200000002" y2="176.53124200000002"/>
+  <line stroke="#888888" x1="44.54545454545457" x2="57.27272727272729" y1="176.53124200000002" y2="176.53124200000002"/>
+  <line stroke="#888888" x1="57.27272727272729" x2="62.27272727272729" y1="176.53124200000002" y2="181.53124200000002"/>
+  <line stroke="#888888" x1="62.27272727272729" x2="57.27272727272729" y1="181.53124200000002" y2="181.53124200000002"/>
+  <line stroke="#888888" x1="4.750000000000001" x2="4.750000000000001" y1="68.11457533333336" y2="72.94790866666668"/>
+  <line stroke="#888888" x1="4.750000000000001" x2="4.25" y1="72.94790866666668" y2="72.94790866666668"/>
+  <line stroke="#888888" x1="4.25" x2="4.25" y1="72.94790866666668" y2="68.11457533333336"/>
+  <line stroke="#888888" x1="4.25" x2="4.750000000000001" y1="68.11457533333336" y2="68.11457533333336"/>
   <line stroke="#000000" x1="300.0" x2="300.0" y1="129.031242" y2="129.031242"/>
   <line stroke="#000000" x1="300.0" x2="300.0" y1="129.031242" y2="129.031242"/>
   <line stroke="#000000" x1="300.0" x2="300.0" y1="129.031242" y2="129.031242"/>
@@ -183,4 +209,58 @@
   <line stroke="#000000" x1="310.0" x2="310.0" y1="129.031242" y2="129.031242"/>
   <line stroke="#000000" x1="310.0" x2="310.0" y1="129.031242" y2="129.031242"/>
   <line stroke="#000000" x1="310.0" x2="310.0" y1="129.031242" y2="129.031242"/>
+  <line stroke="#000000" x1="354.00000000000006" x2="330.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="354.00000000000006" x2="354.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="330.00000000000006" x2="354.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="330.00000000000006" x2="330.00000000000006" y1="159.531242" y2="98.531242"/>
+  <line stroke="#000000" x1="414.0" x2="354.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="414.0" x2="414.0" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="354.00000000000006" x2="414.0" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="438.00000000000006" x2="414.0" y1="98.531242" y2="98.531242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="438.00000000000006" x2="438.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="414.0" x2="438.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="498.00000000000006" x2="438.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line stroke="#000000" x1="498.00000000000006" x2="498.00000000000006" y1="159.531242" y2="98.531242"/>
+  <line stroke="#000000" x1="438.00000000000006" x2="498.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="320.00000000000006" x2="330.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="320.00000000000006" x2="320.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="330.00000000000006" x2="320.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line stroke="#888888" x1="331.40000000000003" x2="332.6000000000001" y1="108.531242" y2="108.531242"/>
+  <line stroke="#888888" x1="332.6000000000001" x2="332.6000000000001" y1="108.531242" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="332.6000000000001" x2="331.40000000000003" y1="149.53124200000002" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="331.40000000000003" x2="331.40000000000003" y1="149.53124200000002" y2="108.531242"/>
+  <line stroke="#888888" x1="351.4" x2="352.6000000000001" y1="109.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="352.6000000000001" x2="352.6000000000001" y1="109.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="352.6000000000001" x2="351.4" y1="139.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="351.4" x2="351.4" y1="139.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="362.00000000000006" x2="362.00000000000006" y1="150.031242" y2="132.03124200000002"/>
+  <line stroke="#888888" x1="362.00000000000006" x2="392.00000000000006" y1="132.03124200000002" y2="132.03124200000002"/>
+  <line stroke="#888888" x1="392.00000000000006" x2="392.00000000000006" y1="132.03124200000002" y2="150.031242"/>
+  <line stroke="#888888" x1="392.00000000000006" x2="362.00000000000006" y1="150.031242" y2="150.031242"/>
+  <line stroke="#888888" x1="435.40000000000003" x2="436.6000000000001" y1="108.531242" y2="108.531242"/>
+  <line stroke="#888888" x1="436.6000000000001" x2="436.6000000000001" y1="108.531242" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="436.6000000000001" x2="435.40000000000003" y1="149.53124200000002" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="435.40000000000003" x2="435.40000000000003" y1="149.53124200000002" y2="108.531242"/>
+  <line stroke="#888888" x1="415.4" x2="416.6000000000001" y1="109.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="416.6000000000001" x2="416.6000000000001" y1="109.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="416.6000000000001" x2="415.4" y1="139.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="415.4" x2="415.4" y1="139.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="453.00000000000006" x2="453.00000000000006" y1="112.531242" y2="105.531242"/>
+  <line stroke="#888888" x1="453.00000000000006" x2="473.00000000000006" y1="105.531242" y2="105.531242"/>
+  <line stroke="#888888" x1="473.00000000000006" x2="473.00000000000006" y1="105.531242" y2="112.531242"/>
+  <line stroke="#888888" x1="473.00000000000006" x2="453.00000000000006" y1="112.531242" y2="112.531242"/>
+  <line stroke="#888888" x1="490.25000000000006" x2="490.25000000000006" y1="120.9630601818182" y2="109.3721510909091"/>
+  <line stroke="#888888" x1="490.25000000000006" x2="490.75000000000006" y1="109.3721510909091" y2="109.3721510909091"/>
+  <line stroke="#888888" x1="490.75000000000006" x2="490.75000000000006" y1="109.3721510909091" y2="120.9630601818182"/>
+  <line stroke="#888888" x1="490.75000000000006" x2="490.25000000000006" y1="120.9630601818182" y2="120.9630601818182"/>
+  <line stroke="#888888" x1="490.25000000000006" x2="490.25000000000006" y1="148.69033290909093" y2="137.09942381818183"/>
+  <line stroke="#888888" x1="490.25000000000006" x2="490.75000000000006" y1="137.09942381818183" y2="137.09942381818183"/>
+  <line stroke="#888888" x1="490.75000000000006" x2="490.75000000000006" y1="137.09942381818183" y2="148.69033290909093"/>
+  <line stroke="#888888" x1="490.75000000000006" x2="490.25000000000006" y1="148.69033290909093" y2="148.69033290909093"/>
+  <line stroke="#888888" x1="322.5" x2="327.5" y1="109.6221510909091" y2="109.6221510909091"/>
+  <line stroke="#888888" x1="327.5" x2="327.5" y1="109.6221510909091" y2="120.7130601818182"/>
+  <line stroke="#888888" x1="327.5" x2="322.5" y1="120.7130601818182" y2="120.7130601818182"/>
+  <line stroke="#888888" x1="322.5" x2="327.5" y1="137.34942381818186" y2="137.34942381818186"/>
+  <line stroke="#888888" x1="327.5" x2="327.5" y1="137.34942381818186" y2="148.44033290909093"/>
+  <line stroke="#888888" x1="327.5" x2="322.5" y1="148.44033290909093" y2="148.44033290909093"/>
 </svg>
diff --git a/rocolib/output/PaddleboatWithCamera/graph-model.png b/rocolib/output/PaddleboatWithCamera/graph-model.png
index aa6fc9e1e875bd22698d0aad4a51fe466a24f257..e97909932e4017e45fad01fa254d6207108a4a1b 100644
Binary files a/rocolib/output/PaddleboatWithCamera/graph-model.png and b/rocolib/output/PaddleboatWithCamera/graph-model.png differ
diff --git a/rocolib/output/PaddleboatWithCamera/graph-model.stl b/rocolib/output/PaddleboatWithCamera/graph-model.stl
index 1766d37ecc93555038671d165e9bf12520baeb30..b0d44fab4500c09eafca9745967ed64f6b3a5ef4 100644
--- a/rocolib/output/PaddleboatWithCamera/graph-model.stl
+++ b/rocolib/output/PaddleboatWithCamera/graph-model.stl
@@ -365,6 +365,342 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
+vertex -0.0350 0.0520 -0.0400
+vertex -0.0350 0.0650 -0.0400
+vertex 0.0350 0.0650 -0.0400
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0350 0.0650 -0.0400
+vertex 0.0350 0.0520 -0.0400
+vertex -0.0350 0.0520 -0.0400
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0350 -0.0650 -0.0400
+vertex -0.0350 -0.0520 -0.0400
+vertex 0.0350 -0.0520 -0.0400
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0350 -0.0520 -0.0400
+vertex 0.0350 -0.0650 -0.0400
+vertex -0.0350 -0.0650 -0.0400
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0305 0.0000
+vertex -0.0094 -0.0205 0.0000
+vertex -0.0106 -0.0205 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0094 -0.0205 0.0000
+vertex -0.0120 -0.0305 0.0000
+vertex 0.0120 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0305 0.0000
+vertex -0.0106 -0.0205 0.0000
+vertex -0.0106 0.0205 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0305 0.0000
+vertex -0.0106 0.0205 0.0000
+vertex -0.0094 0.0205 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0106 0.0205 0.0000
+vertex -0.0120 0.0305 0.0000
+vertex -0.0120 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0305 0.0000
+vertex -0.0094 0.0205 0.0000
+vertex 0.0120 0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0094 -0.0205 0.0000
+vertex 0.0094 0.0100 0.0000
+vertex -0.0094 0.0205 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0094 -0.0200 0.0000
+vertex 0.0120 -0.0305 0.0000
+vertex 0.0106 -0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0305 0.0000
+vertex 0.0094 -0.0200 0.0000
+vertex -0.0094 -0.0205 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0106 -0.0200 0.0000
+vertex 0.0120 -0.0305 0.0000
+vertex 0.0106 0.0100 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0094 0.0100 0.0000
+vertex 0.0106 0.0100 0.0000
+vertex 0.0120 0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0305 0.0000
+vertex 0.0106 0.0100 0.0000
+vertex 0.0120 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0094 0.0100 0.0000
+vertex 0.0120 0.0305 0.0000
+vertex -0.0094 0.0205 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0094 -0.0200 0.0000
+vertex 0.0094 0.0100 0.0000
+vertex -0.0094 -0.0205 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0305 0.0000
+vertex 0.0120 0.0030 -0.0080
+vertex 0.0120 0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0030 -0.0080
+vertex 0.0120 -0.0305 0.0000
+vertex 0.0120 0.0030 -0.0380
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0305 0.0000
+vertex 0.0120 0.0210 -0.0080
+vertex 0.0120 0.0210 -0.0380
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0210 -0.0080
+vertex 0.0120 0.0305 0.0000
+vertex 0.0120 0.0030 -0.0080
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0030 -0.0380
+vertex 0.0120 -0.0305 -0.0600
+vertex 0.0120 0.0305 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0305 -0.0600
+vertex 0.0120 0.0030 -0.0380
+vertex 0.0120 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0210 -0.0380
+vertex 0.0120 0.0305 -0.0600
+vertex 0.0120 0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0305 -0.0600
+vertex 0.0120 0.0210 -0.0380
+vertex 0.0120 0.0030 -0.0380
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0305 -0.0600
+vertex 0.0094 -0.0200 -0.0600
+vertex 0.0106 -0.0200 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0094 -0.0200 -0.0600
+vertex 0.0120 -0.0305 -0.0600
+vertex -0.0094 -0.0205 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 -0.0305 -0.0600
+vertex 0.0106 -0.0200 -0.0600
+vertex 0.0106 0.0100 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0305 -0.0600
+vertex 0.0106 0.0100 -0.0600
+vertex 0.0094 0.0100 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0106 0.0100 -0.0600
+vertex 0.0120 0.0305 -0.0600
+vertex 0.0120 -0.0305 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0120 0.0305 -0.0600
+vertex 0.0094 0.0100 -0.0600
+vertex -0.0094 0.0205 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0094 -0.0200 -0.0600
+vertex -0.0094 -0.0205 -0.0600
+vertex 0.0094 0.0100 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0094 -0.0205 -0.0600
+vertex -0.0120 -0.0305 -0.0600
+vertex -0.0106 -0.0205 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0305 -0.0600
+vertex -0.0094 -0.0205 -0.0600
+vertex 0.0120 -0.0305 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0106 -0.0205 -0.0600
+vertex -0.0120 -0.0305 -0.0600
+vertex -0.0120 0.0305 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0094 0.0205 -0.0600
+vertex -0.0106 0.0205 -0.0600
+vertex -0.0120 0.0305 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0305 -0.0600
+vertex -0.0106 0.0205 -0.0600
+vertex -0.0106 -0.0205 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0094 0.0205 -0.0600
+vertex -0.0120 0.0305 -0.0600
+vertex 0.0120 0.0305 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0094 -0.0205 -0.0600
+vertex -0.0094 0.0205 -0.0600
+vertex 0.0094 0.0100 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0305 -0.0600
+vertex -0.0120 -0.0235 -0.0450
+vertex -0.0120 -0.0165 -0.0450
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0235 -0.0450
+vertex -0.0120 -0.0305 -0.0600
+vertex -0.0120 -0.0235 -0.0250
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0305 -0.0600
+vertex -0.0120 -0.0165 -0.0450
+vertex -0.0120 -0.0165 -0.0250
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0165 -0.0450
+vertex -0.0120 0.0305 -0.0600
+vertex -0.0120 -0.0305 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0235 -0.0250
+vertex -0.0120 -0.0305 0.0000
+vertex -0.0120 -0.0165 -0.0250
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0305 0.0000
+vertex -0.0120 -0.0235 -0.0250
+vertex -0.0120 -0.0305 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0165 -0.0250
+vertex -0.0120 0.0305 0.0000
+vertex -0.0120 0.0305 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0305 0.0000
+vertex -0.0120 -0.0165 -0.0250
+vertex -0.0120 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
 vertex -0.0219 -0.0851 -0.0320
 vertex -0.0212 -0.0847 -0.0400
 vertex -0.0350 -0.0650 -0.0400
@@ -447,4 +783,46 @@ vertex -0.0440 0.0000 -0.0400
 vertex -0.0440 0.0000 0.0300
 endloop
 endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0290 0.0520 -0.0400
+vertex -0.0350 0.0520 -0.0400
+vertex -0.0350 0.0650 -0.0400
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0350 0.0650 -0.0400
+vertex -0.0290 0.0650 -0.0400
+vertex -0.0290 0.0520 -0.0400
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0290 -0.0520 -0.0400
+vertex 0.0350 -0.0520 -0.0400
+vertex 0.0350 -0.0650 -0.0400
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0350 -0.0650 -0.0400
+vertex 0.0290 -0.0650 -0.0400
+vertex 0.0290 -0.0520 -0.0400
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0305 -0.0100
+vertex -0.0120 -0.0305 0.0000
+vertex -0.0120 0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0305 0.0000
+vertex -0.0120 0.0305 -0.0100
+vertex -0.0120 -0.0305 -0.0100
+endloop
+endfacet
 endsolid python
diff --git a/rocolib/output/PaddleboatWithCamera/graph-silhouette.dxf b/rocolib/output/PaddleboatWithCamera/graph-silhouette.dxf
index 3cb6c40983b65806e4f42f651a3a781a950fcc71..a7935f75e3832d3be466e532b79ac067af7c5801 100644
--- a/rocolib/output/PaddleboatWithCamera/graph-silhouette.dxf
+++ b/rocolib/output/PaddleboatWithCamera/graph-silhouette.dxf
@@ -945,13 +945,13 @@ DOTTED
   8
 0
  10
-179.99999999999994
+179.99999999999997
  20
 64.03124199999999
  30
 0.0
  11
-179.99999999999994
+179.99999999999997
  21
 194.03124200000002
  31
@@ -965,13 +965,13 @@ DOTTED
   8
 0
  10
-109.99999999999996
+109.99999999999999
  20
 64.03124199999999
  30
 0.0
  11
-109.99999999999996
+109.99999999999999
  21
 194.03124200000002
  31
@@ -985,13 +985,13 @@ DOTTED
   8
 0
  10
-144.99999999999997
+145.0
  20
 64.03124199999999
  30
 0.0
  11
-109.99999999999996
+109.99999999999999
  21
 64.03124199999999
  31
@@ -1005,13 +1005,13 @@ DOTTED
   8
 0
  10
-179.99999999999994
+179.99999999999997
  20
 64.03124199999999
  30
 0.0
  11
-144.99999999999997
+145.0
  21
 64.03124199999999
  31
@@ -1025,13 +1025,13 @@ DOTTED
   8
 0
  10
-144.99999999999997
+145.0
  20
 -3.7432849353535863e-07
  30
 0.0
  11
-109.99999999999996
+109.99999999999999
  21
 64.03124199999999
  31
@@ -1043,13 +1043,13 @@ LINE
   8
 0
  10
-112.32105756343545
+112.32105756343546
  20
 17.44773491586702
  30
 0.0
  11
-91.16052878171769
+91.16052878171773
  21
 28.745631275293622
  31
@@ -1061,13 +1061,13 @@ LINE
   8
 0
  10
-144.99999999999997
+145.0
  20
 -3.743284651136492e-07
  30
 0.0
  11
-112.32105756343545
+112.32105756343546
  21
 17.44773491586702
  31
@@ -1081,13 +1081,13 @@ DOTTED
   8
 0
  10
-109.99999999999996
+109.99999999999999
  20
 64.03124199999999
  30
 0.0
  11
-91.16052878171769
+91.16052878171773
  21
 28.745631275293622
  31
@@ -1101,13 +1101,13 @@ DOTTED
   8
 0
  10
-109.99999999999996
+109.99999999999999
  20
 64.03124199999999
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 40.04352763472023
  31
@@ -1119,13 +1119,13 @@ LINE
   8
 0
  10
-91.16052878171769
+91.16052878171773
  20
 28.745631275293608
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 40.04352763472023
  31
@@ -1139,13 +1139,13 @@ DOTTED
   8
 0
  10
-69.99999999999996
+69.99999999999999
  20
 64.031242
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 40.04352763472023
  31
@@ -1159,13 +1159,13 @@ DOTTED
   8
 0
  10
-109.99999999999996
+109.99999999999999
  20
 64.03124199999999
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 64.031242
  31
@@ -1177,13 +1177,13 @@ LINE
   8
 0
  10
-62.00409521157335
+62.00409521157338
  20
 64.031242
  30
 0.0
  11
-69.99999999999996
+69.99999999999999
  21
 64.031242
  31
@@ -1195,13 +1195,13 @@ LINE
   8
 0
  10
-62.004095211573336
+62.004095211573365
  20
 40.04352763472023
  30
 0.0
  11
-62.00409521157335
+62.00409521157338
  21
 64.031242
  31
@@ -1213,13 +1213,13 @@ LINE
   8
 0
  10
-69.99999999999994
+69.99999999999997
  20
 40.04352763472023
  30
 0.0
  11
-62.004095211573336
+62.004095211573365
  21
 40.04352763472023
  31
@@ -1233,13 +1233,13 @@ DOTTED
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 194.031242
  30
 0.0
  11
-110.00000000000001
+110.00000000000004
  21
 194.031242
  31
@@ -1253,13 +1253,13 @@ DOTTED
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 234.031242
  30
 0.0
  11
-110.0
+110.00000000000003
  21
 194.031242
  31
@@ -1273,13 +1273,13 @@ DOTTED
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 234.031242
  30
 0.0
  11
-70.0
+70.00000000000003
  21
 194.031242
  31
@@ -1291,13 +1291,13 @@ LINE
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 234.031242
  30
 0.0
  11
-110.00000000000001
+110.00000000000004
  21
 234.031242
  31
@@ -1311,13 +1311,13 @@ DOTTED
   8
 0
  10
-110.00000000000001
+110.00000000000004
  20
 234.031242
  30
 0.0
  11
-110.0
+110.00000000000003
  21
 194.031242
  31
@@ -1329,13 +1329,13 @@ LINE
   8
 0
  10
-149.99999999999997
+150.0
  20
 234.031242
  30
 0.0
  11
-145.0
+145.00000000000003
  21
 234.031242
  31
@@ -1347,13 +1347,13 @@ LINE
   8
 0
  10
-110.0
+110.00000000000003
  20
 234.031242
  30
 0.0
  11
-149.99999999999997
+150.0
  21
 234.031242
  31
@@ -1367,13 +1367,13 @@ DOTTED
   8
 0
  10
-110.0
+110.00000000000003
  20
 194.031242
  30
 0.0
  11
-145.0
+145.00000000000003
  21
 194.031242
  31
@@ -1387,13 +1387,13 @@ DOTTED
   8
 0
  10
-145.0
+145.00000000000003
  20
 194.031242
  30
 0.0
  11
-179.99999999999997
+180.0
  21
 194.031242
  31
@@ -1411,7 +1411,7 @@ LINE
  30
 0.0
  11
-179.99999999999997
+180.0
  21
 234.031242
  31
@@ -1423,7 +1423,7 @@ LINE
   8
 0
  10
-145.0
+145.00000000000003
  20
 234.031242
  30
@@ -1443,13 +1443,13 @@ DOTTED
   8
 0
  10
-179.99999999999997
+180.0
  20
 194.031242
  30
 0.0
  11
-179.99999999999997
+180.0
  21
 234.031242
  31
@@ -1463,13 +1463,13 @@ DOTTED
   8
 0
  10
-179.99999999999997
+180.0
  20
 194.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 234.031242
  31
@@ -1481,13 +1481,13 @@ LINE
   8
 0
  10
-179.99999999999997
+180.0
  20
 234.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 234.031242
  31
@@ -1501,13 +1501,13 @@ DOTTED
   8
 0
  10
-219.99999999999997
+220.00000000000003
  20
 194.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 234.031242
  31
@@ -1521,13 +1521,13 @@ DOTTED
   8
 0
  10
-179.99999999999997
+180.0
  20
 194.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 194.031242
  31
@@ -1545,7 +1545,7 @@ LINE
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 194.03124200000002
  31
@@ -1575,7 +1575,7 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 234.031242
  30
@@ -1601,7 +1601,7 @@ DOTTED
  30
 0.0
  11
-180.0
+180.00000000000006
  21
 64.03124199999999
  31
@@ -1621,7 +1621,7 @@ DOTTED
  30
 0.0
  11
-180.0
+180.00000000000006
  21
 64.03124199999999
  31
@@ -1641,7 +1641,7 @@ DOTTED
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 64.031242
  31
@@ -1659,7 +1659,7 @@ LINE
  30
 0.0
  11
-198.83947121828228
+198.8394712182823
  21
 28.745631275293622
  31
@@ -1673,13 +1673,13 @@ DOTTED
   8
 0
  10
-198.83947121828228
+198.8394712182823
  20
 28.745631275293622
  30
 0.0
  11
-180.0
+180.00000000000006
  21
 64.03124199999999
  31
@@ -1693,13 +1693,13 @@ DOTTED
   8
 0
  10
-145.00000000000003
+145.00000000000006
  20
 -3.743284651136492e-07
  30
 0.0
  11
-180.0
+180.00000000000006
  21
 64.03124199999999
  31
@@ -1711,13 +1711,13 @@ LINE
   8
 0
  10
-177.6789424365645
+177.67894243656454
  20
 17.44773491586702
  30
 0.0
  11
-145.00000000000003
+145.00000000000006
  21
 -3.743284651136492e-07
  31
@@ -1735,7 +1735,7 @@ LINE
  30
 0.0
  11
-177.6789424365645
+177.67894243656454
  21
 17.44773491586702
  31
@@ -1747,13 +1747,13 @@ LINE
   8
 0
  10
-227.99590478842663
+227.99590478842666
  20
 40.04352763472023
  30
 0.0
  11
-220.00000000000003
+220.00000000000006
  21
 40.04352763472023
  31
@@ -1765,13 +1765,13 @@ LINE
   8
 0
  10
-227.99590478842663
+227.99590478842666
  20
 64.031242
  30
 0.0
  11
-227.99590478842663
+227.99590478842666
  21
 40.04352763472023
  31
@@ -1783,33 +1783,35 @@ LINE
   8
 0
  10
-220.00000000000003
+220.00000000000006
  20
 64.031242
  30
 0.0
  11
-227.99590478842663
+227.99590478842666
  21
 64.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
 220.00000000000003
  20
-77.031242
+64.03124199999999
  30
 0.0
  11
 220.00000000000003
  21
-64.03124199999999
+77.031242
  31
 0.0
   0
@@ -1855,7 +1857,7 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 116.03124199999999
  30
@@ -1873,13 +1875,13 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 129.03124199999996
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 116.03124199999999
  31
@@ -1893,13 +1895,13 @@ DOTTED
   8
 0
  10
-220.0
+220.00000000000003
  20
 142.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 129.03124199999996
  31
@@ -1911,13 +1913,13 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 155.03124199999996
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 142.031242
  31
@@ -1929,13 +1931,13 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 168.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 155.03124199999996
  31
@@ -1947,33 +1949,35 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 181.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 168.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-220.0
+220.00000000000003
  20
-194.031242
+181.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
-181.031242
+194.031242
  31
 0.0
   0
@@ -1983,13 +1987,13 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 194.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 194.031242
  31
@@ -2019,6 +2023,60 @@ LINE
   8
 0
  10
+226.00000000000003
+ 20
+64.03124199999999
+ 30
+0.0
+ 11
+220.00000000000003
+ 21
+64.03124199999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+226.00000000000003
+ 20
+77.031242
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+64.03124199999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.00000000000003
+ 20
+77.031242
+ 30
+0.0
+ 11
+226.00000000000003
+ 21
+77.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
 290.00000000000006
  20
 142.03124200000002
@@ -2045,7 +2103,7 @@ DOTTED
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 142.031242
  31
@@ -2065,7 +2123,7 @@ DOTTED
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 129.03124199999996
  31
@@ -2077,13 +2135,13 @@ LINE
   8
 0
  10
-290.0
+290.00000000000006
  20
 161.03124200000002
  30
 0.0
  11
-290.0
+290.00000000000006
  21
 142.03124200000002
  31
@@ -2095,13 +2153,13 @@ LINE
   8
 0
  10
-219.99999999999997
+220.0
  20
 161.031242
  30
 0.0
  11
-290.0
+290.00000000000006
  21
 161.03124200000002
  31
@@ -2113,13 +2171,13 @@ LINE
   8
 0
  10
-219.99999999999997
+220.0
  20
 142.031242
  30
 0.0
  11
-219.99999999999997
+220.0
  21
 161.031242
  31
@@ -2149,13 +2207,13 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 110.03124199999999
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 129.03124199999996
  31
@@ -2175,7 +2233,7 @@ DOTTED
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 110.03124199999999
  31
@@ -2205,13 +2263,13 @@ LINE
   8
 0
  10
-220.0
+220.00000000000003
  20
 97.031242
  30
 0.0
  11
-220.0
+220.00000000000003
  21
 110.03124199999999
  31
@@ -2225,7 +2283,7 @@ DOTTED
   8
 0
  10
-220.0
+220.00000000000003
  20
 97.031242
  30
@@ -2243,13 +2301,13 @@ LINE
   8
 0
  10
-219.99999999999997
+220.00000000000003
  20
 87.031242
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 97.031242
  31
@@ -2261,13 +2319,13 @@ LINE
   8
 0
  10
-290.0
+290.00000000000006
  20
 87.03124200000002
  30
 0.0
  11
-219.99999999999997
+220.00000000000003
  21
 87.031242
  31
@@ -2279,13 +2337,13 @@ LINE
   8
 0
  10
-290.0
+290.00000000000006
  20
 97.03124200000002
  30
 0.0
  11
-290.0
+290.00000000000006
  21
 87.03124200000002
  31
@@ -2297,15 +2355,15 @@ LINE
   8
 0
  10
-56.66666666666668
+220.00000000000003
  20
-234.031242
+194.031242
  30
 0.0
  11
-70.00000000000001
+290.00000000000006
  21
-234.031242
+194.031242
  31
 0.0
   0
@@ -2315,15 +2373,15 @@ LINE
   8
 0
  10
-56.666666666666664
+290.00000000000006
  20
-194.031242
+181.031242
  30
 0.0
  11
-56.66666666666668
+220.00000000000003
  21
-234.031242
+181.031242
  31
 0.0
   0
@@ -2333,15 +2391,15 @@ LINE
   8
 0
  10
-70.0
+290.00000000000006
  20
 194.031242
  30
 0.0
  11
-56.666666666666664
+290.00000000000006
  21
-194.031242
+181.031242
  31
 0.0
   0
@@ -2351,15 +2409,15 @@ LINE
   8
 0
  10
-70.00000000000001
+56.66666666666671
  20
-181.03124200000002
+234.031242
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
-194.03124200000002
+234.031242
  31
 0.0
   0
@@ -2369,15 +2427,15 @@ LINE
   8
 0
  10
-70.0
+56.66666666666669
  20
-168.03124200000002
+194.031242
  30
 0.0
  11
-70.00000000000001
+56.66666666666671
  21
-181.03124200000002
+234.031242
  31
 0.0
   0
@@ -2387,53 +2445,53 @@ LINE
   8
 0
  10
-70.0
+70.00000000000003
  20
-155.031242
+194.031242
  30
 0.0
  11
-70.0
+56.66666666666669
  21
-168.03124200000002
+194.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-70.0
+70.00000000000004
  20
-142.03124200000002
+194.03124200000002
  30
 0.0
  11
-70.0
+70.00000000000004
  21
-155.031242
+181.03124200000002
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-69.99999999999999
+70.00000000000003
  20
-129.03124200000002
+168.03124200000002
  30
 0.0
  11
-70.0
+70.00000000000004
  21
-142.03124200000002
+181.03124200000002
  31
 0.0
   0
@@ -2443,15 +2501,15 @@ LINE
   8
 0
  10
-69.99999999999999
+70.00000000000003
  20
-116.03124200000002
+155.031242
  30
 0.0
  11
-69.99999999999999
+70.00000000000003
  21
-129.03124200000002
+168.03124200000002
  31
 0.0
   0
@@ -2461,15 +2519,35 @@ LINE
   8
 0
  10
-69.99999999999999
+70.00000000000003
  20
-103.03124200000002
+142.03124200000002
  30
 0.0
  11
-69.99999999999999
+70.00000000000003
  21
-116.03124200000002
+155.031242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+70.00000000000001
+ 20
+129.03124200000002
+ 30
+0.0
+ 11
+70.00000000000003
+ 21
+142.03124200000002
  31
 0.0
   0
@@ -2479,13 +2557,49 @@ LINE
   8
 0
  10
-69.99999999999999
+70.00000000000001
+ 20
+116.03124200000002
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+129.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
+ 20
+103.03124200000002
+ 30
+0.0
+ 11
+70.00000000000001
+ 21
+116.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000001
  20
 90.031242
  30
 0.0
  11
-69.99999999999999
+70.00000000000001
  21
 103.03124200000002
  31
@@ -2497,33 +2611,35 @@ LINE
   8
 0
  10
-69.99999999999997
+70.0
  20
 77.03124200000002
  30
 0.0
  11
-69.99999999999999
+70.00000000000001
  21
 90.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-69.99999999999997
+70.0
  20
-64.03124200000003
+77.03124200000002
  30
 0.0
  11
-69.99999999999997
+70.0
  21
-77.03124200000002
+64.03124200000003
  31
 0.0
   0
@@ -2533,13 +2649,13 @@ LINE
   8
 0
  10
-69.99999999999997
+70.0
  20
 64.03124200000003
  30
 0.0
  11
-69.99999999999997
+70.0
  21
 64.03124200000003
  31
@@ -2551,13 +2667,13 @@ LINE
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 194.03124200000002
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 194.03124200000002
  31
@@ -2569,13 +2685,67 @@ LINE
   8
 0
  10
+64.00000000000004
+ 20
+194.03124200000002
+ 30
+0.0
+ 11
+70.00000000000004
+ 21
+194.03124200000002
+ 31
 0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+64.00000000000004
  20
-129.03124200000002
+181.03124200000002
  30
 0.0
  11
+64.00000000000004
+ 21
+194.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.00000000000004
+ 20
+181.03124200000002
+ 30
+0.0
+ 11
+64.00000000000004
+ 21
+181.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.8421709430404014e-14
+ 20
+129.03124200000002
+ 30
 0.0
+ 11
+2.8421709430404014e-14
  21
 142.03124200000005
  31
@@ -2589,13 +2759,13 @@ DOTTED
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 129.03124200000002
  30
 0.0
  11
-69.99999999999999
+70.00000000000001
  21
 129.031242
  31
@@ -2609,13 +2779,13 @@ DOTTED
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 142.03124200000005
  30
 0.0
  11
-70.0
+70.00000000000003
  21
 142.03124200000002
  31
@@ -2627,13 +2797,13 @@ LINE
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 110.03124200000003
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 129.03124200000002
  31
@@ -2645,13 +2815,13 @@ LINE
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 110.03124200000002
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 110.03124200000003
  31
@@ -2663,13 +2833,13 @@ LINE
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 129.031242
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 110.03124200000002
  31
@@ -2681,13 +2851,13 @@ LINE
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 142.03124200000005
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 161.03124200000005
  31
@@ -2699,13 +2869,13 @@ LINE
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 161.03124200000002
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 142.03124200000002
  31
@@ -2719,13 +2889,13 @@ DOTTED
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 161.03124200000005
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 161.03124200000002
  31
@@ -2737,13 +2907,13 @@ LINE
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 161.03124200000005
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 174.03124200000005
  31
@@ -2755,13 +2925,13 @@ LINE
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 174.03124200000002
  30
 0.0
  11
-70.00000000000001
+70.00000000000004
  21
 161.03124200000002
  31
@@ -2775,13 +2945,13 @@ DOTTED
   8
 0
  10
-70.00000000000001
+70.00000000000004
  20
 174.03124200000002
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 174.03124200000005
  31
@@ -2793,13 +2963,13 @@ LINE
   8
 0
  10
-70.0
+70.00000000000003
  20
 184.03124200000002
  30
 0.0
  11
-70.0
+70.00000000000003
  21
 174.03124200000002
  31
@@ -2811,13 +2981,13 @@ LINE
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 184.03124200000002
  30
 0.0
  11
-70.0
+70.00000000000003
  21
 184.03124200000002
  31
@@ -2829,13 +2999,13 @@ LINE
   8
 0
  10
-0.0
+2.8421709430404014e-14
  20
 174.03124200000005
  30
 0.0
  11
-0.0
+2.8421709430404014e-14
  21
 184.03124200000002
  31
@@ -2847,13 +3017,67 @@ LINE
   8
 0
  10
-108.43030382152985
+0.0
+ 20
+77.03124200000003
+ 30
+0.0
+ 11
+69.99999999999999
+ 21
+77.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+64.03124200000003
+ 30
+0.0
+ 11
+0.0
+ 21
+77.03124200000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.99999999999999
+ 20
+64.031242
+ 30
+0.0
+ 11
+0.0
+ 21
+64.03124200000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.43030382152989
  20
 26.606620936353796
  30
 0.0
  11
-100.93572409356511
+100.93572409356514
  21
 30.608079779724527
  31
@@ -2865,13 +3089,13 @@ LINE
   8
 0
  10
-100.93572409356511
+100.93572409356514
  20
 30.608079779724527
  30
 0.0
  11
-100.70023070333659
+100.70023070333662
  21
 30.167009645665704
  31
@@ -2883,13 +3107,13 @@ LINE
   8
 0
  10
-100.70023070333659
+100.70023070333662
  20
 30.167009645665704
  30
 0.0
  11
-108.19481043130132
+108.19481043130136
  21
 26.165550802294977
  31
@@ -2901,13 +3125,13 @@ LINE
   8
 0
  10
-108.19481043130132
+108.19481043130136
  20
 26.165550802294977
  30
 0.0
  11
-108.43030382152985
+108.43030382152989
  21
 26.606620936353796
  31
@@ -2919,13 +3143,13 @@ LINE
   8
 0
  10
-64.00307140867999
+64.00307140868003
  20
 48.03943242314682
  30
 0.0
  11
-68.0010238028933
+68.00102380289331
  21
 48.03943242314682
  31
@@ -2937,13 +3161,13 @@ LINE
   8
 0
  10
-68.0010238028933
+68.00102380289331
  20
 48.03943242314682
  30
 0.0
  11
-68.0010238028933
+68.00102380289331
  21
 56.03533721157341
  31
@@ -2955,13 +3179,13 @@ LINE
   8
 0
  10
-68.0010238028933
+68.00102380289331
  20
 56.03533721157341
  30
 0.0
  11
-64.00307140867999
+64.00307140868003
  21
 56.03533721157343
  31
@@ -2973,13 +3197,13 @@ LINE
   8
 0
  10
-123.08333333333333
+123.08333333333336
  20
 223.781242
  30
 0.0
  11
-136.91666666666663
+136.9166666666667
  21
 223.781242
  31
@@ -2991,13 +3215,13 @@ LINE
   8
 0
  10
-136.91666666666663
+136.9166666666667
  20
 223.781242
  30
 0.0
  11
-136.91666666666663
+136.9166666666667
  21
 224.281242
  31
@@ -3009,13 +3233,13 @@ LINE
   8
 0
  10
-136.91666666666663
+136.9166666666667
  20
 224.281242
  30
 0.0
  11
-123.08333333333333
+123.08333333333336
  21
 224.281242
  31
@@ -3027,13 +3251,13 @@ LINE
   8
 0
  10
-123.08333333333333
+123.08333333333336
  20
 224.281242
  30
 0.0
  11
-123.08333333333333
+123.08333333333336
  21
 223.781242
  31
@@ -3045,13 +3269,13 @@ LINE
   8
 0
  10
-153.08333333333334
+153.08333333333337
  20
 223.781242
  30
 0.0
  11
-166.91666666666666
+166.9166666666667
  21
 223.781242
  31
@@ -3063,13 +3287,13 @@ LINE
   8
 0
  10
-166.91666666666666
+166.9166666666667
  20
 223.781242
  30
 0.0
  11
-166.91666666666666
+166.9166666666667
  21
 224.281242
  31
@@ -3081,13 +3305,13 @@ LINE
   8
 0
  10
-166.91666666666666
+166.9166666666667
  20
 224.281242
  30
 0.0
  11
-153.08333333333334
+153.08333333333337
  21
 224.281242
  31
@@ -3099,13 +3323,13 @@ LINE
   8
 0
  10
-153.08333333333334
+153.08333333333337
  20
 224.281242
  30
 0.0
  11
-153.08333333333334
+153.08333333333337
  21
 223.781242
  31
@@ -3117,7 +3341,7 @@ LINE
   8
 0
  10
-229.99999999999997
+230.00000000000003
  20
 220.69790866666668
  30
@@ -3159,7 +3383,7 @@ LINE
  30
 0.0
  11
-229.99999999999997
+230.00000000000003
  21
 207.3645753333333
  31
@@ -3171,13 +3395,13 @@ LINE
   8
 0
  10
-189.06427590643486
+189.0642759064349
  20
 30.608079779724527
  30
 0.0
  11
-181.5696961784701
+181.56969617847014
  21
 26.60662093635381
  31
@@ -3189,13 +3413,13 @@ LINE
   8
 0
  10
-181.5696961784701
+181.56969617847014
  20
 26.60662093635381
  30
 0.0
  11
-181.80518956869864
+181.80518956869867
  21
 26.165550802294977
  31
@@ -3207,13 +3431,13 @@ LINE
   8
 0
  10
-181.80518956869864
+181.80518956869867
  20
 26.165550802294977
  30
 0.0
  11
-189.29976929666338
+189.2997692966634
  21
 30.167009645665704
  31
@@ -3225,13 +3449,13 @@ LINE
   8
 0
  10
-189.29976929666338
+189.2997692966634
  20
 30.167009645665704
  30
 0.0
  11
-189.06427590643486
+189.0642759064349
  21
 30.608079779724527
  31
@@ -3243,13 +3467,13 @@ LINE
   8
 0
  10
-225.99692859131997
+225.99692859132
  20
 56.03533721157341
  30
 0.0
  11
-221.99897619710666
+221.99897619710669
  21
 56.03533721157341
  31
@@ -3261,13 +3485,13 @@ LINE
   8
 0
  10
-221.99897619710666
+221.99897619710669
  20
 56.03533721157341
  30
 0.0
  11
-221.99897619710666
+221.99897619710669
  21
 48.03943242314682
  31
@@ -3279,13 +3503,13 @@ LINE
   8
 0
  10
-221.99897619710666
+221.99897619710669
  20
 48.03943242314682
  30
 0.0
  11
-225.99692859131997
+225.99692859132
  21
 48.03943242314682
  31
@@ -3297,6 +3521,60 @@ LINE
   8
 0
  10
+224.50000000000003
+ 20
+72.69790866666666
+ 30
+0.0
+ 11
+221.50000000000003
+ 21
+72.69790866666666
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.50000000000003
+ 20
+72.69790866666666
+ 30
+0.0
+ 11
+221.50000000000003
+ 21
+68.36457533333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.50000000000003
+ 20
+68.36457533333333
+ 30
+0.0
+ 11
+224.50000000000003
+ 21
+68.36457533333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
 264.2954545454545
  20
 153.28124200000002
@@ -3375,7 +3653,7 @@ LINE
  30
 0.0
  11
-245.7045454545454
+245.70454545454547
  21
 153.281242
  31
@@ -3387,13 +3665,13 @@ LINE
   8
 0
  10
-245.7045454545454
+245.70454545454547
  20
 153.281242
  30
 0.0
  11
-245.7045454545454
+245.70454545454547
  21
 153.781242
  31
@@ -3405,7 +3683,7 @@ LINE
   8
 0
  10
-245.7045454545454
+245.70454545454547
  20
 153.781242
  30
@@ -3441,13 +3719,13 @@ LINE
   8
 0
  10
-248.0
+248.00000000000006
  20
 97.096242
  30
 0.0
  11
-248.0
+248.00000000000006
  21
 109.96624200000001
  31
@@ -3459,13 +3737,13 @@ LINE
   8
 0
  10
-248.0
+248.00000000000006
  20
 109.96624200000001
  30
 0.0
  11
-225.0
+225.00000000000003
  21
 109.966242
  31
@@ -3477,13 +3755,13 @@ LINE
   8
 0
  10
-225.0
+225.00000000000003
  20
 109.966242
  30
 0.0
  11
-225.0
+225.00000000000003
  21
 97.096242
  31
@@ -3495,13 +3773,13 @@ LINE
   8
 0
  10
-225.0
+225.00000000000003
  20
 97.096242
  30
 0.0
  11
-248.0
+248.00000000000006
  21
 97.096242
  31
@@ -3603,13 +3881,13 @@ LINE
   8
 0
  10
-245.45454545454544
+245.45454545454547
  20
 89.531242
  30
 0.0
  11
-250.45454545454544
+250.45454545454547
  21
 89.531242
  31
@@ -3621,13 +3899,13 @@ LINE
   8
 0
  10
-250.45454545454544
+250.45454545454547
  20
 89.531242
  30
 0.0
  11
-245.45454545454544
+245.45454545454547
  21
 94.53124199999999
  31
@@ -3639,13 +3917,13 @@ LINE
   8
 0
  10
-245.45454545454544
+245.45454545454547
  20
 94.53124199999999
  30
 0.0
  11
-232.72727272727272
+232.72727272727275
  21
 94.53124199999999
  31
@@ -3657,13 +3935,13 @@ LINE
   8
 0
  10
-232.72727272727272
+232.72727272727275
  20
 94.53124199999999
  30
 0.0
  11
-227.72727272727272
+227.72727272727275
  21
 89.531242
  31
@@ -3675,13 +3953,13 @@ LINE
   8
 0
  10
-227.72727272727272
+227.72727272727275
  20
 89.531242
  30
 0.0
  11
-232.72727272727272
+232.72727272727275
  21
 89.531242
  31
@@ -3693,15 +3971,15 @@ LINE
   8
 0
  10
-59.99999999999999
+285.25000000000006
  20
-207.3645753333333
+189.94790866666668
  30
 0.0
  11
-66.66666666666666
+285.25000000000006
  21
-207.3645753333333
+185.11457533333333
  31
 0.0
   0
@@ -3711,15 +3989,15 @@ LINE
   8
 0
  10
-66.66666666666666
+285.25000000000006
  20
-207.3645753333333
+185.11457533333333
  30
 0.0
  11
-66.66666666666667
+285.75
  21
-220.69790866666668
+185.11457533333333
  31
 0.0
   0
@@ -3729,15 +4007,15 @@ LINE
   8
 0
  10
-66.66666666666667
+285.75
  20
-220.69790866666668
+185.11457533333333
  30
 0.0
  11
-60.00000000000001
+285.75
  21
-220.69790866666668
+189.94790866666668
  31
 0.0
   0
@@ -3747,13 +4025,139 @@ LINE
   8
 0
  10
-25.704545454545457
+285.75
+ 20
+189.94790866666668
+ 30
+0.0
+ 11
+285.25000000000006
+ 21
+189.94790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+60.00000000000002
+ 20
+207.3645753333333
+ 30
+0.0
+ 11
+66.66666666666669
+ 21
+207.3645753333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+66.66666666666669
+ 20
+207.3645753333333
+ 30
+0.0
+ 11
+66.66666666666671
+ 21
+220.69790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+66.66666666666671
+ 20
+220.69790866666668
+ 30
+0.0
+ 11
+60.000000000000036
+ 21
+220.69790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+65.50000000000003
+ 20
+185.36457533333336
+ 30
+0.0
+ 11
+68.50000000000004
+ 21
+185.36457533333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000004
+ 20
+185.36457533333336
+ 30
+0.0
+ 11
+68.50000000000004
+ 21
+189.69790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+68.50000000000004
+ 20
+189.69790866666668
+ 30
+0.0
+ 11
+65.50000000000003
+ 21
+189.69790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+25.704545454545485
  20
 117.78124200000002
  30
 0.0
  11
-12.477272727272721
+12.47727272727275
  21
 117.78124200000003
  31
@@ -3765,13 +4169,13 @@ LINE
   8
 0
  10
-12.477272727272721
+12.47727272727275
  20
 117.78124200000003
  30
 0.0
  11
-12.477272727272721
+12.47727272727275
  21
 117.28124200000003
  31
@@ -3783,13 +4187,13 @@ LINE
   8
 0
  10
-12.477272727272721
+12.47727272727275
  20
 117.28124200000003
  30
 0.0
  11
-25.704545454545457
+25.704545454545485
  21
 117.281242
  31
@@ -3801,13 +4205,13 @@ LINE
   8
 0
  10
-25.704545454545457
+25.704545454545485
  20
 117.281242
  30
 0.0
  11
-25.704545454545457
+25.704545454545485
  21
 117.78124200000002
  31
@@ -3819,13 +4223,13 @@ LINE
   8
 0
  10
-57.52272727272727
+57.5227272727273
  20
 117.78124200000002
  30
 0.0
  11
-44.29545454545455
+44.29545454545458
  21
 117.78124200000002
  31
@@ -3837,13 +4241,13 @@ LINE
   8
 0
  10
-44.29545454545455
+44.29545454545458
  20
 117.78124200000002
  30
 0.0
  11
-44.29545454545455
+44.29545454545458
  21
 117.281242
  31
@@ -3855,13 +4259,13 @@ LINE
   8
 0
  10
-44.29545454545455
+44.29545454545458
  20
 117.281242
  30
 0.0
  11
-57.52272727272727
+57.5227272727273
  21
 117.281242
  31
@@ -3873,13 +4277,13 @@ LINE
   8
 0
  10
-57.52272727272727
+57.5227272727273
  20
 117.281242
  30
 0.0
  11
-57.52272727272727
+57.5227272727273
  21
 117.78124200000002
  31
@@ -3891,13 +4295,13 @@ LINE
   8
 0
  10
-42.0
+42.00000000000003
  20
 173.96624200000002
  30
 0.0
  11
-42.0
+42.00000000000003
  21
 161.09624200000005
  31
@@ -3909,13 +4313,13 @@ LINE
   8
 0
  10
-42.0
+42.00000000000003
  20
 161.09624200000005
  30
 0.0
  11
-65.0
+65.00000000000004
  21
 161.09624200000002
  31
@@ -3927,13 +4331,13 @@ LINE
   8
 0
  10
-65.0
+65.00000000000004
  20
 161.09624200000002
  30
 0.0
  11
-65.0
+65.00000000000004
  21
 173.96624200000002
  31
@@ -3945,13 +4349,13 @@ LINE
   8
 0
  10
-65.0
+65.00000000000004
  20
 173.96624200000002
  30
 0.0
  11
-42.0
+42.00000000000003
  21
 173.96624200000002
  31
@@ -3963,13 +4367,13 @@ LINE
   8
 0
  10
-12.72727272727272
+12.727272727272748
  20
 181.53124200000005
  30
 0.0
  11
-7.72727272727272
+7.727272727272749
  21
 181.53124200000005
  31
@@ -3981,13 +4385,13 @@ LINE
   8
 0
  10
-7.72727272727272
+7.727272727272749
  20
 181.53124200000005
  30
 0.0
  11
-12.72727272727272
+12.727272727272748
  21
 176.53124200000005
  31
@@ -3999,13 +4403,13 @@ LINE
   8
 0
  10
-12.72727272727272
+12.727272727272748
  20
 176.53124200000005
  30
 0.0
  11
-25.454545454545457
+25.454545454545485
  21
 176.53124200000002
  31
@@ -4017,13 +4421,13 @@ LINE
   8
 0
  10
-25.454545454545457
+25.454545454545485
  20
 176.53124200000002
  30
 0.0
  11
-30.454545454545457
+30.454545454545485
  21
 181.53124200000002
  31
@@ -4035,13 +4439,13 @@ LINE
   8
 0
  10
-30.454545454545457
+30.454545454545485
  20
 181.53124200000002
  30
 0.0
  11
-25.454545454545457
+25.454545454545485
  21
 181.53124200000002
  31
@@ -4053,13 +4457,13 @@ LINE
   8
 0
  10
-44.54545454545454
+44.54545454545457
  20
 181.53124200000002
  30
 0.0
  11
-39.54545454545454
+39.54545454545457
  21
 181.53124200000002
  31
@@ -4071,13 +4475,13 @@ LINE
   8
 0
  10
-39.54545454545454
+39.54545454545457
  20
 181.53124200000002
  30
 0.0
  11
-44.54545454545454
+44.54545454545457
  21
 176.53124200000002
  31
@@ -4089,13 +4493,13 @@ LINE
   8
 0
  10
-44.54545454545454
+44.54545454545457
  20
 176.53124200000002
  30
 0.0
  11
-57.27272727272726
+57.27272727272729
  21
 176.53124200000002
  31
@@ -4107,13 +4511,13 @@ LINE
   8
 0
  10
-57.27272727272726
+57.27272727272729
  20
 176.53124200000002
  30
 0.0
  11
-62.27272727272726
+62.27272727272729
  21
 181.53124200000002
  31
@@ -4125,13 +4529,13 @@ LINE
   8
 0
  10
-62.27272727272726
+62.27272727272729
  20
 181.53124200000002
  30
 0.0
  11
-57.27272727272726
+57.27272727272729
  21
 181.53124200000002
  31
@@ -4143,6 +4547,78 @@ LINE
   8
 0
  10
+4.750000000000001
+ 20
+68.11457533333336
+ 30
+0.0
+ 11
+4.750000000000001
+ 21
+72.94790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.750000000000001
+ 20
+72.94790866666668
+ 30
+0.0
+ 11
+4.25
+ 21
+72.94790866666668
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.25
+ 20
+72.94790866666668
+ 30
+0.0
+ 11
+4.25
+ 21
+68.11457533333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.25
+ 20
+68.11457533333336
+ 30
+0.0
+ 11
+4.750000000000001
+ 21
+68.11457533333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
 300.0
  20
 129.031242
@@ -4281,6 +4757,986 @@ LINE
  31
 0.0
   0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+330.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+354.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+354.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+330.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+354.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+330.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+330.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+414.0
+ 20
+98.531242
+ 30
+0.0
+ 11
+354.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+414.0
+ 20
+98.531242
+ 30
+0.0
+ 11
+414.0
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+354.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+414.0
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+414.0
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+438.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+438.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+414.0
+ 20
+159.531242
+ 30
+0.0
+ 11
+438.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+438.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+498.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+438.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+498.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+320.00000000000006
+ 20
+159.531242
+ 30
+0.0
+ 11
+330.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+320.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+320.00000000000006
+ 21
+159.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+330.00000000000006
+ 20
+98.531242
+ 30
+0.0
+ 11
+320.00000000000006
+ 21
+98.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+331.40000000000003
+ 20
+108.531242
+ 30
+0.0
+ 11
+332.6000000000001
+ 21
+108.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.6000000000001
+ 20
+108.531242
+ 30
+0.0
+ 11
+332.6000000000001
+ 21
+149.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.6000000000001
+ 20
+149.53124200000002
+ 30
+0.0
+ 11
+331.40000000000003
+ 21
+149.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+331.40000000000003
+ 20
+149.53124200000002
+ 30
+0.0
+ 11
+331.40000000000003
+ 21
+108.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+351.4
+ 20
+109.031242
+ 30
+0.0
+ 11
+352.6000000000001
+ 21
+109.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+352.6000000000001
+ 20
+109.031242
+ 30
+0.0
+ 11
+352.6000000000001
+ 21
+139.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+352.6000000000001
+ 20
+139.031242
+ 30
+0.0
+ 11
+351.4
+ 21
+139.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+351.4
+ 20
+139.031242
+ 30
+0.0
+ 11
+351.4
+ 21
+109.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+362.00000000000006
+ 20
+150.031242
+ 30
+0.0
+ 11
+362.00000000000006
+ 21
+132.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+362.00000000000006
+ 20
+132.03124200000002
+ 30
+0.0
+ 11
+392.00000000000006
+ 21
+132.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+392.00000000000006
+ 20
+132.03124200000002
+ 30
+0.0
+ 11
+392.00000000000006
+ 21
+150.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+392.00000000000006
+ 20
+150.031242
+ 30
+0.0
+ 11
+362.00000000000006
+ 21
+150.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+435.40000000000003
+ 20
+108.531242
+ 30
+0.0
+ 11
+436.6000000000001
+ 21
+108.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+436.6000000000001
+ 20
+108.531242
+ 30
+0.0
+ 11
+436.6000000000001
+ 21
+149.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+436.6000000000001
+ 20
+149.53124200000002
+ 30
+0.0
+ 11
+435.40000000000003
+ 21
+149.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+435.40000000000003
+ 20
+149.53124200000002
+ 30
+0.0
+ 11
+435.40000000000003
+ 21
+108.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.4
+ 20
+109.031242
+ 30
+0.0
+ 11
+416.6000000000001
+ 21
+109.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+416.6000000000001
+ 20
+109.031242
+ 30
+0.0
+ 11
+416.6000000000001
+ 21
+139.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+416.6000000000001
+ 20
+139.031242
+ 30
+0.0
+ 11
+415.4
+ 21
+139.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+415.4
+ 20
+139.031242
+ 30
+0.0
+ 11
+415.4
+ 21
+109.031242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+453.00000000000006
+ 20
+112.531242
+ 30
+0.0
+ 11
+453.00000000000006
+ 21
+105.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+453.00000000000006
+ 20
+105.531242
+ 30
+0.0
+ 11
+473.00000000000006
+ 21
+105.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+473.00000000000006
+ 20
+105.531242
+ 30
+0.0
+ 11
+473.00000000000006
+ 21
+112.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+473.00000000000006
+ 20
+112.531242
+ 30
+0.0
+ 11
+453.00000000000006
+ 21
+112.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.25000000000006
+ 20
+120.9630601818182
+ 30
+0.0
+ 11
+490.25000000000006
+ 21
+109.3721510909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.25000000000006
+ 20
+109.3721510909091
+ 30
+0.0
+ 11
+490.75000000000006
+ 21
+109.3721510909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.75000000000006
+ 20
+109.3721510909091
+ 30
+0.0
+ 11
+490.75000000000006
+ 21
+120.9630601818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.75000000000006
+ 20
+120.9630601818182
+ 30
+0.0
+ 11
+490.25000000000006
+ 21
+120.9630601818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.25000000000006
+ 20
+148.69033290909093
+ 30
+0.0
+ 11
+490.25000000000006
+ 21
+137.09942381818183
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.25000000000006
+ 20
+137.09942381818183
+ 30
+0.0
+ 11
+490.75000000000006
+ 21
+137.09942381818183
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.75000000000006
+ 20
+137.09942381818183
+ 30
+0.0
+ 11
+490.75000000000006
+ 21
+148.69033290909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+490.75000000000006
+ 20
+148.69033290909093
+ 30
+0.0
+ 11
+490.25000000000006
+ 21
+148.69033290909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+322.5
+ 20
+109.6221510909091
+ 30
+0.0
+ 11
+327.5
+ 21
+109.6221510909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.5
+ 20
+109.6221510909091
+ 30
+0.0
+ 11
+327.5
+ 21
+120.7130601818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.5
+ 20
+120.7130601818182
+ 30
+0.0
+ 11
+322.5
+ 21
+120.7130601818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+322.5
+ 20
+137.34942381818186
+ 30
+0.0
+ 11
+327.5
+ 21
+137.34942381818186
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.5
+ 20
+137.34942381818186
+ 30
+0.0
+ 11
+327.5
+ 21
+148.44033290909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.5
+ 20
+148.44033290909093
+ 30
+0.0
+ 11
+322.5
+ 21
+148.44033290909093
+ 31
+0.0
+  0
 ENDSEC
   0
 EOF
diff --git a/rocolib/output/PaddleboatWithCamera/tree.png b/rocolib/output/PaddleboatWithCamera/tree.png
index 7e798934132e7dc4dde39c95e2bc4c7c37381757..07f87d30f24eb5051e31012fe9b92c121d4a7872 100644
Binary files a/rocolib/output/PaddleboatWithCamera/tree.png and b/rocolib/output/PaddleboatWithCamera/tree.png differ
diff --git a/rocolib/output/SubESP32Stack/graph-anim.svg b/rocolib/output/SubESP32Stack/graph-anim.svg
index 0ead72827453d3509097885a907a2b26dec14fc3..b58e8ec2cd49fbe9451bac55cde2cac3fbbb35f4 100644
--- a/rocolib/output/SubESP32Stack/graph-anim.svg
+++ b/rocolib/output/SubESP32Stack/graph-anim.svg
@@ -1,19 +1,19 @@
 <?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="61.000000mm" version="1.1" viewBox="0.000000 0.000000 130.000000 61.000000" width="130.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="61.000000mm" version="1.1" viewBox="0.000000 0.000000 178.000000 61.000000" width="178.000000mm">
   <defs/>
   <line stroke="#000000" x1="34.0" x2="10.000000000000002" y1="0.0" y2="0.0"/>
   <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="34.0" y1="0.0" y2="61.00000000000001"/>
   <line stroke="#000000" x1="10.000000000000002" x2="34.0" y1="61.00000000000001" y2="61.00000000000001"/>
   <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="61.00000000000001" y2="0.0"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="0.0" y2="0.0"/>
-  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="70.00000000000001" y1="0.0" y2="61.00000000000001"/>
-  <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="61.00000000000001" y2="61.00000000000001"/>
-  <line stroke="#000000" x1="94.00000000000001" x2="70.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="94.00000000000001" x2="34.0" y1="0.0" y2="0.0"/>
   <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="94.00000000000001" y1="0.0" y2="61.00000000000001"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="94.00000000000001" y1="61.00000000000001" y2="61.00000000000001"/>
-  <line stroke="#000000" x1="130.0" x2="94.00000000000001" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="61.00000000000001" y2="0.0"/>
-  <line stroke="#000000" x1="94.00000000000001" x2="130.0" y1="61.00000000000001" y2="61.00000000000001"/>
+  <line stroke="#000000" x1="34.0" x2="94.00000000000001" y1="61.00000000000001" y2="61.00000000000001"/>
+  <line stroke="#000000" x1="118.00000000000001" x2="94.00000000000001" y1="0.0" y2="0.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="118.00000000000001" x2="118.00000000000001" y1="0.0" y2="61.00000000000001"/>
+  <line stroke="#000000" x1="94.00000000000001" x2="118.00000000000001" y1="61.00000000000001" y2="61.00000000000001"/>
+  <line stroke="#000000" x1="178.00000000000003" x2="118.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="178.00000000000003" x2="178.00000000000003" y1="61.00000000000001" y2="0.0"/>
+  <line stroke="#000000" x1="118.00000000000001" x2="178.00000000000003" y1="61.00000000000001" y2="61.00000000000001"/>
   <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="61.00000000000001" y2="61.00000000000001"/>
   <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="61.00000000000001"/>
   <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="0.0" y2="0.0"/>
@@ -25,30 +25,30 @@
   <line stroke="#888888" x1="32.60000000000001" x2="32.60000000000001" y1="10.5" y2="40.50000000000001"/>
   <line stroke="#888888" x1="32.60000000000001" x2="31.400000000000002" y1="40.50000000000001" y2="40.50000000000001"/>
   <line stroke="#888888" x1="31.400000000000002" x2="31.400000000000002" y1="40.50000000000001" y2="10.5"/>
-  <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="51.50000000000001" y2="33.50000000000001"/>
-  <line stroke="#888888" x1="30.000000000000004" x2="60.00000000000001" y1="33.50000000000001" y2="33.50000000000001"/>
-  <line stroke="#888888" x1="60.00000000000001" x2="60.00000000000001" y1="33.50000000000001" y2="51.50000000000001"/>
-  <line stroke="#888888" x1="60.00000000000001" x2="30.000000000000004" y1="51.50000000000001" y2="51.50000000000001"/>
-  <line stroke="#888888" x1="91.40000000000002" x2="92.60000000000001" y1="10.000000000000002" y2="10.000000000000002"/>
-  <line stroke="#888888" x1="92.60000000000001" x2="92.60000000000001" y1="10.000000000000002" y2="51.00000000000001"/>
-  <line stroke="#888888" x1="92.60000000000001" x2="91.40000000000002" y1="51.00000000000001" y2="51.00000000000001"/>
-  <line stroke="#888888" x1="91.40000000000002" x2="91.40000000000002" y1="51.00000000000001" y2="10.000000000000002"/>
-  <line stroke="#888888" x1="71.4" x2="72.60000000000001" y1="10.5" y2="10.5"/>
-  <line stroke="#888888" x1="72.60000000000001" x2="72.60000000000001" y1="10.5" y2="40.50000000000001"/>
-  <line stroke="#888888" x1="72.60000000000001" x2="71.4" y1="40.50000000000001" y2="40.50000000000001"/>
-  <line stroke="#888888" x1="71.4" x2="71.4" y1="40.50000000000001" y2="10.5"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="14.000000000000002" y2="7.000000000000001"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="117.00000000000001" y1="7.000000000000001" y2="7.000000000000001"/>
-  <line stroke="#888888" x1="117.00000000000001" x2="117.00000000000001" y1="7.000000000000001" y2="14.000000000000002"/>
-  <line stroke="#888888" x1="117.00000000000001" x2="97.00000000000001" y1="14.000000000000002" y2="14.000000000000002"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="22.431818181818187" y2="10.840909090909093"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="10.840909090909093" y2="10.840909090909093"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="10.840909090909093" y2="22.431818181818187"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="22.431818181818187" y2="22.431818181818187"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="50.159090909090914" y2="38.568181818181834"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="38.568181818181834" y2="38.568181818181834"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="38.568181818181834" y2="50.159090909090914"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="50.159090909090914" y2="50.159090909090914"/>
+  <line stroke="#888888" x1="42.0" x2="42.0" y1="51.50000000000001" y2="33.50000000000001"/>
+  <line stroke="#888888" x1="42.0" x2="72.00000000000001" y1="33.50000000000001" y2="33.50000000000001"/>
+  <line stroke="#888888" x1="72.00000000000001" x2="72.00000000000001" y1="33.50000000000001" y2="51.50000000000001"/>
+  <line stroke="#888888" x1="72.00000000000001" x2="42.0" y1="51.50000000000001" y2="51.50000000000001"/>
+  <line stroke="#888888" x1="115.40000000000002" x2="116.60000000000001" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#888888" x1="116.60000000000001" x2="116.60000000000001" y1="10.000000000000002" y2="51.00000000000001"/>
+  <line stroke="#888888" x1="116.60000000000001" x2="115.40000000000002" y1="51.00000000000001" y2="51.00000000000001"/>
+  <line stroke="#888888" x1="115.40000000000002" x2="115.40000000000002" y1="51.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#888888" x1="95.4" x2="96.60000000000001" y1="10.5" y2="10.5"/>
+  <line stroke="#888888" x1="96.60000000000001" x2="96.60000000000001" y1="10.5" y2="40.50000000000001"/>
+  <line stroke="#888888" x1="96.60000000000001" x2="95.4" y1="40.50000000000001" y2="40.50000000000001"/>
+  <line stroke="#888888" x1="95.4" x2="95.4" y1="40.50000000000001" y2="10.5"/>
+  <line stroke="#888888" x1="133.00000000000003" x2="133.00000000000003" y1="14.000000000000002" y2="7.000000000000001"/>
+  <line stroke="#888888" x1="133.00000000000003" x2="153.00000000000003" y1="7.000000000000001" y2="7.000000000000001"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="7.000000000000001" y2="14.000000000000002"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="133.00000000000003" y1="14.000000000000002" y2="14.000000000000002"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="22.431818181818187" y2="10.840909090909093"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="10.840909090909093" y2="10.840909090909093"/>
+  <line stroke="#888888" x1="170.75" x2="170.75" y1="10.840909090909093" y2="22.431818181818187"/>
+  <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="22.431818181818187" y2="22.431818181818187"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="50.159090909090914" y2="38.568181818181834"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="38.568181818181834" y2="38.568181818181834"/>
+  <line stroke="#888888" x1="170.75" x2="170.75" y1="38.568181818181834" y2="50.159090909090914"/>
+  <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="50.159090909090914" y2="50.159090909090914"/>
   <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="11.090909090909095" y2="11.090909090909095"/>
   <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="11.090909090909095" y2="22.181818181818187"/>
   <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="22.181818181818187" y2="22.181818181818187"/>
diff --git a/rocolib/output/SubESP32Stack/graph-autofold-default.dxf b/rocolib/output/SubESP32Stack/graph-autofold-default.dxf
index 8f208cb3b7a9f1e474740f6bffba736fe225e372..ddedbd51b8116ad298509f241f4b202f5ca895d6 100644
--- a/rocolib/output/SubESP32Stack/graph-autofold-default.dxf
+++ b/rocolib/output/SubESP32Stack/graph-autofold-default.dxf
@@ -1039,7 +1039,7 @@ LINE
   8
 cut
  10
-70.00000000000001
+94.00000000000001
  20
 0.0
  30
@@ -1059,13 +1059,13 @@ DOTTED
   8
 90
  10
-70.00000000000001
+94.00000000000001
  20
 0.0
  30
 0.0
  11
-70.00000000000001
+94.00000000000001
  21
 61.00000000000001
  31
@@ -1083,7 +1083,7 @@ cut
  30
 0.0
  11
-70.00000000000001
+94.00000000000001
  21
 61.00000000000001
  31
@@ -1095,13 +1095,13 @@ LINE
   8
 cut
  10
-94.00000000000001
+118.00000000000001
  20
 0.0
  30
 0.0
  11
-70.00000000000001
+94.00000000000001
  21
 0.0
  31
@@ -1115,13 +1115,13 @@ DOTTED
   8
 90
  10
-94.00000000000001
+118.00000000000001
  20
 0.0
  30
 0.0
  11
-94.00000000000001
+118.00000000000001
  21
 61.00000000000001
  31
@@ -1133,13 +1133,13 @@ LINE
   8
 cut
  10
-70.00000000000001
+94.00000000000001
  20
 61.00000000000001
  30
 0.0
  11
-94.00000000000001
+118.00000000000001
  21
 61.00000000000001
  31
@@ -1151,13 +1151,13 @@ LINE
   8
 cut
  10
-130.0
+178.00000000000003
  20
 0.0
  30
 0.0
  11
-94.00000000000001
+118.00000000000001
  21
 0.0
  31
@@ -1169,13 +1169,13 @@ LINE
   8
 cut
  10
-130.0
+178.00000000000003
  20
 61.00000000000001
  30
 0.0
  11
-130.0
+178.00000000000003
  21
 0.0
  31
@@ -1187,13 +1187,13 @@ LINE
   8
 cut
  10
-94.00000000000001
+118.00000000000001
  20
 61.00000000000001
  30
 0.0
  11
-130.0
+178.00000000000003
  21
 61.00000000000001
  31
@@ -1403,13 +1403,13 @@ LINE
   8
 cut
  10
-30.000000000000004
+42.0
  20
 51.50000000000001
  30
 0.0
  11
-30.000000000000004
+42.0
  21
 33.50000000000001
  31
@@ -1421,13 +1421,13 @@ LINE
   8
 cut
  10
-30.000000000000004
+42.0
  20
 33.50000000000001
  30
 0.0
  11
-60.00000000000001
+72.00000000000001
  21
 33.50000000000001
  31
@@ -1439,13 +1439,13 @@ LINE
   8
 cut
  10
-60.00000000000001
+72.00000000000001
  20
 33.50000000000001
  30
 0.0
  11
-60.00000000000001
+72.00000000000001
  21
 51.50000000000001
  31
@@ -1457,13 +1457,13 @@ LINE
   8
 cut
  10
-60.00000000000001
+72.00000000000001
  20
 51.50000000000001
  30
 0.0
  11
-30.000000000000004
+42.0
  21
 51.50000000000001
  31
@@ -1475,13 +1475,13 @@ LINE
   8
 cut
  10
-91.40000000000002
+115.40000000000002
  20
 10.000000000000002
  30
 0.0
  11
-92.60000000000001
+116.60000000000001
  21
 10.000000000000002
  31
@@ -1493,13 +1493,13 @@ LINE
   8
 cut
  10
-92.60000000000001
+116.60000000000001
  20
 10.000000000000002
  30
 0.0
  11
-92.60000000000001
+116.60000000000001
  21
 51.00000000000001
  31
@@ -1511,13 +1511,13 @@ LINE
   8
 cut
  10
-92.60000000000001
+116.60000000000001
  20
 51.00000000000001
  30
 0.0
  11
-91.40000000000002
+115.40000000000002
  21
 51.00000000000001
  31
@@ -1529,13 +1529,13 @@ LINE
   8
 cut
  10
-91.40000000000002
+115.40000000000002
  20
 51.00000000000001
  30
 0.0
  11
-91.40000000000002
+115.40000000000002
  21
 10.000000000000002
  31
@@ -1547,13 +1547,13 @@ LINE
   8
 cut
  10
-71.4
+95.4
  20
 10.5
  30
 0.0
  11
-72.60000000000001
+96.60000000000001
  21
 10.5
  31
@@ -1565,13 +1565,13 @@ LINE
   8
 cut
  10
-72.60000000000001
+96.60000000000001
  20
 10.5
  30
 0.0
  11
-72.60000000000001
+96.60000000000001
  21
 40.50000000000001
  31
@@ -1583,13 +1583,13 @@ LINE
   8
 cut
  10
-72.60000000000001
+96.60000000000001
  20
 40.50000000000001
  30
 0.0
  11
-71.4
+95.4
  21
 40.50000000000001
  31
@@ -1601,13 +1601,13 @@ LINE
   8
 cut
  10
-71.4
+95.4
  20
 40.50000000000001
  30
 0.0
  11
-71.4
+95.4
  21
 10.5
  31
@@ -1619,13 +1619,13 @@ LINE
   8
 cut
  10
-97.00000000000001
+133.00000000000003
  20
 14.000000000000002
  30
 0.0
  11
-97.00000000000001
+133.00000000000003
  21
 7.000000000000001
  31
@@ -1637,13 +1637,13 @@ LINE
   8
 cut
  10
-97.00000000000001
+133.00000000000003
  20
 7.000000000000001
  30
 0.0
  11
-117.00000000000001
+153.00000000000003
  21
 7.000000000000001
  31
@@ -1655,13 +1655,13 @@ LINE
   8
 cut
  10
-117.00000000000001
+153.00000000000003
  20
 7.000000000000001
  30
 0.0
  11
-117.00000000000001
+153.00000000000003
  21
 14.000000000000002
  31
@@ -1673,13 +1673,13 @@ LINE
   8
 cut
  10
-117.00000000000001
+153.00000000000003
  20
 14.000000000000002
  30
 0.0
  11
-97.00000000000001
+133.00000000000003
  21
 14.000000000000002
  31
@@ -1691,13 +1691,13 @@ LINE
   8
 cut
  10
-122.25000000000001
+170.25000000000003
  20
 22.431818181818187
  30
 0.0
  11
-122.25000000000001
+170.25000000000003
  21
 10.840909090909093
  31
@@ -1709,13 +1709,13 @@ LINE
   8
 cut
  10
-122.25000000000001
+170.25000000000003
  20
 10.840909090909093
  30
 0.0
  11
-122.75000000000001
+170.75
  21
 10.840909090909093
  31
@@ -1727,13 +1727,13 @@ LINE
   8
 cut
  10
-122.75000000000001
+170.75
  20
 10.840909090909093
  30
 0.0
  11
-122.75000000000001
+170.75
  21
 22.431818181818187
  31
@@ -1745,13 +1745,13 @@ LINE
   8
 cut
  10
-122.75000000000001
+170.75
  20
 22.431818181818187
  30
 0.0
  11
-122.25000000000001
+170.25000000000003
  21
 22.431818181818187
  31
@@ -1763,13 +1763,13 @@ LINE
   8
 cut
  10
-122.25000000000001
+170.25000000000003
  20
 50.159090909090914
  30
 0.0
  11
-122.25000000000001
+170.25000000000003
  21
 38.568181818181834
  31
@@ -1781,13 +1781,13 @@ LINE
   8
 cut
  10
-122.25000000000001
+170.25000000000003
  20
 38.568181818181834
  30
 0.0
  11
-122.75000000000001
+170.75
  21
 38.568181818181834
  31
@@ -1799,13 +1799,13 @@ LINE
   8
 cut
  10
-122.75000000000001
+170.75
  20
 38.568181818181834
  30
 0.0
  11
-122.75000000000001
+170.75
  21
 50.159090909090914
  31
@@ -1817,13 +1817,13 @@ LINE
   8
 cut
  10
-122.75000000000001
+170.75
  20
 50.159090909090914
  30
 0.0
  11
-122.25000000000001
+170.25000000000003
  21
 50.159090909090914
  31
diff --git a/rocolib/output/SubESP32Stack/graph-autofold-graph.dxf b/rocolib/output/SubESP32Stack/graph-autofold-graph.dxf
index 0c9ce25915f5b7fd15147822f96053a5b4288d7f..f2afe715e016b3b17929cb79409d983365975c44 100644
--- a/rocolib/output/SubESP32Stack/graph-autofold-graph.dxf
+++ b/rocolib/output/SubESP32Stack/graph-autofold-graph.dxf
@@ -1019,7 +1019,7 @@ LINE
   8
 0
  10
-70.00000000000001
+94.00000000000001
  20
 0.0
  30
@@ -1039,13 +1039,13 @@ DOTTED
   8
 0
  10
-70.00000000000001
+94.00000000000001
  20
 0.0
  30
 0.0
  11
-70.00000000000001
+94.00000000000001
  21
 61.00000000000001
  31
@@ -1063,7 +1063,7 @@ LINE
  30
 0.0
  11
-70.00000000000001
+94.00000000000001
  21
 61.00000000000001
  31
@@ -1075,13 +1075,13 @@ LINE
   8
 0
  10
-94.00000000000001
+118.00000000000001
  20
 0.0
  30
 0.0
  11
-70.00000000000001
+94.00000000000001
  21
 0.0
  31
@@ -1095,13 +1095,13 @@ DOTTED
   8
 0
  10
-94.00000000000001
+118.00000000000001
  20
 0.0
  30
 0.0
  11
-94.00000000000001
+118.00000000000001
  21
 61.00000000000001
  31
@@ -1113,13 +1113,13 @@ LINE
   8
 0
  10
-70.00000000000001
+94.00000000000001
  20
 61.00000000000001
  30
 0.0
  11
-94.00000000000001
+118.00000000000001
  21
 61.00000000000001
  31
@@ -1131,13 +1131,13 @@ LINE
   8
 0
  10
-130.0
+178.00000000000003
  20
 0.0
  30
 0.0
  11
-94.00000000000001
+118.00000000000001
  21
 0.0
  31
@@ -1149,13 +1149,13 @@ LINE
   8
 0
  10
-130.0
+178.00000000000003
  20
 61.00000000000001
  30
 0.0
  11
-130.0
+178.00000000000003
  21
 0.0
  31
@@ -1167,13 +1167,13 @@ LINE
   8
 0
  10
-94.00000000000001
+118.00000000000001
  20
 61.00000000000001
  30
 0.0
  11
-130.0
+178.00000000000003
  21
 61.00000000000001
  31
@@ -1383,13 +1383,13 @@ LINE
   8
 0
  10
-30.000000000000004
+42.0
  20
 51.50000000000001
  30
 0.0
  11
-30.000000000000004
+42.0
  21
 33.50000000000001
  31
@@ -1401,13 +1401,13 @@ LINE
   8
 0
  10
-30.000000000000004
+42.0
  20
 33.50000000000001
  30
 0.0
  11
-60.00000000000001
+72.00000000000001
  21
 33.50000000000001
  31
@@ -1419,13 +1419,13 @@ LINE
   8
 0
  10
-60.00000000000001
+72.00000000000001
  20
 33.50000000000001
  30
 0.0
  11
-60.00000000000001
+72.00000000000001
  21
 51.50000000000001
  31
@@ -1437,13 +1437,13 @@ LINE
   8
 0
  10
-60.00000000000001
+72.00000000000001
  20
 51.50000000000001
  30
 0.0
  11
-30.000000000000004
+42.0
  21
 51.50000000000001
  31
@@ -1455,13 +1455,13 @@ LINE
   8
 0
  10
-91.40000000000002
+115.40000000000002
  20
 10.000000000000002
  30
 0.0
  11
-92.60000000000001
+116.60000000000001
  21
 10.000000000000002
  31
@@ -1473,13 +1473,13 @@ LINE
   8
 0
  10
-92.60000000000001
+116.60000000000001
  20
 10.000000000000002
  30
 0.0
  11
-92.60000000000001
+116.60000000000001
  21
 51.00000000000001
  31
@@ -1491,13 +1491,13 @@ LINE
   8
 0
  10
-92.60000000000001
+116.60000000000001
  20
 51.00000000000001
  30
 0.0
  11
-91.40000000000002
+115.40000000000002
  21
 51.00000000000001
  31
@@ -1509,13 +1509,13 @@ LINE
   8
 0
  10
-91.40000000000002
+115.40000000000002
  20
 51.00000000000001
  30
 0.0
  11
-91.40000000000002
+115.40000000000002
  21
 10.000000000000002
  31
@@ -1527,13 +1527,13 @@ LINE
   8
 0
  10
-71.4
+95.4
  20
 10.5
  30
 0.0
  11
-72.60000000000001
+96.60000000000001
  21
 10.5
  31
@@ -1545,13 +1545,13 @@ LINE
   8
 0
  10
-72.60000000000001
+96.60000000000001
  20
 10.5
  30
 0.0
  11
-72.60000000000001
+96.60000000000001
  21
 40.50000000000001
  31
@@ -1563,13 +1563,13 @@ LINE
   8
 0
  10
-72.60000000000001
+96.60000000000001
  20
 40.50000000000001
  30
 0.0
  11
-71.4
+95.4
  21
 40.50000000000001
  31
@@ -1581,13 +1581,13 @@ LINE
   8
 0
  10
-71.4
+95.4
  20
 40.50000000000001
  30
 0.0
  11
-71.4
+95.4
  21
 10.5
  31
@@ -1599,13 +1599,13 @@ LINE
   8
 0
  10
-97.00000000000001
+133.00000000000003
  20
 14.000000000000002
  30
 0.0
  11
-97.00000000000001
+133.00000000000003
  21
 7.000000000000001
  31
@@ -1617,13 +1617,13 @@ LINE
   8
 0
  10
-97.00000000000001
+133.00000000000003
  20
 7.000000000000001
  30
 0.0
  11
-117.00000000000001
+153.00000000000003
  21
 7.000000000000001
  31
@@ -1635,13 +1635,13 @@ LINE
   8
 0
  10
-117.00000000000001
+153.00000000000003
  20
 7.000000000000001
  30
 0.0
  11
-117.00000000000001
+153.00000000000003
  21
 14.000000000000002
  31
@@ -1653,13 +1653,13 @@ LINE
   8
 0
  10
-117.00000000000001
+153.00000000000003
  20
 14.000000000000002
  30
 0.0
  11
-97.00000000000001
+133.00000000000003
  21
 14.000000000000002
  31
@@ -1671,13 +1671,13 @@ LINE
   8
 0
  10
-122.25000000000001
+170.25000000000003
  20
 22.431818181818187
  30
 0.0
  11
-122.25000000000001
+170.25000000000003
  21
 10.840909090909093
  31
@@ -1689,13 +1689,13 @@ LINE
   8
 0
  10
-122.25000000000001
+170.25000000000003
  20
 10.840909090909093
  30
 0.0
  11
-122.75000000000001
+170.75
  21
 10.840909090909093
  31
@@ -1707,13 +1707,13 @@ LINE
   8
 0
  10
-122.75000000000001
+170.75
  20
 10.840909090909093
  30
 0.0
  11
-122.75000000000001
+170.75
  21
 22.431818181818187
  31
@@ -1725,13 +1725,13 @@ LINE
   8
 0
  10
-122.75000000000001
+170.75
  20
 22.431818181818187
  30
 0.0
  11
-122.25000000000001
+170.25000000000003
  21
 22.431818181818187
  31
@@ -1743,13 +1743,13 @@ LINE
   8
 0
  10
-122.25000000000001
+170.25000000000003
  20
 50.159090909090914
  30
 0.0
  11
-122.25000000000001
+170.25000000000003
  21
 38.568181818181834
  31
@@ -1761,13 +1761,13 @@ LINE
   8
 0
  10
-122.25000000000001
+170.25000000000003
  20
 38.568181818181834
  30
 0.0
  11
-122.75000000000001
+170.75
  21
 38.568181818181834
  31
@@ -1779,13 +1779,13 @@ LINE
   8
 0
  10
-122.75000000000001
+170.75
  20
 38.568181818181834
  30
 0.0
  11
-122.75000000000001
+170.75
  21
 50.159090909090914
  31
@@ -1797,13 +1797,13 @@ LINE
   8
 0
  10
-122.75000000000001
+170.75
  20
 50.159090909090914
  30
 0.0
  11
-122.25000000000001
+170.25000000000003
  21
 50.159090909090914
  31
diff --git a/rocolib/output/SubESP32Stack/graph-lasercutter.svg b/rocolib/output/SubESP32Stack/graph-lasercutter.svg
index 019e1ced230a99d52a4ee93a0bd215f967330fce..8412057c2f9cabf96898e1b00e9840e719ab1e40 100644
--- a/rocolib/output/SubESP32Stack/graph-lasercutter.svg
+++ b/rocolib/output/SubESP32Stack/graph-lasercutter.svg
@@ -1,19 +1,19 @@
 <?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="61.000000mm" version="1.1" viewBox="0.000000 0.000000 130.000000 61.000000" width="130.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="61.000000mm" version="1.1" viewBox="0.000000 0.000000 178.000000 61.000000" width="178.000000mm">
   <defs/>
   <line stroke="#000000" x1="34.0" x2="10.000000000000002" y1="0.0" y2="0.0"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="34.0" y1="0.0" y2="61.00000000000001"/>
   <line stroke="#000000" x1="10.000000000000002" x2="34.0" y1="61.00000000000001" y2="61.00000000000001"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="61.00000000000001" y2="0.0"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="0.0" y2="0.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="0.0" y2="61.00000000000001"/>
-  <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="61.00000000000001" y2="61.00000000000001"/>
-  <line stroke="#000000" x1="94.00000000000001" x2="70.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="94.00000000000001" x2="34.0" y1="0.0" y2="0.0"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="94.00000000000001" y1="0.0" y2="61.00000000000001"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="94.00000000000001" y1="61.00000000000001" y2="61.00000000000001"/>
-  <line stroke="#000000" x1="130.0" x2="94.00000000000001" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="61.00000000000001" y2="0.0"/>
-  <line stroke="#000000" x1="94.00000000000001" x2="130.0" y1="61.00000000000001" y2="61.00000000000001"/>
+  <line stroke="#000000" x1="34.0" x2="94.00000000000001" y1="61.00000000000001" y2="61.00000000000001"/>
+  <line stroke="#000000" x1="118.00000000000001" x2="94.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="118.00000000000001" x2="118.00000000000001" y1="0.0" y2="61.00000000000001"/>
+  <line stroke="#000000" x1="94.00000000000001" x2="118.00000000000001" y1="61.00000000000001" y2="61.00000000000001"/>
+  <line stroke="#000000" x1="178.00000000000003" x2="118.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="178.00000000000003" x2="178.00000000000003" y1="61.00000000000001" y2="0.0"/>
+  <line stroke="#000000" x1="118.00000000000001" x2="178.00000000000003" y1="61.00000000000001" y2="61.00000000000001"/>
   <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="61.00000000000001" y2="61.00000000000001"/>
   <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="61.00000000000001"/>
   <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="0.0" y2="0.0"/>
@@ -25,30 +25,30 @@
   <line stroke="#888888" x1="32.60000000000001" x2="32.60000000000001" y1="10.5" y2="40.50000000000001"/>
   <line stroke="#888888" x1="32.60000000000001" x2="31.400000000000002" y1="40.50000000000001" y2="40.50000000000001"/>
   <line stroke="#888888" x1="31.400000000000002" x2="31.400000000000002" y1="40.50000000000001" y2="10.5"/>
-  <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="51.50000000000001" y2="33.50000000000001"/>
-  <line stroke="#888888" x1="30.000000000000004" x2="60.00000000000001" y1="33.50000000000001" y2="33.50000000000001"/>
-  <line stroke="#888888" x1="60.00000000000001" x2="60.00000000000001" y1="33.50000000000001" y2="51.50000000000001"/>
-  <line stroke="#888888" x1="60.00000000000001" x2="30.000000000000004" y1="51.50000000000001" y2="51.50000000000001"/>
-  <line stroke="#888888" x1="91.40000000000002" x2="92.60000000000001" y1="10.000000000000002" y2="10.000000000000002"/>
-  <line stroke="#888888" x1="92.60000000000001" x2="92.60000000000001" y1="10.000000000000002" y2="51.00000000000001"/>
-  <line stroke="#888888" x1="92.60000000000001" x2="91.40000000000002" y1="51.00000000000001" y2="51.00000000000001"/>
-  <line stroke="#888888" x1="91.40000000000002" x2="91.40000000000002" y1="51.00000000000001" y2="10.000000000000002"/>
-  <line stroke="#888888" x1="71.4" x2="72.60000000000001" y1="10.5" y2="10.5"/>
-  <line stroke="#888888" x1="72.60000000000001" x2="72.60000000000001" y1="10.5" y2="40.50000000000001"/>
-  <line stroke="#888888" x1="72.60000000000001" x2="71.4" y1="40.50000000000001" y2="40.50000000000001"/>
-  <line stroke="#888888" x1="71.4" x2="71.4" y1="40.50000000000001" y2="10.5"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="14.000000000000002" y2="7.000000000000001"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="117.00000000000001" y1="7.000000000000001" y2="7.000000000000001"/>
-  <line stroke="#888888" x1="117.00000000000001" x2="117.00000000000001" y1="7.000000000000001" y2="14.000000000000002"/>
-  <line stroke="#888888" x1="117.00000000000001" x2="97.00000000000001" y1="14.000000000000002" y2="14.000000000000002"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="22.431818181818187" y2="10.840909090909093"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="10.840909090909093" y2="10.840909090909093"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="10.840909090909093" y2="22.431818181818187"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="22.431818181818187" y2="22.431818181818187"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="50.159090909090914" y2="38.568181818181834"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="38.568181818181834" y2="38.568181818181834"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="38.568181818181834" y2="50.159090909090914"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="50.159090909090914" y2="50.159090909090914"/>
+  <line stroke="#888888" x1="42.0" x2="42.0" y1="51.50000000000001" y2="33.50000000000001"/>
+  <line stroke="#888888" x1="42.0" x2="72.00000000000001" y1="33.50000000000001" y2="33.50000000000001"/>
+  <line stroke="#888888" x1="72.00000000000001" x2="72.00000000000001" y1="33.50000000000001" y2="51.50000000000001"/>
+  <line stroke="#888888" x1="72.00000000000001" x2="42.0" y1="51.50000000000001" y2="51.50000000000001"/>
+  <line stroke="#888888" x1="115.40000000000002" x2="116.60000000000001" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#888888" x1="116.60000000000001" x2="116.60000000000001" y1="10.000000000000002" y2="51.00000000000001"/>
+  <line stroke="#888888" x1="116.60000000000001" x2="115.40000000000002" y1="51.00000000000001" y2="51.00000000000001"/>
+  <line stroke="#888888" x1="115.40000000000002" x2="115.40000000000002" y1="51.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#888888" x1="95.4" x2="96.60000000000001" y1="10.5" y2="10.5"/>
+  <line stroke="#888888" x1="96.60000000000001" x2="96.60000000000001" y1="10.5" y2="40.50000000000001"/>
+  <line stroke="#888888" x1="96.60000000000001" x2="95.4" y1="40.50000000000001" y2="40.50000000000001"/>
+  <line stroke="#888888" x1="95.4" x2="95.4" y1="40.50000000000001" y2="10.5"/>
+  <line stroke="#888888" x1="133.00000000000003" x2="133.00000000000003" y1="14.000000000000002" y2="7.000000000000001"/>
+  <line stroke="#888888" x1="133.00000000000003" x2="153.00000000000003" y1="7.000000000000001" y2="7.000000000000001"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="7.000000000000001" y2="14.000000000000002"/>
+  <line stroke="#888888" x1="153.00000000000003" x2="133.00000000000003" y1="14.000000000000002" y2="14.000000000000002"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="22.431818181818187" y2="10.840909090909093"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="10.840909090909093" y2="10.840909090909093"/>
+  <line stroke="#888888" x1="170.75" x2="170.75" y1="10.840909090909093" y2="22.431818181818187"/>
+  <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="22.431818181818187" y2="22.431818181818187"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="50.159090909090914" y2="38.568181818181834"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="38.568181818181834" y2="38.568181818181834"/>
+  <line stroke="#888888" x1="170.75" x2="170.75" y1="38.568181818181834" y2="50.159090909090914"/>
+  <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="50.159090909090914" y2="50.159090909090914"/>
   <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="11.090909090909095" y2="11.090909090909095"/>
   <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="11.090909090909095" y2="22.181818181818187"/>
   <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="22.181818181818187" y2="22.181818181818187"/>
diff --git a/rocolib/output/SubESP32Stack/graph-model.png b/rocolib/output/SubESP32Stack/graph-model.png
index 2698512e1b6584e12fb58931d8f6b6a3c23b60f2..d4f8545c36e01b4560493eea6d0e56531889c7f6 100644
Binary files a/rocolib/output/SubESP32Stack/graph-model.png and b/rocolib/output/SubESP32Stack/graph-model.png differ
diff --git a/rocolib/output/SubESP32Stack/graph-model.stl b/rocolib/output/SubESP32Stack/graph-model.stl
index d5b0fdd7beda1adb75b0a431488cce81887690c0..0086478306e7df0fce29610d6e95b9b7eec5deb0 100644
--- a/rocolib/output/SubESP32Stack/graph-model.stl
+++ b/rocolib/output/SubESP32Stack/graph-model.stl
@@ -99,211 +99,211 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0120 0.0030 0.0040
-vertex 0.0120 0.0030 0.0000
-vertex 0.0120 0.0210 0.0040
+vertex 0.0120 -0.0305 0.0000
+vertex 0.0120 0.0030 -0.0080
+vertex 0.0120 0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
+vertex 0.0120 0.0030 -0.0080
 vertex 0.0120 -0.0305 0.0000
-vertex 0.0120 0.0030 -0.0260
-vertex 0.0120 0.0030 0.0000
+vertex 0.0120 0.0030 -0.0380
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0120 0.0030 -0.0260
-vertex 0.0120 -0.0305 -0.0360
-vertex 0.0120 0.0305 -0.0360
+vertex 0.0120 0.0305 0.0000
+vertex 0.0120 0.0210 -0.0080
+vertex 0.0120 0.0210 -0.0380
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0120 -0.0305 -0.0360
-vertex 0.0120 0.0030 -0.0260
-vertex 0.0120 -0.0305 0.0000
+vertex 0.0120 0.0210 -0.0080
+vertex 0.0120 0.0305 0.0000
+vertex 0.0120 0.0030 -0.0080
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0120 0.0210 -0.0260
-vertex 0.0120 0.0305 -0.0360
-vertex 0.0120 0.0305 0.0000
+vertex 0.0120 0.0030 -0.0380
+vertex 0.0120 -0.0305 -0.0600
+vertex 0.0120 0.0305 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0120 0.0305 -0.0360
-vertex 0.0120 0.0210 -0.0260
-vertex 0.0120 0.0030 -0.0260
+vertex 0.0120 -0.0305 -0.0600
+vertex 0.0120 0.0030 -0.0380
+vertex 0.0120 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0120 0.0210 0.0040
-vertex 0.0120 0.0030 0.0000
-vertex 0.0120 0.0210 0.0000
+vertex 0.0120 0.0210 -0.0380
+vertex 0.0120 0.0305 -0.0600
+vertex 0.0120 0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0120 0.0305 0.0000
-vertex 0.0120 0.0210 0.0000
-vertex 0.0120 0.0210 -0.0260
+vertex 0.0120 0.0305 -0.0600
+vertex 0.0120 0.0210 -0.0380
+vertex 0.0120 0.0030 -0.0380
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0120 -0.0305 -0.0360
-vertex 0.0094 -0.0200 -0.0360
-vertex 0.0106 -0.0200 -0.0360
+vertex 0.0120 -0.0305 -0.0600
+vertex 0.0094 -0.0200 -0.0600
+vertex 0.0106 -0.0200 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0094 -0.0200 -0.0360
-vertex 0.0120 -0.0305 -0.0360
-vertex -0.0094 -0.0205 -0.0360
+vertex 0.0094 -0.0200 -0.0600
+vertex 0.0120 -0.0305 -0.0600
+vertex -0.0094 -0.0205 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0120 -0.0305 -0.0360
-vertex 0.0106 -0.0200 -0.0360
-vertex 0.0106 0.0100 -0.0360
+vertex 0.0120 -0.0305 -0.0600
+vertex 0.0106 -0.0200 -0.0600
+vertex 0.0106 0.0100 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0120 0.0305 -0.0360
-vertex 0.0106 0.0100 -0.0360
-vertex 0.0094 0.0100 -0.0360
+vertex 0.0120 0.0305 -0.0600
+vertex 0.0106 0.0100 -0.0600
+vertex 0.0094 0.0100 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0106 0.0100 -0.0360
-vertex 0.0120 0.0305 -0.0360
-vertex 0.0120 -0.0305 -0.0360
+vertex 0.0106 0.0100 -0.0600
+vertex 0.0120 0.0305 -0.0600
+vertex 0.0120 -0.0305 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0120 0.0305 -0.0360
-vertex 0.0094 0.0100 -0.0360
-vertex -0.0094 0.0205 -0.0360
+vertex 0.0120 0.0305 -0.0600
+vertex 0.0094 0.0100 -0.0600
+vertex -0.0094 0.0205 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0094 -0.0200 -0.0360
-vertex -0.0094 -0.0205 -0.0360
-vertex 0.0094 0.0100 -0.0360
+vertex 0.0094 -0.0200 -0.0600
+vertex -0.0094 -0.0205 -0.0600
+vertex 0.0094 0.0100 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0094 -0.0205 -0.0360
-vertex -0.0120 -0.0305 -0.0360
-vertex -0.0106 -0.0205 -0.0360
+vertex -0.0094 -0.0205 -0.0600
+vertex -0.0120 -0.0305 -0.0600
+vertex -0.0106 -0.0205 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0120 -0.0305 -0.0360
-vertex -0.0094 -0.0205 -0.0360
-vertex 0.0120 -0.0305 -0.0360
+vertex -0.0120 -0.0305 -0.0600
+vertex -0.0094 -0.0205 -0.0600
+vertex 0.0120 -0.0305 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0106 -0.0205 -0.0360
-vertex -0.0120 -0.0305 -0.0360
-vertex -0.0120 0.0305 -0.0360
+vertex -0.0106 -0.0205 -0.0600
+vertex -0.0120 -0.0305 -0.0600
+vertex -0.0120 0.0305 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0094 0.0205 -0.0360
-vertex -0.0106 0.0205 -0.0360
-vertex -0.0120 0.0305 -0.0360
+vertex -0.0094 0.0205 -0.0600
+vertex -0.0106 0.0205 -0.0600
+vertex -0.0120 0.0305 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0120 0.0305 -0.0360
-vertex -0.0106 0.0205 -0.0360
-vertex -0.0106 -0.0205 -0.0360
+vertex -0.0120 0.0305 -0.0600
+vertex -0.0106 0.0205 -0.0600
+vertex -0.0106 -0.0205 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0094 0.0205 -0.0360
-vertex -0.0120 0.0305 -0.0360
-vertex 0.0120 0.0305 -0.0360
+vertex -0.0094 0.0205 -0.0600
+vertex -0.0120 0.0305 -0.0600
+vertex 0.0120 0.0305 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0094 -0.0205 -0.0360
-vertex -0.0094 0.0205 -0.0360
-vertex 0.0094 0.0100 -0.0360
+vertex -0.0094 -0.0205 -0.0600
+vertex -0.0094 0.0205 -0.0600
+vertex 0.0094 0.0100 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0120 -0.0305 -0.0360
-vertex -0.0120 -0.0235 -0.0330
-vertex -0.0120 -0.0165 -0.0330
+vertex -0.0120 -0.0305 -0.0600
+vertex -0.0120 -0.0235 -0.0450
+vertex -0.0120 -0.0165 -0.0450
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0120 -0.0235 -0.0330
-vertex -0.0120 -0.0305 -0.0360
-vertex -0.0120 -0.0235 -0.0130
+vertex -0.0120 -0.0235 -0.0450
+vertex -0.0120 -0.0305 -0.0600
+vertex -0.0120 -0.0235 -0.0250
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0120 0.0305 -0.0360
-vertex -0.0120 -0.0165 -0.0330
-vertex -0.0120 -0.0165 -0.0130
+vertex -0.0120 0.0305 -0.0600
+vertex -0.0120 -0.0165 -0.0450
+vertex -0.0120 -0.0165 -0.0250
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0120 -0.0165 -0.0330
-vertex -0.0120 0.0305 -0.0360
-vertex -0.0120 -0.0305 -0.0360
+vertex -0.0120 -0.0165 -0.0450
+vertex -0.0120 0.0305 -0.0600
+vertex -0.0120 -0.0305 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0120 -0.0235 -0.0130
+vertex -0.0120 -0.0235 -0.0250
 vertex -0.0120 -0.0305 0.0000
-vertex -0.0120 -0.0165 -0.0130
+vertex -0.0120 -0.0165 -0.0250
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
 vertex -0.0120 -0.0305 0.0000
-vertex -0.0120 -0.0235 -0.0130
-vertex -0.0120 -0.0305 -0.0360
+vertex -0.0120 -0.0235 -0.0250
+vertex -0.0120 -0.0305 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0120 -0.0165 -0.0130
+vertex -0.0120 -0.0165 -0.0250
 vertex -0.0120 0.0305 0.0000
-vertex -0.0120 0.0305 -0.0360
+vertex -0.0120 0.0305 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
 vertex -0.0120 0.0305 0.0000
-vertex -0.0120 -0.0165 -0.0130
+vertex -0.0120 -0.0165 -0.0250
 vertex -0.0120 -0.0305 0.0000
 endloop
 endfacet
diff --git a/rocolib/output/SubESP32Stack/graph-silhouette.dxf b/rocolib/output/SubESP32Stack/graph-silhouette.dxf
index 0c9ce25915f5b7fd15147822f96053a5b4288d7f..f2afe715e016b3b17929cb79409d983365975c44 100644
--- a/rocolib/output/SubESP32Stack/graph-silhouette.dxf
+++ b/rocolib/output/SubESP32Stack/graph-silhouette.dxf
@@ -1019,7 +1019,7 @@ LINE
   8
 0
  10
-70.00000000000001
+94.00000000000001
  20
 0.0
  30
@@ -1039,13 +1039,13 @@ DOTTED
   8
 0
  10
-70.00000000000001
+94.00000000000001
  20
 0.0
  30
 0.0
  11
-70.00000000000001
+94.00000000000001
  21
 61.00000000000001
  31
@@ -1063,7 +1063,7 @@ LINE
  30
 0.0
  11
-70.00000000000001
+94.00000000000001
  21
 61.00000000000001
  31
@@ -1075,13 +1075,13 @@ LINE
   8
 0
  10
-94.00000000000001
+118.00000000000001
  20
 0.0
  30
 0.0
  11
-70.00000000000001
+94.00000000000001
  21
 0.0
  31
@@ -1095,13 +1095,13 @@ DOTTED
   8
 0
  10
-94.00000000000001
+118.00000000000001
  20
 0.0
  30
 0.0
  11
-94.00000000000001
+118.00000000000001
  21
 61.00000000000001
  31
@@ -1113,13 +1113,13 @@ LINE
   8
 0
  10
-70.00000000000001
+94.00000000000001
  20
 61.00000000000001
  30
 0.0
  11
-94.00000000000001
+118.00000000000001
  21
 61.00000000000001
  31
@@ -1131,13 +1131,13 @@ LINE
   8
 0
  10
-130.0
+178.00000000000003
  20
 0.0
  30
 0.0
  11
-94.00000000000001
+118.00000000000001
  21
 0.0
  31
@@ -1149,13 +1149,13 @@ LINE
   8
 0
  10
-130.0
+178.00000000000003
  20
 61.00000000000001
  30
 0.0
  11
-130.0
+178.00000000000003
  21
 0.0
  31
@@ -1167,13 +1167,13 @@ LINE
   8
 0
  10
-94.00000000000001
+118.00000000000001
  20
 61.00000000000001
  30
 0.0
  11
-130.0
+178.00000000000003
  21
 61.00000000000001
  31
@@ -1383,13 +1383,13 @@ LINE
   8
 0
  10
-30.000000000000004
+42.0
  20
 51.50000000000001
  30
 0.0
  11
-30.000000000000004
+42.0
  21
 33.50000000000001
  31
@@ -1401,13 +1401,13 @@ LINE
   8
 0
  10
-30.000000000000004
+42.0
  20
 33.50000000000001
  30
 0.0
  11
-60.00000000000001
+72.00000000000001
  21
 33.50000000000001
  31
@@ -1419,13 +1419,13 @@ LINE
   8
 0
  10
-60.00000000000001
+72.00000000000001
  20
 33.50000000000001
  30
 0.0
  11
-60.00000000000001
+72.00000000000001
  21
 51.50000000000001
  31
@@ -1437,13 +1437,13 @@ LINE
   8
 0
  10
-60.00000000000001
+72.00000000000001
  20
 51.50000000000001
  30
 0.0
  11
-30.000000000000004
+42.0
  21
 51.50000000000001
  31
@@ -1455,13 +1455,13 @@ LINE
   8
 0
  10
-91.40000000000002
+115.40000000000002
  20
 10.000000000000002
  30
 0.0
  11
-92.60000000000001
+116.60000000000001
  21
 10.000000000000002
  31
@@ -1473,13 +1473,13 @@ LINE
   8
 0
  10
-92.60000000000001
+116.60000000000001
  20
 10.000000000000002
  30
 0.0
  11
-92.60000000000001
+116.60000000000001
  21
 51.00000000000001
  31
@@ -1491,13 +1491,13 @@ LINE
   8
 0
  10
-92.60000000000001
+116.60000000000001
  20
 51.00000000000001
  30
 0.0
  11
-91.40000000000002
+115.40000000000002
  21
 51.00000000000001
  31
@@ -1509,13 +1509,13 @@ LINE
   8
 0
  10
-91.40000000000002
+115.40000000000002
  20
 51.00000000000001
  30
 0.0
  11
-91.40000000000002
+115.40000000000002
  21
 10.000000000000002
  31
@@ -1527,13 +1527,13 @@ LINE
   8
 0
  10
-71.4
+95.4
  20
 10.5
  30
 0.0
  11
-72.60000000000001
+96.60000000000001
  21
 10.5
  31
@@ -1545,13 +1545,13 @@ LINE
   8
 0
  10
-72.60000000000001
+96.60000000000001
  20
 10.5
  30
 0.0
  11
-72.60000000000001
+96.60000000000001
  21
 40.50000000000001
  31
@@ -1563,13 +1563,13 @@ LINE
   8
 0
  10
-72.60000000000001
+96.60000000000001
  20
 40.50000000000001
  30
 0.0
  11
-71.4
+95.4
  21
 40.50000000000001
  31
@@ -1581,13 +1581,13 @@ LINE
   8
 0
  10
-71.4
+95.4
  20
 40.50000000000001
  30
 0.0
  11
-71.4
+95.4
  21
 10.5
  31
@@ -1599,13 +1599,13 @@ LINE
   8
 0
  10
-97.00000000000001
+133.00000000000003
  20
 14.000000000000002
  30
 0.0
  11
-97.00000000000001
+133.00000000000003
  21
 7.000000000000001
  31
@@ -1617,13 +1617,13 @@ LINE
   8
 0
  10
-97.00000000000001
+133.00000000000003
  20
 7.000000000000001
  30
 0.0
  11
-117.00000000000001
+153.00000000000003
  21
 7.000000000000001
  31
@@ -1635,13 +1635,13 @@ LINE
   8
 0
  10
-117.00000000000001
+153.00000000000003
  20
 7.000000000000001
  30
 0.0
  11
-117.00000000000001
+153.00000000000003
  21
 14.000000000000002
  31
@@ -1653,13 +1653,13 @@ LINE
   8
 0
  10
-117.00000000000001
+153.00000000000003
  20
 14.000000000000002
  30
 0.0
  11
-97.00000000000001
+133.00000000000003
  21
 14.000000000000002
  31
@@ -1671,13 +1671,13 @@ LINE
   8
 0
  10
-122.25000000000001
+170.25000000000003
  20
 22.431818181818187
  30
 0.0
  11
-122.25000000000001
+170.25000000000003
  21
 10.840909090909093
  31
@@ -1689,13 +1689,13 @@ LINE
   8
 0
  10
-122.25000000000001
+170.25000000000003
  20
 10.840909090909093
  30
 0.0
  11
-122.75000000000001
+170.75
  21
 10.840909090909093
  31
@@ -1707,13 +1707,13 @@ LINE
   8
 0
  10
-122.75000000000001
+170.75
  20
 10.840909090909093
  30
 0.0
  11
-122.75000000000001
+170.75
  21
 22.431818181818187
  31
@@ -1725,13 +1725,13 @@ LINE
   8
 0
  10
-122.75000000000001
+170.75
  20
 22.431818181818187
  30
 0.0
  11
-122.25000000000001
+170.25000000000003
  21
 22.431818181818187
  31
@@ -1743,13 +1743,13 @@ LINE
   8
 0
  10
-122.25000000000001
+170.25000000000003
  20
 50.159090909090914
  30
 0.0
  11
-122.25000000000001
+170.25000000000003
  21
 38.568181818181834
  31
@@ -1761,13 +1761,13 @@ LINE
   8
 0
  10
-122.25000000000001
+170.25000000000003
  20
 38.568181818181834
  30
 0.0
  11
-122.75000000000001
+170.75
  21
 38.568181818181834
  31
@@ -1779,13 +1779,13 @@ LINE
   8
 0
  10
-122.75000000000001
+170.75
  20
 38.568181818181834
  30
 0.0
  11
-122.75000000000001
+170.75
  21
 50.159090909090914
  31
@@ -1797,13 +1797,13 @@ LINE
   8
 0
  10
-122.75000000000001
+170.75
  20
 50.159090909090914
  30
 0.0
  11
-122.25000000000001
+170.25000000000003
  21
 50.159090909090914
  31