diff --git a/rocolib/builders/boat/BoatWithDCMountBuilder.py b/rocolib/builders/boat/BoatWithDCMountBuilder.py
index d1f15499b8c308b1281ebc6cefef3fc365416343..55e0c5e7ca8ce124d3f2391c4aae69fbf043f952 100644
--- a/rocolib/builders/boat/BoatWithDCMountBuilder.py
+++ b/rocolib/builders/boat/BoatWithDCMountBuilder.py
@@ -24,7 +24,7 @@ c.addConnection(("boat", "portedge"), ("split0", "topedge0"))
 c.addConnection(("boat", "staredge"), ("split1", "topedge0"))
 
 c.addConnection(("dcMount","rightArmInterface"), ("split0", "botedge1"), angle=-180)
-c.addConnection(("dcMount","rightArmInterface"), ("split1", "botedge1"), tabWidth=5)
+c.addConnection(("dcMount","leftArmInterface"), ("split1", "botedge1"), tabWidth=5, angle=-180)
 
 c.inheritInterface("topPort", ("split0", "botedge0"))
 c.inheritInterface("botPort", ("split0", "botedge2"))
diff --git a/rocolib/builders/boat/DCMotorMountBuilder.py b/rocolib/builders/boat/DCMotorMountBuilder.py
index 1394269c5bb9b2d77a5d2af874a0b849d9ec5d37..c283d6d17c0765ee4306228440b581c3ce5e3e63 100644
--- a/rocolib/builders/boat/DCMotorMountBuilder.py
+++ b/rocolib/builders/boat/DCMotorMountBuilder.py
@@ -30,17 +30,17 @@ c.addConnection(("dcMount", "face2"),
                    mode="hole", offset=Function(params=("motorWidth"), fnstring="(10, 0)"))
 
 c.addConstConstraint(("leftArm", "w"), 10)
-c.addConstraint(("leftArm", "l"), "mountWidth") #DEPTH OF BOAT - 3 for the tab
+c.addConstraint(("leftArm", "l"), "supportLength") #DEPTH OF BOAT - 3 for the tab
 
 c.addConstConstraint(("rightArm", "w"), 10)
-c.addConstraint(("rightArm", "l"), "mountWidth") #DEPTH OF BOAT
+c.addConstraint(("rightArm", "l"), "supportLength") #DEPTH OF BOAT
 
 c.addConstraint(("dcMount", "length"), "mountWidth") #boat width
 c.addConstConstraint(("dcMount", "width"), 30)
 c.addConstConstraint(("dcMount", "depth"), 10)
 
-c.join(("dcMount", "topedge1"), ("leftArm", "r")) #l/r, not t/b
-c.join(("dcMount", "botedge1"), ("rightArm", "r"))
+c.addConnection(("dcMount", "topedge1"), ("leftArm", "r"), angle=-90) #l/r, not t/b
+c.addConnection(("dcMount", "botedge1"), ("rightArm", "r"), angle=-90)
 
 c.inheritInterface("leftArmInterface", ("leftArm", "l"))
 c.inheritInterface("rightArmInterface", ("rightArm", "l"))
diff --git a/rocolib/library/BoatWithDCMount.yaml b/rocolib/library/BoatWithDCMount.yaml
index 7d26e88d4697adb215189f60fcc8e3aacea7cf50..4837a1a30798ff3cef4525b2e2f380e0e75b21b2 100644
--- a/rocolib/library/BoatWithDCMount.yaml
+++ b/rocolib/library/BoatWithDCMount.yaml
@@ -12,17 +12,18 @@ connections:
     - topedge0
   - {}
   connection2:
-  - &id001
-    - dcMount
+  - - dcMount
     - rightArmInterface
   - - split0
     - botedge1
   - angle: -180
   connection3:
-  - *id001
+  - - dcMount
+    - leftArmInterface
   - - split1
     - botedge1
-  - tabWidth: 5
+  - angle: -180
+    tabWidth: 5
 interfaces:
   boat.portedge:
     interface: portedge
@@ -30,6 +31,18 @@ interfaces:
   boat.staredge:
     interface: staredge
     subcomponent: boat
+  botPort:
+    interface: botedge2
+    subcomponent: split0
+  botStar:
+    interface: botedge0
+    subcomponent: split1
+  topPort:
+    interface: botedge0
+    subcomponent: split0
+  topStar:
+    interface: botedge2
+    subcomponent: split1
 parameters:
   boat.depth:
     defaultValue: 20
@@ -81,7 +94,7 @@ parameters:
       minValue: 0
       units: mm
       valueType: (float, int)
-source: ../builders/BoatWithDCMountBuilder.py
+source: ../builders/boat/BoatWithDCMountBuilder.py
 subcomponents:
   boat:
     classname: BoatBase
@@ -115,7 +128,7 @@ subcomponents:
     parameters:
       botlength:
         function: (x[0]-5, 10, x[1]-5)
-        parameter: &id002
+        parameter: &id001
         - topDistance
         - botDistance
       toplength:
@@ -127,7 +140,7 @@ subcomponents:
     parameters:
       botlength:
         function: (x[1]-5, 10, x[0]-5)
-        parameter: *id002
+        parameter: *id001
       toplength:
         function: (x,)
         parameter: boat.length
diff --git a/rocolib/library/DCMotorMount.yaml b/rocolib/library/DCMotorMount.yaml
index bb8982d0e17690089e8d42f1951446b5255a0fdb..e01f0a7edf51545ad82c99e1659d380153e2b3a3 100644
--- a/rocolib/library/DCMotorMount.yaml
+++ b/rocolib/library/DCMotorMount.yaml
@@ -22,13 +22,13 @@ connections:
     - topedge1
   - - leftArm
     - r
-  - {}
+  - angle: -90
   connection3:
   - - dcMount
     - botedge1
   - - rightArm
     - r
-  - {}
+  - angle: -90
 interfaces:
   leftArmInterface:
     interface: l
@@ -53,7 +53,7 @@ parameters:
     defaultValue: 60
     spec:
       parameterType: length
-source: ../builders/DCMotorMountBuilder.py
+source: ../builders/boat/DCMotorMountBuilder.py
 subcomponents:
   cutout1:
     classname: Cutout
@@ -84,16 +84,12 @@ subcomponents:
     kwargs: {}
     parameters:
       l:
-        parameter: mountWidth
-      w:
-        parameter: depth
-        subcomponent: dcMount
+        parameter: supportLength
+      w: 10
   rightArm:
     classname: Rectangle
     kwargs: {}
     parameters:
       l:
-        parameter: mountWidth
-      w:
-        parameter: depth
-        subcomponent: dcMount
+        parameter: supportLength
+      w: 10
diff --git a/rocolib/output/.DS_Store b/rocolib/output/.DS_Store
index d0240b8151172433945a5f7bfa514e069eca61b9..10880832d6173374d62b9ec42431aec6baa82c86 100644
Binary files a/rocolib/output/.DS_Store and b/rocolib/output/.DS_Store differ
diff --git a/rocolib/output/BoatWithDCMount/graph-anim.svg b/rocolib/output/BoatWithDCMount/graph-anim.svg
index 0f09577f03fab17fb8b8e9f71206838651d81a9e..34616e1ec3d7a630446036b1a9ff2547a35d6ee6 100644
--- a/rocolib/output/BoatWithDCMount/graph-anim.svg
+++ b/rocolib/output/BoatWithDCMount/graph-anim.svg
@@ -1,128 +1,137 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="207.703296mm" version="1.1" viewBox="0.000000 0.000000 242.733402 207.703296" width="242.733402mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="207.703296mm" version="1.1" viewBox="0.000000 0.000000 182.733402 207.703296" width="182.733402mm">
   <defs/>
-  <line opacity="0.5" stroke="#0000ff" x1="219.99999999999997" x2="219.99999999999997" y1="53.851648000000004" y2="153.851648"/>
-  <line opacity="0.5" stroke="#0000ff" x1="169.99999999999997" x2="169.99999999999997" y1="53.851648000000004" y2="153.851648"/>
-  <line opacity="0.12111894159084342" stroke="#0000ff" x1="194.99999999999997" x2="169.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/>
-  <line opacity="0.12111894159084342" stroke="#0000ff" x1="219.99999999999997" x2="194.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/>
-  <line opacity="0.4468854644851019" stroke="#0000ff" x1="194.99999999999997" x2="169.99999999999997" y1="-7.134504187433777e-08" y2="53.851648000000004"/>
-  <line stroke="#000000" x1="161.51320686867427" x2="155.7566034343371" y1="33.97156470018156" y2="39.81150361779138"/>
-  <line stroke="#000000" x1="194.99999999999997" x2="161.51320686867427" y1="-7.13450560851925e-08" y2="33.97156470018156"/>
-  <line opacity="1.0" stroke="#0000ff" x1="169.99999999999997" x2="155.7566034343371" y1="53.851648000000004" y2="39.81150361779138"/>
-  <line opacity="1.0" stroke="#ff0000" x1="169.99999999999997" x2="149.99999999999994" y1="53.851648000000004" y2="45.6514425354012"/>
-  <line stroke="#000000" x1="155.7566034343371" x2="149.99999999999994" y1="39.81150361779138" y2="45.6514425354012"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="149.99999999999994" x2="149.99999999999994" y1="53.851648000000004" y2="45.651442535401195"/>
-  <line opacity="0.1475836176504332" stroke="#0000ff" x1="169.99999999999997" x2="149.99999999999994" y1="53.851648000000004" y2="53.851648000000004"/>
-  <line stroke="#000000" x1="147.26659817846704" x2="149.99999999999994" y1="53.85164800000001" y2="53.85164800000001"/>
-  <line stroke="#000000" x1="147.26659817846704" x2="147.26659817846704" y1="45.6514425354012" y2="53.85164800000001"/>
-  <line stroke="#000000" x1="149.99999999999994" x2="147.26659817846704" y1="45.6514425354012" y2="45.6514425354012"/>
-  <line opacity="0.1475836176504332" stroke="#0000ff" x1="149.99999999999997" x2="170.0" y1="153.851648" y2="153.851648"/>
-  <line opacity="1.0" stroke="#ff0000" x1="149.99999999999997" x2="170.0" y1="162.05185346459885" y2="153.851648"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="149.99999999999997" x2="149.99999999999997" y1="162.05185346459885" y2="153.851648"/>
-  <line stroke="#000000" x1="149.99999999999997" x2="155.75660343433714" y1="162.05185346459885" y2="167.89179238220865"/>
-  <line opacity="1.0" stroke="#0000ff" x1="155.75660343433714" x2="170.0" y1="167.89179238220865" y2="153.851648"/>
-  <line opacity="0.4468854644851019" stroke="#0000ff" x1="195.0" x2="170.0" y1="207.70329607134505" y2="153.851648"/>
-  <line stroke="#000000" x1="161.51320686867436" x2="195.0" y1="173.73173129981845" y2="207.70329607134505"/>
-  <line stroke="#000000" x1="155.75660343433714" x2="161.51320686867436" y1="167.89179238220865" y2="173.73173129981845"/>
-  <line opacity="0.12111894159084342" stroke="#0000ff" x1="170.0" x2="195.0" y1="153.851648" y2="153.851648"/>
-  <line opacity="0.12111894159084342" stroke="#0000ff" x1="195.0" x2="219.99999999999997" y1="153.851648" y2="153.851648"/>
-  <line opacity="0.4468854644851019" stroke="#0000ff" x1="195.0" x2="219.99999999999997" y1="207.70329607134505" y2="153.851648"/>
-  <line stroke="#000000" x1="228.48679313132564" x2="234.2433965656628" y1="173.73173129981845" y2="167.89179238220862"/>
-  <line stroke="#000000" x1="195.0" x2="228.48679313132564" y1="207.70329607134505" y2="173.73173129981845"/>
-  <line opacity="1.0" stroke="#0000ff" x1="219.99999999999997" x2="234.2433965656628" y1="153.851648" y2="167.89179238220862"/>
-  <line opacity="1.0" stroke="#ff0000" x1="219.99999999999997" x2="239.99999999999997" y1="153.851648" y2="162.05185346459876"/>
-  <line stroke="#000000" x1="234.2433965656628" x2="239.99999999999997" y1="167.89179238220862" y2="162.05185346459876"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="239.99999999999997" x2="239.99999999999997" y1="153.85164799999998" y2="162.05185346459876"/>
-  <line opacity="0.1475836176504332" stroke="#0000ff" x1="219.99999999999997" x2="239.99999999999997" y1="153.851648" y2="153.85164799999998"/>
-  <line stroke="#000000" x1="242.7334018215329" x2="239.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/>
-  <line stroke="#000000" x1="242.7334018215329" x2="242.7334018215329" y1="162.05185346459876" y2="153.85164799999998"/>
-  <line stroke="#000000" x1="239.99999999999997" x2="242.7334018215329" y1="162.05185346459876" y2="162.05185346459876"/>
-  <line opacity="0.1475836176504332" stroke="#0000ff" x1="239.99999999999991" x2="219.99999999999991" y1="53.851648" y2="53.85164800000001"/>
-  <line opacity="1.0" stroke="#ff0000" x1="239.99999999999991" x2="219.99999999999991" y1="45.651442535401195" y2="53.85164800000001"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="239.99999999999991" x2="239.99999999999991" y1="45.651442535401195" y2="53.851648"/>
-  <line stroke="#000000" x1="239.99999999999991" x2="234.24339656566272" y1="45.651442535401195" y2="39.81150361779138"/>
-  <line opacity="1.0" stroke="#0000ff" x1="234.24339656566272" x2="219.99999999999991" y1="39.81150361779138" y2="53.85164800000001"/>
-  <line opacity="0.4468854644851019" stroke="#0000ff" x1="194.9999999999999" x2="219.99999999999991" y1="-7.134499924177363e-08" y2="53.85164800000002"/>
-  <line stroke="#000000" x1="228.48679313132556" x2="194.9999999999999" y1="33.971564700181574" y2="-7.134499924177363e-08"/>
-  <line stroke="#000000" x1="234.24339656566272" x2="228.48679313132556" y1="39.811503617791395" y2="33.971564700181574"/>
-  <line stroke="#000000" x1="242.73340182153285" x2="239.99999999999991" y1="45.651442535401195" y2="45.651442535401195"/>
-  <line stroke="#000000" x1="242.73340182153285" x2="242.73340182153285" y1="53.851648000000004" y2="45.651442535401195"/>
-  <line stroke="#000000" x1="239.99999999999991" x2="242.73340182153285" y1="53.851648000000004" y2="53.851648000000004"/>
-  <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999991" y1="138.85164799999998" y2="53.851648"/>
-  <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999997" y1="148.851648" y2="138.85164799999998"/>
-  <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999997" y1="153.85164799999998" y2="148.851648"/>
-  <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/>
-  <line stroke="#000000" x1="239.99999999999991" x2="239.99999999999991" y1="53.851648" y2="53.851648"/>
-  <line stroke="#000000" x1="147.26659817846706" x2="149.99999999999997" y1="162.05185346459885" y2="162.05185346459885"/>
-  <line stroke="#000000" x1="147.26659817846706" x2="147.26659817846706" y1="153.851648" y2="162.05185346459885"/>
-  <line stroke="#000000" x1="149.99999999999997" x2="147.26659817846706" y1="153.851648" y2="153.851648"/>
-  <line stroke="#000000" x1="149.99999999999997" x2="149.99999999999997" y1="148.85164800000004" y2="153.851648"/>
-  <line opacity="1.0" stroke="#ff0000" x1="149.99999999999997" x2="149.99999999999997" y1="138.85164800000004" y2="148.85164800000004"/>
-  <line stroke="#000000" x1="149.99999999999994" x2="149.99999999999997" y1="53.851648000000004" y2="138.85164800000004"/>
-  <line stroke="#000000" x1="149.99999999999994" x2="149.99999999999994" y1="53.851648000000004" y2="53.851648000000004"/>
-  <line stroke="#000000" x1="149.99999999999997" x2="149.99999999999997" y1="153.851648" y2="153.851648"/>
-  <line stroke="#000000" x1="99.99999999999999" x2="149.99999999999997" y1="148.85164800000004" y2="148.85164800000004"/>
-  <line stroke="#000000" x1="149.99999999999997" x2="99.99999999999999" y1="138.85164800000004" y2="138.85164800000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="50.0" x2="99.99999999999999" y1="138.85164800000004" y2="138.85164800000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="50.0" x2="100.0" y1="148.85164800000004" y2="148.85164800000004"/>
-  <line stroke="#000000" x1="50.0" x2="0.0" y1="138.85164800000004" y2="138.85164800000007"/>
-  <line stroke="#000000" x1="0.0" x2="50.0" y1="148.85164800000007" y2="148.85164800000004"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="138.85164800000007" y2="148.85164800000007"/>
-  <line stroke="#000000" x1="50.0" x2="50.0" y1="108.85164800000004" y2="138.85164800000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="50.0" x2="99.99999999999999" y1="108.85164800000004" y2="108.85164800000003"/>
-  <line stroke="#000000" x1="100.0" x2="99.99999999999999" y1="138.85164800000004" y2="108.85164800000003"/>
-  <line stroke="#000000" x1="50.0" x2="50.0" y1="98.85164800000004" y2="108.85164800000004"/>
-  <line stroke="#000000" x1="100.0" x2="50.0" y1="98.85164800000003" y2="98.85164800000004"/>
-  <line stroke="#000000" x1="100.0" x2="100.0" y1="108.85164800000003" y2="98.85164800000003"/>
-  <line stroke="#000000" x1="50.0" x2="50.0" y1="148.85164800000004" y2="178.85164800000004"/>
-  <line stroke="#000000" x1="100.0" x2="100.0" y1="178.85164800000004" y2="148.85164800000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="100.0" x2="50.0" y1="178.85164800000004" y2="178.85164800000004"/>
-  <line stroke="#000000" x1="100.0" x2="100.0" y1="188.85164800000004" y2="178.85164800000004"/>
-  <line stroke="#000000" x1="50.0" x2="100.0" y1="188.85164800000004" y2="188.85164800000004"/>
-  <line stroke="#000000" x1="50.0" x2="50.0" y1="178.85164800000004" y2="188.85164800000004"/>
-  <line stroke="#888888" x1="161.40786804847943" x2="159.13799662747846" y1="37.35482121234262" y2="39.65755243235412"/>
-  <line stroke="#888888" x1="159.13799662747846" x2="158.78191171333694" y1="39.65755243235412" y2="39.306548822798916"/>
-  <line stroke="#888888" x1="158.78191171333694" x2="161.05178313433782" y1="39.306548822798916" y2="37.003817602787414"/>
-  <line stroke="#888888" x1="161.05178313433782" x2="161.40786804847943" y1="37.003817602787414" y2="37.35482121234262"/>
-  <line stroke="#888888" x1="147.94994863385025" x2="149.31664954461675" y1="48.38484435693414" y2="48.38484435693414"/>
-  <line stroke="#888888" x1="149.31664954461675" x2="149.31664954461675" y1="48.38484435693414" y2="51.118246178467075"/>
-  <line stroke="#888888" x1="149.31664954461675" x2="147.94994863385025" y1="51.118246178467075" y2="51.118246178467075"/>
-  <line stroke="#888888" x1="159.13799662747854" x2="161.40786804847946" y1="168.0457435676459" y2="170.3484747876574"/>
-  <line stroke="#888888" x1="161.40786804847946" x2="161.05178313433788" y1="170.3484747876574" y2="170.69947839721263"/>
-  <line stroke="#888888" x1="161.05178313433788" x2="158.78191171333697" y1="170.69947839721263" y2="168.39674717720112"/>
-  <line stroke="#888888" x1="158.78191171333697" x2="159.13799662747854" y1="168.39674717720112" y2="168.0457435676459"/>
-  <line stroke="#888888" x1="228.5921319515205" x2="230.86200337252146" y1="170.34847478765738" y2="168.04574356764587"/>
-  <line stroke="#888888" x1="230.86200337252146" x2="231.21808828666303" y1="168.04574356764587" y2="168.3967471772011"/>
-  <line stroke="#888888" x1="231.21808828666303" x2="228.9482168656621" y1="168.3967471772011" y2="170.69947839721257"/>
-  <line stroke="#888888" x1="228.9482168656621" x2="228.5921319515205" y1="170.69947839721257" y2="170.34847478765738"/>
-  <line stroke="#888888" x1="242.0500513661497" x2="240.68335045538322" y1="159.31845164306583" y2="159.31845164306583"/>
-  <line stroke="#888888" x1="240.68335045538322" x2="240.68335045538322" y1="159.31845164306583" y2="156.5850498215329"/>
-  <line stroke="#888888" x1="240.68335045538322" x2="242.0500513661497" y1="156.5850498215329" y2="156.5850498215329"/>
-  <line stroke="#888888" x1="230.86200337252137" x2="228.59213195152043" y1="39.65755243235414" y2="37.354821212342635"/>
-  <line stroke="#888888" x1="228.59213195152043" x2="228.94821686566198" y1="37.354821212342635" y2="37.003817602787414"/>
-  <line stroke="#888888" x1="228.94821686566198" x2="231.21808828666295" y1="37.003817602787414" y2="39.306548822798916"/>
-  <line stroke="#888888" x1="231.21808828666295" x2="230.86200337252137" y1="39.306548822798916" y2="39.65755243235414"/>
-  <line stroke="#888888" x1="242.05005136614963" x2="240.68335045538316" y1="51.11824617846707" y2="51.11824617846707"/>
-  <line stroke="#888888" x1="240.68335045538316" x2="240.68335045538316" y1="51.11824617846707" y2="48.38484435693413"/>
-  <line stroke="#888888" x1="240.68335045538316" x2="242.05005136614963" y1="48.38484435693413" y2="48.38484435693413"/>
-  <line stroke="#888888" x1="147.94994863385028" x2="149.31664954461675" y1="156.58504982153295" y2="156.58504982153295"/>
-  <line stroke="#888888" x1="149.31664954461675" x2="149.31664954461675" y1="156.58504982153295" y2="159.31845164306588"/>
-  <line stroke="#888888" x1="149.31664954461675" x2="147.94994863385028" y1="159.31845164306588" y2="159.31845164306588"/>
-  <line stroke="#888888" x1="71.0" x2="71.0" y1="117.85164800000001" y2="109.85164800000001"/>
-  <line stroke="#888888" x1="71.0" x2="79.0" y1="109.85164800000001" y2="109.85164800000001"/>
-  <line stroke="#888888" x1="79.0" x2="79.0" y1="109.85164800000001" y2="117.85164800000001"/>
-  <line stroke="#888888" x1="79.0" x2="71.0" y1="117.85164800000001" y2="117.85164800000001"/>
-  <line stroke="#888888" x1="83.58333333333334" x2="66.4166666666667" y1="106.60164800000003" y2="106.60164800000004"/>
-  <line stroke="#888888" x1="66.4166666666667" x2="66.4166666666667" y1="106.60164800000004" y2="106.10164800000004"/>
-  <line stroke="#888888" x1="66.4166666666667" x2="83.58333333333334" y1="106.10164800000004" y2="106.10164800000003"/>
-  <line stroke="#888888" x1="83.58333333333334" x2="83.58333333333334" y1="106.10164800000003" y2="106.60164800000003"/>
-  <line stroke="#888888" x1="71.00000000000001" x2="71.00000000000001" y1="177.85164800000004" y2="169.851648"/>
-  <line stroke="#888888" x1="71.00000000000001" x2="79.00000000000001" y1="169.851648" y2="169.851648"/>
-  <line stroke="#888888" x1="79.00000000000001" x2="79.00000000000001" y1="169.851648" y2="177.85164800000004"/>
-  <line stroke="#888888" x1="79.00000000000001" x2="71.00000000000001" y1="177.85164800000004" y2="177.85164800000004"/>
-  <line stroke="#888888" x1="66.66666666666666" x2="61.666666666666664" y1="186.351648" y2="186.351648"/>
-  <line stroke="#888888" x1="61.666666666666664" x2="66.66666666666666" y1="186.351648" y2="181.351648"/>
-  <line stroke="#888888" x1="66.66666666666666" x2="83.33333333333334" y1="181.351648" y2="181.351648"/>
-  <line stroke="#888888" x1="83.33333333333334" x2="88.33333333333334" y1="181.351648" y2="186.351648"/>
-  <line stroke="#888888" x1="88.33333333333334" x2="83.33333333333334" y1="186.351648" y2="186.351648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="160.0" x2="160.0" y1="53.851648000000004" y2="153.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="109.99999999999999" x2="109.99999999999999" y1="53.851648000000004" y2="153.851648"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="135.0" x2="109.99999999999999" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="160.0" x2="135.0" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="135.0" x2="109.99999999999999" y1="-7.134504187433777e-08" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="101.51320686867432" x2="95.75660343433715" y1="33.97156470018156" y2="39.81150361779138"/>
+  <line stroke="#000000" x1="135.0" x2="101.51320686867432" y1="-7.13450560851925e-08" y2="33.97156470018156"/>
+  <line opacity="1.0" stroke="#0000ff" x1="109.99999999999999" x2="95.75660343433715" y1="53.851648000000004" y2="39.81150361779138"/>
+  <line opacity="1.0" stroke="#ff0000" x1="109.99999999999999" x2="89.99999999999997" y1="53.851648000000004" y2="45.6514425354012"/>
+  <line stroke="#000000" x1="95.75660343433715" x2="89.99999999999997" y1="39.81150361779138" y2="45.6514425354012"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="89.99999999999997" x2="89.99999999999997" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="109.99999999999999" x2="89.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="87.26659817846705" x2="89.99999999999997" y1="53.85164800000001" y2="53.85164800000001"/>
+  <line stroke="#000000" x1="87.26659817846705" x2="87.26659817846705" y1="45.6514425354012" y2="53.85164800000001"/>
+  <line stroke="#000000" x1="89.99999999999997" x2="87.26659817846705" y1="45.6514425354012" y2="45.6514425354012"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="90.0" x2="110.00000000000001" y1="153.851648" y2="153.851648"/>
+  <line opacity="1.0" stroke="#ff0000" x1="90.0" x2="110.00000000000001" y1="162.05185346459885" y2="153.851648"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="90.0" x2="90.0" y1="162.05185346459885" y2="153.851648"/>
+  <line stroke="#000000" x1="90.0" x2="95.7566034343372" y1="162.05185346459885" y2="167.89179238220865"/>
+  <line opacity="1.0" stroke="#0000ff" x1="95.7566034343372" x2="110.00000000000001" y1="167.89179238220865" y2="153.851648"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="135.00000000000003" x2="110.00000000000001" y1="207.70329607134505" y2="153.851648"/>
+  <line stroke="#000000" x1="101.51320686867436" x2="135.00000000000003" y1="173.73173129981845" y2="207.70329607134505"/>
+  <line stroke="#000000" x1="95.7566034343372" x2="101.51320686867436" y1="167.89179238220865" y2="173.73173129981845"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="110.00000000000001" x2="135.00000000000003" y1="153.851648" y2="153.851648"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="135.00000000000003" x2="160.0" y1="153.851648" y2="153.851648"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="135.00000000000003" x2="160.0" y1="207.70329607134505" y2="153.851648"/>
+  <line stroke="#000000" x1="168.48679313132567" x2="174.2433965656628" y1="173.73173129981845" y2="167.89179238220862"/>
+  <line stroke="#000000" x1="135.00000000000003" x2="168.48679313132567" y1="207.70329607134505" y2="173.73173129981845"/>
+  <line opacity="1.0" stroke="#0000ff" x1="160.0" x2="174.2433965656628" y1="153.851648" y2="167.89179238220862"/>
+  <line opacity="1.0" stroke="#ff0000" x1="160.00000000000003" x2="179.99999999999997" y1="153.851648" y2="162.05185346459876"/>
+  <line stroke="#000000" x1="174.2433965656628" x2="179.99999999999997" y1="167.89179238220862" y2="162.05185346459876"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="179.99999999999997" x2="179.99999999999997" y1="153.85164799999998" y2="162.05185346459876"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="160.0" x2="179.99999999999997" y1="153.851648" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="182.73340182153294" x2="179.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="182.73340182153294" x2="182.73340182153294" y1="162.05185346459876" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="179.99999999999997" x2="182.73340182153294" y1="162.05185346459876" y2="162.05185346459876"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="179.99999999999991" x2="159.99999999999991" y1="53.851648" y2="53.85164800000001"/>
+  <line opacity="1.0" stroke="#ff0000" x1="179.9999999999999" x2="159.99999999999991" y1="45.651442535401195" y2="53.85164800000001"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="179.9999999999999" x2="179.99999999999991" y1="45.651442535401195" y2="53.851648"/>
+  <line stroke="#000000" x1="179.99999999999991" x2="174.24339656566278" y1="45.651442535401195" y2="39.81150361779138"/>
+  <line opacity="1.0" stroke="#0000ff" x1="174.24339656566278" x2="159.99999999999991" y1="39.81150361779138" y2="53.85164800000001"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="134.9999999999999" x2="159.99999999999991" y1="-7.134499924177363e-08" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="168.48679313132558" x2="134.9999999999999" y1="33.971564700181574" y2="-7.134499924177363e-08"/>
+  <line stroke="#000000" x1="174.24339656566278" x2="168.48679313132558" y1="39.811503617791395" y2="33.971564700181574"/>
+  <line stroke="#000000" x1="182.73340182153285" x2="179.99999999999991" y1="45.651442535401195" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="182.73340182153285" x2="182.73340182153285" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="179.99999999999991" x2="182.73340182153285" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="179.99999999999994" x2="179.99999999999991" y1="98.851648" y2="53.851648"/>
+  <line stroke="#000000" x1="179.99999999999994" x2="179.99999999999994" y1="108.85164799999998" y2="98.851648"/>
+  <line stroke="#000000" x1="179.99999999999997" x2="179.99999999999994" y1="153.85164799999998" y2="108.85164799999998"/>
+  <line stroke="#000000" x1="179.99999999999997" x2="179.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="179.99999999999991" x2="179.99999999999991" y1="53.851648" y2="53.851648"/>
+  <line stroke="#000000" x1="87.26659817846708" x2="90.0" y1="162.05185346459885" y2="162.05185346459885"/>
+  <line stroke="#000000" x1="87.26659817846708" x2="87.26659817846708" y1="153.851648" y2="162.05185346459885"/>
+  <line stroke="#000000" x1="90.0" x2="87.26659817846708" y1="153.851648" y2="153.851648"/>
+  <line stroke="#000000" x1="89.99999999999999" x2="90.0" y1="108.851648" y2="153.851648"/>
+  <line opacity="1.0" stroke="#ff0000" x1="89.99999999999999" x2="89.99999999999999" y1="98.85164800000001" y2="108.851648"/>
+  <line stroke="#000000" x1="89.99999999999997" x2="89.99999999999999" y1="53.851648000000004" y2="98.85164800000001"/>
+  <line stroke="#000000" x1="89.99999999999997" x2="89.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="153.851648" y2="153.851648"/>
+  <line stroke="#000000" x1="70.0" x2="89.99999999999999" y1="108.851648" y2="108.851648"/>
+  <line opacity="0.5" stroke="#ff0000" x1="70.0" x2="70.0" y1="98.85164800000001" y2="108.851648"/>
+  <line stroke="#000000" x1="89.99999999999999" x2="70.0" y1="98.85164800000001" y2="98.85164800000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="20.000000000000004" x2="19.999999999999986" y1="108.85164800000003" y2="98.85164800000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="19.999999999999986" x2="69.99999999999999" y1="98.85164800000003" y2="98.85164800000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="20.000000000000004" x2="70.0" y1="108.85164800000003" y2="108.851648"/>
+  <line stroke="#000000" x1="20.000000000000004" x2="0.0" y1="98.85164800000003" y2="98.85164800000003"/>
+  <line stroke="#000000" x1="0.0" x2="20.000000000000004" y1="108.85164800000003" y2="108.85164800000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="98.85164800000003" y2="108.85164800000003"/>
+  <line stroke="#000000" x1="19.999999999999986" x2="20.000000000000004" y1="68.85164800000001" y2="98.85164800000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="19.999999999999986" x2="69.99999999999999" y1="68.85164800000001" y2="68.85164800000001"/>
+  <line stroke="#000000" x1="70.0" x2="69.99999999999999" y1="98.85164800000001" y2="68.85164800000001"/>
+  <line stroke="#000000" x1="19.99999999999997" x2="19.99999999999997" y1="58.85164800000002" y2="68.85164800000001"/>
+  <line stroke="#000000" x1="69.99999999999999" x2="19.99999999999997" y1="58.851648000000004" y2="58.85164800000002"/>
+  <line stroke="#000000" x1="69.99999999999999" x2="69.99999999999999" y1="68.851648" y2="58.851648000000004"/>
+  <line stroke="#000000" x1="20.000000000000004" x2="20.000000000000018" y1="108.85164800000003" y2="138.85164800000004"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.0" y1="138.85164800000004" y2="108.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="20.000000000000018" y1="138.85164800000004" y2="138.85164800000004"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="148.85164800000004" y2="138.85164800000004"/>
+  <line stroke="#000000" x1="20.000000000000018" x2="70.00000000000001" y1="148.85164800000004" y2="148.85164800000004"/>
+  <line stroke="#000000" x1="20.000000000000018" x2="20.000000000000018" y1="138.85164800000004" y2="148.85164800000004"/>
+  <line stroke="#888888" x1="101.40786804847944" x2="99.1379966274785" y1="37.35482121234262" y2="39.65755243235412"/>
+  <line stroke="#888888" x1="99.1379966274785" x2="98.78191171333694" y1="39.65755243235412" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="98.78191171333694" x2="101.05178313433787" y1="39.306548822798916" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="101.05178313433787" x2="101.40786804847944" y1="37.003817602787414" y2="37.35482121234262"/>
+  <line stroke="#888888" x1="87.9499486338503" x2="89.31664954461677" y1="48.38484435693414" y2="48.38484435693414"/>
+  <line stroke="#888888" x1="89.31664954461677" x2="89.31664954461677" y1="48.38484435693414" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="89.31664954461677" x2="87.9499486338503" y1="51.118246178467075" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="99.13799662747854" x2="101.40786804847947" y1="168.0457435676459" y2="170.3484747876574"/>
+  <line stroke="#888888" x1="101.40786804847947" x2="101.05178313433791" y1="170.3484747876574" y2="170.69947839721263"/>
+  <line stroke="#888888" x1="101.05178313433791" x2="98.78191171333697" y1="170.69947839721263" y2="168.39674717720112"/>
+  <line stroke="#888888" x1="98.78191171333697" x2="99.13799662747854" y1="168.39674717720112" y2="168.0457435676459"/>
+  <line stroke="#888888" x1="168.59213195152054" x2="170.86200337252149" y1="170.34847478765738" y2="168.04574356764587"/>
+  <line stroke="#888888" x1="170.86200337252149" x2="171.21808828666306" y1="168.04574356764587" y2="168.3967471772011"/>
+  <line stroke="#888888" x1="171.21808828666306" x2="168.9482168656621" y1="168.3967471772011" y2="170.69947839721257"/>
+  <line stroke="#888888" x1="168.9482168656621" x2="168.59213195152054" y1="170.69947839721257" y2="170.34847478765738"/>
+  <line stroke="#888888" x1="182.0500513661497" x2="180.68335045538325" y1="159.31845164306583" y2="159.31845164306583"/>
+  <line stroke="#888888" x1="180.68335045538325" x2="180.68335045538325" y1="159.31845164306583" y2="156.5850498215329"/>
+  <line stroke="#888888" x1="180.68335045538325" x2="182.0500513661497" y1="156.5850498215329" y2="156.5850498215329"/>
+  <line stroke="#888888" x1="170.8620033725214" x2="168.59213195152049" y1="39.65755243235414" y2="37.354821212342635"/>
+  <line stroke="#888888" x1="168.59213195152049" x2="168.94821686566203" y1="37.354821212342635" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="168.94821686566203" x2="171.21808828666295" y1="37.003817602787414" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="171.21808828666295" x2="170.8620033725214" y1="39.306548822798916" y2="39.65755243235414"/>
+  <line stroke="#888888" x1="182.05005136614966" x2="180.6833504553832" y1="51.11824617846707" y2="51.11824617846707"/>
+  <line stroke="#888888" x1="180.6833504553832" x2="180.6833504553832" y1="51.11824617846707" y2="48.38484435693413"/>
+  <line stroke="#888888" x1="180.6833504553832" x2="182.05005136614966" y1="48.38484435693413" y2="48.38484435693413"/>
+  <line stroke="#888888" x1="175.99999999999997" x2="175.99999999999997" y1="105.76831466666665" y2="101.93498133333333"/>
+  <line stroke="#888888" x1="175.99999999999997" x2="176.49999999999997" y1="101.93498133333333" y2="101.93498133333333"/>
+  <line stroke="#888888" x1="176.49999999999997" x2="176.49999999999997" y1="101.93498133333333" y2="105.76831466666665"/>
+  <line stroke="#888888" x1="176.49999999999997" x2="175.99999999999997" y1="105.76831466666665" y2="105.76831466666665"/>
+  <line stroke="#888888" x1="87.94994863385031" x2="89.31664954461678" y1="156.58504982153295" y2="156.58504982153295"/>
+  <line stroke="#888888" x1="89.31664954461678" x2="89.31664954461678" y1="156.58504982153295" y2="159.31845164306588"/>
+  <line stroke="#888888" x1="89.31664954461678" x2="87.94994863385031" y1="159.31845164306588" y2="159.31845164306588"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="3.7500000000000004" y1="102.18498133333337" y2="102.18498133333337"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="105.5183146666667" y2="102.18498133333337"/>
+  <line stroke="#888888" x1="3.7500000000000004" x2="1.2500000000000002" y1="105.5183146666667" y2="105.5183146666667"/>
+  <line stroke="#888888" x1="40.999999999999986" x2="40.999999999999986" y1="77.85164800000001" y2="69.85164800000001"/>
+  <line stroke="#888888" x1="40.999999999999986" x2="48.999999999999986" y1="69.85164800000001" y2="69.85164800000001"/>
+  <line stroke="#888888" x1="48.999999999999986" x2="48.999999999999986" y1="69.85164800000001" y2="77.85164800000001"/>
+  <line stroke="#888888" x1="48.999999999999986" x2="40.999999999999986" y1="77.85164800000001" y2="77.85164800000001"/>
+  <line stroke="#888888" x1="53.5833333333333" x2="36.41666666666664" y1="66.60164800000003" y2="66.60164800000003"/>
+  <line stroke="#888888" x1="36.41666666666664" x2="36.41666666666664" y1="66.60164800000003" y2="66.10164800000001"/>
+  <line stroke="#888888" x1="36.41666666666664" x2="53.5833333333333" y1="66.10164800000001" y2="66.10164800000001"/>
+  <line stroke="#888888" x1="53.5833333333333" x2="53.5833333333333" y1="66.10164800000001" y2="66.60164800000003"/>
+  <line stroke="#888888" x1="41.0" x2="41.0" y1="137.851648" y2="129.85164800000004"/>
+  <line stroke="#888888" x1="41.0" x2="49.00000000000001" y1="129.85164800000004" y2="129.85164800000004"/>
+  <line stroke="#888888" x1="49.00000000000001" x2="49.00000000000001" y1="129.85164800000004" y2="137.851648"/>
+  <line stroke="#888888" x1="49.00000000000001" x2="41.0" y1="137.851648" y2="137.851648"/>
+  <line stroke="#888888" x1="36.66666666666669" x2="31.66666666666669" y1="146.35164800000004" y2="146.35164800000004"/>
+  <line stroke="#888888" x1="31.66666666666669" x2="36.66666666666669" y1="146.35164800000004" y2="141.35164800000004"/>
+  <line stroke="#888888" x1="36.66666666666669" x2="53.33333333333335" y1="141.35164800000004" y2="141.35164800000004"/>
+  <line stroke="#888888" x1="53.33333333333335" x2="58.33333333333335" y1="141.35164800000004" y2="146.35164800000004"/>
+  <line stroke="#888888" x1="58.33333333333335" x2="53.33333333333335" y1="146.35164800000004" y2="146.35164800000004"/>
 </svg>
diff --git a/rocolib/output/BoatWithDCMount/graph-autofold-default.dxf b/rocolib/output/BoatWithDCMount/graph-autofold-default.dxf
index d782c14efd44209d0f498fc3e85b6c290397dab3..fdb87e422a54c1fa3e1a7afc2b9bf86fb918445d 100644
--- a/rocolib/output/BoatWithDCMount/graph-autofold-default.dxf
+++ b/rocolib/output/BoatWithDCMount/graph-autofold-default.dxf
@@ -493,7 +493,7 @@ TABLE
   2
 LAYER
  70
-13
+14
   0
 LAYER
   2
@@ -625,6 +625,16 @@ LAYER
   6
 CONTINUOUS
   0
+LAYER
+  2
+-90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
 ENDTAB
   0
 TABLE
@@ -1025,13 +1035,13 @@ DOTTED
   8
 90
  10
-219.99999999999997
+160.0
  20
 53.851648000000004
  30
 0.0
  11
-219.99999999999997
+160.0
  21
 153.851648
  31
@@ -1045,13 +1055,13 @@ DOTTED
   8
 90
  10
-169.99999999999997
+109.99999999999999
  20
 53.851648000000004
  30
 0.0
  11
-169.99999999999997
+109.99999999999999
  21
 153.851648
  31
@@ -1065,13 +1075,13 @@ DOTTED
   8
 21.801409486351815
  10
-194.99999999999997
+135.0
  20
 53.851648000000004
  30
 0.0
  11
-169.99999999999997
+109.99999999999999
  21
 53.851648000000004
  31
@@ -1085,13 +1095,13 @@ DOTTED
   8
 21.801409486351815
  10
-219.99999999999997
+160.0
  20
 53.851648000000004
  30
 0.0
  11
-194.99999999999997
+135.0
  21
 53.851648000000004
  31
@@ -1105,13 +1115,13 @@ DOTTED
   8
 80.43938360731835
  10
-194.99999999999997
+135.0
  20
 -7.134504187433777e-08
  30
 0.0
  11
-169.99999999999997
+109.99999999999999
  21
 53.851648000000004
  31
@@ -1123,13 +1133,13 @@ LINE
   8
 cut
  10
-161.51320686867427
+101.51320686867432
  20
 33.97156470018156
  30
 0.0
  11
-155.7566034343371
+95.75660343433715
  21
 39.81150361779138
  31
@@ -1141,13 +1151,13 @@ LINE
   8
 cut
  10
-194.99999999999997
+135.0
  20
 -7.13450560851925e-08
  30
 0.0
  11
-161.51320686867427
+101.51320686867432
  21
 33.97156470018156
  31
@@ -1161,13 +1171,13 @@ DOTTED
   8
 180
  10
-169.99999999999997
+109.99999999999999
  20
 53.851648000000004
  30
 0.0
  11
-155.7566034343371
+95.75660343433715
  21
 39.81150361779138
  31
@@ -1181,13 +1191,13 @@ DOTTED
   8
 -180
  10
-169.99999999999997
+109.99999999999999
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 45.6514425354012
  31
@@ -1199,13 +1209,13 @@ LINE
   8
 cut
  10
-155.7566034343371
+95.75660343433715
  20
 39.81150361779138
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 45.6514425354012
  31
@@ -1219,13 +1229,13 @@ DOTTED
   8
 -174
  10
-149.99999999999994
+89.99999999999997
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 45.651442535401195
  31
@@ -1239,13 +1249,13 @@ DOTTED
   8
 26.565051177077976
  10
-169.99999999999997
+109.99999999999999
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 53.851648000000004
  31
@@ -1257,13 +1267,13 @@ LINE
   8
 cut
  10
-147.26659817846704
+87.26659817846705
  20
 53.85164800000001
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 53.85164800000001
  31
@@ -1275,13 +1285,13 @@ LINE
   8
 cut
  10
-147.26659817846704
+87.26659817846705
  20
 45.6514425354012
  30
 0.0
  11
-147.26659817846704
+87.26659817846705
  21
 53.85164800000001
  31
@@ -1293,13 +1303,13 @@ LINE
   8
 cut
  10
-149.99999999999994
+89.99999999999997
  20
 45.6514425354012
  30
 0.0
  11
-147.26659817846704
+87.26659817846705
  21
 45.6514425354012
  31
@@ -1313,13 +1323,13 @@ DOTTED
   8
 26.565051177077976
  10
-149.99999999999997
+90.0
  20
 153.851648
  30
 0.0
  11
-170.0
+110.00000000000001
  21
 153.851648
  31
@@ -1333,13 +1343,13 @@ DOTTED
   8
 -180
  10
-149.99999999999997
+90.0
  20
 162.05185346459885
  30
 0.0
  11
-170.0
+110.00000000000001
  21
 153.851648
  31
@@ -1353,13 +1363,13 @@ DOTTED
   8
 -174
  10
-149.99999999999997
+90.0
  20
 162.05185346459885
  30
 0.0
  11
-149.99999999999997
+90.0
  21
 153.851648
  31
@@ -1371,13 +1381,13 @@ LINE
   8
 cut
  10
-149.99999999999997
+90.0
  20
 162.05185346459885
  30
 0.0
  11
-155.75660343433714
+95.7566034343372
  21
 167.89179238220865
  31
@@ -1391,13 +1401,13 @@ DOTTED
   8
 180
  10
-155.75660343433714
+95.7566034343372
  20
 167.89179238220865
  30
 0.0
  11
-170.0
+110.00000000000001
  21
 153.851648
  31
@@ -1411,13 +1421,13 @@ DOTTED
   8
 80.43938360731835
  10
-195.0
+135.00000000000003
  20
 207.70329607134505
  30
 0.0
  11
-170.0
+110.00000000000001
  21
 153.851648
  31
@@ -1429,13 +1439,13 @@ LINE
   8
 cut
  10
-161.51320686867436
+101.51320686867436
  20
 173.73173129981845
  30
 0.0
  11
-195.0
+135.00000000000003
  21
 207.70329607134505
  31
@@ -1447,13 +1457,13 @@ LINE
   8
 cut
  10
-155.75660343433714
+95.7566034343372
  20
 167.89179238220865
  30
 0.0
  11
-161.51320686867436
+101.51320686867436
  21
 173.73173129981845
  31
@@ -1467,13 +1477,13 @@ DOTTED
   8
 21.801409486351815
  10
-170.0
+110.00000000000001
  20
 153.851648
  30
 0.0
  11
-195.0
+135.00000000000003
  21
 153.851648
  31
@@ -1487,13 +1497,13 @@ DOTTED
   8
 21.801409486351815
  10
-195.0
+135.00000000000003
  20
 153.851648
  30
 0.0
  11
-219.99999999999997
+160.0
  21
 153.851648
  31
@@ -1507,13 +1517,13 @@ DOTTED
   8
 80.43938360731835
  10
-195.0
+135.00000000000003
  20
 207.70329607134505
  30
 0.0
  11
-219.99999999999997
+160.0
  21
 153.851648
  31
@@ -1525,13 +1535,13 @@ LINE
   8
 cut
  10
-228.48679313132564
+168.48679313132567
  20
 173.73173129981845
  30
 0.0
  11
-234.2433965656628
+174.2433965656628
  21
 167.89179238220862
  31
@@ -1543,13 +1553,13 @@ LINE
   8
 cut
  10
-195.0
+135.00000000000003
  20
 207.70329607134505
  30
 0.0
  11
-228.48679313132564
+168.48679313132567
  21
 173.73173129981845
  31
@@ -1563,13 +1573,13 @@ DOTTED
   8
 180
  10
-219.99999999999997
+160.0
  20
 153.851648
  30
 0.0
  11
-234.2433965656628
+174.2433965656628
  21
 167.89179238220862
  31
@@ -1583,13 +1593,13 @@ DOTTED
   8
 -180
  10
-219.99999999999997
+160.00000000000003
  20
 153.851648
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 162.05185346459876
  31
@@ -1601,13 +1611,13 @@ LINE
   8
 cut
  10
-234.2433965656628
+174.2433965656628
  20
 167.89179238220862
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 162.05185346459876
  31
@@ -1621,13 +1631,13 @@ DOTTED
   8
 -174
  10
-239.99999999999997
+179.99999999999997
  20
 153.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 162.05185346459876
  31
@@ -1641,13 +1651,13 @@ DOTTED
   8
 26.565051177077976
  10
-219.99999999999997
+160.0
  20
 153.851648
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 153.85164799999998
  31
@@ -1659,13 +1669,13 @@ LINE
   8
 cut
  10
-242.7334018215329
+182.73340182153294
  20
 153.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 153.85164799999998
  31
@@ -1677,13 +1687,13 @@ LINE
   8
 cut
  10
-242.7334018215329
+182.73340182153294
  20
 162.05185346459876
  30
 0.0
  11
-242.7334018215329
+182.73340182153294
  21
 153.85164799999998
  31
@@ -1695,13 +1705,13 @@ LINE
   8
 cut
  10
-239.99999999999997
+179.99999999999997
  20
 162.05185346459876
  30
 0.0
  11
-242.7334018215329
+182.73340182153294
  21
 162.05185346459876
  31
@@ -1715,13 +1725,13 @@ DOTTED
   8
 26.565051177077976
  10
-239.99999999999991
+179.99999999999991
  20
 53.851648
  30
 0.0
  11
-219.99999999999991
+159.99999999999991
  21
 53.85164800000001
  31
@@ -1735,13 +1745,13 @@ DOTTED
   8
 -180
  10
-239.99999999999991
+179.9999999999999
  20
 45.651442535401195
  30
 0.0
  11
-219.99999999999991
+159.99999999999991
  21
 53.85164800000001
  31
@@ -1755,13 +1765,13 @@ DOTTED
   8
 -174
  10
-239.99999999999991
+179.9999999999999
  20
 45.651442535401195
  30
 0.0
  11
-239.99999999999991
+179.99999999999991
  21
 53.851648
  31
@@ -1773,13 +1783,13 @@ LINE
   8
 cut
  10
-239.99999999999991
+179.99999999999991
  20
 45.651442535401195
  30
 0.0
  11
-234.24339656566272
+174.24339656566278
  21
 39.81150361779138
  31
@@ -1793,13 +1803,13 @@ DOTTED
   8
 180
  10
-234.24339656566272
+174.24339656566278
  20
 39.81150361779138
  30
 0.0
  11
-219.99999999999991
+159.99999999999991
  21
 53.85164800000001
  31
@@ -1813,13 +1823,13 @@ DOTTED
   8
 80.43938360731835
  10
-194.9999999999999
+134.9999999999999
  20
 -7.134499924177363e-08
  30
 0.0
  11
-219.99999999999991
+159.99999999999991
  21
 53.85164800000002
  31
@@ -1831,13 +1841,13 @@ LINE
   8
 cut
  10
-228.48679313132556
+168.48679313132558
  20
 33.971564700181574
  30
 0.0
  11
-194.9999999999999
+134.9999999999999
  21
 -7.134499924177363e-08
  31
@@ -1849,13 +1859,13 @@ LINE
   8
 cut
  10
-234.24339656566272
+174.24339656566278
  20
 39.811503617791395
  30
 0.0
  11
-228.48679313132556
+168.48679313132558
  21
 33.971564700181574
  31
@@ -1867,13 +1877,13 @@ LINE
   8
 cut
  10
-242.73340182153285
+182.73340182153285
  20
 45.651442535401195
  30
 0.0
  11
-239.99999999999991
+179.99999999999991
  21
 45.651442535401195
  31
@@ -1885,13 +1895,13 @@ LINE
   8
 cut
  10
-242.73340182153285
+182.73340182153285
  20
 53.851648000000004
  30
 0.0
  11
-242.73340182153285
+182.73340182153285
  21
 45.651442535401195
  31
@@ -1903,13 +1913,13 @@ LINE
   8
 cut
  10
-239.99999999999991
+179.99999999999991
  20
 53.851648000000004
  30
 0.0
  11
-242.73340182153285
+182.73340182153285
  21
 53.851648000000004
  31
@@ -1921,13 +1931,13 @@ LINE
   8
 cut
  10
-239.99999999999997
+179.99999999999994
  20
-138.85164799999998
+98.851648
  30
 0.0
  11
-239.99999999999991
+179.99999999999991
  21
 53.851648
  31
@@ -1939,15 +1949,15 @@ LINE
   8
 cut
  10
-239.99999999999997
+179.99999999999994
  20
-148.851648
+108.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999994
  21
-138.85164799999998
+98.851648
  31
 0.0
   0
@@ -1957,15 +1967,15 @@ LINE
   8
 cut
  10
-239.99999999999997
+179.99999999999997
  20
 153.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999994
  21
-148.851648
+108.85164799999998
  31
 0.0
   0
@@ -1975,13 +1985,13 @@ LINE
   8
 cut
  10
-239.99999999999997
+179.99999999999997
  20
 153.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 153.85164799999998
  31
@@ -1993,13 +2003,13 @@ LINE
   8
 cut
  10
-239.99999999999991
+179.99999999999991
  20
 53.851648
  30
 0.0
  11
-239.99999999999991
+179.99999999999991
  21
 53.851648
  31
@@ -2011,13 +2021,13 @@ LINE
   8
 cut
  10
-147.26659817846706
+87.26659817846708
  20
 162.05185346459885
  30
 0.0
  11
-149.99999999999997
+90.0
  21
 162.05185346459885
  31
@@ -2029,13 +2039,13 @@ LINE
   8
 cut
  10
-147.26659817846706
+87.26659817846708
  20
 153.851648
  30
 0.0
  11
-147.26659817846706
+87.26659817846708
  21
 162.05185346459885
  31
@@ -2047,13 +2057,13 @@ LINE
   8
 cut
  10
-149.99999999999997
+90.0
  20
 153.851648
  30
 0.0
  11
-147.26659817846706
+87.26659817846708
  21
 153.851648
  31
@@ -2065,13 +2075,13 @@ LINE
   8
 cut
  10
-149.99999999999997
+89.99999999999999
  20
-148.85164800000004
+108.851648
  30
 0.0
  11
-149.99999999999997
+90.0
  21
 153.851648
  31
@@ -2085,15 +2095,15 @@ DOTTED
   8
 -180
  10
-149.99999999999997
+89.99999999999999
  20
-138.85164800000004
+98.85164800000001
  30
 0.0
  11
-149.99999999999997
+89.99999999999999
  21
-148.85164800000004
+108.851648
  31
 0.0
   0
@@ -2103,15 +2113,15 @@ LINE
   8
 cut
  10
-149.99999999999994
+89.99999999999997
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999997
+89.99999999999999
  21
-138.85164800000004
+98.85164800000001
  31
 0.0
   0
@@ -2121,13 +2131,13 @@ LINE
   8
 cut
  10
-149.99999999999994
+89.99999999999997
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 53.851648000000004
  31
@@ -2139,13 +2149,13 @@ LINE
   8
 cut
  10
-149.99999999999997
+90.0
  20
 153.851648
  30
 0.0
  11
-149.99999999999997
+90.0
  21
 153.851648
  31
@@ -2157,15 +2167,35 @@ LINE
   8
 cut
  10
-99.99999999999999
+70.0
  20
-148.85164800000004
+108.851648
  30
 0.0
  11
-149.99999999999997
+89.99999999999999
  21
-148.85164800000004
+108.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+70.0
+ 20
+98.85164800000001
+ 30
+0.0
+ 11
+70.0
+ 21
+108.851648
  31
 0.0
   0
@@ -2175,15 +2205,35 @@ LINE
   8
 cut
  10
-149.99999999999997
+89.99999999999999
  20
-138.85164800000004
+98.85164800000001
  30
 0.0
  11
-99.99999999999999
+70.0
  21
-138.85164800000004
+98.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+20.000000000000004
+ 20
+108.85164800000003
+ 30
+0.0
+ 11
+19.999999999999986
+ 21
+98.85164800000003
  31
 0.0
   0
@@ -2195,15 +2245,15 @@ DOTTED
   8
 90
  10
-50.0
+19.999999999999986
  20
-138.85164800000004
+98.85164800000003
  30
 0.0
  11
-99.99999999999999
+69.99999999999999
  21
-138.85164800000004
+98.85164800000001
  31
 0.0
   0
@@ -2215,15 +2265,15 @@ DOTTED
   8
 90
  10
-50.0
+20.000000000000004
  20
-148.85164800000004
+108.85164800000003
  30
 0.0
  11
-100.0
+70.0
  21
-148.85164800000004
+108.851648
  31
 0.0
   0
@@ -2233,15 +2283,15 @@ LINE
   8
 cut
  10
-50.0
+20.000000000000004
  20
-138.85164800000004
+98.85164800000003
  30
 0.0
  11
 0.0
  21
-138.85164800000007
+98.85164800000003
  31
 0.0
   0
@@ -2253,13 +2303,13 @@ cut
  10
 0.0
  20
-148.85164800000007
+108.85164800000003
  30
 0.0
  11
-50.0
+20.000000000000004
  21
-148.85164800000004
+108.85164800000003
  31
 0.0
   0
@@ -2271,13 +2321,13 @@ cut
  10
 0.0
  20
-138.85164800000007
+98.85164800000003
  30
 0.0
  11
 0.0
  21
-148.85164800000007
+108.85164800000003
  31
 0.0
   0
@@ -2287,15 +2337,15 @@ LINE
   8
 cut
  10
-50.0
+19.999999999999986
  20
-108.85164800000004
+68.85164800000001
  30
 0.0
  11
-50.0
+20.000000000000004
  21
-138.85164800000004
+98.85164800000003
  31
 0.0
   0
@@ -2307,15 +2357,15 @@ DOTTED
   8
 90
  10
-50.0
+19.999999999999986
  20
-108.85164800000004
+68.85164800000001
  30
 0.0
  11
-99.99999999999999
+69.99999999999999
  21
-108.85164800000003
+68.85164800000001
  31
 0.0
   0
@@ -2325,15 +2375,15 @@ LINE
   8
 cut
  10
-100.0
+70.0
  20
-138.85164800000004
+98.85164800000001
  30
 0.0
  11
-99.99999999999999
+69.99999999999999
  21
-108.85164800000003
+68.85164800000001
  31
 0.0
   0
@@ -2343,15 +2393,15 @@ LINE
   8
 cut
  10
-50.0
+19.99999999999997
  20
-98.85164800000004
+58.85164800000002
  30
 0.0
  11
-50.0
+19.99999999999997
  21
-108.85164800000004
+68.85164800000001
  31
 0.0
   0
@@ -2361,15 +2411,15 @@ LINE
   8
 cut
  10
-100.0
+69.99999999999999
  20
-98.85164800000003
+58.851648000000004
  30
 0.0
  11
-50.0
+19.99999999999997
  21
-98.85164800000004
+58.85164800000002
  31
 0.0
   0
@@ -2379,15 +2429,15 @@ LINE
   8
 cut
  10
-100.0
+69.99999999999999
  20
-108.85164800000003
+68.851648
  30
 0.0
  11
-100.0
+69.99999999999999
  21
-98.85164800000003
+58.851648000000004
  31
 0.0
   0
@@ -2397,15 +2447,15 @@ LINE
   8
 cut
  10
-50.0
+20.000000000000004
  20
-148.85164800000004
+108.85164800000003
  30
 0.0
  11
-50.0
+20.000000000000018
  21
-178.85164800000004
+138.85164800000004
  31
 0.0
   0
@@ -2415,15 +2465,15 @@ LINE
   8
 cut
  10
-100.0
+70.00000000000001
  20
-178.85164800000004
+138.85164800000004
  30
 0.0
  11
-100.0
+70.0
  21
-148.85164800000004
+108.851648
  31
 0.0
   0
@@ -2435,15 +2485,15 @@ DOTTED
   8
 90
  10
-100.0
+70.00000000000001
  20
-178.85164800000004
+138.85164800000004
  30
 0.0
  11
-50.0
+20.000000000000018
  21
-178.85164800000004
+138.85164800000004
  31
 0.0
   0
@@ -2453,15 +2503,15 @@ LINE
   8
 cut
  10
-100.0
+70.00000000000001
  20
-188.85164800000004
+148.85164800000004
  30
 0.0
  11
-100.0
+70.00000000000001
  21
-178.85164800000004
+138.85164800000004
  31
 0.0
   0
@@ -2471,15 +2521,15 @@ LINE
   8
 cut
  10
-50.0
+20.000000000000018
  20
-188.85164800000004
+148.85164800000004
  30
 0.0
  11
-100.0
+70.00000000000001
  21
-188.85164800000004
+148.85164800000004
  31
 0.0
   0
@@ -2489,15 +2539,15 @@ LINE
   8
 cut
  10
-50.0
+20.000000000000018
  20
-178.85164800000004
+138.85164800000004
  30
 0.0
  11
-50.0
+20.000000000000018
  21
-188.85164800000004
+148.85164800000004
  31
 0.0
   0
@@ -2507,13 +2557,13 @@ LINE
   8
 cut
  10
-161.40786804847943
+101.40786804847944
  20
 37.35482121234262
  30
 0.0
  11
-159.13799662747846
+99.1379966274785
  21
 39.65755243235412
  31
@@ -2525,13 +2575,13 @@ LINE
   8
 cut
  10
-159.13799662747846
+99.1379966274785
  20
 39.65755243235412
  30
 0.0
  11
-158.78191171333694
+98.78191171333694
  21
 39.306548822798916
  31
@@ -2543,13 +2593,13 @@ LINE
   8
 cut
  10
-158.78191171333694
+98.78191171333694
  20
 39.306548822798916
  30
 0.0
  11
-161.05178313433782
+101.05178313433787
  21
 37.003817602787414
  31
@@ -2561,13 +2611,13 @@ LINE
   8
 cut
  10
-161.05178313433782
+101.05178313433787
  20
 37.003817602787414
  30
 0.0
  11
-161.40786804847943
+101.40786804847944
  21
 37.35482121234262
  31
@@ -2579,13 +2629,13 @@ LINE
   8
 cut
  10
-147.94994863385025
+87.9499486338503
  20
 48.38484435693414
  30
 0.0
  11
-149.31664954461675
+89.31664954461677
  21
 48.38484435693414
  31
@@ -2597,13 +2647,13 @@ LINE
   8
 cut
  10
-149.31664954461675
+89.31664954461677
  20
 48.38484435693414
  30
 0.0
  11
-149.31664954461675
+89.31664954461677
  21
 51.118246178467075
  31
@@ -2615,13 +2665,13 @@ LINE
   8
 cut
  10
-149.31664954461675
+89.31664954461677
  20
 51.118246178467075
  30
 0.0
  11
-147.94994863385025
+87.9499486338503
  21
 51.118246178467075
  31
@@ -2633,13 +2683,13 @@ LINE
   8
 cut
  10
-159.13799662747854
+99.13799662747854
  20
 168.0457435676459
  30
 0.0
  11
-161.40786804847946
+101.40786804847947
  21
 170.3484747876574
  31
@@ -2651,13 +2701,13 @@ LINE
   8
 cut
  10
-161.40786804847946
+101.40786804847947
  20
 170.3484747876574
  30
 0.0
  11
-161.05178313433788
+101.05178313433791
  21
 170.69947839721263
  31
@@ -2669,13 +2719,13 @@ LINE
   8
 cut
  10
-161.05178313433788
+101.05178313433791
  20
 170.69947839721263
  30
 0.0
  11
-158.78191171333697
+98.78191171333697
  21
 168.39674717720112
  31
@@ -2687,13 +2737,13 @@ LINE
   8
 cut
  10
-158.78191171333697
+98.78191171333697
  20
 168.39674717720112
  30
 0.0
  11
-159.13799662747854
+99.13799662747854
  21
 168.0457435676459
  31
@@ -2705,13 +2755,13 @@ LINE
   8
 cut
  10
-228.5921319515205
+168.59213195152054
  20
 170.34847478765738
  30
 0.0
  11
-230.86200337252146
+170.86200337252149
  21
 168.04574356764587
  31
@@ -2723,13 +2773,13 @@ LINE
   8
 cut
  10
-230.86200337252146
+170.86200337252149
  20
 168.04574356764587
  30
 0.0
  11
-231.21808828666303
+171.21808828666306
  21
 168.3967471772011
  31
@@ -2741,13 +2791,13 @@ LINE
   8
 cut
  10
-231.21808828666303
+171.21808828666306
  20
 168.3967471772011
  30
 0.0
  11
-228.9482168656621
+168.9482168656621
  21
 170.69947839721257
  31
@@ -2759,13 +2809,13 @@ LINE
   8
 cut
  10
-228.9482168656621
+168.9482168656621
  20
 170.69947839721257
  30
 0.0
  11
-228.5921319515205
+168.59213195152054
  21
 170.34847478765738
  31
@@ -2777,13 +2827,13 @@ LINE
   8
 cut
  10
-242.0500513661497
+182.0500513661497
  20
 159.31845164306583
  30
 0.0
  11
-240.68335045538322
+180.68335045538325
  21
 159.31845164306583
  31
@@ -2795,13 +2845,13 @@ LINE
   8
 cut
  10
-240.68335045538322
+180.68335045538325
  20
 159.31845164306583
  30
 0.0
  11
-240.68335045538322
+180.68335045538325
  21
 156.5850498215329
  31
@@ -2813,13 +2863,13 @@ LINE
   8
 cut
  10
-240.68335045538322
+180.68335045538325
  20
 156.5850498215329
  30
 0.0
  11
-242.0500513661497
+182.0500513661497
  21
 156.5850498215329
  31
@@ -2831,13 +2881,13 @@ LINE
   8
 cut
  10
-230.86200337252137
+170.8620033725214
  20
 39.65755243235414
  30
 0.0
  11
-228.59213195152043
+168.59213195152049
  21
 37.354821212342635
  31
@@ -2849,13 +2899,13 @@ LINE
   8
 cut
  10
-228.59213195152043
+168.59213195152049
  20
 37.354821212342635
  30
 0.0
  11
-228.94821686566198
+168.94821686566203
  21
 37.003817602787414
  31
@@ -2867,13 +2917,13 @@ LINE
   8
 cut
  10
-228.94821686566198
+168.94821686566203
  20
 37.003817602787414
  30
 0.0
  11
-231.21808828666295
+171.21808828666295
  21
 39.306548822798916
  31
@@ -2885,13 +2935,13 @@ LINE
   8
 cut
  10
-231.21808828666295
+171.21808828666295
  20
 39.306548822798916
  30
 0.0
  11
-230.86200337252137
+170.8620033725214
  21
 39.65755243235414
  31
@@ -2903,13 +2953,13 @@ LINE
   8
 cut
  10
-242.05005136614963
+182.05005136614966
  20
 51.11824617846707
  30
 0.0
  11
-240.68335045538316
+180.6833504553832
  21
 51.11824617846707
  31
@@ -2921,13 +2971,13 @@ LINE
   8
 cut
  10
-240.68335045538316
+180.6833504553832
  20
 51.11824617846707
  30
 0.0
  11
-240.68335045538316
+180.6833504553832
  21
 48.38484435693413
  31
@@ -2939,13 +2989,13 @@ LINE
   8
 cut
  10
-240.68335045538316
+180.6833504553832
  20
 48.38484435693413
  30
 0.0
  11
-242.05005136614963
+182.05005136614966
  21
 48.38484435693413
  31
@@ -2957,13 +3007,85 @@ LINE
   8
 cut
  10
-147.94994863385028
+175.99999999999997
+ 20
+105.76831466666665
+ 30
+0.0
+ 11
+175.99999999999997
+ 21
+101.93498133333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+175.99999999999997
+ 20
+101.93498133333333
+ 30
+0.0
+ 11
+176.49999999999997
+ 21
+101.93498133333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+176.49999999999997
+ 20
+101.93498133333333
+ 30
+0.0
+ 11
+176.49999999999997
+ 21
+105.76831466666665
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+176.49999999999997
+ 20
+105.76831466666665
+ 30
+0.0
+ 11
+175.99999999999997
+ 21
+105.76831466666665
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+87.94994863385031
  20
 156.58504982153295
  30
 0.0
  11
-149.31664954461675
+89.31664954461678
  21
 156.58504982153295
  31
@@ -2975,13 +3097,13 @@ LINE
   8
 cut
  10
-149.31664954461675
+89.31664954461678
  20
 156.58504982153295
  30
 0.0
  11
-149.31664954461675
+89.31664954461678
  21
 159.31845164306588
  31
@@ -2993,13 +3115,13 @@ LINE
   8
 cut
  10
-149.31664954461675
+89.31664954461678
  20
 159.31845164306588
  30
 0.0
  11
-147.94994863385028
+87.94994863385031
  21
 159.31845164306588
  31
@@ -3011,15 +3133,69 @@ LINE
   8
 cut
  10
-71.0
+1.2500000000000002
+ 20
+102.18498133333337
+ 30
+0.0
+ 11
+3.7500000000000004
+ 21
+102.18498133333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+1.2500000000000002
+ 20
+105.5183146666667
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+102.18498133333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+3.7500000000000004
+ 20
+105.5183146666667
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+105.5183146666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.999999999999986
  20
-117.85164800000001
+77.85164800000001
  30
 0.0
  11
-71.0
+40.999999999999986
  21
-109.85164800000001
+69.85164800000001
  31
 0.0
   0
@@ -3029,15 +3205,15 @@ LINE
   8
 cut
  10
-71.0
+40.999999999999986
  20
-109.85164800000001
+69.85164800000001
  30
 0.0
  11
-79.0
+48.999999999999986
  21
-109.85164800000001
+69.85164800000001
  31
 0.0
   0
@@ -3047,15 +3223,15 @@ LINE
   8
 cut
  10
-79.0
+48.999999999999986
  20
-109.85164800000001
+69.85164800000001
  30
 0.0
  11
-79.0
+48.999999999999986
  21
-117.85164800000001
+77.85164800000001
  31
 0.0
   0
@@ -3065,15 +3241,15 @@ LINE
   8
 cut
  10
-79.0
+48.999999999999986
  20
-117.85164800000001
+77.85164800000001
  30
 0.0
  11
-71.0
+40.999999999999986
  21
-117.85164800000001
+77.85164800000001
  31
 0.0
   0
@@ -3083,15 +3259,15 @@ LINE
   8
 cut
  10
-83.58333333333334
+53.5833333333333
  20
-106.60164800000003
+66.60164800000003
  30
 0.0
  11
-66.4166666666667
+36.41666666666664
  21
-106.60164800000004
+66.60164800000003
  31
 0.0
   0
@@ -3101,15 +3277,15 @@ LINE
   8
 cut
  10
-66.4166666666667
+36.41666666666664
  20
-106.60164800000004
+66.60164800000003
  30
 0.0
  11
-66.4166666666667
+36.41666666666664
  21
-106.10164800000004
+66.10164800000001
  31
 0.0
   0
@@ -3119,15 +3295,15 @@ LINE
   8
 cut
  10
-66.4166666666667
+36.41666666666664
  20
-106.10164800000004
+66.10164800000001
  30
 0.0
  11
-83.58333333333334
+53.5833333333333
  21
-106.10164800000003
+66.10164800000001
  31
 0.0
   0
@@ -3137,15 +3313,15 @@ LINE
   8
 cut
  10
-83.58333333333334
+53.5833333333333
  20
-106.10164800000003
+66.10164800000001
  30
 0.0
  11
-83.58333333333334
+53.5833333333333
  21
-106.60164800000003
+66.60164800000003
  31
 0.0
   0
@@ -3155,15 +3331,15 @@ LINE
   8
 cut
  10
-71.00000000000001
+41.0
  20
-177.85164800000004
+137.851648
  30
 0.0
  11
-71.00000000000001
+41.0
  21
-169.851648
+129.85164800000004
  31
 0.0
   0
@@ -3173,15 +3349,15 @@ LINE
   8
 cut
  10
-71.00000000000001
+41.0
  20
-169.851648
+129.85164800000004
  30
 0.0
  11
-79.00000000000001
+49.00000000000001
  21
-169.851648
+129.85164800000004
  31
 0.0
   0
@@ -3191,15 +3367,15 @@ LINE
   8
 cut
  10
-79.00000000000001
+49.00000000000001
  20
-169.851648
+129.85164800000004
  30
 0.0
  11
-79.00000000000001
+49.00000000000001
  21
-177.85164800000004
+137.851648
  31
 0.0
   0
@@ -3209,15 +3385,15 @@ LINE
   8
 cut
  10
-79.00000000000001
+49.00000000000001
  20
-177.85164800000004
+137.851648
  30
 0.0
  11
-71.00000000000001
+41.0
  21
-177.85164800000004
+137.851648
  31
 0.0
   0
@@ -3227,15 +3403,15 @@ LINE
   8
 cut
  10
-66.66666666666666
+36.66666666666669
  20
-186.351648
+146.35164800000004
  30
 0.0
  11
-61.666666666666664
+31.66666666666669
  21
-186.351648
+146.35164800000004
  31
 0.0
   0
@@ -3245,15 +3421,15 @@ LINE
   8
 cut
  10
-61.666666666666664
+31.66666666666669
  20
-186.351648
+146.35164800000004
  30
 0.0
  11
-66.66666666666666
+36.66666666666669
  21
-181.351648
+141.35164800000004
  31
 0.0
   0
@@ -3263,15 +3439,15 @@ LINE
   8
 cut
  10
-66.66666666666666
+36.66666666666669
  20
-181.351648
+141.35164800000004
  30
 0.0
  11
-83.33333333333334
+53.33333333333335
  21
-181.351648
+141.35164800000004
  31
 0.0
   0
@@ -3281,15 +3457,15 @@ LINE
   8
 cut
  10
-83.33333333333334
+53.33333333333335
  20
-181.351648
+141.35164800000004
  30
 0.0
  11
-88.33333333333334
+58.33333333333335
  21
-186.351648
+146.35164800000004
  31
 0.0
   0
@@ -3299,15 +3475,15 @@ LINE
   8
 cut
  10
-88.33333333333334
+58.33333333333335
  20
-186.351648
+146.35164800000004
  30
 0.0
  11
-83.33333333333334
+53.33333333333335
  21
-186.351648
+146.35164800000004
  31
 0.0
   0
diff --git a/rocolib/output/BoatWithDCMount/graph-autofold-graph.dxf b/rocolib/output/BoatWithDCMount/graph-autofold-graph.dxf
index 31a2589a0a39a9afd21d3a9f2fd334780628c0e2..8dec98569ad0a7bcad53b781d4676a01caf583b1 100644
--- a/rocolib/output/BoatWithDCMount/graph-autofold-graph.dxf
+++ b/rocolib/output/BoatWithDCMount/graph-autofold-graph.dxf
@@ -945,13 +945,13 @@ DOTTED
   8
 0
  10
-219.99999999999997
+160.0
  20
 53.851648000000004
  30
 0.0
  11
-219.99999999999997
+160.0
  21
 153.851648
  31
@@ -965,13 +965,13 @@ DOTTED
   8
 0
  10
-169.99999999999997
+109.99999999999999
  20
 53.851648000000004
  30
 0.0
  11
-169.99999999999997
+109.99999999999999
  21
 153.851648
  31
@@ -985,13 +985,13 @@ DOTTED
   8
 0
  10
-194.99999999999997
+135.0
  20
 53.851648000000004
  30
 0.0
  11
-169.99999999999997
+109.99999999999999
  21
 53.851648000000004
  31
@@ -1005,13 +1005,13 @@ DOTTED
   8
 0
  10
-219.99999999999997
+160.0
  20
 53.851648000000004
  30
 0.0
  11
-194.99999999999997
+135.0
  21
 53.851648000000004
  31
@@ -1025,13 +1025,13 @@ DOTTED
   8
 0
  10
-194.99999999999997
+135.0
  20
 -7.134504187433777e-08
  30
 0.0
  11
-169.99999999999997
+109.99999999999999
  21
 53.851648000000004
  31
@@ -1043,13 +1043,13 @@ LINE
   8
 0
  10
-161.51320686867427
+101.51320686867432
  20
 33.97156470018156
  30
 0.0
  11
-155.7566034343371
+95.75660343433715
  21
 39.81150361779138
  31
@@ -1061,13 +1061,13 @@ LINE
   8
 0
  10
-194.99999999999997
+135.0
  20
 -7.13450560851925e-08
  30
 0.0
  11
-161.51320686867427
+101.51320686867432
  21
 33.97156470018156
  31
@@ -1081,13 +1081,13 @@ DOTTED
   8
 0
  10
-169.99999999999997
+109.99999999999999
  20
 53.851648000000004
  30
 0.0
  11
-155.7566034343371
+95.75660343433715
  21
 39.81150361779138
  31
@@ -1101,13 +1101,13 @@ DOTTED
   8
 0
  10
-169.99999999999997
+109.99999999999999
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 45.6514425354012
  31
@@ -1119,13 +1119,13 @@ LINE
   8
 0
  10
-155.7566034343371
+95.75660343433715
  20
 39.81150361779138
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 45.6514425354012
  31
@@ -1139,13 +1139,13 @@ DOTTED
   8
 0
  10
-149.99999999999994
+89.99999999999997
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 45.651442535401195
  31
@@ -1159,13 +1159,13 @@ DOTTED
   8
 0
  10
-169.99999999999997
+109.99999999999999
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 53.851648000000004
  31
@@ -1177,13 +1177,13 @@ LINE
   8
 0
  10
-147.26659817846704
+87.26659817846705
  20
 53.85164800000001
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 53.85164800000001
  31
@@ -1195,13 +1195,13 @@ LINE
   8
 0
  10
-147.26659817846704
+87.26659817846705
  20
 45.6514425354012
  30
 0.0
  11
-147.26659817846704
+87.26659817846705
  21
 53.85164800000001
  31
@@ -1213,13 +1213,13 @@ LINE
   8
 0
  10
-149.99999999999994
+89.99999999999997
  20
 45.6514425354012
  30
 0.0
  11
-147.26659817846704
+87.26659817846705
  21
 45.6514425354012
  31
@@ -1233,13 +1233,13 @@ DOTTED
   8
 0
  10
-149.99999999999997
+90.0
  20
 153.851648
  30
 0.0
  11
-170.0
+110.00000000000001
  21
 153.851648
  31
@@ -1253,13 +1253,13 @@ DOTTED
   8
 0
  10
-149.99999999999997
+90.0
  20
 162.05185346459885
  30
 0.0
  11
-170.0
+110.00000000000001
  21
 153.851648
  31
@@ -1273,13 +1273,13 @@ DOTTED
   8
 0
  10
-149.99999999999997
+90.0
  20
 162.05185346459885
  30
 0.0
  11
-149.99999999999997
+90.0
  21
 153.851648
  31
@@ -1291,13 +1291,13 @@ LINE
   8
 0
  10
-149.99999999999997
+90.0
  20
 162.05185346459885
  30
 0.0
  11
-155.75660343433714
+95.7566034343372
  21
 167.89179238220865
  31
@@ -1311,13 +1311,13 @@ DOTTED
   8
 0
  10
-155.75660343433714
+95.7566034343372
  20
 167.89179238220865
  30
 0.0
  11
-170.0
+110.00000000000001
  21
 153.851648
  31
@@ -1331,13 +1331,13 @@ DOTTED
   8
 0
  10
-195.0
+135.00000000000003
  20
 207.70329607134505
  30
 0.0
  11
-170.0
+110.00000000000001
  21
 153.851648
  31
@@ -1349,13 +1349,13 @@ LINE
   8
 0
  10
-161.51320686867436
+101.51320686867436
  20
 173.73173129981845
  30
 0.0
  11
-195.0
+135.00000000000003
  21
 207.70329607134505
  31
@@ -1367,13 +1367,13 @@ LINE
   8
 0
  10
-155.75660343433714
+95.7566034343372
  20
 167.89179238220865
  30
 0.0
  11
-161.51320686867436
+101.51320686867436
  21
 173.73173129981845
  31
@@ -1387,13 +1387,13 @@ DOTTED
   8
 0
  10
-170.0
+110.00000000000001
  20
 153.851648
  30
 0.0
  11
-195.0
+135.00000000000003
  21
 153.851648
  31
@@ -1407,13 +1407,13 @@ DOTTED
   8
 0
  10
-195.0
+135.00000000000003
  20
 153.851648
  30
 0.0
  11
-219.99999999999997
+160.0
  21
 153.851648
  31
@@ -1427,13 +1427,13 @@ DOTTED
   8
 0
  10
-195.0
+135.00000000000003
  20
 207.70329607134505
  30
 0.0
  11
-219.99999999999997
+160.0
  21
 153.851648
  31
@@ -1445,13 +1445,13 @@ LINE
   8
 0
  10
-228.48679313132564
+168.48679313132567
  20
 173.73173129981845
  30
 0.0
  11
-234.2433965656628
+174.2433965656628
  21
 167.89179238220862
  31
@@ -1463,13 +1463,13 @@ LINE
   8
 0
  10
-195.0
+135.00000000000003
  20
 207.70329607134505
  30
 0.0
  11
-228.48679313132564
+168.48679313132567
  21
 173.73173129981845
  31
@@ -1483,13 +1483,13 @@ DOTTED
   8
 0
  10
-219.99999999999997
+160.0
  20
 153.851648
  30
 0.0
  11
-234.2433965656628
+174.2433965656628
  21
 167.89179238220862
  31
@@ -1503,13 +1503,13 @@ DOTTED
   8
 0
  10
-219.99999999999997
+160.00000000000003
  20
 153.851648
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 162.05185346459876
  31
@@ -1521,13 +1521,13 @@ LINE
   8
 0
  10
-234.2433965656628
+174.2433965656628
  20
 167.89179238220862
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 162.05185346459876
  31
@@ -1541,13 +1541,13 @@ DOTTED
   8
 0
  10
-239.99999999999997
+179.99999999999997
  20
 153.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 162.05185346459876
  31
@@ -1561,13 +1561,13 @@ DOTTED
   8
 0
  10
-219.99999999999997
+160.0
  20
 153.851648
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 153.85164799999998
  31
@@ -1579,13 +1579,13 @@ LINE
   8
 0
  10
-242.7334018215329
+182.73340182153294
  20
 153.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 153.85164799999998
  31
@@ -1597,13 +1597,13 @@ LINE
   8
 0
  10
-242.7334018215329
+182.73340182153294
  20
 162.05185346459876
  30
 0.0
  11
-242.7334018215329
+182.73340182153294
  21
 153.85164799999998
  31
@@ -1615,13 +1615,13 @@ LINE
   8
 0
  10
-239.99999999999997
+179.99999999999997
  20
 162.05185346459876
  30
 0.0
  11
-242.7334018215329
+182.73340182153294
  21
 162.05185346459876
  31
@@ -1635,13 +1635,13 @@ DOTTED
   8
 0
  10
-239.99999999999991
+179.99999999999991
  20
 53.851648
  30
 0.0
  11
-219.99999999999991
+159.99999999999991
  21
 53.85164800000001
  31
@@ -1655,13 +1655,13 @@ DOTTED
   8
 0
  10
-239.99999999999991
+179.9999999999999
  20
 45.651442535401195
  30
 0.0
  11
-219.99999999999991
+159.99999999999991
  21
 53.85164800000001
  31
@@ -1675,13 +1675,13 @@ DOTTED
   8
 0
  10
-239.99999999999991
+179.9999999999999
  20
 45.651442535401195
  30
 0.0
  11
-239.99999999999991
+179.99999999999991
  21
 53.851648
  31
@@ -1693,13 +1693,13 @@ LINE
   8
 0
  10
-239.99999999999991
+179.99999999999991
  20
 45.651442535401195
  30
 0.0
  11
-234.24339656566272
+174.24339656566278
  21
 39.81150361779138
  31
@@ -1713,13 +1713,13 @@ DOTTED
   8
 0
  10
-234.24339656566272
+174.24339656566278
  20
 39.81150361779138
  30
 0.0
  11
-219.99999999999991
+159.99999999999991
  21
 53.85164800000001
  31
@@ -1733,13 +1733,13 @@ DOTTED
   8
 0
  10
-194.9999999999999
+134.9999999999999
  20
 -7.134499924177363e-08
  30
 0.0
  11
-219.99999999999991
+159.99999999999991
  21
 53.85164800000002
  31
@@ -1751,13 +1751,13 @@ LINE
   8
 0
  10
-228.48679313132556
+168.48679313132558
  20
 33.971564700181574
  30
 0.0
  11
-194.9999999999999
+134.9999999999999
  21
 -7.134499924177363e-08
  31
@@ -1769,13 +1769,13 @@ LINE
   8
 0
  10
-234.24339656566272
+174.24339656566278
  20
 39.811503617791395
  30
 0.0
  11
-228.48679313132556
+168.48679313132558
  21
 33.971564700181574
  31
@@ -1787,13 +1787,13 @@ LINE
   8
 0
  10
-242.73340182153285
+182.73340182153285
  20
 45.651442535401195
  30
 0.0
  11
-239.99999999999991
+179.99999999999991
  21
 45.651442535401195
  31
@@ -1805,13 +1805,13 @@ LINE
   8
 0
  10
-242.73340182153285
+182.73340182153285
  20
 53.851648000000004
  30
 0.0
  11
-242.73340182153285
+182.73340182153285
  21
 45.651442535401195
  31
@@ -1823,13 +1823,13 @@ LINE
   8
 0
  10
-239.99999999999991
+179.99999999999991
  20
 53.851648000000004
  30
 0.0
  11
-242.73340182153285
+182.73340182153285
  21
 53.851648000000004
  31
@@ -1841,13 +1841,13 @@ LINE
   8
 0
  10
-239.99999999999997
+179.99999999999994
  20
-138.85164799999998
+98.851648
  30
 0.0
  11
-239.99999999999991
+179.99999999999991
  21
 53.851648
  31
@@ -1859,15 +1859,15 @@ LINE
   8
 0
  10
-239.99999999999997
+179.99999999999994
  20
-148.851648
+108.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999994
  21
-138.85164799999998
+98.851648
  31
 0.0
   0
@@ -1877,15 +1877,15 @@ LINE
   8
 0
  10
-239.99999999999997
+179.99999999999997
  20
 153.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999994
  21
-148.851648
+108.85164799999998
  31
 0.0
   0
@@ -1895,13 +1895,13 @@ LINE
   8
 0
  10
-239.99999999999997
+179.99999999999997
  20
 153.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 153.85164799999998
  31
@@ -1913,13 +1913,13 @@ LINE
   8
 0
  10
-239.99999999999991
+179.99999999999991
  20
 53.851648
  30
 0.0
  11
-239.99999999999991
+179.99999999999991
  21
 53.851648
  31
@@ -1931,13 +1931,13 @@ LINE
   8
 0
  10
-147.26659817846706
+87.26659817846708
  20
 162.05185346459885
  30
 0.0
  11
-149.99999999999997
+90.0
  21
 162.05185346459885
  31
@@ -1949,13 +1949,13 @@ LINE
   8
 0
  10
-147.26659817846706
+87.26659817846708
  20
 153.851648
  30
 0.0
  11
-147.26659817846706
+87.26659817846708
  21
 162.05185346459885
  31
@@ -1967,13 +1967,13 @@ LINE
   8
 0
  10
-149.99999999999997
+90.0
  20
 153.851648
  30
 0.0
  11
-147.26659817846706
+87.26659817846708
  21
 153.851648
  31
@@ -1985,13 +1985,13 @@ LINE
   8
 0
  10
-149.99999999999997
+89.99999999999999
  20
-148.85164800000004
+108.851648
  30
 0.0
  11
-149.99999999999997
+90.0
  21
 153.851648
  31
@@ -2005,15 +2005,15 @@ DOTTED
   8
 0
  10
-149.99999999999997
+89.99999999999999
  20
-138.85164800000004
+98.85164800000001
  30
 0.0
  11
-149.99999999999997
+89.99999999999999
  21
-148.85164800000004
+108.851648
  31
 0.0
   0
@@ -2023,15 +2023,15 @@ LINE
   8
 0
  10
-149.99999999999994
+89.99999999999997
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999997
+89.99999999999999
  21
-138.85164800000004
+98.85164800000001
  31
 0.0
   0
@@ -2041,13 +2041,13 @@ LINE
   8
 0
  10
-149.99999999999994
+89.99999999999997
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 53.851648000000004
  31
@@ -2059,13 +2059,13 @@ LINE
   8
 0
  10
-149.99999999999997
+90.0
  20
 153.851648
  30
 0.0
  11
-149.99999999999997
+90.0
  21
 153.851648
  31
@@ -2077,15 +2077,35 @@ LINE
   8
 0
  10
-99.99999999999999
+70.0
  20
-148.85164800000004
+108.851648
  30
 0.0
  11
-149.99999999999997
+89.99999999999999
  21
-148.85164800000004
+108.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+70.0
+ 20
+98.85164800000001
+ 30
+0.0
+ 11
+70.0
+ 21
+108.851648
  31
 0.0
   0
@@ -2095,15 +2115,15 @@ LINE
   8
 0
  10
-149.99999999999997
+89.99999999999999
  20
-138.85164800000004
+98.85164800000001
  30
 0.0
  11
-99.99999999999999
+70.0
  21
-138.85164800000004
+98.85164800000001
  31
 0.0
   0
@@ -2115,15 +2135,15 @@ DOTTED
   8
 0
  10
-50.0
+20.000000000000004
  20
-138.85164800000004
+108.85164800000003
  30
 0.0
  11
-99.99999999999999
+19.999999999999986
  21
-138.85164800000004
+98.85164800000003
  31
 0.0
   0
@@ -2135,15 +2155,35 @@ DOTTED
   8
 0
  10
-50.0
+19.999999999999986
  20
-148.85164800000004
+98.85164800000003
  30
 0.0
  11
-100.0
+69.99999999999999
  21
-148.85164800000004
+98.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+20.000000000000004
+ 20
+108.85164800000003
+ 30
+0.0
+ 11
+70.0
+ 21
+108.851648
  31
 0.0
   0
@@ -2153,15 +2193,15 @@ LINE
   8
 0
  10
-50.0
+20.000000000000004
  20
-138.85164800000004
+98.85164800000003
  30
 0.0
  11
 0.0
  21
-138.85164800000007
+98.85164800000003
  31
 0.0
   0
@@ -2173,13 +2213,13 @@ LINE
  10
 0.0
  20
-148.85164800000007
+108.85164800000003
  30
 0.0
  11
-50.0
+20.000000000000004
  21
-148.85164800000004
+108.85164800000003
  31
 0.0
   0
@@ -2191,13 +2231,13 @@ LINE
  10
 0.0
  20
-138.85164800000007
+98.85164800000003
  30
 0.0
  11
 0.0
  21
-148.85164800000007
+108.85164800000003
  31
 0.0
   0
@@ -2207,15 +2247,15 @@ LINE
   8
 0
  10
-50.0
+19.999999999999986
  20
-108.85164800000004
+68.85164800000001
  30
 0.0
  11
-50.0
+20.000000000000004
  21
-138.85164800000004
+98.85164800000003
  31
 0.0
   0
@@ -2227,15 +2267,15 @@ DOTTED
   8
 0
  10
-50.0
+19.999999999999986
  20
-108.85164800000004
+68.85164800000001
  30
 0.0
  11
-99.99999999999999
+69.99999999999999
  21
-108.85164800000003
+68.85164800000001
  31
 0.0
   0
@@ -2245,15 +2285,15 @@ LINE
   8
 0
  10
-100.0
+70.0
  20
-138.85164800000004
+98.85164800000001
  30
 0.0
  11
-99.99999999999999
+69.99999999999999
  21
-108.85164800000003
+68.85164800000001
  31
 0.0
   0
@@ -2263,15 +2303,15 @@ LINE
   8
 0
  10
-50.0
+19.99999999999997
  20
-98.85164800000004
+58.85164800000002
  30
 0.0
  11
-50.0
+19.99999999999997
  21
-108.85164800000004
+68.85164800000001
  31
 0.0
   0
@@ -2281,15 +2321,15 @@ LINE
   8
 0
  10
-100.0
+69.99999999999999
  20
-98.85164800000003
+58.851648000000004
  30
 0.0
  11
-50.0
+19.99999999999997
  21
-98.85164800000004
+58.85164800000002
  31
 0.0
   0
@@ -2299,15 +2339,15 @@ LINE
   8
 0
  10
-100.0
+69.99999999999999
  20
-108.85164800000003
+68.851648
  30
 0.0
  11
-100.0
+69.99999999999999
  21
-98.85164800000003
+58.851648000000004
  31
 0.0
   0
@@ -2317,15 +2357,15 @@ LINE
   8
 0
  10
-50.0
+20.000000000000004
  20
-148.85164800000004
+108.85164800000003
  30
 0.0
  11
-50.0
+20.000000000000018
  21
-178.85164800000004
+138.85164800000004
  31
 0.0
   0
@@ -2335,15 +2375,15 @@ LINE
   8
 0
  10
-100.0
+70.00000000000001
  20
-178.85164800000004
+138.85164800000004
  30
 0.0
  11
-100.0
+70.0
  21
-148.85164800000004
+108.851648
  31
 0.0
   0
@@ -2355,15 +2395,15 @@ DOTTED
   8
 0
  10
-100.0
+70.00000000000001
  20
-178.85164800000004
+138.85164800000004
  30
 0.0
  11
-50.0
+20.000000000000018
  21
-178.85164800000004
+138.85164800000004
  31
 0.0
   0
@@ -2373,15 +2413,15 @@ LINE
   8
 0
  10
-100.0
+70.00000000000001
  20
-188.85164800000004
+148.85164800000004
  30
 0.0
  11
-100.0
+70.00000000000001
  21
-178.85164800000004
+138.85164800000004
  31
 0.0
   0
@@ -2391,15 +2431,15 @@ LINE
   8
 0
  10
-50.0
+20.000000000000018
  20
-188.85164800000004
+148.85164800000004
  30
 0.0
  11
-100.0
+70.00000000000001
  21
-188.85164800000004
+148.85164800000004
  31
 0.0
   0
@@ -2409,15 +2449,15 @@ LINE
   8
 0
  10
-50.0
+20.000000000000018
  20
-178.85164800000004
+138.85164800000004
  30
 0.0
  11
-50.0
+20.000000000000018
  21
-188.85164800000004
+148.85164800000004
  31
 0.0
   0
@@ -2427,13 +2467,13 @@ LINE
   8
 0
  10
-161.40786804847943
+101.40786804847944
  20
 37.35482121234262
  30
 0.0
  11
-159.13799662747846
+99.1379966274785
  21
 39.65755243235412
  31
@@ -2445,13 +2485,13 @@ LINE
   8
 0
  10
-159.13799662747846
+99.1379966274785
  20
 39.65755243235412
  30
 0.0
  11
-158.78191171333694
+98.78191171333694
  21
 39.306548822798916
  31
@@ -2463,13 +2503,13 @@ LINE
   8
 0
  10
-158.78191171333694
+98.78191171333694
  20
 39.306548822798916
  30
 0.0
  11
-161.05178313433782
+101.05178313433787
  21
 37.003817602787414
  31
@@ -2481,13 +2521,13 @@ LINE
   8
 0
  10
-161.05178313433782
+101.05178313433787
  20
 37.003817602787414
  30
 0.0
  11
-161.40786804847943
+101.40786804847944
  21
 37.35482121234262
  31
@@ -2499,13 +2539,13 @@ LINE
   8
 0
  10
-147.94994863385025
+87.9499486338503
  20
 48.38484435693414
  30
 0.0
  11
-149.31664954461675
+89.31664954461677
  21
 48.38484435693414
  31
@@ -2517,13 +2557,13 @@ LINE
   8
 0
  10
-149.31664954461675
+89.31664954461677
  20
 48.38484435693414
  30
 0.0
  11
-149.31664954461675
+89.31664954461677
  21
 51.118246178467075
  31
@@ -2535,13 +2575,13 @@ LINE
   8
 0
  10
-149.31664954461675
+89.31664954461677
  20
 51.118246178467075
  30
 0.0
  11
-147.94994863385025
+87.9499486338503
  21
 51.118246178467075
  31
@@ -2553,13 +2593,13 @@ LINE
   8
 0
  10
-159.13799662747854
+99.13799662747854
  20
 168.0457435676459
  30
 0.0
  11
-161.40786804847946
+101.40786804847947
  21
 170.3484747876574
  31
@@ -2571,13 +2611,13 @@ LINE
   8
 0
  10
-161.40786804847946
+101.40786804847947
  20
 170.3484747876574
  30
 0.0
  11
-161.05178313433788
+101.05178313433791
  21
 170.69947839721263
  31
@@ -2589,13 +2629,13 @@ LINE
   8
 0
  10
-161.05178313433788
+101.05178313433791
  20
 170.69947839721263
  30
 0.0
  11
-158.78191171333697
+98.78191171333697
  21
 168.39674717720112
  31
@@ -2607,13 +2647,13 @@ LINE
   8
 0
  10
-158.78191171333697
+98.78191171333697
  20
 168.39674717720112
  30
 0.0
  11
-159.13799662747854
+99.13799662747854
  21
 168.0457435676459
  31
@@ -2625,13 +2665,13 @@ LINE
   8
 0
  10
-228.5921319515205
+168.59213195152054
  20
 170.34847478765738
  30
 0.0
  11
-230.86200337252146
+170.86200337252149
  21
 168.04574356764587
  31
@@ -2643,13 +2683,13 @@ LINE
   8
 0
  10
-230.86200337252146
+170.86200337252149
  20
 168.04574356764587
  30
 0.0
  11
-231.21808828666303
+171.21808828666306
  21
 168.3967471772011
  31
@@ -2661,13 +2701,13 @@ LINE
   8
 0
  10
-231.21808828666303
+171.21808828666306
  20
 168.3967471772011
  30
 0.0
  11
-228.9482168656621
+168.9482168656621
  21
 170.69947839721257
  31
@@ -2679,13 +2719,13 @@ LINE
   8
 0
  10
-228.9482168656621
+168.9482168656621
  20
 170.69947839721257
  30
 0.0
  11
-228.5921319515205
+168.59213195152054
  21
 170.34847478765738
  31
@@ -2697,13 +2737,13 @@ LINE
   8
 0
  10
-242.0500513661497
+182.0500513661497
  20
 159.31845164306583
  30
 0.0
  11
-240.68335045538322
+180.68335045538325
  21
 159.31845164306583
  31
@@ -2715,13 +2755,13 @@ LINE
   8
 0
  10
-240.68335045538322
+180.68335045538325
  20
 159.31845164306583
  30
 0.0
  11
-240.68335045538322
+180.68335045538325
  21
 156.5850498215329
  31
@@ -2733,13 +2773,13 @@ LINE
   8
 0
  10
-240.68335045538322
+180.68335045538325
  20
 156.5850498215329
  30
 0.0
  11
-242.0500513661497
+182.0500513661497
  21
 156.5850498215329
  31
@@ -2751,13 +2791,13 @@ LINE
   8
 0
  10
-230.86200337252137
+170.8620033725214
  20
 39.65755243235414
  30
 0.0
  11
-228.59213195152043
+168.59213195152049
  21
 37.354821212342635
  31
@@ -2769,13 +2809,13 @@ LINE
   8
 0
  10
-228.59213195152043
+168.59213195152049
  20
 37.354821212342635
  30
 0.0
  11
-228.94821686566198
+168.94821686566203
  21
 37.003817602787414
  31
@@ -2787,13 +2827,13 @@ LINE
   8
 0
  10
-228.94821686566198
+168.94821686566203
  20
 37.003817602787414
  30
 0.0
  11
-231.21808828666295
+171.21808828666295
  21
 39.306548822798916
  31
@@ -2805,13 +2845,13 @@ LINE
   8
 0
  10
-231.21808828666295
+171.21808828666295
  20
 39.306548822798916
  30
 0.0
  11
-230.86200337252137
+170.8620033725214
  21
 39.65755243235414
  31
@@ -2823,13 +2863,13 @@ LINE
   8
 0
  10
-242.05005136614963
+182.05005136614966
  20
 51.11824617846707
  30
 0.0
  11
-240.68335045538316
+180.6833504553832
  21
 51.11824617846707
  31
@@ -2841,13 +2881,13 @@ LINE
   8
 0
  10
-240.68335045538316
+180.6833504553832
  20
 51.11824617846707
  30
 0.0
  11
-240.68335045538316
+180.6833504553832
  21
 48.38484435693413
  31
@@ -2859,13 +2899,13 @@ LINE
   8
 0
  10
-240.68335045538316
+180.6833504553832
  20
 48.38484435693413
  30
 0.0
  11
-242.05005136614963
+182.05005136614966
  21
 48.38484435693413
  31
@@ -2877,13 +2917,85 @@ LINE
   8
 0
  10
-147.94994863385028
+175.99999999999997
+ 20
+105.76831466666665
+ 30
+0.0
+ 11
+175.99999999999997
+ 21
+101.93498133333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.99999999999997
+ 20
+101.93498133333333
+ 30
+0.0
+ 11
+176.49999999999997
+ 21
+101.93498133333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.49999999999997
+ 20
+101.93498133333333
+ 30
+0.0
+ 11
+176.49999999999997
+ 21
+105.76831466666665
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.49999999999997
+ 20
+105.76831466666665
+ 30
+0.0
+ 11
+175.99999999999997
+ 21
+105.76831466666665
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.94994863385031
  20
 156.58504982153295
  30
 0.0
  11
-149.31664954461675
+89.31664954461678
  21
 156.58504982153295
  31
@@ -2895,13 +3007,13 @@ LINE
   8
 0
  10
-149.31664954461675
+89.31664954461678
  20
 156.58504982153295
  30
 0.0
  11
-149.31664954461675
+89.31664954461678
  21
 159.31845164306588
  31
@@ -2913,13 +3025,13 @@ LINE
   8
 0
  10
-149.31664954461675
+89.31664954461678
  20
 159.31845164306588
  30
 0.0
  11
-147.94994863385028
+87.94994863385031
  21
 159.31845164306588
  31
@@ -2931,15 +3043,69 @@ LINE
   8
 0
  10
-71.0
+1.2500000000000002
+ 20
+102.18498133333337
+ 30
+0.0
+ 11
+3.7500000000000004
+ 21
+102.18498133333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.2500000000000002
+ 20
+105.5183146666667
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+102.18498133333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+3.7500000000000004
+ 20
+105.5183146666667
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+105.5183146666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.999999999999986
  20
-117.85164800000001
+77.85164800000001
  30
 0.0
  11
-71.0
+40.999999999999986
  21
-109.85164800000001
+69.85164800000001
  31
 0.0
   0
@@ -2949,15 +3115,15 @@ LINE
   8
 0
  10
-71.0
+40.999999999999986
  20
-109.85164800000001
+69.85164800000001
  30
 0.0
  11
-79.0
+48.999999999999986
  21
-109.85164800000001
+69.85164800000001
  31
 0.0
   0
@@ -2967,15 +3133,15 @@ LINE
   8
 0
  10
-79.0
+48.999999999999986
  20
-109.85164800000001
+69.85164800000001
  30
 0.0
  11
-79.0
+48.999999999999986
  21
-117.85164800000001
+77.85164800000001
  31
 0.0
   0
@@ -2985,15 +3151,15 @@ LINE
   8
 0
  10
-79.0
+48.999999999999986
  20
-117.85164800000001
+77.85164800000001
  30
 0.0
  11
-71.0
+40.999999999999986
  21
-117.85164800000001
+77.85164800000001
  31
 0.0
   0
@@ -3003,15 +3169,15 @@ LINE
   8
 0
  10
-83.58333333333334
+53.5833333333333
  20
-106.60164800000003
+66.60164800000003
  30
 0.0
  11
-66.4166666666667
+36.41666666666664
  21
-106.60164800000004
+66.60164800000003
  31
 0.0
   0
@@ -3021,15 +3187,15 @@ LINE
   8
 0
  10
-66.4166666666667
+36.41666666666664
  20
-106.60164800000004
+66.60164800000003
  30
 0.0
  11
-66.4166666666667
+36.41666666666664
  21
-106.10164800000004
+66.10164800000001
  31
 0.0
   0
@@ -3039,15 +3205,15 @@ LINE
   8
 0
  10
-66.4166666666667
+36.41666666666664
  20
-106.10164800000004
+66.10164800000001
  30
 0.0
  11
-83.58333333333334
+53.5833333333333
  21
-106.10164800000003
+66.10164800000001
  31
 0.0
   0
@@ -3057,15 +3223,15 @@ LINE
   8
 0
  10
-83.58333333333334
+53.5833333333333
  20
-106.10164800000003
+66.10164800000001
  30
 0.0
  11
-83.58333333333334
+53.5833333333333
  21
-106.60164800000003
+66.60164800000003
  31
 0.0
   0
@@ -3075,15 +3241,15 @@ LINE
   8
 0
  10
-71.00000000000001
+41.0
  20
-177.85164800000004
+137.851648
  30
 0.0
  11
-71.00000000000001
+41.0
  21
-169.851648
+129.85164800000004
  31
 0.0
   0
@@ -3093,15 +3259,15 @@ LINE
   8
 0
  10
-71.00000000000001
+41.0
  20
-169.851648
+129.85164800000004
  30
 0.0
  11
-79.00000000000001
+49.00000000000001
  21
-169.851648
+129.85164800000004
  31
 0.0
   0
@@ -3111,15 +3277,15 @@ LINE
   8
 0
  10
-79.00000000000001
+49.00000000000001
  20
-169.851648
+129.85164800000004
  30
 0.0
  11
-79.00000000000001
+49.00000000000001
  21
-177.85164800000004
+137.851648
  31
 0.0
   0
@@ -3129,15 +3295,15 @@ LINE
   8
 0
  10
-79.00000000000001
+49.00000000000001
  20
-177.85164800000004
+137.851648
  30
 0.0
  11
-71.00000000000001
+41.0
  21
-177.85164800000004
+137.851648
  31
 0.0
   0
@@ -3147,15 +3313,15 @@ LINE
   8
 0
  10
-66.66666666666666
+36.66666666666669
  20
-186.351648
+146.35164800000004
  30
 0.0
  11
-61.666666666666664
+31.66666666666669
  21
-186.351648
+146.35164800000004
  31
 0.0
   0
@@ -3165,15 +3331,15 @@ LINE
   8
 0
  10
-61.666666666666664
+31.66666666666669
  20
-186.351648
+146.35164800000004
  30
 0.0
  11
-66.66666666666666
+36.66666666666669
  21
-181.351648
+141.35164800000004
  31
 0.0
   0
@@ -3183,15 +3349,15 @@ LINE
   8
 0
  10
-66.66666666666666
+36.66666666666669
  20
-181.351648
+141.35164800000004
  30
 0.0
  11
-83.33333333333334
+53.33333333333335
  21
-181.351648
+141.35164800000004
  31
 0.0
   0
@@ -3201,15 +3367,15 @@ LINE
   8
 0
  10
-83.33333333333334
+53.33333333333335
  20
-181.351648
+141.35164800000004
  30
 0.0
  11
-88.33333333333334
+58.33333333333335
  21
-186.351648
+146.35164800000004
  31
 0.0
   0
@@ -3219,15 +3385,15 @@ LINE
   8
 0
  10
-88.33333333333334
+58.33333333333335
  20
-186.351648
+146.35164800000004
  30
 0.0
  11
-83.33333333333334
+53.33333333333335
  21
-186.351648
+146.35164800000004
  31
 0.0
   0
diff --git a/rocolib/output/BoatWithDCMount/graph-lasercutter.svg b/rocolib/output/BoatWithDCMount/graph-lasercutter.svg
index dc7e53e051ce2f743e70af894a3df200cf72ac50..50fe9a3493df54836d62f2bd6ad45f992280bc12 100644
--- a/rocolib/output/BoatWithDCMount/graph-lasercutter.svg
+++ b/rocolib/output/BoatWithDCMount/graph-lasercutter.svg
@@ -1,128 +1,137 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="207.703296mm" version="1.1" viewBox="0.000000 0.000000 242.733402 207.703296" width="242.733402mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="207.703296mm" version="1.1" viewBox="0.000000 0.000000 182.733402 207.703296" width="182.733402mm">
   <defs/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.99999999999997" x2="219.99999999999997" y1="53.851648000000004" y2="153.851648"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.99999999999997" x2="169.99999999999997" y1="53.851648000000004" y2="153.851648"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.99999999999997" x2="169.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.99999999999997" x2="194.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.99999999999997" x2="169.99999999999997" y1="-7.134504187433777e-08" y2="53.851648000000004"/>
-  <line stroke="#000000" x1="161.51320686867427" x2="155.7566034343371" y1="33.97156470018156" y2="39.81150361779138"/>
-  <line stroke="#000000" x1="194.99999999999997" x2="161.51320686867427" y1="-7.13450560851925e-08" y2="33.97156470018156"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.99999999999997" x2="155.7566034343371" y1="53.851648000000004" y2="39.81150361779138"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.99999999999997" x2="149.99999999999994" y1="53.851648000000004" y2="45.6514425354012"/>
-  <line stroke="#000000" x1="155.7566034343371" x2="149.99999999999994" y1="39.81150361779138" y2="45.6514425354012"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="149.99999999999994" x2="149.99999999999994" y1="53.851648000000004" y2="45.651442535401195"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.99999999999997" x2="149.99999999999994" y1="53.851648000000004" y2="53.851648000000004"/>
-  <line stroke="#000000" x1="147.26659817846704" x2="149.99999999999994" y1="53.85164800000001" y2="53.85164800000001"/>
-  <line stroke="#000000" x1="147.26659817846704" x2="147.26659817846704" y1="45.6514425354012" y2="53.85164800000001"/>
-  <line stroke="#000000" x1="149.99999999999994" x2="147.26659817846704" y1="45.6514425354012" y2="45.6514425354012"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="149.99999999999997" x2="170.0" y1="153.851648" y2="153.851648"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="149.99999999999997" x2="170.0" y1="162.05185346459885" y2="153.851648"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="149.99999999999997" x2="149.99999999999997" y1="162.05185346459885" y2="153.851648"/>
-  <line stroke="#000000" x1="149.99999999999997" x2="155.75660343433714" y1="162.05185346459885" y2="167.89179238220865"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="155.75660343433714" x2="170.0" y1="167.89179238220865" y2="153.851648"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="195.0" x2="170.0" y1="207.70329607134505" y2="153.851648"/>
-  <line stroke="#000000" x1="161.51320686867436" x2="195.0" y1="173.73173129981845" y2="207.70329607134505"/>
-  <line stroke="#000000" x1="155.75660343433714" x2="161.51320686867436" y1="167.89179238220865" y2="173.73173129981845"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="170.0" x2="195.0" y1="153.851648" y2="153.851648"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="195.0" x2="219.99999999999997" y1="153.851648" y2="153.851648"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="195.0" x2="219.99999999999997" y1="207.70329607134505" y2="153.851648"/>
-  <line stroke="#000000" x1="228.48679313132564" x2="234.2433965656628" y1="173.73173129981845" y2="167.89179238220862"/>
-  <line stroke="#000000" x1="195.0" x2="228.48679313132564" y1="207.70329607134505" y2="173.73173129981845"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.99999999999997" x2="234.2433965656628" y1="153.851648" y2="167.89179238220862"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.99999999999997" x2="239.99999999999997" y1="153.851648" y2="162.05185346459876"/>
-  <line stroke="#000000" x1="234.2433965656628" x2="239.99999999999997" y1="167.89179238220862" y2="162.05185346459876"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="239.99999999999997" x2="239.99999999999997" y1="153.85164799999998" y2="162.05185346459876"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.99999999999997" x2="239.99999999999997" y1="153.851648" y2="153.85164799999998"/>
-  <line stroke="#000000" x1="242.7334018215329" x2="239.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/>
-  <line stroke="#000000" x1="242.7334018215329" x2="242.7334018215329" y1="162.05185346459876" y2="153.85164799999998"/>
-  <line stroke="#000000" x1="239.99999999999997" x2="242.7334018215329" y1="162.05185346459876" y2="162.05185346459876"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="239.99999999999991" x2="219.99999999999991" y1="53.851648" y2="53.85164800000001"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="239.99999999999991" x2="219.99999999999991" y1="45.651442535401195" y2="53.85164800000001"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="239.99999999999991" x2="239.99999999999991" y1="45.651442535401195" y2="53.851648"/>
-  <line stroke="#000000" x1="239.99999999999991" x2="234.24339656566272" y1="45.651442535401195" y2="39.81150361779138"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="234.24339656566272" x2="219.99999999999991" y1="39.81150361779138" y2="53.85164800000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.9999999999999" x2="219.99999999999991" y1="-7.134499924177363e-08" y2="53.85164800000002"/>
-  <line stroke="#000000" x1="228.48679313132556" x2="194.9999999999999" y1="33.971564700181574" y2="-7.134499924177363e-08"/>
-  <line stroke="#000000" x1="234.24339656566272" x2="228.48679313132556" y1="39.811503617791395" y2="33.971564700181574"/>
-  <line stroke="#000000" x1="242.73340182153285" x2="239.99999999999991" y1="45.651442535401195" y2="45.651442535401195"/>
-  <line stroke="#000000" x1="242.73340182153285" x2="242.73340182153285" y1="53.851648000000004" y2="45.651442535401195"/>
-  <line stroke="#000000" x1="239.99999999999991" x2="242.73340182153285" y1="53.851648000000004" y2="53.851648000000004"/>
-  <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999991" y1="138.85164799999998" y2="53.851648"/>
-  <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999997" y1="148.851648" y2="138.85164799999998"/>
-  <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999997" y1="153.85164799999998" y2="148.851648"/>
-  <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/>
-  <line stroke="#000000" x1="239.99999999999991" x2="239.99999999999991" y1="53.851648" y2="53.851648"/>
-  <line stroke="#000000" x1="147.26659817846706" x2="149.99999999999997" y1="162.05185346459885" y2="162.05185346459885"/>
-  <line stroke="#000000" x1="147.26659817846706" x2="147.26659817846706" y1="153.851648" y2="162.05185346459885"/>
-  <line stroke="#000000" x1="149.99999999999997" x2="147.26659817846706" y1="153.851648" y2="153.851648"/>
-  <line stroke="#000000" x1="149.99999999999997" x2="149.99999999999997" y1="148.85164800000004" y2="153.851648"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="149.99999999999997" x2="149.99999999999997" y1="138.85164800000004" y2="148.85164800000004"/>
-  <line stroke="#000000" x1="149.99999999999994" x2="149.99999999999997" y1="53.851648000000004" y2="138.85164800000004"/>
-  <line stroke="#000000" x1="149.99999999999994" x2="149.99999999999994" y1="53.851648000000004" y2="53.851648000000004"/>
-  <line stroke="#000000" x1="149.99999999999997" x2="149.99999999999997" y1="153.851648" y2="153.851648"/>
-  <line stroke="#000000" x1="99.99999999999999" x2="149.99999999999997" y1="148.85164800000004" y2="148.85164800000004"/>
-  <line stroke="#000000" x1="149.99999999999997" x2="99.99999999999999" y1="138.85164800000004" y2="138.85164800000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="99.99999999999999" y1="138.85164800000004" y2="138.85164800000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="100.0" y1="148.85164800000004" y2="148.85164800000004"/>
-  <line stroke="#000000" x1="50.0" x2="0.0" y1="138.85164800000004" y2="138.85164800000007"/>
-  <line stroke="#000000" x1="0.0" x2="50.0" y1="148.85164800000007" y2="148.85164800000004"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="138.85164800000007" y2="148.85164800000007"/>
-  <line stroke="#000000" x1="50.0" x2="50.0" y1="108.85164800000004" y2="138.85164800000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="99.99999999999999" y1="108.85164800000004" y2="108.85164800000003"/>
-  <line stroke="#000000" x1="100.0" x2="99.99999999999999" y1="138.85164800000004" y2="108.85164800000003"/>
-  <line stroke="#000000" x1="50.0" x2="50.0" y1="98.85164800000004" y2="108.85164800000004"/>
-  <line stroke="#000000" x1="100.0" x2="50.0" y1="98.85164800000003" y2="98.85164800000004"/>
-  <line stroke="#000000" x1="100.0" x2="100.0" y1="108.85164800000003" y2="98.85164800000003"/>
-  <line stroke="#000000" x1="50.0" x2="50.0" y1="148.85164800000004" y2="178.85164800000004"/>
-  <line stroke="#000000" x1="100.0" x2="100.0" y1="178.85164800000004" y2="148.85164800000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="100.0" x2="50.0" y1="178.85164800000004" y2="178.85164800000004"/>
-  <line stroke="#000000" x1="100.0" x2="100.0" y1="188.85164800000004" y2="178.85164800000004"/>
-  <line stroke="#000000" x1="50.0" x2="100.0" y1="188.85164800000004" y2="188.85164800000004"/>
-  <line stroke="#000000" x1="50.0" x2="50.0" y1="178.85164800000004" y2="188.85164800000004"/>
-  <line stroke="#888888" x1="161.40786804847943" x2="159.13799662747846" y1="37.35482121234262" y2="39.65755243235412"/>
-  <line stroke="#888888" x1="159.13799662747846" x2="158.78191171333694" y1="39.65755243235412" y2="39.306548822798916"/>
-  <line stroke="#888888" x1="158.78191171333694" x2="161.05178313433782" y1="39.306548822798916" y2="37.003817602787414"/>
-  <line stroke="#888888" x1="161.05178313433782" x2="161.40786804847943" y1="37.003817602787414" y2="37.35482121234262"/>
-  <line stroke="#888888" x1="147.94994863385025" x2="149.31664954461675" y1="48.38484435693414" y2="48.38484435693414"/>
-  <line stroke="#888888" x1="149.31664954461675" x2="149.31664954461675" y1="48.38484435693414" y2="51.118246178467075"/>
-  <line stroke="#888888" x1="149.31664954461675" x2="147.94994863385025" y1="51.118246178467075" y2="51.118246178467075"/>
-  <line stroke="#888888" x1="159.13799662747854" x2="161.40786804847946" y1="168.0457435676459" y2="170.3484747876574"/>
-  <line stroke="#888888" x1="161.40786804847946" x2="161.05178313433788" y1="170.3484747876574" y2="170.69947839721263"/>
-  <line stroke="#888888" x1="161.05178313433788" x2="158.78191171333697" y1="170.69947839721263" y2="168.39674717720112"/>
-  <line stroke="#888888" x1="158.78191171333697" x2="159.13799662747854" y1="168.39674717720112" y2="168.0457435676459"/>
-  <line stroke="#888888" x1="228.5921319515205" x2="230.86200337252146" y1="170.34847478765738" y2="168.04574356764587"/>
-  <line stroke="#888888" x1="230.86200337252146" x2="231.21808828666303" y1="168.04574356764587" y2="168.3967471772011"/>
-  <line stroke="#888888" x1="231.21808828666303" x2="228.9482168656621" y1="168.3967471772011" y2="170.69947839721257"/>
-  <line stroke="#888888" x1="228.9482168656621" x2="228.5921319515205" y1="170.69947839721257" y2="170.34847478765738"/>
-  <line stroke="#888888" x1="242.0500513661497" x2="240.68335045538322" y1="159.31845164306583" y2="159.31845164306583"/>
-  <line stroke="#888888" x1="240.68335045538322" x2="240.68335045538322" y1="159.31845164306583" y2="156.5850498215329"/>
-  <line stroke="#888888" x1="240.68335045538322" x2="242.0500513661497" y1="156.5850498215329" y2="156.5850498215329"/>
-  <line stroke="#888888" x1="230.86200337252137" x2="228.59213195152043" y1="39.65755243235414" y2="37.354821212342635"/>
-  <line stroke="#888888" x1="228.59213195152043" x2="228.94821686566198" y1="37.354821212342635" y2="37.003817602787414"/>
-  <line stroke="#888888" x1="228.94821686566198" x2="231.21808828666295" y1="37.003817602787414" y2="39.306548822798916"/>
-  <line stroke="#888888" x1="231.21808828666295" x2="230.86200337252137" y1="39.306548822798916" y2="39.65755243235414"/>
-  <line stroke="#888888" x1="242.05005136614963" x2="240.68335045538316" y1="51.11824617846707" y2="51.11824617846707"/>
-  <line stroke="#888888" x1="240.68335045538316" x2="240.68335045538316" y1="51.11824617846707" y2="48.38484435693413"/>
-  <line stroke="#888888" x1="240.68335045538316" x2="242.05005136614963" y1="48.38484435693413" y2="48.38484435693413"/>
-  <line stroke="#888888" x1="147.94994863385028" x2="149.31664954461675" y1="156.58504982153295" y2="156.58504982153295"/>
-  <line stroke="#888888" x1="149.31664954461675" x2="149.31664954461675" y1="156.58504982153295" y2="159.31845164306588"/>
-  <line stroke="#888888" x1="149.31664954461675" x2="147.94994863385028" y1="159.31845164306588" y2="159.31845164306588"/>
-  <line stroke="#888888" x1="71.0" x2="71.0" y1="117.85164800000001" y2="109.85164800000001"/>
-  <line stroke="#888888" x1="71.0" x2="79.0" y1="109.85164800000001" y2="109.85164800000001"/>
-  <line stroke="#888888" x1="79.0" x2="79.0" y1="109.85164800000001" y2="117.85164800000001"/>
-  <line stroke="#888888" x1="79.0" x2="71.0" y1="117.85164800000001" y2="117.85164800000001"/>
-  <line stroke="#888888" x1="83.58333333333334" x2="66.4166666666667" y1="106.60164800000003" y2="106.60164800000004"/>
-  <line stroke="#888888" x1="66.4166666666667" x2="66.4166666666667" y1="106.60164800000004" y2="106.10164800000004"/>
-  <line stroke="#888888" x1="66.4166666666667" x2="83.58333333333334" y1="106.10164800000004" y2="106.10164800000003"/>
-  <line stroke="#888888" x1="83.58333333333334" x2="83.58333333333334" y1="106.10164800000003" y2="106.60164800000003"/>
-  <line stroke="#888888" x1="71.00000000000001" x2="71.00000000000001" y1="177.85164800000004" y2="169.851648"/>
-  <line stroke="#888888" x1="71.00000000000001" x2="79.00000000000001" y1="169.851648" y2="169.851648"/>
-  <line stroke="#888888" x1="79.00000000000001" x2="79.00000000000001" y1="169.851648" y2="177.85164800000004"/>
-  <line stroke="#888888" x1="79.00000000000001" x2="71.00000000000001" y1="177.85164800000004" y2="177.85164800000004"/>
-  <line stroke="#888888" x1="66.66666666666666" x2="61.666666666666664" y1="186.351648" y2="186.351648"/>
-  <line stroke="#888888" x1="61.666666666666664" x2="66.66666666666666" y1="186.351648" y2="181.351648"/>
-  <line stroke="#888888" x1="66.66666666666666" x2="83.33333333333334" y1="181.351648" y2="181.351648"/>
-  <line stroke="#888888" x1="83.33333333333334" x2="88.33333333333334" y1="181.351648" y2="186.351648"/>
-  <line stroke="#888888" x1="88.33333333333334" x2="83.33333333333334" y1="186.351648" y2="186.351648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.0" x2="160.0" y1="53.851648000000004" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999999" x2="109.99999999999999" y1="53.851648000000004" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="135.0" x2="109.99999999999999" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.0" x2="135.0" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="135.0" x2="109.99999999999999" y1="-7.134504187433777e-08" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="101.51320686867432" x2="95.75660343433715" y1="33.97156470018156" y2="39.81150361779138"/>
+  <line stroke="#000000" x1="135.0" x2="101.51320686867432" y1="-7.13450560851925e-08" y2="33.97156470018156"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999999" x2="95.75660343433715" y1="53.851648000000004" y2="39.81150361779138"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999999" x2="89.99999999999997" y1="53.851648000000004" y2="45.6514425354012"/>
+  <line stroke="#000000" x1="95.75660343433715" x2="89.99999999999997" y1="39.81150361779138" y2="45.6514425354012"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="89.99999999999997" x2="89.99999999999997" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999999" x2="89.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="87.26659817846705" x2="89.99999999999997" y1="53.85164800000001" y2="53.85164800000001"/>
+  <line stroke="#000000" x1="87.26659817846705" x2="87.26659817846705" y1="45.6514425354012" y2="53.85164800000001"/>
+  <line stroke="#000000" x1="89.99999999999997" x2="87.26659817846705" y1="45.6514425354012" y2="45.6514425354012"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="110.00000000000001" y1="153.851648" y2="153.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="110.00000000000001" y1="162.05185346459885" y2="153.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="90.0" y1="162.05185346459885" y2="153.851648"/>
+  <line stroke="#000000" x1="90.0" x2="95.7566034343372" y1="162.05185346459885" y2="167.89179238220865"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="95.7566034343372" x2="110.00000000000001" y1="167.89179238220865" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="135.00000000000003" x2="110.00000000000001" y1="207.70329607134505" y2="153.851648"/>
+  <line stroke="#000000" x1="101.51320686867436" x2="135.00000000000003" y1="173.73173129981845" y2="207.70329607134505"/>
+  <line stroke="#000000" x1="95.7566034343372" x2="101.51320686867436" y1="167.89179238220865" y2="173.73173129981845"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="110.00000000000001" x2="135.00000000000003" y1="153.851648" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="135.00000000000003" x2="160.0" y1="153.851648" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="135.00000000000003" x2="160.0" y1="207.70329607134505" y2="153.851648"/>
+  <line stroke="#000000" x1="168.48679313132567" x2="174.2433965656628" y1="173.73173129981845" y2="167.89179238220862"/>
+  <line stroke="#000000" x1="135.00000000000003" x2="168.48679313132567" y1="207.70329607134505" y2="173.73173129981845"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.0" x2="174.2433965656628" y1="153.851648" y2="167.89179238220862"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.00000000000003" x2="179.99999999999997" y1="153.851648" y2="162.05185346459876"/>
+  <line stroke="#000000" x1="174.2433965656628" x2="179.99999999999997" y1="167.89179238220862" y2="162.05185346459876"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.99999999999997" x2="179.99999999999997" y1="153.85164799999998" y2="162.05185346459876"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.0" x2="179.99999999999997" y1="153.851648" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="182.73340182153294" x2="179.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="182.73340182153294" x2="182.73340182153294" y1="162.05185346459876" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="179.99999999999997" x2="182.73340182153294" y1="162.05185346459876" y2="162.05185346459876"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.99999999999991" x2="159.99999999999991" y1="53.851648" y2="53.85164800000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.9999999999999" x2="159.99999999999991" y1="45.651442535401195" y2="53.85164800000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.9999999999999" x2="179.99999999999991" y1="45.651442535401195" y2="53.851648"/>
+  <line stroke="#000000" x1="179.99999999999991" x2="174.24339656566278" y1="45.651442535401195" y2="39.81150361779138"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="174.24339656566278" x2="159.99999999999991" y1="39.81150361779138" y2="53.85164800000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.9999999999999" x2="159.99999999999991" y1="-7.134499924177363e-08" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="168.48679313132558" x2="134.9999999999999" y1="33.971564700181574" y2="-7.134499924177363e-08"/>
+  <line stroke="#000000" x1="174.24339656566278" x2="168.48679313132558" y1="39.811503617791395" y2="33.971564700181574"/>
+  <line stroke="#000000" x1="182.73340182153285" x2="179.99999999999991" y1="45.651442535401195" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="182.73340182153285" x2="182.73340182153285" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="179.99999999999991" x2="182.73340182153285" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="179.99999999999994" x2="179.99999999999991" y1="98.851648" y2="53.851648"/>
+  <line stroke="#000000" x1="179.99999999999994" x2="179.99999999999994" y1="108.85164799999998" y2="98.851648"/>
+  <line stroke="#000000" x1="179.99999999999997" x2="179.99999999999994" y1="153.85164799999998" y2="108.85164799999998"/>
+  <line stroke="#000000" x1="179.99999999999997" x2="179.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="179.99999999999991" x2="179.99999999999991" y1="53.851648" y2="53.851648"/>
+  <line stroke="#000000" x1="87.26659817846708" x2="90.0" y1="162.05185346459885" y2="162.05185346459885"/>
+  <line stroke="#000000" x1="87.26659817846708" x2="87.26659817846708" y1="153.851648" y2="162.05185346459885"/>
+  <line stroke="#000000" x1="90.0" x2="87.26659817846708" y1="153.851648" y2="153.851648"/>
+  <line stroke="#000000" x1="89.99999999999999" x2="90.0" y1="108.851648" y2="153.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="89.99999999999999" x2="89.99999999999999" y1="98.85164800000001" y2="108.851648"/>
+  <line stroke="#000000" x1="89.99999999999997" x2="89.99999999999999" y1="53.851648000000004" y2="98.85164800000001"/>
+  <line stroke="#000000" x1="89.99999999999997" x2="89.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="153.851648" y2="153.851648"/>
+  <line stroke="#000000" x1="70.0" x2="89.99999999999999" y1="108.851648" y2="108.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.0" x2="70.0" y1="98.85164800000001" y2="108.851648"/>
+  <line stroke="#000000" x1="89.99999999999999" x2="70.0" y1="98.85164800000001" y2="98.85164800000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="20.000000000000004" x2="19.999999999999986" y1="108.85164800000003" y2="98.85164800000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="19.999999999999986" x2="69.99999999999999" y1="98.85164800000003" y2="98.85164800000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="20.000000000000004" x2="70.0" y1="108.85164800000003" y2="108.851648"/>
+  <line stroke="#000000" x1="20.000000000000004" x2="0.0" y1="98.85164800000003" y2="98.85164800000003"/>
+  <line stroke="#000000" x1="0.0" x2="20.000000000000004" y1="108.85164800000003" y2="108.85164800000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="98.85164800000003" y2="108.85164800000003"/>
+  <line stroke="#000000" x1="19.999999999999986" x2="20.000000000000004" y1="68.85164800000001" y2="98.85164800000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="19.999999999999986" x2="69.99999999999999" y1="68.85164800000001" y2="68.85164800000001"/>
+  <line stroke="#000000" x1="70.0" x2="69.99999999999999" y1="98.85164800000001" y2="68.85164800000001"/>
+  <line stroke="#000000" x1="19.99999999999997" x2="19.99999999999997" y1="58.85164800000002" y2="68.85164800000001"/>
+  <line stroke="#000000" x1="69.99999999999999" x2="19.99999999999997" y1="58.851648000000004" y2="58.85164800000002"/>
+  <line stroke="#000000" x1="69.99999999999999" x2="69.99999999999999" y1="68.851648" y2="58.851648000000004"/>
+  <line stroke="#000000" x1="20.000000000000004" x2="20.000000000000018" y1="108.85164800000003" y2="138.85164800000004"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.0" y1="138.85164800000004" y2="108.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="20.000000000000018" y1="138.85164800000004" y2="138.85164800000004"/>
+  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="148.85164800000004" y2="138.85164800000004"/>
+  <line stroke="#000000" x1="20.000000000000018" x2="70.00000000000001" y1="148.85164800000004" y2="148.85164800000004"/>
+  <line stroke="#000000" x1="20.000000000000018" x2="20.000000000000018" y1="138.85164800000004" y2="148.85164800000004"/>
+  <line stroke="#888888" x1="101.40786804847944" x2="99.1379966274785" y1="37.35482121234262" y2="39.65755243235412"/>
+  <line stroke="#888888" x1="99.1379966274785" x2="98.78191171333694" y1="39.65755243235412" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="98.78191171333694" x2="101.05178313433787" y1="39.306548822798916" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="101.05178313433787" x2="101.40786804847944" y1="37.003817602787414" y2="37.35482121234262"/>
+  <line stroke="#888888" x1="87.9499486338503" x2="89.31664954461677" y1="48.38484435693414" y2="48.38484435693414"/>
+  <line stroke="#888888" x1="89.31664954461677" x2="89.31664954461677" y1="48.38484435693414" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="89.31664954461677" x2="87.9499486338503" y1="51.118246178467075" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="99.13799662747854" x2="101.40786804847947" y1="168.0457435676459" y2="170.3484747876574"/>
+  <line stroke="#888888" x1="101.40786804847947" x2="101.05178313433791" y1="170.3484747876574" y2="170.69947839721263"/>
+  <line stroke="#888888" x1="101.05178313433791" x2="98.78191171333697" y1="170.69947839721263" y2="168.39674717720112"/>
+  <line stroke="#888888" x1="98.78191171333697" x2="99.13799662747854" y1="168.39674717720112" y2="168.0457435676459"/>
+  <line stroke="#888888" x1="168.59213195152054" x2="170.86200337252149" y1="170.34847478765738" y2="168.04574356764587"/>
+  <line stroke="#888888" x1="170.86200337252149" x2="171.21808828666306" y1="168.04574356764587" y2="168.3967471772011"/>
+  <line stroke="#888888" x1="171.21808828666306" x2="168.9482168656621" y1="168.3967471772011" y2="170.69947839721257"/>
+  <line stroke="#888888" x1="168.9482168656621" x2="168.59213195152054" y1="170.69947839721257" y2="170.34847478765738"/>
+  <line stroke="#888888" x1="182.0500513661497" x2="180.68335045538325" y1="159.31845164306583" y2="159.31845164306583"/>
+  <line stroke="#888888" x1="180.68335045538325" x2="180.68335045538325" y1="159.31845164306583" y2="156.5850498215329"/>
+  <line stroke="#888888" x1="180.68335045538325" x2="182.0500513661497" y1="156.5850498215329" y2="156.5850498215329"/>
+  <line stroke="#888888" x1="170.8620033725214" x2="168.59213195152049" y1="39.65755243235414" y2="37.354821212342635"/>
+  <line stroke="#888888" x1="168.59213195152049" x2="168.94821686566203" y1="37.354821212342635" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="168.94821686566203" x2="171.21808828666295" y1="37.003817602787414" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="171.21808828666295" x2="170.8620033725214" y1="39.306548822798916" y2="39.65755243235414"/>
+  <line stroke="#888888" x1="182.05005136614966" x2="180.6833504553832" y1="51.11824617846707" y2="51.11824617846707"/>
+  <line stroke="#888888" x1="180.6833504553832" x2="180.6833504553832" y1="51.11824617846707" y2="48.38484435693413"/>
+  <line stroke="#888888" x1="180.6833504553832" x2="182.05005136614966" y1="48.38484435693413" y2="48.38484435693413"/>
+  <line stroke="#888888" x1="175.99999999999997" x2="175.99999999999997" y1="105.76831466666665" y2="101.93498133333333"/>
+  <line stroke="#888888" x1="175.99999999999997" x2="176.49999999999997" y1="101.93498133333333" y2="101.93498133333333"/>
+  <line stroke="#888888" x1="176.49999999999997" x2="176.49999999999997" y1="101.93498133333333" y2="105.76831466666665"/>
+  <line stroke="#888888" x1="176.49999999999997" x2="175.99999999999997" y1="105.76831466666665" y2="105.76831466666665"/>
+  <line stroke="#888888" x1="87.94994863385031" x2="89.31664954461678" y1="156.58504982153295" y2="156.58504982153295"/>
+  <line stroke="#888888" x1="89.31664954461678" x2="89.31664954461678" y1="156.58504982153295" y2="159.31845164306588"/>
+  <line stroke="#888888" x1="89.31664954461678" x2="87.94994863385031" y1="159.31845164306588" y2="159.31845164306588"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="3.7500000000000004" y1="102.18498133333337" y2="102.18498133333337"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="105.5183146666667" y2="102.18498133333337"/>
+  <line stroke="#888888" x1="3.7500000000000004" x2="1.2500000000000002" y1="105.5183146666667" y2="105.5183146666667"/>
+  <line stroke="#888888" x1="40.999999999999986" x2="40.999999999999986" y1="77.85164800000001" y2="69.85164800000001"/>
+  <line stroke="#888888" x1="40.999999999999986" x2="48.999999999999986" y1="69.85164800000001" y2="69.85164800000001"/>
+  <line stroke="#888888" x1="48.999999999999986" x2="48.999999999999986" y1="69.85164800000001" y2="77.85164800000001"/>
+  <line stroke="#888888" x1="48.999999999999986" x2="40.999999999999986" y1="77.85164800000001" y2="77.85164800000001"/>
+  <line stroke="#888888" x1="53.5833333333333" x2="36.41666666666664" y1="66.60164800000003" y2="66.60164800000003"/>
+  <line stroke="#888888" x1="36.41666666666664" x2="36.41666666666664" y1="66.60164800000003" y2="66.10164800000001"/>
+  <line stroke="#888888" x1="36.41666666666664" x2="53.5833333333333" y1="66.10164800000001" y2="66.10164800000001"/>
+  <line stroke="#888888" x1="53.5833333333333" x2="53.5833333333333" y1="66.10164800000001" y2="66.60164800000003"/>
+  <line stroke="#888888" x1="41.0" x2="41.0" y1="137.851648" y2="129.85164800000004"/>
+  <line stroke="#888888" x1="41.0" x2="49.00000000000001" y1="129.85164800000004" y2="129.85164800000004"/>
+  <line stroke="#888888" x1="49.00000000000001" x2="49.00000000000001" y1="129.85164800000004" y2="137.851648"/>
+  <line stroke="#888888" x1="49.00000000000001" x2="41.0" y1="137.851648" y2="137.851648"/>
+  <line stroke="#888888" x1="36.66666666666669" x2="31.66666666666669" y1="146.35164800000004" y2="146.35164800000004"/>
+  <line stroke="#888888" x1="31.66666666666669" x2="36.66666666666669" y1="146.35164800000004" y2="141.35164800000004"/>
+  <line stroke="#888888" x1="36.66666666666669" x2="53.33333333333335" y1="141.35164800000004" y2="141.35164800000004"/>
+  <line stroke="#888888" x1="53.33333333333335" x2="58.33333333333335" y1="141.35164800000004" y2="146.35164800000004"/>
+  <line stroke="#888888" x1="58.33333333333335" x2="53.33333333333335" y1="146.35164800000004" y2="146.35164800000004"/>
 </svg>
diff --git a/rocolib/output/BoatWithDCMount/graph-model.png b/rocolib/output/BoatWithDCMount/graph-model.png
index e41b429bc48e74b540ffd4057dff3d0bc88de4ea..91f32444db1836090eb98263136b0cdb2172cb5f 100644
Binary files a/rocolib/output/BoatWithDCMount/graph-model.png and b/rocolib/output/BoatWithDCMount/graph-model.png differ
diff --git a/rocolib/output/BoatWithDCMount/graph-model.stl b/rocolib/output/BoatWithDCMount/graph-model.stl
index 54fced9a3ea863b9871849b6e6614b89de191935..b5ef298d51c8b0b23471d1d50a2562f8dbb3229f 100644
--- a/rocolib/output/BoatWithDCMount/graph-model.stl
+++ b/rocolib/output/BoatWithDCMount/graph-model.stl
@@ -183,170 +183,170 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0450 0.0800
-vertex -0.0540 0.0450 0.0590
-vertex -0.0540 0.0450 0.0510
+vertex 0.0250 0.0050 0.0300
+vertex 0.0040 0.0050 0.0290
+vertex -0.0040 0.0050 0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0540 0.0450 0.0590
-vertex -0.0550 0.0450 0.0800
-vertex -0.0460 0.0450 0.0590
+vertex 0.0040 0.0050 0.0290
+vertex 0.0250 0.0050 0.0300
+vertex 0.0040 0.0050 0.0210
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0450 0.0300
-vertex -0.0540 0.0450 0.0510
-vertex -0.0460 0.0450 0.0510
+vertex -0.0250 0.0050 0.0300
+vertex -0.0040 0.0050 0.0290
+vertex -0.0040 0.0050 0.0210
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0540 0.0450 0.0510
-vertex -0.0550 0.0450 0.0300
-vertex -0.0550 0.0450 0.0800
+vertex -0.0040 0.0050 0.0290
+vertex -0.0250 0.0050 0.0300
+vertex 0.0250 0.0050 0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0460 0.0450 0.0590
-vertex -0.0250 0.0450 0.0800
-vertex -0.0250 0.0450 0.0300
+vertex 0.0040 0.0050 0.0210
+vertex 0.0250 0.0050 0.0000
+vertex -0.0250 0.0050 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0450 0.0800
-vertex -0.0460 0.0450 0.0590
-vertex -0.0550 0.0450 0.0800
+vertex 0.0250 0.0050 0.0000
+vertex 0.0040 0.0050 0.0210
+vertex 0.0250 0.0050 0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0460 0.0450 0.0510
-vertex -0.0250 0.0450 0.0300
-vertex -0.0550 0.0450 0.0300
+vertex -0.0040 0.0050 0.0210
+vertex -0.0250 0.0050 0.0000
+vertex -0.0250 0.0050 0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0450 0.0300
-vertex -0.0460 0.0450 0.0510
-vertex -0.0460 0.0450 0.0590
+vertex -0.0250 0.0050 0.0000
+vertex -0.0040 0.0050 0.0210
+vertex 0.0040 0.0050 0.0210
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0450 0.0300
-vertex -0.0250 0.0450 0.0800
-vertex -0.0250 0.0350 0.0800
+vertex -0.0250 0.0050 0.0000
+vertex 0.0250 0.0050 0.0000
+vertex 0.0250 -0.0050 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0350 0.0800
-vertex -0.0250 0.0350 0.0300
-vertex -0.0250 0.0450 0.0300
+vertex 0.0250 -0.0050 0.0000
+vertex -0.0250 -0.0050 0.0000
+vertex -0.0250 0.0050 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0350 0.0800
-vertex -0.0460 0.0350 0.0590
-vertex -0.0460 0.0350 0.0510
+vertex 0.0250 -0.0050 0.0000
+vertex 0.0040 -0.0050 0.0210
+vertex -0.0040 -0.0050 0.0210
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0460 0.0350 0.0590
-vertex -0.0250 0.0350 0.0800
-vertex -0.0550 0.0350 0.0800
+vertex 0.0040 -0.0050 0.0210
+vertex 0.0250 -0.0050 0.0000
+vertex 0.0250 -0.0050 0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0350 0.0300
-vertex -0.0460 0.0350 0.0510
-vertex -0.0550 0.0350 0.0300
+vertex -0.0250 -0.0050 0.0000
+vertex -0.0040 -0.0050 0.0210
+vertex -0.0250 -0.0050 0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0460 0.0350 0.0510
-vertex -0.0250 0.0350 0.0300
-vertex -0.0250 0.0350 0.0800
+vertex -0.0040 -0.0050 0.0210
+vertex -0.0250 -0.0050 0.0000
+vertex 0.0250 -0.0050 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0540 0.0350 0.0590
-vertex -0.0550 0.0350 0.0800
-vertex -0.0550 0.0350 0.0300
+vertex 0.0040 -0.0050 0.0290
+vertex 0.0250 -0.0050 0.0300
+vertex -0.0250 -0.0050 0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0350 0.0800
-vertex -0.0540 0.0350 0.0590
-vertex -0.0460 0.0350 0.0590
+vertex 0.0250 -0.0050 0.0300
+vertex 0.0040 -0.0050 0.0290
+vertex 0.0040 -0.0050 0.0210
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0540 0.0350 0.0510
-vertex -0.0550 0.0350 0.0300
-vertex -0.0460 0.0350 0.0510
+vertex -0.0040 -0.0050 0.0290
+vertex -0.0250 -0.0050 0.0300
+vertex -0.0040 -0.0050 0.0210
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0350 0.0300
-vertex -0.0540 0.0350 0.0510
-vertex -0.0540 0.0350 0.0590
+vertex -0.0250 -0.0050 0.0300
+vertex -0.0040 -0.0050 0.0290
+vertex 0.0040 -0.0050 0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0350 0.0300
-vertex -0.0550 0.0350 0.0800
-vertex -0.0550 0.0450 0.0800
+vertex -0.0250 -0.0050 0.0300
+vertex 0.0250 -0.0050 0.0300
+vertex 0.0250 0.0050 0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0450 0.0800
-vertex -0.0550 0.0450 0.0300
-vertex -0.0550 0.0350 0.0300
+vertex 0.0250 0.0050 0.0300
+vertex -0.0250 0.0050 0.0300
+vertex -0.0250 -0.0050 0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0450 0.1300
-vertex -0.0250 0.0350 0.1300
-vertex -0.0250 0.0350 0.0800
+vertex 0.0250 0.0050 -0.0200
+vertex 0.0250 -0.0050 -0.0200
+vertex 0.0250 -0.0050 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0350 0.0800
-vertex -0.0250 0.0450 0.0800
-vertex -0.0250 0.0450 0.1300
+vertex 0.0250 -0.0050 0.0000
+vertex 0.0250 0.0050 0.0000
+vertex 0.0250 0.0050 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0350 -0.0200
-vertex -0.0250 0.0450 -0.0200
-vertex -0.0250 0.0450 0.0300
+vertex -0.0250 -0.0050 -0.0200
+vertex -0.0250 0.0050 -0.0200
+vertex -0.0250 0.0050 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0450 0.0300
-vertex -0.0250 0.0350 0.0300
-vertex -0.0250 0.0350 -0.0200
+vertex -0.0250 0.0050 0.0000
+vertex -0.0250 -0.0050 0.0000
+vertex -0.0250 -0.0050 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
@@ -407,16 +407,16 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0350 0.0800
-vertex -0.0550 0.0450 0.0800
-vertex -0.0550 0.0450 0.0300
+vertex 0.0250 -0.0050 0.0300
+vertex 0.0250 0.0050 0.0300
+vertex -0.0250 0.0050 0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0450 0.0300
-vertex -0.0550 0.0350 0.0300
-vertex -0.0550 0.0350 0.0800
+vertex -0.0250 0.0050 0.0300
+vertex -0.0250 -0.0050 0.0300
+vertex 0.0250 -0.0050 0.0300
 endloop
 endfacet
 endsolid python
diff --git a/rocolib/output/BoatWithDCMount/graph-silhouette.dxf b/rocolib/output/BoatWithDCMount/graph-silhouette.dxf
index 044c6e1da666961babccf18bdec4a3b8aed182f2..dbf3b805c117269156ebafe2d3d0467ffa69a358 100644
--- a/rocolib/output/BoatWithDCMount/graph-silhouette.dxf
+++ b/rocolib/output/BoatWithDCMount/graph-silhouette.dxf
@@ -945,13 +945,13 @@ DOTTED
   8
 0
  10
-219.99999999999997
+160.0
  20
 53.851648000000004
  30
 0.0
  11
-219.99999999999997
+160.0
  21
 153.851648
  31
@@ -965,13 +965,13 @@ DOTTED
   8
 0
  10
-169.99999999999997
+109.99999999999999
  20
 53.851648000000004
  30
 0.0
  11
-169.99999999999997
+109.99999999999999
  21
 153.851648
  31
@@ -985,13 +985,13 @@ DOTTED
   8
 0
  10
-194.99999999999997
+135.0
  20
 53.851648000000004
  30
 0.0
  11
-169.99999999999997
+109.99999999999999
  21
 53.851648000000004
  31
@@ -1005,13 +1005,13 @@ DOTTED
   8
 0
  10
-219.99999999999997
+160.0
  20
 53.851648000000004
  30
 0.0
  11
-194.99999999999997
+135.0
  21
 53.851648000000004
  31
@@ -1025,13 +1025,13 @@ DOTTED
   8
 0
  10
-194.99999999999997
+135.0
  20
 -7.134504187433777e-08
  30
 0.0
  11
-169.99999999999997
+109.99999999999999
  21
 53.851648000000004
  31
@@ -1043,13 +1043,13 @@ LINE
   8
 0
  10
-161.51320686867427
+101.51320686867432
  20
 33.97156470018156
  30
 0.0
  11
-155.7566034343371
+95.75660343433715
  21
 39.81150361779138
  31
@@ -1061,13 +1061,13 @@ LINE
   8
 0
  10
-194.99999999999997
+135.0
  20
 -7.13450560851925e-08
  30
 0.0
  11
-161.51320686867427
+101.51320686867432
  21
 33.97156470018156
  31
@@ -1081,13 +1081,13 @@ DOTTED
   8
 0
  10
-169.99999999999997
+109.99999999999999
  20
 53.851648000000004
  30
 0.0
  11
-155.7566034343371
+95.75660343433715
  21
 39.81150361779138
  31
@@ -1101,13 +1101,13 @@ DOTTED
   8
 0
  10
-169.99999999999997
+109.99999999999999
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 45.6514425354012
  31
@@ -1119,13 +1119,13 @@ LINE
   8
 0
  10
-155.7566034343371
+95.75660343433715
  20
 39.81150361779138
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 45.6514425354012
  31
@@ -1139,13 +1139,13 @@ DOTTED
   8
 0
  10
-149.99999999999994
+89.99999999999997
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 45.651442535401195
  31
@@ -1159,13 +1159,13 @@ DOTTED
   8
 0
  10
-169.99999999999997
+109.99999999999999
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 53.851648000000004
  31
@@ -1177,13 +1177,13 @@ LINE
   8
 0
  10
-147.26659817846704
+87.26659817846705
  20
 53.85164800000001
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 53.85164800000001
  31
@@ -1195,13 +1195,13 @@ LINE
   8
 0
  10
-147.26659817846704
+87.26659817846705
  20
 45.6514425354012
  30
 0.0
  11
-147.26659817846704
+87.26659817846705
  21
 53.85164800000001
  31
@@ -1213,13 +1213,13 @@ LINE
   8
 0
  10
-149.99999999999994
+89.99999999999997
  20
 45.6514425354012
  30
 0.0
  11
-147.26659817846704
+87.26659817846705
  21
 45.6514425354012
  31
@@ -1233,13 +1233,13 @@ DOTTED
   8
 0
  10
-149.99999999999997
+90.0
  20
 153.851648
  30
 0.0
  11
-170.0
+110.00000000000001
  21
 153.851648
  31
@@ -1253,13 +1253,13 @@ DOTTED
   8
 0
  10
-149.99999999999997
+90.0
  20
 162.05185346459885
  30
 0.0
  11
-170.0
+110.00000000000001
  21
 153.851648
  31
@@ -1273,13 +1273,13 @@ DOTTED
   8
 0
  10
-149.99999999999997
+90.0
  20
 162.05185346459885
  30
 0.0
  11
-149.99999999999997
+90.0
  21
 153.851648
  31
@@ -1291,13 +1291,13 @@ LINE
   8
 0
  10
-149.99999999999997
+90.0
  20
 162.05185346459885
  30
 0.0
  11
-155.75660343433714
+95.7566034343372
  21
 167.89179238220865
  31
@@ -1311,13 +1311,13 @@ DOTTED
   8
 0
  10
-155.75660343433714
+95.7566034343372
  20
 167.89179238220865
  30
 0.0
  11
-170.0
+110.00000000000001
  21
 153.851648
  31
@@ -1331,13 +1331,13 @@ DOTTED
   8
 0
  10
-195.0
+135.00000000000003
  20
 207.70329607134505
  30
 0.0
  11
-170.0
+110.00000000000001
  21
 153.851648
  31
@@ -1349,13 +1349,13 @@ LINE
   8
 0
  10
-161.51320686867436
+101.51320686867436
  20
 173.73173129981845
  30
 0.0
  11
-195.0
+135.00000000000003
  21
 207.70329607134505
  31
@@ -1367,13 +1367,13 @@ LINE
   8
 0
  10
-155.75660343433714
+95.7566034343372
  20
 167.89179238220865
  30
 0.0
  11
-161.51320686867436
+101.51320686867436
  21
 173.73173129981845
  31
@@ -1387,13 +1387,13 @@ DOTTED
   8
 0
  10
-170.0
+110.00000000000001
  20
 153.851648
  30
 0.0
  11
-195.0
+135.00000000000003
  21
 153.851648
  31
@@ -1407,13 +1407,13 @@ DOTTED
   8
 0
  10
-195.0
+135.00000000000003
  20
 153.851648
  30
 0.0
  11
-219.99999999999997
+160.0
  21
 153.851648
  31
@@ -1427,13 +1427,13 @@ DOTTED
   8
 0
  10
-195.0
+135.00000000000003
  20
 207.70329607134505
  30
 0.0
  11
-219.99999999999997
+160.0
  21
 153.851648
  31
@@ -1445,13 +1445,13 @@ LINE
   8
 0
  10
-228.48679313132564
+168.48679313132567
  20
 173.73173129981845
  30
 0.0
  11
-234.2433965656628
+174.2433965656628
  21
 167.89179238220862
  31
@@ -1463,13 +1463,13 @@ LINE
   8
 0
  10
-195.0
+135.00000000000003
  20
 207.70329607134505
  30
 0.0
  11
-228.48679313132564
+168.48679313132567
  21
 173.73173129981845
  31
@@ -1483,13 +1483,13 @@ DOTTED
   8
 0
  10
-219.99999999999997
+160.0
  20
 153.851648
  30
 0.0
  11
-234.2433965656628
+174.2433965656628
  21
 167.89179238220862
  31
@@ -1503,13 +1503,13 @@ DOTTED
   8
 0
  10
-219.99999999999997
+160.00000000000003
  20
 153.851648
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 162.05185346459876
  31
@@ -1521,13 +1521,13 @@ LINE
   8
 0
  10
-234.2433965656628
+174.2433965656628
  20
 167.89179238220862
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 162.05185346459876
  31
@@ -1541,13 +1541,13 @@ DOTTED
   8
 0
  10
-239.99999999999997
+179.99999999999997
  20
 153.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 162.05185346459876
  31
@@ -1561,13 +1561,13 @@ DOTTED
   8
 0
  10
-219.99999999999997
+160.0
  20
 153.851648
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 153.85164799999998
  31
@@ -1579,13 +1579,13 @@ LINE
   8
 0
  10
-242.7334018215329
+182.73340182153294
  20
 153.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 153.85164799999998
  31
@@ -1597,13 +1597,13 @@ LINE
   8
 0
  10
-242.7334018215329
+182.73340182153294
  20
 162.05185346459876
  30
 0.0
  11
-242.7334018215329
+182.73340182153294
  21
 153.85164799999998
  31
@@ -1615,13 +1615,13 @@ LINE
   8
 0
  10
-239.99999999999997
+179.99999999999997
  20
 162.05185346459876
  30
 0.0
  11
-242.7334018215329
+182.73340182153294
  21
 162.05185346459876
  31
@@ -1635,13 +1635,13 @@ DOTTED
   8
 0
  10
-239.99999999999991
+179.99999999999991
  20
 53.851648
  30
 0.0
  11
-219.99999999999991
+159.99999999999991
  21
 53.85164800000001
  31
@@ -1655,13 +1655,13 @@ DOTTED
   8
 0
  10
-239.99999999999991
+179.9999999999999
  20
 45.651442535401195
  30
 0.0
  11
-219.99999999999991
+159.99999999999991
  21
 53.85164800000001
  31
@@ -1675,13 +1675,13 @@ DOTTED
   8
 0
  10
-239.99999999999991
+179.9999999999999
  20
 45.651442535401195
  30
 0.0
  11
-239.99999999999991
+179.99999999999991
  21
 53.851648
  31
@@ -1693,13 +1693,13 @@ LINE
   8
 0
  10
-239.99999999999991
+179.99999999999991
  20
 45.651442535401195
  30
 0.0
  11
-234.24339656566272
+174.24339656566278
  21
 39.81150361779138
  31
@@ -1713,13 +1713,13 @@ DOTTED
   8
 0
  10
-234.24339656566272
+174.24339656566278
  20
 39.81150361779138
  30
 0.0
  11
-219.99999999999991
+159.99999999999991
  21
 53.85164800000001
  31
@@ -1733,13 +1733,13 @@ DOTTED
   8
 0
  10
-194.9999999999999
+134.9999999999999
  20
 -7.134499924177363e-08
  30
 0.0
  11
-219.99999999999991
+159.99999999999991
  21
 53.85164800000002
  31
@@ -1751,13 +1751,13 @@ LINE
   8
 0
  10
-228.48679313132556
+168.48679313132558
  20
 33.971564700181574
  30
 0.0
  11
-194.9999999999999
+134.9999999999999
  21
 -7.134499924177363e-08
  31
@@ -1769,13 +1769,13 @@ LINE
   8
 0
  10
-234.24339656566272
+174.24339656566278
  20
 39.811503617791395
  30
 0.0
  11
-228.48679313132556
+168.48679313132558
  21
 33.971564700181574
  31
@@ -1787,13 +1787,13 @@ LINE
   8
 0
  10
-242.73340182153285
+182.73340182153285
  20
 45.651442535401195
  30
 0.0
  11
-239.99999999999991
+179.99999999999991
  21
 45.651442535401195
  31
@@ -1805,13 +1805,13 @@ LINE
   8
 0
  10
-242.73340182153285
+182.73340182153285
  20
 53.851648000000004
  30
 0.0
  11
-242.73340182153285
+182.73340182153285
  21
 45.651442535401195
  31
@@ -1823,13 +1823,13 @@ LINE
   8
 0
  10
-239.99999999999991
+179.99999999999991
  20
 53.851648000000004
  30
 0.0
  11
-242.73340182153285
+182.73340182153285
  21
 53.851648000000004
  31
@@ -1841,13 +1841,13 @@ LINE
   8
 0
  10
-239.99999999999997
+179.99999999999994
  20
-138.85164799999998
+98.851648
  30
 0.0
  11
-239.99999999999991
+179.99999999999991
  21
 53.851648
  31
@@ -1859,15 +1859,15 @@ LINE
   8
 0
  10
-239.99999999999997
+179.99999999999994
  20
-148.851648
+108.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999994
  21
-138.85164799999998
+98.851648
  31
 0.0
   0
@@ -1877,15 +1877,15 @@ LINE
   8
 0
  10
-239.99999999999997
+179.99999999999997
  20
 153.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999994
  21
-148.851648
+108.85164799999998
  31
 0.0
   0
@@ -1895,13 +1895,13 @@ LINE
   8
 0
  10
-239.99999999999997
+179.99999999999997
  20
 153.85164799999998
  30
 0.0
  11
-239.99999999999997
+179.99999999999997
  21
 153.85164799999998
  31
@@ -1913,13 +1913,13 @@ LINE
   8
 0
  10
-239.99999999999991
+179.99999999999991
  20
 53.851648
  30
 0.0
  11
-239.99999999999991
+179.99999999999991
  21
 53.851648
  31
@@ -1931,13 +1931,13 @@ LINE
   8
 0
  10
-147.26659817846706
+87.26659817846708
  20
 162.05185346459885
  30
 0.0
  11
-149.99999999999997
+90.0
  21
 162.05185346459885
  31
@@ -1949,13 +1949,13 @@ LINE
   8
 0
  10
-147.26659817846706
+87.26659817846708
  20
 153.851648
  30
 0.0
  11
-147.26659817846706
+87.26659817846708
  21
 162.05185346459885
  31
@@ -1967,13 +1967,13 @@ LINE
   8
 0
  10
-149.99999999999997
+90.0
  20
 153.851648
  30
 0.0
  11
-147.26659817846706
+87.26659817846708
  21
 153.851648
  31
@@ -1985,13 +1985,13 @@ LINE
   8
 0
  10
-149.99999999999997
+89.99999999999999
  20
-148.85164800000004
+108.851648
  30
 0.0
  11
-149.99999999999997
+90.0
  21
 153.851648
  31
@@ -2005,15 +2005,15 @@ DOTTED
   8
 0
  10
-149.99999999999997
+89.99999999999999
  20
-138.85164800000004
+98.85164800000001
  30
 0.0
  11
-149.99999999999997
+89.99999999999999
  21
-148.85164800000004
+108.851648
  31
 0.0
   0
@@ -2023,15 +2023,15 @@ LINE
   8
 0
  10
-149.99999999999994
+89.99999999999997
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999997
+89.99999999999999
  21
-138.85164800000004
+98.85164800000001
  31
 0.0
   0
@@ -2041,13 +2041,13 @@ LINE
   8
 0
  10
-149.99999999999994
+89.99999999999997
  20
 53.851648000000004
  30
 0.0
  11
-149.99999999999994
+89.99999999999997
  21
 53.851648000000004
  31
@@ -2059,13 +2059,13 @@ LINE
   8
 0
  10
-149.99999999999997
+90.0
  20
 153.851648
  30
 0.0
  11
-149.99999999999997
+90.0
  21
 153.851648
  31
@@ -2077,15 +2077,35 @@ LINE
   8
 0
  10
-99.99999999999999
+70.0
  20
-148.85164800000004
+108.851648
  30
 0.0
  11
-149.99999999999997
+89.99999999999999
  21
-148.85164800000004
+108.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+70.0
+ 20
+98.85164800000001
+ 30
+0.0
+ 11
+70.0
+ 21
+108.851648
  31
 0.0
   0
@@ -2095,15 +2115,35 @@ LINE
   8
 0
  10
-149.99999999999997
+89.99999999999999
  20
-138.85164800000004
+98.85164800000001
  30
 0.0
  11
-99.99999999999999
+70.0
  21
-138.85164800000004
+98.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+20.000000000000004
+ 20
+108.85164800000003
+ 30
+0.0
+ 11
+19.999999999999986
+ 21
+98.85164800000003
  31
 0.0
   0
@@ -2115,15 +2155,15 @@ DOTTED
   8
 0
  10
-50.0
+19.999999999999986
  20
-138.85164800000004
+98.85164800000003
  30
 0.0
  11
-99.99999999999999
+69.99999999999999
  21
-138.85164800000004
+98.85164800000001
  31
 0.0
   0
@@ -2135,15 +2175,15 @@ DOTTED
   8
 0
  10
-50.0
+20.000000000000004
  20
-148.85164800000004
+108.85164800000003
  30
 0.0
  11
-100.0
+70.0
  21
-148.85164800000004
+108.851648
  31
 0.0
   0
@@ -2153,15 +2193,15 @@ LINE
   8
 0
  10
-50.0
+20.000000000000004
  20
-138.85164800000004
+98.85164800000003
  30
 0.0
  11
 0.0
  21
-138.85164800000007
+98.85164800000003
  31
 0.0
   0
@@ -2173,13 +2213,13 @@ LINE
  10
 0.0
  20
-148.85164800000007
+108.85164800000003
  30
 0.0
  11
-50.0
+20.000000000000004
  21
-148.85164800000004
+108.85164800000003
  31
 0.0
   0
@@ -2191,13 +2231,13 @@ LINE
  10
 0.0
  20
-138.85164800000007
+98.85164800000003
  30
 0.0
  11
 0.0
  21
-148.85164800000007
+108.85164800000003
  31
 0.0
   0
@@ -2207,15 +2247,15 @@ LINE
   8
 0
  10
-50.0
+19.999999999999986
  20
-108.85164800000004
+68.85164800000001
  30
 0.0
  11
-50.0
+20.000000000000004
  21
-138.85164800000004
+98.85164800000003
  31
 0.0
   0
@@ -2227,15 +2267,15 @@ DOTTED
   8
 0
  10
-50.0
+19.999999999999986
  20
-108.85164800000004
+68.85164800000001
  30
 0.0
  11
-99.99999999999999
+69.99999999999999
  21
-108.85164800000003
+68.85164800000001
  31
 0.0
   0
@@ -2245,15 +2285,15 @@ LINE
   8
 0
  10
-100.0
+70.0
  20
-138.85164800000004
+98.85164800000001
  30
 0.0
  11
-99.99999999999999
+69.99999999999999
  21
-108.85164800000003
+68.85164800000001
  31
 0.0
   0
@@ -2263,15 +2303,15 @@ LINE
   8
 0
  10
-50.0
+19.99999999999997
  20
-98.85164800000004
+58.85164800000002
  30
 0.0
  11
-50.0
+19.99999999999997
  21
-108.85164800000004
+68.85164800000001
  31
 0.0
   0
@@ -2281,15 +2321,15 @@ LINE
   8
 0
  10
-100.0
+69.99999999999999
  20
-98.85164800000003
+58.851648000000004
  30
 0.0
  11
-50.0
+19.99999999999997
  21
-98.85164800000004
+58.85164800000002
  31
 0.0
   0
@@ -2299,15 +2339,15 @@ LINE
   8
 0
  10
-100.0
+69.99999999999999
  20
-108.85164800000003
+68.851648
  30
 0.0
  11
-100.0
+69.99999999999999
  21
-98.85164800000003
+58.851648000000004
  31
 0.0
   0
@@ -2317,15 +2357,15 @@ LINE
   8
 0
  10
-50.0
+20.000000000000004
  20
-148.85164800000004
+108.85164800000003
  30
 0.0
  11
-50.0
+20.000000000000018
  21
-178.85164800000004
+138.85164800000004
  31
 0.0
   0
@@ -2335,15 +2375,15 @@ LINE
   8
 0
  10
-100.0
+70.00000000000001
  20
-178.85164800000004
+138.85164800000004
  30
 0.0
  11
-100.0
+70.0
  21
-148.85164800000004
+108.851648
  31
 0.0
   0
@@ -2355,15 +2395,15 @@ DOTTED
   8
 0
  10
-100.0
+70.00000000000001
  20
-178.85164800000004
+138.85164800000004
  30
 0.0
  11
-50.0
+20.000000000000018
  21
-178.85164800000004
+138.85164800000004
  31
 0.0
   0
@@ -2373,15 +2413,15 @@ LINE
   8
 0
  10
-100.0
+70.00000000000001
  20
-188.85164800000004
+148.85164800000004
  30
 0.0
  11
-100.0
+70.00000000000001
  21
-178.85164800000004
+138.85164800000004
  31
 0.0
   0
@@ -2391,15 +2431,15 @@ LINE
   8
 0
  10
-50.0
+20.000000000000018
  20
-188.85164800000004
+148.85164800000004
  30
 0.0
  11
-100.0
+70.00000000000001
  21
-188.85164800000004
+148.85164800000004
  31
 0.0
   0
@@ -2409,15 +2449,15 @@ LINE
   8
 0
  10
-50.0
+20.000000000000018
  20
-178.85164800000004
+138.85164800000004
  30
 0.0
  11
-50.0
+20.000000000000018
  21
-188.85164800000004
+148.85164800000004
  31
 0.0
   0
@@ -2427,13 +2467,13 @@ LINE
   8
 0
  10
-161.40786804847943
+101.40786804847944
  20
 37.35482121234262
  30
 0.0
  11
-159.13799662747846
+99.1379966274785
  21
 39.65755243235412
  31
@@ -2445,13 +2485,13 @@ LINE
   8
 0
  10
-159.13799662747846
+99.1379966274785
  20
 39.65755243235412
  30
 0.0
  11
-158.78191171333694
+98.78191171333694
  21
 39.306548822798916
  31
@@ -2463,13 +2503,13 @@ LINE
   8
 0
  10
-158.78191171333694
+98.78191171333694
  20
 39.306548822798916
  30
 0.0
  11
-161.05178313433782
+101.05178313433787
  21
 37.003817602787414
  31
@@ -2481,13 +2521,13 @@ LINE
   8
 0
  10
-161.05178313433782
+101.05178313433787
  20
 37.003817602787414
  30
 0.0
  11
-161.40786804847943
+101.40786804847944
  21
 37.35482121234262
  31
@@ -2499,13 +2539,13 @@ LINE
   8
 0
  10
-147.94994863385025
+87.9499486338503
  20
 48.38484435693414
  30
 0.0
  11
-149.31664954461675
+89.31664954461677
  21
 48.38484435693414
  31
@@ -2517,13 +2557,13 @@ LINE
   8
 0
  10
-149.31664954461675
+89.31664954461677
  20
 48.38484435693414
  30
 0.0
  11
-149.31664954461675
+89.31664954461677
  21
 51.118246178467075
  31
@@ -2535,13 +2575,13 @@ LINE
   8
 0
  10
-149.31664954461675
+89.31664954461677
  20
 51.118246178467075
  30
 0.0
  11
-147.94994863385025
+87.9499486338503
  21
 51.118246178467075
  31
@@ -2553,13 +2593,13 @@ LINE
   8
 0
  10
-159.13799662747854
+99.13799662747854
  20
 168.0457435676459
  30
 0.0
  11
-161.40786804847946
+101.40786804847947
  21
 170.3484747876574
  31
@@ -2571,13 +2611,13 @@ LINE
   8
 0
  10
-161.40786804847946
+101.40786804847947
  20
 170.3484747876574
  30
 0.0
  11
-161.05178313433788
+101.05178313433791
  21
 170.69947839721263
  31
@@ -2589,13 +2629,13 @@ LINE
   8
 0
  10
-161.05178313433788
+101.05178313433791
  20
 170.69947839721263
  30
 0.0
  11
-158.78191171333697
+98.78191171333697
  21
 168.39674717720112
  31
@@ -2607,13 +2647,13 @@ LINE
   8
 0
  10
-158.78191171333697
+98.78191171333697
  20
 168.39674717720112
  30
 0.0
  11
-159.13799662747854
+99.13799662747854
  21
 168.0457435676459
  31
@@ -2625,13 +2665,13 @@ LINE
   8
 0
  10
-228.5921319515205
+168.59213195152054
  20
 170.34847478765738
  30
 0.0
  11
-230.86200337252146
+170.86200337252149
  21
 168.04574356764587
  31
@@ -2643,13 +2683,13 @@ LINE
   8
 0
  10
-230.86200337252146
+170.86200337252149
  20
 168.04574356764587
  30
 0.0
  11
-231.21808828666303
+171.21808828666306
  21
 168.3967471772011
  31
@@ -2661,13 +2701,13 @@ LINE
   8
 0
  10
-231.21808828666303
+171.21808828666306
  20
 168.3967471772011
  30
 0.0
  11
-228.9482168656621
+168.9482168656621
  21
 170.69947839721257
  31
@@ -2679,13 +2719,13 @@ LINE
   8
 0
  10
-228.9482168656621
+168.9482168656621
  20
 170.69947839721257
  30
 0.0
  11
-228.5921319515205
+168.59213195152054
  21
 170.34847478765738
  31
@@ -2697,13 +2737,13 @@ LINE
   8
 0
  10
-242.0500513661497
+182.0500513661497
  20
 159.31845164306583
  30
 0.0
  11
-240.68335045538322
+180.68335045538325
  21
 159.31845164306583
  31
@@ -2715,13 +2755,13 @@ LINE
   8
 0
  10
-240.68335045538322
+180.68335045538325
  20
 159.31845164306583
  30
 0.0
  11
-240.68335045538322
+180.68335045538325
  21
 156.5850498215329
  31
@@ -2733,13 +2773,13 @@ LINE
   8
 0
  10
-240.68335045538322
+180.68335045538325
  20
 156.5850498215329
  30
 0.0
  11
-242.0500513661497
+182.0500513661497
  21
 156.5850498215329
  31
@@ -2751,13 +2791,13 @@ LINE
   8
 0
  10
-230.86200337252137
+170.8620033725214
  20
 39.65755243235414
  30
 0.0
  11
-228.59213195152043
+168.59213195152049
  21
 37.354821212342635
  31
@@ -2769,13 +2809,13 @@ LINE
   8
 0
  10
-228.59213195152043
+168.59213195152049
  20
 37.354821212342635
  30
 0.0
  11
-228.94821686566198
+168.94821686566203
  21
 37.003817602787414
  31
@@ -2787,13 +2827,13 @@ LINE
   8
 0
  10
-228.94821686566198
+168.94821686566203
  20
 37.003817602787414
  30
 0.0
  11
-231.21808828666295
+171.21808828666295
  21
 39.306548822798916
  31
@@ -2805,13 +2845,13 @@ LINE
   8
 0
  10
-231.21808828666295
+171.21808828666295
  20
 39.306548822798916
  30
 0.0
  11
-230.86200337252137
+170.8620033725214
  21
 39.65755243235414
  31
@@ -2823,13 +2863,13 @@ LINE
   8
 0
  10
-242.05005136614963
+182.05005136614966
  20
 51.11824617846707
  30
 0.0
  11
-240.68335045538316
+180.6833504553832
  21
 51.11824617846707
  31
@@ -2841,13 +2881,13 @@ LINE
   8
 0
  10
-240.68335045538316
+180.6833504553832
  20
 51.11824617846707
  30
 0.0
  11
-240.68335045538316
+180.6833504553832
  21
 48.38484435693413
  31
@@ -2859,13 +2899,13 @@ LINE
   8
 0
  10
-240.68335045538316
+180.6833504553832
  20
 48.38484435693413
  30
 0.0
  11
-242.05005136614963
+182.05005136614966
  21
 48.38484435693413
  31
@@ -2877,13 +2917,85 @@ LINE
   8
 0
  10
-147.94994863385028
+175.99999999999997
+ 20
+105.76831466666665
+ 30
+0.0
+ 11
+175.99999999999997
+ 21
+101.93498133333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.99999999999997
+ 20
+101.93498133333333
+ 30
+0.0
+ 11
+176.49999999999997
+ 21
+101.93498133333333
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.49999999999997
+ 20
+101.93498133333333
+ 30
+0.0
+ 11
+176.49999999999997
+ 21
+105.76831466666665
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+176.49999999999997
+ 20
+105.76831466666665
+ 30
+0.0
+ 11
+175.99999999999997
+ 21
+105.76831466666665
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+87.94994863385031
  20
 156.58504982153295
  30
 0.0
  11
-149.31664954461675
+89.31664954461678
  21
 156.58504982153295
  31
@@ -2895,13 +3007,13 @@ LINE
   8
 0
  10
-149.31664954461675
+89.31664954461678
  20
 156.58504982153295
  30
 0.0
  11
-149.31664954461675
+89.31664954461678
  21
 159.31845164306588
  31
@@ -2913,13 +3025,13 @@ LINE
   8
 0
  10
-149.31664954461675
+89.31664954461678
  20
 159.31845164306588
  30
 0.0
  11
-147.94994863385028
+87.94994863385031
  21
 159.31845164306588
  31
@@ -2931,15 +3043,69 @@ LINE
   8
 0
  10
-71.0
+1.2500000000000002
+ 20
+102.18498133333337
+ 30
+0.0
+ 11
+3.7500000000000004
+ 21
+102.18498133333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.2500000000000002
+ 20
+105.5183146666667
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+102.18498133333337
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+3.7500000000000004
+ 20
+105.5183146666667
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+105.5183146666667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.999999999999986
  20
-117.85164800000001
+77.85164800000001
  30
 0.0
  11
-71.0
+40.999999999999986
  21
-109.85164800000001
+69.85164800000001
  31
 0.0
   0
@@ -2949,15 +3115,15 @@ LINE
   8
 0
  10
-71.0
+40.999999999999986
  20
-109.85164800000001
+69.85164800000001
  30
 0.0
  11
-79.0
+48.999999999999986
  21
-109.85164800000001
+69.85164800000001
  31
 0.0
   0
@@ -2967,15 +3133,15 @@ LINE
   8
 0
  10
-79.0
+48.999999999999986
  20
-109.85164800000001
+69.85164800000001
  30
 0.0
  11
-79.0
+48.999999999999986
  21
-117.85164800000001
+77.85164800000001
  31
 0.0
   0
@@ -2985,15 +3151,15 @@ LINE
   8
 0
  10
-79.0
+48.999999999999986
  20
-117.85164800000001
+77.85164800000001
  30
 0.0
  11
-71.0
+40.999999999999986
  21
-117.85164800000001
+77.85164800000001
  31
 0.0
   0
@@ -3003,15 +3169,15 @@ LINE
   8
 0
  10
-83.58333333333334
+53.5833333333333
  20
-106.60164800000003
+66.60164800000003
  30
 0.0
  11
-66.4166666666667
+36.41666666666664
  21
-106.60164800000004
+66.60164800000003
  31
 0.0
   0
@@ -3021,15 +3187,15 @@ LINE
   8
 0
  10
-66.4166666666667
+36.41666666666664
  20
-106.60164800000004
+66.60164800000003
  30
 0.0
  11
-66.4166666666667
+36.41666666666664
  21
-106.10164800000004
+66.10164800000001
  31
 0.0
   0
@@ -3039,15 +3205,15 @@ LINE
   8
 0
  10
-66.4166666666667
+36.41666666666664
  20
-106.10164800000004
+66.10164800000001
  30
 0.0
  11
-83.58333333333334
+53.5833333333333
  21
-106.10164800000003
+66.10164800000001
  31
 0.0
   0
@@ -3057,15 +3223,15 @@ LINE
   8
 0
  10
-83.58333333333334
+53.5833333333333
  20
-106.10164800000003
+66.10164800000001
  30
 0.0
  11
-83.58333333333334
+53.5833333333333
  21
-106.60164800000003
+66.60164800000003
  31
 0.0
   0
@@ -3075,15 +3241,15 @@ LINE
   8
 0
  10
-71.00000000000001
+41.0
  20
-177.85164800000004
+137.851648
  30
 0.0
  11
-71.00000000000001
+41.0
  21
-169.851648
+129.85164800000004
  31
 0.0
   0
@@ -3093,15 +3259,15 @@ LINE
   8
 0
  10
-71.00000000000001
+41.0
  20
-169.851648
+129.85164800000004
  30
 0.0
  11
-79.00000000000001
+49.00000000000001
  21
-169.851648
+129.85164800000004
  31
 0.0
   0
@@ -3111,15 +3277,15 @@ LINE
   8
 0
  10
-79.00000000000001
+49.00000000000001
  20
-169.851648
+129.85164800000004
  30
 0.0
  11
-79.00000000000001
+49.00000000000001
  21
-177.85164800000004
+137.851648
  31
 0.0
   0
@@ -3129,15 +3295,15 @@ LINE
   8
 0
  10
-79.00000000000001
+49.00000000000001
  20
-177.85164800000004
+137.851648
  30
 0.0
  11
-71.00000000000001
+41.0
  21
-177.85164800000004
+137.851648
  31
 0.0
   0
@@ -3147,15 +3313,15 @@ LINE
   8
 0
  10
-66.66666666666666
+36.66666666666669
  20
-186.351648
+146.35164800000004
  30
 0.0
  11
-61.666666666666664
+31.66666666666669
  21
-186.351648
+146.35164800000004
  31
 0.0
   0
@@ -3165,15 +3331,15 @@ LINE
   8
 0
  10
-61.666666666666664
+31.66666666666669
  20
-186.351648
+146.35164800000004
  30
 0.0
  11
-66.66666666666666
+36.66666666666669
  21
-181.351648
+141.35164800000004
  31
 0.0
   0
@@ -3183,15 +3349,15 @@ LINE
   8
 0
  10
-66.66666666666666
+36.66666666666669
  20
-181.351648
+141.35164800000004
  30
 0.0
  11
-83.33333333333334
+53.33333333333335
  21
-181.351648
+141.35164800000004
  31
 0.0
   0
@@ -3201,15 +3367,15 @@ LINE
   8
 0
  10
-83.33333333333334
+53.33333333333335
  20
-181.351648
+141.35164800000004
  30
 0.0
  11
-88.33333333333334
+58.33333333333335
  21
-186.351648
+146.35164800000004
  31
 0.0
   0
@@ -3219,15 +3385,15 @@ LINE
   8
 0
  10
-88.33333333333334
+58.33333333333335
  20
-186.351648
+146.35164800000004
  30
 0.0
  11
-83.33333333333334
+53.33333333333335
  21
-186.351648
+146.35164800000004
  31
 0.0
   0
diff --git a/rocolib/output/DCMotorMount/graph-anim.svg b/rocolib/output/DCMotorMount/graph-anim.svg
index 301f9d0706dcab427697f44434b7a3472c3f10fb..75f65339bcc2a6de9673313cc36286d1701f4133 100644
--- a/rocolib/output/DCMotorMount/graph-anim.svg
+++ b/rocolib/output/DCMotorMount/graph-anim.svg
@@ -5,7 +5,9 @@
   <line opacity="0.5" stroke="#0000ff" x1="40.00000000000001" x2="40.00000000000001" y1="40.00000000000001" y2="80.00000000000001"/>
   <line stroke="#000000" x1="10.000000000000002" x2="40.00000000000001" y1="80.00000000000001" y2="80.00000000000001"/>
   <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="80.00000000000001" y2="40.00000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="40.00000000000001" x2="50.0" y1="40.00000000000001" y2="40.00000000000001"/>
   <line opacity="0.5" stroke="#0000ff" x1="50.0" x2="50.0" y1="40.00000000000001" y2="80.00000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="50.0" x2="40.00000000000001" y1="80.00000000000001" y2="80.00000000000001"/>
   <line stroke="#000000" x1="50.0" x2="50.0" y1="40.00000000000001" y2="0.0"/>
   <line stroke="#000000" x1="40.00000000000001" x2="40.00000000000001" y1="0.0" y2="40.00000000000001"/>
   <line stroke="#000000" x1="50.0" x2="40.00000000000001" y1="0.0" y2="0.0"/>
diff --git a/rocolib/output/DCMotorMount/graph-autofold-default.dxf b/rocolib/output/DCMotorMount/graph-autofold-default.dxf
index fa71763b66b381b0873f3050fcbf76e14fd75ef4..a04faa9ebeaba2a7dded1fa07629b0c0580ffba8 100644
--- a/rocolib/output/DCMotorMount/graph-autofold-default.dxf
+++ b/rocolib/output/DCMotorMount/graph-autofold-default.dxf
@@ -493,7 +493,7 @@ TABLE
   2
 LAYER
  70
-7
+8
   0
 LAYER
   2
@@ -565,6 +565,16 @@ LAYER
   6
 CONTINUOUS
   0
+LAYER
+  2
+-90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
 ENDTAB
   0
 TABLE
@@ -1039,6 +1049,26 @@ DOTTED
  62
 1
   8
+-90
+ 10
+40.00000000000001
+ 20
+40.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+40.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
 90
  10
 50.0
@@ -1053,6 +1083,26 @@ DOTTED
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+50.0
+ 20
+80.00000000000001
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+80.00000000000001
+ 31
+0.0
+  0
 LINE
  62
 5
diff --git a/rocolib/output/DCMotorMount/graph-autofold-graph.dxf b/rocolib/output/DCMotorMount/graph-autofold-graph.dxf
index 3e38498016e959b085fdd56f38828768bf79a0f3..acf7e166333221ff919236254751c317ed029b83 100644
--- a/rocolib/output/DCMotorMount/graph-autofold-graph.dxf
+++ b/rocolib/output/DCMotorMount/graph-autofold-graph.dxf
@@ -1021,6 +1021,26 @@ DOTTED
   8
 0
  10
+40.00000000000001
+ 20
+40.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+40.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
 50.0
  20
 40.00000000000001
@@ -1033,6 +1053,26 @@ DOTTED
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+50.0
+ 20
+80.00000000000001
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+80.00000000000001
+ 31
+0.0
+  0
 LINE
  62
 5
diff --git a/rocolib/output/DCMotorMount/graph-lasercutter.svg b/rocolib/output/DCMotorMount/graph-lasercutter.svg
index 7aea1af289233f78e3a166db4fda180217ce5dc9..749ca1b7ee35dbe28afb813bd32088adfda0e9d5 100644
--- a/rocolib/output/DCMotorMount/graph-lasercutter.svg
+++ b/rocolib/output/DCMotorMount/graph-lasercutter.svg
@@ -5,7 +5,9 @@
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="40.00000000000001" x2="40.00000000000001" y1="40.00000000000001" y2="80.00000000000001"/>
   <line stroke="#000000" x1="10.000000000000002" x2="40.00000000000001" y1="80.00000000000001" y2="80.00000000000001"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="80.00000000000001" y2="40.00000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="40.00000000000001" x2="50.0" y1="40.00000000000001" y2="40.00000000000001"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="50.0" y1="40.00000000000001" y2="80.00000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="40.00000000000001" y1="80.00000000000001" y2="80.00000000000001"/>
   <line stroke="#000000" x1="50.0" x2="50.0" y1="40.00000000000001" y2="0.0"/>
   <line stroke="#000000" x1="40.00000000000001" x2="40.00000000000001" y1="0.0" y2="40.00000000000001"/>
   <line stroke="#000000" x1="50.0" x2="40.00000000000001" y1="0.0" y2="0.0"/>
diff --git a/rocolib/output/DCMotorMount/graph-model.png b/rocolib/output/DCMotorMount/graph-model.png
index 2d7cd808f29dc10e223239aa76ff73b0f4e6bf9b..841ecc508ae516643e15399b88545cf40311f431 100644
Binary files a/rocolib/output/DCMotorMount/graph-model.png and b/rocolib/output/DCMotorMount/graph-model.png differ
diff --git a/rocolib/output/DCMotorMount/graph-model.stl b/rocolib/output/DCMotorMount/graph-model.stl
index 7592704629c8cd947a7e34f9f9377974fa9c5871..ff1abfa018c0ec112c7902f7d72e017649880fc7 100644
--- a/rocolib/output/DCMotorMount/graph-model.stl
+++ b/rocolib/output/DCMotorMount/graph-model.stl
@@ -141,8 +141,8 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0150 -0.0600 0.0000
-vertex 0.0150 -0.0600 -0.0100
+vertex 0.0550 -0.0200 0.0000
+vertex 0.0550 -0.0200 -0.0100
 vertex 0.0150 -0.0200 -0.0100
 endloop
 endfacet
@@ -150,13 +150,13 @@ facet normal 0 0 0
 outer loop
 vertex 0.0150 -0.0200 -0.0100
 vertex 0.0150 -0.0200 0.0000
-vertex 0.0150 -0.0600 0.0000
+vertex 0.0550 -0.0200 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0150 0.0600 -0.0100
-vertex 0.0150 0.0600 0.0000
+vertex 0.0550 0.0200 -0.0100
+vertex 0.0550 0.0200 0.0000
 vertex 0.0150 0.0200 0.0000
 endloop
 endfacet
@@ -164,7 +164,7 @@ facet normal 0 0 0
 outer loop
 vertex 0.0150 0.0200 0.0000
 vertex 0.0150 0.0200 -0.0100
-vertex 0.0150 0.0600 -0.0100
+vertex 0.0550 0.0200 -0.0100
 endloop
 endfacet
 facet normal 0 0 0
diff --git a/rocolib/output/DCMotorMount/graph-silhouette.dxf b/rocolib/output/DCMotorMount/graph-silhouette.dxf
index 3e38498016e959b085fdd56f38828768bf79a0f3..1401cb97ffb73354cb5d083a94089651ebd6a90c 100644
--- a/rocolib/output/DCMotorMount/graph-silhouette.dxf
+++ b/rocolib/output/DCMotorMount/graph-silhouette.dxf
@@ -1017,6 +1017,26 @@ LINE
   6
 DOTTED
  62
+3
+  8
+0
+ 10
+40.00000000000001
+ 20
+40.00000000000001
+ 30
+0.0
+ 11
+50.0
+ 21
+40.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
 1
   8
 0
@@ -1033,6 +1053,26 @@ DOTTED
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+50.0
+ 20
+80.00000000000001
+ 30
+0.0
+ 11
+40.00000000000001
+ 21
+80.00000000000001
+ 31
+0.0
+  0
 LINE
  62
 5