diff --git a/rocolib/builders/BoatBaseBuilder.py b/rocolib/builders/BoatBaseBuilder.py index 6007f07dbffb1fd073dcdbea4a2af8425e6009fd..6e943e6caea412a0b2045e83adf36d19c2318de2 100644 --- a/rocolib/builders/BoatBaseBuilder.py +++ b/rocolib/builders/BoatBaseBuilder.py @@ -2,11 +2,11 @@ from rocolib.api.components.Component import Component c = Component() -c.addSubcomponent("boat","SimpleUChannel", inherit=True) -c.addSubcomponent("bow","BoatPoint", inherit=True) -c.addSubcomponent("stern","BoatPoint", inherit=True) +c.addSubcomponent("boat","SimpleUChannel", inherit=("depth", "length","width")) +c.addSubcomponent("bow","BoatPoint", inherit="point") +c.addSubcomponent("stern","BoatPoint", inherit="point") -c.join(("boat", "top"), ("bow", "edge")) +c.join(("boat", "top"), ("bow", "edge")) #can't be addConnection because that gives ValueError: Edge boat.r0.e0 of length 20.000000 cannot merge with edge bow.sl.e1 of length 25.000000. c.join(("boat", "bot"), ("stern", "edge")) c.inheritInterface("portedge", ("boat", "ledge")) diff --git a/rocolib/builders/BoatBaseFlatBuilder.py b/rocolib/builders/BoatBaseFlatBuilder.py deleted file mode 100644 index 58ad674049ed4baaad1854e0aa29c60ca76a7b02..0000000000000000000000000000000000000000 --- a/rocolib/builders/BoatBaseFlatBuilder.py +++ /dev/null @@ -1,26 +0,0 @@ -from rocolib.api.components.Component import Component -from rocolib.api.Function import Function - -c = Component() - -c.addParameter("length", 130, paramType="length") -c.addParameter("width", 70, paramType="length") -c.addParameter("depth", 70, paramType="length") - -c.addSubcomponent("boat","SimpleUChannel", inherit=True) -c.addSubcomponent("bow","BoatPoint", inherit=True) -c.addSubcomponent("stern","BoatPoint", inherit=True) - -c.addConstraint(("boat", "length"), "length") -c.addConstraint(("boat", "width"), "width") -c.addConstraint(("boat", "depth"), "depth") - -c.addConstraint(("stern", "point"), "width", "0") - -c.join(("boat", "top"), ("bow", "edge")) -c.join(("boat", "bot"), ("stern", "edge")) - -c.inheritInterface("portedge", ("boat", "ledge")) -c.inheritInterface("staredge", ("boat", "redge")) - -c.toLibrary("BoatBaseFlat") diff --git a/rocolib/builders/Boat_StackMountBuilder.py b/rocolib/builders/Boat_StackMountBuilder.py index 0c1f6e5a34681e3be79c1f9ac9a6cc3df7e54e62..89cd346640748fd9d2e894bb5c5e232a065fb081 100644 --- a/rocolib/builders/Boat_StackMountBuilder.py +++ b/rocolib/builders/Boat_StackMountBuilder.py @@ -43,12 +43,14 @@ c.addConnection(("botCover", "face"), ("microUSB", "decoration"), mode="hole",offset=Function(params=("depth"), fnstring="(22, 0)"))#offset=Function(params=("dy1"), fnstring="(10, 0)") -c.addSubcomponent("lArm", "Rectangle") +c.addSubcomponent("lArm", "Rectangle", inherit=True) c.addConstraint(("lArm", "w"), ("depth", "width"), "((0.5 * x[0]) ** 2 + (60 - x[1]) ** 2) ** 0.5") #c.addConstraint(("split0", "botlength"), "length", "(1/3*x-10, 10, 2/3*x)") c.addConstraint(("lArm", "l"), "depth", "60") #the support is as long as the boat is wide -# -# c.addSubcomponent("rArm", "Rectangle") -# c.addConstraint(("rArm", "w"), "brains", "depth") -# c.addConstraint(("rArm", "l"), "depth", "60") #the support is as long as the boat is wide +c.addConnection(("lArm", "b"), ("botCover", "t"), angle=45) + +c.addSubcomponent("rArm", "Rectangle", inherit=True) +c.addConstraint(("rArm", "w"), ("depth", "width"), "((0.5 * x[0]) ** 2 + (60 - x[1]) ** 2) ** 0.5") +c.addConstraint(("rArm", "l"), "depth", "60") #the support is as long as the boat is wide +c.addConnection(("rArm", "b"), ("botCover", "b"), angle=45) c.toLibrary("Boat_StackMount") diff --git a/rocolib/builders/ESP32StackBoatBuilder.py b/rocolib/builders/ESP32StackBoatBuilder.py index 25713871d70fddd1eafc138943f9989920bc80ba..2435d0c31f81de25491988c8062508acac0f6e60 100644 --- a/rocolib/builders/ESP32StackBoatBuilder.py +++ b/rocolib/builders/ESP32StackBoatBuilder.py @@ -3,53 +3,19 @@ from rocolib.api.components.Component import Component #ESP3 STACK WITH PWM SERVO FEATHERWING c = Component() -c.addSubcomponent("boat", "BoatBaseFlat", inherit=True) - -#the length of the both should always be a multiple of the width of the motor -#as of now i will be setting the length to 117 (so that means 9 * width of the motor which is 13) c.addParameter("length", 130, paramType="length") -c.addParameter("width", 50, paramType="length") -c.addParameter("depth", 40, paramType="length") -c.addParameter("brains", "esp32stack", paramType="dimension") -# -# c.addConstraint(("boat", "boat.length"), "length") -# c.addConstraint(("boat", "boat.width"), "width") -# c.addConstraint(("boat", "boat.depth"), "depth") - - -for i in range(2): - c.addSubcomponent("splitside%d" %i, "SplitEdge") - c.addConstraint(("splitside%d" %i, "toplength"), "length", "(x,)") - c.addConstraint(("splitside%d" %i, "botlength"), ("length", "brains"), - '(getDim(x[1], "width")/2., getDim(x[1], "width")/2., ' - 'getDim(x[1], "width")/2., getDim(x[1], "width")/2., getDim(x[1], "width")/2., getDim(x[1], "width")/2. ,getDim(x[1], "width")/2., x[0] - 7 * (getDim(x[1], "width")/2))') - -c.addSubcomponent("stack", "SubESP32Stack") +c.addParameter("width", 70, paramType="length") +c.addParameter("depth", 70, paramType="length") +c.addSubcomponent("boat", "BoatBaseFlat", inherit=True) +c.inheritAllInterfaces("boat") +c.addSubcomponent("stack", "Boat_StackMount", inherit=True) +c.inheritAllInterfaces("stack") -for i in range(4): - c.addSubcomponent("support%d" %i, "Rectangle") - c.addConstraint(("support%d" %i, "w"), "brains", "getDim(x, 'width')/2.") - c.addConstraint(("support%d" %i, "l"), "depth") - -for i in range(2): - c.addSubcomponent("split%d" %i, "SplitEdge") - c.addConstraint(("split%d" %i, "toplength"), "brains", '(getDim(x, "width"),)') - c.addConstraint(("split%d" % i, "botlength"), "brains", '(getDim(x, "width")/2.,getDim(x, "width")/2.)') - -c.addConnection(("stack", "topedge0"), ("split0", "topedge0")) -c.addConnection(("stack", "botedge0"), ("split1", "topedge0")) -c.addConnection(("split0", "botedge0"), ("support0", "l"), angle=90) -c.addConnection(("split0", "botedge1"), ("support1", "l"), angle=90) -c.addConnection(("split1", "botedge0"), ("support2", "l"), angle=90) -c.addConnection(("split1", "botedge1"), ("support3", "l"), angle=90) - -# c.addConnection(("splitside0", "topedge0"), ("boat", "staredge")) -# c.addConnection(("splitside1", "topedge0"), ("boat", "portedge")) -c.addConnection(("support0", "r"), ("splitside0", "topedge4"), tabWidth=5) -c.addConnection(("support1", "r"), ("splitside0", "topedge5"), tabWidth=5) -c.addConnection(("support2", "r"), ("splitside1", "topedge5"), tabWidth=5) -c.addConnection(("support3", "r"), ("splitside1", "topedge6"), tabWidth=5) +c.addSubcomponent("split0", "SplitEdge", inherit=True) +c.addSubcomponent("split1", "SplitEdge", inherit=True) +#the length of the both should always be a multiple of the width of the motor +#as of now i will be setting the length to 117 (so that means 9 * width of the motor which is 13) c.toLibrary("ESP32StackBoat") diff --git a/rocolib/library/BoatBase.yaml b/rocolib/library/BoatBase.yaml index 33297f27cff7e2018cdacbf8958117a9ac5d6dc1..2ffa5ad0f2f88ef38ac8a2d8cab199983380379e 100644 --- a/rocolib/library/BoatBase.yaml +++ b/rocolib/library/BoatBase.yaml @@ -19,48 +19,6 @@ interfaces: interface: redge subcomponent: boat parameters: - boat._dx: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - boat._dy: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - boat._dz: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - boat._q_a: - defaultValue: 1 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - boat._q_i: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - boat._q_j: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - boat._q_k: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) boat.depth: defaultValue: 20 spec: @@ -79,122 +37,24 @@ parameters: minValue: 0 units: mm valueType: (float, int) - bow._dx: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - bow._dy: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - bow._dz: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - bow._q_a: - defaultValue: 1 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - bow._q_i: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - bow._q_j: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - bow._q_k: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) bow.point: defaultValue: 50 spec: minValue: 0 units: mm valueType: (float, int) - stern._dx: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - stern._dy: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - stern._dz: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - stern._q_a: - defaultValue: 1 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - stern._q_i: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - stern._q_j: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - stern._q_k: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) stern.point: defaultValue: 50 spec: minValue: 0 units: mm valueType: (float, int) -source: ..\builders\BoatBaseBuilder.py +source: ../builders/BoatBaseBuilder.py subcomponents: boat: classname: SimpleUChannel kwargs: {} parameters: - _dx: - parameter: boat._dx - _dy: - parameter: boat._dy - _dz: - parameter: boat._dz - _q_a: - parameter: boat._q_a - _q_i: - parameter: boat._q_i - _q_j: - parameter: boat._q_j - _q_k: - parameter: boat._q_k depth: parameter: boat.depth length: @@ -205,20 +65,6 @@ subcomponents: classname: BoatPoint kwargs: {} parameters: - _dx: - parameter: bow._dx - _dy: - parameter: bow._dy - _dz: - parameter: bow._dz - _q_a: - parameter: bow._q_a - _q_i: - parameter: bow._q_i - _q_j: - parameter: bow._q_j - _q_k: - parameter: bow._q_k depth: parameter: depth subcomponent: boat @@ -231,20 +77,6 @@ subcomponents: classname: BoatPoint kwargs: {} parameters: - _dx: - parameter: stern._dx - _dy: - parameter: stern._dy - _dz: - parameter: stern._dz - _q_a: - parameter: stern._q_a - _q_i: - parameter: stern._q_i - _q_j: - parameter: stern._q_j - _q_k: - parameter: stern._q_k depth: parameter: depth subcomponent: boat diff --git a/rocolib/library/Boat_StackMount.yaml b/rocolib/library/Boat_StackMount.yaml index 4a6ec890ea891efe18f514116818af9d11413d5e..069be14476391155ae41e91d375fcab0a5938567 100644 --- a/rocolib/library/Boat_StackMount.yaml +++ b/rocolib/library/Boat_StackMount.yaml @@ -58,6 +58,18 @@ connections: offset: function: (22, 0) parameter: depth + connection8: + - - lArm + - b + - - botCover + - t + - angle: 45 + connection9: + - - rArm + - b + - - botCover + - b + - angle: 45 interfaces: {} parameters: brains: @@ -74,12 +86,96 @@ parameters: defaultValue: 18 spec: parameterType: length + lArm._dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + lArm._dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + lArm._dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + lArm._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + lArm._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + lArm._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + lArm._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) length: defaultValue: 61 spec: minValue: 0 units: mm valueType: (float, int) + rArm._dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + rArm._dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + rArm._dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + rArm._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + rArm._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + rArm._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + rArm._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) width: defaultValue: 70 spec: @@ -102,12 +198,26 @@ subcomponents: classname: Rectangle kwargs: {} parameters: + _dx: + parameter: lArm._dx + _dy: + parameter: lArm._dy + _dz: + parameter: lArm._dz + _q_a: + parameter: lArm._q_a + _q_i: + parameter: lArm._q_i + _q_j: + parameter: lArm._q_j + _q_k: + parameter: lArm._q_k l: function: '60' parameter: depth w: function: ((0.5 * x[0]) ** 2 + (60 - x[1]) ** 2) ** 0.5 - parameter: + parameter: &id002 - depth - width microUSB: @@ -120,6 +230,30 @@ subcomponents: dy: function: '10' parameter: depth + rArm: + classname: Rectangle + kwargs: {} + parameters: + _dx: + parameter: rArm._dx + _dy: + parameter: rArm._dy + _dz: + parameter: rArm._dz + _q_a: + parameter: rArm._q_a + _q_i: + parameter: rArm._q_i + _q_j: + parameter: rArm._q_j + _q_k: + parameter: rArm._q_k + l: + function: '60' + parameter: depth + w: + function: ((0.5 * x[0]) ** 2 + (60 - x[1]) ** 2) ** 0.5 + parameter: *id002 servoPins: classname: Cutout kwargs: {} diff --git a/rocolib/library/ESP32StackBoat.yaml b/rocolib/library/ESP32StackBoat.yaml index 9c81ee1b6e241d75b3ed040c61f7bf35cfe10f5f..7349178251dfaf0c362ca816b6d1e7e16395b40f 100644 --- a/rocolib/library/ESP32StackBoat.yaml +++ b/rocolib/library/ESP32StackBoat.yaml @@ -1,98 +1,158 @@ -connections: - connection0: - - - stack - - topedge0 - - - split0 - - topedge0 - - {} - connection1: - - - stack - - botedge0 - - - split1 - - topedge0 - - {} - connection2: - - - split0 - - botedge0 - - - support0 - - l - - angle: 90 - connection3: - - - split0 - - botedge1 - - - support1 - - l - - angle: 90 - connection4: - - - split1 - - botedge0 - - - support2 - - l - - angle: 90 - connection5: - - - split1 - - botedge1 - - - support3 - - l - - angle: 90 - connection6: - - - support0 - - r - - - splitside0 - - botedge4 - - tabWidth: 5 - connection7: - - - support1 - - r - - - splitside0 - - botedge5 - - tabWidth: 5 - connection8: - - - support2 - - r - - - splitside1 - - botedge5 - - tabWidth: 5 - connection9: - - - support3 - - r - - - splitside1 - - botedge6 - - tabWidth: 5 +connections: {} interfaces: {} parameters: - boat.depth: + boat.boat._dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + boat.boat._dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + boat.boat._dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + boat.boat._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + boat.boat._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + boat.boat._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + boat.boat._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + boat.bow._dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + boat.bow._dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + boat.bow._dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + boat.bow._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + boat.bow._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + boat.bow._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + boat.bow._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + boat.bow.point: defaultValue: 50 spec: minValue: 0 units: mm valueType: (float, int) - boat.dx1: - defaultValue: 8 - spec: - parameterType: length - boat.dy1: - defaultValue: 8 + boat.depth: + defaultValue: 80 spec: - parameterType: length + minValue: 0 + units: mm + valueType: (float, int) boat.length: defaultValue: 130 spec: minValue: 0 units: mm valueType: (float, int) + boat.stern._dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + boat.stern._dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + boat.stern._dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + boat.stern._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + boat.stern._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + boat.stern._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + boat.stern._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) boat.width: defaultValue: 70 spec: minValue: 0 units: mm valueType: (float, int) - brains: - defaultValue: esp32stack - spec: - valueType: str depth: - defaultValue: 40 + defaultValue: 70 spec: minValue: 0 units: mm @@ -103,8 +163,34 @@ parameters: minValue: 0 units: mm valueType: (float, int) + stack.brains: + defaultValue: esp32stack + spec: + valueType: str + stack.depth: + defaultValue: 70 + spec: + minValue: 0 + units: mm + valueType: (float, int) + stack.dy1: + defaultValue: 18 + spec: + parameterType: length + stack.length: + defaultValue: 61 + spec: + minValue: 0 + units: mm + valueType: (float, int) + stack.width: + defaultValue: 70 + spec: + minValue: 0 + units: mm + valueType: (float, int) width: - defaultValue: 50 + defaultValue: 70 spec: minValue: 0 units: mm @@ -115,99 +201,67 @@ subcomponents: classname: BoatBaseFlat kwargs: {} parameters: + boat._dx: + parameter: boat.boat._dx + boat._dy: + parameter: boat.boat._dy + boat._dz: + parameter: boat.boat._dz + boat._q_a: + parameter: boat.boat._q_a + boat._q_i: + parameter: boat.boat._q_i + boat._q_j: + parameter: boat.boat._q_j + boat._q_k: + parameter: boat.boat._q_k + bow._dx: + parameter: boat.bow._dx + bow._dy: + parameter: boat.bow._dy + bow._dz: + parameter: boat.bow._dz + bow._q_a: + parameter: boat.bow._q_a + bow._q_i: + parameter: boat.bow._q_i + bow._q_j: + parameter: boat.bow._q_j + bow._q_k: + parameter: boat.bow._q_k + bow.point: + parameter: boat.bow.point depth: parameter: boat.depth - dx1: - parameter: boat.dx1 - dy1: - parameter: boat.dy1 length: parameter: boat.length + stern._dx: + parameter: boat.stern._dx + stern._dy: + parameter: boat.stern._dy + stern._dz: + parameter: boat.stern._dz + stern._q_a: + parameter: boat.stern._q_a + stern._q_i: + parameter: boat.stern._q_i + stern._q_j: + parameter: boat.stern._q_j + stern._q_k: + parameter: boat.stern._q_k width: parameter: boat.width - split0: - classname: SplitEdge - kwargs: {} - parameters: - botlength: - function: (getDim(x, "width")/2.,getDim(x, "width")/2.) - parameter: brains - toplength: - function: (getDim(x, "width"),) - parameter: brains - split1: - classname: SplitEdge - kwargs: {} - parameters: - botlength: - function: (getDim(x, "width")/2.,getDim(x, "width")/2.) - parameter: brains - toplength: - function: (getDim(x, "width"),) - parameter: brains - splitside0: - classname: SplitEdge - kwargs: {} - parameters: - botlength: - function: (getDim(x[1], "width")/2., getDim(x[1], "width")/2., getDim(x[1], - "width")/2., getDim(x[1], "width")/2., getDim(x[1], "width")/2., getDim(x[1], - "width")/2. ,getDim(x[1], "width")/2., x[0] - 7 * (getDim(x[1], "width")/2)) - parameter: &id001 - - length - - brains - toplength: - function: (x,) - parameter: length - splitside1: - classname: SplitEdge - kwargs: {} - parameters: - botlength: - function: (getDim(x[1], "width")/2., getDim(x[1], "width")/2., getDim(x[1], - "width")/2., getDim(x[1], "width")/2., getDim(x[1], "width")/2., getDim(x[1], - "width")/2. ,getDim(x[1], "width")/2., x[0] - 7 * (getDim(x[1], "width")/2)) - parameter: *id001 - toplength: - function: (x,) - parameter: length stack: - classname: SubESP32Stack - kwargs: {} - parameters: {} - support0: - classname: Rectangle - kwargs: {} - parameters: - l: - parameter: depth - w: - function: getDim(x, 'width')/2. - parameter: brains - support1: - classname: Rectangle + classname: Boat_StackMount kwargs: {} parameters: - l: - parameter: depth - w: - function: getDim(x, 'width')/2. - parameter: brains - support2: - classname: Rectangle - kwargs: {} - parameters: - l: - parameter: depth - w: - function: getDim(x, 'width')/2. - parameter: brains - support3: - classname: Rectangle - kwargs: {} - parameters: - l: - parameter: depth - w: - function: getDim(x, 'width')/2. - parameter: brains + brains: + parameter: stack.brains + depth: + parameter: stack.depth + dy1: + parameter: stack.dy1 + length: + parameter: stack.length + width: + parameter: stack.width diff --git a/rocolib/output/.DS_Store b/rocolib/output/.DS_Store index a1d5032f538b6648bb952a9ff77ec071fdc538f4..afb2ea8ea1e1b737418d5094dd32f8f47cb4e51c 100644 Binary files a/rocolib/output/.DS_Store and b/rocolib/output/.DS_Store differ diff --git a/rocolib/output/BoatBase/graph-anim.svg b/rocolib/output/BoatBase/graph-anim.svg new file mode 100644 index 0000000000000000000000000000000000000000..cf27eef3f1fc46f6372ed4e51681a9c497635246 --- /dev/null +++ b/rocolib/output/BoatBase/graph-anim.svg @@ -0,0 +1,80 @@ +<?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="140.000000mm" version="1.1" viewBox="0.000000 0.000000 103.333333 140.000000" width="103.333333mm"> + <defs/> + <line opacity="0.5" stroke="#0000ff" x1="76.6666666666667" x2="76.6666666666667" y1="20.000000000000004" y2="120.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="26.666666666666696" x2="26.666666666666696" y1="20.000000000000004" y2="120.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="51.66666666666669" x2="26.666666666666696" y1="20.000000000000004" y2="20.000000000000004"/> + <line opacity="0.5" stroke="#0000ff" x1="76.6666666666667" x2="51.66666666666669" y1="20.000000000000004" y2="20.000000000000004"/> + <line stroke="#000000" x1="46.6666666666667" x2="26.666666666666696" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="51.66666666666671" x2="46.6666666666667" y1="0.0" y2="0.0"/> + <line opacity="1.0" stroke="#0000ff" x1="26.666666666666696" x2="26.666666666666696" y1="20.000000000000004" y2="0.0"/> + <line opacity="1.0" stroke="#ff0000" x1="26.666666666666696" x2="6.666666666666694" y1="20.000000000000004" y2="0.0"/> + <line stroke="#000000" x1="26.666666666666696" x2="6.666666666666694" y1="0.0" y2="0.0"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="6.666666666666694" x2="6.666666666666701" y1="19.999999999999996" y2="0.0"/> + <line opacity="0.5" stroke="#0000ff" x1="26.666666666666696" x2="6.666666666666694" y1="20.000000000000004" y2="19.999999999999996"/> + <line stroke="#000000" x1="2.8421709430404014e-14" x2="6.666666666666694" y1="19.999999999999996" y2="19.999999999999996"/> + <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="0.0" y2="19.999999999999996"/> + <line stroke="#000000" x1="6.666666666666694" x2="2.8421709430404014e-14" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="6.666666666666694" x2="6.666666666666665" y1="19.999999999999996" y2="120.0"/> + <line opacity="0.5" stroke="#0000ff" x1="6.666666666666671" x2="26.66666666666667" y1="119.99999999999999" y2="120.0"/> + <line opacity="1.0" stroke="#ff0000" x1="6.666666666666665" x2="26.66666666666667" y1="140.0" y2="120.0"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="6.666666666666665" x2="6.666666666666671" y1="140.0" y2="119.99999999999999"/> + <line stroke="#000000" x1="6.666666666666671" x2="26.666666666666664" y1="140.0" y2="140.00000000000003"/> + <line opacity="1.0" stroke="#0000ff" x1="26.666666666666664" x2="26.66666666666667" y1="140.00000000000003" y2="120.0"/> + <line stroke="#000000" x1="46.66666666666665" x2="51.66666666666666" y1="140.00000000000003" y2="140.00000000000003"/> + <line stroke="#000000" x1="26.66666666666666" x2="46.66666666666665" y1="140.0" y2="140.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="26.66666666666667" x2="51.666666666666664" y1="120.0" y2="120.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="51.666666666666664" x2="76.66666666666667" y1="120.00000000000001" y2="120.00000000000003"/> + <line stroke="#000000" x1="56.66666666666666" x2="76.66666666666666" y1="140.00000000000003" y2="140.00000000000003"/> + <line stroke="#000000" x1="51.66666666666666" x2="56.66666666666666" y1="140.00000000000003" y2="140.00000000000003"/> + <line opacity="1.0" stroke="#0000ff" x1="76.66666666666667" x2="76.66666666666666" y1="120.00000000000003" y2="140.00000000000003"/> + <line opacity="1.0" stroke="#ff0000" x1="76.66666666666667" x2="96.66666666666664" y1="120.00000000000003" y2="140.00000000000003"/> + <line stroke="#000000" x1="76.66666666666666" x2="96.66666666666664" y1="140.00000000000003" y2="140.00000000000003"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="96.66666666666666" x2="96.66666666666664" y1="120.00000000000004" y2="140.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="76.66666666666667" x2="96.66666666666666" y1="120.00000000000003" y2="120.00000000000004"/> + <line stroke="#000000" x1="103.33333333333333" x2="96.66666666666666" y1="120.00000000000004" y2="120.00000000000004"/> + <line stroke="#000000" x1="103.33333333333331" x2="103.33333333333333" y1="140.00000000000003" y2="120.00000000000004"/> + <line stroke="#000000" x1="96.66666666666664" x2="103.33333333333331" y1="140.00000000000003" y2="140.00000000000003"/> + <line stroke="#000000" x1="96.66666666666666" x2="96.66666666666674" y1="120.00000000000004" y2="20.00000000000006"/> + <line opacity="0.5" stroke="#0000ff" x1="96.66666666666673" x2="76.66666666666674" y1="20.00000000000006" y2="20.000000000000043"/> + <line opacity="1.0" stroke="#ff0000" x1="96.66666666666676" x2="76.66666666666674" y1="5.684341886080803e-14" y2="20.000000000000043"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="96.66666666666676" x2="96.66666666666673" y1="5.684341886080803e-14" y2="20.00000000000006"/> + <line stroke="#000000" x1="96.66666666666676" x2="76.66666666666676" y1="7.105427357601003e-14" y2="5.684341886080803e-14"/> + <line opacity="1.0" stroke="#0000ff" x1="76.66666666666676" x2="76.66666666666674" y1="5.684341886080803e-14" y2="20.000000000000043"/> + <line stroke="#000000" x1="56.66666666666677" x2="51.66666666666677" y1="2.8421709430404014e-14" y2="2.8421709430404014e-14"/> + <line stroke="#000000" x1="76.66666666666676" x2="56.66666666666677" y1="5.684341886080803e-14" y2="2.8421709430404014e-14"/> + <line stroke="#000000" x1="103.33333333333341" x2="96.66666666666676" y1="5.684341886080803e-14" y2="5.684341886080803e-14"/> + <line stroke="#000000" x1="103.33333333333339" x2="103.33333333333341" y1="20.00000000000006" y2="5.684341886080803e-14"/> + <line stroke="#000000" x1="96.66666666666673" x2="103.33333333333339" y1="20.00000000000005" y2="20.00000000000006"/> + <line stroke="#000000" x1="0.0" x2="6.666666666666665" y1="140.0" y2="140.0"/> + <line stroke="#000000" x1="7.105427357601003e-15" x2="0.0" y1="119.99999999999999" y2="140.0"/> + <line stroke="#000000" x1="6.666666666666671" x2="7.105427357601003e-15" y1="119.99999999999999" y2="119.99999999999999"/> + <line stroke="#888888" x1="40.25000000000003" x2="33.083333333333364" y1="5.25" y2="5.25"/> + <line stroke="#888888" x1="33.083333333333364" x2="33.083333333333364" y1="5.25" y2="4.750000000000001"/> + <line stroke="#888888" x1="33.083333333333364" x2="40.25000000000003" y1="4.750000000000001" y2="4.750000000000001"/> + <line stroke="#888888" x1="40.25000000000003" x2="40.25000000000003" y1="4.750000000000001" y2="5.25"/> + <line stroke="#888888" x1="1.666666666666693" x2="5.000000000000028" y1="6.666666666666665" y2="6.666666666666665"/> + <line stroke="#888888" x1="5.000000000000028" x2="5.000000000000028" y1="6.666666666666665" y2="13.33333333333333"/> + <line stroke="#888888" x1="5.000000000000028" x2="1.666666666666693" y1="13.33333333333333" y2="13.33333333333333"/> + <line stroke="#888888" x1="33.08333333333333" x2="40.24999999999999" y1="134.75000000000003" y2="134.75000000000003"/> + <line stroke="#888888" x1="40.24999999999999" x2="40.24999999999999" y1="134.75000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="40.24999999999999" x2="33.08333333333333" y1="135.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="33.08333333333333" x2="33.08333333333333" y1="135.25000000000003" y2="134.75000000000003"/> + <line stroke="#888888" x1="63.08333333333332" x2="70.24999999999999" y1="134.75000000000003" y2="134.75000000000003"/> + <line stroke="#888888" x1="70.24999999999999" x2="70.25" y1="134.75000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="70.25" x2="63.08333333333332" y1="135.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="63.08333333333332" x2="63.08333333333332" y1="135.25000000000003" y2="134.75000000000003"/> + <line stroke="#888888" x1="101.66666666666666" x2="98.33333333333333" y1="133.33333333333334" y2="133.33333333333334"/> + <line stroke="#888888" x1="98.33333333333333" x2="98.33333333333333" y1="133.33333333333334" y2="126.6666666666667"/> + <line stroke="#888888" x1="98.33333333333333" x2="101.66666666666666" y1="126.6666666666667" y2="126.6666666666667"/> + <line stroke="#888888" x1="70.25000000000009" x2="63.08333333333343" y1="5.2500000000000435" y2="5.250000000000029"/> + <line stroke="#888888" x1="63.08333333333343" x2="63.08333333333343" y1="5.250000000000029" y2="4.750000000000029"/> + <line stroke="#888888" x1="63.08333333333343" x2="70.25000000000009" y1="4.750000000000029" y2="4.7500000000000435"/> + <line stroke="#888888" x1="70.25000000000009" x2="70.25000000000009" y1="4.7500000000000435" y2="5.2500000000000435"/> + <line stroke="#888888" x1="101.66666666666674" x2="98.33333333333341" y1="13.333333333333387" y2="13.333333333333387"/> + <line stroke="#888888" x1="98.33333333333341" x2="98.33333333333341" y1="13.333333333333387" y2="6.666666666666722"/> + <line stroke="#888888" x1="98.33333333333341" x2="101.66666666666674" y1="6.666666666666722" y2="6.666666666666722"/> + <line stroke="#888888" x1="1.6666666666666714" x2="5.000000000000008" y1="126.66666666666666" y2="126.66666666666666"/> + <line stroke="#888888" x1="5.000000000000008" x2="5.000000000000008" y1="126.66666666666666" y2="133.33333333333331"/> + <line stroke="#888888" x1="5.000000000000008" x2="1.6666666666666714" y1="133.33333333333331" y2="133.33333333333331"/> +</svg> diff --git a/rocolib/output/BoatBase/graph-autofold-default.dxf b/rocolib/output/BoatBase/graph-autofold-default.dxf new file mode 100644 index 0000000000000000000000000000000000000000..c73c7385e4edda75e853e69db6a2725393bb8d7b --- /dev/null +++ b/rocolib/output/BoatBase/graph-autofold-default.dxf @@ -0,0 +1,2414 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +11 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +LAYER + 2 +90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +90.0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +180 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-180 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-174 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +76.6666666666667 + 20 +20.000000000000004 + 30 +0.0 + 11 +76.6666666666667 + 21 +120.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +26.666666666666696 + 20 +20.000000000000004 + 30 +0.0 + 11 +26.666666666666696 + 21 +120.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90.0 + 10 +51.66666666666669 + 20 +20.000000000000004 + 30 +0.0 + 11 +26.666666666666696 + 21 +20.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90.0 + 10 +76.6666666666667 + 20 +20.000000000000004 + 30 +0.0 + 11 +51.66666666666669 + 21 +20.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +46.6666666666667 + 20 +0.0 + 30 +0.0 + 11 +26.666666666666696 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +51.66666666666671 + 20 +0.0 + 30 +0.0 + 11 +46.6666666666667 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +26.666666666666696 + 20 +20.000000000000004 + 30 +0.0 + 11 +26.666666666666696 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +26.666666666666696 + 20 +20.000000000000004 + 30 +0.0 + 11 +6.666666666666694 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +26.666666666666696 + 20 +0.0 + 30 +0.0 + 11 +6.666666666666694 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +6.666666666666694 + 20 +19.999999999999996 + 30 +0.0 + 11 +6.666666666666701 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90.0 + 10 +26.666666666666696 + 20 +20.000000000000004 + 30 +0.0 + 11 +6.666666666666694 + 21 +19.999999999999996 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +2.8421709430404014e-14 + 20 +19.999999999999996 + 30 +0.0 + 11 +6.666666666666694 + 21 +19.999999999999996 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +2.8421709430404014e-14 + 20 +0.0 + 30 +0.0 + 11 +2.8421709430404014e-14 + 21 +19.999999999999996 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +6.666666666666694 + 20 +0.0 + 30 +0.0 + 11 +2.8421709430404014e-14 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +6.666666666666694 + 20 +19.999999999999996 + 30 +0.0 + 11 +6.666666666666665 + 21 +120.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90.0 + 10 +6.666666666666671 + 20 +119.99999999999999 + 30 +0.0 + 11 +26.66666666666667 + 21 +120.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +6.666666666666665 + 20 +140.0 + 30 +0.0 + 11 +26.66666666666667 + 21 +120.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +6.666666666666665 + 20 +140.0 + 30 +0.0 + 11 +6.666666666666671 + 21 +119.99999999999999 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +6.666666666666671 + 20 +140.0 + 30 +0.0 + 11 +26.666666666666664 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +26.666666666666664 + 20 +140.00000000000003 + 30 +0.0 + 11 +26.66666666666667 + 21 +120.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +46.66666666666665 + 20 +140.00000000000003 + 30 +0.0 + 11 +51.66666666666666 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +26.66666666666666 + 20 +140.0 + 30 +0.0 + 11 +46.66666666666665 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90.0 + 10 +26.66666666666667 + 20 +120.0 + 30 +0.0 + 11 +51.666666666666664 + 21 +120.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90.0 + 10 +51.666666666666664 + 20 +120.00000000000001 + 30 +0.0 + 11 +76.66666666666667 + 21 +120.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +56.66666666666666 + 20 +140.00000000000003 + 30 +0.0 + 11 +76.66666666666666 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +51.66666666666666 + 20 +140.00000000000003 + 30 +0.0 + 11 +56.66666666666666 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +76.66666666666667 + 20 +120.00000000000003 + 30 +0.0 + 11 +76.66666666666666 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +76.66666666666667 + 20 +120.00000000000003 + 30 +0.0 + 11 +96.66666666666664 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +76.66666666666666 + 20 +140.00000000000003 + 30 +0.0 + 11 +96.66666666666664 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +96.66666666666666 + 20 +120.00000000000004 + 30 +0.0 + 11 +96.66666666666664 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90.0 + 10 +76.66666666666667 + 20 +120.00000000000003 + 30 +0.0 + 11 +96.66666666666666 + 21 +120.00000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +103.33333333333333 + 20 +120.00000000000004 + 30 +0.0 + 11 +96.66666666666666 + 21 +120.00000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +103.33333333333331 + 20 +140.00000000000003 + 30 +0.0 + 11 +103.33333333333333 + 21 +120.00000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +96.66666666666664 + 20 +140.00000000000003 + 30 +0.0 + 11 +103.33333333333331 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +96.66666666666666 + 20 +120.00000000000004 + 30 +0.0 + 11 +96.66666666666674 + 21 +20.00000000000006 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90.0 + 10 +96.66666666666673 + 20 +20.00000000000006 + 30 +0.0 + 11 +76.66666666666674 + 21 +20.000000000000043 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +96.66666666666676 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +76.66666666666674 + 21 +20.000000000000043 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +96.66666666666676 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +96.66666666666673 + 21 +20.00000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +96.66666666666676 + 20 +7.105427357601003e-14 + 30 +0.0 + 11 +76.66666666666676 + 21 +5.684341886080803e-14 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +76.66666666666676 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +76.66666666666674 + 21 +20.000000000000043 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +56.66666666666677 + 20 +2.8421709430404014e-14 + 30 +0.0 + 11 +51.66666666666677 + 21 +2.8421709430404014e-14 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +76.66666666666676 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +56.66666666666677 + 21 +2.8421709430404014e-14 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +103.33333333333341 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +96.66666666666676 + 21 +5.684341886080803e-14 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +103.33333333333339 + 20 +20.00000000000006 + 30 +0.0 + 11 +103.33333333333341 + 21 +5.684341886080803e-14 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +96.66666666666673 + 20 +20.00000000000005 + 30 +0.0 + 11 +103.33333333333339 + 21 +20.00000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +140.0 + 30 +0.0 + 11 +6.666666666666665 + 21 +140.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +7.105427357601003e-15 + 20 +119.99999999999999 + 30 +0.0 + 11 +0.0 + 21 +140.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +6.666666666666671 + 20 +119.99999999999999 + 30 +0.0 + 11 +7.105427357601003e-15 + 21 +119.99999999999999 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +40.25000000000003 + 20 +5.25 + 30 +0.0 + 11 +33.083333333333364 + 21 +5.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +33.083333333333364 + 20 +5.25 + 30 +0.0 + 11 +33.083333333333364 + 21 +4.750000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +33.083333333333364 + 20 +4.750000000000001 + 30 +0.0 + 11 +40.25000000000003 + 21 +4.750000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +40.25000000000003 + 20 +4.750000000000001 + 30 +0.0 + 11 +40.25000000000003 + 21 +5.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +1.666666666666693 + 20 +6.666666666666665 + 30 +0.0 + 11 +5.000000000000028 + 21 +6.666666666666665 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +5.000000000000028 + 20 +6.666666666666665 + 30 +0.0 + 11 +5.000000000000028 + 21 +13.33333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +5.000000000000028 + 20 +13.33333333333333 + 30 +0.0 + 11 +1.666666666666693 + 21 +13.33333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +33.08333333333333 + 20 +134.75000000000003 + 30 +0.0 + 11 +40.24999999999999 + 21 +134.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +40.24999999999999 + 20 +134.75000000000003 + 30 +0.0 + 11 +40.24999999999999 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +40.24999999999999 + 20 +135.25000000000003 + 30 +0.0 + 11 +33.08333333333333 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +33.08333333333333 + 20 +135.25000000000003 + 30 +0.0 + 11 +33.08333333333333 + 21 +134.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +63.08333333333332 + 20 +134.75000000000003 + 30 +0.0 + 11 +70.24999999999999 + 21 +134.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +70.24999999999999 + 20 +134.75000000000003 + 30 +0.0 + 11 +70.25 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +70.25 + 20 +135.25000000000003 + 30 +0.0 + 11 +63.08333333333332 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +63.08333333333332 + 20 +135.25000000000003 + 30 +0.0 + 11 +63.08333333333332 + 21 +134.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +101.66666666666666 + 20 +133.33333333333334 + 30 +0.0 + 11 +98.33333333333333 + 21 +133.33333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +98.33333333333333 + 20 +133.33333333333334 + 30 +0.0 + 11 +98.33333333333333 + 21 +126.6666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +98.33333333333333 + 20 +126.6666666666667 + 30 +0.0 + 11 +101.66666666666666 + 21 +126.6666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +70.25000000000009 + 20 +5.2500000000000435 + 30 +0.0 + 11 +63.08333333333343 + 21 +5.250000000000029 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +63.08333333333343 + 20 +5.250000000000029 + 30 +0.0 + 11 +63.08333333333343 + 21 +4.750000000000029 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +63.08333333333343 + 20 +4.750000000000029 + 30 +0.0 + 11 +70.25000000000009 + 21 +4.7500000000000435 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +70.25000000000009 + 20 +4.7500000000000435 + 30 +0.0 + 11 +70.25000000000009 + 21 +5.2500000000000435 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +101.66666666666674 + 20 +13.333333333333387 + 30 +0.0 + 11 +98.33333333333341 + 21 +13.333333333333387 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +98.33333333333341 + 20 +13.333333333333387 + 30 +0.0 + 11 +98.33333333333341 + 21 +6.666666666666722 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +98.33333333333341 + 20 +6.666666666666722 + 30 +0.0 + 11 +101.66666666666674 + 21 +6.666666666666722 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +1.6666666666666714 + 20 +126.66666666666666 + 30 +0.0 + 11 +5.000000000000008 + 21 +126.66666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +5.000000000000008 + 20 +126.66666666666666 + 30 +0.0 + 11 +5.000000000000008 + 21 +133.33333333333331 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +5.000000000000008 + 20 +133.33333333333331 + 30 +0.0 + 11 +1.6666666666666714 + 21 +133.33333333333331 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BoatBase/graph-autofold-graph.dxf b/rocolib/output/BoatBase/graph-autofold-graph.dxf new file mode 100644 index 0000000000000000000000000000000000000000..bc90a9ea6115527f29d7b5c26903b089120668de --- /dev/null +++ b/rocolib/output/BoatBase/graph-autofold-graph.dxf @@ -0,0 +1,2354 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +76.6666666666667 + 20 +20.000000000000004 + 30 +0.0 + 11 +76.6666666666667 + 21 +120.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +26.666666666666696 + 20 +20.000000000000004 + 30 +0.0 + 11 +26.666666666666696 + 21 +120.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +51.66666666666669 + 20 +20.000000000000004 + 30 +0.0 + 11 +26.666666666666696 + 21 +20.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +76.6666666666667 + 20 +20.000000000000004 + 30 +0.0 + 11 +51.66666666666669 + 21 +20.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +46.6666666666667 + 20 +0.0 + 30 +0.0 + 11 +26.666666666666696 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +51.66666666666671 + 20 +0.0 + 30 +0.0 + 11 +46.6666666666667 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +26.666666666666696 + 20 +20.000000000000004 + 30 +0.0 + 11 +26.666666666666696 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +26.666666666666696 + 20 +20.000000000000004 + 30 +0.0 + 11 +6.666666666666694 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +26.666666666666696 + 20 +0.0 + 30 +0.0 + 11 +6.666666666666694 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +6.666666666666694 + 20 +19.999999999999996 + 30 +0.0 + 11 +6.666666666666701 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +26.666666666666696 + 20 +20.000000000000004 + 30 +0.0 + 11 +6.666666666666694 + 21 +19.999999999999996 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +2.8421709430404014e-14 + 20 +19.999999999999996 + 30 +0.0 + 11 +6.666666666666694 + 21 +19.999999999999996 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +2.8421709430404014e-14 + 20 +0.0 + 30 +0.0 + 11 +2.8421709430404014e-14 + 21 +19.999999999999996 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +6.666666666666694 + 20 +0.0 + 30 +0.0 + 11 +2.8421709430404014e-14 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +6.666666666666694 + 20 +19.999999999999996 + 30 +0.0 + 11 +6.666666666666665 + 21 +120.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +6.666666666666671 + 20 +119.99999999999999 + 30 +0.0 + 11 +26.66666666666667 + 21 +120.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +6.666666666666665 + 20 +140.0 + 30 +0.0 + 11 +26.66666666666667 + 21 +120.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +6.666666666666665 + 20 +140.0 + 30 +0.0 + 11 +6.666666666666671 + 21 +119.99999999999999 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +6.666666666666671 + 20 +140.0 + 30 +0.0 + 11 +26.666666666666664 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +26.666666666666664 + 20 +140.00000000000003 + 30 +0.0 + 11 +26.66666666666667 + 21 +120.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +46.66666666666665 + 20 +140.00000000000003 + 30 +0.0 + 11 +51.66666666666666 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +26.66666666666666 + 20 +140.0 + 30 +0.0 + 11 +46.66666666666665 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +26.66666666666667 + 20 +120.0 + 30 +0.0 + 11 +51.666666666666664 + 21 +120.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +51.666666666666664 + 20 +120.00000000000001 + 30 +0.0 + 11 +76.66666666666667 + 21 +120.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +56.66666666666666 + 20 +140.00000000000003 + 30 +0.0 + 11 +76.66666666666666 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +51.66666666666666 + 20 +140.00000000000003 + 30 +0.0 + 11 +56.66666666666666 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +76.66666666666667 + 20 +120.00000000000003 + 30 +0.0 + 11 +76.66666666666666 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +76.66666666666667 + 20 +120.00000000000003 + 30 +0.0 + 11 +96.66666666666664 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +76.66666666666666 + 20 +140.00000000000003 + 30 +0.0 + 11 +96.66666666666664 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +96.66666666666666 + 20 +120.00000000000004 + 30 +0.0 + 11 +96.66666666666664 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +76.66666666666667 + 20 +120.00000000000003 + 30 +0.0 + 11 +96.66666666666666 + 21 +120.00000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +103.33333333333333 + 20 +120.00000000000004 + 30 +0.0 + 11 +96.66666666666666 + 21 +120.00000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +103.33333333333331 + 20 +140.00000000000003 + 30 +0.0 + 11 +103.33333333333333 + 21 +120.00000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +96.66666666666664 + 20 +140.00000000000003 + 30 +0.0 + 11 +103.33333333333331 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +96.66666666666666 + 20 +120.00000000000004 + 30 +0.0 + 11 +96.66666666666674 + 21 +20.00000000000006 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +96.66666666666673 + 20 +20.00000000000006 + 30 +0.0 + 11 +76.66666666666674 + 21 +20.000000000000043 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +96.66666666666676 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +76.66666666666674 + 21 +20.000000000000043 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +96.66666666666676 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +96.66666666666673 + 21 +20.00000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +96.66666666666676 + 20 +7.105427357601003e-14 + 30 +0.0 + 11 +76.66666666666676 + 21 +5.684341886080803e-14 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +76.66666666666676 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +76.66666666666674 + 21 +20.000000000000043 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +56.66666666666677 + 20 +2.8421709430404014e-14 + 30 +0.0 + 11 +51.66666666666677 + 21 +2.8421709430404014e-14 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +76.66666666666676 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +56.66666666666677 + 21 +2.8421709430404014e-14 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +103.33333333333341 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +96.66666666666676 + 21 +5.684341886080803e-14 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +103.33333333333339 + 20 +20.00000000000006 + 30 +0.0 + 11 +103.33333333333341 + 21 +5.684341886080803e-14 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +96.66666666666673 + 20 +20.00000000000005 + 30 +0.0 + 11 +103.33333333333339 + 21 +20.00000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +140.0 + 30 +0.0 + 11 +6.666666666666665 + 21 +140.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.105427357601003e-15 + 20 +119.99999999999999 + 30 +0.0 + 11 +0.0 + 21 +140.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +6.666666666666671 + 20 +119.99999999999999 + 30 +0.0 + 11 +7.105427357601003e-15 + 21 +119.99999999999999 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.25000000000003 + 20 +5.25 + 30 +0.0 + 11 +33.083333333333364 + 21 +5.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +33.083333333333364 + 20 +5.25 + 30 +0.0 + 11 +33.083333333333364 + 21 +4.750000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +33.083333333333364 + 20 +4.750000000000001 + 30 +0.0 + 11 +40.25000000000003 + 21 +4.750000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.25000000000003 + 20 +4.750000000000001 + 30 +0.0 + 11 +40.25000000000003 + 21 +5.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +1.666666666666693 + 20 +6.666666666666665 + 30 +0.0 + 11 +5.000000000000028 + 21 +6.666666666666665 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +5.000000000000028 + 20 +6.666666666666665 + 30 +0.0 + 11 +5.000000000000028 + 21 +13.33333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +5.000000000000028 + 20 +13.33333333333333 + 30 +0.0 + 11 +1.666666666666693 + 21 +13.33333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +33.08333333333333 + 20 +134.75000000000003 + 30 +0.0 + 11 +40.24999999999999 + 21 +134.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.24999999999999 + 20 +134.75000000000003 + 30 +0.0 + 11 +40.24999999999999 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.24999999999999 + 20 +135.25000000000003 + 30 +0.0 + 11 +33.08333333333333 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +33.08333333333333 + 20 +135.25000000000003 + 30 +0.0 + 11 +33.08333333333333 + 21 +134.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +63.08333333333332 + 20 +134.75000000000003 + 30 +0.0 + 11 +70.24999999999999 + 21 +134.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.24999999999999 + 20 +134.75000000000003 + 30 +0.0 + 11 +70.25 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.25 + 20 +135.25000000000003 + 30 +0.0 + 11 +63.08333333333332 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +63.08333333333332 + 20 +135.25000000000003 + 30 +0.0 + 11 +63.08333333333332 + 21 +134.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.66666666666666 + 20 +133.33333333333334 + 30 +0.0 + 11 +98.33333333333333 + 21 +133.33333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.33333333333333 + 20 +133.33333333333334 + 30 +0.0 + 11 +98.33333333333333 + 21 +126.6666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.33333333333333 + 20 +126.6666666666667 + 30 +0.0 + 11 +101.66666666666666 + 21 +126.6666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.25000000000009 + 20 +5.2500000000000435 + 30 +0.0 + 11 +63.08333333333343 + 21 +5.250000000000029 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +63.08333333333343 + 20 +5.250000000000029 + 30 +0.0 + 11 +63.08333333333343 + 21 +4.750000000000029 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +63.08333333333343 + 20 +4.750000000000029 + 30 +0.0 + 11 +70.25000000000009 + 21 +4.7500000000000435 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.25000000000009 + 20 +4.7500000000000435 + 30 +0.0 + 11 +70.25000000000009 + 21 +5.2500000000000435 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.66666666666674 + 20 +13.333333333333387 + 30 +0.0 + 11 +98.33333333333341 + 21 +13.333333333333387 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.33333333333341 + 20 +13.333333333333387 + 30 +0.0 + 11 +98.33333333333341 + 21 +6.666666666666722 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.33333333333341 + 20 +6.666666666666722 + 30 +0.0 + 11 +101.66666666666674 + 21 +6.666666666666722 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +1.6666666666666714 + 20 +126.66666666666666 + 30 +0.0 + 11 +5.000000000000008 + 21 +126.66666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +5.000000000000008 + 20 +126.66666666666666 + 30 +0.0 + 11 +5.000000000000008 + 21 +133.33333333333331 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +5.000000000000008 + 20 +133.33333333333331 + 30 +0.0 + 11 +1.6666666666666714 + 21 +133.33333333333331 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BoatBase/graph-lasercutter.svg b/rocolib/output/BoatBase/graph-lasercutter.svg new file mode 100644 index 0000000000000000000000000000000000000000..148f9806a255720e5a84875a2dfb59732907307a --- /dev/null +++ b/rocolib/output/BoatBase/graph-lasercutter.svg @@ -0,0 +1,80 @@ +<?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="140.000000mm" version="1.1" viewBox="0.000000 0.000000 103.333333 140.000000" width="103.333333mm"> + <defs/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.6666666666667" x2="76.6666666666667" y1="20.000000000000004" y2="120.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666696" x2="26.666666666666696" y1="20.000000000000004" y2="120.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="51.66666666666669" x2="26.666666666666696" y1="20.000000000000004" y2="20.000000000000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.6666666666667" x2="51.66666666666669" y1="20.000000000000004" y2="20.000000000000004"/> + <line stroke="#000000" x1="46.6666666666667" x2="26.666666666666696" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="51.66666666666671" x2="46.6666666666667" y1="0.0" y2="0.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666696" x2="26.666666666666696" y1="20.000000000000004" y2="0.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666696" x2="6.666666666666694" y1="20.000000000000004" y2="0.0"/> + <line stroke="#000000" x1="26.666666666666696" x2="6.666666666666694" y1="0.0" y2="0.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="6.666666666666694" x2="6.666666666666701" y1="19.999999999999996" y2="0.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666696" x2="6.666666666666694" y1="20.000000000000004" y2="19.999999999999996"/> + <line stroke="#000000" x1="2.8421709430404014e-14" x2="6.666666666666694" y1="19.999999999999996" y2="19.999999999999996"/> + <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="0.0" y2="19.999999999999996"/> + <line stroke="#000000" x1="6.666666666666694" x2="2.8421709430404014e-14" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="6.666666666666694" x2="6.666666666666665" y1="19.999999999999996" y2="120.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="6.666666666666671" x2="26.66666666666667" y1="119.99999999999999" y2="120.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="6.666666666666665" x2="26.66666666666667" y1="140.0" y2="120.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="6.666666666666665" x2="6.666666666666671" y1="140.0" y2="119.99999999999999"/> + <line stroke="#000000" x1="6.666666666666671" x2="26.666666666666664" y1="140.0" y2="140.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666664" x2="26.66666666666667" y1="140.00000000000003" y2="120.0"/> + <line stroke="#000000" x1="46.66666666666665" x2="51.66666666666666" y1="140.00000000000003" y2="140.00000000000003"/> + <line stroke="#000000" x1="26.66666666666666" x2="46.66666666666665" y1="140.0" y2="140.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.66666666666667" x2="51.666666666666664" y1="120.0" y2="120.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="51.666666666666664" x2="76.66666666666667" y1="120.00000000000001" y2="120.00000000000003"/> + <line stroke="#000000" x1="56.66666666666666" x2="76.66666666666666" y1="140.00000000000003" y2="140.00000000000003"/> + <line stroke="#000000" x1="51.66666666666666" x2="56.66666666666666" y1="140.00000000000003" y2="140.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666667" x2="76.66666666666666" y1="120.00000000000003" y2="140.00000000000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666667" x2="96.66666666666664" y1="120.00000000000003" y2="140.00000000000003"/> + <line stroke="#000000" x1="76.66666666666666" x2="96.66666666666664" y1="140.00000000000003" y2="140.00000000000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.66666666666666" x2="96.66666666666664" y1="120.00000000000004" y2="140.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666667" x2="96.66666666666666" y1="120.00000000000003" y2="120.00000000000004"/> + <line stroke="#000000" x1="103.33333333333333" x2="96.66666666666666" y1="120.00000000000004" y2="120.00000000000004"/> + <line stroke="#000000" x1="103.33333333333331" x2="103.33333333333333" y1="140.00000000000003" y2="120.00000000000004"/> + <line stroke="#000000" x1="96.66666666666664" x2="103.33333333333331" y1="140.00000000000003" y2="140.00000000000003"/> + <line stroke="#000000" x1="96.66666666666666" x2="96.66666666666674" y1="120.00000000000004" y2="20.00000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.66666666666673" x2="76.66666666666674" y1="20.00000000000006" y2="20.000000000000043"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.66666666666676" x2="76.66666666666674" y1="5.684341886080803e-14" y2="20.000000000000043"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.66666666666676" x2="96.66666666666673" y1="5.684341886080803e-14" y2="20.00000000000006"/> + <line stroke="#000000" x1="96.66666666666676" x2="76.66666666666676" y1="7.105427357601003e-14" y2="5.684341886080803e-14"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666676" x2="76.66666666666674" y1="5.684341886080803e-14" y2="20.000000000000043"/> + <line stroke="#000000" x1="56.66666666666677" x2="51.66666666666677" y1="2.8421709430404014e-14" y2="2.8421709430404014e-14"/> + <line stroke="#000000" x1="76.66666666666676" x2="56.66666666666677" y1="5.684341886080803e-14" y2="2.8421709430404014e-14"/> + <line stroke="#000000" x1="103.33333333333341" x2="96.66666666666676" y1="5.684341886080803e-14" y2="5.684341886080803e-14"/> + <line stroke="#000000" x1="103.33333333333339" x2="103.33333333333341" y1="20.00000000000006" y2="5.684341886080803e-14"/> + <line stroke="#000000" x1="96.66666666666673" x2="103.33333333333339" y1="20.00000000000005" y2="20.00000000000006"/> + <line stroke="#000000" x1="0.0" x2="6.666666666666665" y1="140.0" y2="140.0"/> + <line stroke="#000000" x1="7.105427357601003e-15" x2="0.0" y1="119.99999999999999" y2="140.0"/> + <line stroke="#000000" x1="6.666666666666671" x2="7.105427357601003e-15" y1="119.99999999999999" y2="119.99999999999999"/> + <line stroke="#888888" x1="40.25000000000003" x2="33.083333333333364" y1="5.25" y2="5.25"/> + <line stroke="#888888" x1="33.083333333333364" x2="33.083333333333364" y1="5.25" y2="4.750000000000001"/> + <line stroke="#888888" x1="33.083333333333364" x2="40.25000000000003" y1="4.750000000000001" y2="4.750000000000001"/> + <line stroke="#888888" x1="40.25000000000003" x2="40.25000000000003" y1="4.750000000000001" y2="5.25"/> + <line stroke="#888888" x1="1.666666666666693" x2="5.000000000000028" y1="6.666666666666665" y2="6.666666666666665"/> + <line stroke="#888888" x1="5.000000000000028" x2="5.000000000000028" y1="6.666666666666665" y2="13.33333333333333"/> + <line stroke="#888888" x1="5.000000000000028" x2="1.666666666666693" y1="13.33333333333333" y2="13.33333333333333"/> + <line stroke="#888888" x1="33.08333333333333" x2="40.24999999999999" y1="134.75000000000003" y2="134.75000000000003"/> + <line stroke="#888888" x1="40.24999999999999" x2="40.24999999999999" y1="134.75000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="40.24999999999999" x2="33.08333333333333" y1="135.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="33.08333333333333" x2="33.08333333333333" y1="135.25000000000003" y2="134.75000000000003"/> + <line stroke="#888888" x1="63.08333333333332" x2="70.24999999999999" y1="134.75000000000003" y2="134.75000000000003"/> + <line stroke="#888888" x1="70.24999999999999" x2="70.25" y1="134.75000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="70.25" x2="63.08333333333332" y1="135.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="63.08333333333332" x2="63.08333333333332" y1="135.25000000000003" y2="134.75000000000003"/> + <line stroke="#888888" x1="101.66666666666666" x2="98.33333333333333" y1="133.33333333333334" y2="133.33333333333334"/> + <line stroke="#888888" x1="98.33333333333333" x2="98.33333333333333" y1="133.33333333333334" y2="126.6666666666667"/> + <line stroke="#888888" x1="98.33333333333333" x2="101.66666666666666" y1="126.6666666666667" y2="126.6666666666667"/> + <line stroke="#888888" x1="70.25000000000009" x2="63.08333333333343" y1="5.2500000000000435" y2="5.250000000000029"/> + <line stroke="#888888" x1="63.08333333333343" x2="63.08333333333343" y1="5.250000000000029" y2="4.750000000000029"/> + <line stroke="#888888" x1="63.08333333333343" x2="70.25000000000009" y1="4.750000000000029" y2="4.7500000000000435"/> + <line stroke="#888888" x1="70.25000000000009" x2="70.25000000000009" y1="4.7500000000000435" y2="5.2500000000000435"/> + <line stroke="#888888" x1="101.66666666666674" x2="98.33333333333341" y1="13.333333333333387" y2="13.333333333333387"/> + <line stroke="#888888" x1="98.33333333333341" x2="98.33333333333341" y1="13.333333333333387" y2="6.666666666666722"/> + <line stroke="#888888" x1="98.33333333333341" x2="101.66666666666674" y1="6.666666666666722" y2="6.666666666666722"/> + <line stroke="#888888" x1="1.6666666666666714" x2="5.000000000000008" y1="126.66666666666666" y2="126.66666666666666"/> + <line stroke="#888888" x1="5.000000000000008" x2="5.000000000000008" y1="126.66666666666666" y2="133.33333333333331"/> + <line stroke="#888888" x1="5.000000000000008" x2="1.6666666666666714" y1="133.33333333333331" y2="133.33333333333331"/> +</svg> diff --git a/rocolib/output/BoatBase/graph-model.png b/rocolib/output/BoatBase/graph-model.png new file mode 100644 index 0000000000000000000000000000000000000000..240d235b23b17724e44682f50dc3c286aca86b91 Binary files /dev/null and b/rocolib/output/BoatBase/graph-model.png differ diff --git a/rocolib/output/BoatBase/graph-model.stl b/rocolib/output/BoatBase/graph-model.stl new file mode 100644 index 0000000000000000000000000000000000000000..ef38fff9ca8cc55e9c30b3ace5f4d2747d7a80b7 --- /dev/null +++ b/rocolib/output/BoatBase/graph-model.stl @@ -0,0 +1,240 @@ +solid python +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 0.0000 +vertex -0.0250 -0.0500 0.0000 +vertex 0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 0.0000 +vertex 0.0250 0.0500 0.0000 +vertex -0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 -0.0200 +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 0.0000 +vertex -0.0250 0.0500 0.0000 +vertex -0.0250 0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 0.0000 +vertex 0.0250 -0.0500 0.0000 +vertex 0.0250 -0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0250 0.0500 -0.0200 +vertex 0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 0.0000 +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0050 -0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0050 -0.0500 -0.0200 +vertex 0.0000 -0.0500 -0.0200 +vertex -0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0000 -0.0500 0.0000 +vertex -0.0250 -0.0500 0.0000 +vertex -0.0000 -0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0000 -0.0500 0.0000 +vertex 0.0000 -0.0500 -0.0200 +vertex 0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0050 -0.0500 -0.0200 +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 0.0000 +vertex 0.0000 -0.0500 -0.0200 +vertex 0.0050 -0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0250 -0.0500 0.0000 +vertex -0.0050 -0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0050 -0.0500 -0.0200 +vertex -0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0050 -0.0500 -0.0200 +vertex 0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0250 -0.0500 0.0000 +vertex 0.0050 -0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 0.0000 +vertex 0.0250 0.0500 -0.0200 +vertex 0.0050 0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0050 0.0500 -0.0200 +vertex -0.0000 0.0500 -0.0200 +vertex 0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0000 0.0500 0.0000 +vertex 0.0250 0.0500 0.0000 +vertex -0.0000 0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0000 0.0500 0.0000 +vertex -0.0000 0.0500 -0.0200 +vertex -0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0050 0.0500 -0.0200 +vertex -0.0250 0.0500 -0.0200 +vertex -0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 0.0000 +vertex -0.0000 0.0500 -0.0200 +vertex -0.0050 0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 -0.0200 +vertex 0.0250 0.0500 0.0000 +vertex 0.0050 0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 -0.0200 +vertex 0.0050 0.0500 -0.0200 +vertex 0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 -0.0200 +vertex -0.0050 0.0500 -0.0200 +vertex -0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 -0.0200 +vertex -0.0250 0.0500 0.0000 +vertex -0.0050 0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0050 -0.0507 -0.0134 +vertex -0.0050 -0.0500 -0.0200 +vertex -0.0250 -0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0250 -0.0507 -0.0134 +vertex -0.0050 -0.0507 -0.0134 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0507 -0.0134 +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0050 -0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0050 -0.0500 -0.0200 +vertex 0.0050 -0.0507 -0.0134 +vertex 0.0250 -0.0507 -0.0134 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0050 0.0507 -0.0134 +vertex 0.0050 0.0500 -0.0200 +vertex 0.0250 0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 -0.0200 +vertex 0.0250 0.0507 -0.0134 +vertex 0.0050 0.0507 -0.0134 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0507 -0.0134 +vertex -0.0250 0.0500 -0.0200 +vertex -0.0050 0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0050 0.0500 -0.0200 +vertex -0.0050 0.0507 -0.0134 +vertex -0.0250 0.0507 -0.0134 +endloop +endfacet +endsolid python diff --git a/rocolib/output/BoatBase/graph-silhouette.dxf b/rocolib/output/BoatBase/graph-silhouette.dxf new file mode 100644 index 0000000000000000000000000000000000000000..46c66f5effdc11ac4ed2ef90ac09884e0b267650 --- /dev/null +++ b/rocolib/output/BoatBase/graph-silhouette.dxf @@ -0,0 +1,2354 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +76.6666666666667 + 20 +20.000000000000004 + 30 +0.0 + 11 +76.6666666666667 + 21 +120.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +26.666666666666696 + 20 +20.000000000000004 + 30 +0.0 + 11 +26.666666666666696 + 21 +120.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +51.66666666666669 + 20 +20.000000000000004 + 30 +0.0 + 11 +26.666666666666696 + 21 +20.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +76.6666666666667 + 20 +20.000000000000004 + 30 +0.0 + 11 +51.66666666666669 + 21 +20.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +46.6666666666667 + 20 +0.0 + 30 +0.0 + 11 +26.666666666666696 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +51.66666666666671 + 20 +0.0 + 30 +0.0 + 11 +46.6666666666667 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +26.666666666666696 + 20 +20.000000000000004 + 30 +0.0 + 11 +26.666666666666696 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +26.666666666666696 + 20 +20.000000000000004 + 30 +0.0 + 11 +6.666666666666694 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +26.666666666666696 + 20 +0.0 + 30 +0.0 + 11 +6.666666666666694 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +6.666666666666694 + 20 +19.999999999999996 + 30 +0.0 + 11 +6.666666666666701 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +26.666666666666696 + 20 +20.000000000000004 + 30 +0.0 + 11 +6.666666666666694 + 21 +19.999999999999996 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +2.8421709430404014e-14 + 20 +19.999999999999996 + 30 +0.0 + 11 +6.666666666666694 + 21 +19.999999999999996 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +2.8421709430404014e-14 + 20 +0.0 + 30 +0.0 + 11 +2.8421709430404014e-14 + 21 +19.999999999999996 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +6.666666666666694 + 20 +0.0 + 30 +0.0 + 11 +2.8421709430404014e-14 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +6.666666666666694 + 20 +19.999999999999996 + 30 +0.0 + 11 +6.666666666666665 + 21 +120.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +6.666666666666671 + 20 +119.99999999999999 + 30 +0.0 + 11 +26.66666666666667 + 21 +120.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +6.666666666666665 + 20 +140.0 + 30 +0.0 + 11 +26.66666666666667 + 21 +120.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +6.666666666666665 + 20 +140.0 + 30 +0.0 + 11 +6.666666666666671 + 21 +119.99999999999999 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +6.666666666666671 + 20 +140.0 + 30 +0.0 + 11 +26.666666666666664 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +26.666666666666664 + 20 +140.00000000000003 + 30 +0.0 + 11 +26.66666666666667 + 21 +120.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +46.66666666666665 + 20 +140.00000000000003 + 30 +0.0 + 11 +51.66666666666666 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +26.66666666666666 + 20 +140.0 + 30 +0.0 + 11 +46.66666666666665 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +26.66666666666667 + 20 +120.0 + 30 +0.0 + 11 +51.666666666666664 + 21 +120.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +51.666666666666664 + 20 +120.00000000000001 + 30 +0.0 + 11 +76.66666666666667 + 21 +120.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +56.66666666666666 + 20 +140.00000000000003 + 30 +0.0 + 11 +76.66666666666666 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +51.66666666666666 + 20 +140.00000000000003 + 30 +0.0 + 11 +56.66666666666666 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +76.66666666666667 + 20 +120.00000000000003 + 30 +0.0 + 11 +76.66666666666666 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +76.66666666666667 + 20 +120.00000000000003 + 30 +0.0 + 11 +96.66666666666664 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +76.66666666666666 + 20 +140.00000000000003 + 30 +0.0 + 11 +96.66666666666664 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +96.66666666666666 + 20 +120.00000000000004 + 30 +0.0 + 11 +96.66666666666664 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +76.66666666666667 + 20 +120.00000000000003 + 30 +0.0 + 11 +96.66666666666666 + 21 +120.00000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +103.33333333333333 + 20 +120.00000000000004 + 30 +0.0 + 11 +96.66666666666666 + 21 +120.00000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +103.33333333333331 + 20 +140.00000000000003 + 30 +0.0 + 11 +103.33333333333333 + 21 +120.00000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +96.66666666666664 + 20 +140.00000000000003 + 30 +0.0 + 11 +103.33333333333331 + 21 +140.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +96.66666666666666 + 20 +120.00000000000004 + 30 +0.0 + 11 +96.66666666666674 + 21 +20.00000000000006 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +96.66666666666673 + 20 +20.00000000000006 + 30 +0.0 + 11 +76.66666666666674 + 21 +20.000000000000043 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +96.66666666666676 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +76.66666666666674 + 21 +20.000000000000043 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +96.66666666666676 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +96.66666666666673 + 21 +20.00000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +96.66666666666676 + 20 +7.105427357601003e-14 + 30 +0.0 + 11 +76.66666666666676 + 21 +5.684341886080803e-14 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +76.66666666666676 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +76.66666666666674 + 21 +20.000000000000043 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +56.66666666666677 + 20 +2.8421709430404014e-14 + 30 +0.0 + 11 +51.66666666666677 + 21 +2.8421709430404014e-14 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +76.66666666666676 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +56.66666666666677 + 21 +2.8421709430404014e-14 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +103.33333333333341 + 20 +5.684341886080803e-14 + 30 +0.0 + 11 +96.66666666666676 + 21 +5.684341886080803e-14 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +103.33333333333339 + 20 +20.00000000000006 + 30 +0.0 + 11 +103.33333333333341 + 21 +5.684341886080803e-14 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +96.66666666666673 + 20 +20.00000000000005 + 30 +0.0 + 11 +103.33333333333339 + 21 +20.00000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +140.0 + 30 +0.0 + 11 +6.666666666666665 + 21 +140.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.105427357601003e-15 + 20 +119.99999999999999 + 30 +0.0 + 11 +0.0 + 21 +140.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +6.666666666666671 + 20 +119.99999999999999 + 30 +0.0 + 11 +7.105427357601003e-15 + 21 +119.99999999999999 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.25000000000003 + 20 +5.25 + 30 +0.0 + 11 +33.083333333333364 + 21 +5.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +33.083333333333364 + 20 +5.25 + 30 +0.0 + 11 +33.083333333333364 + 21 +4.750000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +33.083333333333364 + 20 +4.750000000000001 + 30 +0.0 + 11 +40.25000000000003 + 21 +4.750000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.25000000000003 + 20 +4.750000000000001 + 30 +0.0 + 11 +40.25000000000003 + 21 +5.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +1.666666666666693 + 20 +6.666666666666665 + 30 +0.0 + 11 +5.000000000000028 + 21 +6.666666666666665 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +5.000000000000028 + 20 +6.666666666666665 + 30 +0.0 + 11 +5.000000000000028 + 21 +13.33333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +5.000000000000028 + 20 +13.33333333333333 + 30 +0.0 + 11 +1.666666666666693 + 21 +13.33333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +33.08333333333333 + 20 +134.75000000000003 + 30 +0.0 + 11 +40.24999999999999 + 21 +134.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.24999999999999 + 20 +134.75000000000003 + 30 +0.0 + 11 +40.24999999999999 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.24999999999999 + 20 +135.25000000000003 + 30 +0.0 + 11 +33.08333333333333 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +33.08333333333333 + 20 +135.25000000000003 + 30 +0.0 + 11 +33.08333333333333 + 21 +134.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +63.08333333333332 + 20 +134.75000000000003 + 30 +0.0 + 11 +70.24999999999999 + 21 +134.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.24999999999999 + 20 +134.75000000000003 + 30 +0.0 + 11 +70.25 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.25 + 20 +135.25000000000003 + 30 +0.0 + 11 +63.08333333333332 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +63.08333333333332 + 20 +135.25000000000003 + 30 +0.0 + 11 +63.08333333333332 + 21 +134.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.66666666666666 + 20 +133.33333333333334 + 30 +0.0 + 11 +98.33333333333333 + 21 +133.33333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.33333333333333 + 20 +133.33333333333334 + 30 +0.0 + 11 +98.33333333333333 + 21 +126.6666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.33333333333333 + 20 +126.6666666666667 + 30 +0.0 + 11 +101.66666666666666 + 21 +126.6666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.25000000000009 + 20 +5.2500000000000435 + 30 +0.0 + 11 +63.08333333333343 + 21 +5.250000000000029 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +63.08333333333343 + 20 +5.250000000000029 + 30 +0.0 + 11 +63.08333333333343 + 21 +4.750000000000029 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +63.08333333333343 + 20 +4.750000000000029 + 30 +0.0 + 11 +70.25000000000009 + 21 +4.7500000000000435 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.25000000000009 + 20 +4.7500000000000435 + 30 +0.0 + 11 +70.25000000000009 + 21 +5.2500000000000435 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.66666666666674 + 20 +13.333333333333387 + 30 +0.0 + 11 +98.33333333333341 + 21 +13.333333333333387 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.33333333333341 + 20 +13.333333333333387 + 30 +0.0 + 11 +98.33333333333341 + 21 +6.666666666666722 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.33333333333341 + 20 +6.666666666666722 + 30 +0.0 + 11 +101.66666666666674 + 21 +6.666666666666722 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +1.6666666666666714 + 20 +126.66666666666666 + 30 +0.0 + 11 +5.000000000000008 + 21 +126.66666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +5.000000000000008 + 20 +126.66666666666666 + 30 +0.0 + 11 +5.000000000000008 + 21 +133.33333333333331 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +5.000000000000008 + 20 +133.33333333333331 + 30 +0.0 + 11 +1.6666666666666714 + 21 +133.33333333333331 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BoatBase/tree.png b/rocolib/output/BoatBase/tree.png new file mode 100644 index 0000000000000000000000000000000000000000..1c80fd62562fa3f40ea543f1f9400cd1e7f74b05 Binary files /dev/null and b/rocolib/output/BoatBase/tree.png differ diff --git a/rocolib/output/Boat_StackMount/graph-anim.svg b/rocolib/output/Boat_StackMount/graph-anim.svg index 4912e6b84ea189e489db16dafd6aa6e35581e723..2592b83e7554656428c817ff8cb359e64006d0c3 100644 --- a/rocolib/output/Boat_StackMount/graph-anim.svg +++ b/rocolib/output/Boat_StackMount/graph-anim.svg @@ -1,138 +1,140 @@ <?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="92.000000mm" version="1.1" viewBox="0.000000 0.000000 338.000000 92.000000" width="338.000000mm"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="151.600824mm" version="1.1" viewBox="0.000000 0.000000 268.000000 151.600824" width="268.000000mm"> <defs/> - <line stroke="#000000" x1="70.00000000000001" x2="10.000000000000002" y1="7.000000000000001" y2="7.000000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="70.00000000000001" y1="7.000000000000001" y2="31.000000000000007"/> - <line stroke="#000000" x1="10.000000000000002" x2="70.00000000000001" y1="31.000000000000007" y2="31.000000000000007"/> - <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="31.000000000000007" y2="7.000000000000001"/> - <line stroke="#000000" x1="80.00000000000001" x2="70.00000000000001" y1="7.000000000000001" y2="7.000000000000001"/> - <line stroke="#000000" x1="80.00000000000001" x2="80.00000000000001" y1="31.000000000000007" y2="7.000000000000001"/> - <line stroke="#000000" x1="70.00000000000001" x2="80.00000000000001" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#000000" x1="0.0" x2="0.0" y1="7.000000000000001" y2="31.000000000000007"/> - <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="7.000000000000001" y2="7.000000000000001"/> - <line stroke="#888888" x1="27.500000000000004" x2="38.50000000000001" y1="12.5" y2="12.5"/> - <line stroke="#888888" x1="38.50000000000001" x2="38.50000000000001" y1="12.5" y2="25.500000000000004"/> - <line stroke="#888888" x1="38.50000000000001" x2="27.500000000000004" y1="25.500000000000004" y2="25.500000000000004"/> - <line stroke="#888888" x1="27.500000000000004" x2="27.500000000000004" y1="25.500000000000004" y2="12.5"/> - <line stroke="#888888" x1="59.00000000000001" x2="65.0" y1="14.000000000000002" y2="14.000000000000002"/> - <line stroke="#888888" x1="65.0" x2="65.0" y1="14.000000000000002" y2="24.000000000000004"/> - <line stroke="#888888" x1="65.0" x2="59.00000000000001" y1="24.000000000000004" y2="24.000000000000004"/> - <line stroke="#888888" x1="59.00000000000001" x2="59.00000000000001" y1="24.000000000000004" y2="14.000000000000002"/> - <line stroke="#888888" x1="77.5" x2="72.50000000000001" y1="23.000000000000004" y2="23.000000000000004"/> - <line stroke="#888888" x1="72.50000000000001" x2="72.50000000000001" y1="23.000000000000004" y2="15.000000000000002"/> - <line stroke="#888888" x1="72.50000000000001" x2="77.5" y1="15.000000000000002" y2="15.000000000000002"/> - <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="15.000000000000002" y2="15.000000000000002"/> - <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="15.000000000000002" y2="23.000000000000004"/> - <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="23.000000000000004" y2="23.000000000000004"/> - <line opacity="0.5" stroke="#0000ff" x1="124.00000000000003" x2="184.00000000000003" y1="7.000000000000001" y2="7.000000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="184.00000000000003" x2="184.00000000000003" y1="7.000000000000001" y2="31.000000000000007"/> - <line opacity="0.5" stroke="#0000ff" x1="184.00000000000003" x2="124.00000000000003" y1="31.000000000000007" y2="31.000000000000007"/> - <line opacity="0.5" stroke="#0000ff" x1="124.00000000000003" x2="124.00000000000003" y1="31.000000000000007" y2="7.000000000000001"/> - <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="0.0" y2="7.000000000000001"/> - <line stroke="#000000" x1="184.00000000000003" x2="124.00000000000003" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="7.000000000000001" y2="0.0"/> - <line stroke="#000000" x1="191.0" x2="184.00000000000003" y1="7.000000000000001" y2="7.000000000000001"/> - <line stroke="#000000" x1="191.0" x2="191.0" y1="31.000000000000007" y2="7.000000000000001"/> - <line stroke="#000000" x1="184.00000000000003" x2="191.0" y1="31.000000000000007" y2="31.000000000000007"/> - <line opacity="0.5" stroke="#0000ff" x1="184.00000000000003" x2="184.00000000000003" y1="31.000000000000007" y2="92.00000000000001"/> - <line stroke="#000000" x1="124.00000000000003" x2="184.00000000000003" y1="92.00000000000001" y2="92.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="124.00000000000003" x2="124.00000000000003" y1="31.000000000000007" y2="92.00000000000001"/> - <line stroke="#000000" x1="208.00000000000003" x2="184.00000000000003" y1="31.000000000000007" y2="31.000000000000007"/> - <line opacity="0.5" stroke="#0000ff" x1="208.00000000000003" x2="208.00000000000003" y1="31.000000000000007" y2="92.00000000000001"/> - <line stroke="#000000" x1="184.00000000000003" x2="208.00000000000003" y1="92.00000000000001" y2="92.00000000000001"/> - <line stroke="#000000" x1="268.00000000000006" x2="208.00000000000003" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#000000" x1="268.00000000000006" x2="268.00000000000006" y1="92.00000000000001" y2="31.000000000000007"/> - <line stroke="#000000" x1="208.00000000000003" x2="268.00000000000006" y1="92.00000000000001" y2="92.00000000000001"/> - <line stroke="#000000" x1="124.00000000000003" x2="100.0" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#000000" x1="100.0" x2="124.00000000000003" y1="92.00000000000001" y2="92.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="100.0" x2="100.0" y1="92.00000000000001" y2="31.000000000000007"/> - <line stroke="#000000" x1="90.0" x2="100.0" y1="92.00000000000001" y2="92.00000000000001"/> - <line stroke="#000000" x1="90.0" x2="90.0" y1="31.000000000000007" y2="92.00000000000001"/> - <line stroke="#000000" x1="100.0" x2="90.0" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#000000" x1="117.00000000000001" x2="124.00000000000003" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#000000" x1="117.00000000000001" x2="117.00000000000001" y1="7.000000000000001" y2="31.000000000000007"/> - <line stroke="#000000" x1="124.00000000000003" x2="117.00000000000001" y1="7.000000000000001" y2="7.000000000000001"/> - <line stroke="#888888" x1="173.09090909090912" x2="176.59090909090912" y1="1.7500000000000002" y2="1.7500000000000002"/> - <line stroke="#888888" x1="176.59090909090912" x2="173.09090909090912" y1="1.7500000000000002" y2="5.25"/> - <line stroke="#888888" x1="173.09090909090912" x2="162.18181818181822" y1="5.25" y2="5.25"/> - <line stroke="#888888" x1="162.18181818181822" x2="158.6818181818182" y1="5.25" y2="1.7500000000000002"/> - <line stroke="#888888" x1="158.6818181818182" x2="162.18181818181822" y1="1.7500000000000002" y2="1.7500000000000002"/> - <line stroke="#888888" x1="145.8181818181818" x2="149.31818181818184" y1="1.7500000000000002" y2="1.7500000000000002"/> - <line stroke="#888888" x1="149.31818181818184" x2="145.8181818181818" y1="1.7500000000000002" y2="5.25"/> - <line stroke="#888888" x1="145.8181818181818" x2="134.90909090909093" y1="5.25" y2="5.25"/> - <line stroke="#888888" x1="134.90909090909093" x2="131.40909090909096" y1="5.25" y2="1.7500000000000002"/> - <line stroke="#888888" x1="131.40909090909096" x2="134.90909090909093" y1="1.7500000000000002" y2="1.7500000000000002"/> - <line stroke="#888888" x1="189.25000000000003" x2="185.75000000000003" y1="23.000000000000004" y2="23.000000000000004"/> - <line stroke="#888888" x1="185.75000000000003" x2="185.75000000000003" y1="23.000000000000004" y2="15.000000000000002"/> - <line stroke="#888888" x1="185.75000000000003" x2="189.25000000000003" y1="15.000000000000002" y2="15.000000000000002"/> - <line stroke="#888888" x1="132.0" x2="132.0" y1="82.50000000000001" y2="64.5"/> - <line stroke="#888888" x1="132.0" x2="162.00000000000003" y1="64.5" y2="64.5"/> - <line stroke="#888888" x1="162.00000000000003" x2="162.00000000000003" y1="64.5" y2="82.50000000000001"/> - <line stroke="#888888" x1="162.00000000000003" x2="132.0" y1="82.50000000000001" y2="82.50000000000001"/> - <line stroke="#888888" x1="205.40000000000003" x2="206.60000000000002" y1="41.0" y2="41.0"/> - <line stroke="#888888" x1="206.60000000000002" x2="206.60000000000002" y1="41.0" y2="82.0"/> - <line stroke="#888888" x1="206.60000000000002" x2="205.40000000000003" y1="82.0" y2="82.0"/> - <line stroke="#888888" x1="205.40000000000003" x2="205.40000000000003" y1="82.0" y2="41.0"/> - <line stroke="#888888" x1="185.4" x2="186.60000000000002" y1="41.5" y2="41.5"/> - <line stroke="#888888" x1="186.60000000000002" x2="186.60000000000002" y1="41.5" y2="71.5"/> - <line stroke="#888888" x1="186.60000000000002" x2="185.4" y1="71.5" y2="71.5"/> - <line stroke="#888888" x1="185.4" x2="185.4" y1="71.5" y2="41.5"/> - <line stroke="#888888" x1="200.25" x2="191.75000000000003" y1="38.75" y2="38.75"/> - <line stroke="#888888" x1="191.75000000000003" x2="191.75000000000003" y1="38.75" y2="38.25000000000001"/> - <line stroke="#888888" x1="191.75000000000003" x2="200.25" y1="38.25000000000001" y2="38.25000000000001"/> - <line stroke="#888888" x1="200.25" x2="200.25" y1="38.25000000000001" y2="38.75"/> - <line stroke="#888888" x1="191.75000000000003" x2="200.25" y1="86.5" y2="86.5"/> - <line stroke="#888888" x1="200.25" x2="200.25" y1="86.5" y2="87.00000000000001"/> - <line stroke="#888888" x1="200.25" x2="191.75000000000003" y1="87.00000000000001" y2="87.00000000000001"/> - <line stroke="#888888" x1="191.75000000000003" x2="191.75000000000003" y1="87.00000000000001" y2="86.5"/> - <line stroke="#888888" x1="223.0" x2="223.0" y1="45.0" y2="38.00000000000001"/> - <line stroke="#888888" x1="223.0" x2="243.00000000000003" y1="38.00000000000001" y2="38.00000000000001"/> - <line stroke="#888888" x1="243.00000000000003" x2="243.00000000000003" y1="38.00000000000001" y2="45.0"/> - <line stroke="#888888" x1="243.00000000000003" x2="223.0" y1="45.0" y2="45.0"/> - <line stroke="#888888" x1="230.0681818181818" x2="218.65909090909093" y1="36.5" y2="36.5"/> - <line stroke="#888888" x1="218.65909090909093" x2="218.65909090909093" y1="36.5" y2="36.00000000000001"/> - <line stroke="#888888" x1="218.65909090909093" x2="230.0681818181818" y1="36.00000000000001" y2="36.00000000000001"/> - <line stroke="#888888" x1="230.0681818181818" x2="230.0681818181818" y1="36.00000000000001" y2="36.5"/> - <line stroke="#888888" x1="257.3409090909092" x2="245.93181818181822" y1="36.5" y2="36.5"/> - <line stroke="#888888" x1="245.93181818181822" x2="245.93181818181822" y1="36.5" y2="36.00000000000001"/> - <line stroke="#888888" x1="245.93181818181822" x2="257.3409090909092" y1="36.00000000000001" y2="36.00000000000001"/> - <line stroke="#888888" x1="257.3409090909092" x2="257.3409090909092" y1="36.00000000000001" y2="36.5"/> - <line stroke="#888888" x1="260.25" x2="260.25" y1="53.431818181818194" y2="41.8409090909091"/> - <line stroke="#888888" x1="260.25" x2="260.75000000000006" y1="41.8409090909091" y2="41.8409090909091"/> - <line stroke="#888888" x1="260.75000000000006" x2="260.75000000000006" y1="41.8409090909091" y2="53.431818181818194"/> - <line stroke="#888888" x1="260.75000000000006" x2="260.25" y1="53.431818181818194" y2="53.431818181818194"/> - <line stroke="#888888" x1="260.25" x2="260.25" y1="81.15909090909092" y2="69.56818181818183"/> - <line stroke="#888888" x1="260.25" x2="260.75000000000006" y1="69.56818181818183" y2="69.56818181818183"/> - <line stroke="#888888" x1="260.75000000000006" x2="260.75000000000006" y1="69.56818181818183" y2="81.15909090909092"/> - <line stroke="#888888" x1="260.75000000000006" x2="260.25" y1="81.15909090909092" y2="81.15909090909092"/> - <line stroke="#888888" x1="101.40000000000002" x2="102.6" y1="41.0" y2="41.0"/> - <line stroke="#888888" x1="102.6" x2="102.6" y1="41.0" y2="82.0"/> - <line stroke="#888888" x1="102.6" x2="101.40000000000002" y1="82.0" y2="82.0"/> - <line stroke="#888888" x1="101.40000000000002" x2="101.40000000000002" y1="82.0" y2="41.0"/> - <line stroke="#888888" x1="121.40000000000002" x2="122.60000000000001" y1="41.5" y2="41.5"/> - <line stroke="#888888" x1="122.60000000000001" x2="122.60000000000001" y1="41.5" y2="71.5"/> - <line stroke="#888888" x1="122.60000000000001" x2="121.40000000000002" y1="71.5" y2="71.5"/> - <line stroke="#888888" x1="121.40000000000002" x2="121.40000000000002" y1="71.5" y2="41.5"/> - <line stroke="#888888" x1="116.25000000000001" x2="107.75000000000001" y1="38.75" y2="38.75"/> - <line stroke="#888888" x1="107.75000000000001" x2="107.75000000000001" y1="38.75" y2="38.25000000000001"/> - <line stroke="#888888" x1="107.75000000000001" x2="116.25000000000001" y1="38.25000000000001" y2="38.25000000000001"/> - <line stroke="#888888" x1="116.25000000000001" x2="116.25000000000001" y1="38.25000000000001" y2="38.75"/> - <line stroke="#888888" x1="107.75000000000001" x2="116.25000000000001" y1="86.5" y2="86.5"/> - <line stroke="#888888" x1="116.25000000000001" x2="116.25000000000001" y1="86.5" y2="87.00000000000001"/> - <line stroke="#888888" x1="116.25000000000001" x2="107.75000000000001" y1="87.00000000000001" y2="87.00000000000001"/> - <line stroke="#888888" x1="107.75000000000001" x2="107.75000000000001" y1="87.00000000000001" y2="86.5"/> - <line stroke="#888888" x1="92.50000000000001" x2="97.50000000000001" y1="42.0909090909091" y2="42.0909090909091"/> - <line stroke="#888888" x1="97.50000000000001" x2="97.50000000000001" y1="42.0909090909091" y2="53.181818181818194"/> - <line stroke="#888888" x1="97.50000000000001" x2="92.50000000000001" y1="53.181818181818194" y2="53.181818181818194"/> - <line stroke="#888888" x1="92.50000000000001" x2="97.50000000000001" y1="69.81818181818184" y2="69.81818181818184"/> - <line stroke="#888888" x1="97.50000000000001" x2="97.50000000000001" y1="69.81818181818184" y2="80.9090909090909"/> - <line stroke="#888888" x1="97.50000000000001" x2="92.50000000000001" y1="80.9090909090909" y2="80.9090909090909"/> - <line stroke="#888888" x1="118.75000000000001" x2="122.25000000000001" y1="15.000000000000002" y2="15.000000000000002"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="15.000000000000002" y2="23.000000000000004"/> - <line stroke="#888888" x1="122.25000000000001" x2="118.75000000000001" y1="23.000000000000004" y2="23.000000000000004"/> - <line stroke="#000000" x1="338.00000000000006" x2="278.0" y1="0.7997252767987035" y2="0.7997252767987035"/> - <line stroke="#000000" x1="338.00000000000006" x2="338.00000000000006" y1="37.200274723201304" y2="0.7997252767987035"/> - <line stroke="#000000" x1="278.0" x2="338.00000000000006" y1="37.200274723201304" y2="37.200274723201304"/> - <line stroke="#000000" x1="278.0" x2="278.0" y1="0.7997252767987035" y2="37.200274723201304"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="94.00000000000001" y1="66.600824" y2="66.600824"/> + <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="94.00000000000001" y1="66.600824" y2="90.60082400000002"/> + <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="34.0" y1="90.60082400000002" y2="90.60082400000002"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="34.0" y1="90.60082400000002" y2="66.600824"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="59.60082400000002" y2="66.600824"/> + <line stroke="#000000" x1="94.00000000000001" x2="34.0" y1="59.60082400000002" y2="59.60082400000002"/> + <line stroke="#000000" x1="94.00000000000001" x2="94.00000000000001" y1="66.600824" y2="59.60082400000002"/> + <line stroke="#000000" x1="101.00000000000001" x2="94.00000000000001" y1="66.600824" y2="66.600824"/> + <line stroke="#000000" x1="101.00000000000001" x2="101.00000000000001" y1="90.60082400000002" y2="66.600824"/> + <line stroke="#000000" x1="94.00000000000001" x2="101.00000000000001" y1="90.60082400000002" y2="90.60082400000002"/> + <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="94.00000000000001" y1="90.60082400000002" y2="151.600824"/> + <line stroke="#000000" x1="34.0" x2="94.00000000000001" y1="151.600824" y2="151.600824"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="34.0" y1="90.60082400000002" y2="151.600824"/> + <line stroke="#000000" x1="118.00000000000001" x2="94.00000000000001" y1="90.60082400000002" y2="90.60082400000002"/> + <line opacity="0.5" stroke="#0000ff" x1="118.00000000000001" x2="118.00000000000001" y1="90.60082400000002" y2="151.600824"/> + <line stroke="#000000" x1="94.00000000000001" x2="118.00000000000001" y1="151.600824" y2="151.600824"/> + <line stroke="#000000" x1="178.00000000000003" x2="118.00000000000001" y1="90.60082400000002" y2="90.60082400000002"/> + <line stroke="#000000" x1="178.00000000000003" x2="178.00000000000003" y1="151.600824" y2="90.60082400000002"/> + <line stroke="#000000" x1="118.00000000000001" x2="178.00000000000003" y1="151.600824" y2="151.600824"/> + <line stroke="#000000" x1="34.0" x2="10.000000000000002" y1="90.60082400000002" y2="90.60082400000002"/> + <line stroke="#000000" x1="10.000000000000002" x2="34.0" y1="151.600824" y2="151.600824"/> + <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="151.600824" y2="90.60082400000002"/> + <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="151.600824" y2="151.600824"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="90.60082400000002" y2="151.600824"/> + <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="90.60082400000002" y2="90.60082400000002"/> + <line stroke="#000000" x1="27.000000000000004" x2="34.0" y1="90.60082400000002" y2="90.60082400000002"/> + <line stroke="#000000" x1="27.000000000000004" x2="27.000000000000004" y1="66.600824" y2="90.60082400000002"/> + <line stroke="#000000" x1="34.0" x2="27.000000000000004" y1="66.600824" y2="66.600824"/> + <line stroke="#888888" x1="83.0909090909091" x2="86.59090909090911" y1="61.35082400000001" y2="61.35082400000001"/> + <line stroke="#888888" x1="86.59090909090911" x2="83.0909090909091" y1="61.35082400000001" y2="64.850824"/> + <line stroke="#888888" x1="83.0909090909091" x2="72.1818181818182" y1="64.850824" y2="64.850824"/> + <line stroke="#888888" x1="72.1818181818182" x2="68.6818181818182" y1="64.850824" y2="61.35082400000001"/> + <line stroke="#888888" x1="68.6818181818182" x2="72.1818181818182" y1="61.35082400000001" y2="61.35082400000001"/> + <line stroke="#888888" x1="55.818181818181834" x2="59.31818181818183" y1="61.35082400000001" y2="61.35082400000001"/> + <line stroke="#888888" x1="59.31818181818183" x2="55.818181818181834" y1="61.35082400000001" y2="64.850824"/> + <line stroke="#888888" x1="55.818181818181834" x2="44.90909090909092" y1="64.850824" y2="64.850824"/> + <line stroke="#888888" x1="44.90909090909092" x2="41.40909090909093" y1="64.850824" y2="61.35082400000001"/> + <line stroke="#888888" x1="41.40909090909093" x2="44.90909090909092" y1="61.35082400000001" y2="61.35082400000001"/> + <line stroke="#888888" x1="99.25000000000001" x2="95.75000000000001" y1="82.60082400000002" y2="82.60082400000002"/> + <line stroke="#888888" x1="95.75000000000001" x2="95.75000000000001" y1="82.60082400000002" y2="74.600824"/> + <line stroke="#888888" x1="95.75000000000001" x2="99.25000000000001" y1="74.600824" y2="74.600824"/> + <line stroke="#888888" x1="42.0" x2="42.0" y1="142.10082400000002" y2="124.10082400000002"/> + <line stroke="#888888" x1="42.0" x2="72.00000000000001" y1="124.10082400000002" y2="124.10082400000002"/> + <line stroke="#888888" x1="72.00000000000001" x2="72.00000000000001" y1="124.10082400000002" y2="142.10082400000002"/> + <line stroke="#888888" x1="72.00000000000001" x2="42.0" y1="142.10082400000002" y2="142.10082400000002"/> + <line stroke="#888888" x1="115.40000000000002" x2="116.60000000000001" y1="100.600824" y2="100.600824"/> + <line stroke="#888888" x1="116.60000000000001" x2="116.60000000000001" y1="100.600824" y2="141.60082400000002"/> + <line stroke="#888888" x1="116.60000000000001" x2="115.40000000000002" y1="141.60082400000002" y2="141.60082400000002"/> + <line stroke="#888888" x1="115.40000000000002" x2="115.40000000000002" y1="141.60082400000002" y2="100.600824"/> + <line stroke="#888888" x1="95.4" x2="96.60000000000001" y1="101.10082400000002" y2="101.10082400000002"/> + <line stroke="#888888" x1="96.60000000000001" x2="96.60000000000001" y1="101.10082400000002" y2="131.10082400000002"/> + <line stroke="#888888" x1="96.60000000000001" x2="95.4" y1="131.10082400000002" y2="131.10082400000002"/> + <line stroke="#888888" x1="95.4" x2="95.4" y1="131.10082400000002" y2="101.10082400000002"/> + <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="98.350824" y2="98.350824"/> + <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="98.350824" y2="97.85082400000002"/> + <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="97.85082400000002" y2="97.85082400000002"/> + <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="97.85082400000002" y2="98.350824"/> + <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="146.10082400000002" y2="146.10082400000002"/> + <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="146.10082400000002" y2="146.60082400000002"/> + <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="146.60082400000002" y2="146.60082400000002"/> + <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="146.60082400000002" y2="146.10082400000002"/> + <line stroke="#888888" x1="133.00000000000003" x2="133.00000000000003" y1="104.60082400000002" y2="97.60082400000002"/> + <line stroke="#888888" x1="133.00000000000003" x2="153.00000000000003" y1="97.60082400000002" y2="97.60082400000002"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="97.60082400000002" y2="104.60082400000002"/> + <line stroke="#888888" x1="153.00000000000003" x2="133.00000000000003" y1="104.60082400000002" y2="104.60082400000002"/> + <line stroke="#888888" x1="140.06818181818184" x2="128.65909090909093" y1="96.100824" y2="96.100824"/> + <line stroke="#888888" x1="128.65909090909093" x2="128.65909090909093" y1="96.100824" y2="95.60082400000002"/> + <line stroke="#888888" x1="128.65909090909093" x2="140.06818181818184" y1="95.60082400000002" y2="95.60082400000002"/> + <line stroke="#888888" x1="140.06818181818184" x2="140.06818181818184" y1="95.60082400000002" y2="96.100824"/> + <line stroke="#888888" x1="167.3409090909091" x2="155.93181818181822" y1="96.100824" y2="96.100824"/> + <line stroke="#888888" x1="155.93181818181822" x2="155.93181818181822" y1="96.100824" y2="95.60082400000002"/> + <line stroke="#888888" x1="155.93181818181822" x2="167.3409090909091" y1="95.60082400000002" y2="95.60082400000002"/> + <line stroke="#888888" x1="167.3409090909091" x2="167.3409090909091" y1="95.60082400000002" y2="96.100824"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="113.0326421818182" y2="101.44173309090911"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="101.44173309090911" y2="101.44173309090911"/> + <line stroke="#888888" x1="170.75" x2="170.75" y1="101.44173309090911" y2="113.0326421818182"/> + <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="113.0326421818182" y2="113.0326421818182"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="140.75991490909095" y2="129.16900581818186"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="129.16900581818186" y2="129.16900581818186"/> + <line stroke="#888888" x1="170.75" x2="170.75" y1="129.16900581818186" y2="140.75991490909095"/> + <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="140.75991490909095" y2="140.75991490909095"/> + <line stroke="#888888" x1="11.4" x2="12.600000000000001" y1="100.600824" y2="100.600824"/> + <line stroke="#888888" x1="12.600000000000001" x2="12.600000000000001" y1="100.600824" y2="141.60082400000002"/> + <line stroke="#888888" x1="12.600000000000001" x2="11.4" y1="141.60082400000002" y2="141.60082400000002"/> + <line stroke="#888888" x1="11.4" x2="11.4" y1="141.60082400000002" y2="100.600824"/> + <line stroke="#888888" x1="31.400000000000002" x2="32.60000000000001" y1="101.10082400000002" y2="101.10082400000002"/> + <line stroke="#888888" x1="32.60000000000001" x2="32.60000000000001" y1="101.10082400000002" y2="131.10082400000002"/> + <line stroke="#888888" x1="32.60000000000001" x2="31.400000000000002" y1="131.10082400000002" y2="131.10082400000002"/> + <line stroke="#888888" x1="31.400000000000002" x2="31.400000000000002" y1="131.10082400000002" y2="101.10082400000002"/> + <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="98.350824" y2="98.350824"/> + <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="98.350824" y2="97.85082400000002"/> + <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="97.85082400000002" y2="97.85082400000002"/> + <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="97.85082400000002" y2="98.350824"/> + <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="146.10082400000002" y2="146.10082400000002"/> + <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="146.10082400000002" y2="146.60082400000002"/> + <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="146.60082400000002" y2="146.60082400000002"/> + <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="146.60082400000002" y2="146.10082400000002"/> + <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="101.69173309090911" y2="101.69173309090911"/> + <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="101.69173309090911" y2="112.7826421818182"/> + <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="112.7826421818182" y2="112.7826421818182"/> + <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="129.41900581818183" y2="129.41900581818183"/> + <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="129.41900581818183" y2="140.50991490909095"/> + <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="140.50991490909095" y2="140.50991490909095"/> + <line stroke="#888888" x1="28.750000000000004" x2="32.25" y1="74.600824" y2="74.600824"/> + <line stroke="#888888" x1="32.25" x2="32.25" y1="74.600824" y2="82.60082400000002"/> + <line stroke="#888888" x1="32.25" x2="28.750000000000004" y1="82.60082400000002" y2="82.60082400000002"/> + <line opacity="0.25" stroke="#0000ff" x1="198.0" x2="258.0" y1="60.40054927679871" y2="60.40054927679871"/> + <line stroke="#000000" x1="258.0" x2="258.0" y1="96.80109872320132" y2="60.40054927679871"/> + <line stroke="#000000" x1="198.0" x2="258.0" y1="96.80109872320132" y2="96.80109872320132"/> + <line stroke="#000000" x1="198.0" x2="198.0" y1="60.40054927679871" y2="96.80109872320132"/> + <line opacity="0.25" stroke="#0000ff" x1="258.0" x2="198.0" y1="36.40054927679871" y2="36.40054927679871"/> + <line opacity="0.5" stroke="#0000ff" x1="258.0" x2="258.0" y1="36.40054927679871" y2="60.40054927679871"/> + <line opacity="0.5" stroke="#0000ff" x1="198.0" x2="198.0" y1="60.40054927679871" y2="36.40054927679871"/> + <line stroke="#000000" x1="198.0" x2="198.0" y1="-1.696038935961042e-07" y2="36.40054927679871"/> + <line stroke="#000000" x1="258.0" x2="198.0" y1="-1.696038935961042e-07" y2="-1.696038935961042e-07"/> + <line stroke="#000000" x1="258.0" x2="258.0" y1="36.40054927679871" y2="-1.696038935961042e-07"/> + <line stroke="#000000" x1="268.00000000000006" x2="258.0" y1="36.40054927679871" y2="36.40054927679871"/> + <line stroke="#000000" x1="268.00000000000006" x2="268.00000000000006" y1="60.40054927679871" y2="36.40054927679871"/> + <line stroke="#000000" x1="258.0" x2="268.00000000000006" y1="60.40054927679871" y2="60.40054927679871"/> + <line stroke="#000000" x1="188.00000000000003" x2="198.0" y1="60.40054927679871" y2="60.40054927679871"/> + <line stroke="#000000" x1="188.00000000000003" x2="188.00000000000003" y1="36.40054927679871" y2="60.40054927679871"/> + <line stroke="#000000" x1="198.0" x2="188.00000000000003" y1="36.40054927679871" y2="36.40054927679871"/> + <line stroke="#888888" x1="215.50000000000003" x2="226.50000000000003" y1="41.900549276798706" y2="41.900549276798706"/> + <line stroke="#888888" x1="226.50000000000003" x2="226.50000000000003" y1="41.900549276798706" y2="54.90054927679871"/> + <line stroke="#888888" x1="226.50000000000003" x2="215.50000000000003" y1="54.90054927679871" y2="54.90054927679871"/> + <line stroke="#888888" x1="215.50000000000003" x2="215.50000000000003" y1="54.90054927679871" y2="41.900549276798706"/> + <line stroke="#888888" x1="247.00000000000003" x2="253.00000000000003" y1="43.40054927679871" y2="43.40054927679871"/> + <line stroke="#888888" x1="253.00000000000003" x2="253.00000000000003" y1="43.40054927679871" y2="53.40054927679871"/> + <line stroke="#888888" x1="253.00000000000003" x2="247.00000000000003" y1="53.40054927679871" y2="53.40054927679871"/> + <line stroke="#888888" x1="247.00000000000003" x2="247.00000000000003" y1="53.40054927679871" y2="43.40054927679871"/> + <line stroke="#888888" x1="265.50000000000006" x2="260.50000000000006" y1="52.40054927679871" y2="52.40054927679871"/> + <line stroke="#888888" x1="260.50000000000006" x2="260.50000000000006" y1="52.40054927679871" y2="44.40054927679871"/> + <line stroke="#888888" x1="260.50000000000006" x2="265.50000000000006" y1="44.40054927679871" y2="44.40054927679871"/> + <line stroke="#888888" x1="190.50000000000003" x2="195.5" y1="44.40054927679871" y2="44.40054927679871"/> + <line stroke="#888888" x1="195.5" x2="195.5" y1="44.40054927679871" y2="52.40054927679871"/> + <line stroke="#888888" x1="195.5" x2="190.50000000000003" y1="52.40054927679871" y2="52.40054927679871"/> </svg> diff --git a/rocolib/output/Boat_StackMount/graph-autofold-default.dxf b/rocolib/output/Boat_StackMount/graph-autofold-default.dxf index b392f51a9b64685f87adecc5acfe77dabf56d6e7..60deefe25ed201ab4c6ac542f626f3067f629e62 100644 --- a/rocolib/output/Boat_StackMount/graph-autofold-default.dxf +++ b/rocolib/output/Boat_StackMount/graph-autofold-default.dxf @@ -493,7 +493,7 @@ TABLE 2 LAYER 70 -7 +8 0 LAYER 2 @@ -547,6 +547,16 @@ CONTINUOUS 0 LAYER 2 +90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 0 70 0 @@ -557,7 +567,7 @@ CONTINUOUS 0 LAYER 2 -90 +45 70 0 62 @@ -958,20 +968,22 @@ MVIEW } 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -70.00000000000001 +34.0 20 -7.000000000000001 +66.600824 30 0.0 11 -10.000000000000002 +94.00000000000001 21 -7.000000000000001 +66.600824 31 0.0 0 @@ -983,33 +995,35 @@ DOTTED 8 90 10 -70.00000000000001 +94.00000000000001 20 -7.000000000000001 +66.600824 30 0.0 11 -70.00000000000001 +94.00000000000001 21 -31.000000000000007 +90.60082400000002 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -10.000000000000002 +94.00000000000001 20 -31.000000000000007 +90.60082400000002 30 0.0 11 -70.00000000000001 +34.0 21 -31.000000000000007 +90.60082400000002 31 0.0 0 @@ -1021,15 +1035,15 @@ DOTTED 8 90 10 -10.000000000000002 +34.0 20 -31.000000000000007 +90.60082400000002 30 0.0 11 -10.000000000000002 +34.0 21 -7.000000000000001 +66.600824 31 0.0 0 @@ -1039,15 +1053,15 @@ LINE 8 cut 10 -80.00000000000001 +34.0 20 -7.000000000000001 +59.60082400000002 30 0.0 11 -70.00000000000001 +34.0 21 -7.000000000000001 +66.600824 31 0.0 0 @@ -1057,15 +1071,15 @@ LINE 8 cut 10 -80.00000000000001 +94.00000000000001 20 -31.000000000000007 +59.60082400000002 30 0.0 11 -80.00000000000001 +34.0 21 -7.000000000000001 +59.60082400000002 31 0.0 0 @@ -1075,15 +1089,15 @@ LINE 8 cut 10 -70.00000000000001 +94.00000000000001 20 -31.000000000000007 +66.600824 30 0.0 11 -80.00000000000001 +94.00000000000001 21 -31.000000000000007 +59.60082400000002 31 0.0 0 @@ -1093,15 +1107,15 @@ LINE 8 cut 10 -0.0 +101.00000000000001 20 -31.000000000000007 +66.600824 30 0.0 11 -10.000000000000002 +94.00000000000001 21 -31.000000000000007 +66.600824 31 0.0 0 @@ -1111,15 +1125,15 @@ LINE 8 cut 10 -0.0 +101.00000000000001 20 -7.000000000000001 +90.60082400000002 30 0.0 11 -0.0 +101.00000000000001 21 -31.000000000000007 +66.600824 31 0.0 0 @@ -1129,15 +1143,35 @@ LINE 8 cut 10 -10.000000000000002 +94.00000000000001 20 -7.000000000000001 +90.60082400000002 30 0.0 11 +101.00000000000001 + 21 +90.60082400000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +94.00000000000001 + 20 +90.60082400000002 + 30 0.0 + 11 +94.00000000000001 21 -7.000000000000001 +151.600824 31 0.0 0 @@ -1147,33 +1181,35 @@ LINE 8 cut 10 -27.500000000000004 +34.0 20 -12.5 +151.600824 30 0.0 11 -38.50000000000001 +94.00000000000001 21 -12.5 +151.600824 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -38.50000000000001 +34.0 20 -12.5 +90.60082400000002 30 0.0 11 -38.50000000000001 +34.0 21 -25.500000000000004 +151.600824 31 0.0 0 @@ -1183,33 +1219,35 @@ LINE 8 cut 10 -38.50000000000001 +118.00000000000001 20 -25.500000000000004 +90.60082400000002 30 0.0 11 -27.500000000000004 +94.00000000000001 21 -25.500000000000004 +90.60082400000002 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -27.500000000000004 +118.00000000000001 20 -25.500000000000004 +90.60082400000002 30 0.0 11 -27.500000000000004 +118.00000000000001 21 -12.5 +151.600824 31 0.0 0 @@ -1219,15 +1257,15 @@ LINE 8 cut 10 -59.00000000000001 +94.00000000000001 20 -14.000000000000002 +151.600824 30 0.0 11 -65.0 +118.00000000000001 21 -14.000000000000002 +151.600824 31 0.0 0 @@ -1237,15 +1275,15 @@ LINE 8 cut 10 -65.0 +178.00000000000003 20 -14.000000000000002 +90.60082400000002 30 0.0 11 -65.0 +118.00000000000001 21 -24.000000000000004 +90.60082400000002 31 0.0 0 @@ -1255,15 +1293,15 @@ LINE 8 cut 10 -65.0 +178.00000000000003 20 -24.000000000000004 +151.600824 30 0.0 11 -59.00000000000001 +178.00000000000003 21 -24.000000000000004 +90.60082400000002 31 0.0 0 @@ -1273,15 +1311,15 @@ LINE 8 cut 10 -59.00000000000001 +118.00000000000001 20 -24.000000000000004 +151.600824 30 0.0 11 -59.00000000000001 +178.00000000000003 21 -14.000000000000002 +151.600824 31 0.0 0 @@ -1291,15 +1329,15 @@ LINE 8 cut 10 -77.5 +34.0 20 -23.000000000000004 +90.60082400000002 30 0.0 11 -72.50000000000001 +10.000000000000002 21 -23.000000000000004 +90.60082400000002 31 0.0 0 @@ -1309,33 +1347,35 @@ LINE 8 cut 10 -72.50000000000001 +10.000000000000002 20 -23.000000000000004 +151.600824 30 0.0 11 -72.50000000000001 +34.0 21 -15.000000000000002 +151.600824 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -72.50000000000001 +10.000000000000002 20 -15.000000000000002 +151.600824 30 0.0 11 -77.5 +10.000000000000002 21 -15.000000000000002 +90.60082400000002 31 0.0 0 @@ -1345,15 +1385,15 @@ LINE 8 cut 10 -2.5000000000000004 +0.0 20 -15.000000000000002 +151.600824 30 0.0 11 -7.500000000000001 +10.000000000000002 21 -15.000000000000002 +151.600824 31 0.0 0 @@ -1363,15 +1403,15 @@ LINE 8 cut 10 -7.500000000000001 +0.0 20 -15.000000000000002 +90.60082400000002 30 0.0 11 -7.500000000000001 +0.0 21 -23.000000000000004 +151.600824 31 0.0 0 @@ -1381,95 +1421,87 @@ LINE 8 cut 10 -7.500000000000001 +10.000000000000002 20 -23.000000000000004 +90.60082400000002 30 0.0 11 -2.5000000000000004 +0.0 21 -23.000000000000004 +90.60082400000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -124.00000000000003 +27.000000000000004 20 -7.000000000000001 +90.60082400000002 30 0.0 11 -184.00000000000003 +34.0 21 -7.000000000000001 +90.60082400000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -184.00000000000003 +27.000000000000004 20 -7.000000000000001 +66.600824 30 0.0 11 -184.00000000000003 +27.000000000000004 21 -31.000000000000007 +90.60082400000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -184.00000000000003 +34.0 20 -31.000000000000007 +66.600824 30 0.0 11 -124.00000000000003 +27.000000000000004 21 -31.000000000000007 +66.600824 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -124.00000000000003 +83.0909090909091 20 -31.000000000000007 +61.35082400000001 30 0.0 11 -124.00000000000003 +86.59090909090911 21 -7.000000000000001 +61.35082400000001 31 0.0 0 @@ -1479,15 +1511,15 @@ LINE 8 cut 10 -124.00000000000003 +86.59090909090911 20 -0.0 +61.35082400000001 30 0.0 11 -124.00000000000003 +83.0909090909091 21 -7.000000000000001 +64.850824 31 0.0 0 @@ -1497,15 +1529,15 @@ LINE 8 cut 10 -184.00000000000003 +83.0909090909091 20 -0.0 +64.850824 30 0.0 11 -124.00000000000003 +72.1818181818182 21 -0.0 +64.850824 31 0.0 0 @@ -1515,15 +1547,15 @@ LINE 8 cut 10 -184.00000000000003 +72.1818181818182 20 -7.000000000000001 +64.850824 30 0.0 11 -184.00000000000003 +68.6818181818182 21 -0.0 +61.35082400000001 31 0.0 0 @@ -1533,15 +1565,15 @@ LINE 8 cut 10 -191.0 +68.6818181818182 20 -7.000000000000001 +61.35082400000001 30 0.0 11 -184.00000000000003 +72.1818181818182 21 -7.000000000000001 +61.35082400000001 31 0.0 0 @@ -1551,15 +1583,15 @@ LINE 8 cut 10 -191.0 +55.818181818181834 20 -31.000000000000007 +61.35082400000001 30 0.0 11 -191.0 +59.31818181818183 21 -7.000000000000001 +61.35082400000001 31 0.0 0 @@ -1569,35 +1601,33 @@ LINE 8 cut 10 -184.00000000000003 +59.31818181818183 20 -31.000000000000007 +61.35082400000001 30 0.0 11 -191.0 +55.818181818181834 21 -31.000000000000007 +64.850824 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -184.00000000000003 +55.818181818181834 20 -31.000000000000007 +64.850824 30 0.0 11 -184.00000000000003 +44.90909090909092 21 -92.00000000000001 +64.850824 31 0.0 0 @@ -1607,35 +1637,33 @@ LINE 8 cut 10 -124.00000000000003 +44.90909090909092 20 -92.00000000000001 +64.850824 30 0.0 11 -184.00000000000003 +41.40909090909093 21 -92.00000000000001 +61.35082400000001 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -124.00000000000003 +41.40909090909093 20 -31.000000000000007 +61.35082400000001 30 0.0 11 -124.00000000000003 +44.90909090909092 21 -92.00000000000001 +61.35082400000001 31 0.0 0 @@ -1645,35 +1673,33 @@ LINE 8 cut 10 -208.00000000000003 +99.25000000000001 20 -31.000000000000007 +82.60082400000002 30 0.0 11 -184.00000000000003 +95.75000000000001 21 -31.000000000000007 +82.60082400000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -208.00000000000003 +95.75000000000001 20 -31.000000000000007 +82.60082400000002 30 0.0 11 -208.00000000000003 +95.75000000000001 21 -92.00000000000001 +74.600824 31 0.0 0 @@ -1683,15 +1709,15 @@ LINE 8 cut 10 -184.00000000000003 +95.75000000000001 20 -92.00000000000001 +74.600824 30 0.0 11 -208.00000000000003 +99.25000000000001 21 -92.00000000000001 +74.600824 31 0.0 0 @@ -1701,15 +1727,15 @@ LINE 8 cut 10 -268.00000000000006 +42.0 20 -31.000000000000007 +142.10082400000002 30 0.0 11 -208.00000000000003 +42.0 21 -31.000000000000007 +124.10082400000002 31 0.0 0 @@ -1719,15 +1745,15 @@ LINE 8 cut 10 -268.00000000000006 +42.0 20 -92.00000000000001 +124.10082400000002 30 0.0 11 -268.00000000000006 +72.00000000000001 21 -31.000000000000007 +124.10082400000002 31 0.0 0 @@ -1737,15 +1763,15 @@ LINE 8 cut 10 -208.00000000000003 +72.00000000000001 20 -92.00000000000001 +124.10082400000002 30 0.0 11 -268.00000000000006 +72.00000000000001 21 -92.00000000000001 +142.10082400000002 31 0.0 0 @@ -1755,15 +1781,15 @@ LINE 8 cut 10 -124.00000000000003 +72.00000000000001 20 -31.000000000000007 +142.10082400000002 30 0.0 11 -100.0 +42.0 21 -31.000000000000007 +142.10082400000002 31 0.0 0 @@ -1773,35 +1799,33 @@ LINE 8 cut 10 -100.0 +115.40000000000002 20 -92.00000000000001 +100.600824 30 0.0 11 -124.00000000000003 +116.60000000000001 21 -92.00000000000001 +100.600824 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -100.0 +116.60000000000001 20 -92.00000000000001 +100.600824 30 0.0 11 -100.0 +116.60000000000001 21 -31.000000000000007 +141.60082400000002 31 0.0 0 @@ -1811,15 +1835,15 @@ LINE 8 cut 10 -90.0 +116.60000000000001 20 -92.00000000000001 +141.60082400000002 30 0.0 11 -100.0 +115.40000000000002 21 -92.00000000000001 +141.60082400000002 31 0.0 0 @@ -1829,15 +1853,15 @@ LINE 8 cut 10 -90.0 +115.40000000000002 20 -31.000000000000007 +141.60082400000002 30 0.0 11 -90.0 +115.40000000000002 21 -92.00000000000001 +100.600824 31 0.0 0 @@ -1847,15 +1871,15 @@ LINE 8 cut 10 -100.0 +95.4 20 -31.000000000000007 +101.10082400000002 30 0.0 11 -90.0 +96.60000000000001 21 -31.000000000000007 +101.10082400000002 31 0.0 0 @@ -1865,15 +1889,15 @@ LINE 8 cut 10 -117.00000000000001 +96.60000000000001 20 -31.000000000000007 +101.10082400000002 30 0.0 11 -124.00000000000003 +96.60000000000001 21 -31.000000000000007 +131.10082400000002 31 0.0 0 @@ -1883,15 +1907,15 @@ LINE 8 cut 10 -117.00000000000001 +96.60000000000001 20 -7.000000000000001 +131.10082400000002 30 0.0 11 -117.00000000000001 +95.4 21 -31.000000000000007 +131.10082400000002 31 0.0 0 @@ -1901,15 +1925,15 @@ LINE 8 cut 10 -124.00000000000003 +95.4 20 -7.000000000000001 +131.10082400000002 30 0.0 11 -117.00000000000001 +95.4 21 -7.000000000000001 +101.10082400000002 31 0.0 0 @@ -1919,15 +1943,15 @@ LINE 8 cut 10 -173.09090909090912 +110.25000000000001 20 -1.7500000000000002 +98.350824 30 0.0 11 -176.59090909090912 +101.75000000000001 21 -1.7500000000000002 +98.350824 31 0.0 0 @@ -1937,15 +1961,15 @@ LINE 8 cut 10 -176.59090909090912 +101.75000000000001 20 -1.7500000000000002 +98.350824 30 0.0 11 -173.09090909090912 +101.75000000000001 21 -5.25 +97.85082400000002 31 0.0 0 @@ -1955,15 +1979,15 @@ LINE 8 cut 10 -173.09090909090912 +101.75000000000001 20 -5.25 +97.85082400000002 30 0.0 11 -162.18181818181822 +110.25000000000001 21 -5.25 +97.85082400000002 31 0.0 0 @@ -1973,15 +1997,15 @@ LINE 8 cut 10 -162.18181818181822 +110.25000000000001 20 -5.25 +97.85082400000002 30 0.0 11 -158.6818181818182 +110.25000000000001 21 -1.7500000000000002 +98.350824 31 0.0 0 @@ -1991,15 +2015,15 @@ LINE 8 cut 10 -158.6818181818182 +101.75000000000001 20 -1.7500000000000002 +146.10082400000002 30 0.0 11 -162.18181818181822 +110.25000000000001 21 -1.7500000000000002 +146.10082400000002 31 0.0 0 @@ -2009,15 +2033,15 @@ LINE 8 cut 10 -145.8181818181818 +110.25000000000001 20 -1.7500000000000002 +146.10082400000002 30 0.0 11 -149.31818181818184 +110.25000000000001 21 -1.7500000000000002 +146.60082400000002 31 0.0 0 @@ -2027,15 +2051,15 @@ LINE 8 cut 10 -149.31818181818184 +110.25000000000001 20 -1.7500000000000002 +146.60082400000002 30 0.0 11 -145.8181818181818 +101.75000000000001 21 -5.25 +146.60082400000002 31 0.0 0 @@ -2045,15 +2069,15 @@ LINE 8 cut 10 -145.8181818181818 +101.75000000000001 20 -5.25 +146.60082400000002 30 0.0 11 -134.90909090909093 +101.75000000000001 21 -5.25 +146.10082400000002 31 0.0 0 @@ -2063,15 +2087,15 @@ LINE 8 cut 10 -134.90909090909093 +133.00000000000003 20 -5.25 +104.60082400000002 30 0.0 11 -131.40909090909096 +133.00000000000003 21 -1.7500000000000002 +97.60082400000002 31 0.0 0 @@ -2081,15 +2105,15 @@ LINE 8 cut 10 -131.40909090909096 +133.00000000000003 20 -1.7500000000000002 +97.60082400000002 30 0.0 11 -134.90909090909093 +153.00000000000003 21 -1.7500000000000002 +97.60082400000002 31 0.0 0 @@ -2099,15 +2123,15 @@ LINE 8 cut 10 -189.25000000000003 +153.00000000000003 20 -23.000000000000004 +97.60082400000002 30 0.0 11 -185.75000000000003 +153.00000000000003 21 -23.000000000000004 +104.60082400000002 31 0.0 0 @@ -2117,15 +2141,15 @@ LINE 8 cut 10 -185.75000000000003 +153.00000000000003 20 -23.000000000000004 +104.60082400000002 30 0.0 11 -185.75000000000003 +133.00000000000003 21 -15.000000000000002 +104.60082400000002 31 0.0 0 @@ -2135,15 +2159,15 @@ LINE 8 cut 10 -185.75000000000003 +140.06818181818184 20 -15.000000000000002 +96.100824 30 0.0 11 -189.25000000000003 +128.65909090909093 21 -15.000000000000002 +96.100824 31 0.0 0 @@ -2153,15 +2177,15 @@ LINE 8 cut 10 -132.0 +128.65909090909093 20 -82.50000000000001 +96.100824 30 0.0 11 -132.0 +128.65909090909093 21 -64.5 +95.60082400000002 31 0.0 0 @@ -2171,15 +2195,15 @@ LINE 8 cut 10 -132.0 +128.65909090909093 20 -64.5 +95.60082400000002 30 0.0 11 -162.00000000000003 +140.06818181818184 21 -64.5 +95.60082400000002 31 0.0 0 @@ -2189,15 +2213,15 @@ LINE 8 cut 10 -162.00000000000003 +140.06818181818184 20 -64.5 +95.60082400000002 30 0.0 11 -162.00000000000003 +140.06818181818184 21 -82.50000000000001 +96.100824 31 0.0 0 @@ -2207,15 +2231,15 @@ LINE 8 cut 10 -162.00000000000003 +167.3409090909091 20 -82.50000000000001 +96.100824 30 0.0 11 -132.0 +155.93181818181822 21 -82.50000000000001 +96.100824 31 0.0 0 @@ -2225,15 +2249,15 @@ LINE 8 cut 10 -205.40000000000003 +155.93181818181822 20 -41.0 +96.100824 30 0.0 11 -206.60000000000002 +155.93181818181822 21 -41.0 +95.60082400000002 31 0.0 0 @@ -2243,15 +2267,15 @@ LINE 8 cut 10 -206.60000000000002 +155.93181818181822 20 -41.0 +95.60082400000002 30 0.0 11 -206.60000000000002 +167.3409090909091 21 -82.0 +95.60082400000002 31 0.0 0 @@ -2261,15 +2285,15 @@ LINE 8 cut 10 -206.60000000000002 +167.3409090909091 20 -82.0 +95.60082400000002 30 0.0 11 -205.40000000000003 +167.3409090909091 21 -82.0 +96.100824 31 0.0 0 @@ -2279,15 +2303,15 @@ LINE 8 cut 10 -205.40000000000003 +170.25000000000003 20 -82.0 +113.0326421818182 30 0.0 11 -205.40000000000003 +170.25000000000003 21 -41.0 +101.44173309090911 31 0.0 0 @@ -2297,15 +2321,15 @@ LINE 8 cut 10 -185.4 +170.25000000000003 20 -41.5 +101.44173309090911 30 0.0 11 -186.60000000000002 +170.75 21 -41.5 +101.44173309090911 31 0.0 0 @@ -2315,15 +2339,15 @@ LINE 8 cut 10 -186.60000000000002 +170.75 20 -41.5 +101.44173309090911 30 0.0 11 -186.60000000000002 +170.75 21 -71.5 +113.0326421818182 31 0.0 0 @@ -2333,15 +2357,15 @@ LINE 8 cut 10 -186.60000000000002 +170.75 20 -71.5 +113.0326421818182 30 0.0 11 -185.4 +170.25000000000003 21 -71.5 +113.0326421818182 31 0.0 0 @@ -2351,15 +2375,15 @@ LINE 8 cut 10 -185.4 +170.25000000000003 20 -71.5 +140.75991490909095 30 0.0 11 -185.4 +170.25000000000003 21 -41.5 +129.16900581818186 31 0.0 0 @@ -2369,15 +2393,15 @@ LINE 8 cut 10 -200.25 +170.25000000000003 20 -38.75 +129.16900581818186 30 0.0 11 -191.75000000000003 +170.75 21 -38.75 +129.16900581818186 31 0.0 0 @@ -2387,15 +2411,15 @@ LINE 8 cut 10 -191.75000000000003 +170.75 20 -38.75 +129.16900581818186 30 0.0 11 -191.75000000000003 +170.75 21 -38.25000000000001 +140.75991490909095 31 0.0 0 @@ -2405,15 +2429,15 @@ LINE 8 cut 10 -191.75000000000003 +170.75 20 -38.25000000000001 +140.75991490909095 30 0.0 11 -200.25 +170.25000000000003 21 -38.25000000000001 +140.75991490909095 31 0.0 0 @@ -2423,15 +2447,15 @@ LINE 8 cut 10 -200.25 +11.4 20 -38.25000000000001 +100.600824 30 0.0 11 -200.25 +12.600000000000001 21 -38.75 +100.600824 31 0.0 0 @@ -2441,15 +2465,15 @@ LINE 8 cut 10 -191.75000000000003 +12.600000000000001 20 -86.5 +100.600824 30 0.0 11 -200.25 +12.600000000000001 21 -86.5 +141.60082400000002 31 0.0 0 @@ -2459,15 +2483,15 @@ LINE 8 cut 10 -200.25 +12.600000000000001 20 -86.5 +141.60082400000002 30 0.0 11 -200.25 +11.4 21 -87.00000000000001 +141.60082400000002 31 0.0 0 @@ -2477,15 +2501,15 @@ LINE 8 cut 10 -200.25 +11.4 20 -87.00000000000001 +141.60082400000002 30 0.0 11 -191.75000000000003 +11.4 21 -87.00000000000001 +100.600824 31 0.0 0 @@ -2495,15 +2519,15 @@ LINE 8 cut 10 -191.75000000000003 +31.400000000000002 20 -87.00000000000001 +101.10082400000002 30 0.0 11 -191.75000000000003 +32.60000000000001 21 -86.5 +101.10082400000002 31 0.0 0 @@ -2513,15 +2537,15 @@ LINE 8 cut 10 -223.0 +32.60000000000001 20 -45.0 +101.10082400000002 30 0.0 11 -223.0 +32.60000000000001 21 -38.00000000000001 +131.10082400000002 31 0.0 0 @@ -2531,15 +2555,15 @@ LINE 8 cut 10 -223.0 +32.60000000000001 20 -38.00000000000001 +131.10082400000002 30 0.0 11 -243.00000000000003 +31.400000000000002 21 -38.00000000000001 +131.10082400000002 31 0.0 0 @@ -2549,15 +2573,15 @@ LINE 8 cut 10 -243.00000000000003 +31.400000000000002 20 -38.00000000000001 +131.10082400000002 30 0.0 11 -243.00000000000003 +31.400000000000002 21 -45.0 +101.10082400000002 31 0.0 0 @@ -2567,15 +2591,15 @@ LINE 8 cut 10 -243.00000000000003 +26.250000000000004 20 -45.0 +98.350824 30 0.0 11 -223.0 +17.750000000000004 21 -45.0 +98.350824 31 0.0 0 @@ -2585,15 +2609,15 @@ LINE 8 cut 10 -230.0681818181818 +17.750000000000004 20 -36.5 +98.350824 30 0.0 11 -218.65909090909093 +17.750000000000004 21 -36.5 +97.85082400000002 31 0.0 0 @@ -2603,15 +2627,15 @@ LINE 8 cut 10 -218.65909090909093 +17.750000000000004 20 -36.5 +97.85082400000002 30 0.0 11 -218.65909090909093 +26.250000000000004 21 -36.00000000000001 +97.85082400000002 31 0.0 0 @@ -2621,15 +2645,15 @@ LINE 8 cut 10 -218.65909090909093 +26.250000000000004 20 -36.00000000000001 +97.85082400000002 30 0.0 11 -230.0681818181818 +26.250000000000004 21 -36.00000000000001 +98.350824 31 0.0 0 @@ -2639,15 +2663,15 @@ LINE 8 cut 10 -230.0681818181818 +17.750000000000004 20 -36.00000000000001 +146.10082400000002 30 0.0 11 -230.0681818181818 +26.250000000000004 21 -36.5 +146.10082400000002 31 0.0 0 @@ -2657,15 +2681,15 @@ LINE 8 cut 10 -257.3409090909092 +26.250000000000004 20 -36.5 +146.10082400000002 30 0.0 11 -245.93181818181822 +26.250000000000004 21 -36.5 +146.60082400000002 31 0.0 0 @@ -2675,15 +2699,15 @@ LINE 8 cut 10 -245.93181818181822 +26.250000000000004 20 -36.5 +146.60082400000002 30 0.0 11 -245.93181818181822 +17.750000000000004 21 -36.00000000000001 +146.60082400000002 31 0.0 0 @@ -2693,15 +2717,15 @@ LINE 8 cut 10 -245.93181818181822 +17.750000000000004 20 -36.00000000000001 +146.60082400000002 30 0.0 11 -257.3409090909092 +17.750000000000004 21 -36.00000000000001 +146.10082400000002 31 0.0 0 @@ -2711,15 +2735,15 @@ LINE 8 cut 10 -257.3409090909092 +2.5000000000000004 20 -36.00000000000001 +101.69173309090911 30 0.0 11 -257.3409090909092 +7.500000000000001 21 -36.5 +101.69173309090911 31 0.0 0 @@ -2729,15 +2753,15 @@ LINE 8 cut 10 -260.25 +7.500000000000001 20 -53.431818181818194 +101.69173309090911 30 0.0 11 -260.25 +7.500000000000001 21 -41.8409090909091 +112.7826421818182 31 0.0 0 @@ -2747,15 +2771,15 @@ LINE 8 cut 10 -260.25 +7.500000000000001 20 -41.8409090909091 +112.7826421818182 30 0.0 11 -260.75000000000006 +2.5000000000000004 21 -41.8409090909091 +112.7826421818182 31 0.0 0 @@ -2765,15 +2789,15 @@ LINE 8 cut 10 -260.75000000000006 +2.5000000000000004 20 -41.8409090909091 +129.41900581818183 30 0.0 11 -260.75000000000006 +7.500000000000001 21 -53.431818181818194 +129.41900581818183 31 0.0 0 @@ -2783,15 +2807,15 @@ LINE 8 cut 10 -260.75000000000006 +7.500000000000001 20 -53.431818181818194 +129.41900581818183 30 0.0 11 -260.25 +7.500000000000001 21 -53.431818181818194 +140.50991490909095 31 0.0 0 @@ -2801,15 +2825,15 @@ LINE 8 cut 10 -260.25 +7.500000000000001 20 -81.15909090909092 +140.50991490909095 30 0.0 11 -260.25 +2.5000000000000004 21 -69.56818181818183 +140.50991490909095 31 0.0 0 @@ -2819,15 +2843,15 @@ LINE 8 cut 10 -260.25 +28.750000000000004 20 -69.56818181818183 +74.600824 30 0.0 11 -260.75000000000006 +32.25 21 -69.56818181818183 +74.600824 31 0.0 0 @@ -2837,15 +2861,15 @@ LINE 8 cut 10 -260.75000000000006 +32.25 20 -69.56818181818183 +74.600824 30 0.0 11 -260.75000000000006 +32.25 21 -81.15909090909092 +82.60082400000002 31 0.0 0 @@ -2855,33 +2879,35 @@ LINE 8 cut 10 -260.75000000000006 +32.25 20 -81.15909090909092 +82.60082400000002 30 0.0 11 -260.25 +28.750000000000004 21 -81.15909090909092 +82.60082400000002 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +45 10 -101.40000000000002 +198.0 20 -41.0 +60.40054927679871 30 0.0 11 -102.6 +258.0 21 -41.0 +60.40054927679871 31 0.0 0 @@ -2891,15 +2917,15 @@ LINE 8 cut 10 -102.6 +258.0 20 -41.0 +96.80109872320132 30 0.0 11 -102.6 +258.0 21 -82.0 +60.40054927679871 31 0.0 0 @@ -2909,15 +2935,15 @@ LINE 8 cut 10 -102.6 +198.0 20 -82.0 +96.80109872320132 30 0.0 11 -101.40000000000002 +258.0 21 -82.0 +96.80109872320132 31 0.0 0 @@ -2927,51 +2953,75 @@ LINE 8 cut 10 -101.40000000000002 +198.0 20 -82.0 +60.40054927679871 30 0.0 11 -101.40000000000002 +198.0 21 -41.0 +96.80109872320132 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +45 + 10 +258.0 + 20 +36.40054927679871 + 30 +0.0 + 11 +198.0 + 21 +36.40054927679871 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 10 -121.40000000000002 +258.0 20 -41.5 +36.40054927679871 30 0.0 11 -122.60000000000001 +258.0 21 -41.5 +60.40054927679871 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -122.60000000000001 +198.0 20 -41.5 +60.40054927679871 30 0.0 11 -122.60000000000001 +198.0 21 -71.5 +36.40054927679871 31 0.0 0 @@ -2981,15 +3031,15 @@ LINE 8 cut 10 -122.60000000000001 +198.0 20 -71.5 +-1.696038935961042e-07 30 0.0 11 -121.40000000000002 +198.0 21 -71.5 +36.40054927679871 31 0.0 0 @@ -2999,15 +3049,15 @@ LINE 8 cut 10 -121.40000000000002 +258.0 20 -71.5 +-1.696038935961042e-07 30 0.0 11 -121.40000000000002 +198.0 21 -41.5 +-1.696038935961042e-07 31 0.0 0 @@ -3017,15 +3067,15 @@ LINE 8 cut 10 -116.25000000000001 +258.0 20 -38.75 +36.40054927679871 30 0.0 11 -107.75000000000001 +258.0 21 -38.75 +-1.696038935961042e-07 31 0.0 0 @@ -3035,15 +3085,15 @@ LINE 8 cut 10 -107.75000000000001 +268.00000000000006 20 -38.75 +36.40054927679871 30 0.0 11 -107.75000000000001 +258.0 21 -38.25000000000001 +36.40054927679871 31 0.0 0 @@ -3053,15 +3103,15 @@ LINE 8 cut 10 -107.75000000000001 +268.00000000000006 20 -38.25000000000001 +60.40054927679871 30 0.0 11 -116.25000000000001 +268.00000000000006 21 -38.25000000000001 +36.40054927679871 31 0.0 0 @@ -3071,15 +3121,15 @@ LINE 8 cut 10 -116.25000000000001 +258.0 20 -38.25000000000001 +60.40054927679871 30 0.0 11 -116.25000000000001 +268.00000000000006 21 -38.75 +60.40054927679871 31 0.0 0 @@ -3089,15 +3139,15 @@ LINE 8 cut 10 -107.75000000000001 +188.00000000000003 20 -86.5 +60.40054927679871 30 0.0 11 -116.25000000000001 +198.0 21 -86.5 +60.40054927679871 31 0.0 0 @@ -3107,15 +3157,15 @@ LINE 8 cut 10 -116.25000000000001 +188.00000000000003 20 -86.5 +36.40054927679871 30 0.0 11 -116.25000000000001 +188.00000000000003 21 -87.00000000000001 +60.40054927679871 31 0.0 0 @@ -3125,15 +3175,15 @@ LINE 8 cut 10 -116.25000000000001 +198.0 20 -87.00000000000001 +36.40054927679871 30 0.0 11 -107.75000000000001 +188.00000000000003 21 -87.00000000000001 +36.40054927679871 31 0.0 0 @@ -3143,15 +3193,15 @@ LINE 8 cut 10 -107.75000000000001 +215.50000000000003 20 -87.00000000000001 +41.900549276798706 30 0.0 11 -107.75000000000001 +226.50000000000003 21 -86.5 +41.900549276798706 31 0.0 0 @@ -3161,15 +3211,15 @@ LINE 8 cut 10 -92.50000000000001 +226.50000000000003 20 -42.0909090909091 +41.900549276798706 30 0.0 11 -97.50000000000001 +226.50000000000003 21 -42.0909090909091 +54.90054927679871 31 0.0 0 @@ -3179,15 +3229,15 @@ LINE 8 cut 10 -97.50000000000001 +226.50000000000003 20 -42.0909090909091 +54.90054927679871 30 0.0 11 -97.50000000000001 +215.50000000000003 21 -53.181818181818194 +54.90054927679871 31 0.0 0 @@ -3197,15 +3247,15 @@ LINE 8 cut 10 -97.50000000000001 +215.50000000000003 20 -53.181818181818194 +54.90054927679871 30 0.0 11 -92.50000000000001 +215.50000000000003 21 -53.181818181818194 +41.900549276798706 31 0.0 0 @@ -3215,15 +3265,15 @@ LINE 8 cut 10 -92.50000000000001 +247.00000000000003 20 -69.81818181818184 +43.40054927679871 30 0.0 11 -97.50000000000001 +253.00000000000003 21 -69.81818181818184 +43.40054927679871 31 0.0 0 @@ -3233,15 +3283,15 @@ LINE 8 cut 10 -97.50000000000001 +253.00000000000003 20 -69.81818181818184 +43.40054927679871 30 0.0 11 -97.50000000000001 +253.00000000000003 21 -80.9090909090909 +53.40054927679871 31 0.0 0 @@ -3251,15 +3301,15 @@ LINE 8 cut 10 -97.50000000000001 +253.00000000000003 20 -80.9090909090909 +53.40054927679871 30 0.0 11 -92.50000000000001 +247.00000000000003 21 -80.9090909090909 +53.40054927679871 31 0.0 0 @@ -3269,15 +3319,15 @@ LINE 8 cut 10 -118.75000000000001 +247.00000000000003 20 -15.000000000000002 +53.40054927679871 30 0.0 11 -122.25000000000001 +247.00000000000003 21 -15.000000000000002 +43.40054927679871 31 0.0 0 @@ -3287,15 +3337,15 @@ LINE 8 cut 10 -122.25000000000001 +265.50000000000006 20 -15.000000000000002 +52.40054927679871 30 0.0 11 -122.25000000000001 +260.50000000000006 21 -23.000000000000004 +52.40054927679871 31 0.0 0 @@ -3305,15 +3355,15 @@ LINE 8 cut 10 -122.25000000000001 +260.50000000000006 20 -23.000000000000004 +52.40054927679871 30 0.0 11 -118.75000000000001 +260.50000000000006 21 -23.000000000000004 +44.40054927679871 31 0.0 0 @@ -3323,15 +3373,15 @@ LINE 8 cut 10 -338.00000000000006 +260.50000000000006 20 -0.7997252767987035 +44.40054927679871 30 0.0 11 -278.0 +265.50000000000006 21 -0.7997252767987035 +44.40054927679871 31 0.0 0 @@ -3341,15 +3391,15 @@ LINE 8 cut 10 -338.00000000000006 +190.50000000000003 20 -37.200274723201304 +44.40054927679871 30 0.0 11 -338.00000000000006 +195.5 21 -0.7997252767987035 +44.40054927679871 31 0.0 0 @@ -3359,15 +3409,15 @@ LINE 8 cut 10 -278.0 +195.5 20 -37.200274723201304 +44.40054927679871 30 0.0 11 -338.00000000000006 +195.5 21 -37.200274723201304 +52.40054927679871 31 0.0 0 @@ -3377,15 +3427,15 @@ LINE 8 cut 10 -278.0 +195.5 20 -0.7997252767987035 +52.40054927679871 30 0.0 11 -278.0 +190.50000000000003 21 -37.200274723201304 +52.40054927679871 31 0.0 0 diff --git a/rocolib/output/Boat_StackMount/graph-autofold-graph.dxf b/rocolib/output/Boat_StackMount/graph-autofold-graph.dxf index 88a6ffabcf44fdbb6c9c90eae4c9d892b17cb160..33b0a2f670af70ebe1d24804550a1c191bc80a60 100644 --- a/rocolib/output/Boat_StackMount/graph-autofold-graph.dxf +++ b/rocolib/output/Boat_StackMount/graph-autofold-graph.dxf @@ -938,20 +938,22 @@ MVIEW } 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -70.00000000000001 +34.0 20 -7.000000000000001 +66.600824 30 0.0 11 -10.000000000000002 +94.00000000000001 21 -7.000000000000001 +66.600824 31 0.0 0 @@ -963,33 +965,35 @@ DOTTED 8 0 10 -70.00000000000001 +94.00000000000001 20 -7.000000000000001 +66.600824 30 0.0 11 -70.00000000000001 +94.00000000000001 21 -31.000000000000007 +90.60082400000002 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -10.000000000000002 +94.00000000000001 20 -31.000000000000007 +90.60082400000002 30 0.0 11 -70.00000000000001 +34.0 21 -31.000000000000007 +90.60082400000002 31 0.0 0 @@ -1001,15 +1005,15 @@ DOTTED 8 0 10 -10.000000000000002 +34.0 20 -31.000000000000007 +90.60082400000002 30 0.0 11 -10.000000000000002 +34.0 21 -7.000000000000001 +66.600824 31 0.0 0 @@ -1019,15 +1023,15 @@ LINE 8 0 10 -80.00000000000001 +34.0 20 -7.000000000000001 +59.60082400000002 30 0.0 11 -70.00000000000001 +34.0 21 -7.000000000000001 +66.600824 31 0.0 0 @@ -1037,15 +1041,15 @@ LINE 8 0 10 -80.00000000000001 +94.00000000000001 20 -31.000000000000007 +59.60082400000002 30 0.0 11 -80.00000000000001 +34.0 21 -7.000000000000001 +59.60082400000002 31 0.0 0 @@ -1055,15 +1059,15 @@ LINE 8 0 10 -70.00000000000001 +94.00000000000001 20 -31.000000000000007 +66.600824 30 0.0 11 -80.00000000000001 +94.00000000000001 21 -31.000000000000007 +59.60082400000002 31 0.0 0 @@ -1073,15 +1077,15 @@ LINE 8 0 10 -0.0 +101.00000000000001 20 -31.000000000000007 +66.600824 30 0.0 11 -10.000000000000002 +94.00000000000001 21 -31.000000000000007 +66.600824 31 0.0 0 @@ -1091,15 +1095,15 @@ LINE 8 0 10 -0.0 +101.00000000000001 20 -7.000000000000001 +90.60082400000002 30 0.0 11 -0.0 +101.00000000000001 21 -31.000000000000007 +66.600824 31 0.0 0 @@ -1109,15 +1113,35 @@ LINE 8 0 10 -10.000000000000002 +94.00000000000001 20 -7.000000000000001 +90.60082400000002 30 0.0 11 +101.00000000000001 + 21 +90.60082400000002 + 31 0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +94.00000000000001 + 20 +90.60082400000002 + 30 +0.0 + 11 +94.00000000000001 21 -7.000000000000001 +151.600824 31 0.0 0 @@ -1127,33 +1151,35 @@ LINE 8 0 10 -27.500000000000004 +34.0 20 -12.5 +151.600824 30 0.0 11 -38.50000000000001 +94.00000000000001 21 -12.5 +151.600824 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -38.50000000000001 +34.0 20 -12.5 +90.60082400000002 30 0.0 11 -38.50000000000001 +34.0 21 -25.500000000000004 +151.600824 31 0.0 0 @@ -1163,33 +1189,35 @@ LINE 8 0 10 -38.50000000000001 +118.00000000000001 20 -25.500000000000004 +90.60082400000002 30 0.0 11 -27.500000000000004 +94.00000000000001 21 -25.500000000000004 +90.60082400000002 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -27.500000000000004 +118.00000000000001 20 -25.500000000000004 +90.60082400000002 30 0.0 11 -27.500000000000004 +118.00000000000001 21 -12.5 +151.600824 31 0.0 0 @@ -1199,15 +1227,15 @@ LINE 8 0 10 -59.00000000000001 +94.00000000000001 20 -14.000000000000002 +151.600824 30 0.0 11 -65.0 +118.00000000000001 21 -14.000000000000002 +151.600824 31 0.0 0 @@ -1217,15 +1245,15 @@ LINE 8 0 10 -65.0 +178.00000000000003 20 -14.000000000000002 +90.60082400000002 30 0.0 11 -65.0 +118.00000000000001 21 -24.000000000000004 +90.60082400000002 31 0.0 0 @@ -1235,15 +1263,15 @@ LINE 8 0 10 -65.0 +178.00000000000003 20 -24.000000000000004 +151.600824 30 0.0 11 -59.00000000000001 +178.00000000000003 21 -24.000000000000004 +90.60082400000002 31 0.0 0 @@ -1253,15 +1281,15 @@ LINE 8 0 10 -59.00000000000001 +118.00000000000001 20 -24.000000000000004 +151.600824 30 0.0 11 -59.00000000000001 +178.00000000000003 21 -14.000000000000002 +151.600824 31 0.0 0 @@ -1271,15 +1299,15 @@ LINE 8 0 10 -77.5 +34.0 20 -23.000000000000004 +90.60082400000002 30 0.0 11 -72.50000000000001 +10.000000000000002 21 -23.000000000000004 +90.60082400000002 31 0.0 0 @@ -1289,33 +1317,35 @@ LINE 8 0 10 -72.50000000000001 +10.000000000000002 20 -23.000000000000004 +151.600824 30 0.0 11 -72.50000000000001 +34.0 21 -15.000000000000002 +151.600824 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -72.50000000000001 +10.000000000000002 20 -15.000000000000002 +151.600824 30 0.0 11 -77.5 +10.000000000000002 21 -15.000000000000002 +90.60082400000002 31 0.0 0 @@ -1325,15 +1355,15 @@ LINE 8 0 10 -2.5000000000000004 +0.0 20 -15.000000000000002 +151.600824 30 0.0 11 -7.500000000000001 +10.000000000000002 21 -15.000000000000002 +151.600824 31 0.0 0 @@ -1343,15 +1373,15 @@ LINE 8 0 10 -7.500000000000001 +0.0 20 -15.000000000000002 +90.60082400000002 30 0.0 11 -7.500000000000001 +0.0 21 -23.000000000000004 +151.600824 31 0.0 0 @@ -1361,95 +1391,87 @@ LINE 8 0 10 -7.500000000000001 +10.000000000000002 20 -23.000000000000004 +90.60082400000002 30 0.0 11 -2.5000000000000004 +0.0 21 -23.000000000000004 +90.60082400000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -124.00000000000003 +27.000000000000004 20 -7.000000000000001 +90.60082400000002 30 0.0 11 -184.00000000000003 +34.0 21 -7.000000000000001 +90.60082400000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -184.00000000000003 +27.000000000000004 20 -7.000000000000001 +66.600824 30 0.0 11 -184.00000000000003 +27.000000000000004 21 -31.000000000000007 +90.60082400000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -184.00000000000003 +34.0 20 -31.000000000000007 +66.600824 30 0.0 11 -124.00000000000003 +27.000000000000004 21 -31.000000000000007 +66.600824 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -124.00000000000003 +83.0909090909091 20 -31.000000000000007 +61.35082400000001 30 0.0 11 -124.00000000000003 +86.59090909090911 21 -7.000000000000001 +61.35082400000001 31 0.0 0 @@ -1459,15 +1481,15 @@ LINE 8 0 10 -124.00000000000003 +86.59090909090911 20 -0.0 +61.35082400000001 30 0.0 11 -124.00000000000003 +83.0909090909091 21 -7.000000000000001 +64.850824 31 0.0 0 @@ -1477,15 +1499,15 @@ LINE 8 0 10 -184.00000000000003 +83.0909090909091 20 -0.0 +64.850824 30 0.0 11 -124.00000000000003 +72.1818181818182 21 -0.0 +64.850824 31 0.0 0 @@ -1495,15 +1517,15 @@ LINE 8 0 10 -184.00000000000003 +72.1818181818182 20 -7.000000000000001 +64.850824 30 0.0 11 -184.00000000000003 +68.6818181818182 21 -0.0 +61.35082400000001 31 0.0 0 @@ -1513,15 +1535,15 @@ LINE 8 0 10 -191.0 +68.6818181818182 20 -7.000000000000001 +61.35082400000001 30 0.0 11 -184.00000000000003 +72.1818181818182 21 -7.000000000000001 +61.35082400000001 31 0.0 0 @@ -1531,15 +1553,15 @@ LINE 8 0 10 -191.0 +55.818181818181834 20 -31.000000000000007 +61.35082400000001 30 0.0 11 -191.0 +59.31818181818183 21 -7.000000000000001 +61.35082400000001 31 0.0 0 @@ -1549,35 +1571,33 @@ LINE 8 0 10 -184.00000000000003 +59.31818181818183 20 -31.000000000000007 +61.35082400000001 30 0.0 11 -191.0 +55.818181818181834 21 -31.000000000000007 +64.850824 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -184.00000000000003 +55.818181818181834 20 -31.000000000000007 +64.850824 30 0.0 11 -184.00000000000003 +44.90909090909092 21 -92.00000000000001 +64.850824 31 0.0 0 @@ -1587,35 +1607,33 @@ LINE 8 0 10 -124.00000000000003 +44.90909090909092 20 -92.00000000000001 +64.850824 30 0.0 11 -184.00000000000003 +41.40909090909093 21 -92.00000000000001 +61.35082400000001 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -124.00000000000003 +41.40909090909093 20 -31.000000000000007 +61.35082400000001 30 0.0 11 -124.00000000000003 +44.90909090909092 21 -92.00000000000001 +61.35082400000001 31 0.0 0 @@ -1625,35 +1643,33 @@ LINE 8 0 10 -208.00000000000003 +99.25000000000001 20 -31.000000000000007 +82.60082400000002 30 0.0 11 -184.00000000000003 +95.75000000000001 21 -31.000000000000007 +82.60082400000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -208.00000000000003 +95.75000000000001 20 -31.000000000000007 +82.60082400000002 30 0.0 11 -208.00000000000003 +95.75000000000001 21 -92.00000000000001 +74.600824 31 0.0 0 @@ -1663,15 +1679,15 @@ LINE 8 0 10 -184.00000000000003 +95.75000000000001 20 -92.00000000000001 +74.600824 30 0.0 11 -208.00000000000003 +99.25000000000001 21 -92.00000000000001 +74.600824 31 0.0 0 @@ -1681,15 +1697,15 @@ LINE 8 0 10 -268.00000000000006 +42.0 20 -31.000000000000007 +142.10082400000002 30 0.0 11 -208.00000000000003 +42.0 21 -31.000000000000007 +124.10082400000002 31 0.0 0 @@ -1699,15 +1715,15 @@ LINE 8 0 10 -268.00000000000006 +42.0 20 -92.00000000000001 +124.10082400000002 30 0.0 11 -268.00000000000006 +72.00000000000001 21 -31.000000000000007 +124.10082400000002 31 0.0 0 @@ -1717,15 +1733,15 @@ LINE 8 0 10 -208.00000000000003 +72.00000000000001 20 -92.00000000000001 +124.10082400000002 30 0.0 11 -268.00000000000006 +72.00000000000001 21 -92.00000000000001 +142.10082400000002 31 0.0 0 @@ -1735,15 +1751,15 @@ LINE 8 0 10 -124.00000000000003 +72.00000000000001 20 -31.000000000000007 +142.10082400000002 30 0.0 11 -100.0 +42.0 21 -31.000000000000007 +142.10082400000002 31 0.0 0 @@ -1753,35 +1769,33 @@ LINE 8 0 10 -100.0 +115.40000000000002 20 -92.00000000000001 +100.600824 30 0.0 11 -124.00000000000003 +116.60000000000001 21 -92.00000000000001 +100.600824 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -100.0 +116.60000000000001 20 -92.00000000000001 +100.600824 30 0.0 11 -100.0 +116.60000000000001 21 -31.000000000000007 +141.60082400000002 31 0.0 0 @@ -1791,15 +1805,15 @@ LINE 8 0 10 -90.0 +116.60000000000001 20 -92.00000000000001 +141.60082400000002 30 0.0 11 -100.0 +115.40000000000002 21 -92.00000000000001 +141.60082400000002 31 0.0 0 @@ -1809,15 +1823,15 @@ LINE 8 0 10 -90.0 +115.40000000000002 20 -31.000000000000007 +141.60082400000002 30 0.0 11 -90.0 +115.40000000000002 21 -92.00000000000001 +100.600824 31 0.0 0 @@ -1827,15 +1841,15 @@ LINE 8 0 10 -100.0 +95.4 20 -31.000000000000007 +101.10082400000002 30 0.0 11 -90.0 +96.60000000000001 21 -31.000000000000007 +101.10082400000002 31 0.0 0 @@ -1845,15 +1859,15 @@ LINE 8 0 10 -117.00000000000001 +96.60000000000001 20 -31.000000000000007 +101.10082400000002 30 0.0 11 -124.00000000000003 +96.60000000000001 21 -31.000000000000007 +131.10082400000002 31 0.0 0 @@ -1863,15 +1877,15 @@ LINE 8 0 10 -117.00000000000001 +96.60000000000001 20 -7.000000000000001 +131.10082400000002 30 0.0 11 -117.00000000000001 +95.4 21 -31.000000000000007 +131.10082400000002 31 0.0 0 @@ -1881,15 +1895,15 @@ LINE 8 0 10 -124.00000000000003 +95.4 20 -7.000000000000001 +131.10082400000002 30 0.0 11 -117.00000000000001 +95.4 21 -7.000000000000001 +101.10082400000002 31 0.0 0 @@ -1899,15 +1913,15 @@ LINE 8 0 10 -173.09090909090912 +110.25000000000001 20 -1.7500000000000002 +98.350824 30 0.0 11 -176.59090909090912 +101.75000000000001 21 -1.7500000000000002 +98.350824 31 0.0 0 @@ -1917,15 +1931,15 @@ LINE 8 0 10 -176.59090909090912 +101.75000000000001 20 -1.7500000000000002 +98.350824 30 0.0 11 -173.09090909090912 +101.75000000000001 21 -5.25 +97.85082400000002 31 0.0 0 @@ -1935,15 +1949,15 @@ LINE 8 0 10 -173.09090909090912 +101.75000000000001 20 -5.25 +97.85082400000002 30 0.0 11 -162.18181818181822 +110.25000000000001 21 -5.25 +97.85082400000002 31 0.0 0 @@ -1953,15 +1967,15 @@ LINE 8 0 10 -162.18181818181822 +110.25000000000001 20 -5.25 +97.85082400000002 30 0.0 11 -158.6818181818182 +110.25000000000001 21 -1.7500000000000002 +98.350824 31 0.0 0 @@ -1971,15 +1985,15 @@ LINE 8 0 10 -158.6818181818182 +101.75000000000001 20 -1.7500000000000002 +146.10082400000002 30 0.0 11 -162.18181818181822 +110.25000000000001 21 -1.7500000000000002 +146.10082400000002 31 0.0 0 @@ -1989,15 +2003,15 @@ LINE 8 0 10 -145.8181818181818 +110.25000000000001 20 -1.7500000000000002 +146.10082400000002 30 0.0 11 -149.31818181818184 +110.25000000000001 21 -1.7500000000000002 +146.60082400000002 31 0.0 0 @@ -2007,15 +2021,15 @@ LINE 8 0 10 -149.31818181818184 +110.25000000000001 20 -1.7500000000000002 +146.60082400000002 30 0.0 11 -145.8181818181818 +101.75000000000001 21 -5.25 +146.60082400000002 31 0.0 0 @@ -2025,15 +2039,15 @@ LINE 8 0 10 -145.8181818181818 +101.75000000000001 20 -5.25 +146.60082400000002 30 0.0 11 -134.90909090909093 +101.75000000000001 21 -5.25 +146.10082400000002 31 0.0 0 @@ -2043,15 +2057,15 @@ LINE 8 0 10 -134.90909090909093 +133.00000000000003 20 -5.25 +104.60082400000002 30 0.0 11 -131.40909090909096 +133.00000000000003 21 -1.7500000000000002 +97.60082400000002 31 0.0 0 @@ -2061,15 +2075,15 @@ LINE 8 0 10 -131.40909090909096 +133.00000000000003 20 -1.7500000000000002 +97.60082400000002 30 0.0 11 -134.90909090909093 +153.00000000000003 21 -1.7500000000000002 +97.60082400000002 31 0.0 0 @@ -2079,15 +2093,15 @@ LINE 8 0 10 -189.25000000000003 +153.00000000000003 20 -23.000000000000004 +97.60082400000002 30 0.0 11 -185.75000000000003 +153.00000000000003 21 -23.000000000000004 +104.60082400000002 31 0.0 0 @@ -2097,15 +2111,15 @@ LINE 8 0 10 -185.75000000000003 +153.00000000000003 20 -23.000000000000004 +104.60082400000002 30 0.0 11 -185.75000000000003 +133.00000000000003 21 -15.000000000000002 +104.60082400000002 31 0.0 0 @@ -2115,15 +2129,15 @@ LINE 8 0 10 -185.75000000000003 +140.06818181818184 20 -15.000000000000002 +96.100824 30 0.0 11 -189.25000000000003 +128.65909090909093 21 -15.000000000000002 +96.100824 31 0.0 0 @@ -2133,15 +2147,15 @@ LINE 8 0 10 -132.0 +128.65909090909093 20 -82.50000000000001 +96.100824 30 0.0 11 -132.0 +128.65909090909093 21 -64.5 +95.60082400000002 31 0.0 0 @@ -2151,15 +2165,15 @@ LINE 8 0 10 -132.0 +128.65909090909093 20 -64.5 +95.60082400000002 30 0.0 11 -162.00000000000003 +140.06818181818184 21 -64.5 +95.60082400000002 31 0.0 0 @@ -2169,15 +2183,15 @@ LINE 8 0 10 -162.00000000000003 +140.06818181818184 20 -64.5 +95.60082400000002 30 0.0 11 -162.00000000000003 +140.06818181818184 21 -82.50000000000001 +96.100824 31 0.0 0 @@ -2187,15 +2201,15 @@ LINE 8 0 10 -162.00000000000003 +167.3409090909091 20 -82.50000000000001 +96.100824 30 0.0 11 -132.0 +155.93181818181822 21 -82.50000000000001 +96.100824 31 0.0 0 @@ -2205,15 +2219,15 @@ LINE 8 0 10 -205.40000000000003 +155.93181818181822 20 -41.0 +96.100824 30 0.0 11 -206.60000000000002 +155.93181818181822 21 -41.0 +95.60082400000002 31 0.0 0 @@ -2223,15 +2237,15 @@ LINE 8 0 10 -206.60000000000002 +155.93181818181822 20 -41.0 +95.60082400000002 30 0.0 11 -206.60000000000002 +167.3409090909091 21 -82.0 +95.60082400000002 31 0.0 0 @@ -2241,15 +2255,15 @@ LINE 8 0 10 -206.60000000000002 +167.3409090909091 20 -82.0 +95.60082400000002 30 0.0 11 -205.40000000000003 +167.3409090909091 21 -82.0 +96.100824 31 0.0 0 @@ -2259,15 +2273,15 @@ LINE 8 0 10 -205.40000000000003 +170.25000000000003 20 -82.0 +113.0326421818182 30 0.0 11 -205.40000000000003 +170.25000000000003 21 -41.0 +101.44173309090911 31 0.0 0 @@ -2277,15 +2291,15 @@ LINE 8 0 10 -185.4 +170.25000000000003 20 -41.5 +101.44173309090911 30 0.0 11 -186.60000000000002 +170.75 21 -41.5 +101.44173309090911 31 0.0 0 @@ -2295,15 +2309,15 @@ LINE 8 0 10 -186.60000000000002 +170.75 20 -41.5 +101.44173309090911 30 0.0 11 -186.60000000000002 +170.75 21 -71.5 +113.0326421818182 31 0.0 0 @@ -2313,15 +2327,15 @@ LINE 8 0 10 -186.60000000000002 +170.75 20 -71.5 +113.0326421818182 30 0.0 11 -185.4 +170.25000000000003 21 -71.5 +113.0326421818182 31 0.0 0 @@ -2331,15 +2345,15 @@ LINE 8 0 10 -185.4 +170.25000000000003 20 -71.5 +140.75991490909095 30 0.0 11 -185.4 +170.25000000000003 21 -41.5 +129.16900581818186 31 0.0 0 @@ -2349,15 +2363,15 @@ LINE 8 0 10 -200.25 +170.25000000000003 20 -38.75 +129.16900581818186 30 0.0 11 -191.75000000000003 +170.75 21 -38.75 +129.16900581818186 31 0.0 0 @@ -2367,15 +2381,15 @@ LINE 8 0 10 -191.75000000000003 +170.75 20 -38.75 +129.16900581818186 30 0.0 11 -191.75000000000003 +170.75 21 -38.25000000000001 +140.75991490909095 31 0.0 0 @@ -2385,15 +2399,15 @@ LINE 8 0 10 -191.75000000000003 +170.75 20 -38.25000000000001 +140.75991490909095 30 0.0 11 -200.25 +170.25000000000003 21 -38.25000000000001 +140.75991490909095 31 0.0 0 @@ -2403,15 +2417,15 @@ LINE 8 0 10 -200.25 +11.4 20 -38.25000000000001 +100.600824 30 0.0 11 -200.25 +12.600000000000001 21 -38.75 +100.600824 31 0.0 0 @@ -2421,15 +2435,15 @@ LINE 8 0 10 -191.75000000000003 +12.600000000000001 20 -86.5 +100.600824 30 0.0 11 -200.25 +12.600000000000001 21 -86.5 +141.60082400000002 31 0.0 0 @@ -2439,15 +2453,15 @@ LINE 8 0 10 -200.25 +12.600000000000001 20 -86.5 +141.60082400000002 30 0.0 11 -200.25 +11.4 21 -87.00000000000001 +141.60082400000002 31 0.0 0 @@ -2457,15 +2471,15 @@ LINE 8 0 10 -200.25 +11.4 20 -87.00000000000001 +141.60082400000002 30 0.0 11 -191.75000000000003 +11.4 21 -87.00000000000001 +100.600824 31 0.0 0 @@ -2475,15 +2489,15 @@ LINE 8 0 10 -191.75000000000003 +31.400000000000002 20 -87.00000000000001 +101.10082400000002 30 0.0 11 -191.75000000000003 +32.60000000000001 21 -86.5 +101.10082400000002 31 0.0 0 @@ -2493,15 +2507,15 @@ LINE 8 0 10 -223.0 +32.60000000000001 20 -45.0 +101.10082400000002 30 0.0 11 -223.0 +32.60000000000001 21 -38.00000000000001 +131.10082400000002 31 0.0 0 @@ -2511,15 +2525,15 @@ LINE 8 0 10 -223.0 +32.60000000000001 20 -38.00000000000001 +131.10082400000002 30 0.0 11 -243.00000000000003 +31.400000000000002 21 -38.00000000000001 +131.10082400000002 31 0.0 0 @@ -2529,15 +2543,15 @@ LINE 8 0 10 -243.00000000000003 +31.400000000000002 20 -38.00000000000001 +131.10082400000002 30 0.0 11 -243.00000000000003 +31.400000000000002 21 -45.0 +101.10082400000002 31 0.0 0 @@ -2547,15 +2561,15 @@ LINE 8 0 10 -243.00000000000003 +26.250000000000004 20 -45.0 +98.350824 30 0.0 11 -223.0 +17.750000000000004 21 -45.0 +98.350824 31 0.0 0 @@ -2565,15 +2579,15 @@ LINE 8 0 10 -230.0681818181818 +17.750000000000004 20 -36.5 +98.350824 30 0.0 11 -218.65909090909093 +17.750000000000004 21 -36.5 +97.85082400000002 31 0.0 0 @@ -2583,15 +2597,15 @@ LINE 8 0 10 -218.65909090909093 +17.750000000000004 20 -36.5 +97.85082400000002 30 0.0 11 -218.65909090909093 +26.250000000000004 21 -36.00000000000001 +97.85082400000002 31 0.0 0 @@ -2601,15 +2615,15 @@ LINE 8 0 10 -218.65909090909093 +26.250000000000004 20 -36.00000000000001 +97.85082400000002 30 0.0 11 -230.0681818181818 +26.250000000000004 21 -36.00000000000001 +98.350824 31 0.0 0 @@ -2619,15 +2633,15 @@ LINE 8 0 10 -230.0681818181818 +17.750000000000004 20 -36.00000000000001 +146.10082400000002 30 0.0 11 -230.0681818181818 +26.250000000000004 21 -36.5 +146.10082400000002 31 0.0 0 @@ -2637,15 +2651,15 @@ LINE 8 0 10 -257.3409090909092 +26.250000000000004 20 -36.5 +146.10082400000002 30 0.0 11 -245.93181818181822 +26.250000000000004 21 -36.5 +146.60082400000002 31 0.0 0 @@ -2655,15 +2669,15 @@ LINE 8 0 10 -245.93181818181822 +26.250000000000004 20 -36.5 +146.60082400000002 30 0.0 11 -245.93181818181822 +17.750000000000004 21 -36.00000000000001 +146.60082400000002 31 0.0 0 @@ -2673,15 +2687,15 @@ LINE 8 0 10 -245.93181818181822 +17.750000000000004 20 -36.00000000000001 +146.60082400000002 30 0.0 11 -257.3409090909092 +17.750000000000004 21 -36.00000000000001 +146.10082400000002 31 0.0 0 @@ -2691,15 +2705,15 @@ LINE 8 0 10 -257.3409090909092 +2.5000000000000004 20 -36.00000000000001 +101.69173309090911 30 0.0 11 -257.3409090909092 +7.500000000000001 21 -36.5 +101.69173309090911 31 0.0 0 @@ -2709,15 +2723,15 @@ LINE 8 0 10 -260.25 +7.500000000000001 20 -53.431818181818194 +101.69173309090911 30 0.0 11 -260.25 +7.500000000000001 21 -41.8409090909091 +112.7826421818182 31 0.0 0 @@ -2727,15 +2741,15 @@ LINE 8 0 10 -260.25 +7.500000000000001 20 -41.8409090909091 +112.7826421818182 30 0.0 11 -260.75000000000006 +2.5000000000000004 21 -41.8409090909091 +112.7826421818182 31 0.0 0 @@ -2745,15 +2759,15 @@ LINE 8 0 10 -260.75000000000006 +2.5000000000000004 20 -41.8409090909091 +129.41900581818183 30 0.0 11 -260.75000000000006 +7.500000000000001 21 -53.431818181818194 +129.41900581818183 31 0.0 0 @@ -2763,15 +2777,15 @@ LINE 8 0 10 -260.75000000000006 +7.500000000000001 20 -53.431818181818194 +129.41900581818183 30 0.0 11 -260.25 +7.500000000000001 21 -53.431818181818194 +140.50991490909095 31 0.0 0 @@ -2781,15 +2795,15 @@ LINE 8 0 10 -260.25 +7.500000000000001 20 -81.15909090909092 +140.50991490909095 30 0.0 11 -260.25 +2.5000000000000004 21 -69.56818181818183 +140.50991490909095 31 0.0 0 @@ -2799,15 +2813,15 @@ LINE 8 0 10 -260.25 +28.750000000000004 20 -69.56818181818183 +74.600824 30 0.0 11 -260.75000000000006 +32.25 21 -69.56818181818183 +74.600824 31 0.0 0 @@ -2817,15 +2831,15 @@ LINE 8 0 10 -260.75000000000006 +32.25 20 -69.56818181818183 +74.600824 30 0.0 11 -260.75000000000006 +32.25 21 -81.15909090909092 +82.60082400000002 31 0.0 0 @@ -2835,33 +2849,35 @@ LINE 8 0 10 -260.75000000000006 +32.25 20 -81.15909090909092 +82.60082400000002 30 0.0 11 -260.25 +28.750000000000004 21 -81.15909090909092 +82.60082400000002 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -101.40000000000002 +198.0 20 -41.0 +60.40054927679871 30 0.0 11 -102.6 +258.0 21 -41.0 +60.40054927679871 31 0.0 0 @@ -2871,15 +2887,15 @@ LINE 8 0 10 -102.6 +258.0 20 -41.0 +96.80109872320132 30 0.0 11 -102.6 +258.0 21 -82.0 +60.40054927679871 31 0.0 0 @@ -2889,15 +2905,15 @@ LINE 8 0 10 -102.6 +198.0 20 -82.0 +96.80109872320132 30 0.0 11 -101.40000000000002 +258.0 21 -82.0 +96.80109872320132 31 0.0 0 @@ -2907,51 +2923,75 @@ LINE 8 0 10 -101.40000000000002 +198.0 20 -82.0 +60.40054927679871 30 0.0 11 -101.40000000000002 +198.0 21 -41.0 +96.80109872320132 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -121.40000000000002 +258.0 20 -41.5 +36.40054927679871 30 0.0 11 -122.60000000000001 +198.0 21 -41.5 +36.40054927679871 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -122.60000000000001 +258.0 20 -41.5 +36.40054927679871 30 0.0 11 -122.60000000000001 +258.0 21 -71.5 +60.40054927679871 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +198.0 + 20 +60.40054927679871 + 30 +0.0 + 11 +198.0 + 21 +36.40054927679871 31 0.0 0 @@ -2961,15 +3001,15 @@ LINE 8 0 10 -122.60000000000001 +198.0 20 -71.5 +-1.696038935961042e-07 30 0.0 11 -121.40000000000002 +198.0 21 -71.5 +36.40054927679871 31 0.0 0 @@ -2979,15 +3019,15 @@ LINE 8 0 10 -121.40000000000002 +258.0 20 -71.5 +-1.696038935961042e-07 30 0.0 11 -121.40000000000002 +198.0 21 -41.5 +-1.696038935961042e-07 31 0.0 0 @@ -2997,15 +3037,15 @@ LINE 8 0 10 -116.25000000000001 +258.0 20 -38.75 +36.40054927679871 30 0.0 11 -107.75000000000001 +258.0 21 -38.75 +-1.696038935961042e-07 31 0.0 0 @@ -3015,15 +3055,15 @@ LINE 8 0 10 -107.75000000000001 +268.00000000000006 20 -38.75 +36.40054927679871 30 0.0 11 -107.75000000000001 +258.0 21 -38.25000000000001 +36.40054927679871 31 0.0 0 @@ -3033,15 +3073,15 @@ LINE 8 0 10 -107.75000000000001 +268.00000000000006 20 -38.25000000000001 +60.40054927679871 30 0.0 11 -116.25000000000001 +268.00000000000006 21 -38.25000000000001 +36.40054927679871 31 0.0 0 @@ -3051,15 +3091,15 @@ LINE 8 0 10 -116.25000000000001 +258.0 20 -38.25000000000001 +60.40054927679871 30 0.0 11 -116.25000000000001 +268.00000000000006 21 -38.75 +60.40054927679871 31 0.0 0 @@ -3069,15 +3109,15 @@ LINE 8 0 10 -107.75000000000001 +188.00000000000003 20 -86.5 +60.40054927679871 30 0.0 11 -116.25000000000001 +198.0 21 -86.5 +60.40054927679871 31 0.0 0 @@ -3087,15 +3127,15 @@ LINE 8 0 10 -116.25000000000001 +188.00000000000003 20 -86.5 +36.40054927679871 30 0.0 11 -116.25000000000001 +188.00000000000003 21 -87.00000000000001 +60.40054927679871 31 0.0 0 @@ -3105,15 +3145,15 @@ LINE 8 0 10 -116.25000000000001 +198.0 20 -87.00000000000001 +36.40054927679871 30 0.0 11 -107.75000000000001 +188.00000000000003 21 -87.00000000000001 +36.40054927679871 31 0.0 0 @@ -3123,15 +3163,15 @@ LINE 8 0 10 -107.75000000000001 +215.50000000000003 20 -87.00000000000001 +41.900549276798706 30 0.0 11 -107.75000000000001 +226.50000000000003 21 -86.5 +41.900549276798706 31 0.0 0 @@ -3141,15 +3181,15 @@ LINE 8 0 10 -92.50000000000001 +226.50000000000003 20 -42.0909090909091 +41.900549276798706 30 0.0 11 -97.50000000000001 +226.50000000000003 21 -42.0909090909091 +54.90054927679871 31 0.0 0 @@ -3159,15 +3199,15 @@ LINE 8 0 10 -97.50000000000001 +226.50000000000003 20 -42.0909090909091 +54.90054927679871 30 0.0 11 -97.50000000000001 +215.50000000000003 21 -53.181818181818194 +54.90054927679871 31 0.0 0 @@ -3177,15 +3217,15 @@ LINE 8 0 10 -97.50000000000001 +215.50000000000003 20 -53.181818181818194 +54.90054927679871 30 0.0 11 -92.50000000000001 +215.50000000000003 21 -53.181818181818194 +41.900549276798706 31 0.0 0 @@ -3195,15 +3235,15 @@ LINE 8 0 10 -92.50000000000001 +247.00000000000003 20 -69.81818181818184 +43.40054927679871 30 0.0 11 -97.50000000000001 +253.00000000000003 21 -69.81818181818184 +43.40054927679871 31 0.0 0 @@ -3213,15 +3253,15 @@ LINE 8 0 10 -97.50000000000001 +253.00000000000003 20 -69.81818181818184 +43.40054927679871 30 0.0 11 -97.50000000000001 +253.00000000000003 21 -80.9090909090909 +53.40054927679871 31 0.0 0 @@ -3231,15 +3271,15 @@ LINE 8 0 10 -97.50000000000001 +253.00000000000003 20 -80.9090909090909 +53.40054927679871 30 0.0 11 -92.50000000000001 +247.00000000000003 21 -80.9090909090909 +53.40054927679871 31 0.0 0 @@ -3249,15 +3289,15 @@ LINE 8 0 10 -118.75000000000001 +247.00000000000003 20 -15.000000000000002 +53.40054927679871 30 0.0 11 -122.25000000000001 +247.00000000000003 21 -15.000000000000002 +43.40054927679871 31 0.0 0 @@ -3267,15 +3307,15 @@ LINE 8 0 10 -122.25000000000001 +265.50000000000006 20 -15.000000000000002 +52.40054927679871 30 0.0 11 -122.25000000000001 +260.50000000000006 21 -23.000000000000004 +52.40054927679871 31 0.0 0 @@ -3285,15 +3325,15 @@ LINE 8 0 10 -122.25000000000001 +260.50000000000006 20 -23.000000000000004 +52.40054927679871 30 0.0 11 -118.75000000000001 +260.50000000000006 21 -23.000000000000004 +44.40054927679871 31 0.0 0 @@ -3303,15 +3343,15 @@ LINE 8 0 10 -338.00000000000006 +260.50000000000006 20 -0.7997252767987035 +44.40054927679871 30 0.0 11 -278.0 +265.50000000000006 21 -0.7997252767987035 +44.40054927679871 31 0.0 0 @@ -3321,15 +3361,15 @@ LINE 8 0 10 -338.00000000000006 +190.50000000000003 20 -37.200274723201304 +44.40054927679871 30 0.0 11 -338.00000000000006 +195.5 21 -0.7997252767987035 +44.40054927679871 31 0.0 0 @@ -3339,15 +3379,15 @@ LINE 8 0 10 -278.0 +195.5 20 -37.200274723201304 +44.40054927679871 30 0.0 11 -338.00000000000006 +195.5 21 -37.200274723201304 +52.40054927679871 31 0.0 0 @@ -3357,15 +3397,15 @@ LINE 8 0 10 -278.0 +195.5 20 -0.7997252767987035 +52.40054927679871 30 0.0 11 -278.0 +190.50000000000003 21 -37.200274723201304 +52.40054927679871 31 0.0 0 diff --git a/rocolib/output/Boat_StackMount/graph-lasercutter.svg b/rocolib/output/Boat_StackMount/graph-lasercutter.svg index 584acd16c2e7e54db805489360bf6a978e7f01b5..a3ecef61180efba566bf6f7cf8bd5ff9ca18ba89 100644 --- a/rocolib/output/Boat_StackMount/graph-lasercutter.svg +++ b/rocolib/output/Boat_StackMount/graph-lasercutter.svg @@ -1,138 +1,140 @@ <?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="92.000000mm" version="1.1" viewBox="0.000000 0.000000 338.000000 92.000000" width="338.000000mm"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="151.600824mm" version="1.1" viewBox="0.000000 0.000000 268.000000 151.600824" width="268.000000mm"> <defs/> - <line stroke="#000000" x1="70.00000000000001" x2="10.000000000000002" y1="7.000000000000001" y2="7.000000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="7.000000000000001" y2="31.000000000000007"/> - <line stroke="#000000" x1="10.000000000000002" x2="70.00000000000001" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="31.000000000000007" y2="7.000000000000001"/> - <line stroke="#000000" x1="80.00000000000001" x2="70.00000000000001" y1="7.000000000000001" y2="7.000000000000001"/> - <line stroke="#000000" x1="80.00000000000001" x2="80.00000000000001" y1="31.000000000000007" y2="7.000000000000001"/> - <line stroke="#000000" x1="70.00000000000001" x2="80.00000000000001" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#000000" x1="0.0" x2="0.0" y1="7.000000000000001" y2="31.000000000000007"/> - <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="7.000000000000001" y2="7.000000000000001"/> - <line stroke="#888888" x1="27.500000000000004" x2="38.50000000000001" y1="12.5" y2="12.5"/> - <line stroke="#888888" x1="38.50000000000001" x2="38.50000000000001" y1="12.5" y2="25.500000000000004"/> - <line stroke="#888888" x1="38.50000000000001" x2="27.500000000000004" y1="25.500000000000004" y2="25.500000000000004"/> - <line stroke="#888888" x1="27.500000000000004" x2="27.500000000000004" y1="25.500000000000004" y2="12.5"/> - <line stroke="#888888" x1="59.00000000000001" x2="65.0" y1="14.000000000000002" y2="14.000000000000002"/> - <line stroke="#888888" x1="65.0" x2="65.0" y1="14.000000000000002" y2="24.000000000000004"/> - <line stroke="#888888" x1="65.0" x2="59.00000000000001" y1="24.000000000000004" y2="24.000000000000004"/> - <line stroke="#888888" x1="59.00000000000001" x2="59.00000000000001" y1="24.000000000000004" y2="14.000000000000002"/> - <line stroke="#888888" x1="77.5" x2="72.50000000000001" y1="23.000000000000004" y2="23.000000000000004"/> - <line stroke="#888888" x1="72.50000000000001" x2="72.50000000000001" y1="23.000000000000004" y2="15.000000000000002"/> - <line stroke="#888888" x1="72.50000000000001" x2="77.5" y1="15.000000000000002" y2="15.000000000000002"/> - <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="15.000000000000002" y2="15.000000000000002"/> - <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="15.000000000000002" y2="23.000000000000004"/> - <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="23.000000000000004" y2="23.000000000000004"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="124.00000000000003" x2="184.00000000000003" y1="7.000000000000001" y2="7.000000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.00000000000003" x2="184.00000000000003" y1="7.000000000000001" y2="31.000000000000007"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.00000000000003" x2="124.00000000000003" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="124.00000000000003" x2="124.00000000000003" y1="31.000000000000007" y2="7.000000000000001"/> - <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="0.0" y2="7.000000000000001"/> - <line stroke="#000000" x1="184.00000000000003" x2="124.00000000000003" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="7.000000000000001" y2="0.0"/> - <line stroke="#000000" x1="191.0" x2="184.00000000000003" y1="7.000000000000001" y2="7.000000000000001"/> - <line stroke="#000000" x1="191.0" x2="191.0" y1="31.000000000000007" y2="7.000000000000001"/> - <line stroke="#000000" x1="184.00000000000003" x2="191.0" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.00000000000003" x2="184.00000000000003" y1="31.000000000000007" y2="92.00000000000001"/> - <line stroke="#000000" x1="124.00000000000003" x2="184.00000000000003" y1="92.00000000000001" y2="92.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="124.00000000000003" x2="124.00000000000003" y1="31.000000000000007" y2="92.00000000000001"/> - <line stroke="#000000" x1="208.00000000000003" x2="184.00000000000003" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="208.00000000000003" x2="208.00000000000003" y1="31.000000000000007" y2="92.00000000000001"/> - <line stroke="#000000" x1="184.00000000000003" x2="208.00000000000003" y1="92.00000000000001" y2="92.00000000000001"/> - <line stroke="#000000" x1="268.00000000000006" x2="208.00000000000003" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#000000" x1="268.00000000000006" x2="268.00000000000006" y1="92.00000000000001" y2="31.000000000000007"/> - <line stroke="#000000" x1="208.00000000000003" x2="268.00000000000006" y1="92.00000000000001" y2="92.00000000000001"/> - <line stroke="#000000" x1="124.00000000000003" x2="100.0" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#000000" x1="100.0" x2="124.00000000000003" y1="92.00000000000001" y2="92.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="100.0" x2="100.0" y1="92.00000000000001" y2="31.000000000000007"/> - <line stroke="#000000" x1="90.0" x2="100.0" y1="92.00000000000001" y2="92.00000000000001"/> - <line stroke="#000000" x1="90.0" x2="90.0" y1="31.000000000000007" y2="92.00000000000001"/> - <line stroke="#000000" x1="100.0" x2="90.0" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#000000" x1="117.00000000000001" x2="124.00000000000003" y1="31.000000000000007" y2="31.000000000000007"/> - <line stroke="#000000" x1="117.00000000000001" x2="117.00000000000001" y1="7.000000000000001" y2="31.000000000000007"/> - <line stroke="#000000" x1="124.00000000000003" x2="117.00000000000001" y1="7.000000000000001" y2="7.000000000000001"/> - <line stroke="#888888" x1="173.09090909090912" x2="176.59090909090912" y1="1.7500000000000002" y2="1.7500000000000002"/> - <line stroke="#888888" x1="176.59090909090912" x2="173.09090909090912" y1="1.7500000000000002" y2="5.25"/> - <line stroke="#888888" x1="173.09090909090912" x2="162.18181818181822" y1="5.25" y2="5.25"/> - <line stroke="#888888" x1="162.18181818181822" x2="158.6818181818182" y1="5.25" y2="1.7500000000000002"/> - <line stroke="#888888" x1="158.6818181818182" x2="162.18181818181822" y1="1.7500000000000002" y2="1.7500000000000002"/> - <line stroke="#888888" x1="145.8181818181818" x2="149.31818181818184" y1="1.7500000000000002" y2="1.7500000000000002"/> - <line stroke="#888888" x1="149.31818181818184" x2="145.8181818181818" y1="1.7500000000000002" y2="5.25"/> - <line stroke="#888888" x1="145.8181818181818" x2="134.90909090909093" y1="5.25" y2="5.25"/> - <line stroke="#888888" x1="134.90909090909093" x2="131.40909090909096" y1="5.25" y2="1.7500000000000002"/> - <line stroke="#888888" x1="131.40909090909096" x2="134.90909090909093" y1="1.7500000000000002" y2="1.7500000000000002"/> - <line stroke="#888888" x1="189.25000000000003" x2="185.75000000000003" y1="23.000000000000004" y2="23.000000000000004"/> - <line stroke="#888888" x1="185.75000000000003" x2="185.75000000000003" y1="23.000000000000004" y2="15.000000000000002"/> - <line stroke="#888888" x1="185.75000000000003" x2="189.25000000000003" y1="15.000000000000002" y2="15.000000000000002"/> - <line stroke="#888888" x1="132.0" x2="132.0" y1="82.50000000000001" y2="64.5"/> - <line stroke="#888888" x1="132.0" x2="162.00000000000003" y1="64.5" y2="64.5"/> - <line stroke="#888888" x1="162.00000000000003" x2="162.00000000000003" y1="64.5" y2="82.50000000000001"/> - <line stroke="#888888" x1="162.00000000000003" x2="132.0" y1="82.50000000000001" y2="82.50000000000001"/> - <line stroke="#888888" x1="205.40000000000003" x2="206.60000000000002" y1="41.0" y2="41.0"/> - <line stroke="#888888" x1="206.60000000000002" x2="206.60000000000002" y1="41.0" y2="82.0"/> - <line stroke="#888888" x1="206.60000000000002" x2="205.40000000000003" y1="82.0" y2="82.0"/> - <line stroke="#888888" x1="205.40000000000003" x2="205.40000000000003" y1="82.0" y2="41.0"/> - <line stroke="#888888" x1="185.4" x2="186.60000000000002" y1="41.5" y2="41.5"/> - <line stroke="#888888" x1="186.60000000000002" x2="186.60000000000002" y1="41.5" y2="71.5"/> - <line stroke="#888888" x1="186.60000000000002" x2="185.4" y1="71.5" y2="71.5"/> - <line stroke="#888888" x1="185.4" x2="185.4" y1="71.5" y2="41.5"/> - <line stroke="#888888" x1="200.25" x2="191.75000000000003" y1="38.75" y2="38.75"/> - <line stroke="#888888" x1="191.75000000000003" x2="191.75000000000003" y1="38.75" y2="38.25000000000001"/> - <line stroke="#888888" x1="191.75000000000003" x2="200.25" y1="38.25000000000001" y2="38.25000000000001"/> - <line stroke="#888888" x1="200.25" x2="200.25" y1="38.25000000000001" y2="38.75"/> - <line stroke="#888888" x1="191.75000000000003" x2="200.25" y1="86.5" y2="86.5"/> - <line stroke="#888888" x1="200.25" x2="200.25" y1="86.5" y2="87.00000000000001"/> - <line stroke="#888888" x1="200.25" x2="191.75000000000003" y1="87.00000000000001" y2="87.00000000000001"/> - <line stroke="#888888" x1="191.75000000000003" x2="191.75000000000003" y1="87.00000000000001" y2="86.5"/> - <line stroke="#888888" x1="223.0" x2="223.0" y1="45.0" y2="38.00000000000001"/> - <line stroke="#888888" x1="223.0" x2="243.00000000000003" y1="38.00000000000001" y2="38.00000000000001"/> - <line stroke="#888888" x1="243.00000000000003" x2="243.00000000000003" y1="38.00000000000001" y2="45.0"/> - <line stroke="#888888" x1="243.00000000000003" x2="223.0" y1="45.0" y2="45.0"/> - <line stroke="#888888" x1="230.0681818181818" x2="218.65909090909093" y1="36.5" y2="36.5"/> - <line stroke="#888888" x1="218.65909090909093" x2="218.65909090909093" y1="36.5" y2="36.00000000000001"/> - <line stroke="#888888" x1="218.65909090909093" x2="230.0681818181818" y1="36.00000000000001" y2="36.00000000000001"/> - <line stroke="#888888" x1="230.0681818181818" x2="230.0681818181818" y1="36.00000000000001" y2="36.5"/> - <line stroke="#888888" x1="257.3409090909092" x2="245.93181818181822" y1="36.5" y2="36.5"/> - <line stroke="#888888" x1="245.93181818181822" x2="245.93181818181822" y1="36.5" y2="36.00000000000001"/> - <line stroke="#888888" x1="245.93181818181822" x2="257.3409090909092" y1="36.00000000000001" y2="36.00000000000001"/> - <line stroke="#888888" x1="257.3409090909092" x2="257.3409090909092" y1="36.00000000000001" y2="36.5"/> - <line stroke="#888888" x1="260.25" x2="260.25" y1="53.431818181818194" y2="41.8409090909091"/> - <line stroke="#888888" x1="260.25" x2="260.75000000000006" y1="41.8409090909091" y2="41.8409090909091"/> - <line stroke="#888888" x1="260.75000000000006" x2="260.75000000000006" y1="41.8409090909091" y2="53.431818181818194"/> - <line stroke="#888888" x1="260.75000000000006" x2="260.25" y1="53.431818181818194" y2="53.431818181818194"/> - <line stroke="#888888" x1="260.25" x2="260.25" y1="81.15909090909092" y2="69.56818181818183"/> - <line stroke="#888888" x1="260.25" x2="260.75000000000006" y1="69.56818181818183" y2="69.56818181818183"/> - <line stroke="#888888" x1="260.75000000000006" x2="260.75000000000006" y1="69.56818181818183" y2="81.15909090909092"/> - <line stroke="#888888" x1="260.75000000000006" x2="260.25" y1="81.15909090909092" y2="81.15909090909092"/> - <line stroke="#888888" x1="101.40000000000002" x2="102.6" y1="41.0" y2="41.0"/> - <line stroke="#888888" x1="102.6" x2="102.6" y1="41.0" y2="82.0"/> - <line stroke="#888888" x1="102.6" x2="101.40000000000002" y1="82.0" y2="82.0"/> - <line stroke="#888888" x1="101.40000000000002" x2="101.40000000000002" y1="82.0" y2="41.0"/> - <line stroke="#888888" x1="121.40000000000002" x2="122.60000000000001" y1="41.5" y2="41.5"/> - <line stroke="#888888" x1="122.60000000000001" x2="122.60000000000001" y1="41.5" y2="71.5"/> - <line stroke="#888888" x1="122.60000000000001" x2="121.40000000000002" y1="71.5" y2="71.5"/> - <line stroke="#888888" x1="121.40000000000002" x2="121.40000000000002" y1="71.5" y2="41.5"/> - <line stroke="#888888" x1="116.25000000000001" x2="107.75000000000001" y1="38.75" y2="38.75"/> - <line stroke="#888888" x1="107.75000000000001" x2="107.75000000000001" y1="38.75" y2="38.25000000000001"/> - <line stroke="#888888" x1="107.75000000000001" x2="116.25000000000001" y1="38.25000000000001" y2="38.25000000000001"/> - <line stroke="#888888" x1="116.25000000000001" x2="116.25000000000001" y1="38.25000000000001" y2="38.75"/> - <line stroke="#888888" x1="107.75000000000001" x2="116.25000000000001" y1="86.5" y2="86.5"/> - <line stroke="#888888" x1="116.25000000000001" x2="116.25000000000001" y1="86.5" y2="87.00000000000001"/> - <line stroke="#888888" x1="116.25000000000001" x2="107.75000000000001" y1="87.00000000000001" y2="87.00000000000001"/> - <line stroke="#888888" x1="107.75000000000001" x2="107.75000000000001" y1="87.00000000000001" y2="86.5"/> - <line stroke="#888888" x1="92.50000000000001" x2="97.50000000000001" y1="42.0909090909091" y2="42.0909090909091"/> - <line stroke="#888888" x1="97.50000000000001" x2="97.50000000000001" y1="42.0909090909091" y2="53.181818181818194"/> - <line stroke="#888888" x1="97.50000000000001" x2="92.50000000000001" y1="53.181818181818194" y2="53.181818181818194"/> - <line stroke="#888888" x1="92.50000000000001" x2="97.50000000000001" y1="69.81818181818184" y2="69.81818181818184"/> - <line stroke="#888888" x1="97.50000000000001" x2="97.50000000000001" y1="69.81818181818184" y2="80.9090909090909"/> - <line stroke="#888888" x1="97.50000000000001" x2="92.50000000000001" y1="80.9090909090909" y2="80.9090909090909"/> - <line stroke="#888888" x1="118.75000000000001" x2="122.25000000000001" y1="15.000000000000002" y2="15.000000000000002"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="15.000000000000002" y2="23.000000000000004"/> - <line stroke="#888888" x1="122.25000000000001" x2="118.75000000000001" y1="23.000000000000004" y2="23.000000000000004"/> - <line stroke="#000000" x1="338.00000000000006" x2="278.0" y1="0.7997252767987035" y2="0.7997252767987035"/> - <line stroke="#000000" x1="338.00000000000006" x2="338.00000000000006" y1="37.200274723201304" y2="0.7997252767987035"/> - <line stroke="#000000" x1="278.0" x2="338.00000000000006" y1="37.200274723201304" y2="37.200274723201304"/> - <line stroke="#000000" x1="278.0" x2="278.0" y1="0.7997252767987035" y2="37.200274723201304"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="94.00000000000001" y1="66.600824" y2="66.600824"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="94.00000000000001" y1="66.600824" y2="90.60082400000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="34.0" y1="90.60082400000002" y2="90.60082400000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="34.0" y1="90.60082400000002" y2="66.600824"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="59.60082400000002" y2="66.600824"/> + <line stroke="#000000" x1="94.00000000000001" x2="34.0" y1="59.60082400000002" y2="59.60082400000002"/> + <line stroke="#000000" x1="94.00000000000001" x2="94.00000000000001" y1="66.600824" y2="59.60082400000002"/> + <line stroke="#000000" x1="101.00000000000001" x2="94.00000000000001" y1="66.600824" y2="66.600824"/> + <line stroke="#000000" x1="101.00000000000001" x2="101.00000000000001" y1="90.60082400000002" y2="66.600824"/> + <line stroke="#000000" x1="94.00000000000001" x2="101.00000000000001" y1="90.60082400000002" y2="90.60082400000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="94.00000000000001" y1="90.60082400000002" y2="151.600824"/> + <line stroke="#000000" x1="34.0" x2="94.00000000000001" y1="151.600824" y2="151.600824"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="34.0" y1="90.60082400000002" y2="151.600824"/> + <line stroke="#000000" x1="118.00000000000001" x2="94.00000000000001" y1="90.60082400000002" y2="90.60082400000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="118.00000000000001" x2="118.00000000000001" y1="90.60082400000002" y2="151.600824"/> + <line stroke="#000000" x1="94.00000000000001" x2="118.00000000000001" y1="151.600824" y2="151.600824"/> + <line stroke="#000000" x1="178.00000000000003" x2="118.00000000000001" y1="90.60082400000002" y2="90.60082400000002"/> + <line stroke="#000000" x1="178.00000000000003" x2="178.00000000000003" y1="151.600824" y2="90.60082400000002"/> + <line stroke="#000000" x1="118.00000000000001" x2="178.00000000000003" y1="151.600824" y2="151.600824"/> + <line stroke="#000000" x1="34.0" x2="10.000000000000002" y1="90.60082400000002" y2="90.60082400000002"/> + <line stroke="#000000" x1="10.000000000000002" x2="34.0" y1="151.600824" y2="151.600824"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="151.600824" y2="90.60082400000002"/> + <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="151.600824" y2="151.600824"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="90.60082400000002" y2="151.600824"/> + <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="90.60082400000002" y2="90.60082400000002"/> + <line stroke="#000000" x1="27.000000000000004" x2="34.0" y1="90.60082400000002" y2="90.60082400000002"/> + <line stroke="#000000" x1="27.000000000000004" x2="27.000000000000004" y1="66.600824" y2="90.60082400000002"/> + <line stroke="#000000" x1="34.0" x2="27.000000000000004" y1="66.600824" y2="66.600824"/> + <line stroke="#888888" x1="83.0909090909091" x2="86.59090909090911" y1="61.35082400000001" y2="61.35082400000001"/> + <line stroke="#888888" x1="86.59090909090911" x2="83.0909090909091" y1="61.35082400000001" y2="64.850824"/> + <line stroke="#888888" x1="83.0909090909091" x2="72.1818181818182" y1="64.850824" y2="64.850824"/> + <line stroke="#888888" x1="72.1818181818182" x2="68.6818181818182" y1="64.850824" y2="61.35082400000001"/> + <line stroke="#888888" x1="68.6818181818182" x2="72.1818181818182" y1="61.35082400000001" y2="61.35082400000001"/> + <line stroke="#888888" x1="55.818181818181834" x2="59.31818181818183" y1="61.35082400000001" y2="61.35082400000001"/> + <line stroke="#888888" x1="59.31818181818183" x2="55.818181818181834" y1="61.35082400000001" y2="64.850824"/> + <line stroke="#888888" x1="55.818181818181834" x2="44.90909090909092" y1="64.850824" y2="64.850824"/> + <line stroke="#888888" x1="44.90909090909092" x2="41.40909090909093" y1="64.850824" y2="61.35082400000001"/> + <line stroke="#888888" x1="41.40909090909093" x2="44.90909090909092" y1="61.35082400000001" y2="61.35082400000001"/> + <line stroke="#888888" x1="99.25000000000001" x2="95.75000000000001" y1="82.60082400000002" y2="82.60082400000002"/> + <line stroke="#888888" x1="95.75000000000001" x2="95.75000000000001" y1="82.60082400000002" y2="74.600824"/> + <line stroke="#888888" x1="95.75000000000001" x2="99.25000000000001" y1="74.600824" y2="74.600824"/> + <line stroke="#888888" x1="42.0" x2="42.0" y1="142.10082400000002" y2="124.10082400000002"/> + <line stroke="#888888" x1="42.0" x2="72.00000000000001" y1="124.10082400000002" y2="124.10082400000002"/> + <line stroke="#888888" x1="72.00000000000001" x2="72.00000000000001" y1="124.10082400000002" y2="142.10082400000002"/> + <line stroke="#888888" x1="72.00000000000001" x2="42.0" y1="142.10082400000002" y2="142.10082400000002"/> + <line stroke="#888888" x1="115.40000000000002" x2="116.60000000000001" y1="100.600824" y2="100.600824"/> + <line stroke="#888888" x1="116.60000000000001" x2="116.60000000000001" y1="100.600824" y2="141.60082400000002"/> + <line stroke="#888888" x1="116.60000000000001" x2="115.40000000000002" y1="141.60082400000002" y2="141.60082400000002"/> + <line stroke="#888888" x1="115.40000000000002" x2="115.40000000000002" y1="141.60082400000002" y2="100.600824"/> + <line stroke="#888888" x1="95.4" x2="96.60000000000001" y1="101.10082400000002" y2="101.10082400000002"/> + <line stroke="#888888" x1="96.60000000000001" x2="96.60000000000001" y1="101.10082400000002" y2="131.10082400000002"/> + <line stroke="#888888" x1="96.60000000000001" x2="95.4" y1="131.10082400000002" y2="131.10082400000002"/> + <line stroke="#888888" x1="95.4" x2="95.4" y1="131.10082400000002" y2="101.10082400000002"/> + <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="98.350824" y2="98.350824"/> + <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="98.350824" y2="97.85082400000002"/> + <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="97.85082400000002" y2="97.85082400000002"/> + <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="97.85082400000002" y2="98.350824"/> + <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="146.10082400000002" y2="146.10082400000002"/> + <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="146.10082400000002" y2="146.60082400000002"/> + <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="146.60082400000002" y2="146.60082400000002"/> + <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="146.60082400000002" y2="146.10082400000002"/> + <line stroke="#888888" x1="133.00000000000003" x2="133.00000000000003" y1="104.60082400000002" y2="97.60082400000002"/> + <line stroke="#888888" x1="133.00000000000003" x2="153.00000000000003" y1="97.60082400000002" y2="97.60082400000002"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="97.60082400000002" y2="104.60082400000002"/> + <line stroke="#888888" x1="153.00000000000003" x2="133.00000000000003" y1="104.60082400000002" y2="104.60082400000002"/> + <line stroke="#888888" x1="140.06818181818184" x2="128.65909090909093" y1="96.100824" y2="96.100824"/> + <line stroke="#888888" x1="128.65909090909093" x2="128.65909090909093" y1="96.100824" y2="95.60082400000002"/> + <line stroke="#888888" x1="128.65909090909093" x2="140.06818181818184" y1="95.60082400000002" y2="95.60082400000002"/> + <line stroke="#888888" x1="140.06818181818184" x2="140.06818181818184" y1="95.60082400000002" y2="96.100824"/> + <line stroke="#888888" x1="167.3409090909091" x2="155.93181818181822" y1="96.100824" y2="96.100824"/> + <line stroke="#888888" x1="155.93181818181822" x2="155.93181818181822" y1="96.100824" y2="95.60082400000002"/> + <line stroke="#888888" x1="155.93181818181822" x2="167.3409090909091" y1="95.60082400000002" y2="95.60082400000002"/> + <line stroke="#888888" x1="167.3409090909091" x2="167.3409090909091" y1="95.60082400000002" y2="96.100824"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="113.0326421818182" y2="101.44173309090911"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="101.44173309090911" y2="101.44173309090911"/> + <line stroke="#888888" x1="170.75" x2="170.75" y1="101.44173309090911" y2="113.0326421818182"/> + <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="113.0326421818182" y2="113.0326421818182"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="140.75991490909095" y2="129.16900581818186"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="129.16900581818186" y2="129.16900581818186"/> + <line stroke="#888888" x1="170.75" x2="170.75" y1="129.16900581818186" y2="140.75991490909095"/> + <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="140.75991490909095" y2="140.75991490909095"/> + <line stroke="#888888" x1="11.4" x2="12.600000000000001" y1="100.600824" y2="100.600824"/> + <line stroke="#888888" x1="12.600000000000001" x2="12.600000000000001" y1="100.600824" y2="141.60082400000002"/> + <line stroke="#888888" x1="12.600000000000001" x2="11.4" y1="141.60082400000002" y2="141.60082400000002"/> + <line stroke="#888888" x1="11.4" x2="11.4" y1="141.60082400000002" y2="100.600824"/> + <line stroke="#888888" x1="31.400000000000002" x2="32.60000000000001" y1="101.10082400000002" y2="101.10082400000002"/> + <line stroke="#888888" x1="32.60000000000001" x2="32.60000000000001" y1="101.10082400000002" y2="131.10082400000002"/> + <line stroke="#888888" x1="32.60000000000001" x2="31.400000000000002" y1="131.10082400000002" y2="131.10082400000002"/> + <line stroke="#888888" x1="31.400000000000002" x2="31.400000000000002" y1="131.10082400000002" y2="101.10082400000002"/> + <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="98.350824" y2="98.350824"/> + <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="98.350824" y2="97.85082400000002"/> + <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="97.85082400000002" y2="97.85082400000002"/> + <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="97.85082400000002" y2="98.350824"/> + <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="146.10082400000002" y2="146.10082400000002"/> + <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="146.10082400000002" y2="146.60082400000002"/> + <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="146.60082400000002" y2="146.60082400000002"/> + <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="146.60082400000002" y2="146.10082400000002"/> + <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="101.69173309090911" y2="101.69173309090911"/> + <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="101.69173309090911" y2="112.7826421818182"/> + <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="112.7826421818182" y2="112.7826421818182"/> + <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="129.41900581818183" y2="129.41900581818183"/> + <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="129.41900581818183" y2="140.50991490909095"/> + <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="140.50991490909095" y2="140.50991490909095"/> + <line stroke="#888888" x1="28.750000000000004" x2="32.25" y1="74.600824" y2="74.600824"/> + <line stroke="#888888" x1="32.25" x2="32.25" y1="74.600824" y2="82.60082400000002"/> + <line stroke="#888888" x1="32.25" x2="28.750000000000004" y1="82.60082400000002" y2="82.60082400000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="198.0" x2="258.0" y1="60.40054927679871" y2="60.40054927679871"/> + <line stroke="#000000" x1="258.0" x2="258.0" y1="96.80109872320132" y2="60.40054927679871"/> + <line stroke="#000000" x1="198.0" x2="258.0" y1="96.80109872320132" y2="96.80109872320132"/> + <line stroke="#000000" x1="198.0" x2="198.0" y1="60.40054927679871" y2="96.80109872320132"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="258.0" x2="198.0" y1="36.40054927679871" y2="36.40054927679871"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="258.0" x2="258.0" y1="36.40054927679871" y2="60.40054927679871"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="198.0" x2="198.0" y1="60.40054927679871" y2="36.40054927679871"/> + <line stroke="#000000" x1="198.0" x2="198.0" y1="-1.696038935961042e-07" y2="36.40054927679871"/> + <line stroke="#000000" x1="258.0" x2="198.0" y1="-1.696038935961042e-07" y2="-1.696038935961042e-07"/> + <line stroke="#000000" x1="258.0" x2="258.0" y1="36.40054927679871" y2="-1.696038935961042e-07"/> + <line stroke="#000000" x1="268.00000000000006" x2="258.0" y1="36.40054927679871" y2="36.40054927679871"/> + <line stroke="#000000" x1="268.00000000000006" x2="268.00000000000006" y1="60.40054927679871" y2="36.40054927679871"/> + <line stroke="#000000" x1="258.0" x2="268.00000000000006" y1="60.40054927679871" y2="60.40054927679871"/> + <line stroke="#000000" x1="188.00000000000003" x2="198.0" y1="60.40054927679871" y2="60.40054927679871"/> + <line stroke="#000000" x1="188.00000000000003" x2="188.00000000000003" y1="36.40054927679871" y2="60.40054927679871"/> + <line stroke="#000000" x1="198.0" x2="188.00000000000003" y1="36.40054927679871" y2="36.40054927679871"/> + <line stroke="#888888" x1="215.50000000000003" x2="226.50000000000003" y1="41.900549276798706" y2="41.900549276798706"/> + <line stroke="#888888" x1="226.50000000000003" x2="226.50000000000003" y1="41.900549276798706" y2="54.90054927679871"/> + <line stroke="#888888" x1="226.50000000000003" x2="215.50000000000003" y1="54.90054927679871" y2="54.90054927679871"/> + <line stroke="#888888" x1="215.50000000000003" x2="215.50000000000003" y1="54.90054927679871" y2="41.900549276798706"/> + <line stroke="#888888" x1="247.00000000000003" x2="253.00000000000003" y1="43.40054927679871" y2="43.40054927679871"/> + <line stroke="#888888" x1="253.00000000000003" x2="253.00000000000003" y1="43.40054927679871" y2="53.40054927679871"/> + <line stroke="#888888" x1="253.00000000000003" x2="247.00000000000003" y1="53.40054927679871" y2="53.40054927679871"/> + <line stroke="#888888" x1="247.00000000000003" x2="247.00000000000003" y1="53.40054927679871" y2="43.40054927679871"/> + <line stroke="#888888" x1="265.50000000000006" x2="260.50000000000006" y1="52.40054927679871" y2="52.40054927679871"/> + <line stroke="#888888" x1="260.50000000000006" x2="260.50000000000006" y1="52.40054927679871" y2="44.40054927679871"/> + <line stroke="#888888" x1="260.50000000000006" x2="265.50000000000006" y1="44.40054927679871" y2="44.40054927679871"/> + <line stroke="#888888" x1="190.50000000000003" x2="195.5" y1="44.40054927679871" y2="44.40054927679871"/> + <line stroke="#888888" x1="195.5" x2="195.5" y1="44.40054927679871" y2="52.40054927679871"/> + <line stroke="#888888" x1="195.5" x2="190.50000000000003" y1="52.40054927679871" y2="52.40054927679871"/> </svg> diff --git a/rocolib/output/Boat_StackMount/graph-model.png b/rocolib/output/Boat_StackMount/graph-model.png index 58cca58c440263c52248a745b98975579d8c01bf..cef0a2826b0a5af0aaf822cc7e50883e490e74e1 100644 Binary files a/rocolib/output/Boat_StackMount/graph-model.png and b/rocolib/output/Boat_StackMount/graph-model.png differ diff --git a/rocolib/output/Boat_StackMount/graph-model.stl b/rocolib/output/Boat_StackMount/graph-model.stl index db7bef668ac0026fc22bd64c5e77de47aa89db2b..eed12c9e560eddbff1291d7d5e910cb31460a6cc 100644 --- a/rocolib/output/Boat_StackMount/graph-model.stl +++ b/rocolib/output/Boat_StackMount/graph-model.stl @@ -1,114 +1,142 @@ solid python facet normal 0 0 0 outer loop +vertex -0.0300 0.0120 0.0000 vertex -0.0300 -0.0120 0.0000 -vertex -0.0015 -0.0065 0.0000 -vertex -0.0125 -0.0065 0.0000 +vertex 0.0300 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0015 -0.0065 0.0000 -vertex -0.0300 -0.0120 0.0000 vertex 0.0300 -0.0120 0.0000 +vertex 0.0300 0.0120 0.0000 +vertex -0.0300 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0300 -0.0120 0.0000 -vertex -0.0125 -0.0065 0.0000 -vertex -0.0125 0.0065 0.0000 +vertex -0.0300 0.0182 0.0000 +vertex -0.0300 -0.0182 0.0000 +vertex 0.0300 -0.0182 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0300 0.0120 0.0000 -vertex -0.0125 0.0065 0.0000 -vertex -0.0015 0.0065 0.0000 +vertex 0.0300 -0.0182 0.0000 +vertex 0.0300 0.0182 0.0000 +vertex -0.0300 0.0182 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0125 0.0065 0.0000 -vertex -0.0300 0.0120 0.0000 -vertex -0.0300 -0.0120 0.0000 +vertex 0.0300 -0.0352 -0.0534 +vertex 0.0300 -0.0352 -0.0170 +vertex -0.0300 -0.0352 -0.0170 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0300 0.0120 0.0000 -vertex -0.0015 0.0065 0.0000 -vertex 0.0300 0.0120 0.0000 +vertex -0.0300 -0.0352 -0.0170 +vertex -0.0300 -0.0352 -0.0534 +vertex 0.0300 -0.0352 -0.0534 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0015 -0.0065 0.0000 -vertex 0.0190 -0.0050 0.0000 -vertex -0.0015 0.0065 0.0000 +vertex -0.0300 -0.0352 -0.0170 +vertex -0.0015 -0.0313 -0.0131 +vertex -0.0125 -0.0313 -0.0131 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0190 -0.0050 0.0000 -vertex 0.0300 -0.0120 0.0000 -vertex 0.0250 -0.0050 0.0000 +vertex -0.0015 -0.0313 -0.0131 +vertex -0.0300 -0.0352 -0.0170 +vertex 0.0300 -0.0352 -0.0170 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 -0.0120 0.0000 -vertex 0.0190 -0.0050 0.0000 -vertex -0.0015 -0.0065 0.0000 +vertex -0.0300 -0.0352 -0.0170 +vertex -0.0125 -0.0313 -0.0131 +vertex -0.0125 -0.0221 -0.0039 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0050 0.0000 -vertex 0.0300 -0.0120 0.0000 -vertex 0.0300 0.0120 0.0000 +vertex -0.0300 -0.0182 0.0000 +vertex -0.0125 -0.0221 -0.0039 +vertex -0.0015 -0.0221 -0.0039 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0190 0.0050 0.0000 -vertex 0.0250 0.0050 0.0000 -vertex 0.0300 0.0120 0.0000 +vertex -0.0125 -0.0221 -0.0039 +vertex -0.0300 -0.0182 0.0000 +vertex -0.0300 -0.0352 -0.0170 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 0.0120 0.0000 -vertex 0.0250 0.0050 0.0000 -vertex 0.0250 -0.0050 0.0000 +vertex -0.0300 -0.0182 0.0000 +vertex -0.0015 -0.0221 -0.0039 +vertex 0.0300 -0.0182 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0190 0.0050 0.0000 -vertex 0.0300 0.0120 0.0000 -vertex -0.0015 0.0065 0.0000 +vertex -0.0015 -0.0313 -0.0131 +vertex 0.0190 -0.0302 -0.0120 +vertex -0.0015 -0.0221 -0.0039 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0190 -0.0050 0.0000 -vertex 0.0190 0.0050 0.0000 -vertex -0.0015 0.0065 0.0000 +vertex 0.0190 -0.0302 -0.0120 +vertex 0.0300 -0.0352 -0.0170 +vertex 0.0250 -0.0302 -0.0120 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0300 0.0120 0.0000 -vertex -0.0300 -0.0120 0.0000 -vertex 0.0300 -0.0120 0.0000 +vertex 0.0300 -0.0352 -0.0170 +vertex 0.0190 -0.0302 -0.0120 +vertex -0.0015 -0.0313 -0.0131 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 -0.0120 0.0000 -vertex 0.0300 0.0120 0.0000 -vertex -0.0300 0.0120 0.0000 +vertex 0.0250 -0.0302 -0.0120 +vertex 0.0300 -0.0352 -0.0170 +vertex 0.0300 -0.0182 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0190 -0.0232 -0.0049 +vertex 0.0250 -0.0232 -0.0049 +vertex 0.0300 -0.0182 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0300 -0.0182 0.0000 +vertex 0.0250 -0.0232 -0.0049 +vertex 0.0250 -0.0302 -0.0120 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0190 -0.0232 -0.0049 +vertex 0.0300 -0.0182 0.0000 +vertex -0.0015 -0.0221 -0.0039 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0190 -0.0302 -0.0120 +vertex 0.0190 -0.0232 -0.0049 +vertex -0.0015 -0.0221 -0.0039 endloop endfacet facet normal 0 0 0 @@ -421,30 +449,16 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0300 0.0182 0.0000 +vertex -0.0300 -0.0281 -0.0240 +vertex -0.0300 -0.0352 -0.0170 vertex -0.0300 -0.0182 0.0000 -vertex 0.0300 -0.0182 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 -0.0182 0.0000 -vertex 0.0300 0.0182 0.0000 -vertex -0.0300 0.0182 0.0000 -endloop -endfacet -facet normal 0 0 0 -outer loop -vertex -0.0300 -0.0120 -0.0100 -vertex -0.0300 -0.0120 0.0000 -vertex -0.0300 0.0120 0.0000 -endloop -endfacet -facet normal 0 0 0 -outer loop -vertex -0.0300 0.0120 0.0000 -vertex -0.0300 0.0120 -0.0100 -vertex -0.0300 -0.0120 -0.0100 +vertex -0.0300 -0.0182 0.0000 +vertex -0.0300 -0.0111 -0.0071 +vertex -0.0300 -0.0281 -0.0240 endloop endfacet facet normal 0 0 0 @@ -463,16 +477,16 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 0.0120 -0.0100 -vertex 0.0300 0.0120 0.0000 -vertex 0.0300 -0.0120 0.0000 +vertex 0.0300 -0.0111 -0.0071 +vertex 0.0300 -0.0182 0.0000 +vertex 0.0300 -0.0352 -0.0170 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 -0.0120 0.0000 -vertex 0.0300 -0.0120 -0.0100 -vertex 0.0300 0.0120 -0.0100 +vertex 0.0300 -0.0352 -0.0170 +vertex 0.0300 -0.0281 -0.0240 +vertex 0.0300 -0.0111 -0.0071 endloop endfacet facet normal 0 0 0 diff --git a/rocolib/output/Boat_StackMount/graph-silhouette.dxf b/rocolib/output/Boat_StackMount/graph-silhouette.dxf index 88a6ffabcf44fdbb6c9c90eae4c9d892b17cb160..33b0a2f670af70ebe1d24804550a1c191bc80a60 100644 --- a/rocolib/output/Boat_StackMount/graph-silhouette.dxf +++ b/rocolib/output/Boat_StackMount/graph-silhouette.dxf @@ -938,20 +938,22 @@ MVIEW } 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -70.00000000000001 +34.0 20 -7.000000000000001 +66.600824 30 0.0 11 -10.000000000000002 +94.00000000000001 21 -7.000000000000001 +66.600824 31 0.0 0 @@ -963,33 +965,35 @@ DOTTED 8 0 10 -70.00000000000001 +94.00000000000001 20 -7.000000000000001 +66.600824 30 0.0 11 -70.00000000000001 +94.00000000000001 21 -31.000000000000007 +90.60082400000002 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -10.000000000000002 +94.00000000000001 20 -31.000000000000007 +90.60082400000002 30 0.0 11 -70.00000000000001 +34.0 21 -31.000000000000007 +90.60082400000002 31 0.0 0 @@ -1001,15 +1005,15 @@ DOTTED 8 0 10 -10.000000000000002 +34.0 20 -31.000000000000007 +90.60082400000002 30 0.0 11 -10.000000000000002 +34.0 21 -7.000000000000001 +66.600824 31 0.0 0 @@ -1019,15 +1023,15 @@ LINE 8 0 10 -80.00000000000001 +34.0 20 -7.000000000000001 +59.60082400000002 30 0.0 11 -70.00000000000001 +34.0 21 -7.000000000000001 +66.600824 31 0.0 0 @@ -1037,15 +1041,15 @@ LINE 8 0 10 -80.00000000000001 +94.00000000000001 20 -31.000000000000007 +59.60082400000002 30 0.0 11 -80.00000000000001 +34.0 21 -7.000000000000001 +59.60082400000002 31 0.0 0 @@ -1055,15 +1059,15 @@ LINE 8 0 10 -70.00000000000001 +94.00000000000001 20 -31.000000000000007 +66.600824 30 0.0 11 -80.00000000000001 +94.00000000000001 21 -31.000000000000007 +59.60082400000002 31 0.0 0 @@ -1073,15 +1077,15 @@ LINE 8 0 10 -0.0 +101.00000000000001 20 -31.000000000000007 +66.600824 30 0.0 11 -10.000000000000002 +94.00000000000001 21 -31.000000000000007 +66.600824 31 0.0 0 @@ -1091,15 +1095,15 @@ LINE 8 0 10 -0.0 +101.00000000000001 20 -7.000000000000001 +90.60082400000002 30 0.0 11 -0.0 +101.00000000000001 21 -31.000000000000007 +66.600824 31 0.0 0 @@ -1109,15 +1113,35 @@ LINE 8 0 10 -10.000000000000002 +94.00000000000001 20 -7.000000000000001 +90.60082400000002 30 0.0 11 +101.00000000000001 + 21 +90.60082400000002 + 31 0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +94.00000000000001 + 20 +90.60082400000002 + 30 +0.0 + 11 +94.00000000000001 21 -7.000000000000001 +151.600824 31 0.0 0 @@ -1127,33 +1151,35 @@ LINE 8 0 10 -27.500000000000004 +34.0 20 -12.5 +151.600824 30 0.0 11 -38.50000000000001 +94.00000000000001 21 -12.5 +151.600824 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -38.50000000000001 +34.0 20 -12.5 +90.60082400000002 30 0.0 11 -38.50000000000001 +34.0 21 -25.500000000000004 +151.600824 31 0.0 0 @@ -1163,33 +1189,35 @@ LINE 8 0 10 -38.50000000000001 +118.00000000000001 20 -25.500000000000004 +90.60082400000002 30 0.0 11 -27.500000000000004 +94.00000000000001 21 -25.500000000000004 +90.60082400000002 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -27.500000000000004 +118.00000000000001 20 -25.500000000000004 +90.60082400000002 30 0.0 11 -27.500000000000004 +118.00000000000001 21 -12.5 +151.600824 31 0.0 0 @@ -1199,15 +1227,15 @@ LINE 8 0 10 -59.00000000000001 +94.00000000000001 20 -14.000000000000002 +151.600824 30 0.0 11 -65.0 +118.00000000000001 21 -14.000000000000002 +151.600824 31 0.0 0 @@ -1217,15 +1245,15 @@ LINE 8 0 10 -65.0 +178.00000000000003 20 -14.000000000000002 +90.60082400000002 30 0.0 11 -65.0 +118.00000000000001 21 -24.000000000000004 +90.60082400000002 31 0.0 0 @@ -1235,15 +1263,15 @@ LINE 8 0 10 -65.0 +178.00000000000003 20 -24.000000000000004 +151.600824 30 0.0 11 -59.00000000000001 +178.00000000000003 21 -24.000000000000004 +90.60082400000002 31 0.0 0 @@ -1253,15 +1281,15 @@ LINE 8 0 10 -59.00000000000001 +118.00000000000001 20 -24.000000000000004 +151.600824 30 0.0 11 -59.00000000000001 +178.00000000000003 21 -14.000000000000002 +151.600824 31 0.0 0 @@ -1271,15 +1299,15 @@ LINE 8 0 10 -77.5 +34.0 20 -23.000000000000004 +90.60082400000002 30 0.0 11 -72.50000000000001 +10.000000000000002 21 -23.000000000000004 +90.60082400000002 31 0.0 0 @@ -1289,33 +1317,35 @@ LINE 8 0 10 -72.50000000000001 +10.000000000000002 20 -23.000000000000004 +151.600824 30 0.0 11 -72.50000000000001 +34.0 21 -15.000000000000002 +151.600824 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -72.50000000000001 +10.000000000000002 20 -15.000000000000002 +151.600824 30 0.0 11 -77.5 +10.000000000000002 21 -15.000000000000002 +90.60082400000002 31 0.0 0 @@ -1325,15 +1355,15 @@ LINE 8 0 10 -2.5000000000000004 +0.0 20 -15.000000000000002 +151.600824 30 0.0 11 -7.500000000000001 +10.000000000000002 21 -15.000000000000002 +151.600824 31 0.0 0 @@ -1343,15 +1373,15 @@ LINE 8 0 10 -7.500000000000001 +0.0 20 -15.000000000000002 +90.60082400000002 30 0.0 11 -7.500000000000001 +0.0 21 -23.000000000000004 +151.600824 31 0.0 0 @@ -1361,95 +1391,87 @@ LINE 8 0 10 -7.500000000000001 +10.000000000000002 20 -23.000000000000004 +90.60082400000002 30 0.0 11 -2.5000000000000004 +0.0 21 -23.000000000000004 +90.60082400000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -124.00000000000003 +27.000000000000004 20 -7.000000000000001 +90.60082400000002 30 0.0 11 -184.00000000000003 +34.0 21 -7.000000000000001 +90.60082400000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -184.00000000000003 +27.000000000000004 20 -7.000000000000001 +66.600824 30 0.0 11 -184.00000000000003 +27.000000000000004 21 -31.000000000000007 +90.60082400000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -184.00000000000003 +34.0 20 -31.000000000000007 +66.600824 30 0.0 11 -124.00000000000003 +27.000000000000004 21 -31.000000000000007 +66.600824 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -124.00000000000003 +83.0909090909091 20 -31.000000000000007 +61.35082400000001 30 0.0 11 -124.00000000000003 +86.59090909090911 21 -7.000000000000001 +61.35082400000001 31 0.0 0 @@ -1459,15 +1481,15 @@ LINE 8 0 10 -124.00000000000003 +86.59090909090911 20 -0.0 +61.35082400000001 30 0.0 11 -124.00000000000003 +83.0909090909091 21 -7.000000000000001 +64.850824 31 0.0 0 @@ -1477,15 +1499,15 @@ LINE 8 0 10 -184.00000000000003 +83.0909090909091 20 -0.0 +64.850824 30 0.0 11 -124.00000000000003 +72.1818181818182 21 -0.0 +64.850824 31 0.0 0 @@ -1495,15 +1517,15 @@ LINE 8 0 10 -184.00000000000003 +72.1818181818182 20 -7.000000000000001 +64.850824 30 0.0 11 -184.00000000000003 +68.6818181818182 21 -0.0 +61.35082400000001 31 0.0 0 @@ -1513,15 +1535,15 @@ LINE 8 0 10 -191.0 +68.6818181818182 20 -7.000000000000001 +61.35082400000001 30 0.0 11 -184.00000000000003 +72.1818181818182 21 -7.000000000000001 +61.35082400000001 31 0.0 0 @@ -1531,15 +1553,15 @@ LINE 8 0 10 -191.0 +55.818181818181834 20 -31.000000000000007 +61.35082400000001 30 0.0 11 -191.0 +59.31818181818183 21 -7.000000000000001 +61.35082400000001 31 0.0 0 @@ -1549,35 +1571,33 @@ LINE 8 0 10 -184.00000000000003 +59.31818181818183 20 -31.000000000000007 +61.35082400000001 30 0.0 11 -191.0 +55.818181818181834 21 -31.000000000000007 +64.850824 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -184.00000000000003 +55.818181818181834 20 -31.000000000000007 +64.850824 30 0.0 11 -184.00000000000003 +44.90909090909092 21 -92.00000000000001 +64.850824 31 0.0 0 @@ -1587,35 +1607,33 @@ LINE 8 0 10 -124.00000000000003 +44.90909090909092 20 -92.00000000000001 +64.850824 30 0.0 11 -184.00000000000003 +41.40909090909093 21 -92.00000000000001 +61.35082400000001 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -124.00000000000003 +41.40909090909093 20 -31.000000000000007 +61.35082400000001 30 0.0 11 -124.00000000000003 +44.90909090909092 21 -92.00000000000001 +61.35082400000001 31 0.0 0 @@ -1625,35 +1643,33 @@ LINE 8 0 10 -208.00000000000003 +99.25000000000001 20 -31.000000000000007 +82.60082400000002 30 0.0 11 -184.00000000000003 +95.75000000000001 21 -31.000000000000007 +82.60082400000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -208.00000000000003 +95.75000000000001 20 -31.000000000000007 +82.60082400000002 30 0.0 11 -208.00000000000003 +95.75000000000001 21 -92.00000000000001 +74.600824 31 0.0 0 @@ -1663,15 +1679,15 @@ LINE 8 0 10 -184.00000000000003 +95.75000000000001 20 -92.00000000000001 +74.600824 30 0.0 11 -208.00000000000003 +99.25000000000001 21 -92.00000000000001 +74.600824 31 0.0 0 @@ -1681,15 +1697,15 @@ LINE 8 0 10 -268.00000000000006 +42.0 20 -31.000000000000007 +142.10082400000002 30 0.0 11 -208.00000000000003 +42.0 21 -31.000000000000007 +124.10082400000002 31 0.0 0 @@ -1699,15 +1715,15 @@ LINE 8 0 10 -268.00000000000006 +42.0 20 -92.00000000000001 +124.10082400000002 30 0.0 11 -268.00000000000006 +72.00000000000001 21 -31.000000000000007 +124.10082400000002 31 0.0 0 @@ -1717,15 +1733,15 @@ LINE 8 0 10 -208.00000000000003 +72.00000000000001 20 -92.00000000000001 +124.10082400000002 30 0.0 11 -268.00000000000006 +72.00000000000001 21 -92.00000000000001 +142.10082400000002 31 0.0 0 @@ -1735,15 +1751,15 @@ LINE 8 0 10 -124.00000000000003 +72.00000000000001 20 -31.000000000000007 +142.10082400000002 30 0.0 11 -100.0 +42.0 21 -31.000000000000007 +142.10082400000002 31 0.0 0 @@ -1753,35 +1769,33 @@ LINE 8 0 10 -100.0 +115.40000000000002 20 -92.00000000000001 +100.600824 30 0.0 11 -124.00000000000003 +116.60000000000001 21 -92.00000000000001 +100.600824 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -100.0 +116.60000000000001 20 -92.00000000000001 +100.600824 30 0.0 11 -100.0 +116.60000000000001 21 -31.000000000000007 +141.60082400000002 31 0.0 0 @@ -1791,15 +1805,15 @@ LINE 8 0 10 -90.0 +116.60000000000001 20 -92.00000000000001 +141.60082400000002 30 0.0 11 -100.0 +115.40000000000002 21 -92.00000000000001 +141.60082400000002 31 0.0 0 @@ -1809,15 +1823,15 @@ LINE 8 0 10 -90.0 +115.40000000000002 20 -31.000000000000007 +141.60082400000002 30 0.0 11 -90.0 +115.40000000000002 21 -92.00000000000001 +100.600824 31 0.0 0 @@ -1827,15 +1841,15 @@ LINE 8 0 10 -100.0 +95.4 20 -31.000000000000007 +101.10082400000002 30 0.0 11 -90.0 +96.60000000000001 21 -31.000000000000007 +101.10082400000002 31 0.0 0 @@ -1845,15 +1859,15 @@ LINE 8 0 10 -117.00000000000001 +96.60000000000001 20 -31.000000000000007 +101.10082400000002 30 0.0 11 -124.00000000000003 +96.60000000000001 21 -31.000000000000007 +131.10082400000002 31 0.0 0 @@ -1863,15 +1877,15 @@ LINE 8 0 10 -117.00000000000001 +96.60000000000001 20 -7.000000000000001 +131.10082400000002 30 0.0 11 -117.00000000000001 +95.4 21 -31.000000000000007 +131.10082400000002 31 0.0 0 @@ -1881,15 +1895,15 @@ LINE 8 0 10 -124.00000000000003 +95.4 20 -7.000000000000001 +131.10082400000002 30 0.0 11 -117.00000000000001 +95.4 21 -7.000000000000001 +101.10082400000002 31 0.0 0 @@ -1899,15 +1913,15 @@ LINE 8 0 10 -173.09090909090912 +110.25000000000001 20 -1.7500000000000002 +98.350824 30 0.0 11 -176.59090909090912 +101.75000000000001 21 -1.7500000000000002 +98.350824 31 0.0 0 @@ -1917,15 +1931,15 @@ LINE 8 0 10 -176.59090909090912 +101.75000000000001 20 -1.7500000000000002 +98.350824 30 0.0 11 -173.09090909090912 +101.75000000000001 21 -5.25 +97.85082400000002 31 0.0 0 @@ -1935,15 +1949,15 @@ LINE 8 0 10 -173.09090909090912 +101.75000000000001 20 -5.25 +97.85082400000002 30 0.0 11 -162.18181818181822 +110.25000000000001 21 -5.25 +97.85082400000002 31 0.0 0 @@ -1953,15 +1967,15 @@ LINE 8 0 10 -162.18181818181822 +110.25000000000001 20 -5.25 +97.85082400000002 30 0.0 11 -158.6818181818182 +110.25000000000001 21 -1.7500000000000002 +98.350824 31 0.0 0 @@ -1971,15 +1985,15 @@ LINE 8 0 10 -158.6818181818182 +101.75000000000001 20 -1.7500000000000002 +146.10082400000002 30 0.0 11 -162.18181818181822 +110.25000000000001 21 -1.7500000000000002 +146.10082400000002 31 0.0 0 @@ -1989,15 +2003,15 @@ LINE 8 0 10 -145.8181818181818 +110.25000000000001 20 -1.7500000000000002 +146.10082400000002 30 0.0 11 -149.31818181818184 +110.25000000000001 21 -1.7500000000000002 +146.60082400000002 31 0.0 0 @@ -2007,15 +2021,15 @@ LINE 8 0 10 -149.31818181818184 +110.25000000000001 20 -1.7500000000000002 +146.60082400000002 30 0.0 11 -145.8181818181818 +101.75000000000001 21 -5.25 +146.60082400000002 31 0.0 0 @@ -2025,15 +2039,15 @@ LINE 8 0 10 -145.8181818181818 +101.75000000000001 20 -5.25 +146.60082400000002 30 0.0 11 -134.90909090909093 +101.75000000000001 21 -5.25 +146.10082400000002 31 0.0 0 @@ -2043,15 +2057,15 @@ LINE 8 0 10 -134.90909090909093 +133.00000000000003 20 -5.25 +104.60082400000002 30 0.0 11 -131.40909090909096 +133.00000000000003 21 -1.7500000000000002 +97.60082400000002 31 0.0 0 @@ -2061,15 +2075,15 @@ LINE 8 0 10 -131.40909090909096 +133.00000000000003 20 -1.7500000000000002 +97.60082400000002 30 0.0 11 -134.90909090909093 +153.00000000000003 21 -1.7500000000000002 +97.60082400000002 31 0.0 0 @@ -2079,15 +2093,15 @@ LINE 8 0 10 -189.25000000000003 +153.00000000000003 20 -23.000000000000004 +97.60082400000002 30 0.0 11 -185.75000000000003 +153.00000000000003 21 -23.000000000000004 +104.60082400000002 31 0.0 0 @@ -2097,15 +2111,15 @@ LINE 8 0 10 -185.75000000000003 +153.00000000000003 20 -23.000000000000004 +104.60082400000002 30 0.0 11 -185.75000000000003 +133.00000000000003 21 -15.000000000000002 +104.60082400000002 31 0.0 0 @@ -2115,15 +2129,15 @@ LINE 8 0 10 -185.75000000000003 +140.06818181818184 20 -15.000000000000002 +96.100824 30 0.0 11 -189.25000000000003 +128.65909090909093 21 -15.000000000000002 +96.100824 31 0.0 0 @@ -2133,15 +2147,15 @@ LINE 8 0 10 -132.0 +128.65909090909093 20 -82.50000000000001 +96.100824 30 0.0 11 -132.0 +128.65909090909093 21 -64.5 +95.60082400000002 31 0.0 0 @@ -2151,15 +2165,15 @@ LINE 8 0 10 -132.0 +128.65909090909093 20 -64.5 +95.60082400000002 30 0.0 11 -162.00000000000003 +140.06818181818184 21 -64.5 +95.60082400000002 31 0.0 0 @@ -2169,15 +2183,15 @@ LINE 8 0 10 -162.00000000000003 +140.06818181818184 20 -64.5 +95.60082400000002 30 0.0 11 -162.00000000000003 +140.06818181818184 21 -82.50000000000001 +96.100824 31 0.0 0 @@ -2187,15 +2201,15 @@ LINE 8 0 10 -162.00000000000003 +167.3409090909091 20 -82.50000000000001 +96.100824 30 0.0 11 -132.0 +155.93181818181822 21 -82.50000000000001 +96.100824 31 0.0 0 @@ -2205,15 +2219,15 @@ LINE 8 0 10 -205.40000000000003 +155.93181818181822 20 -41.0 +96.100824 30 0.0 11 -206.60000000000002 +155.93181818181822 21 -41.0 +95.60082400000002 31 0.0 0 @@ -2223,15 +2237,15 @@ LINE 8 0 10 -206.60000000000002 +155.93181818181822 20 -41.0 +95.60082400000002 30 0.0 11 -206.60000000000002 +167.3409090909091 21 -82.0 +95.60082400000002 31 0.0 0 @@ -2241,15 +2255,15 @@ LINE 8 0 10 -206.60000000000002 +167.3409090909091 20 -82.0 +95.60082400000002 30 0.0 11 -205.40000000000003 +167.3409090909091 21 -82.0 +96.100824 31 0.0 0 @@ -2259,15 +2273,15 @@ LINE 8 0 10 -205.40000000000003 +170.25000000000003 20 -82.0 +113.0326421818182 30 0.0 11 -205.40000000000003 +170.25000000000003 21 -41.0 +101.44173309090911 31 0.0 0 @@ -2277,15 +2291,15 @@ LINE 8 0 10 -185.4 +170.25000000000003 20 -41.5 +101.44173309090911 30 0.0 11 -186.60000000000002 +170.75 21 -41.5 +101.44173309090911 31 0.0 0 @@ -2295,15 +2309,15 @@ LINE 8 0 10 -186.60000000000002 +170.75 20 -41.5 +101.44173309090911 30 0.0 11 -186.60000000000002 +170.75 21 -71.5 +113.0326421818182 31 0.0 0 @@ -2313,15 +2327,15 @@ LINE 8 0 10 -186.60000000000002 +170.75 20 -71.5 +113.0326421818182 30 0.0 11 -185.4 +170.25000000000003 21 -71.5 +113.0326421818182 31 0.0 0 @@ -2331,15 +2345,15 @@ LINE 8 0 10 -185.4 +170.25000000000003 20 -71.5 +140.75991490909095 30 0.0 11 -185.4 +170.25000000000003 21 -41.5 +129.16900581818186 31 0.0 0 @@ -2349,15 +2363,15 @@ LINE 8 0 10 -200.25 +170.25000000000003 20 -38.75 +129.16900581818186 30 0.0 11 -191.75000000000003 +170.75 21 -38.75 +129.16900581818186 31 0.0 0 @@ -2367,15 +2381,15 @@ LINE 8 0 10 -191.75000000000003 +170.75 20 -38.75 +129.16900581818186 30 0.0 11 -191.75000000000003 +170.75 21 -38.25000000000001 +140.75991490909095 31 0.0 0 @@ -2385,15 +2399,15 @@ LINE 8 0 10 -191.75000000000003 +170.75 20 -38.25000000000001 +140.75991490909095 30 0.0 11 -200.25 +170.25000000000003 21 -38.25000000000001 +140.75991490909095 31 0.0 0 @@ -2403,15 +2417,15 @@ LINE 8 0 10 -200.25 +11.4 20 -38.25000000000001 +100.600824 30 0.0 11 -200.25 +12.600000000000001 21 -38.75 +100.600824 31 0.0 0 @@ -2421,15 +2435,15 @@ LINE 8 0 10 -191.75000000000003 +12.600000000000001 20 -86.5 +100.600824 30 0.0 11 -200.25 +12.600000000000001 21 -86.5 +141.60082400000002 31 0.0 0 @@ -2439,15 +2453,15 @@ LINE 8 0 10 -200.25 +12.600000000000001 20 -86.5 +141.60082400000002 30 0.0 11 -200.25 +11.4 21 -87.00000000000001 +141.60082400000002 31 0.0 0 @@ -2457,15 +2471,15 @@ LINE 8 0 10 -200.25 +11.4 20 -87.00000000000001 +141.60082400000002 30 0.0 11 -191.75000000000003 +11.4 21 -87.00000000000001 +100.600824 31 0.0 0 @@ -2475,15 +2489,15 @@ LINE 8 0 10 -191.75000000000003 +31.400000000000002 20 -87.00000000000001 +101.10082400000002 30 0.0 11 -191.75000000000003 +32.60000000000001 21 -86.5 +101.10082400000002 31 0.0 0 @@ -2493,15 +2507,15 @@ LINE 8 0 10 -223.0 +32.60000000000001 20 -45.0 +101.10082400000002 30 0.0 11 -223.0 +32.60000000000001 21 -38.00000000000001 +131.10082400000002 31 0.0 0 @@ -2511,15 +2525,15 @@ LINE 8 0 10 -223.0 +32.60000000000001 20 -38.00000000000001 +131.10082400000002 30 0.0 11 -243.00000000000003 +31.400000000000002 21 -38.00000000000001 +131.10082400000002 31 0.0 0 @@ -2529,15 +2543,15 @@ LINE 8 0 10 -243.00000000000003 +31.400000000000002 20 -38.00000000000001 +131.10082400000002 30 0.0 11 -243.00000000000003 +31.400000000000002 21 -45.0 +101.10082400000002 31 0.0 0 @@ -2547,15 +2561,15 @@ LINE 8 0 10 -243.00000000000003 +26.250000000000004 20 -45.0 +98.350824 30 0.0 11 -223.0 +17.750000000000004 21 -45.0 +98.350824 31 0.0 0 @@ -2565,15 +2579,15 @@ LINE 8 0 10 -230.0681818181818 +17.750000000000004 20 -36.5 +98.350824 30 0.0 11 -218.65909090909093 +17.750000000000004 21 -36.5 +97.85082400000002 31 0.0 0 @@ -2583,15 +2597,15 @@ LINE 8 0 10 -218.65909090909093 +17.750000000000004 20 -36.5 +97.85082400000002 30 0.0 11 -218.65909090909093 +26.250000000000004 21 -36.00000000000001 +97.85082400000002 31 0.0 0 @@ -2601,15 +2615,15 @@ LINE 8 0 10 -218.65909090909093 +26.250000000000004 20 -36.00000000000001 +97.85082400000002 30 0.0 11 -230.0681818181818 +26.250000000000004 21 -36.00000000000001 +98.350824 31 0.0 0 @@ -2619,15 +2633,15 @@ LINE 8 0 10 -230.0681818181818 +17.750000000000004 20 -36.00000000000001 +146.10082400000002 30 0.0 11 -230.0681818181818 +26.250000000000004 21 -36.5 +146.10082400000002 31 0.0 0 @@ -2637,15 +2651,15 @@ LINE 8 0 10 -257.3409090909092 +26.250000000000004 20 -36.5 +146.10082400000002 30 0.0 11 -245.93181818181822 +26.250000000000004 21 -36.5 +146.60082400000002 31 0.0 0 @@ -2655,15 +2669,15 @@ LINE 8 0 10 -245.93181818181822 +26.250000000000004 20 -36.5 +146.60082400000002 30 0.0 11 -245.93181818181822 +17.750000000000004 21 -36.00000000000001 +146.60082400000002 31 0.0 0 @@ -2673,15 +2687,15 @@ LINE 8 0 10 -245.93181818181822 +17.750000000000004 20 -36.00000000000001 +146.60082400000002 30 0.0 11 -257.3409090909092 +17.750000000000004 21 -36.00000000000001 +146.10082400000002 31 0.0 0 @@ -2691,15 +2705,15 @@ LINE 8 0 10 -257.3409090909092 +2.5000000000000004 20 -36.00000000000001 +101.69173309090911 30 0.0 11 -257.3409090909092 +7.500000000000001 21 -36.5 +101.69173309090911 31 0.0 0 @@ -2709,15 +2723,15 @@ LINE 8 0 10 -260.25 +7.500000000000001 20 -53.431818181818194 +101.69173309090911 30 0.0 11 -260.25 +7.500000000000001 21 -41.8409090909091 +112.7826421818182 31 0.0 0 @@ -2727,15 +2741,15 @@ LINE 8 0 10 -260.25 +7.500000000000001 20 -41.8409090909091 +112.7826421818182 30 0.0 11 -260.75000000000006 +2.5000000000000004 21 -41.8409090909091 +112.7826421818182 31 0.0 0 @@ -2745,15 +2759,15 @@ LINE 8 0 10 -260.75000000000006 +2.5000000000000004 20 -41.8409090909091 +129.41900581818183 30 0.0 11 -260.75000000000006 +7.500000000000001 21 -53.431818181818194 +129.41900581818183 31 0.0 0 @@ -2763,15 +2777,15 @@ LINE 8 0 10 -260.75000000000006 +7.500000000000001 20 -53.431818181818194 +129.41900581818183 30 0.0 11 -260.25 +7.500000000000001 21 -53.431818181818194 +140.50991490909095 31 0.0 0 @@ -2781,15 +2795,15 @@ LINE 8 0 10 -260.25 +7.500000000000001 20 -81.15909090909092 +140.50991490909095 30 0.0 11 -260.25 +2.5000000000000004 21 -69.56818181818183 +140.50991490909095 31 0.0 0 @@ -2799,15 +2813,15 @@ LINE 8 0 10 -260.25 +28.750000000000004 20 -69.56818181818183 +74.600824 30 0.0 11 -260.75000000000006 +32.25 21 -69.56818181818183 +74.600824 31 0.0 0 @@ -2817,15 +2831,15 @@ LINE 8 0 10 -260.75000000000006 +32.25 20 -69.56818181818183 +74.600824 30 0.0 11 -260.75000000000006 +32.25 21 -81.15909090909092 +82.60082400000002 31 0.0 0 @@ -2835,33 +2849,35 @@ LINE 8 0 10 -260.75000000000006 +32.25 20 -81.15909090909092 +82.60082400000002 30 0.0 11 -260.25 +28.750000000000004 21 -81.15909090909092 +82.60082400000002 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -101.40000000000002 +198.0 20 -41.0 +60.40054927679871 30 0.0 11 -102.6 +258.0 21 -41.0 +60.40054927679871 31 0.0 0 @@ -2871,15 +2887,15 @@ LINE 8 0 10 -102.6 +258.0 20 -41.0 +96.80109872320132 30 0.0 11 -102.6 +258.0 21 -82.0 +60.40054927679871 31 0.0 0 @@ -2889,15 +2905,15 @@ LINE 8 0 10 -102.6 +198.0 20 -82.0 +96.80109872320132 30 0.0 11 -101.40000000000002 +258.0 21 -82.0 +96.80109872320132 31 0.0 0 @@ -2907,51 +2923,75 @@ LINE 8 0 10 -101.40000000000002 +198.0 20 -82.0 +60.40054927679871 30 0.0 11 -101.40000000000002 +198.0 21 -41.0 +96.80109872320132 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -121.40000000000002 +258.0 20 -41.5 +36.40054927679871 30 0.0 11 -122.60000000000001 +198.0 21 -41.5 +36.40054927679871 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -122.60000000000001 +258.0 20 -41.5 +36.40054927679871 30 0.0 11 -122.60000000000001 +258.0 21 -71.5 +60.40054927679871 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +198.0 + 20 +60.40054927679871 + 30 +0.0 + 11 +198.0 + 21 +36.40054927679871 31 0.0 0 @@ -2961,15 +3001,15 @@ LINE 8 0 10 -122.60000000000001 +198.0 20 -71.5 +-1.696038935961042e-07 30 0.0 11 -121.40000000000002 +198.0 21 -71.5 +36.40054927679871 31 0.0 0 @@ -2979,15 +3019,15 @@ LINE 8 0 10 -121.40000000000002 +258.0 20 -71.5 +-1.696038935961042e-07 30 0.0 11 -121.40000000000002 +198.0 21 -41.5 +-1.696038935961042e-07 31 0.0 0 @@ -2997,15 +3037,15 @@ LINE 8 0 10 -116.25000000000001 +258.0 20 -38.75 +36.40054927679871 30 0.0 11 -107.75000000000001 +258.0 21 -38.75 +-1.696038935961042e-07 31 0.0 0 @@ -3015,15 +3055,15 @@ LINE 8 0 10 -107.75000000000001 +268.00000000000006 20 -38.75 +36.40054927679871 30 0.0 11 -107.75000000000001 +258.0 21 -38.25000000000001 +36.40054927679871 31 0.0 0 @@ -3033,15 +3073,15 @@ LINE 8 0 10 -107.75000000000001 +268.00000000000006 20 -38.25000000000001 +60.40054927679871 30 0.0 11 -116.25000000000001 +268.00000000000006 21 -38.25000000000001 +36.40054927679871 31 0.0 0 @@ -3051,15 +3091,15 @@ LINE 8 0 10 -116.25000000000001 +258.0 20 -38.25000000000001 +60.40054927679871 30 0.0 11 -116.25000000000001 +268.00000000000006 21 -38.75 +60.40054927679871 31 0.0 0 @@ -3069,15 +3109,15 @@ LINE 8 0 10 -107.75000000000001 +188.00000000000003 20 -86.5 +60.40054927679871 30 0.0 11 -116.25000000000001 +198.0 21 -86.5 +60.40054927679871 31 0.0 0 @@ -3087,15 +3127,15 @@ LINE 8 0 10 -116.25000000000001 +188.00000000000003 20 -86.5 +36.40054927679871 30 0.0 11 -116.25000000000001 +188.00000000000003 21 -87.00000000000001 +60.40054927679871 31 0.0 0 @@ -3105,15 +3145,15 @@ LINE 8 0 10 -116.25000000000001 +198.0 20 -87.00000000000001 +36.40054927679871 30 0.0 11 -107.75000000000001 +188.00000000000003 21 -87.00000000000001 +36.40054927679871 31 0.0 0 @@ -3123,15 +3163,15 @@ LINE 8 0 10 -107.75000000000001 +215.50000000000003 20 -87.00000000000001 +41.900549276798706 30 0.0 11 -107.75000000000001 +226.50000000000003 21 -86.5 +41.900549276798706 31 0.0 0 @@ -3141,15 +3181,15 @@ LINE 8 0 10 -92.50000000000001 +226.50000000000003 20 -42.0909090909091 +41.900549276798706 30 0.0 11 -97.50000000000001 +226.50000000000003 21 -42.0909090909091 +54.90054927679871 31 0.0 0 @@ -3159,15 +3199,15 @@ LINE 8 0 10 -97.50000000000001 +226.50000000000003 20 -42.0909090909091 +54.90054927679871 30 0.0 11 -97.50000000000001 +215.50000000000003 21 -53.181818181818194 +54.90054927679871 31 0.0 0 @@ -3177,15 +3217,15 @@ LINE 8 0 10 -97.50000000000001 +215.50000000000003 20 -53.181818181818194 +54.90054927679871 30 0.0 11 -92.50000000000001 +215.50000000000003 21 -53.181818181818194 +41.900549276798706 31 0.0 0 @@ -3195,15 +3235,15 @@ LINE 8 0 10 -92.50000000000001 +247.00000000000003 20 -69.81818181818184 +43.40054927679871 30 0.0 11 -97.50000000000001 +253.00000000000003 21 -69.81818181818184 +43.40054927679871 31 0.0 0 @@ -3213,15 +3253,15 @@ LINE 8 0 10 -97.50000000000001 +253.00000000000003 20 -69.81818181818184 +43.40054927679871 30 0.0 11 -97.50000000000001 +253.00000000000003 21 -80.9090909090909 +53.40054927679871 31 0.0 0 @@ -3231,15 +3271,15 @@ LINE 8 0 10 -97.50000000000001 +253.00000000000003 20 -80.9090909090909 +53.40054927679871 30 0.0 11 -92.50000000000001 +247.00000000000003 21 -80.9090909090909 +53.40054927679871 31 0.0 0 @@ -3249,15 +3289,15 @@ LINE 8 0 10 -118.75000000000001 +247.00000000000003 20 -15.000000000000002 +53.40054927679871 30 0.0 11 -122.25000000000001 +247.00000000000003 21 -15.000000000000002 +43.40054927679871 31 0.0 0 @@ -3267,15 +3307,15 @@ LINE 8 0 10 -122.25000000000001 +265.50000000000006 20 -15.000000000000002 +52.40054927679871 30 0.0 11 -122.25000000000001 +260.50000000000006 21 -23.000000000000004 +52.40054927679871 31 0.0 0 @@ -3285,15 +3325,15 @@ LINE 8 0 10 -122.25000000000001 +260.50000000000006 20 -23.000000000000004 +52.40054927679871 30 0.0 11 -118.75000000000001 +260.50000000000006 21 -23.000000000000004 +44.40054927679871 31 0.0 0 @@ -3303,15 +3343,15 @@ LINE 8 0 10 -338.00000000000006 +260.50000000000006 20 -0.7997252767987035 +44.40054927679871 30 0.0 11 -278.0 +265.50000000000006 21 -0.7997252767987035 +44.40054927679871 31 0.0 0 @@ -3321,15 +3361,15 @@ LINE 8 0 10 -338.00000000000006 +190.50000000000003 20 -37.200274723201304 +44.40054927679871 30 0.0 11 -338.00000000000006 +195.5 21 -0.7997252767987035 +44.40054927679871 31 0.0 0 @@ -3339,15 +3379,15 @@ LINE 8 0 10 -278.0 +195.5 20 -37.200274723201304 +44.40054927679871 30 0.0 11 -338.00000000000006 +195.5 21 -37.200274723201304 +52.40054927679871 31 0.0 0 @@ -3357,15 +3397,15 @@ LINE 8 0 10 -278.0 +195.5 20 -0.7997252767987035 +52.40054927679871 30 0.0 11 -278.0 +190.50000000000003 21 -37.200274723201304 +52.40054927679871 31 0.0 0 diff --git a/rocolib/output/Boat_StackMount/tree.png b/rocolib/output/Boat_StackMount/tree.png index 68a442512a48fe553bc9d2d3f420ed704635eca6..9dc8dd4414649ab04c555eabbb3cb98fdfa3aa45 100644 Binary files a/rocolib/output/Boat_StackMount/tree.png and b/rocolib/output/Boat_StackMount/tree.png differ diff --git a/rocolib/output/Cabin/graph-anim.svg b/rocolib/output/Cabin/graph-anim.svg new file mode 100644 index 0000000000000000000000000000000000000000..dbe32b346f3bc474c4c0feabe8907d2ddc9a0f48 --- /dev/null +++ b/rocolib/output/Cabin/graph-anim.svg @@ -0,0 +1,68 @@ +<?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="1200.000000mm" version="1.1" viewBox="0.000000 0.000000 120.000000 1200.000000" width="120.000000mm"> + <defs/> + <line opacity="0.5" stroke="#0000ff" x1="30.000000000000004" x2="90.0" y1="100.0" y2="100.0"/> + <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="90.0" y1="100.0" y2="1100.0000000000002"/> + <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="30.000000000000004" y1="1100.0000000000002" y2="1100.0000000000002"/> + <line opacity="0.5" stroke="#0000ff" x1="30.000000000000004" x2="30.000000000000004" y1="1100.0000000000002" y2="100.0"/> + <line stroke="#000000" x1="90.0" x2="30.000000000000004" y1="70.00000000000001" y2="70.00000000000001"/> + <line stroke="#000000" x1="90.0" x2="90.0" y1="100.0" y2="70.00000000000001"/> + <line stroke="#000000" x1="30.000000000000004" x2="30.000000000000004" y1="70.00000000000001" y2="100.0"/> + <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="120.00000000000001" y1="100.0" y2="100.0"/> + <line stroke="#000000" x1="90.0" x2="120.00000000000001" y1="1100.0000000000002" y2="1100.0000000000002"/> + <line stroke="#000000" x1="90.0" x2="90.0" y1="90.0" y2="100.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="90.0" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="100.0" y2="90.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="1200.0" y2="0.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="1200.0" y2="1200.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="1100.0000000000002" y2="1200.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="0.0" y2="100.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="0.0" y2="0.0"/> + <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="90.0" y1="1100.0000000000002" y2="1130.0"/> + <line stroke="#000000" x1="30.000000000000004" x2="90.0" y1="1130.0" y2="1130.0"/> + <line stroke="#000000" x1="30.000000000000004" x2="30.000000000000004" y1="1100.0000000000002" y2="1130.0"/> + <line stroke="#000000" x1="100.0" x2="90.0" y1="1100.0000000000002" y2="1100.0000000000002"/> + <line stroke="#000000" x1="100.0" x2="100.0" y1="1130.0" y2="1100.0000000000002"/> + <line stroke="#000000" x1="90.0" x2="100.0" y1="1130.0" y2="1130.0"/> + <line opacity="0.5" stroke="#0000ff" x1="0.0" x2="30.000000000000004" y1="100.0" y2="100.0"/> + <line opacity="0.5" stroke="#0000ff" x1="30.000000000000004" x2="0.0" y1="1100.0000000000002" y2="1100.0000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="90.0" y2="100.0"/> + <line stroke="#000000" x1="30.000000000000004" x2="0.0" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="30.000000000000004" x2="30.000000000000004" y1="100.0" y2="90.0"/> + <line stroke="#000000" x1="30.000000000000004" x2="30.000000000000004" y1="1110.0" y2="1100.0000000000002"/> + <line stroke="#000000" x1="0.0" x2="30.000000000000004" y1="1110.0" y2="1110.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="1100.0000000000002" y2="1110.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="1200.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="100.0" y2="0.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="1200.0" y2="1100.0000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="1200.0" y2="1200.0"/> + <line stroke="#888888" x1="82.25000000000001" x2="82.25000000000001" y1="90.25000000000001" y2="79.75"/> + <line stroke="#888888" x1="82.25000000000001" x2="82.75000000000001" y1="79.75" y2="79.75"/> + <line stroke="#888888" x1="82.75000000000001" x2="82.75000000000001" y1="79.75" y2="90.25000000000001"/> + <line stroke="#888888" x1="82.75000000000001" x2="82.25000000000001" y1="90.25000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="37.75000000000001" x2="37.75000000000001" y1="79.75" y2="90.25000000000001"/> + <line stroke="#888888" x1="37.75000000000001" x2="37.25000000000001" y1="90.25000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="37.25000000000001" x2="37.25000000000001" y1="90.25000000000001" y2="79.75"/> + <line stroke="#888888" x1="37.25000000000001" x2="37.75000000000001" y1="79.75" y2="79.75"/> + <line stroke="#888888" x1="99.75000000000001" x2="110.25000000000001" y1="1092.2500000000002" y2="1092.2500000000002"/> + <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="1092.2500000000002" y2="1092.7500000000002"/> + <line stroke="#888888" x1="110.25000000000001" x2="99.75000000000001" y1="1092.7500000000002" y2="1092.7500000000002"/> + <line stroke="#888888" x1="99.75000000000001" x2="99.75000000000001" y1="1092.7500000000002" y2="1092.2500000000002"/> + <line stroke="#888888" x1="110.00000000000001" x2="110.00000000000001" y1="92.50000000000001" y2="97.50000000000001"/> + <line stroke="#888888" x1="110.00000000000001" x2="100.0" y1="97.50000000000001" y2="97.50000000000001"/> + <line stroke="#888888" x1="100.0" x2="100.0" y1="97.50000000000001" y2="92.50000000000001"/> + <line stroke="#888888" x1="37.75000000000001" x2="37.75000000000001" y1="1109.7500000000002" y2="1120.2500000000002"/> + <line stroke="#888888" x1="37.75000000000001" x2="37.25000000000001" y1="1120.2500000000002" y2="1120.2500000000002"/> + <line stroke="#888888" x1="37.25000000000001" x2="37.25000000000001" y1="1120.2500000000002" y2="1109.7500000000002"/> + <line stroke="#888888" x1="37.25000000000001" x2="37.75000000000001" y1="1109.7500000000002" y2="1109.7500000000002"/> + <line stroke="#888888" x1="97.50000000000001" x2="92.50000000000001" y1="1120.0000000000002" y2="1120.0000000000002"/> + <line stroke="#888888" x1="92.50000000000001" x2="92.50000000000001" y1="1120.0000000000002" y2="1110.0"/> + <line stroke="#888888" x1="92.50000000000001" x2="97.50000000000001" y1="1110.0" y2="1110.0"/> + <line stroke="#888888" x1="20.000000000000004" x2="20.000000000000004" y1="92.50000000000001" y2="97.50000000000001"/> + <line stroke="#888888" x1="20.000000000000004" x2="10.000000000000002" y1="97.50000000000001" y2="97.50000000000001"/> + <line stroke="#888888" x1="10.000000000000002" x2="10.000000000000002" y1="97.50000000000001" y2="92.50000000000001"/> + <line stroke="#888888" x1="10.000000000000002" x2="10.000000000000002" y1="1107.5000000000002" y2="1102.5"/> + <line stroke="#888888" x1="10.000000000000002" x2="20.000000000000004" y1="1102.5" y2="1102.5"/> + <line stroke="#888888" x1="20.000000000000004" x2="20.000000000000004" y1="1102.5" y2="1107.5000000000002"/> +</svg> diff --git a/rocolib/output/Cabin/graph-autofold-default.dxf b/rocolib/output/Cabin/graph-autofold-default.dxf new file mode 100644 index 0000000000000000000000000000000000000000..f8fab9e50c5c40879bf216ad295b34a5535388f2 --- /dev/null +++ b/rocolib/output/Cabin/graph-autofold-default.dxf @@ -0,0 +1,2130 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +7 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +LAYER + 2 +90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +30.000000000000004 + 20 +100.0 + 30 +0.0 + 11 +90.0 + 21 +100.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +90.0 + 20 +100.0 + 30 +0.0 + 11 +90.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +90.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +30.000000000000004 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +30.000000000000004 + 20 +1100.0000000000002 + 30 +0.0 + 11 +30.000000000000004 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +90.0 + 20 +70.00000000000001 + 30 +0.0 + 11 +30.000000000000004 + 21 +70.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +90.0 + 20 +100.0 + 30 +0.0 + 11 +90.0 + 21 +70.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.000000000000004 + 20 +70.00000000000001 + 30 +0.0 + 11 +30.000000000000004 + 21 +100.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +90.0 + 20 +100.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +90.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +120.00000000000001 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +90.0 + 20 +90.0 + 30 +0.0 + 11 +90.0 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +120.00000000000001 + 20 +90.0 + 30 +0.0 + 11 +90.0 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +120.00000000000001 + 20 +100.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +120.00000000000001 + 20 +1200.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +120.00000000000001 + 20 +1200.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +1200.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +120.00000000000001 + 20 +1100.0000000000002 + 30 +0.0 + 11 +120.00000000000001 + 21 +1200.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +120.00000000000001 + 20 +0.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +120.00000000000001 + 20 +0.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +90.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +90.0 + 21 +1130.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.000000000000004 + 20 +1130.0 + 30 +0.0 + 11 +90.0 + 21 +1130.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.000000000000004 + 20 +1100.0000000000002 + 30 +0.0 + 11 +30.000000000000004 + 21 +1130.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +100.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +90.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +100.0 + 20 +1130.0 + 30 +0.0 + 11 +100.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +90.0 + 20 +1130.0 + 30 +0.0 + 11 +100.0 + 21 +1130.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +0.0 + 20 +100.0 + 30 +0.0 + 11 +30.000000000000004 + 21 +100.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +30.000000000000004 + 20 +1100.0000000000002 + 30 +0.0 + 11 +0.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +90.0 + 30 +0.0 + 11 +0.0 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.000000000000004 + 20 +90.0 + 30 +0.0 + 11 +0.0 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.000000000000004 + 20 +100.0 + 30 +0.0 + 11 +30.000000000000004 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.000000000000004 + 20 +1110.0 + 30 +0.0 + 11 +30.000000000000004 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +1110.0 + 30 +0.0 + 11 +30.000000000000004 + 21 +1110.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +0.0 + 21 +1110.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +1200.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +100.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +1200.0 + 30 +0.0 + 11 +0.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +1200.0 + 30 +0.0 + 11 +0.0 + 21 +1200.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +82.25000000000001 + 20 +90.25000000000001 + 30 +0.0 + 11 +82.25000000000001 + 21 +79.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +82.25000000000001 + 20 +79.75 + 30 +0.0 + 11 +82.75000000000001 + 21 +79.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +82.75000000000001 + 20 +79.75 + 30 +0.0 + 11 +82.75000000000001 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +82.75000000000001 + 20 +90.25000000000001 + 30 +0.0 + 11 +82.25000000000001 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +37.75000000000001 + 20 +79.75 + 30 +0.0 + 11 +37.75000000000001 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +37.75000000000001 + 20 +90.25000000000001 + 30 +0.0 + 11 +37.25000000000001 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +37.25000000000001 + 20 +90.25000000000001 + 30 +0.0 + 11 +37.25000000000001 + 21 +79.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +37.25000000000001 + 20 +79.75 + 30 +0.0 + 11 +37.75000000000001 + 21 +79.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +99.75000000000001 + 20 +1092.2500000000002 + 30 +0.0 + 11 +110.25000000000001 + 21 +1092.2500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +110.25000000000001 + 20 +1092.2500000000002 + 30 +0.0 + 11 +110.25000000000001 + 21 +1092.7500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +110.25000000000001 + 20 +1092.7500000000002 + 30 +0.0 + 11 +99.75000000000001 + 21 +1092.7500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +99.75000000000001 + 20 +1092.7500000000002 + 30 +0.0 + 11 +99.75000000000001 + 21 +1092.2500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +110.00000000000001 + 20 +92.50000000000001 + 30 +0.0 + 11 +110.00000000000001 + 21 +97.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +110.00000000000001 + 20 +97.50000000000001 + 30 +0.0 + 11 +100.0 + 21 +97.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +100.0 + 20 +97.50000000000001 + 30 +0.0 + 11 +100.0 + 21 +92.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +37.75000000000001 + 20 +1109.7500000000002 + 30 +0.0 + 11 +37.75000000000001 + 21 +1120.2500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +37.75000000000001 + 20 +1120.2500000000002 + 30 +0.0 + 11 +37.25000000000001 + 21 +1120.2500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +37.25000000000001 + 20 +1120.2500000000002 + 30 +0.0 + 11 +37.25000000000001 + 21 +1109.7500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +37.25000000000001 + 20 +1109.7500000000002 + 30 +0.0 + 11 +37.75000000000001 + 21 +1109.7500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +97.50000000000001 + 20 +1120.0000000000002 + 30 +0.0 + 11 +92.50000000000001 + 21 +1120.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +92.50000000000001 + 20 +1120.0000000000002 + 30 +0.0 + 11 +92.50000000000001 + 21 +1110.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +92.50000000000001 + 20 +1110.0 + 30 +0.0 + 11 +97.50000000000001 + 21 +1110.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +20.000000000000004 + 20 +92.50000000000001 + 30 +0.0 + 11 +20.000000000000004 + 21 +97.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +20.000000000000004 + 20 +97.50000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +97.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +10.000000000000002 + 20 +97.50000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +92.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +10.000000000000002 + 20 +1107.5000000000002 + 30 +0.0 + 11 +10.000000000000002 + 21 +1102.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +10.000000000000002 + 20 +1102.5 + 30 +0.0 + 11 +20.000000000000004 + 21 +1102.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +20.000000000000004 + 20 +1102.5 + 30 +0.0 + 11 +20.000000000000004 + 21 +1107.5000000000002 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/Cabin/graph-autofold-graph.dxf b/rocolib/output/Cabin/graph-autofold-graph.dxf new file mode 100644 index 0000000000000000000000000000000000000000..269378f78960799b41966e6581eece4887d29ac9 --- /dev/null +++ b/rocolib/output/Cabin/graph-autofold-graph.dxf @@ -0,0 +1,2110 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +30.000000000000004 + 20 +100.0 + 30 +0.0 + 11 +90.0 + 21 +100.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +100.0 + 30 +0.0 + 11 +90.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +30.000000000000004 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +30.000000000000004 + 20 +1100.0000000000002 + 30 +0.0 + 11 +30.000000000000004 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +70.00000000000001 + 30 +0.0 + 11 +30.000000000000004 + 21 +70.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +100.0 + 30 +0.0 + 11 +90.0 + 21 +70.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +70.00000000000001 + 30 +0.0 + 11 +30.000000000000004 + 21 +100.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +100.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +120.00000000000001 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +90.0 + 30 +0.0 + 11 +90.0 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +90.0 + 30 +0.0 + 11 +90.0 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +100.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +1200.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +1200.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +1200.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +1100.0000000000002 + 30 +0.0 + 11 +120.00000000000001 + 21 +1200.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +0.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +0.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +90.0 + 21 +1130.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +1130.0 + 30 +0.0 + 11 +90.0 + 21 +1130.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +1100.0000000000002 + 30 +0.0 + 11 +30.000000000000004 + 21 +1130.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +90.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +1130.0 + 30 +0.0 + 11 +100.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +1130.0 + 30 +0.0 + 11 +100.0 + 21 +1130.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +0.0 + 20 +100.0 + 30 +0.0 + 11 +30.000000000000004 + 21 +100.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +30.000000000000004 + 20 +1100.0000000000002 + 30 +0.0 + 11 +0.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +90.0 + 30 +0.0 + 11 +0.0 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +90.0 + 30 +0.0 + 11 +0.0 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +100.0 + 30 +0.0 + 11 +30.000000000000004 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +1110.0 + 30 +0.0 + 11 +30.000000000000004 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +1110.0 + 30 +0.0 + 11 +30.000000000000004 + 21 +1110.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +0.0 + 21 +1110.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +1200.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +100.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +1200.0 + 30 +0.0 + 11 +0.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +1200.0 + 30 +0.0 + 11 +0.0 + 21 +1200.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +82.25000000000001 + 20 +90.25000000000001 + 30 +0.0 + 11 +82.25000000000001 + 21 +79.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +82.25000000000001 + 20 +79.75 + 30 +0.0 + 11 +82.75000000000001 + 21 +79.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +82.75000000000001 + 20 +79.75 + 30 +0.0 + 11 +82.75000000000001 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +82.75000000000001 + 20 +90.25000000000001 + 30 +0.0 + 11 +82.25000000000001 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.75000000000001 + 20 +79.75 + 30 +0.0 + 11 +37.75000000000001 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.75000000000001 + 20 +90.25000000000001 + 30 +0.0 + 11 +37.25000000000001 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.25000000000001 + 20 +90.25000000000001 + 30 +0.0 + 11 +37.25000000000001 + 21 +79.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.25000000000001 + 20 +79.75 + 30 +0.0 + 11 +37.75000000000001 + 21 +79.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +99.75000000000001 + 20 +1092.2500000000002 + 30 +0.0 + 11 +110.25000000000001 + 21 +1092.2500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +110.25000000000001 + 20 +1092.2500000000002 + 30 +0.0 + 11 +110.25000000000001 + 21 +1092.7500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +110.25000000000001 + 20 +1092.7500000000002 + 30 +0.0 + 11 +99.75000000000001 + 21 +1092.7500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +99.75000000000001 + 20 +1092.7500000000002 + 30 +0.0 + 11 +99.75000000000001 + 21 +1092.2500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +110.00000000000001 + 20 +92.50000000000001 + 30 +0.0 + 11 +110.00000000000001 + 21 +97.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +110.00000000000001 + 20 +97.50000000000001 + 30 +0.0 + 11 +100.0 + 21 +97.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +97.50000000000001 + 30 +0.0 + 11 +100.0 + 21 +92.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.75000000000001 + 20 +1109.7500000000002 + 30 +0.0 + 11 +37.75000000000001 + 21 +1120.2500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.75000000000001 + 20 +1120.2500000000002 + 30 +0.0 + 11 +37.25000000000001 + 21 +1120.2500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.25000000000001 + 20 +1120.2500000000002 + 30 +0.0 + 11 +37.25000000000001 + 21 +1109.7500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.25000000000001 + 20 +1109.7500000000002 + 30 +0.0 + 11 +37.75000000000001 + 21 +1109.7500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +97.50000000000001 + 20 +1120.0000000000002 + 30 +0.0 + 11 +92.50000000000001 + 21 +1120.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +92.50000000000001 + 20 +1120.0000000000002 + 30 +0.0 + 11 +92.50000000000001 + 21 +1110.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +92.50000000000001 + 20 +1110.0 + 30 +0.0 + 11 +97.50000000000001 + 21 +1110.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +20.000000000000004 + 20 +92.50000000000001 + 30 +0.0 + 11 +20.000000000000004 + 21 +97.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +20.000000000000004 + 20 +97.50000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +97.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +97.50000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +92.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +1107.5000000000002 + 30 +0.0 + 11 +10.000000000000002 + 21 +1102.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +1102.5 + 30 +0.0 + 11 +20.000000000000004 + 21 +1102.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +20.000000000000004 + 20 +1102.5 + 30 +0.0 + 11 +20.000000000000004 + 21 +1107.5000000000002 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/Cabin/graph-lasercutter.svg b/rocolib/output/Cabin/graph-lasercutter.svg new file mode 100644 index 0000000000000000000000000000000000000000..5c580f097e65b3ef24fc03af31b9d121a1fbc0ab --- /dev/null +++ b/rocolib/output/Cabin/graph-lasercutter.svg @@ -0,0 +1,68 @@ +<?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="1200.000000mm" version="1.1" viewBox="0.000000 0.000000 120.000000 1200.000000" width="120.000000mm"> + <defs/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="30.000000000000004" x2="90.0" y1="100.0" y2="100.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="90.0" y1="100.0" y2="1100.0000000000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="30.000000000000004" y1="1100.0000000000002" y2="1100.0000000000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="30.000000000000004" x2="30.000000000000004" y1="1100.0000000000002" y2="100.0"/> + <line stroke="#000000" x1="90.0" x2="30.000000000000004" y1="70.00000000000001" y2="70.00000000000001"/> + <line stroke="#000000" x1="90.0" x2="90.0" y1="100.0" y2="70.00000000000001"/> + <line stroke="#000000" x1="30.000000000000004" x2="30.000000000000004" y1="70.00000000000001" y2="100.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="120.00000000000001" y1="100.0" y2="100.0"/> + <line stroke="#000000" x1="90.0" x2="120.00000000000001" y1="1100.0000000000002" y2="1100.0000000000002"/> + <line stroke="#000000" x1="90.0" x2="90.0" y1="90.0" y2="100.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="90.0" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="100.0" y2="90.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="1200.0" y2="0.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="1200.0" y2="1200.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="1100.0000000000002" y2="1200.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="0.0" y2="100.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="0.0" y2="0.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="90.0" y1="1100.0000000000002" y2="1130.0"/> + <line stroke="#000000" x1="30.000000000000004" x2="90.0" y1="1130.0" y2="1130.0"/> + <line stroke="#000000" x1="30.000000000000004" x2="30.000000000000004" y1="1100.0000000000002" y2="1130.0"/> + <line stroke="#000000" x1="100.0" x2="90.0" y1="1100.0000000000002" y2="1100.0000000000002"/> + <line stroke="#000000" x1="100.0" x2="100.0" y1="1130.0" y2="1100.0000000000002"/> + <line stroke="#000000" x1="90.0" x2="100.0" y1="1130.0" y2="1130.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="30.000000000000004" y1="100.0" y2="100.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="30.000000000000004" x2="0.0" y1="1100.0000000000002" y2="1100.0000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="90.0" y2="100.0"/> + <line stroke="#000000" x1="30.000000000000004" x2="0.0" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="30.000000000000004" x2="30.000000000000004" y1="100.0" y2="90.0"/> + <line stroke="#000000" x1="30.000000000000004" x2="30.000000000000004" y1="1110.0" y2="1100.0000000000002"/> + <line stroke="#000000" x1="0.0" x2="30.000000000000004" y1="1110.0" y2="1110.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="1100.0000000000002" y2="1110.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="1200.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="100.0" y2="0.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="1200.0" y2="1100.0000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="1200.0" y2="1200.0"/> + <line stroke="#888888" x1="82.25000000000001" x2="82.25000000000001" y1="90.25000000000001" y2="79.75"/> + <line stroke="#888888" x1="82.25000000000001" x2="82.75000000000001" y1="79.75" y2="79.75"/> + <line stroke="#888888" x1="82.75000000000001" x2="82.75000000000001" y1="79.75" y2="90.25000000000001"/> + <line stroke="#888888" x1="82.75000000000001" x2="82.25000000000001" y1="90.25000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="37.75000000000001" x2="37.75000000000001" y1="79.75" y2="90.25000000000001"/> + <line stroke="#888888" x1="37.75000000000001" x2="37.25000000000001" y1="90.25000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="37.25000000000001" x2="37.25000000000001" y1="90.25000000000001" y2="79.75"/> + <line stroke="#888888" x1="37.25000000000001" x2="37.75000000000001" y1="79.75" y2="79.75"/> + <line stroke="#888888" x1="99.75000000000001" x2="110.25000000000001" y1="1092.2500000000002" y2="1092.2500000000002"/> + <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="1092.2500000000002" y2="1092.7500000000002"/> + <line stroke="#888888" x1="110.25000000000001" x2="99.75000000000001" y1="1092.7500000000002" y2="1092.7500000000002"/> + <line stroke="#888888" x1="99.75000000000001" x2="99.75000000000001" y1="1092.7500000000002" y2="1092.2500000000002"/> + <line stroke="#888888" x1="110.00000000000001" x2="110.00000000000001" y1="92.50000000000001" y2="97.50000000000001"/> + <line stroke="#888888" x1="110.00000000000001" x2="100.0" y1="97.50000000000001" y2="97.50000000000001"/> + <line stroke="#888888" x1="100.0" x2="100.0" y1="97.50000000000001" y2="92.50000000000001"/> + <line stroke="#888888" x1="37.75000000000001" x2="37.75000000000001" y1="1109.7500000000002" y2="1120.2500000000002"/> + <line stroke="#888888" x1="37.75000000000001" x2="37.25000000000001" y1="1120.2500000000002" y2="1120.2500000000002"/> + <line stroke="#888888" x1="37.25000000000001" x2="37.25000000000001" y1="1120.2500000000002" y2="1109.7500000000002"/> + <line stroke="#888888" x1="37.25000000000001" x2="37.75000000000001" y1="1109.7500000000002" y2="1109.7500000000002"/> + <line stroke="#888888" x1="97.50000000000001" x2="92.50000000000001" y1="1120.0000000000002" y2="1120.0000000000002"/> + <line stroke="#888888" x1="92.50000000000001" x2="92.50000000000001" y1="1120.0000000000002" y2="1110.0"/> + <line stroke="#888888" x1="92.50000000000001" x2="97.50000000000001" y1="1110.0" y2="1110.0"/> + <line stroke="#888888" x1="20.000000000000004" x2="20.000000000000004" y1="92.50000000000001" y2="97.50000000000001"/> + <line stroke="#888888" x1="20.000000000000004" x2="10.000000000000002" y1="97.50000000000001" y2="97.50000000000001"/> + <line stroke="#888888" x1="10.000000000000002" x2="10.000000000000002" y1="97.50000000000001" y2="92.50000000000001"/> + <line stroke="#888888" x1="10.000000000000002" x2="10.000000000000002" y1="1107.5000000000002" y2="1102.5"/> + <line stroke="#888888" x1="10.000000000000002" x2="20.000000000000004" y1="1102.5" y2="1102.5"/> + <line stroke="#888888" x1="20.000000000000004" x2="20.000000000000004" y1="1102.5" y2="1107.5000000000002"/> +</svg> diff --git a/rocolib/output/Cabin/graph-model.png b/rocolib/output/Cabin/graph-model.png new file mode 100644 index 0000000000000000000000000000000000000000..3dcbea92b9359e30f09270ce542bd71f5214c6bf Binary files /dev/null and b/rocolib/output/Cabin/graph-model.png differ diff --git a/rocolib/output/Cabin/graph-model.stl b/rocolib/output/Cabin/graph-model.stl new file mode 100644 index 0000000000000000000000000000000000000000..828739611639e7cea84644ce5250999f9351fadb --- /dev/null +++ b/rocolib/output/Cabin/graph-model.stl @@ -0,0 +1,128 @@ +solid python +facet normal 0 0 0 +outer loop +vertex -0.0300 0.5000 0.0000 +vertex -0.0300 -0.5000 0.0000 +vertex 0.0300 -0.5000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0300 -0.5000 0.0000 +vertex 0.0300 0.5000 0.0000 +vertex -0.0300 0.5000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0300 0.5000 -0.0300 +vertex -0.0300 -0.5000 -0.0300 +vertex -0.0300 -0.5000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0300 -0.5000 0.0000 +vertex -0.0300 0.5000 0.0000 +vertex -0.0300 0.5000 -0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0300 0.5000 -0.0300 +vertex -0.0300 0.5000 0.0000 +vertex 0.0300 0.5000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0300 0.5000 0.0000 +vertex 0.0300 0.5000 -0.0300 +vertex -0.0300 0.5000 -0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0300 0.5000 0.0000 +vertex 0.0300 -0.5000 0.0000 +vertex 0.0300 -0.5000 -0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0300 -0.5000 -0.0300 +vertex 0.0300 0.5000 -0.0300 +vertex 0.0300 0.5000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0300 -0.5000 0.0000 +vertex -0.0300 -0.5000 -0.0300 +vertex 0.0300 -0.5000 -0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0300 -0.5000 -0.0300 +vertex 0.0300 -0.5000 0.0000 +vertex -0.0300 -0.5000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0200 0.5000 -0.0300 +vertex -0.0300 0.5000 -0.0300 +vertex -0.0300 0.5000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0300 0.5000 0.0000 +vertex -0.0200 0.5000 0.0000 +vertex -0.0200 0.5000 -0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0300 0.4900 -0.0300 +vertex 0.0300 0.5000 -0.0300 +vertex 0.0300 0.5000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0300 0.5000 0.0000 +vertex 0.0300 0.4900 0.0000 +vertex 0.0300 0.4900 -0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0200 -0.5000 -0.0300 +vertex 0.0300 -0.5000 -0.0300 +vertex 0.0300 -0.5000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0300 -0.5000 0.0000 +vertex 0.0200 -0.5000 0.0000 +vertex 0.0200 -0.5000 -0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0200 -0.5000 -0.0000 +vertex -0.0300 -0.5000 0.0000 +vertex -0.0300 -0.5000 -0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0300 -0.5000 -0.0300 +vertex -0.0200 -0.5000 -0.0300 +vertex -0.0200 -0.5000 -0.0000 +endloop +endfacet +endsolid python diff --git a/rocolib/output/Cabin/graph-silhouette.dxf b/rocolib/output/Cabin/graph-silhouette.dxf new file mode 100644 index 0000000000000000000000000000000000000000..269378f78960799b41966e6581eece4887d29ac9 --- /dev/null +++ b/rocolib/output/Cabin/graph-silhouette.dxf @@ -0,0 +1,2110 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +30.000000000000004 + 20 +100.0 + 30 +0.0 + 11 +90.0 + 21 +100.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +100.0 + 30 +0.0 + 11 +90.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +30.000000000000004 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +30.000000000000004 + 20 +1100.0000000000002 + 30 +0.0 + 11 +30.000000000000004 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +70.00000000000001 + 30 +0.0 + 11 +30.000000000000004 + 21 +70.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +100.0 + 30 +0.0 + 11 +90.0 + 21 +70.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +70.00000000000001 + 30 +0.0 + 11 +30.000000000000004 + 21 +100.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +100.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +120.00000000000001 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +90.0 + 30 +0.0 + 11 +90.0 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +90.0 + 30 +0.0 + 11 +90.0 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +100.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +1200.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +1200.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +1200.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +1100.0000000000002 + 30 +0.0 + 11 +120.00000000000001 + 21 +1200.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +0.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +0.0 + 30 +0.0 + 11 +120.00000000000001 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +90.0 + 21 +1130.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +1130.0 + 30 +0.0 + 11 +90.0 + 21 +1130.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +1100.0000000000002 + 30 +0.0 + 11 +30.000000000000004 + 21 +1130.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +90.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +1130.0 + 30 +0.0 + 11 +100.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +1130.0 + 30 +0.0 + 11 +100.0 + 21 +1130.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +0.0 + 20 +100.0 + 30 +0.0 + 11 +30.000000000000004 + 21 +100.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +30.000000000000004 + 20 +1100.0000000000002 + 30 +0.0 + 11 +0.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +90.0 + 30 +0.0 + 11 +0.0 + 21 +100.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +90.0 + 30 +0.0 + 11 +0.0 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +100.0 + 30 +0.0 + 11 +30.000000000000004 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +1110.0 + 30 +0.0 + 11 +30.000000000000004 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +1110.0 + 30 +0.0 + 11 +30.000000000000004 + 21 +1110.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +1100.0000000000002 + 30 +0.0 + 11 +0.0 + 21 +1110.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +1200.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +100.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +1200.0 + 30 +0.0 + 11 +0.0 + 21 +1100.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +1200.0 + 30 +0.0 + 11 +0.0 + 21 +1200.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +82.25000000000001 + 20 +90.25000000000001 + 30 +0.0 + 11 +82.25000000000001 + 21 +79.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +82.25000000000001 + 20 +79.75 + 30 +0.0 + 11 +82.75000000000001 + 21 +79.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +82.75000000000001 + 20 +79.75 + 30 +0.0 + 11 +82.75000000000001 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +82.75000000000001 + 20 +90.25000000000001 + 30 +0.0 + 11 +82.25000000000001 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.75000000000001 + 20 +79.75 + 30 +0.0 + 11 +37.75000000000001 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.75000000000001 + 20 +90.25000000000001 + 30 +0.0 + 11 +37.25000000000001 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.25000000000001 + 20 +90.25000000000001 + 30 +0.0 + 11 +37.25000000000001 + 21 +79.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.25000000000001 + 20 +79.75 + 30 +0.0 + 11 +37.75000000000001 + 21 +79.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +99.75000000000001 + 20 +1092.2500000000002 + 30 +0.0 + 11 +110.25000000000001 + 21 +1092.2500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +110.25000000000001 + 20 +1092.2500000000002 + 30 +0.0 + 11 +110.25000000000001 + 21 +1092.7500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +110.25000000000001 + 20 +1092.7500000000002 + 30 +0.0 + 11 +99.75000000000001 + 21 +1092.7500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +99.75000000000001 + 20 +1092.7500000000002 + 30 +0.0 + 11 +99.75000000000001 + 21 +1092.2500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +110.00000000000001 + 20 +92.50000000000001 + 30 +0.0 + 11 +110.00000000000001 + 21 +97.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +110.00000000000001 + 20 +97.50000000000001 + 30 +0.0 + 11 +100.0 + 21 +97.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +97.50000000000001 + 30 +0.0 + 11 +100.0 + 21 +92.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.75000000000001 + 20 +1109.7500000000002 + 30 +0.0 + 11 +37.75000000000001 + 21 +1120.2500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.75000000000001 + 20 +1120.2500000000002 + 30 +0.0 + 11 +37.25000000000001 + 21 +1120.2500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.25000000000001 + 20 +1120.2500000000002 + 30 +0.0 + 11 +37.25000000000001 + 21 +1109.7500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.25000000000001 + 20 +1109.7500000000002 + 30 +0.0 + 11 +37.75000000000001 + 21 +1109.7500000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +97.50000000000001 + 20 +1120.0000000000002 + 30 +0.0 + 11 +92.50000000000001 + 21 +1120.0000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +92.50000000000001 + 20 +1120.0000000000002 + 30 +0.0 + 11 +92.50000000000001 + 21 +1110.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +92.50000000000001 + 20 +1110.0 + 30 +0.0 + 11 +97.50000000000001 + 21 +1110.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +20.000000000000004 + 20 +92.50000000000001 + 30 +0.0 + 11 +20.000000000000004 + 21 +97.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +20.000000000000004 + 20 +97.50000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +97.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +97.50000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +92.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +1107.5000000000002 + 30 +0.0 + 11 +10.000000000000002 + 21 +1102.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +1102.5 + 30 +0.0 + 11 +20.000000000000004 + 21 +1102.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +20.000000000000004 + 20 +1102.5 + 30 +0.0 + 11 +20.000000000000004 + 21 +1107.5000000000002 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/Cabin/tree.png b/rocolib/output/Cabin/tree.png new file mode 100644 index 0000000000000000000000000000000000000000..b786fd76381ae41da33ec2090fab07dd1ad0611d Binary files /dev/null and b/rocolib/output/Cabin/tree.png differ diff --git a/rocolib/output/ESP32StackBoat/graph-anim.svg b/rocolib/output/ESP32StackBoat/graph-anim.svg index 12a3ef5ffd2afb1721880b3bad366eb9a3bcb876..ffc4d9fb9055d38cd0392747be5fc64655fa3dc3 100644 --- a/rocolib/output/ESP32StackBoat/graph-anim.svg +++ b/rocolib/output/ESP32StackBoat/graph-anim.svg @@ -1,272 +1,218 @@ <?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="361.666667mm" version="1.1" viewBox="0.000000 0.000000 670.710678 361.666667" width="670.710678mm"> +<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="304.339811mm" version="1.1" viewBox="0.000000 0.000000 561.333333 304.339811" width="561.333333mm"> <defs/> - <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="34.0" y1="59.50000000000001" y2="120.50000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="120.50000000000001" y2="59.50000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="22.000000000000004" y1="59.50000000000001" y2="59.50000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="22.000000000000004" x2="34.0" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="19.500000000000004" y2="59.50000000000001"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="59.50000000000001" y2="19.500000000000004"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="14.5" y2="19.500000000000004"/> - <line stroke="#000000" x1="22.000000000000004" x2="10.000000000000002" y1="14.5" y2="14.5"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="19.500000000000004" y2="14.5"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="19.500000000000004" y2="59.50000000000001"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="59.50000000000001" y2="19.500000000000004"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="14.5" y2="19.500000000000004"/> - <line stroke="#000000" x1="34.0" x2="22.000000000000004" y1="14.5" y2="14.5"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="19.500000000000004" y2="14.5"/> - <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="59.50000000000001" y2="59.50000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="70.00000000000001" y1="59.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="94.00000000000001" x2="70.00000000000001" y1="59.50000000000001" y2="59.50000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="94.00000000000001" y1="59.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="70.00000000000001" x2="94.00000000000001" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="130.0" x2="94.00000000000001" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#000000" x1="130.0" x2="130.0" y1="120.50000000000001" y2="59.50000000000001"/> - <line stroke="#000000" x1="94.00000000000001" x2="130.0" y1="120.50000000000001" y2="120.50000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="22.000000000000004" y1="120.50000000000001" y2="120.50000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="22.000000000000004" x2="10.000000000000002" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="160.50000000000003" y2="120.50000000000001"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="120.50000000000001" y2="160.50000000000003"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="165.50000000000003" y2="160.50000000000003"/> - <line stroke="#000000" x1="22.000000000000004" x2="34.0" y1="165.50000000000003" y2="165.50000000000003"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="160.50000000000003" y2="165.50000000000003"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="160.50000000000003" y2="120.50000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="120.50000000000001" y2="160.50000000000003"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="165.50000000000003" y2="160.50000000000003"/> - <line stroke="#000000" x1="10.000000000000002" x2="22.000000000000004" y1="165.50000000000003" y2="165.50000000000003"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="160.50000000000003" y2="165.50000000000003"/> - <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="0.0" x2="0.0" y1="59.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#888888" x1="11.400000000000002" x2="12.6" y1="69.5" y2="69.5"/> - <line stroke="#888888" x1="12.6" x2="12.6" y1="69.5" y2="110.50000000000001"/> - <line stroke="#888888" x1="12.6" x2="11.400000000000002" y1="110.50000000000001" y2="110.50000000000001"/> - <line stroke="#888888" x1="11.400000000000002" x2="11.400000000000002" y1="110.50000000000001" y2="69.5"/> - <line stroke="#888888" x1="31.400000000000002" x2="32.60000000000001" y1="70.00000000000001" y2="70.00000000000001"/> - <line stroke="#888888" x1="32.60000000000001" x2="32.60000000000001" y1="70.00000000000001" y2="100.0"/> - <line stroke="#888888" x1="32.60000000000001" x2="31.400000000000002" y1="100.0" y2="100.0"/> - <line stroke="#888888" x1="31.400000000000002" x2="31.400000000000002" y1="100.0" y2="70.00000000000001"/> - <line stroke="#888888" x1="18.000000000000004" x2="18.000000000000004" y1="15.750000000000002" y2="18.25"/> - <line stroke="#888888" x1="18.000000000000004" x2="14.000000000000002" y1="18.25" y2="18.25"/> - <line stroke="#888888" x1="14.000000000000002" x2="14.000000000000002" y1="18.25" y2="15.750000000000002"/> - <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="15.750000000000002" y2="18.25"/> - <line stroke="#888888" x1="30.000000000000004" x2="26.000000000000004" y1="18.25" y2="18.25"/> - <line stroke="#888888" x1="26.000000000000004" x2="26.000000000000004" y1="18.25" y2="15.750000000000002"/> - <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="111.00000000000001" y2="93.00000000000001"/> - <line stroke="#888888" x1="30.000000000000004" x2="60.00000000000001" y1="93.00000000000001" y2="93.00000000000001"/> - <line stroke="#888888" x1="60.00000000000001" x2="60.00000000000001" y1="93.00000000000001" y2="111.00000000000001"/> - <line stroke="#888888" x1="60.00000000000001" x2="30.000000000000004" y1="111.00000000000001" y2="111.00000000000001"/> - <line stroke="#888888" x1="91.40000000000002" x2="92.60000000000001" y1="69.5" y2="69.5"/> - <line stroke="#888888" x1="92.60000000000001" x2="92.60000000000001" y1="69.5" y2="110.50000000000001"/> - <line stroke="#888888" x1="92.60000000000001" x2="91.40000000000002" y1="110.50000000000001" y2="110.50000000000001"/> - <line stroke="#888888" x1="91.40000000000002" x2="91.40000000000002" y1="110.50000000000001" y2="69.5"/> - <line stroke="#888888" x1="71.4" x2="72.60000000000001" y1="70.00000000000001" y2="70.00000000000001"/> - <line stroke="#888888" x1="72.60000000000001" x2="72.60000000000001" y1="70.00000000000001" y2="100.0"/> - <line stroke="#888888" x1="72.60000000000001" x2="71.4" y1="100.0" y2="100.0"/> - <line stroke="#888888" x1="71.4" x2="71.4" y1="100.0" y2="70.00000000000001"/> - <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="73.50000000000001" y2="66.50000000000001"/> - <line stroke="#888888" x1="97.00000000000001" x2="117.00000000000001" y1="66.50000000000001" y2="66.50000000000001"/> - <line stroke="#888888" x1="117.00000000000001" x2="117.00000000000001" y1="66.50000000000001" y2="73.50000000000001"/> - <line stroke="#888888" x1="117.00000000000001" x2="97.00000000000001" y1="73.50000000000001" y2="73.50000000000001"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="81.9318181818182" y2="70.3409090909091"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="70.3409090909091" y2="70.3409090909091"/> - <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="70.3409090909091" y2="81.9318181818182"/> - <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="81.9318181818182" y2="81.9318181818182"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="109.65909090909092" y2="98.06818181818183"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="98.06818181818183" y2="98.06818181818183"/> - <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="98.06818181818183" y2="109.65909090909092"/> - <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="109.65909090909092" y2="109.65909090909092"/> - <line stroke="#888888" x1="26.000000000000004" x2="26.000000000000004" y1="164.25000000000003" y2="161.75"/> - <line stroke="#888888" x1="26.000000000000004" x2="30.000000000000004" y1="161.75" y2="161.75"/> - <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="161.75" y2="164.25000000000003"/> - <line stroke="#888888" x1="14.000000000000002" x2="14.000000000000002" y1="164.25000000000003" y2="161.75"/> - <line stroke="#888888" x1="14.000000000000002" x2="18.000000000000004" y1="161.75" y2="161.75"/> - <line stroke="#888888" x1="18.000000000000004" x2="18.000000000000004" y1="161.75" y2="164.25000000000003"/> - <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="70.5909090909091" y2="70.5909090909091"/> - <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="70.5909090909091" y2="81.68181818181819"/> - <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="81.68181818181819" y2="81.68181818181819"/> - <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="98.31818181818184" y2="98.31818181818184"/> - <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="98.31818181818184" y2="109.40909090909092"/> - <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="109.40909090909092" y2="109.40909090909092"/> - <line stroke="#000000" x1="186.00000000000003" x2="140.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="198.0" x2="186.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="210.00000000000003" x2="198.0" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="222.00000000000003" x2="210.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="234.00000000000003" x2="222.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="246.00000000000003" x2="234.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="258.0" x2="246.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="270.00000000000006" x2="258.0" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="270.00000000000006" x2="270.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="140.00000000000003" x2="270.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="140.00000000000003" x2="140.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#888888" x1="206.25000000000003" x2="201.75000000000003" y1="94.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="201.75000000000003" x2="201.75000000000003" y1="94.00000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="201.75000000000003" x2="206.25000000000003" y1="93.50000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="206.25000000000003" x2="206.25000000000003" y1="93.50000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="218.25000000000003" x2="213.75" y1="94.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="213.75" x2="213.75" y1="94.00000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="213.75" x2="218.25000000000003" y1="93.50000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="218.25000000000003" x2="218.25000000000003" y1="93.50000000000001" y2="94.00000000000001"/> - <line stroke="#000000" x1="326.00000000000006" x2="280.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="338.00000000000006" x2="326.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="350.0" x2="338.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="362.00000000000006" x2="350.0" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="374.00000000000006" x2="362.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="386.00000000000006" x2="374.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="398.00000000000006" x2="386.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="410.00000000000006" x2="398.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="410.00000000000006" x2="410.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="280.00000000000006" x2="410.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="280.00000000000006" x2="280.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#888888" x1="334.25000000000006" x2="329.75000000000006" y1="94.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="329.75000000000006" x2="329.75000000000006" y1="94.00000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="329.75000000000006" x2="334.25000000000006" y1="93.50000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="334.25000000000006" x2="334.25000000000006" y1="93.50000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="346.25" x2="341.75" y1="94.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="341.75" x2="341.75" y1="94.00000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="341.75" x2="346.25" y1="93.50000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="346.25" x2="346.25" y1="93.50000000000001" y2="94.00000000000001"/> - <line stroke="#000000" x1="612.710678118655" x2="604.710678118655" y1="55.00000000000001" y2="55.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="612.710678118655" x2="612.710678118655" y1="55.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="604.710678118655" x2="612.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="604.710678118655" x2="604.710678118655" y1="125.00000000000001" y2="55.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="620.710678118655" x2="620.710678118655" y1="55.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="55.00000000000001" y2="5.000000000000001"/> - <line stroke="#000000" x1="612.710678118655" x2="612.710678118655" y1="5.000000000000001" y2="55.00000000000001"/> - <line stroke="#000000" x1="612.710678118655" x2="612.710678118655" y1="0.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="620.710678118655" x2="612.710678118655" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="5.000000000000001" y2="0.0"/> - <line stroke="#000000" x1="628.710678118655" x2="620.710678118655" y1="55.00000000000001" y2="55.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="628.710678118655" x2="628.710678118655" y1="55.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="620.710678118655" x2="628.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="636.710678118655" x2="628.710678118655" y1="55.00000000000001" y2="55.00000000000001"/> - <line stroke="#000000" x1="636.710678118655" x2="636.710678118655" y1="125.00000000000001" y2="55.00000000000001"/> - <line stroke="#000000" x1="628.710678118655" x2="636.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="612.710678118655" x2="612.710678118655" y1="125.00000000000001" y2="175.0"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="175.0" y2="125.00000000000001"/> - <line opacity="1.0" stroke="#ff0000" x1="620.710678118655" x2="612.710678118655" y1="175.0" y2="175.0"/> - <line stroke="#000000" x1="612.710678118655" x2="490.7106781186549" y1="175.0" y2="175.0"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="175.0" y2="175.0"/> - <line stroke="#000000" x1="490.7106781186549" x2="490.7106781186549" y1="175.0" y2="175.0"/> - <line opacity="0.5" stroke="#0000ff" x1="490.7106781186549" x2="620.710678118655" y1="225.00000000000003" y2="225.00000000000003"/> - <line opacity="0.1944001122142148" stroke="#0000ff" x1="490.7106781186549" x2="490.7106781186549" y1="175.0" y2="225.00000000000003"/> - <line opacity="1.0" stroke="#ff0000" x1="458.4510113187008" x2="490.7106781186549" y1="175.0" y2="225.00000000000003"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="458.4510113187008" x2="490.7106781186549" y1="175.0" y2="175.0"/> - <line stroke="#000000" x1="458.45101131870075" x2="445.1550063219791" y1="175.0" y2="204.3922158601766"/> - <line opacity="1.0" stroke="#0000ff" x1="445.1550063219791" x2="490.7106781186549" y1="204.3922158601766" y2="225.00000000000003"/> - <line opacity="0.367097734030027" stroke="#0000ff" x1="420.00000000000017" x2="490.7106781186549" y1="260.0" y2="225.00000000000003"/> - <line stroke="#000000" x1="431.85900132525745" x2="420.00000000000017" y1="233.78443172035318" y2="260.0"/> - <line stroke="#000000" x1="445.15500632197916" x2="431.85900132525745" y1="204.3922158601766" y2="233.78443172035318"/> - <line opacity="0.25" stroke="#0000ff" x1="490.7106781186549" x2="490.7106781186549" y1="225.00000000000003" y2="260.0"/> - <line opacity="0.25" stroke="#0000ff" x1="490.7106781186549" x2="490.7106781186549" y1="260.0" y2="295.0"/> - <line opacity="0.367097734030027" stroke="#0000ff" x1="420.00000000000017" x2="490.7106781186549" y1="260.0" y2="295.0"/> - <line opacity="0.5" stroke="#0000ff" x1="490.7106781186549" x2="620.710678118655" y1="295.0" y2="295.0"/> - <line opacity="0.5" stroke="#0000ff" x1="620.710678118655" x2="620.710678118655" y1="260.0" y2="225.00000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="620.710678118655" x2="620.710678118655" y1="295.0" y2="260.0"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="275.00000000000006" y2="225.00000000000003"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="260.0" y2="275.00000000000006"/> - <line opacity="1.0" stroke="#0000ff" x1="620.710678118655" x2="670.7106781186549" y1="225.00000000000003" y2="225.00000000000003"/> - <line opacity="1.0" stroke="#ff0000" x1="620.710678118655" x2="670.7106781186549" y1="225.00000000000003" y2="175.00000000000003"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="225.00000000000003" y2="175.00000000000003"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="620.710678118655" x2="670.7106781186549" y1="175.0" y2="175.0"/> - <line opacity="0.5" stroke="#0000ff" x1="620.710678118655" x2="620.710678118655" y1="225.00000000000003" y2="175.0"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="158.33333333333337" y2="175.0"/> - <line stroke="#000000" x1="670.7106781186549" x2="620.710678118655" y1="158.33333333333337" y2="158.33333333333337"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="175.0" y2="158.33333333333337"/> - <line opacity="1.0" stroke="#0000ff" x1="670.7106781186549" x2="620.710678118655" y1="295.0" y2="295.0"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="245.00000000000003" y2="260.0"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="295.0" y2="245.00000000000003"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="345.00000000000006" y2="295.0"/> - <line opacity="1.0" stroke="#ff0000" x1="670.7106781186549" x2="620.710678118655" y1="345.00000000000006" y2="295.0"/> - <line opacity="0.5" stroke="#0000ff" x1="620.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="295.0"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="670.7106781186549" x2="620.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> - <line opacity="0.1944001122142148" stroke="#0000ff" x1="490.71067811865487" x2="490.71067811865487" y1="295.0" y2="345.00000000000006"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="490.71067811865487" x2="458.45101131870075" y1="345.00000000000006" y2="345.00000000000006"/> - <line opacity="1.0" stroke="#ff0000" x1="490.71067811865487" x2="458.45101131870075" y1="295.0" y2="345.00000000000006"/> - <line stroke="#000000" x1="490.71067811865487" x2="490.71067811865487" y1="355.75322226665145" y2="345.00000000000006"/> - <line stroke="#000000" x1="458.45101131870075" x2="490.71067811865487" y1="355.75322226665145" y2="355.75322226665145"/> - <line stroke="#000000" x1="458.45101131870075" x2="458.45101131870075" y1="345.00000000000006" y2="355.75322226665145"/> - <line opacity="1.0" stroke="#0000ff" x1="490.71067811865487" x2="445.1550063219791" y1="295.0" y2="315.6077841398234"/> - <line stroke="#000000" x1="445.1550063219791" x2="458.45101131870075" y1="315.6077841398234" y2="345.00000000000006"/> - <line stroke="#000000" x1="431.8590013252574" x2="445.1550063219791" y1="286.21556827964685" y2="315.6077841398234"/> - <line stroke="#000000" x1="420.00000000000006" x2="431.8590013252574" y1="260.0" y2="286.21556827964685"/> - <line stroke="#000000" x1="612.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> - <line stroke="#000000" x1="490.71067811865487" x2="612.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> - <line stroke="#000000" x1="490.71067811865487" x2="490.71067811865487" y1="345.00000000000006" y2="345.00000000000006"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="361.66666666666674" y2="345.00000000000006"/> - <line stroke="#000000" x1="620.710678118655" x2="670.7106781186549" y1="361.66666666666674" y2="361.66666666666674"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="361.66666666666674"/> - <line stroke="#000000" x1="458.4510113187008" x2="458.4510113187008" y1="164.2467777333486" y2="175.0"/> - <line stroke="#000000" x1="490.7106781186549" x2="458.4510113187008" y1="164.2467777333486" y2="164.2467777333486"/> - <line stroke="#000000" x1="490.7106781186549" x2="490.7106781186549" y1="175.0" y2="164.2467777333486"/> - <line stroke="#000000" x1="596.7106781186549" x2="604.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="596.7106781186549" x2="596.7106781186549" y1="55.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="604.710678118655" x2="596.7106781186549" y1="55.00000000000001" y2="55.00000000000001"/> - <line stroke="#888888" x1="604.710678118655" x2="612.710678118655" y1="86.00000000000001" y2="86.00000000000001"/> - <line stroke="#888888" x1="612.710678118655" x2="612.710678118655" y1="86.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="612.710678118655" x2="604.710678118655" y1="94.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="604.710678118655" x2="604.710678118655" y1="94.00000000000001" y2="86.00000000000001"/> - <line stroke="#888888" x1="618.0440114519882" x2="618.0440114519882" y1="1.2500000000000002" y2="3.7500000000000004"/> - <line stroke="#888888" x1="618.0440114519882" x2="615.3773447853215" y1="3.7500000000000004" y2="3.7500000000000004"/> - <line stroke="#888888" x1="615.3773447853215" x2="615.3773447853215" y1="3.7500000000000004" y2="1.2500000000000002"/> - <line stroke="#888888" x1="620.710678118655" x2="628.710678118655" y1="86.00000000000001" y2="86.00000000000001"/> - <line stroke="#888888" x1="628.710678118655" x2="628.710678118655" y1="86.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="628.710678118655" x2="620.710678118655" y1="94.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="620.710678118655" x2="620.710678118655" y1="94.00000000000001" y2="86.00000000000001"/> - <line stroke="#888888" x1="630.4606781186549" x2="630.4606781186549" y1="80.70454545454547" y2="67.47727272727273"/> - <line stroke="#888888" x1="630.4606781186549" x2="630.9606781186549" y1="67.47727272727273" y2="67.47727272727273"/> - <line stroke="#888888" x1="630.9606781186549" x2="630.9606781186549" y1="67.47727272727273" y2="80.70454545454547"/> - <line stroke="#888888" x1="630.9606781186549" x2="630.4606781186549" y1="80.70454545454547" y2="80.70454545454547"/> - <line stroke="#888888" x1="630.4606781186549" x2="630.4606781186549" y1="112.52272727272728" y2="99.29545454545456"/> - <line stroke="#888888" x1="630.4606781186549" x2="630.9606781186549" y1="99.29545454545456" y2="99.29545454545456"/> - <line stroke="#888888" x1="630.9606781186549" x2="630.9606781186549" y1="99.29545454545456" y2="112.52272727272728"/> - <line stroke="#888888" x1="630.9606781186549" x2="630.4606781186549" y1="112.52272727272728" y2="112.52272727272728"/> - <line stroke="#888888" x1="448.40187590113186" x2="443.7637963941598" y1="217.3888829577983" y2="227.64184496249058"/> - <line stroke="#888888" x1="443.7637963941598" x2="443.308239676193" y1="227.64184496249058" y2="227.43576712109234"/> - <line stroke="#888888" x1="443.308239676193" x2="447.94631918316514" y1="227.43576712109234" y2="217.18280511640006"/> - <line stroke="#888888" x1="447.94631918316514" x2="448.40187590113186" y1="217.18280511640006" y2="217.3888829577983"/> - <line stroke="#888888" x1="657.9606781186549" x2="657.9606781186549" y1="258.58333333333337" y2="241.41666666666669"/> - <line stroke="#888888" x1="657.9606781186549" x2="658.4606781186549" y1="241.41666666666669" y2="241.41666666666669"/> - <line stroke="#888888" x1="658.4606781186549" x2="658.4606781186549" y1="241.41666666666669" y2="258.58333333333337"/> - <line stroke="#888888" x1="658.4606781186549" x2="657.9606781186549" y1="258.58333333333337" y2="258.58333333333337"/> - <line stroke="#888888" x1="654.0440114519881" x2="654.0440114519881" y1="162.50000000000003" y2="170.83333333333334"/> - <line stroke="#888888" x1="654.0440114519881" x2="637.3773447853216" y1="170.83333333333334" y2="170.83333333333334"/> - <line stroke="#888888" x1="637.3773447853216" x2="637.3773447853216" y1="170.83333333333334" y2="162.50000000000003"/> - <line stroke="#888888" x1="657.9606781186549" x2="657.9606781186549" y1="278.5833333333333" y2="261.4166666666667"/> - <line stroke="#888888" x1="657.9606781186549" x2="658.4606781186549" y1="261.4166666666667" y2="261.4166666666667"/> - <line stroke="#888888" x1="658.4606781186549" x2="658.4606781186549" y1="261.4166666666667" y2="278.5833333333333"/> - <line stroke="#888888" x1="658.4606781186549" x2="657.9606781186549" y1="278.5833333333333" y2="278.5833333333333"/> - <line stroke="#888888" x1="469.20423358535214" x2="469.20423358535214" y1="353.06491669998854" y2="347.6883055666629"/> - <line stroke="#888888" x1="469.20423358535214" x2="479.95745585200353" y1="347.6883055666629" y2="347.6883055666629"/> - <line stroke="#888888" x1="479.95745585200353" x2="479.95745585200353" y1="347.6883055666629" y2="353.06491669998854"/> - <line stroke="#888888" x1="443.76379639415967" x2="448.4018759011318" y1="292.3581550375095" y2="302.6111170422017"/> - <line stroke="#888888" x1="448.4018759011318" x2="447.94631918316503" y1="302.6111170422017" y2="302.81719488360005"/> - <line stroke="#888888" x1="447.94631918316503" x2="443.30823967619295" y1="302.81719488360005" y2="292.5642328789077"/> - <line stroke="#888888" x1="443.30823967619295" x2="443.76379639415967" y1="292.5642328789077" y2="292.3581550375095"/> - <line stroke="#888888" x1="615.1273447853216" x2="618.2940114519882" y1="341.0" y2="341.0"/> - <line stroke="#888888" x1="618.2940114519882" x2="618.2940114519882" y1="341.0" y2="341.5"/> - <line stroke="#888888" x1="618.2940114519882" x2="615.1273447853216" y1="341.5" y2="341.5"/> - <line stroke="#888888" x1="615.1273447853216" x2="615.1273447853216" y1="341.5" y2="341.0"/> - <line stroke="#888888" x1="637.3773447853216" x2="637.3773447853216" y1="357.50000000000006" y2="349.16666666666674"/> - <line stroke="#888888" x1="637.3773447853216" x2="654.0440114519881" y1="349.16666666666674" y2="349.16666666666674"/> - <line stroke="#888888" x1="654.0440114519881" x2="654.0440114519881" y1="349.16666666666674" y2="357.50000000000006"/> - <line stroke="#888888" x1="479.95745585200353" x2="479.95745585200353" y1="166.93508330001148" y2="172.31169443333718"/> - <line stroke="#888888" x1="479.95745585200353" x2="469.20423358535214" y1="172.31169443333718" y2="172.31169443333718"/> - <line stroke="#888888" x1="469.20423358535214" x2="469.20423358535214" y1="172.31169443333718" y2="166.93508330001148"/> - <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="67.72727272727273" y2="63.727272727272734"/> - <line stroke="#888888" x1="598.7106781186549" x2="602.710678118655" y1="63.727272727272734" y2="67.72727272727273"/> - <line stroke="#888888" x1="602.710678118655" x2="602.710678118655" y1="67.72727272727273" y2="80.45454545454547"/> - <line stroke="#888888" x1="602.710678118655" x2="598.7106781186549" y1="80.45454545454547" y2="84.45454545454547"/> - <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="84.45454545454547" y2="80.45454545454547"/> - <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="99.54545454545455" y2="95.54545454545456"/> - <line stroke="#888888" x1="598.7106781186549" x2="602.710678118655" y1="95.54545454545456" y2="99.54545454545455"/> - <line stroke="#888888" x1="602.710678118655" x2="602.710678118655" y1="99.54545454545455" y2="112.27272727272728"/> - <line stroke="#888888" x1="602.710678118655" x2="598.7106781186549" y1="112.27272727272728" y2="116.27272727272728"/> - <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="116.27272727272728" y2="112.27272727272728"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="94.00000000000001" y1="147.33981100000003" y2="147.33981100000003"/> + <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="94.00000000000001" y1="147.33981100000003" y2="171.339811"/> + <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="34.0" y1="171.339811" y2="171.339811"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="34.0" y1="171.339811" y2="147.33981100000003"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="140.33981100000003" y2="147.33981100000003"/> + <line stroke="#000000" x1="94.00000000000001" x2="34.0" y1="140.33981100000003" y2="140.33981100000003"/> + <line stroke="#000000" x1="94.00000000000001" x2="94.00000000000001" y1="147.33981100000003" y2="140.33981100000003"/> + <line stroke="#000000" x1="101.00000000000001" x2="94.00000000000001" y1="147.33981100000003" y2="147.33981100000003"/> + <line stroke="#000000" x1="101.00000000000001" x2="101.00000000000001" y1="171.339811" y2="147.33981100000003"/> + <line stroke="#000000" x1="94.00000000000001" x2="101.00000000000001" y1="171.339811" y2="171.339811"/> + <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="94.00000000000001" y1="171.339811" y2="232.33981100000003"/> + <line stroke="#000000" x1="34.0" x2="94.00000000000001" y1="232.33981100000003" y2="232.33981100000003"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="34.0" y1="171.339811" y2="232.33981100000003"/> + <line stroke="#000000" x1="118.00000000000001" x2="94.00000000000001" y1="171.339811" y2="171.339811"/> + <line opacity="0.5" stroke="#0000ff" x1="118.00000000000001" x2="118.00000000000001" y1="171.339811" y2="232.33981100000003"/> + <line stroke="#000000" x1="94.00000000000001" x2="118.00000000000001" y1="232.33981100000003" y2="232.33981100000003"/> + <line stroke="#000000" x1="178.00000000000003" x2="118.00000000000001" y1="171.339811" y2="171.339811"/> + <line stroke="#000000" x1="178.00000000000003" x2="178.00000000000003" y1="232.33981100000003" y2="171.339811"/> + <line stroke="#000000" x1="118.00000000000001" x2="178.00000000000003" y1="232.33981100000003" y2="232.33981100000003"/> + <line stroke="#000000" x1="34.0" x2="10.000000000000002" y1="171.339811" y2="171.339811"/> + <line stroke="#000000" x1="10.000000000000002" x2="34.0" y1="232.33981100000003" y2="232.33981100000003"/> + <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="232.33981100000003" y2="171.339811"/> + <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="232.33981100000003" y2="232.33981100000003"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="171.339811" y2="232.33981100000003"/> + <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="171.339811" y2="171.339811"/> + <line stroke="#000000" x1="27.000000000000004" x2="34.0" y1="171.339811" y2="171.339811"/> + <line stroke="#000000" x1="27.000000000000004" x2="27.000000000000004" y1="147.33981100000003" y2="171.339811"/> + <line stroke="#000000" x1="34.0" x2="27.000000000000004" y1="147.33981100000003" y2="147.33981100000003"/> + <line stroke="#888888" x1="83.0909090909091" x2="86.59090909090911" y1="142.08981100000003" y2="142.08981100000003"/> + <line stroke="#888888" x1="86.59090909090911" x2="83.0909090909091" y1="142.08981100000003" y2="145.58981100000003"/> + <line stroke="#888888" x1="83.0909090909091" x2="72.1818181818182" y1="145.58981100000003" y2="145.58981100000003"/> + <line stroke="#888888" x1="72.1818181818182" x2="68.6818181818182" y1="145.58981100000003" y2="142.08981100000003"/> + <line stroke="#888888" x1="68.6818181818182" x2="72.1818181818182" y1="142.08981100000003" y2="142.08981100000003"/> + <line stroke="#888888" x1="55.818181818181834" x2="59.31818181818183" y1="142.08981100000003" y2="142.08981100000003"/> + <line stroke="#888888" x1="59.31818181818183" x2="55.818181818181834" y1="142.08981100000003" y2="145.58981100000003"/> + <line stroke="#888888" x1="55.818181818181834" x2="44.90909090909092" y1="145.58981100000003" y2="145.58981100000003"/> + <line stroke="#888888" x1="44.90909090909092" x2="41.40909090909093" y1="145.58981100000003" y2="142.08981100000003"/> + <line stroke="#888888" x1="41.40909090909093" x2="44.90909090909092" y1="142.08981100000003" y2="142.08981100000003"/> + <line stroke="#888888" x1="99.25000000000001" x2="95.75000000000001" y1="163.33981100000003" y2="163.33981100000003"/> + <line stroke="#888888" x1="95.75000000000001" x2="95.75000000000001" y1="163.33981100000003" y2="155.339811"/> + <line stroke="#888888" x1="95.75000000000001" x2="99.25000000000001" y1="155.339811" y2="155.339811"/> + <line stroke="#888888" x1="42.0" x2="42.0" y1="222.83981100000003" y2="204.83981100000003"/> + <line stroke="#888888" x1="42.0" x2="72.00000000000001" y1="204.83981100000003" y2="204.83981100000003"/> + <line stroke="#888888" x1="72.00000000000001" x2="72.00000000000001" y1="204.83981100000003" y2="222.83981100000003"/> + <line stroke="#888888" x1="72.00000000000001" x2="42.0" y1="222.83981100000003" y2="222.83981100000003"/> + <line stroke="#888888" x1="115.40000000000002" x2="116.60000000000001" y1="181.33981100000003" y2="181.33981100000003"/> + <line stroke="#888888" x1="116.60000000000001" x2="116.60000000000001" y1="181.33981100000003" y2="222.33981100000003"/> + <line stroke="#888888" x1="116.60000000000001" x2="115.40000000000002" y1="222.33981100000003" y2="222.33981100000003"/> + <line stroke="#888888" x1="115.40000000000002" x2="115.40000000000002" y1="222.33981100000003" y2="181.33981100000003"/> + <line stroke="#888888" x1="95.4" x2="96.60000000000001" y1="181.83981100000003" y2="181.83981100000003"/> + <line stroke="#888888" x1="96.60000000000001" x2="96.60000000000001" y1="181.83981100000003" y2="211.83981100000003"/> + <line stroke="#888888" x1="96.60000000000001" x2="95.4" y1="211.83981100000003" y2="211.83981100000003"/> + <line stroke="#888888" x1="95.4" x2="95.4" y1="211.83981100000003" y2="181.83981100000003"/> + <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="179.08981100000003" y2="179.08981100000003"/> + <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="179.08981100000003" y2="178.58981100000003"/> + <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="178.58981100000003" y2="178.58981100000003"/> + <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="178.58981100000003" y2="179.08981100000003"/> + <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="226.83981100000003" y2="226.83981100000003"/> + <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="226.83981100000003" y2="227.33981100000003"/> + <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="227.33981100000003" y2="227.33981100000003"/> + <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="227.33981100000003" y2="226.83981100000003"/> + <line stroke="#888888" x1="133.00000000000003" x2="133.00000000000003" y1="185.33981100000003" y2="178.33981100000003"/> + <line stroke="#888888" x1="133.00000000000003" x2="153.00000000000003" y1="178.33981100000003" y2="178.33981100000003"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="178.33981100000003" y2="185.33981100000003"/> + <line stroke="#888888" x1="153.00000000000003" x2="133.00000000000003" y1="185.33981100000003" y2="185.33981100000003"/> + <line stroke="#888888" x1="140.06818181818184" x2="128.65909090909093" y1="176.83981100000003" y2="176.83981100000003"/> + <line stroke="#888888" x1="128.65909090909093" x2="128.65909090909093" y1="176.83981100000003" y2="176.33981100000003"/> + <line stroke="#888888" x1="128.65909090909093" x2="140.06818181818184" y1="176.33981100000003" y2="176.33981100000003"/> + <line stroke="#888888" x1="140.06818181818184" x2="140.06818181818184" y1="176.33981100000003" y2="176.83981100000003"/> + <line stroke="#888888" x1="167.3409090909091" x2="155.93181818181822" y1="176.83981100000003" y2="176.83981100000003"/> + <line stroke="#888888" x1="155.93181818181822" x2="155.93181818181822" y1="176.83981100000003" y2="176.33981100000003"/> + <line stroke="#888888" x1="155.93181818181822" x2="167.3409090909091" y1="176.33981100000003" y2="176.33981100000003"/> + <line stroke="#888888" x1="167.3409090909091" x2="167.3409090909091" y1="176.33981100000003" y2="176.83981100000003"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="193.77162918181818" y2="182.18072009090912"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="182.18072009090912" y2="182.18072009090912"/> + <line stroke="#888888" x1="170.75" x2="170.75" y1="182.18072009090912" y2="193.77162918181818"/> + <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="193.77162918181818" y2="193.77162918181818"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="221.49890190909093" y2="209.9079928181818"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="209.9079928181818" y2="209.9079928181818"/> + <line stroke="#888888" x1="170.75" x2="170.75" y1="209.9079928181818" y2="221.49890190909093"/> + <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="221.49890190909093" y2="221.49890190909093"/> + <line stroke="#888888" x1="11.4" x2="12.600000000000001" y1="181.33981100000003" y2="181.33981100000003"/> + <line stroke="#888888" x1="12.600000000000001" x2="12.600000000000001" y1="181.33981100000003" y2="222.33981100000003"/> + <line stroke="#888888" x1="12.600000000000001" x2="11.4" y1="222.33981100000003" y2="222.33981100000003"/> + <line stroke="#888888" x1="11.4" x2="11.4" y1="222.33981100000003" y2="181.33981100000003"/> + <line stroke="#888888" x1="31.400000000000002" x2="32.60000000000001" y1="181.83981100000003" y2="181.83981100000003"/> + <line stroke="#888888" x1="32.60000000000001" x2="32.60000000000001" y1="181.83981100000003" y2="211.83981100000003"/> + <line stroke="#888888" x1="32.60000000000001" x2="31.400000000000002" y1="211.83981100000003" y2="211.83981100000003"/> + <line stroke="#888888" x1="31.400000000000002" x2="31.400000000000002" y1="211.83981100000003" y2="181.83981100000003"/> + <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="179.08981100000003" y2="179.08981100000003"/> + <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="179.08981100000003" y2="178.58981100000003"/> + <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="178.58981100000003" y2="178.58981100000003"/> + <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="178.58981100000003" y2="179.08981100000003"/> + <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="226.83981100000003" y2="226.83981100000003"/> + <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="226.83981100000003" y2="227.33981100000003"/> + <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="227.33981100000003" y2="227.33981100000003"/> + <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="227.33981100000003" y2="226.83981100000003"/> + <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="182.43072009090912" y2="182.43072009090912"/> + <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="182.43072009090912" y2="193.52162918181818"/> + <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="193.52162918181818" y2="193.52162918181818"/> + <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="210.1579928181818" y2="210.1579928181818"/> + <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="210.1579928181818" y2="221.24890190909093"/> + <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="221.24890190909093" y2="221.24890190909093"/> + <line stroke="#888888" x1="28.750000000000004" x2="32.25" y1="155.339811" y2="155.339811"/> + <line stroke="#888888" x1="32.25" x2="32.25" y1="155.339811" y2="163.33981100000003"/> + <line stroke="#888888" x1="32.25" x2="28.750000000000004" y1="163.33981100000003" y2="163.33981100000003"/> + <line opacity="0.25" stroke="#0000ff" x1="198.0" x2="258.0" y1="141.13953627679874" y2="141.13953627679874"/> + <line stroke="#000000" x1="258.0" x2="258.0" y1="177.54008572320132" y2="141.13953627679874"/> + <line stroke="#000000" x1="198.0" x2="258.0" y1="177.54008572320132" y2="177.54008572320132"/> + <line stroke="#000000" x1="198.0" x2="198.0" y1="141.13953627679874" y2="177.54008572320132"/> + <line opacity="0.25" stroke="#0000ff" x1="258.0" x2="198.0" y1="117.13953627679872" y2="117.13953627679872"/> + <line opacity="0.5" stroke="#0000ff" x1="258.0" x2="258.0" y1="117.13953627679872" y2="141.13953627679874"/> + <line opacity="0.5" stroke="#0000ff" x1="198.0" x2="198.0" y1="141.13953627679874" y2="117.13953627679872"/> + <line stroke="#000000" x1="198.0" x2="198.0" y1="80.73898683039612" y2="117.13953627679872"/> + <line stroke="#000000" x1="258.0" x2="198.0" y1="80.73898683039612" y2="80.73898683039612"/> + <line stroke="#000000" x1="258.0" x2="258.0" y1="117.13953627679872" y2="80.73898683039612"/> + <line stroke="#000000" x1="268.00000000000006" x2="258.0" y1="117.13953627679872" y2="117.13953627679872"/> + <line stroke="#000000" x1="268.00000000000006" x2="268.00000000000006" y1="141.13953627679874" y2="117.13953627679872"/> + <line stroke="#000000" x1="258.0" x2="268.00000000000006" y1="141.13953627679874" y2="141.13953627679874"/> + <line stroke="#000000" x1="188.00000000000003" x2="198.0" y1="141.13953627679874" y2="141.13953627679874"/> + <line stroke="#000000" x1="188.00000000000003" x2="188.00000000000003" y1="117.13953627679872" y2="141.13953627679874"/> + <line stroke="#000000" x1="198.0" x2="188.00000000000003" y1="117.13953627679872" y2="117.13953627679872"/> + <line stroke="#888888" x1="215.50000000000003" x2="226.50000000000003" y1="122.63953627679872" y2="122.63953627679872"/> + <line stroke="#888888" x1="226.50000000000003" x2="226.50000000000003" y1="122.63953627679872" y2="135.6395362767987"/> + <line stroke="#888888" x1="226.50000000000003" x2="215.50000000000003" y1="135.6395362767987" y2="135.6395362767987"/> + <line stroke="#888888" x1="215.50000000000003" x2="215.50000000000003" y1="135.6395362767987" y2="122.63953627679872"/> + <line stroke="#888888" x1="247.00000000000003" x2="253.00000000000003" y1="124.13953627679872" y2="124.13953627679872"/> + <line stroke="#888888" x1="253.00000000000003" x2="253.00000000000003" y1="124.13953627679872" y2="134.13953627679874"/> + <line stroke="#888888" x1="253.00000000000003" x2="247.00000000000003" y1="134.13953627679874" y2="134.13953627679874"/> + <line stroke="#888888" x1="247.00000000000003" x2="247.00000000000003" y1="134.13953627679874" y2="124.13953627679872"/> + <line stroke="#888888" x1="265.50000000000006" x2="260.50000000000006" y1="133.13953627679874" y2="133.13953627679874"/> + <line stroke="#888888" x1="260.50000000000006" x2="260.50000000000006" y1="133.13953627679874" y2="125.13953627679872"/> + <line stroke="#888888" x1="260.50000000000006" x2="265.50000000000006" y1="125.13953627679872" y2="125.13953627679872"/> + <line stroke="#888888" x1="190.50000000000003" x2="195.5" y1="125.13953627679872" y2="125.13953627679872"/> + <line stroke="#888888" x1="195.5" x2="195.5" y1="125.13953627679872" y2="133.13953627679874"/> + <line stroke="#888888" x1="195.5" x2="190.50000000000003" y1="133.13953627679874" y2="133.13953627679874"/> + <line opacity="0.5" stroke="#0000ff" x1="454.6666666666669" x2="454.6666666666669" y1="94.33981100000001" y2="224.33981100000003"/> + <line opacity="0.5" stroke="#0000ff" x1="384.6666666666669" x2="384.6666666666669" y1="94.33981100000001" y2="224.33981100000003"/> + <line opacity="0.3221923155106473" stroke="#0000ff" x1="419.6666666666669" x2="384.6666666666669" y1="94.33981100000001" y2="94.33981100000001"/> + <line opacity="0.3221923155106473" stroke="#0000ff" x1="454.6666666666669" x2="419.6666666666669" y1="94.33981100000001" y2="94.33981100000001"/> + <line opacity="0.3383480087218977" stroke="#0000ff" x1="419.6666666666669" x2="384.6666666666669" y1="-3.2056604482022527e-07" y2="94.33981100000001"/> + <line stroke="#000000" x1="417.9257952661878" x2="361.29623096642734" y1="0.5317572923818831" y2="17.829532375615347"/> + <line stroke="#000000" x1="419.6666666666669" x2="417.9257952661878" y1="-3.2056604482022527e-07" y2="0.5317572923818831"/> + <line opacity="1.0" stroke="#0000ff" x1="384.6666666666669" x2="361.29623096642734" y1="94.339811" y2="17.829532375615347"/> + <line opacity="1.0" stroke="#ff0000" x1="384.6666666666669" x2="304.66666666666697" y1="94.33981100000001" y2="35.127307458848826"/> + <line stroke="#000000" x1="361.29623096642734" x2="304.66666666666697" y1="17.829532375615347" y2="35.127307458848826"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="304.66666666666686" x2="304.66666666666697" y1="94.33981099999995" y2="35.12730745884883"/> + <line opacity="0.1944001122142148" stroke="#0000ff" x1="384.6666666666669" x2="304.66666666666686" y1="94.33981100000001" y2="94.33981099999995"/> + <line stroke="#000000" x1="284.92916548628324" x2="304.66666666666686" y1="94.33981099999994" y2="94.33981099999995"/> + <line stroke="#000000" x1="284.92916548628324" x2="284.92916548628324" y1="35.127307458848826" y2="94.33981099999994"/> + <line stroke="#000000" x1="304.66666666666697" x2="284.92916548628324" y1="35.12730745884883" y2="35.127307458848826"/> + <line stroke="#000000" x1="304.66666666666686" x2="304.66666666666674" y1="94.33981099999995" y2="224.33981099999997"/> + <line opacity="0.5" stroke="#0000ff" x1="304.66666666666674" x2="384.6666666666668" y1="224.33981099999997" y2="224.33981100000003"/> + <line opacity="1.0" stroke="#ff0000" x1="304.6666666666667" x2="384.6666666666668" y1="304.339811" y2="224.33981100000003"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="304.6666666666667" x2="304.66666666666674" y1="304.339811" y2="224.33981099999997"/> + <line stroke="#000000" x1="304.6666666666667" x2="384.6666666666667" y1="304.339811" y2="304.33981100000005"/> + <line opacity="1.0" stroke="#0000ff" x1="384.6666666666667" x2="384.6666666666668" y1="304.33981100000005" y2="224.33981100000003"/> + <line stroke="#000000" x1="464.6666666666667" x2="419.6666666666667" y1="304.33981100000005" y2="304.33981100000005"/> + <line stroke="#000000" x1="384.6666666666667" x2="464.6666666666667" y1="304.33981100000005" y2="304.33981100000005"/> + <line opacity="0.5" stroke="#0000ff" x1="384.6666666666668" x2="419.6666666666668" y1="224.33981100000003" y2="224.33981100000005"/> + <line opacity="0.5" stroke="#0000ff" x1="419.6666666666668" x2="454.66666666666674" y1="224.33981100000005" y2="224.33981100000008"/> + <line stroke="#000000" x1="374.66666666666674" x2="454.6666666666667" y1="304.339811" y2="304.33981100000005"/> + <line stroke="#000000" x1="419.6666666666667" x2="374.66666666666674" y1="304.33981100000005" y2="304.339811"/> + <line opacity="1.0" stroke="#0000ff" x1="454.66666666666674" x2="454.6666666666667" y1="224.3398110000001" y2="304.33981100000005"/> + <line opacity="1.0" stroke="#ff0000" x1="454.66666666666674" x2="534.6666666666665" y1="224.3398110000001" y2="304.33981100000017"/> + <line stroke="#000000" x1="454.6666666666667" x2="534.6666666666665" y1="304.33981100000005" y2="304.33981100000017"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="534.6666666666667" x2="534.6666666666665" y1="224.3398110000002" y2="304.33981100000017"/> + <line opacity="0.5" stroke="#0000ff" x1="454.66666666666674" x2="534.6666666666667" y1="224.3398110000001" y2="224.3398110000002"/> + <line stroke="#000000" x1="561.3333333333334" x2="534.6666666666667" y1="224.3398110000002" y2="224.3398110000002"/> + <line stroke="#000000" x1="561.3333333333334" x2="561.3333333333334" y1="304.33981100000017" y2="224.3398110000002"/> + <line stroke="#000000" x1="534.6666666666665" x2="561.3333333333334" y1="304.3398110000001" y2="304.33981100000017"/> + <line stroke="#000000" x1="534.6666666666667" x2="534.666666666667" y1="224.3398110000002" y2="94.33981100000021"/> + <line opacity="0.1944001122142148" stroke="#0000ff" x1="534.666666666667" x2="454.6666666666669" y1="94.33981100000022" y2="94.33981100000011"/> + <line opacity="1.0" stroke="#ff0000" x1="534.6666666666671" x2="454.66666666666697" y1="35.12730745884912" y2="94.33981100000011"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="534.6666666666671" x2="534.666666666667" y1="35.12730745884912" y2="94.33981100000022"/> + <line stroke="#000000" x1="534.6666666666671" x2="478.0371023669066" y1="35.12730745884912" y2="17.829532375615546"/> + <line opacity="1.0" stroke="#0000ff" x1="478.0371023669066" x2="454.66666666666697" y1="17.829532375615546" y2="94.33981100000011"/> + <line opacity="0.3383480087218977" stroke="#0000ff" x1="419.6666666666672" x2="454.6666666666669" y1="-3.20565959555097e-07" y2="94.33981100000011"/> + <line stroke="#000000" x1="421.4075380671463" x2="419.6666666666672" y1="0.5317572923819398" y2="-3.20565959555097e-07"/> + <line stroke="#000000" x1="478.0371023669066" x2="421.4075380671463" y1="17.829532375615546" y2="0.5317572923819398"/> + <line stroke="#000000" x1="554.4041678470508" x2="534.6666666666671" y1="35.12730745884915" y2="35.12730745884912"/> + <line stroke="#000000" x1="554.4041678470506" x2="554.4041678470508" y1="94.33981100000025" y2="35.12730745884915"/> + <line stroke="#000000" x1="534.666666666667" x2="554.4041678470506" y1="94.33981100000022" y2="94.33981100000025"/> + <line stroke="#000000" x1="278.0" x2="304.6666666666667" y1="304.33981099999994" y2="304.339811"/> + <line stroke="#000000" x1="278.0000000000001" x2="278.0" y1="224.3398109999999" y2="304.33981099999994"/> + <line stroke="#000000" x1="304.66666666666674" x2="278.0000000000001" y1="224.33981099999997" y2="224.3398109999999"/> + <line stroke="#888888" x1="403.68584483600716" x2="384.3311341613512" y1="20.621135404204413" y2="26.5331256550754"/> + <line stroke="#888888" x1="384.3311341613512" x2="384.1850689382248" y1="26.5331256550754" y2="26.05493641367301"/> + <line stroke="#888888" x1="384.1850689382248" x2="403.53977961288064" y1="26.05493641367301" y2="20.142946162802023"/> + <line stroke="#888888" x1="403.53977961288064" x2="403.68584483600716" y1="20.142946162802023" y2="20.621135404204413"/> + <line stroke="#888888" x1="289.8635407813792" x2="299.73229137157097" y1="54.86480863923253" y2="54.86480863923254"/> + <line stroke="#888888" x1="299.73229137157097" x2="299.73229137157097" y1="54.86480863923254" y2="74.60230981961625"/> + <line stroke="#888888" x1="299.73229137157097" x2="289.8635407813792" y1="74.60230981961625" y2="74.60230981961624"/> + <line stroke="#888888" x1="411.08333333333337" x2="438.25000000000006" y1="284.0898110000001" y2="284.0898110000001"/> + <line stroke="#888888" x1="438.25000000000006" x2="438.25000000000006" y1="284.0898110000001" y2="284.5898110000001"/> + <line stroke="#888888" x1="438.25000000000006" x2="411.08333333333337" y1="284.5898110000001" y2="284.5898110000001"/> + <line stroke="#888888" x1="411.08333333333337" x2="411.08333333333337" y1="284.5898110000001" y2="284.0898110000001"/> + <line stroke="#888888" x1="401.0833333333334" x2="428.25000000000006" y1="284.08981100000005" y2="284.0898110000001"/> + <line stroke="#888888" x1="428.25000000000006" x2="428.25000000000006" y1="284.0898110000001" y2="284.5898110000001"/> + <line stroke="#888888" x1="428.25000000000006" x2="401.0833333333334" y1="284.5898110000001" y2="284.58981100000005"/> + <line stroke="#888888" x1="401.0833333333334" x2="401.0833333333334" y1="284.58981100000005" y2="284.08981100000005"/> + <line stroke="#888888" x1="554.6666666666666" x2="541.3333333333334" y1="277.6731443333335" y2="277.6731443333334"/> + <line stroke="#888888" x1="541.3333333333334" x2="541.3333333333334" y1="277.6731443333334" y2="251.00647766666683"/> + <line stroke="#888888" x1="541.3333333333334" x2="554.6666666666666" y1="251.00647766666683" y2="251.00647766666685"/> + <line stroke="#888888" x1="455.00219917198274" x2="435.6474884973269" y1="26.533125655075565" y2="20.621135404204527"/> + <line stroke="#888888" x1="435.6474884973269" x2="435.7935537204534" y1="20.621135404204527" y2="20.142946162802136"/> + <line stroke="#888888" x1="435.7935537204534" x2="455.14826439510927" y1="20.142946162802136" y2="26.05493641367315"/> + <line stroke="#888888" x1="455.14826439510927" x2="455.00219917198274" y1="26.05493641367315" y2="26.533125655075565"/> + <line stroke="#888888" x1="549.4697925519548" x2="539.6010419617629" y1="74.60230981961654" y2="74.60230981961652"/> + <line stroke="#888888" x1="539.6010419617629" x2="539.6010419617629" y1="74.60230981961652" y2="54.86480863923283"/> + <line stroke="#888888" x1="539.6010419617629" x2="549.4697925519548" y1="54.86480863923283" y2="54.86480863923283"/> + <line stroke="#888888" x1="284.6666666666668" x2="298.0000000000001" y1="251.0064776666666" y2="251.00647766666665"/> + <line stroke="#888888" x1="298.0000000000001" x2="298.0000000000001" y1="251.00647766666665" y2="277.67314433333325"/> + <line stroke="#888888" x1="298.0000000000001" x2="284.6666666666668" y1="277.67314433333325" y2="277.67314433333325"/> </svg> diff --git a/rocolib/output/ESP32StackBoat/graph-autofold-default.dxf b/rocolib/output/ESP32StackBoat/graph-autofold-default.dxf index 20ad81f4f008c4e8dd67216c9b0640d2c21a071f..f0bcc1225c1dccd11462155ed321b050772b694c 100644 --- a/rocolib/output/ESP32StackBoat/graph-autofold-default.dxf +++ b/rocolib/output/ESP32StackBoat/graph-autofold-default.dxf @@ -493,7 +493,7 @@ TABLE 2 LAYER 70 -14 +15 0 LAYER 2 @@ -567,7 +567,7 @@ CONTINUOUS 0 LAYER 2 --180 +45 70 0 62 @@ -577,7 +577,7 @@ CONTINUOUS 0 LAYER 2 -34.99202019855866 +57.99461679191651 70 0 62 @@ -587,7 +587,7 @@ CONTINUOUS 0 LAYER 2 --174 +60.90264156994158 70 0 62 @@ -607,7 +607,17 @@ CONTINUOUS 0 LAYER 2 -66.07759212540486 +-180 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-174 70 0 62 @@ -617,7 +627,7 @@ CONTINUOUS 0 LAYER 2 -45.0 +34.99202019855866 70 0 62 @@ -1037,13 +1047,13 @@ DOTTED 10 34.0 20 -59.50000000000001 +147.33981100000003 30 0.0 11 -34.0 +94.00000000000001 21 -120.50000000000001 +147.33981100000003 31 0.0 0 @@ -1055,15 +1065,15 @@ DOTTED 8 90 10 -10.000000000000002 +94.00000000000001 20 -120.50000000000001 +147.33981100000003 30 0.0 11 -10.000000000000002 +94.00000000000001 21 -59.50000000000001 +171.339811 31 0.0 0 @@ -1075,15 +1085,15 @@ DOTTED 8 90 10 -10.000000000000002 +94.00000000000001 20 -59.50000000000001 +171.339811 30 0.0 11 -22.000000000000004 +34.0 21 -59.50000000000001 +171.339811 31 0.0 0 @@ -1095,15 +1105,15 @@ DOTTED 8 90 10 -22.000000000000004 +34.0 20 -59.50000000000001 +171.339811 30 0.0 11 34.0 21 -59.50000000000001 +147.33981100000003 31 0.0 0 @@ -1115,13 +1125,13 @@ cut 10 34.0 20 -59.50000000000001 +140.33981100000003 30 0.0 11 34.0 21 -59.50000000000001 +147.33981100000003 31 0.0 0 @@ -1131,15 +1141,15 @@ LINE 8 cut 10 -10.000000000000002 +94.00000000000001 20 -59.50000000000001 +140.33981100000003 30 0.0 11 -10.000000000000002 +34.0 21 -59.50000000000001 +140.33981100000003 31 0.0 0 @@ -1149,15 +1159,15 @@ LINE 8 cut 10 -10.000000000000002 +94.00000000000001 20 -19.500000000000004 +147.33981100000003 30 0.0 11 -10.000000000000002 +94.00000000000001 21 -59.50000000000001 +140.33981100000003 31 0.0 0 @@ -1167,15 +1177,15 @@ LINE 8 cut 10 -22.000000000000004 +101.00000000000001 20 -59.50000000000001 +147.33981100000003 30 0.0 11 -22.000000000000004 +94.00000000000001 21 -19.500000000000004 +147.33981100000003 31 0.0 0 @@ -1185,15 +1195,15 @@ LINE 8 cut 10 -10.000000000000002 +101.00000000000001 20 -14.5 +171.339811 30 0.0 11 -10.000000000000002 +101.00000000000001 21 -19.500000000000004 +147.33981100000003 31 0.0 0 @@ -1203,33 +1213,35 @@ LINE 8 cut 10 -22.000000000000004 +94.00000000000001 20 -14.5 +171.339811 30 0.0 11 -10.000000000000002 +101.00000000000001 21 -14.5 +171.339811 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -22.000000000000004 +94.00000000000001 20 -19.500000000000004 +171.339811 30 0.0 11 -22.000000000000004 +94.00000000000001 21 -14.5 +232.33981100000003 31 0.0 0 @@ -1239,33 +1251,35 @@ LINE 8 cut 10 -22.000000000000004 +34.0 20 -19.500000000000004 +232.33981100000003 30 0.0 11 -22.000000000000004 +94.00000000000001 21 -59.50000000000001 +232.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 34.0 20 -59.50000000000001 +171.339811 30 0.0 11 34.0 21 -19.500000000000004 +232.33981100000003 31 0.0 0 @@ -1275,15 +1289,35 @@ LINE 8 cut 10 -22.000000000000004 +118.00000000000001 + 20 +171.339811 + 30 +0.0 + 11 +94.00000000000001 + 21 +171.339811 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +118.00000000000001 20 -14.5 +171.339811 30 0.0 11 -22.000000000000004 +118.00000000000001 21 -19.500000000000004 +232.33981100000003 31 0.0 0 @@ -1293,15 +1327,15 @@ LINE 8 cut 10 -34.0 +94.00000000000001 20 -14.5 +232.33981100000003 30 0.0 11 -22.000000000000004 +118.00000000000001 21 -14.5 +232.33981100000003 31 0.0 0 @@ -1311,15 +1345,15 @@ LINE 8 cut 10 -34.0 +178.00000000000003 20 -19.500000000000004 +171.339811 30 0.0 11 -34.0 +118.00000000000001 21 -14.5 +171.339811 31 0.0 0 @@ -1329,35 +1363,33 @@ LINE 8 cut 10 -70.00000000000001 +178.00000000000003 20 -59.50000000000001 +232.33981100000003 30 0.0 11 -34.0 +178.00000000000003 21 -59.50000000000001 +171.339811 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -70.00000000000001 +118.00000000000001 20 -59.50000000000001 +232.33981100000003 30 0.0 11 -70.00000000000001 +178.00000000000003 21 -120.50000000000001 +232.33981100000003 31 0.0 0 @@ -1369,13 +1401,13 @@ cut 10 34.0 20 -120.50000000000001 +171.339811 30 0.0 11 -70.00000000000001 +10.000000000000002 21 -120.50000000000001 +171.339811 31 0.0 0 @@ -1385,15 +1417,15 @@ LINE 8 cut 10 -94.00000000000001 +10.000000000000002 20 -59.50000000000001 +232.33981100000003 30 0.0 11 -70.00000000000001 +34.0 21 -59.50000000000001 +232.33981100000003 31 0.0 0 @@ -1405,15 +1437,15 @@ DOTTED 8 90 10 -94.00000000000001 +10.000000000000002 20 -59.50000000000001 +232.33981100000003 30 0.0 11 -94.00000000000001 +10.000000000000002 21 -120.50000000000001 +171.339811 31 0.0 0 @@ -1423,15 +1455,15 @@ LINE 8 cut 10 -70.00000000000001 +0.0 20 -120.50000000000001 +232.33981100000003 30 0.0 11 -94.00000000000001 +10.000000000000002 21 -120.50000000000001 +232.33981100000003 31 0.0 0 @@ -1441,15 +1473,15 @@ LINE 8 cut 10 -130.0 +0.0 20 -59.50000000000001 +171.339811 30 0.0 11 -94.00000000000001 +0.0 21 -59.50000000000001 +232.33981100000003 31 0.0 0 @@ -1459,15 +1491,15 @@ LINE 8 cut 10 -130.0 +10.000000000000002 20 -120.50000000000001 +171.339811 30 0.0 11 -130.0 +0.0 21 -59.50000000000001 +171.339811 31 0.0 0 @@ -1477,55 +1509,51 @@ LINE 8 cut 10 -94.00000000000001 +27.000000000000004 20 -120.50000000000001 +171.339811 30 0.0 11 -130.0 +34.0 21 -120.50000000000001 +171.339811 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -34.0 +27.000000000000004 20 -120.50000000000001 +147.33981100000003 30 0.0 11 -22.000000000000004 +27.000000000000004 21 -120.50000000000001 +171.339811 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -22.000000000000004 +34.0 20 -120.50000000000001 +147.33981100000003 30 0.0 11 -10.000000000000002 +27.000000000000004 21 -120.50000000000001 +147.33981100000003 31 0.0 0 @@ -1535,15 +1563,15 @@ LINE 8 cut 10 -10.000000000000002 +83.0909090909091 20 -120.50000000000001 +142.08981100000003 30 0.0 11 -10.000000000000002 +86.59090909090911 21 -120.50000000000001 +142.08981100000003 31 0.0 0 @@ -1553,15 +1581,15 @@ LINE 8 cut 10 -34.0 +86.59090909090911 20 -120.50000000000001 +142.08981100000003 30 0.0 11 -34.0 +83.0909090909091 21 -120.50000000000001 +145.58981100000003 31 0.0 0 @@ -1571,15 +1599,15 @@ LINE 8 cut 10 -34.0 +83.0909090909091 20 -160.50000000000003 +145.58981100000003 30 0.0 11 -34.0 +72.1818181818182 21 -120.50000000000001 +145.58981100000003 31 0.0 0 @@ -1589,15 +1617,15 @@ LINE 8 cut 10 -22.000000000000004 +72.1818181818182 20 -120.50000000000001 +145.58981100000003 30 0.0 11 -22.000000000000004 +68.6818181818182 21 -160.50000000000003 +142.08981100000003 31 0.0 0 @@ -1607,15 +1635,15 @@ LINE 8 cut 10 -34.0 +68.6818181818182 20 -165.50000000000003 +142.08981100000003 30 0.0 11 -34.0 +72.1818181818182 21 -160.50000000000003 +142.08981100000003 31 0.0 0 @@ -1625,15 +1653,15 @@ LINE 8 cut 10 -22.000000000000004 +55.818181818181834 20 -165.50000000000003 +142.08981100000003 30 0.0 11 -34.0 +59.31818181818183 21 -165.50000000000003 +142.08981100000003 31 0.0 0 @@ -1643,15 +1671,15 @@ LINE 8 cut 10 -22.000000000000004 +59.31818181818183 20 -160.50000000000003 +142.08981100000003 30 0.0 11 -22.000000000000004 +55.818181818181834 21 -165.50000000000003 +145.58981100000003 31 0.0 0 @@ -1661,15 +1689,15 @@ LINE 8 cut 10 -22.000000000000004 +55.818181818181834 20 -160.50000000000003 +145.58981100000003 30 0.0 11 -22.000000000000004 +44.90909090909092 21 -120.50000000000001 +145.58981100000003 31 0.0 0 @@ -1679,15 +1707,15 @@ LINE 8 cut 10 -10.000000000000002 +44.90909090909092 20 -120.50000000000001 +145.58981100000003 30 0.0 11 -10.000000000000002 +41.40909090909093 21 -160.50000000000003 +142.08981100000003 31 0.0 0 @@ -1697,15 +1725,15 @@ LINE 8 cut 10 -22.000000000000004 +41.40909090909093 20 -165.50000000000003 +142.08981100000003 30 0.0 11 -22.000000000000004 +44.90909090909092 21 -160.50000000000003 +142.08981100000003 31 0.0 0 @@ -1715,15 +1743,15 @@ LINE 8 cut 10 -10.000000000000002 +99.25000000000001 20 -165.50000000000003 +163.33981100000003 30 0.0 11 -22.000000000000004 +95.75000000000001 21 -165.50000000000003 +163.33981100000003 31 0.0 0 @@ -1733,15 +1761,15 @@ LINE 8 cut 10 -10.000000000000002 +95.75000000000001 20 -160.50000000000003 +163.33981100000003 30 0.0 11 -10.000000000000002 +95.75000000000001 21 -165.50000000000003 +155.339811 31 0.0 0 @@ -1751,15 +1779,15 @@ LINE 8 cut 10 -0.0 +95.75000000000001 20 -120.50000000000001 +155.339811 30 0.0 11 -10.000000000000002 +99.25000000000001 21 -120.50000000000001 +155.339811 31 0.0 0 @@ -1769,15 +1797,15 @@ LINE 8 cut 10 -0.0 +42.0 20 -59.50000000000001 +222.83981100000003 30 0.0 11 -0.0 +42.0 21 -120.50000000000001 +204.83981100000003 31 0.0 0 @@ -1787,15 +1815,15 @@ LINE 8 cut 10 -10.000000000000002 +42.0 20 -59.50000000000001 +204.83981100000003 30 0.0 11 -0.0 +72.00000000000001 21 -59.50000000000001 +204.83981100000003 31 0.0 0 @@ -1805,15 +1833,15 @@ LINE 8 cut 10 -11.400000000000002 +72.00000000000001 20 -69.5 +204.83981100000003 30 0.0 11 -12.6 +72.00000000000001 21 -69.5 +222.83981100000003 31 0.0 0 @@ -1823,15 +1851,15 @@ LINE 8 cut 10 -12.6 +72.00000000000001 20 -69.5 +222.83981100000003 30 0.0 11 -12.6 +42.0 21 -110.50000000000001 +222.83981100000003 31 0.0 0 @@ -1841,15 +1869,15 @@ LINE 8 cut 10 -12.6 +115.40000000000002 20 -110.50000000000001 +181.33981100000003 30 0.0 11 -11.400000000000002 +116.60000000000001 21 -110.50000000000001 +181.33981100000003 31 0.0 0 @@ -1859,15 +1887,15 @@ LINE 8 cut 10 -11.400000000000002 +116.60000000000001 20 -110.50000000000001 +181.33981100000003 30 0.0 11 -11.400000000000002 +116.60000000000001 21 -69.5 +222.33981100000003 31 0.0 0 @@ -1877,15 +1905,15 @@ LINE 8 cut 10 -31.400000000000002 +116.60000000000001 20 -70.00000000000001 +222.33981100000003 30 0.0 11 -32.60000000000001 +115.40000000000002 21 -70.00000000000001 +222.33981100000003 31 0.0 0 @@ -1895,15 +1923,15 @@ LINE 8 cut 10 -32.60000000000001 +115.40000000000002 20 -70.00000000000001 +222.33981100000003 30 0.0 11 -32.60000000000001 +115.40000000000002 21 -100.0 +181.33981100000003 31 0.0 0 @@ -1913,15 +1941,15 @@ LINE 8 cut 10 -32.60000000000001 +95.4 20 -100.0 +181.83981100000003 30 0.0 11 -31.400000000000002 +96.60000000000001 21 -100.0 +181.83981100000003 31 0.0 0 @@ -1931,15 +1959,15 @@ LINE 8 cut 10 -31.400000000000002 +96.60000000000001 20 -100.0 +181.83981100000003 30 0.0 11 -31.400000000000002 +96.60000000000001 21 -70.00000000000001 +211.83981100000003 31 0.0 0 @@ -1949,15 +1977,15 @@ LINE 8 cut 10 -18.000000000000004 +96.60000000000001 20 -15.750000000000002 +211.83981100000003 30 0.0 11 -18.000000000000004 +95.4 21 -18.25 +211.83981100000003 31 0.0 0 @@ -1967,15 +1995,15 @@ LINE 8 cut 10 -18.000000000000004 +95.4 20 -18.25 +211.83981100000003 30 0.0 11 -14.000000000000002 +95.4 21 -18.25 +181.83981100000003 31 0.0 0 @@ -1985,15 +2013,15 @@ LINE 8 cut 10 -14.000000000000002 +110.25000000000001 20 -18.25 +179.08981100000003 30 0.0 11 -14.000000000000002 +101.75000000000001 21 -15.750000000000002 +179.08981100000003 31 0.0 0 @@ -2003,15 +2031,15 @@ LINE 8 cut 10 -30.000000000000004 +101.75000000000001 20 -15.750000000000002 +179.08981100000003 30 0.0 11 -30.000000000000004 +101.75000000000001 21 -18.25 +178.58981100000003 31 0.0 0 @@ -2021,15 +2049,15 @@ LINE 8 cut 10 -30.000000000000004 +101.75000000000001 20 -18.25 +178.58981100000003 30 0.0 11 -26.000000000000004 +110.25000000000001 21 -18.25 +178.58981100000003 31 0.0 0 @@ -2039,15 +2067,15 @@ LINE 8 cut 10 -26.000000000000004 +110.25000000000001 20 -18.25 +178.58981100000003 30 0.0 11 -26.000000000000004 +110.25000000000001 21 -15.750000000000002 +179.08981100000003 31 0.0 0 @@ -2057,15 +2085,15 @@ LINE 8 cut 10 -30.000000000000004 +101.75000000000001 20 -111.00000000000001 +226.83981100000003 30 0.0 11 -30.000000000000004 +110.25000000000001 21 -93.00000000000001 +226.83981100000003 31 0.0 0 @@ -2075,15 +2103,15 @@ LINE 8 cut 10 -30.000000000000004 +110.25000000000001 20 -93.00000000000001 +226.83981100000003 30 0.0 11 -60.00000000000001 +110.25000000000001 21 -93.00000000000001 +227.33981100000003 31 0.0 0 @@ -2093,15 +2121,15 @@ LINE 8 cut 10 -60.00000000000001 +110.25000000000001 20 -93.00000000000001 +227.33981100000003 30 0.0 11 -60.00000000000001 +101.75000000000001 21 -111.00000000000001 +227.33981100000003 31 0.0 0 @@ -2111,15 +2139,15 @@ LINE 8 cut 10 -60.00000000000001 +101.75000000000001 20 -111.00000000000001 +227.33981100000003 30 0.0 11 -30.000000000000004 +101.75000000000001 21 -111.00000000000001 +226.83981100000003 31 0.0 0 @@ -2129,15 +2157,15 @@ LINE 8 cut 10 -91.40000000000002 +133.00000000000003 20 -69.5 +185.33981100000003 30 0.0 11 -92.60000000000001 +133.00000000000003 21 -69.5 +178.33981100000003 31 0.0 0 @@ -2147,15 +2175,15 @@ LINE 8 cut 10 -92.60000000000001 +133.00000000000003 20 -69.5 +178.33981100000003 30 0.0 11 -92.60000000000001 +153.00000000000003 21 -110.50000000000001 +178.33981100000003 31 0.0 0 @@ -2165,15 +2193,15 @@ LINE 8 cut 10 -92.60000000000001 +153.00000000000003 20 -110.50000000000001 +178.33981100000003 30 0.0 11 -91.40000000000002 +153.00000000000003 21 -110.50000000000001 +185.33981100000003 31 0.0 0 @@ -2183,15 +2211,15 @@ LINE 8 cut 10 -91.40000000000002 +153.00000000000003 20 -110.50000000000001 +185.33981100000003 30 0.0 11 -91.40000000000002 +133.00000000000003 21 -69.5 +185.33981100000003 31 0.0 0 @@ -2201,15 +2229,15 @@ LINE 8 cut 10 -71.4 +140.06818181818184 20 -70.00000000000001 +176.83981100000003 30 0.0 11 -72.60000000000001 +128.65909090909093 21 -70.00000000000001 +176.83981100000003 31 0.0 0 @@ -2219,15 +2247,15 @@ LINE 8 cut 10 -72.60000000000001 +128.65909090909093 20 -70.00000000000001 +176.83981100000003 30 0.0 11 -72.60000000000001 +128.65909090909093 21 -100.0 +176.33981100000003 31 0.0 0 @@ -2237,15 +2265,15 @@ LINE 8 cut 10 -72.60000000000001 +128.65909090909093 20 -100.0 +176.33981100000003 30 0.0 11 -71.4 +140.06818181818184 21 -100.0 +176.33981100000003 31 0.0 0 @@ -2255,15 +2283,15 @@ LINE 8 cut 10 -71.4 +140.06818181818184 20 -100.0 +176.33981100000003 30 0.0 11 -71.4 +140.06818181818184 21 -70.00000000000001 +176.83981100000003 31 0.0 0 @@ -2273,15 +2301,15 @@ LINE 8 cut 10 -97.00000000000001 +167.3409090909091 20 -73.50000000000001 +176.83981100000003 30 0.0 11 -97.00000000000001 +155.93181818181822 21 -66.50000000000001 +176.83981100000003 31 0.0 0 @@ -2291,15 +2319,15 @@ LINE 8 cut 10 -97.00000000000001 +155.93181818181822 20 -66.50000000000001 +176.83981100000003 30 0.0 11 -117.00000000000001 +155.93181818181822 21 -66.50000000000001 +176.33981100000003 31 0.0 0 @@ -2309,15 +2337,15 @@ LINE 8 cut 10 -117.00000000000001 +155.93181818181822 20 -66.50000000000001 +176.33981100000003 30 0.0 11 -117.00000000000001 +167.3409090909091 21 -73.50000000000001 +176.33981100000003 31 0.0 0 @@ -2327,15 +2355,15 @@ LINE 8 cut 10 -117.00000000000001 +167.3409090909091 20 -73.50000000000001 +176.33981100000003 30 0.0 11 -97.00000000000001 +167.3409090909091 21 -73.50000000000001 +176.83981100000003 31 0.0 0 @@ -2345,15 +2373,15 @@ LINE 8 cut 10 -122.25000000000001 +170.25000000000003 20 -81.9318181818182 +193.77162918181818 30 0.0 11 -122.25000000000001 +170.25000000000003 21 -70.3409090909091 +182.18072009090912 31 0.0 0 @@ -2363,15 +2391,15 @@ LINE 8 cut 10 -122.25000000000001 +170.25000000000003 20 -70.3409090909091 +182.18072009090912 30 0.0 11 -122.75000000000001 +170.75 21 -70.3409090909091 +182.18072009090912 31 0.0 0 @@ -2381,15 +2409,15 @@ LINE 8 cut 10 -122.75000000000001 +170.75 20 -70.3409090909091 +182.18072009090912 30 0.0 11 -122.75000000000001 +170.75 21 -81.9318181818182 +193.77162918181818 31 0.0 0 @@ -2399,15 +2427,15 @@ LINE 8 cut 10 -122.75000000000001 +170.75 20 -81.9318181818182 +193.77162918181818 30 0.0 11 -122.25000000000001 +170.25000000000003 21 -81.9318181818182 +193.77162918181818 31 0.0 0 @@ -2417,15 +2445,15 @@ LINE 8 cut 10 -122.25000000000001 +170.25000000000003 20 -109.65909090909092 +221.49890190909093 30 0.0 11 -122.25000000000001 +170.25000000000003 21 -98.06818181818183 +209.9079928181818 31 0.0 0 @@ -2435,15 +2463,15 @@ LINE 8 cut 10 -122.25000000000001 +170.25000000000003 20 -98.06818181818183 +209.9079928181818 30 0.0 11 -122.75000000000001 +170.75 21 -98.06818181818183 +209.9079928181818 31 0.0 0 @@ -2453,15 +2481,15 @@ LINE 8 cut 10 -122.75000000000001 +170.75 20 -98.06818181818183 +209.9079928181818 30 0.0 11 -122.75000000000001 +170.75 21 -109.65909090909092 +221.49890190909093 31 0.0 0 @@ -2471,15 +2499,15 @@ LINE 8 cut 10 -122.75000000000001 +170.75 20 -109.65909090909092 +221.49890190909093 30 0.0 11 -122.25000000000001 +170.25000000000003 21 -109.65909090909092 +221.49890190909093 31 0.0 0 @@ -2489,15 +2517,15 @@ LINE 8 cut 10 -26.000000000000004 +11.4 20 -164.25000000000003 +181.33981100000003 30 0.0 11 -26.000000000000004 +12.600000000000001 21 -161.75 +181.33981100000003 31 0.0 0 @@ -2507,15 +2535,15 @@ LINE 8 cut 10 -26.000000000000004 +12.600000000000001 20 -161.75 +181.33981100000003 30 0.0 11 -30.000000000000004 +12.600000000000001 21 -161.75 +222.33981100000003 31 0.0 0 @@ -2525,15 +2553,15 @@ LINE 8 cut 10 -30.000000000000004 +12.600000000000001 20 -161.75 +222.33981100000003 30 0.0 11 -30.000000000000004 +11.4 21 -164.25000000000003 +222.33981100000003 31 0.0 0 @@ -2543,15 +2571,15 @@ LINE 8 cut 10 -14.000000000000002 +11.4 20 -164.25000000000003 +222.33981100000003 30 0.0 11 -14.000000000000002 +11.4 21 -161.75 +181.33981100000003 31 0.0 0 @@ -2561,15 +2589,15 @@ LINE 8 cut 10 -14.000000000000002 +31.400000000000002 20 -161.75 +181.83981100000003 30 0.0 11 -18.000000000000004 +32.60000000000001 21 -161.75 +181.83981100000003 31 0.0 0 @@ -2579,15 +2607,15 @@ LINE 8 cut 10 -18.000000000000004 +32.60000000000001 20 -161.75 +181.83981100000003 30 0.0 11 -18.000000000000004 +32.60000000000001 21 -164.25000000000003 +211.83981100000003 31 0.0 0 @@ -2597,15 +2625,15 @@ LINE 8 cut 10 -2.5000000000000004 +32.60000000000001 20 -70.5909090909091 +211.83981100000003 30 0.0 11 -7.500000000000001 +31.400000000000002 21 -70.5909090909091 +211.83981100000003 31 0.0 0 @@ -2615,15 +2643,15 @@ LINE 8 cut 10 -7.500000000000001 +31.400000000000002 20 -70.5909090909091 +211.83981100000003 30 0.0 11 -7.500000000000001 +31.400000000000002 21 -81.68181818181819 +181.83981100000003 31 0.0 0 @@ -2633,15 +2661,15 @@ LINE 8 cut 10 -7.500000000000001 +26.250000000000004 20 -81.68181818181819 +179.08981100000003 30 0.0 11 -2.5000000000000004 +17.750000000000004 21 -81.68181818181819 +179.08981100000003 31 0.0 0 @@ -2651,15 +2679,15 @@ LINE 8 cut 10 -2.5000000000000004 +17.750000000000004 20 -98.31818181818184 +179.08981100000003 30 0.0 11 -7.500000000000001 +17.750000000000004 21 -98.31818181818184 +178.58981100000003 31 0.0 0 @@ -2669,15 +2697,15 @@ LINE 8 cut 10 -7.500000000000001 +17.750000000000004 20 -98.31818181818184 +178.58981100000003 30 0.0 11 -7.500000000000001 +26.250000000000004 21 -109.40909090909092 +178.58981100000003 31 0.0 0 @@ -2687,15 +2715,15 @@ LINE 8 cut 10 -7.500000000000001 +26.250000000000004 20 -109.40909090909092 +178.58981100000003 30 0.0 11 -2.5000000000000004 +26.250000000000004 21 -109.40909090909092 +179.08981100000003 31 0.0 0 @@ -2705,15 +2733,15 @@ LINE 8 cut 10 -186.00000000000003 +17.750000000000004 20 -90.0 +226.83981100000003 30 0.0 11 -140.00000000000003 +26.250000000000004 21 -90.0 +226.83981100000003 31 0.0 0 @@ -2723,15 +2751,15 @@ LINE 8 cut 10 -198.0 +26.250000000000004 20 -90.0 +226.83981100000003 30 0.0 11 -186.00000000000003 +26.250000000000004 21 -90.0 +227.33981100000003 31 0.0 0 @@ -2741,15 +2769,15 @@ LINE 8 cut 10 -210.00000000000003 +26.250000000000004 20 -90.0 +227.33981100000003 30 0.0 11 -198.0 +17.750000000000004 21 -90.0 +227.33981100000003 31 0.0 0 @@ -2759,15 +2787,15 @@ LINE 8 cut 10 -222.00000000000003 +17.750000000000004 20 -90.0 +227.33981100000003 30 0.0 11 -210.00000000000003 +17.750000000000004 21 -90.0 +226.83981100000003 31 0.0 0 @@ -2777,15 +2805,15 @@ LINE 8 cut 10 -234.00000000000003 +2.5000000000000004 20 -90.0 +182.43072009090912 30 0.0 11 -222.00000000000003 +7.500000000000001 21 -90.0 +182.43072009090912 31 0.0 0 @@ -2795,15 +2823,15 @@ LINE 8 cut 10 -246.00000000000003 +7.500000000000001 20 -90.0 +182.43072009090912 30 0.0 11 -234.00000000000003 +7.500000000000001 21 -90.0 +193.52162918181818 31 0.0 0 @@ -2813,15 +2841,15 @@ LINE 8 cut 10 -258.0 +7.500000000000001 20 -90.0 +193.52162918181818 30 0.0 11 -246.00000000000003 +2.5000000000000004 21 -90.0 +193.52162918181818 31 0.0 0 @@ -2831,15 +2859,15 @@ LINE 8 cut 10 -270.00000000000006 +2.5000000000000004 20 -90.0 +210.1579928181818 30 0.0 11 -258.0 +7.500000000000001 21 -90.0 +210.1579928181818 31 0.0 0 @@ -2849,15 +2877,15 @@ LINE 8 cut 10 -270.00000000000006 +7.500000000000001 20 -90.0 +210.1579928181818 30 0.0 11 -270.00000000000006 +7.500000000000001 21 -90.0 +221.24890190909093 31 0.0 0 @@ -2867,15 +2895,15 @@ LINE 8 cut 10 -140.00000000000003 +7.500000000000001 20 -90.0 +221.24890190909093 30 0.0 11 -270.00000000000006 +2.5000000000000004 21 -90.0 +221.24890190909093 31 0.0 0 @@ -2885,15 +2913,15 @@ LINE 8 cut 10 -140.00000000000003 +28.750000000000004 20 -90.0 +155.339811 30 0.0 11 -140.00000000000003 +32.25 21 -90.0 +155.339811 31 0.0 0 @@ -2903,15 +2931,15 @@ LINE 8 cut 10 -206.25000000000003 +32.25 20 -94.00000000000001 +155.339811 30 0.0 11 -201.75000000000003 +32.25 21 -94.00000000000001 +163.33981100000003 31 0.0 0 @@ -2921,33 +2949,35 @@ LINE 8 cut 10 -201.75000000000003 +32.25 20 -94.00000000000001 +163.33981100000003 30 0.0 11 -201.75000000000003 +28.750000000000004 21 -93.50000000000001 +163.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +45 10 -201.75000000000003 +198.0 20 -93.50000000000001 +141.13953627679874 30 0.0 11 -206.25000000000003 +258.0 21 -93.50000000000001 +141.13953627679874 31 0.0 0 @@ -2957,15 +2987,15 @@ LINE 8 cut 10 -206.25000000000003 +258.0 20 -93.50000000000001 +177.54008572320132 30 0.0 11 -206.25000000000003 +258.0 21 -94.00000000000001 +141.13953627679874 31 0.0 0 @@ -2975,15 +3005,15 @@ LINE 8 cut 10 -218.25000000000003 +198.0 20 -94.00000000000001 +177.54008572320132 30 0.0 11 -213.75 +258.0 21 -94.00000000000001 +177.54008572320132 31 0.0 0 @@ -2993,69 +3023,75 @@ LINE 8 cut 10 -213.75 +198.0 20 -94.00000000000001 +141.13953627679874 30 0.0 11 -213.75 +198.0 21 -93.50000000000001 +177.54008572320132 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +45 10 -213.75 +258.0 20 -93.50000000000001 +117.13953627679872 30 0.0 11 -218.25000000000003 +198.0 21 -93.50000000000001 +117.13953627679872 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -218.25000000000003 +258.0 20 -93.50000000000001 +117.13953627679872 30 0.0 11 -218.25000000000003 +258.0 21 -94.00000000000001 +141.13953627679874 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -326.00000000000006 +198.0 20 -90.0 +141.13953627679874 30 0.0 11 -280.00000000000006 +198.0 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3065,15 +3101,15 @@ LINE 8 cut 10 -338.00000000000006 +198.0 20 -90.0 +80.73898683039612 30 0.0 11 -326.00000000000006 +198.0 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3083,15 +3119,15 @@ LINE 8 cut 10 -350.0 +258.0 20 -90.0 +80.73898683039612 30 0.0 11 -338.00000000000006 +198.0 21 -90.0 +80.73898683039612 31 0.0 0 @@ -3101,15 +3137,15 @@ LINE 8 cut 10 -362.00000000000006 +258.0 20 -90.0 +117.13953627679872 30 0.0 11 -350.0 +258.0 21 -90.0 +80.73898683039612 31 0.0 0 @@ -3119,15 +3155,15 @@ LINE 8 cut 10 -374.00000000000006 +268.00000000000006 20 -90.0 +117.13953627679872 30 0.0 11 -362.00000000000006 +258.0 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3137,15 +3173,15 @@ LINE 8 cut 10 -386.00000000000006 +268.00000000000006 20 -90.0 +141.13953627679874 30 0.0 11 -374.00000000000006 +268.00000000000006 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3155,15 +3191,15 @@ LINE 8 cut 10 -398.00000000000006 +258.0 20 -90.0 +141.13953627679874 30 0.0 11 -386.00000000000006 +268.00000000000006 21 -90.0 +141.13953627679874 31 0.0 0 @@ -3173,15 +3209,15 @@ LINE 8 cut 10 -410.00000000000006 +188.00000000000003 20 -90.0 +141.13953627679874 30 0.0 11 -398.00000000000006 +198.0 21 -90.0 +141.13953627679874 31 0.0 0 @@ -3191,15 +3227,15 @@ LINE 8 cut 10 -410.00000000000006 +188.00000000000003 20 -90.0 +117.13953627679872 30 0.0 11 -410.00000000000006 +188.00000000000003 21 -90.0 +141.13953627679874 31 0.0 0 @@ -3209,15 +3245,15 @@ LINE 8 cut 10 -280.00000000000006 +198.0 20 -90.0 +117.13953627679872 30 0.0 11 -410.00000000000006 +188.00000000000003 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3227,15 +3263,15 @@ LINE 8 cut 10 -280.00000000000006 +215.50000000000003 20 -90.0 +122.63953627679872 30 0.0 11 -280.00000000000006 +226.50000000000003 21 -90.0 +122.63953627679872 31 0.0 0 @@ -3245,15 +3281,15 @@ LINE 8 cut 10 -334.25000000000006 +226.50000000000003 20 -94.00000000000001 +122.63953627679872 30 0.0 11 -329.75000000000006 +226.50000000000003 21 -94.00000000000001 +135.6395362767987 31 0.0 0 @@ -3263,15 +3299,15 @@ LINE 8 cut 10 -329.75000000000006 +226.50000000000003 20 -94.00000000000001 +135.6395362767987 30 0.0 11 -329.75000000000006 +215.50000000000003 21 -93.50000000000001 +135.6395362767987 31 0.0 0 @@ -3281,15 +3317,15 @@ LINE 8 cut 10 -329.75000000000006 +215.50000000000003 20 -93.50000000000001 +135.6395362767987 30 0.0 11 -334.25000000000006 +215.50000000000003 21 -93.50000000000001 +122.63953627679872 31 0.0 0 @@ -3299,15 +3335,15 @@ LINE 8 cut 10 -334.25000000000006 +247.00000000000003 20 -93.50000000000001 +124.13953627679872 30 0.0 11 -334.25000000000006 +253.00000000000003 21 -94.00000000000001 +124.13953627679872 31 0.0 0 @@ -3317,15 +3353,15 @@ LINE 8 cut 10 -346.25 +253.00000000000003 20 -94.00000000000001 +124.13953627679872 30 0.0 11 -341.75 +253.00000000000003 21 -94.00000000000001 +134.13953627679874 31 0.0 0 @@ -3335,15 +3371,15 @@ LINE 8 cut 10 -341.75 +253.00000000000003 20 -94.00000000000001 +134.13953627679874 30 0.0 11 -341.75 +247.00000000000003 21 -93.50000000000001 +134.13953627679874 31 0.0 0 @@ -3353,15 +3389,15 @@ LINE 8 cut 10 -341.75 +247.00000000000003 20 -93.50000000000001 +134.13953627679874 30 0.0 11 -346.25 +247.00000000000003 21 -93.50000000000001 +124.13953627679872 31 0.0 0 @@ -3371,15 +3407,15 @@ LINE 8 cut 10 -346.25 +265.50000000000006 20 -93.50000000000001 +133.13953627679874 30 0.0 11 -346.25 +260.50000000000006 21 -94.00000000000001 +133.13953627679874 31 0.0 0 @@ -3389,35 +3425,15 @@ LINE 8 cut 10 -612.710678118655 - 20 -55.00000000000001 - 30 -0.0 - 11 -604.710678118655 - 21 -55.00000000000001 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -90 - 10 -612.710678118655 +260.50000000000006 20 -55.00000000000001 +133.13953627679874 30 0.0 11 -612.710678118655 +260.50000000000006 21 -125.00000000000001 +125.13953627679872 31 0.0 0 @@ -3427,55 +3443,33 @@ LINE 8 cut 10 -604.710678118655 - 20 -125.00000000000001 - 30 -0.0 - 11 -612.710678118655 - 21 -125.00000000000001 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -90 - 10 -604.710678118655 +260.50000000000006 20 -125.00000000000001 +125.13953627679872 30 0.0 11 -604.710678118655 +265.50000000000006 21 -55.00000000000001 +125.13953627679872 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -620.710678118655 +190.50000000000003 20 -55.00000000000001 +125.13953627679872 30 0.0 11 -620.710678118655 +195.5 21 -125.00000000000001 +125.13953627679872 31 0.0 0 @@ -3485,15 +3479,15 @@ LINE 8 cut 10 -620.710678118655 +195.5 20 -55.00000000000001 +125.13953627679872 30 0.0 11 -620.710678118655 +195.5 21 -5.000000000000001 +133.13953627679874 31 0.0 0 @@ -3503,87 +3497,95 @@ LINE 8 cut 10 -612.710678118655 +195.5 20 -5.000000000000001 +133.13953627679874 30 0.0 11 -612.710678118655 +190.50000000000003 21 -55.00000000000001 +133.13953627679874 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -612.710678118655 +454.6666666666669 20 -0.0 +94.33981100000001 30 0.0 11 -612.710678118655 +454.6666666666669 21 -5.000000000000001 +224.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -620.710678118655 +384.6666666666669 20 -0.0 +94.33981100000001 30 0.0 11 -612.710678118655 +384.6666666666669 21 -0.0 +224.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +57.99461679191651 10 -620.710678118655 +419.6666666666669 20 -5.000000000000001 +94.33981100000001 30 0.0 11 -620.710678118655 +384.6666666666669 21 -0.0 +94.33981100000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +57.99461679191651 10 -628.710678118655 +454.6666666666669 20 -55.00000000000001 +94.33981100000001 30 0.0 11 -620.710678118655 +419.6666666666669 21 -55.00000000000001 +94.33981100000001 31 0.0 0 @@ -3593,17 +3595,17 @@ DOTTED 62 1 8 -90 +60.90264156994158 10 -628.710678118655 +419.6666666666669 20 -55.00000000000001 +-3.2056604482022527e-07 30 0.0 11 -628.710678118655 +384.6666666666669 21 -125.00000000000001 +94.33981100000001 31 0.0 0 @@ -3613,15 +3615,15 @@ LINE 8 cut 10 -620.710678118655 +417.9257952661878 20 -125.00000000000001 +0.5317572923818831 30 0.0 11 -628.710678118655 +361.29623096642734 21 -125.00000000000001 +17.829532375615347 31 0.0 0 @@ -3631,51 +3633,55 @@ LINE 8 cut 10 -636.710678118655 +419.6666666666669 20 -55.00000000000001 +-3.2056604482022527e-07 30 0.0 11 -628.710678118655 +417.9257952661878 21 -55.00000000000001 +0.5317572923818831 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +180 10 -636.710678118655 +384.6666666666669 20 -125.00000000000001 +94.339811 30 0.0 11 -636.710678118655 +361.29623096642734 21 -55.00000000000001 +17.829532375615347 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +-180 10 -628.710678118655 +384.6666666666669 20 -125.00000000000001 +94.33981100000001 30 0.0 11 -636.710678118655 +304.66666666666697 21 -125.00000000000001 +35.127307458848826 31 0.0 0 @@ -3685,33 +3691,35 @@ LINE 8 cut 10 -612.710678118655 +361.29623096642734 20 -125.00000000000001 +17.829532375615347 30 0.0 11 -612.710678118655 +304.66666666666697 21 -175.0 +35.127307458848826 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +-174 10 -620.710678118655 +304.66666666666686 20 -175.0 +94.33981099999995 30 0.0 11 -620.710678118655 +304.66666666666697 21 -125.00000000000001 +35.12730745884883 31 0.0 0 @@ -3721,17 +3729,17 @@ DOTTED 62 1 8 --180 +34.99202019855866 10 -620.710678118655 +384.6666666666669 20 -175.0 +94.33981100000001 30 0.0 11 -612.710678118655 +304.66666666666686 21 -175.0 +94.33981099999995 31 0.0 0 @@ -3741,15 +3749,15 @@ LINE 8 cut 10 -612.710678118655 +284.92916548628324 20 -175.0 +94.33981099999994 30 0.0 11 -490.7106781186549 +304.66666666666686 21 -175.0 +94.33981099999995 31 0.0 0 @@ -3759,15 +3767,15 @@ LINE 8 cut 10 -620.710678118655 +284.92916548628324 20 -175.0 +35.127307458848826 30 0.0 11 -620.710678118655 +284.92916548628324 21 -175.0 +94.33981099999994 31 0.0 0 @@ -3777,35 +3785,33 @@ LINE 8 cut 10 -490.7106781186549 +304.66666666666697 20 -175.0 +35.12730745884883 30 0.0 11 -490.7106781186549 +284.92916548628324 21 -175.0 +35.127307458848826 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -490.7106781186549 +304.66666666666686 20 -225.00000000000003 +94.33981099999995 30 0.0 11 -620.710678118655 +304.66666666666674 21 -225.00000000000003 +224.33981099999997 31 0.0 0 @@ -3815,17 +3821,17 @@ DOTTED 62 1 8 -34.99202019855866 +90.0 10 -490.7106781186549 +304.66666666666674 20 -175.0 +224.33981099999997 30 0.0 11 -490.7106781186549 +384.6666666666668 21 -225.00000000000003 +224.33981100000003 31 0.0 0 @@ -3837,15 +3843,15 @@ DOTTED 8 -180 10 -458.4510113187008 +304.6666666666667 20 -175.0 +304.339811 30 0.0 11 -490.7106781186549 +384.6666666666668 21 -225.00000000000003 +224.33981100000003 31 0.0 0 @@ -3857,15 +3863,15 @@ DOTTED 8 -174 10 -458.4510113187008 +304.6666666666667 20 -175.0 +304.339811 30 0.0 11 -490.7106781186549 +304.66666666666674 21 -175.0 +224.33981099999997 31 0.0 0 @@ -3875,15 +3881,15 @@ LINE 8 cut 10 -458.45101131870075 +304.6666666666667 20 -175.0 +304.339811 30 0.0 11 -445.1550063219791 +384.6666666666667 21 -204.3922158601766 +304.33981100000005 31 0.0 0 @@ -3895,35 +3901,15 @@ DOTTED 8 180 10 -445.1550063219791 - 20 -204.3922158601766 - 30 -0.0 - 11 -490.7106781186549 - 21 -225.00000000000003 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -66.07759212540486 - 10 -420.00000000000017 +384.6666666666667 20 -260.0 +304.33981100000005 30 0.0 11 -490.7106781186549 +384.6666666666668 21 -225.00000000000003 +224.33981100000003 31 0.0 0 @@ -3933,15 +3919,15 @@ LINE 8 cut 10 -431.85900132525745 +464.6666666666667 20 -233.78443172035318 +304.33981100000005 30 0.0 11 -420.00000000000017 +419.6666666666667 21 -260.0 +304.33981100000005 31 0.0 0 @@ -3951,95 +3937,15 @@ LINE 8 cut 10 -445.15500632197916 - 20 -204.3922158601766 - 30 -0.0 - 11 -431.85900132525745 - 21 -233.78443172035318 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -45.0 - 10 -490.7106781186549 - 20 -225.00000000000003 - 30 -0.0 - 11 -490.7106781186549 - 21 -260.0 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -45.0 - 10 -490.7106781186549 - 20 -260.0 - 30 -0.0 - 11 -490.7106781186549 - 21 -295.0 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -66.07759212540486 - 10 -420.00000000000017 - 20 -260.0 - 30 -0.0 - 11 -490.7106781186549 - 21 -295.0 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -90 - 10 -490.7106781186549 +384.6666666666667 20 -295.0 +304.33981100000005 30 0.0 11 -620.710678118655 +464.6666666666667 21 -295.0 +304.33981100000005 31 0.0 0 @@ -4051,15 +3957,15 @@ DOTTED 8 90.0 10 -620.710678118655 +384.6666666666668 20 -260.0 +224.33981100000003 30 0.0 11 -620.710678118655 +419.6666666666668 21 -225.00000000000003 +224.33981100000005 31 0.0 0 @@ -4071,15 +3977,15 @@ DOTTED 8 90.0 10 -620.710678118655 +419.6666666666668 20 -295.0 +224.33981100000005 30 0.0 11 -620.710678118655 +454.66666666666674 21 -260.0 +224.33981100000008 31 0.0 0 @@ -4089,15 +3995,15 @@ LINE 8 cut 10 -670.7106781186549 +374.66666666666674 20 -275.00000000000006 +304.339811 30 0.0 11 -670.7106781186549 +454.6666666666667 21 -225.00000000000003 +304.33981100000005 31 0.0 0 @@ -4107,15 +4013,15 @@ LINE 8 cut 10 -670.7106781186549 +419.6666666666667 20 -260.0 +304.33981100000005 30 0.0 11 -670.7106781186549 +374.66666666666674 21 -275.00000000000006 +304.339811 31 0.0 0 @@ -4127,15 +4033,15 @@ DOTTED 8 180 10 -620.710678118655 +454.66666666666674 20 -225.00000000000003 +224.3398110000001 30 0.0 11 -670.7106781186549 +454.6666666666667 21 -225.00000000000003 +304.33981100000005 31 0.0 0 @@ -4147,15 +4053,15 @@ DOTTED 8 -180 10 -620.710678118655 +454.66666666666674 20 -225.00000000000003 +224.3398110000001 30 0.0 11 -670.7106781186549 +534.6666666666665 21 -175.00000000000003 +304.33981100000017 31 0.0 0 @@ -4165,15 +4071,15 @@ LINE 8 cut 10 -670.7106781186549 +454.6666666666667 20 -225.00000000000003 +304.33981100000005 30 0.0 11 -670.7106781186549 +534.6666666666665 21 -175.00000000000003 +304.33981100000017 31 0.0 0 @@ -4185,15 +4091,15 @@ DOTTED 8 -174 10 -620.710678118655 +534.6666666666667 20 -175.0 +224.3398110000002 30 0.0 11 -670.7106781186549 +534.6666666666665 21 -175.0 +304.33981100000017 31 0.0 0 @@ -4205,33 +4111,15 @@ DOTTED 8 90.0 10 -620.710678118655 - 20 -225.00000000000003 - 30 -0.0 - 11 -620.710678118655 - 21 -175.0 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -620.710678118655 +454.66666666666674 20 -158.33333333333337 +224.3398110000001 30 0.0 11 -620.710678118655 +534.6666666666667 21 -175.0 +224.3398110000002 31 0.0 0 @@ -4241,15 +4129,15 @@ LINE 8 cut 10 -670.7106781186549 +561.3333333333334 20 -158.33333333333337 +224.3398110000002 30 0.0 11 -620.710678118655 +534.6666666666667 21 -158.33333333333337 +224.3398110000002 31 0.0 0 @@ -4259,35 +4147,15 @@ LINE 8 cut 10 -670.7106781186549 - 20 -175.0 - 30 -0.0 - 11 -670.7106781186549 - 21 -158.33333333333337 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -180 - 10 -670.7106781186549 +561.3333333333334 20 -295.0 +304.33981100000017 30 0.0 11 -620.710678118655 +561.3333333333334 21 -295.0 +224.3398110000002 31 0.0 0 @@ -4297,15 +4165,15 @@ LINE 8 cut 10 -670.7106781186549 +534.6666666666665 20 -245.00000000000003 +304.3398110000001 30 0.0 11 -670.7106781186549 +561.3333333333334 21 -260.0 +304.33981100000017 31 0.0 0 @@ -4315,33 +4183,35 @@ LINE 8 cut 10 -670.7106781186549 +534.6666666666667 20 -295.0 +224.3398110000002 30 0.0 11 -670.7106781186549 +534.666666666667 21 -245.00000000000003 +94.33981100000021 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +34.99202019855866 10 -670.7106781186549 +534.666666666667 20 -345.00000000000006 +94.33981100000022 30 0.0 11 -670.7106781186549 +454.6666666666669 21 -295.0 +94.33981100000011 31 0.0 0 @@ -4353,15 +4223,15 @@ DOTTED 8 -180 10 -670.7106781186549 +534.6666666666671 20 -345.00000000000006 +35.12730745884912 30 0.0 11 -620.710678118655 +454.66666666666697 21 -295.0 +94.33981100000011 31 0.0 0 @@ -4371,37 +4241,35 @@ DOTTED 62 1 8 -90.0 +-174 10 -620.710678118655 +534.6666666666671 20 -345.00000000000006 +35.12730745884912 30 0.0 11 -620.710678118655 +534.666666666667 21 -295.0 +94.33981100000022 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 --174 +cut 10 -670.7106781186549 +534.6666666666671 20 -345.00000000000006 +35.12730745884912 30 0.0 11 -620.710678118655 +478.0371023669066 21 -345.00000000000006 +17.829532375615546 31 0.0 0 @@ -4411,17 +4279,17 @@ DOTTED 62 1 8 -34.99202019855866 +180 10 -490.71067811865487 +478.0371023669066 20 -295.0 +17.829532375615546 30 0.0 11 -490.71067811865487 +454.66666666666697 21 -345.00000000000006 +94.33981100000011 31 0.0 0 @@ -4431,849 +4299,17 @@ DOTTED 62 1 8 --174 - 10 -490.71067811865487 - 20 -345.00000000000006 - 30 -0.0 - 11 -458.45101131870075 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 --180 - 10 -490.71067811865487 - 20 -295.0 - 30 -0.0 - 11 -458.45101131870075 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -490.71067811865487 - 20 -355.75322226665145 - 30 -0.0 - 11 -490.71067811865487 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -458.45101131870075 - 20 -355.75322226665145 - 30 -0.0 - 11 -490.71067811865487 - 21 -355.75322226665145 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -458.45101131870075 - 20 -345.00000000000006 - 30 -0.0 - 11 -458.45101131870075 - 21 -355.75322226665145 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -180 - 10 -490.71067811865487 - 20 -295.0 - 30 -0.0 - 11 -445.1550063219791 - 21 -315.6077841398234 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -445.1550063219791 - 20 -315.6077841398234 - 30 -0.0 - 11 -458.45101131870075 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -431.8590013252574 - 20 -286.21556827964685 - 30 -0.0 - 11 -445.1550063219791 - 21 -315.6077841398234 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -420.00000000000006 - 20 -260.0 - 30 -0.0 - 11 -431.8590013252574 - 21 -286.21556827964685 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -612.710678118655 - 20 -345.00000000000006 - 30 -0.0 - 11 -620.710678118655 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -490.71067811865487 - 20 -345.00000000000006 - 30 -0.0 - 11 -612.710678118655 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -490.71067811865487 - 20 -345.00000000000006 - 30 -0.0 - 11 -490.71067811865487 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -620.710678118655 - 20 -345.00000000000006 - 30 -0.0 - 11 -620.710678118655 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -670.7106781186549 - 20 -361.66666666666674 - 30 -0.0 - 11 -670.7106781186549 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -620.710678118655 - 20 -361.66666666666674 - 30 -0.0 - 11 -670.7106781186549 - 21 -361.66666666666674 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -620.710678118655 - 20 -345.00000000000006 - 30 -0.0 - 11 -620.710678118655 - 21 -361.66666666666674 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -458.4510113187008 - 20 -164.2467777333486 - 30 -0.0 - 11 -458.4510113187008 - 21 -175.0 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -490.7106781186549 - 20 -164.2467777333486 - 30 -0.0 - 11 -458.4510113187008 - 21 -164.2467777333486 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -490.7106781186549 - 20 -175.0 - 30 -0.0 - 11 -490.7106781186549 - 21 -164.2467777333486 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -596.7106781186549 - 20 -125.00000000000001 - 30 -0.0 - 11 -604.710678118655 - 21 -125.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -596.7106781186549 - 20 -55.00000000000001 - 30 -0.0 - 11 -596.7106781186549 - 21 -125.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -604.710678118655 - 20 -55.00000000000001 - 30 -0.0 - 11 -596.7106781186549 - 21 -55.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -604.710678118655 - 20 -86.00000000000001 - 30 -0.0 - 11 -612.710678118655 - 21 -86.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -612.710678118655 - 20 -86.00000000000001 - 30 -0.0 - 11 -612.710678118655 - 21 -94.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -612.710678118655 - 20 -94.00000000000001 - 30 -0.0 - 11 -604.710678118655 - 21 -94.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -604.710678118655 - 20 -94.00000000000001 - 30 -0.0 - 11 -604.710678118655 - 21 -86.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -618.0440114519882 - 20 -1.2500000000000002 - 30 -0.0 - 11 -618.0440114519882 - 21 -3.7500000000000004 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -618.0440114519882 - 20 -3.7500000000000004 - 30 -0.0 - 11 -615.3773447853215 - 21 -3.7500000000000004 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -615.3773447853215 - 20 -3.7500000000000004 - 30 -0.0 - 11 -615.3773447853215 - 21 -1.2500000000000002 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -620.710678118655 - 20 -86.00000000000001 - 30 -0.0 - 11 -628.710678118655 - 21 -86.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -628.710678118655 - 20 -86.00000000000001 - 30 -0.0 - 11 -628.710678118655 - 21 -94.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -628.710678118655 - 20 -94.00000000000001 - 30 -0.0 - 11 -620.710678118655 - 21 -94.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -620.710678118655 - 20 -94.00000000000001 - 30 -0.0 - 11 -620.710678118655 - 21 -86.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -630.4606781186549 - 20 -80.70454545454547 - 30 -0.0 - 11 -630.4606781186549 - 21 -67.47727272727273 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -630.4606781186549 - 20 -67.47727272727273 - 30 -0.0 - 11 -630.9606781186549 - 21 -67.47727272727273 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -630.9606781186549 - 20 -67.47727272727273 - 30 -0.0 - 11 -630.9606781186549 - 21 -80.70454545454547 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -630.9606781186549 - 20 -80.70454545454547 - 30 -0.0 - 11 -630.4606781186549 - 21 -80.70454545454547 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -630.4606781186549 - 20 -112.52272727272728 - 30 -0.0 - 11 -630.4606781186549 - 21 -99.29545454545456 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -630.4606781186549 - 20 -99.29545454545456 - 30 -0.0 - 11 -630.9606781186549 - 21 -99.29545454545456 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -630.9606781186549 - 20 -99.29545454545456 - 30 -0.0 - 11 -630.9606781186549 - 21 -112.52272727272728 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -630.9606781186549 - 20 -112.52272727272728 - 30 -0.0 - 11 -630.4606781186549 - 21 -112.52272727272728 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -448.40187590113186 - 20 -217.3888829577983 - 30 -0.0 - 11 -443.7637963941598 - 21 -227.64184496249058 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -443.7637963941598 - 20 -227.64184496249058 - 30 -0.0 - 11 -443.308239676193 - 21 -227.43576712109234 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -443.308239676193 - 20 -227.43576712109234 - 30 -0.0 - 11 -447.94631918316514 - 21 -217.18280511640006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -447.94631918316514 - 20 -217.18280511640006 - 30 -0.0 - 11 -448.40187590113186 - 21 -217.3888829577983 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -657.9606781186549 - 20 -258.58333333333337 - 30 -0.0 - 11 -657.9606781186549 - 21 -241.41666666666669 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut +60.90264156994158 10 -657.9606781186549 +419.6666666666672 20 -241.41666666666669 +-3.20565959555097e-07 30 0.0 11 -658.4606781186549 +454.6666666666669 21 -241.41666666666669 +94.33981100000011 31 0.0 0 @@ -5283,15 +4319,15 @@ LINE 8 cut 10 -658.4606781186549 +421.4075380671463 20 -241.41666666666669 +0.5317572923819398 30 0.0 11 -658.4606781186549 +419.6666666666672 21 -258.58333333333337 +-3.20565959555097e-07 31 0.0 0 @@ -5301,15 +4337,15 @@ LINE 8 cut 10 -658.4606781186549 +478.0371023669066 20 -258.58333333333337 +17.829532375615546 30 0.0 11 -657.9606781186549 +421.4075380671463 21 -258.58333333333337 +0.5317572923819398 31 0.0 0 @@ -5319,15 +4355,15 @@ LINE 8 cut 10 -654.0440114519881 +554.4041678470508 20 -162.50000000000003 +35.12730745884915 30 0.0 11 -654.0440114519881 +534.6666666666671 21 -170.83333333333334 +35.12730745884912 31 0.0 0 @@ -5337,15 +4373,15 @@ LINE 8 cut 10 -654.0440114519881 +554.4041678470506 20 -170.83333333333334 +94.33981100000025 30 0.0 11 -637.3773447853216 +554.4041678470508 21 -170.83333333333334 +35.12730745884915 31 0.0 0 @@ -5355,15 +4391,15 @@ LINE 8 cut 10 -637.3773447853216 +534.666666666667 20 -170.83333333333334 +94.33981100000022 30 0.0 11 -637.3773447853216 +554.4041678470506 21 -162.50000000000003 +94.33981100000025 31 0.0 0 @@ -5373,15 +4409,15 @@ LINE 8 cut 10 -657.9606781186549 +278.0 20 -278.5833333333333 +304.33981099999994 30 0.0 11 -657.9606781186549 +304.6666666666667 21 -261.4166666666667 +304.339811 31 0.0 0 @@ -5391,15 +4427,15 @@ LINE 8 cut 10 -657.9606781186549 +278.0000000000001 20 -261.4166666666667 +224.3398109999999 30 0.0 11 -658.4606781186549 +278.0 21 -261.4166666666667 +304.33981099999994 31 0.0 0 @@ -5409,15 +4445,15 @@ LINE 8 cut 10 -658.4606781186549 +304.66666666666674 20 -261.4166666666667 +224.33981099999997 30 0.0 11 -658.4606781186549 +278.0000000000001 21 -278.5833333333333 +224.3398109999999 31 0.0 0 @@ -5427,15 +4463,15 @@ LINE 8 cut 10 -658.4606781186549 +403.68584483600716 20 -278.5833333333333 +20.621135404204413 30 0.0 11 -657.9606781186549 +384.3311341613512 21 -278.5833333333333 +26.5331256550754 31 0.0 0 @@ -5445,15 +4481,15 @@ LINE 8 cut 10 -469.20423358535214 +384.3311341613512 20 -353.06491669998854 +26.5331256550754 30 0.0 11 -469.20423358535214 +384.1850689382248 21 -347.6883055666629 +26.05493641367301 31 0.0 0 @@ -5463,15 +4499,15 @@ LINE 8 cut 10 -469.20423358535214 +384.1850689382248 20 -347.6883055666629 +26.05493641367301 30 0.0 11 -479.95745585200353 +403.53977961288064 21 -347.6883055666629 +20.142946162802023 31 0.0 0 @@ -5481,15 +4517,15 @@ LINE 8 cut 10 -479.95745585200353 +403.53977961288064 20 -347.6883055666629 +20.142946162802023 30 0.0 11 -479.95745585200353 +403.68584483600716 21 -353.06491669998854 +20.621135404204413 31 0.0 0 @@ -5499,15 +4535,15 @@ LINE 8 cut 10 -443.76379639415967 +289.8635407813792 20 -292.3581550375095 +54.86480863923253 30 0.0 11 -448.4018759011318 +299.73229137157097 21 -302.6111170422017 +54.86480863923254 31 0.0 0 @@ -5517,15 +4553,15 @@ LINE 8 cut 10 -448.4018759011318 +299.73229137157097 20 -302.6111170422017 +54.86480863923254 30 0.0 11 -447.94631918316503 +299.73229137157097 21 -302.81719488360005 +74.60230981961625 31 0.0 0 @@ -5535,15 +4571,15 @@ LINE 8 cut 10 -447.94631918316503 +299.73229137157097 20 -302.81719488360005 +74.60230981961625 30 0.0 11 -443.30823967619295 +289.8635407813792 21 -292.5642328789077 +74.60230981961624 31 0.0 0 @@ -5553,15 +4589,15 @@ LINE 8 cut 10 -443.30823967619295 +411.08333333333337 20 -292.5642328789077 +284.0898110000001 30 0.0 11 -443.76379639415967 +438.25000000000006 21 -292.3581550375095 +284.0898110000001 31 0.0 0 @@ -5571,15 +4607,15 @@ LINE 8 cut 10 -615.1273447853216 +438.25000000000006 20 -341.0 +284.0898110000001 30 0.0 11 -618.2940114519882 +438.25000000000006 21 -341.0 +284.5898110000001 31 0.0 0 @@ -5589,15 +4625,15 @@ LINE 8 cut 10 -618.2940114519882 +438.25000000000006 20 -341.0 +284.5898110000001 30 0.0 11 -618.2940114519882 +411.08333333333337 21 -341.5 +284.5898110000001 31 0.0 0 @@ -5607,15 +4643,15 @@ LINE 8 cut 10 -618.2940114519882 +411.08333333333337 20 -341.5 +284.5898110000001 30 0.0 11 -615.1273447853216 +411.08333333333337 21 -341.5 +284.0898110000001 31 0.0 0 @@ -5625,15 +4661,15 @@ LINE 8 cut 10 -615.1273447853216 +401.0833333333334 20 -341.5 +284.08981100000005 30 0.0 11 -615.1273447853216 +428.25000000000006 21 -341.0 +284.0898110000001 31 0.0 0 @@ -5643,15 +4679,15 @@ LINE 8 cut 10 -637.3773447853216 +428.25000000000006 20 -357.50000000000006 +284.0898110000001 30 0.0 11 -637.3773447853216 +428.25000000000006 21 -349.16666666666674 +284.5898110000001 31 0.0 0 @@ -5661,15 +4697,15 @@ LINE 8 cut 10 -637.3773447853216 +428.25000000000006 20 -349.16666666666674 +284.5898110000001 30 0.0 11 -654.0440114519881 +401.0833333333334 21 -349.16666666666674 +284.58981100000005 31 0.0 0 @@ -5679,15 +4715,15 @@ LINE 8 cut 10 -654.0440114519881 +401.0833333333334 20 -349.16666666666674 +284.58981100000005 30 0.0 11 -654.0440114519881 +401.0833333333334 21 -357.50000000000006 +284.08981100000005 31 0.0 0 @@ -5697,15 +4733,15 @@ LINE 8 cut 10 -479.95745585200353 +554.6666666666666 20 -166.93508330001148 +277.6731443333335 30 0.0 11 -479.95745585200353 +541.3333333333334 21 -172.31169443333718 +277.6731443333334 31 0.0 0 @@ -5715,15 +4751,15 @@ LINE 8 cut 10 -479.95745585200353 +541.3333333333334 20 -172.31169443333718 +277.6731443333334 30 0.0 11 -469.20423358535214 +541.3333333333334 21 -172.31169443333718 +251.00647766666683 31 0.0 0 @@ -5733,15 +4769,15 @@ LINE 8 cut 10 -469.20423358535214 +541.3333333333334 20 -172.31169443333718 +251.00647766666683 30 0.0 11 -469.20423358535214 +554.6666666666666 21 -166.93508330001148 +251.00647766666685 31 0.0 0 @@ -5751,15 +4787,15 @@ LINE 8 cut 10 -598.7106781186549 +455.00219917198274 20 -67.72727272727273 +26.533125655075565 30 0.0 11 -598.7106781186549 +435.6474884973269 21 -63.727272727272734 +20.621135404204527 31 0.0 0 @@ -5769,15 +4805,15 @@ LINE 8 cut 10 -598.7106781186549 +435.6474884973269 20 -63.727272727272734 +20.621135404204527 30 0.0 11 -602.710678118655 +435.7935537204534 21 -67.72727272727273 +20.142946162802136 31 0.0 0 @@ -5787,15 +4823,15 @@ LINE 8 cut 10 -602.710678118655 +435.7935537204534 20 -67.72727272727273 +20.142946162802136 30 0.0 11 -602.710678118655 +455.14826439510927 21 -80.45454545454547 +26.05493641367315 31 0.0 0 @@ -5805,15 +4841,15 @@ LINE 8 cut 10 -602.710678118655 +455.14826439510927 20 -80.45454545454547 +26.05493641367315 30 0.0 11 -598.7106781186549 +455.00219917198274 21 -84.45454545454547 +26.533125655075565 31 0.0 0 @@ -5823,15 +4859,15 @@ LINE 8 cut 10 -598.7106781186549 +549.4697925519548 20 -84.45454545454547 +74.60230981961654 30 0.0 11 -598.7106781186549 +539.6010419617629 21 -80.45454545454547 +74.60230981961652 31 0.0 0 @@ -5841,15 +4877,15 @@ LINE 8 cut 10 -598.7106781186549 +539.6010419617629 20 -99.54545454545455 +74.60230981961652 30 0.0 11 -598.7106781186549 +539.6010419617629 21 -95.54545454545456 +54.86480863923283 31 0.0 0 @@ -5859,15 +4895,15 @@ LINE 8 cut 10 -598.7106781186549 +539.6010419617629 20 -95.54545454545456 +54.86480863923283 30 0.0 11 -602.710678118655 +549.4697925519548 21 -99.54545454545455 +54.86480863923283 31 0.0 0 @@ -5877,15 +4913,15 @@ LINE 8 cut 10 -602.710678118655 +284.6666666666668 20 -99.54545454545455 +251.0064776666666 30 0.0 11 -602.710678118655 +298.0000000000001 21 -112.27272727272728 +251.00647766666665 31 0.0 0 @@ -5895,15 +4931,15 @@ LINE 8 cut 10 -602.710678118655 +298.0000000000001 20 -112.27272727272728 +251.00647766666665 30 0.0 11 -598.7106781186549 +298.0000000000001 21 -116.27272727272728 +277.67314433333325 31 0.0 0 @@ -5913,15 +4949,15 @@ LINE 8 cut 10 -598.7106781186549 +298.0000000000001 20 -116.27272727272728 +277.67314433333325 30 0.0 11 -598.7106781186549 +284.6666666666668 21 -112.27272727272728 +277.67314433333325 31 0.0 0 diff --git a/rocolib/output/ESP32StackBoat/graph-autofold-graph.dxf b/rocolib/output/ESP32StackBoat/graph-autofold-graph.dxf index cb05fa41fd897ee1437560a14272ddafc9923593..0be20bef9649e3ac3835fcb67e2b82aa10c18b5c 100644 --- a/rocolib/output/ESP32StackBoat/graph-autofold-graph.dxf +++ b/rocolib/output/ESP32StackBoat/graph-autofold-graph.dxf @@ -947,13 +947,13 @@ DOTTED 10 34.0 20 -59.50000000000001 +147.33981100000003 30 0.0 11 -34.0 +94.00000000000001 21 -120.50000000000001 +147.33981100000003 31 0.0 0 @@ -965,15 +965,15 @@ DOTTED 8 0 10 -10.000000000000002 +94.00000000000001 20 -120.50000000000001 +147.33981100000003 30 0.0 11 -10.000000000000002 +94.00000000000001 21 -59.50000000000001 +171.339811 31 0.0 0 @@ -985,15 +985,15 @@ DOTTED 8 0 10 -10.000000000000002 +94.00000000000001 20 -59.50000000000001 +171.339811 30 0.0 11 -22.000000000000004 +34.0 21 -59.50000000000001 +171.339811 31 0.0 0 @@ -1005,15 +1005,15 @@ DOTTED 8 0 10 -22.000000000000004 +34.0 20 -59.50000000000001 +171.339811 30 0.0 11 34.0 21 -59.50000000000001 +147.33981100000003 31 0.0 0 @@ -1025,13 +1025,13 @@ LINE 10 34.0 20 -59.50000000000001 +140.33981100000003 30 0.0 11 34.0 21 -59.50000000000001 +147.33981100000003 31 0.0 0 @@ -1041,15 +1041,15 @@ LINE 8 0 10 -10.000000000000002 +94.00000000000001 20 -59.50000000000001 +140.33981100000003 30 0.0 11 -10.000000000000002 +34.0 21 -59.50000000000001 +140.33981100000003 31 0.0 0 @@ -1059,15 +1059,15 @@ LINE 8 0 10 -10.000000000000002 +94.00000000000001 20 -19.500000000000004 +147.33981100000003 30 0.0 11 -10.000000000000002 +94.00000000000001 21 -59.50000000000001 +140.33981100000003 31 0.0 0 @@ -1077,15 +1077,15 @@ LINE 8 0 10 -22.000000000000004 +101.00000000000001 20 -59.50000000000001 +147.33981100000003 30 0.0 11 -22.000000000000004 +94.00000000000001 21 -19.500000000000004 +147.33981100000003 31 0.0 0 @@ -1095,15 +1095,15 @@ LINE 8 0 10 -10.000000000000002 +101.00000000000001 20 -14.5 +171.339811 30 0.0 11 -10.000000000000002 +101.00000000000001 21 -19.500000000000004 +147.33981100000003 31 0.0 0 @@ -1113,33 +1113,35 @@ LINE 8 0 10 -22.000000000000004 +94.00000000000001 20 -14.5 +171.339811 30 0.0 11 -10.000000000000002 +101.00000000000001 21 -14.5 +171.339811 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -22.000000000000004 +94.00000000000001 20 -19.500000000000004 +171.339811 30 0.0 11 -22.000000000000004 +94.00000000000001 21 -14.5 +232.33981100000003 31 0.0 0 @@ -1149,33 +1151,35 @@ LINE 8 0 10 -22.000000000000004 +34.0 20 -19.500000000000004 +232.33981100000003 30 0.0 11 -22.000000000000004 +94.00000000000001 21 -59.50000000000001 +232.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 34.0 20 -59.50000000000001 +171.339811 30 0.0 11 34.0 21 -19.500000000000004 +232.33981100000003 31 0.0 0 @@ -1185,33 +1189,35 @@ LINE 8 0 10 -22.000000000000004 +118.00000000000001 20 -14.5 +171.339811 30 0.0 11 -22.000000000000004 +94.00000000000001 21 -19.500000000000004 +171.339811 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -34.0 +118.00000000000001 20 -14.5 +171.339811 30 0.0 11 -22.000000000000004 +118.00000000000001 21 -14.5 +232.33981100000003 31 0.0 0 @@ -1221,15 +1227,15 @@ LINE 8 0 10 -34.0 +94.00000000000001 20 -19.500000000000004 +232.33981100000003 30 0.0 11 -34.0 +118.00000000000001 21 -14.5 +232.33981100000003 31 0.0 0 @@ -1239,35 +1245,33 @@ LINE 8 0 10 -70.00000000000001 +178.00000000000003 20 -59.50000000000001 +171.339811 30 0.0 11 -34.0 +118.00000000000001 21 -59.50000000000001 +171.339811 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -70.00000000000001 +178.00000000000003 20 -59.50000000000001 +232.33981100000003 30 0.0 11 -70.00000000000001 +178.00000000000003 21 -120.50000000000001 +171.339811 31 0.0 0 @@ -1277,15 +1281,15 @@ LINE 8 0 10 -34.0 +118.00000000000001 20 -120.50000000000001 +232.33981100000003 30 0.0 11 -70.00000000000001 +178.00000000000003 21 -120.50000000000001 +232.33981100000003 31 0.0 0 @@ -1295,53 +1299,53 @@ LINE 8 0 10 -94.00000000000001 +34.0 20 -59.50000000000001 +171.339811 30 0.0 11 -70.00000000000001 +10.000000000000002 21 -59.50000000000001 +171.339811 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -94.00000000000001 +10.000000000000002 20 -59.50000000000001 +232.33981100000003 30 0.0 11 -94.00000000000001 +34.0 21 -120.50000000000001 +232.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -70.00000000000001 +10.000000000000002 20 -120.50000000000001 +232.33981100000003 30 0.0 11 -94.00000000000001 +10.000000000000002 21 -120.50000000000001 +171.339811 31 0.0 0 @@ -1351,15 +1355,15 @@ LINE 8 0 10 -130.0 +0.0 20 -59.50000000000001 +232.33981100000003 30 0.0 11 -94.00000000000001 +10.000000000000002 21 -59.50000000000001 +232.33981100000003 31 0.0 0 @@ -1369,15 +1373,15 @@ LINE 8 0 10 -130.0 +0.0 20 -120.50000000000001 +171.339811 30 0.0 11 -130.0 +0.0 21 -59.50000000000001 +232.33981100000003 31 0.0 0 @@ -1387,55 +1391,33 @@ LINE 8 0 10 -94.00000000000001 +10.000000000000002 20 -120.50000000000001 +171.339811 30 0.0 11 -130.0 - 21 -120.50000000000001 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -34.0 - 20 -120.50000000000001 - 30 0.0 - 11 -22.000000000000004 21 -120.50000000000001 +171.339811 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -22.000000000000004 +27.000000000000004 20 -120.50000000000001 +171.339811 30 0.0 11 -10.000000000000002 +34.0 21 -120.50000000000001 +171.339811 31 0.0 0 @@ -1445,15 +1427,15 @@ LINE 8 0 10 -10.000000000000002 +27.000000000000004 20 -120.50000000000001 +147.33981100000003 30 0.0 11 -10.000000000000002 +27.000000000000004 21 -120.50000000000001 +171.339811 31 0.0 0 @@ -1465,13 +1447,13 @@ LINE 10 34.0 20 -120.50000000000001 +147.33981100000003 30 0.0 11 -34.0 +27.000000000000004 21 -120.50000000000001 +147.33981100000003 31 0.0 0 @@ -1481,15 +1463,15 @@ LINE 8 0 10 -34.0 +83.0909090909091 20 -160.50000000000003 +142.08981100000003 30 0.0 11 -34.0 +86.59090909090911 21 -120.50000000000001 +142.08981100000003 31 0.0 0 @@ -1499,15 +1481,15 @@ LINE 8 0 10 -22.000000000000004 +86.59090909090911 20 -120.50000000000001 +142.08981100000003 30 0.0 11 -22.000000000000004 +83.0909090909091 21 -160.50000000000003 +145.58981100000003 31 0.0 0 @@ -1517,15 +1499,15 @@ LINE 8 0 10 -34.0 +83.0909090909091 20 -165.50000000000003 +145.58981100000003 30 0.0 11 -34.0 +72.1818181818182 21 -160.50000000000003 +145.58981100000003 31 0.0 0 @@ -1535,15 +1517,15 @@ LINE 8 0 10 -22.000000000000004 +72.1818181818182 20 -165.50000000000003 +145.58981100000003 30 0.0 11 -34.0 +68.6818181818182 21 -165.50000000000003 +142.08981100000003 31 0.0 0 @@ -1553,15 +1535,15 @@ LINE 8 0 10 -22.000000000000004 +68.6818181818182 20 -160.50000000000003 +142.08981100000003 30 0.0 11 -22.000000000000004 +72.1818181818182 21 -165.50000000000003 +142.08981100000003 31 0.0 0 @@ -1571,15 +1553,15 @@ LINE 8 0 10 -22.000000000000004 +55.818181818181834 20 -160.50000000000003 +142.08981100000003 30 0.0 11 -22.000000000000004 +59.31818181818183 21 -120.50000000000001 +142.08981100000003 31 0.0 0 @@ -1589,15 +1571,15 @@ LINE 8 0 10 -10.000000000000002 +59.31818181818183 20 -120.50000000000001 +142.08981100000003 30 0.0 11 -10.000000000000002 +55.818181818181834 21 -160.50000000000003 +145.58981100000003 31 0.0 0 @@ -1607,15 +1589,15 @@ LINE 8 0 10 -22.000000000000004 +55.818181818181834 20 -165.50000000000003 +145.58981100000003 30 0.0 11 -22.000000000000004 +44.90909090909092 21 -160.50000000000003 +145.58981100000003 31 0.0 0 @@ -1625,15 +1607,15 @@ LINE 8 0 10 -10.000000000000002 +44.90909090909092 20 -165.50000000000003 +145.58981100000003 30 0.0 11 -22.000000000000004 +41.40909090909093 21 -165.50000000000003 +142.08981100000003 31 0.0 0 @@ -1643,15 +1625,15 @@ LINE 8 0 10 -10.000000000000002 +41.40909090909093 20 -160.50000000000003 +142.08981100000003 30 0.0 11 -10.000000000000002 +44.90909090909092 21 -165.50000000000003 +142.08981100000003 31 0.0 0 @@ -1661,15 +1643,15 @@ LINE 8 0 10 -0.0 +99.25000000000001 20 -120.50000000000001 +163.33981100000003 30 0.0 11 -10.000000000000002 +95.75000000000001 21 -120.50000000000001 +163.33981100000003 31 0.0 0 @@ -1679,15 +1661,15 @@ LINE 8 0 10 -0.0 +95.75000000000001 20 -59.50000000000001 +163.33981100000003 30 0.0 11 -0.0 +95.75000000000001 21 -120.50000000000001 +155.339811 31 0.0 0 @@ -1697,15 +1679,15 @@ LINE 8 0 10 -10.000000000000002 +95.75000000000001 20 -59.50000000000001 +155.339811 30 0.0 11 -0.0 +99.25000000000001 21 -59.50000000000001 +155.339811 31 0.0 0 @@ -1715,15 +1697,15 @@ LINE 8 0 10 -11.400000000000002 +42.0 20 -69.5 +222.83981100000003 30 0.0 11 -12.6 +42.0 21 -69.5 +204.83981100000003 31 0.0 0 @@ -1733,15 +1715,15 @@ LINE 8 0 10 -12.6 +42.0 20 -69.5 +204.83981100000003 30 0.0 11 -12.6 +72.00000000000001 21 -110.50000000000001 +204.83981100000003 31 0.0 0 @@ -1751,15 +1733,15 @@ LINE 8 0 10 -12.6 +72.00000000000001 20 -110.50000000000001 +204.83981100000003 30 0.0 11 -11.400000000000002 +72.00000000000001 21 -110.50000000000001 +222.83981100000003 31 0.0 0 @@ -1769,15 +1751,15 @@ LINE 8 0 10 -11.400000000000002 +72.00000000000001 20 -110.50000000000001 +222.83981100000003 30 0.0 11 -11.400000000000002 +42.0 21 -69.5 +222.83981100000003 31 0.0 0 @@ -1787,15 +1769,15 @@ LINE 8 0 10 -31.400000000000002 +115.40000000000002 20 -70.00000000000001 +181.33981100000003 30 0.0 11 -32.60000000000001 +116.60000000000001 21 -70.00000000000001 +181.33981100000003 31 0.0 0 @@ -1805,15 +1787,15 @@ LINE 8 0 10 -32.60000000000001 +116.60000000000001 20 -70.00000000000001 +181.33981100000003 30 0.0 11 -32.60000000000001 +116.60000000000001 21 -100.0 +222.33981100000003 31 0.0 0 @@ -1823,15 +1805,15 @@ LINE 8 0 10 -32.60000000000001 +116.60000000000001 20 -100.0 +222.33981100000003 30 0.0 11 -31.400000000000002 +115.40000000000002 21 -100.0 +222.33981100000003 31 0.0 0 @@ -1841,15 +1823,15 @@ LINE 8 0 10 -31.400000000000002 +115.40000000000002 20 -100.0 +222.33981100000003 30 0.0 11 -31.400000000000002 +115.40000000000002 21 -70.00000000000001 +181.33981100000003 31 0.0 0 @@ -1859,15 +1841,15 @@ LINE 8 0 10 -18.000000000000004 +95.4 20 -15.750000000000002 +181.83981100000003 30 0.0 11 -18.000000000000004 +96.60000000000001 21 -18.25 +181.83981100000003 31 0.0 0 @@ -1877,15 +1859,15 @@ LINE 8 0 10 -18.000000000000004 +96.60000000000001 20 -18.25 +181.83981100000003 30 0.0 11 -14.000000000000002 +96.60000000000001 21 -18.25 +211.83981100000003 31 0.0 0 @@ -1895,15 +1877,15 @@ LINE 8 0 10 -14.000000000000002 +96.60000000000001 20 -18.25 +211.83981100000003 30 0.0 11 -14.000000000000002 +95.4 21 -15.750000000000002 +211.83981100000003 31 0.0 0 @@ -1913,15 +1895,15 @@ LINE 8 0 10 -30.000000000000004 +95.4 20 -15.750000000000002 +211.83981100000003 30 0.0 11 -30.000000000000004 +95.4 21 -18.25 +181.83981100000003 31 0.0 0 @@ -1931,15 +1913,15 @@ LINE 8 0 10 -30.000000000000004 +110.25000000000001 20 -18.25 +179.08981100000003 30 0.0 11 -26.000000000000004 +101.75000000000001 21 -18.25 +179.08981100000003 31 0.0 0 @@ -1949,15 +1931,15 @@ LINE 8 0 10 -26.000000000000004 +101.75000000000001 20 -18.25 +179.08981100000003 30 0.0 11 -26.000000000000004 +101.75000000000001 21 -15.750000000000002 +178.58981100000003 31 0.0 0 @@ -1967,15 +1949,15 @@ LINE 8 0 10 -30.000000000000004 +101.75000000000001 20 -111.00000000000001 +178.58981100000003 30 0.0 11 -30.000000000000004 +110.25000000000001 21 -93.00000000000001 +178.58981100000003 31 0.0 0 @@ -1985,15 +1967,15 @@ LINE 8 0 10 -30.000000000000004 +110.25000000000001 20 -93.00000000000001 +178.58981100000003 30 0.0 11 -60.00000000000001 +110.25000000000001 21 -93.00000000000001 +179.08981100000003 31 0.0 0 @@ -2003,15 +1985,15 @@ LINE 8 0 10 -60.00000000000001 +101.75000000000001 20 -93.00000000000001 +226.83981100000003 30 0.0 11 -60.00000000000001 +110.25000000000001 21 -111.00000000000001 +226.83981100000003 31 0.0 0 @@ -2021,15 +2003,15 @@ LINE 8 0 10 -60.00000000000001 +110.25000000000001 20 -111.00000000000001 +226.83981100000003 30 0.0 11 -30.000000000000004 +110.25000000000001 21 -111.00000000000001 +227.33981100000003 31 0.0 0 @@ -2039,15 +2021,15 @@ LINE 8 0 10 -91.40000000000002 +110.25000000000001 20 -69.5 +227.33981100000003 30 0.0 11 -92.60000000000001 +101.75000000000001 21 -69.5 +227.33981100000003 31 0.0 0 @@ -2057,15 +2039,15 @@ LINE 8 0 10 -92.60000000000001 +101.75000000000001 20 -69.5 +227.33981100000003 30 0.0 11 -92.60000000000001 +101.75000000000001 21 -110.50000000000001 +226.83981100000003 31 0.0 0 @@ -2075,15 +2057,15 @@ LINE 8 0 10 -92.60000000000001 +133.00000000000003 20 -110.50000000000001 +185.33981100000003 30 0.0 11 -91.40000000000002 +133.00000000000003 21 -110.50000000000001 +178.33981100000003 31 0.0 0 @@ -2093,15 +2075,15 @@ LINE 8 0 10 -91.40000000000002 +133.00000000000003 20 -110.50000000000001 +178.33981100000003 30 0.0 11 -91.40000000000002 +153.00000000000003 21 -69.5 +178.33981100000003 31 0.0 0 @@ -2111,15 +2093,15 @@ LINE 8 0 10 -71.4 +153.00000000000003 20 -70.00000000000001 +178.33981100000003 30 0.0 11 -72.60000000000001 +153.00000000000003 21 -70.00000000000001 +185.33981100000003 31 0.0 0 @@ -2129,15 +2111,15 @@ LINE 8 0 10 -72.60000000000001 +153.00000000000003 20 -70.00000000000001 +185.33981100000003 30 0.0 11 -72.60000000000001 +133.00000000000003 21 -100.0 +185.33981100000003 31 0.0 0 @@ -2147,15 +2129,15 @@ LINE 8 0 10 -72.60000000000001 +140.06818181818184 20 -100.0 +176.83981100000003 30 0.0 11 -71.4 +128.65909090909093 21 -100.0 +176.83981100000003 31 0.0 0 @@ -2165,15 +2147,15 @@ LINE 8 0 10 -71.4 +128.65909090909093 20 -100.0 +176.83981100000003 30 0.0 11 -71.4 +128.65909090909093 21 -70.00000000000001 +176.33981100000003 31 0.0 0 @@ -2183,15 +2165,15 @@ LINE 8 0 10 -97.00000000000001 +128.65909090909093 20 -73.50000000000001 +176.33981100000003 30 0.0 11 -97.00000000000001 +140.06818181818184 21 -66.50000000000001 +176.33981100000003 31 0.0 0 @@ -2201,15 +2183,15 @@ LINE 8 0 10 -97.00000000000001 +140.06818181818184 20 -66.50000000000001 +176.33981100000003 30 0.0 11 -117.00000000000001 +140.06818181818184 21 -66.50000000000001 +176.83981100000003 31 0.0 0 @@ -2219,15 +2201,15 @@ LINE 8 0 10 -117.00000000000001 +167.3409090909091 20 -66.50000000000001 +176.83981100000003 30 0.0 11 -117.00000000000001 +155.93181818181822 21 -73.50000000000001 +176.83981100000003 31 0.0 0 @@ -2237,15 +2219,15 @@ LINE 8 0 10 -117.00000000000001 +155.93181818181822 20 -73.50000000000001 +176.83981100000003 30 0.0 11 -97.00000000000001 +155.93181818181822 21 -73.50000000000001 +176.33981100000003 31 0.0 0 @@ -2255,15 +2237,15 @@ LINE 8 0 10 -122.25000000000001 +155.93181818181822 20 -81.9318181818182 +176.33981100000003 30 0.0 11 -122.25000000000001 +167.3409090909091 21 -70.3409090909091 +176.33981100000003 31 0.0 0 @@ -2273,15 +2255,15 @@ LINE 8 0 10 -122.25000000000001 +167.3409090909091 20 -70.3409090909091 +176.33981100000003 30 0.0 11 -122.75000000000001 +167.3409090909091 21 -70.3409090909091 +176.83981100000003 31 0.0 0 @@ -2291,15 +2273,15 @@ LINE 8 0 10 -122.75000000000001 +170.25000000000003 20 -70.3409090909091 +193.77162918181818 30 0.0 11 -122.75000000000001 +170.25000000000003 21 -81.9318181818182 +182.18072009090912 31 0.0 0 @@ -2309,15 +2291,15 @@ LINE 8 0 10 -122.75000000000001 +170.25000000000003 20 -81.9318181818182 +182.18072009090912 30 0.0 11 -122.25000000000001 +170.75 21 -81.9318181818182 +182.18072009090912 31 0.0 0 @@ -2327,15 +2309,15 @@ LINE 8 0 10 -122.25000000000001 +170.75 20 -109.65909090909092 +182.18072009090912 30 0.0 11 -122.25000000000001 +170.75 21 -98.06818181818183 +193.77162918181818 31 0.0 0 @@ -2345,15 +2327,15 @@ LINE 8 0 10 -122.25000000000001 +170.75 20 -98.06818181818183 +193.77162918181818 30 0.0 11 -122.75000000000001 +170.25000000000003 21 -98.06818181818183 +193.77162918181818 31 0.0 0 @@ -2363,15 +2345,15 @@ LINE 8 0 10 -122.75000000000001 +170.25000000000003 20 -98.06818181818183 +221.49890190909093 30 0.0 11 -122.75000000000001 +170.25000000000003 21 -109.65909090909092 +209.9079928181818 31 0.0 0 @@ -2381,15 +2363,15 @@ LINE 8 0 10 -122.75000000000001 +170.25000000000003 20 -109.65909090909092 +209.9079928181818 30 0.0 11 -122.25000000000001 +170.75 21 -109.65909090909092 +209.9079928181818 31 0.0 0 @@ -2399,15 +2381,15 @@ LINE 8 0 10 -26.000000000000004 +170.75 20 -164.25000000000003 +209.9079928181818 30 0.0 11 -26.000000000000004 +170.75 21 -161.75 +221.49890190909093 31 0.0 0 @@ -2417,15 +2399,15 @@ LINE 8 0 10 -26.000000000000004 +170.75 20 -161.75 +221.49890190909093 30 0.0 11 -30.000000000000004 +170.25000000000003 21 -161.75 +221.49890190909093 31 0.0 0 @@ -2435,15 +2417,15 @@ LINE 8 0 10 -30.000000000000004 +11.4 20 -161.75 +181.33981100000003 30 0.0 11 -30.000000000000004 +12.600000000000001 21 -164.25000000000003 +181.33981100000003 31 0.0 0 @@ -2453,15 +2435,15 @@ LINE 8 0 10 -14.000000000000002 +12.600000000000001 20 -164.25000000000003 +181.33981100000003 30 0.0 11 -14.000000000000002 +12.600000000000001 21 -161.75 +222.33981100000003 31 0.0 0 @@ -2471,15 +2453,15 @@ LINE 8 0 10 -14.000000000000002 +12.600000000000001 20 -161.75 +222.33981100000003 30 0.0 11 -18.000000000000004 +11.4 21 -161.75 +222.33981100000003 31 0.0 0 @@ -2489,15 +2471,15 @@ LINE 8 0 10 -18.000000000000004 +11.4 20 -161.75 +222.33981100000003 30 0.0 11 -18.000000000000004 +11.4 21 -164.25000000000003 +181.33981100000003 31 0.0 0 @@ -2507,15 +2489,15 @@ LINE 8 0 10 -2.5000000000000004 +31.400000000000002 20 -70.5909090909091 +181.83981100000003 30 0.0 11 -7.500000000000001 +32.60000000000001 21 -70.5909090909091 +181.83981100000003 31 0.0 0 @@ -2525,15 +2507,15 @@ LINE 8 0 10 -7.500000000000001 +32.60000000000001 20 -70.5909090909091 +181.83981100000003 30 0.0 11 -7.500000000000001 +32.60000000000001 21 -81.68181818181819 +211.83981100000003 31 0.0 0 @@ -2543,15 +2525,15 @@ LINE 8 0 10 -7.500000000000001 +32.60000000000001 20 -81.68181818181819 +211.83981100000003 30 0.0 11 -2.5000000000000004 +31.400000000000002 21 -81.68181818181819 +211.83981100000003 31 0.0 0 @@ -2561,15 +2543,15 @@ LINE 8 0 10 -2.5000000000000004 +31.400000000000002 20 -98.31818181818184 +211.83981100000003 30 0.0 11 -7.500000000000001 +31.400000000000002 21 -98.31818181818184 +181.83981100000003 31 0.0 0 @@ -2579,15 +2561,15 @@ LINE 8 0 10 -7.500000000000001 +26.250000000000004 20 -98.31818181818184 +179.08981100000003 30 0.0 11 -7.500000000000001 +17.750000000000004 21 -109.40909090909092 +179.08981100000003 31 0.0 0 @@ -2597,15 +2579,15 @@ LINE 8 0 10 -7.500000000000001 +17.750000000000004 20 -109.40909090909092 +179.08981100000003 30 0.0 11 -2.5000000000000004 +17.750000000000004 21 -109.40909090909092 +178.58981100000003 31 0.0 0 @@ -2615,15 +2597,15 @@ LINE 8 0 10 -186.00000000000003 +17.750000000000004 20 -90.0 +178.58981100000003 30 0.0 11 -140.00000000000003 +26.250000000000004 21 -90.0 +178.58981100000003 31 0.0 0 @@ -2633,15 +2615,15 @@ LINE 8 0 10 -198.0 +26.250000000000004 20 -90.0 +178.58981100000003 30 0.0 11 -186.00000000000003 +26.250000000000004 21 -90.0 +179.08981100000003 31 0.0 0 @@ -2651,15 +2633,15 @@ LINE 8 0 10 -210.00000000000003 +17.750000000000004 20 -90.0 +226.83981100000003 30 0.0 11 -198.0 +26.250000000000004 21 -90.0 +226.83981100000003 31 0.0 0 @@ -2669,15 +2651,15 @@ LINE 8 0 10 -222.00000000000003 +26.250000000000004 20 -90.0 +226.83981100000003 30 0.0 11 -210.00000000000003 +26.250000000000004 21 -90.0 +227.33981100000003 31 0.0 0 @@ -2687,15 +2669,15 @@ LINE 8 0 10 -234.00000000000003 +26.250000000000004 20 -90.0 +227.33981100000003 30 0.0 11 -222.00000000000003 +17.750000000000004 21 -90.0 +227.33981100000003 31 0.0 0 @@ -2705,15 +2687,15 @@ LINE 8 0 10 -246.00000000000003 +17.750000000000004 20 -90.0 +227.33981100000003 30 0.0 11 -234.00000000000003 +17.750000000000004 21 -90.0 +226.83981100000003 31 0.0 0 @@ -2723,15 +2705,15 @@ LINE 8 0 10 -258.0 +2.5000000000000004 20 -90.0 +182.43072009090912 30 0.0 11 -246.00000000000003 +7.500000000000001 21 -90.0 +182.43072009090912 31 0.0 0 @@ -2741,15 +2723,15 @@ LINE 8 0 10 -270.00000000000006 +7.500000000000001 20 -90.0 +182.43072009090912 30 0.0 11 -258.0 +7.500000000000001 21 -90.0 +193.52162918181818 31 0.0 0 @@ -2759,15 +2741,15 @@ LINE 8 0 10 -270.00000000000006 +7.500000000000001 20 -90.0 +193.52162918181818 30 0.0 11 -270.00000000000006 +2.5000000000000004 21 -90.0 +193.52162918181818 31 0.0 0 @@ -2777,15 +2759,15 @@ LINE 8 0 10 -140.00000000000003 +2.5000000000000004 20 -90.0 +210.1579928181818 30 0.0 11 -270.00000000000006 +7.500000000000001 21 -90.0 +210.1579928181818 31 0.0 0 @@ -2795,15 +2777,15 @@ LINE 8 0 10 -140.00000000000003 +7.500000000000001 20 -90.0 +210.1579928181818 30 0.0 11 -140.00000000000003 +7.500000000000001 21 -90.0 +221.24890190909093 31 0.0 0 @@ -2813,15 +2795,15 @@ LINE 8 0 10 -206.25000000000003 +7.500000000000001 20 -94.00000000000001 +221.24890190909093 30 0.0 11 -201.75000000000003 +2.5000000000000004 21 -94.00000000000001 +221.24890190909093 31 0.0 0 @@ -2831,15 +2813,15 @@ LINE 8 0 10 -201.75000000000003 +28.750000000000004 20 -94.00000000000001 +155.339811 30 0.0 11 -201.75000000000003 +32.25 21 -93.50000000000001 +155.339811 31 0.0 0 @@ -2849,15 +2831,15 @@ LINE 8 0 10 -201.75000000000003 +32.25 20 -93.50000000000001 +155.339811 30 0.0 11 -206.25000000000003 +32.25 21 -93.50000000000001 +163.33981100000003 31 0.0 0 @@ -2867,33 +2849,35 @@ LINE 8 0 10 -206.25000000000003 +32.25 20 -93.50000000000001 +163.33981100000003 30 0.0 11 -206.25000000000003 +28.750000000000004 21 -94.00000000000001 +163.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -218.25000000000003 +198.0 20 -94.00000000000001 +141.13953627679874 30 0.0 11 -213.75 +258.0 21 -94.00000000000001 +141.13953627679874 31 0.0 0 @@ -2903,15 +2887,15 @@ LINE 8 0 10 -213.75 +258.0 20 -94.00000000000001 +177.54008572320132 30 0.0 11 -213.75 +258.0 21 -93.50000000000001 +141.13953627679874 31 0.0 0 @@ -2921,15 +2905,15 @@ LINE 8 0 10 -213.75 +198.0 20 -93.50000000000001 +177.54008572320132 30 0.0 11 -218.25000000000003 +258.0 21 -93.50000000000001 +177.54008572320132 31 0.0 0 @@ -2939,69 +2923,75 @@ LINE 8 0 10 -218.25000000000003 +198.0 20 -93.50000000000001 +141.13953627679874 30 0.0 11 -218.25000000000003 +198.0 21 -94.00000000000001 +177.54008572320132 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -326.00000000000006 +258.0 20 -90.0 +117.13953627679872 30 0.0 11 -280.00000000000006 +198.0 21 -90.0 +117.13953627679872 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -338.00000000000006 +258.0 20 -90.0 +117.13953627679872 30 0.0 11 -326.00000000000006 +258.0 21 -90.0 +141.13953627679874 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -350.0 +198.0 20 -90.0 +141.13953627679874 30 0.0 11 -338.00000000000006 +198.0 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3011,15 +3001,15 @@ LINE 8 0 10 -362.00000000000006 +198.0 20 -90.0 +80.73898683039612 30 0.0 11 -350.0 +198.0 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3029,15 +3019,15 @@ LINE 8 0 10 -374.00000000000006 +258.0 20 -90.0 +80.73898683039612 30 0.0 11 -362.00000000000006 +198.0 21 -90.0 +80.73898683039612 31 0.0 0 @@ -3047,15 +3037,15 @@ LINE 8 0 10 -386.00000000000006 +258.0 20 -90.0 +117.13953627679872 30 0.0 11 -374.00000000000006 +258.0 21 -90.0 +80.73898683039612 31 0.0 0 @@ -3065,15 +3055,15 @@ LINE 8 0 10 -398.00000000000006 +268.00000000000006 20 -90.0 +117.13953627679872 30 0.0 11 -386.00000000000006 +258.0 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3083,15 +3073,15 @@ LINE 8 0 10 -410.00000000000006 +268.00000000000006 20 -90.0 +141.13953627679874 30 0.0 11 -398.00000000000006 +268.00000000000006 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3101,15 +3091,15 @@ LINE 8 0 10 -410.00000000000006 +258.0 20 -90.0 +141.13953627679874 30 0.0 11 -410.00000000000006 +268.00000000000006 21 -90.0 +141.13953627679874 31 0.0 0 @@ -3119,15 +3109,15 @@ LINE 8 0 10 -280.00000000000006 +188.00000000000003 20 -90.0 +141.13953627679874 30 0.0 11 -410.00000000000006 +198.0 21 -90.0 +141.13953627679874 31 0.0 0 @@ -3137,15 +3127,15 @@ LINE 8 0 10 -280.00000000000006 +188.00000000000003 20 -90.0 +117.13953627679872 30 0.0 11 -280.00000000000006 +188.00000000000003 21 -90.0 +141.13953627679874 31 0.0 0 @@ -3155,15 +3145,15 @@ LINE 8 0 10 -334.25000000000006 +198.0 20 -94.00000000000001 +117.13953627679872 30 0.0 11 -329.75000000000006 +188.00000000000003 21 -94.00000000000001 +117.13953627679872 31 0.0 0 @@ -3173,15 +3163,15 @@ LINE 8 0 10 -329.75000000000006 +215.50000000000003 20 -94.00000000000001 +122.63953627679872 30 0.0 11 -329.75000000000006 +226.50000000000003 21 -93.50000000000001 +122.63953627679872 31 0.0 0 @@ -3191,15 +3181,15 @@ LINE 8 0 10 -329.75000000000006 +226.50000000000003 20 -93.50000000000001 +122.63953627679872 30 0.0 11 -334.25000000000006 +226.50000000000003 21 -93.50000000000001 +135.6395362767987 31 0.0 0 @@ -3209,15 +3199,15 @@ LINE 8 0 10 -334.25000000000006 +226.50000000000003 20 -93.50000000000001 +135.6395362767987 30 0.0 11 -334.25000000000006 +215.50000000000003 21 -94.00000000000001 +135.6395362767987 31 0.0 0 @@ -3227,15 +3217,15 @@ LINE 8 0 10 -346.25 +215.50000000000003 20 -94.00000000000001 +135.6395362767987 30 0.0 11 -341.75 +215.50000000000003 21 -94.00000000000001 +122.63953627679872 31 0.0 0 @@ -3245,15 +3235,15 @@ LINE 8 0 10 -341.75 +247.00000000000003 20 -94.00000000000001 +124.13953627679872 30 0.0 11 -341.75 +253.00000000000003 21 -93.50000000000001 +124.13953627679872 31 0.0 0 @@ -3263,15 +3253,15 @@ LINE 8 0 10 -341.75 +253.00000000000003 20 -93.50000000000001 +124.13953627679872 30 0.0 11 -346.25 +253.00000000000003 21 -93.50000000000001 +134.13953627679874 31 0.0 0 @@ -3281,15 +3271,15 @@ LINE 8 0 10 -346.25 +253.00000000000003 20 -93.50000000000001 +134.13953627679874 30 0.0 11 -346.25 +247.00000000000003 21 -94.00000000000001 +134.13953627679874 31 0.0 0 @@ -3299,35 +3289,33 @@ LINE 8 0 10 -612.710678118655 +247.00000000000003 20 -55.00000000000001 +134.13953627679874 30 0.0 11 -604.710678118655 +247.00000000000003 21 -55.00000000000001 +124.13953627679872 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -612.710678118655 +265.50000000000006 20 -55.00000000000001 +133.13953627679874 30 0.0 11 -612.710678118655 +260.50000000000006 21 -125.00000000000001 +133.13953627679874 31 0.0 0 @@ -3337,55 +3325,51 @@ LINE 8 0 10 -604.710678118655 +260.50000000000006 20 -125.00000000000001 +133.13953627679874 30 0.0 11 -612.710678118655 +260.50000000000006 21 -125.00000000000001 +125.13953627679872 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -604.710678118655 +260.50000000000006 20 -125.00000000000001 +125.13953627679872 30 0.0 11 -604.710678118655 +265.50000000000006 21 -55.00000000000001 +125.13953627679872 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -620.710678118655 +190.50000000000003 20 -55.00000000000001 +125.13953627679872 30 0.0 11 -620.710678118655 +195.5 21 -125.00000000000001 +125.13953627679872 31 0.0 0 @@ -3395,15 +3379,15 @@ LINE 8 0 10 -620.710678118655 +195.5 20 -55.00000000000001 +125.13953627679872 30 0.0 11 -620.710678118655 +195.5 21 -5.000000000000001 +133.13953627679874 31 0.0 0 @@ -3413,87 +3397,95 @@ LINE 8 0 10 -612.710678118655 +195.5 20 -5.000000000000001 +133.13953627679874 30 0.0 11 -612.710678118655 +190.50000000000003 21 -55.00000000000001 +133.13953627679874 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -612.710678118655 +454.6666666666669 20 -0.0 +94.33981100000001 30 0.0 11 -612.710678118655 +454.6666666666669 21 -5.000000000000001 +224.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -620.710678118655 +384.6666666666669 20 -0.0 +94.33981100000001 30 0.0 11 -612.710678118655 +384.6666666666669 21 -0.0 +224.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -620.710678118655 +419.6666666666669 20 -5.000000000000001 +94.33981100000001 30 0.0 11 -620.710678118655 +384.6666666666669 21 -0.0 +94.33981100000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -628.710678118655 +454.6666666666669 20 -55.00000000000001 +94.33981100000001 30 0.0 11 -620.710678118655 +419.6666666666669 21 -55.00000000000001 +94.33981100000001 31 0.0 0 @@ -3505,15 +3497,15 @@ DOTTED 8 0 10 -628.710678118655 +419.6666666666669 20 -55.00000000000001 +-3.2056604482022527e-07 30 0.0 11 -628.710678118655 +384.6666666666669 21 -125.00000000000001 +94.33981100000001 31 0.0 0 @@ -3523,15 +3515,15 @@ LINE 8 0 10 -620.710678118655 +417.9257952661878 20 -125.00000000000001 +0.5317572923818831 30 0.0 11 -628.710678118655 +361.29623096642734 21 -125.00000000000001 +17.829532375615347 31 0.0 0 @@ -3541,51 +3533,55 @@ LINE 8 0 10 -636.710678118655 +419.6666666666669 20 -55.00000000000001 +-3.2056604482022527e-07 30 0.0 11 -628.710678118655 +417.9257952661878 21 -55.00000000000001 +0.5317572923818831 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -636.710678118655 +384.6666666666669 20 -125.00000000000001 +94.339811 30 0.0 11 -636.710678118655 +361.29623096642734 21 -55.00000000000001 +17.829532375615347 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -628.710678118655 +384.6666666666669 20 -125.00000000000001 +94.33981100000001 30 0.0 11 -636.710678118655 +304.66666666666697 21 -125.00000000000001 +35.127307458848826 31 0.0 0 @@ -3595,33 +3591,35 @@ LINE 8 0 10 -612.710678118655 +361.29623096642734 20 -125.00000000000001 +17.829532375615347 30 0.0 11 -612.710678118655 +304.66666666666697 21 -175.0 +35.127307458848826 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -620.710678118655 +304.66666666666686 20 -175.0 +94.33981099999995 30 0.0 11 -620.710678118655 +304.66666666666697 21 -125.00000000000001 +35.12730745884883 31 0.0 0 @@ -3633,15 +3631,15 @@ DOTTED 8 0 10 -620.710678118655 +384.6666666666669 20 -175.0 +94.33981100000001 30 0.0 11 -612.710678118655 +304.66666666666686 21 -175.0 +94.33981099999995 31 0.0 0 @@ -3651,15 +3649,15 @@ LINE 8 0 10 -612.710678118655 +284.92916548628324 20 -175.0 +94.33981099999994 30 0.0 11 -490.7106781186549 +304.66666666666686 21 -175.0 +94.33981099999995 31 0.0 0 @@ -3669,15 +3667,15 @@ LINE 8 0 10 -620.710678118655 +284.92916548628324 20 -175.0 +35.127307458848826 30 0.0 11 -620.710678118655 +284.92916548628324 21 -175.0 +94.33981099999994 31 0.0 0 @@ -3687,35 +3685,33 @@ LINE 8 0 10 -490.7106781186549 +304.66666666666697 20 -175.0 +35.12730745884883 30 0.0 11 -490.7106781186549 +284.92916548628324 21 -175.0 +35.127307458848826 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -490.7106781186549 +304.66666666666686 20 -225.00000000000003 +94.33981099999995 30 0.0 11 -620.710678118655 +304.66666666666674 21 -225.00000000000003 +224.33981099999997 31 0.0 0 @@ -3727,15 +3723,15 @@ DOTTED 8 0 10 -490.7106781186549 +304.66666666666674 20 -175.0 +224.33981099999997 30 0.0 11 -490.7106781186549 +384.6666666666668 21 -225.00000000000003 +224.33981100000003 31 0.0 0 @@ -3747,15 +3743,15 @@ DOTTED 8 0 10 -458.4510113187008 +304.6666666666667 20 -175.0 +304.339811 30 0.0 11 -490.7106781186549 +384.6666666666668 21 -225.00000000000003 +224.33981100000003 31 0.0 0 @@ -3767,15 +3763,15 @@ DOTTED 8 0 10 -458.4510113187008 +304.6666666666667 20 -175.0 +304.339811 30 0.0 11 -490.7106781186549 +304.66666666666674 21 -175.0 +224.33981099999997 31 0.0 0 @@ -3785,35 +3781,15 @@ LINE 8 0 10 -458.45101131870075 - 20 -175.0 - 30 -0.0 - 11 -445.1550063219791 - 21 -204.3922158601766 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -445.1550063219791 +304.6666666666667 20 -204.3922158601766 +304.339811 30 0.0 11 -490.7106781186549 +384.6666666666667 21 -225.00000000000003 +304.33981100000005 31 0.0 0 @@ -3825,15 +3801,15 @@ DOTTED 8 0 10 -420.00000000000017 +384.6666666666667 20 -260.0 +304.33981100000005 30 0.0 11 -490.7106781186549 +384.6666666666668 21 -225.00000000000003 +224.33981100000003 31 0.0 0 @@ -3843,15 +3819,15 @@ LINE 8 0 10 -431.85900132525745 +464.6666666666667 20 -233.78443172035318 +304.33981100000005 30 0.0 11 -420.00000000000017 +419.6666666666667 21 -260.0 +304.33981100000005 31 0.0 0 @@ -3861,55 +3837,15 @@ LINE 8 0 10 -445.15500632197916 - 20 -204.3922158601766 - 30 -0.0 - 11 -431.85900132525745 - 21 -233.78443172035318 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -490.7106781186549 - 20 -225.00000000000003 - 30 -0.0 - 11 -490.7106781186549 - 21 -260.0 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -490.7106781186549 +384.6666666666667 20 -260.0 +304.33981100000005 30 0.0 11 -490.7106781186549 +464.6666666666667 21 -295.0 +304.33981100000005 31 0.0 0 @@ -3921,15 +3857,15 @@ DOTTED 8 0 10 -420.00000000000017 +384.6666666666668 20 -260.0 +224.33981100000003 30 0.0 11 -490.7106781186549 +419.6666666666668 21 -295.0 +224.33981100000005 31 0.0 0 @@ -3941,55 +3877,15 @@ DOTTED 8 0 10 -490.7106781186549 +419.6666666666668 20 -295.0 +224.33981100000005 30 0.0 11 -620.710678118655 +454.66666666666674 21 -295.0 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -620.710678118655 - 20 -260.0 - 30 -0.0 - 11 -620.710678118655 - 21 -225.00000000000003 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -620.710678118655 - 20 -295.0 - 30 -0.0 - 11 -620.710678118655 - 21 -260.0 +224.33981100000008 31 0.0 0 @@ -3999,15 +3895,15 @@ LINE 8 0 10 -670.7106781186549 +374.66666666666674 20 -275.00000000000006 +304.339811 30 0.0 11 -670.7106781186549 +454.6666666666667 21 -225.00000000000003 +304.33981100000005 31 0.0 0 @@ -4017,15 +3913,15 @@ LINE 8 0 10 -670.7106781186549 +419.6666666666667 20 -260.0 +304.33981100000005 30 0.0 11 -670.7106781186549 +374.66666666666674 21 -275.00000000000006 +304.339811 31 0.0 0 @@ -4037,15 +3933,15 @@ DOTTED 8 0 10 -620.710678118655 +454.66666666666674 20 -225.00000000000003 +224.3398110000001 30 0.0 11 -670.7106781186549 +454.6666666666667 21 -225.00000000000003 +304.33981100000005 31 0.0 0 @@ -4057,15 +3953,15 @@ DOTTED 8 0 10 -620.710678118655 +454.66666666666674 20 -225.00000000000003 +224.3398110000001 30 0.0 11 -670.7106781186549 +534.6666666666665 21 -175.00000000000003 +304.33981100000017 31 0.0 0 @@ -4075,15 +3971,15 @@ LINE 8 0 10 -670.7106781186549 +454.6666666666667 20 -225.00000000000003 +304.33981100000005 30 0.0 11 -670.7106781186549 +534.6666666666665 21 -175.00000000000003 +304.33981100000017 31 0.0 0 @@ -4095,15 +3991,15 @@ DOTTED 8 0 10 -620.710678118655 +534.6666666666667 20 -175.0 +224.3398110000002 30 0.0 11 -670.7106781186549 +534.6666666666665 21 -175.0 +304.33981100000017 31 0.0 0 @@ -4115,15 +4011,15 @@ DOTTED 8 0 10 -620.710678118655 +454.66666666666674 20 -225.00000000000003 +224.3398110000001 30 0.0 11 -620.710678118655 +534.6666666666667 21 -175.0 +224.3398110000002 31 0.0 0 @@ -4133,71 +4029,15 @@ LINE 8 0 10 -620.710678118655 - 20 -158.33333333333337 - 30 -0.0 - 11 -620.710678118655 - 21 -175.0 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -670.7106781186549 - 20 -158.33333333333337 - 30 -0.0 - 11 -620.710678118655 - 21 -158.33333333333337 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -670.7106781186549 - 20 -175.0 - 30 -0.0 - 11 -670.7106781186549 - 21 -158.33333333333337 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -670.7106781186549 +561.3333333333334 20 -295.0 +224.3398110000002 30 0.0 11 -620.710678118655 +534.6666666666667 21 -295.0 +224.3398110000002 31 0.0 0 @@ -4207,15 +4047,15 @@ LINE 8 0 10 -670.7106781186549 +561.3333333333334 20 -245.00000000000003 +304.33981100000017 30 0.0 11 -670.7106781186549 +561.3333333333334 21 -260.0 +224.3398110000002 31 0.0 0 @@ -4225,15 +4065,15 @@ LINE 8 0 10 -670.7106781186549 +534.6666666666665 20 -295.0 +304.3398110000001 30 0.0 11 -670.7106781186549 +561.3333333333334 21 -245.00000000000003 +304.33981100000017 31 0.0 0 @@ -4243,35 +4083,15 @@ LINE 8 0 10 -670.7106781186549 - 20 -345.00000000000006 - 30 -0.0 - 11 -670.7106781186549 - 21 -295.0 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -670.7106781186549 +534.6666666666667 20 -345.00000000000006 +224.3398110000002 30 0.0 11 -620.710678118655 +534.666666666667 21 -295.0 +94.33981100000021 31 0.0 0 @@ -4283,15 +4103,15 @@ DOTTED 8 0 10 -620.710678118655 +534.666666666667 20 -345.00000000000006 +94.33981100000022 30 0.0 11 -620.710678118655 +454.6666666666669 21 -295.0 +94.33981100000011 31 0.0 0 @@ -4303,15 +4123,15 @@ DOTTED 8 0 10 -670.7106781186549 +534.6666666666671 20 -345.00000000000006 +35.12730745884912 30 0.0 11 -620.710678118655 +454.66666666666697 21 -345.00000000000006 +94.33981100000011 31 0.0 0 @@ -4323,35 +4143,33 @@ DOTTED 8 0 10 -490.71067811865487 +534.6666666666671 20 -295.0 +35.12730745884912 30 0.0 11 -490.71067811865487 +534.666666666667 21 -345.00000000000006 +94.33981100000022 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -490.71067811865487 +534.6666666666671 20 -345.00000000000006 +35.12730745884912 30 0.0 11 -458.45101131870075 +478.0371023669066 21 -345.00000000000006 +17.829532375615546 31 0.0 0 @@ -4363,69 +4181,15 @@ DOTTED 8 0 10 -490.71067811865487 - 20 -295.0 - 30 -0.0 - 11 -458.45101131870075 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -490.71067811865487 - 20 -355.75322226665145 - 30 -0.0 - 11 -490.71067811865487 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -458.45101131870075 - 20 -355.75322226665145 - 30 -0.0 - 11 -490.71067811865487 - 21 -355.75322226665145 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -458.45101131870075 +478.0371023669066 20 -345.00000000000006 +17.829532375615546 30 0.0 11 -458.45101131870075 +454.66666666666697 21 -355.75322226665145 +94.33981100000011 31 0.0 0 @@ -4437,753 +4201,15 @@ DOTTED 8 0 10 -490.71067811865487 - 20 -295.0 - 30 -0.0 - 11 -445.1550063219791 - 21 -315.6077841398234 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -445.1550063219791 - 20 -315.6077841398234 - 30 -0.0 - 11 -458.45101131870075 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -431.8590013252574 - 20 -286.21556827964685 - 30 -0.0 - 11 -445.1550063219791 - 21 -315.6077841398234 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -420.00000000000006 - 20 -260.0 - 30 -0.0 - 11 -431.8590013252574 - 21 -286.21556827964685 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -612.710678118655 - 20 -345.00000000000006 - 30 -0.0 - 11 -620.710678118655 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -490.71067811865487 - 20 -345.00000000000006 - 30 -0.0 - 11 -612.710678118655 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -490.71067811865487 - 20 -345.00000000000006 - 30 -0.0 - 11 -490.71067811865487 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -620.710678118655 - 20 -345.00000000000006 - 30 -0.0 - 11 -620.710678118655 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -670.7106781186549 - 20 -361.66666666666674 - 30 -0.0 - 11 -670.7106781186549 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -620.710678118655 - 20 -361.66666666666674 - 30 -0.0 - 11 -670.7106781186549 - 21 -361.66666666666674 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -620.710678118655 - 20 -345.00000000000006 - 30 -0.0 - 11 -620.710678118655 - 21 -361.66666666666674 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -458.4510113187008 - 20 -164.2467777333486 - 30 -0.0 - 11 -458.4510113187008 - 21 -175.0 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -490.7106781186549 - 20 -164.2467777333486 - 30 -0.0 - 11 -458.4510113187008 - 21 -164.2467777333486 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -490.7106781186549 - 20 -175.0 - 30 -0.0 - 11 -490.7106781186549 - 21 -164.2467777333486 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -596.7106781186549 - 20 -125.00000000000001 - 30 -0.0 - 11 -604.710678118655 - 21 -125.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -596.7106781186549 - 20 -55.00000000000001 - 30 -0.0 - 11 -596.7106781186549 - 21 -125.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -604.710678118655 - 20 -55.00000000000001 - 30 -0.0 - 11 -596.7106781186549 - 21 -55.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -604.710678118655 - 20 -86.00000000000001 - 30 -0.0 - 11 -612.710678118655 - 21 -86.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -612.710678118655 - 20 -86.00000000000001 - 30 -0.0 - 11 -612.710678118655 - 21 -94.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -612.710678118655 - 20 -94.00000000000001 - 30 -0.0 - 11 -604.710678118655 - 21 -94.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -604.710678118655 - 20 -94.00000000000001 - 30 -0.0 - 11 -604.710678118655 - 21 -86.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -618.0440114519882 - 20 -1.2500000000000002 - 30 -0.0 - 11 -618.0440114519882 - 21 -3.7500000000000004 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -618.0440114519882 - 20 -3.7500000000000004 - 30 -0.0 - 11 -615.3773447853215 - 21 -3.7500000000000004 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -615.3773447853215 - 20 -3.7500000000000004 - 30 -0.0 - 11 -615.3773447853215 - 21 -1.2500000000000002 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -620.710678118655 - 20 -86.00000000000001 - 30 -0.0 - 11 -628.710678118655 - 21 -86.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -628.710678118655 - 20 -86.00000000000001 - 30 -0.0 - 11 -628.710678118655 - 21 -94.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -628.710678118655 - 20 -94.00000000000001 - 30 -0.0 - 11 -620.710678118655 - 21 -94.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -620.710678118655 - 20 -94.00000000000001 - 30 -0.0 - 11 -620.710678118655 - 21 -86.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.4606781186549 - 20 -80.70454545454547 - 30 -0.0 - 11 -630.4606781186549 - 21 -67.47727272727273 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.4606781186549 - 20 -67.47727272727273 - 30 -0.0 - 11 -630.9606781186549 - 21 -67.47727272727273 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.9606781186549 - 20 -67.47727272727273 - 30 -0.0 - 11 -630.9606781186549 - 21 -80.70454545454547 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.9606781186549 - 20 -80.70454545454547 - 30 -0.0 - 11 -630.4606781186549 - 21 -80.70454545454547 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.4606781186549 - 20 -112.52272727272728 - 30 -0.0 - 11 -630.4606781186549 - 21 -99.29545454545456 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.4606781186549 - 20 -99.29545454545456 - 30 -0.0 - 11 -630.9606781186549 - 21 -99.29545454545456 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.9606781186549 - 20 -99.29545454545456 - 30 -0.0 - 11 -630.9606781186549 - 21 -112.52272727272728 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.9606781186549 - 20 -112.52272727272728 - 30 -0.0 - 11 -630.4606781186549 - 21 -112.52272727272728 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -448.40187590113186 - 20 -217.3888829577983 - 30 -0.0 - 11 -443.7637963941598 - 21 -227.64184496249058 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -443.7637963941598 - 20 -227.64184496249058 - 30 -0.0 - 11 -443.308239676193 - 21 -227.43576712109234 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -443.308239676193 - 20 -227.43576712109234 - 30 -0.0 - 11 -447.94631918316514 - 21 -217.18280511640006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -447.94631918316514 - 20 -217.18280511640006 - 30 -0.0 - 11 -448.40187590113186 - 21 -217.3888829577983 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -657.9606781186549 - 20 -258.58333333333337 - 30 -0.0 - 11 -657.9606781186549 - 21 -241.41666666666669 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -657.9606781186549 +419.6666666666672 20 -241.41666666666669 +-3.20565959555097e-07 30 0.0 11 -658.4606781186549 +454.6666666666669 21 -241.41666666666669 +94.33981100000011 31 0.0 0 @@ -5193,15 +4219,15 @@ LINE 8 0 10 -658.4606781186549 +421.4075380671463 20 -241.41666666666669 +0.5317572923819398 30 0.0 11 -658.4606781186549 +419.6666666666672 21 -258.58333333333337 +-3.20565959555097e-07 31 0.0 0 @@ -5211,15 +4237,15 @@ LINE 8 0 10 -658.4606781186549 +478.0371023669066 20 -258.58333333333337 +17.829532375615546 30 0.0 11 -657.9606781186549 +421.4075380671463 21 -258.58333333333337 +0.5317572923819398 31 0.0 0 @@ -5229,15 +4255,15 @@ LINE 8 0 10 -654.0440114519881 +554.4041678470508 20 -162.50000000000003 +35.12730745884915 30 0.0 11 -654.0440114519881 +534.6666666666671 21 -170.83333333333334 +35.12730745884912 31 0.0 0 @@ -5247,15 +4273,15 @@ LINE 8 0 10 -654.0440114519881 +554.4041678470506 20 -170.83333333333334 +94.33981100000025 30 0.0 11 -637.3773447853216 +554.4041678470508 21 -170.83333333333334 +35.12730745884915 31 0.0 0 @@ -5265,15 +4291,15 @@ LINE 8 0 10 -637.3773447853216 +534.666666666667 20 -170.83333333333334 +94.33981100000022 30 0.0 11 -637.3773447853216 +554.4041678470506 21 -162.50000000000003 +94.33981100000025 31 0.0 0 @@ -5283,15 +4309,15 @@ LINE 8 0 10 -657.9606781186549 +278.0 20 -278.5833333333333 +304.33981099999994 30 0.0 11 -657.9606781186549 +304.6666666666667 21 -261.4166666666667 +304.339811 31 0.0 0 @@ -5301,15 +4327,15 @@ LINE 8 0 10 -657.9606781186549 +278.0000000000001 20 -261.4166666666667 +224.3398109999999 30 0.0 11 -658.4606781186549 +278.0 21 -261.4166666666667 +304.33981099999994 31 0.0 0 @@ -5319,15 +4345,15 @@ LINE 8 0 10 -658.4606781186549 +304.66666666666674 20 -261.4166666666667 +224.33981099999997 30 0.0 11 -658.4606781186549 +278.0000000000001 21 -278.5833333333333 +224.3398109999999 31 0.0 0 @@ -5337,15 +4363,15 @@ LINE 8 0 10 -658.4606781186549 +403.68584483600716 20 -278.5833333333333 +20.621135404204413 30 0.0 11 -657.9606781186549 +384.3311341613512 21 -278.5833333333333 +26.5331256550754 31 0.0 0 @@ -5355,15 +4381,15 @@ LINE 8 0 10 -469.20423358535214 +384.3311341613512 20 -353.06491669998854 +26.5331256550754 30 0.0 11 -469.20423358535214 +384.1850689382248 21 -347.6883055666629 +26.05493641367301 31 0.0 0 @@ -5373,15 +4399,15 @@ LINE 8 0 10 -469.20423358535214 +384.1850689382248 20 -347.6883055666629 +26.05493641367301 30 0.0 11 -479.95745585200353 +403.53977961288064 21 -347.6883055666629 +20.142946162802023 31 0.0 0 @@ -5391,15 +4417,15 @@ LINE 8 0 10 -479.95745585200353 +403.53977961288064 20 -347.6883055666629 +20.142946162802023 30 0.0 11 -479.95745585200353 +403.68584483600716 21 -353.06491669998854 +20.621135404204413 31 0.0 0 @@ -5409,15 +4435,15 @@ LINE 8 0 10 -443.76379639415967 +289.8635407813792 20 -292.3581550375095 +54.86480863923253 30 0.0 11 -448.4018759011318 +299.73229137157097 21 -302.6111170422017 +54.86480863923254 31 0.0 0 @@ -5427,15 +4453,15 @@ LINE 8 0 10 -448.4018759011318 +299.73229137157097 20 -302.6111170422017 +54.86480863923254 30 0.0 11 -447.94631918316503 +299.73229137157097 21 -302.81719488360005 +74.60230981961625 31 0.0 0 @@ -5445,15 +4471,15 @@ LINE 8 0 10 -447.94631918316503 +299.73229137157097 20 -302.81719488360005 +74.60230981961625 30 0.0 11 -443.30823967619295 +289.8635407813792 21 -292.5642328789077 +74.60230981961624 31 0.0 0 @@ -5463,15 +4489,15 @@ LINE 8 0 10 -443.30823967619295 +411.08333333333337 20 -292.5642328789077 +284.0898110000001 30 0.0 11 -443.76379639415967 +438.25000000000006 21 -292.3581550375095 +284.0898110000001 31 0.0 0 @@ -5481,15 +4507,15 @@ LINE 8 0 10 -615.1273447853216 +438.25000000000006 20 -341.0 +284.0898110000001 30 0.0 11 -618.2940114519882 +438.25000000000006 21 -341.0 +284.5898110000001 31 0.0 0 @@ -5499,15 +4525,15 @@ LINE 8 0 10 -618.2940114519882 +438.25000000000006 20 -341.0 +284.5898110000001 30 0.0 11 -618.2940114519882 +411.08333333333337 21 -341.5 +284.5898110000001 31 0.0 0 @@ -5517,15 +4543,15 @@ LINE 8 0 10 -618.2940114519882 +411.08333333333337 20 -341.5 +284.5898110000001 30 0.0 11 -615.1273447853216 +411.08333333333337 21 -341.5 +284.0898110000001 31 0.0 0 @@ -5535,15 +4561,15 @@ LINE 8 0 10 -615.1273447853216 +401.0833333333334 20 -341.5 +284.08981100000005 30 0.0 11 -615.1273447853216 +428.25000000000006 21 -341.0 +284.0898110000001 31 0.0 0 @@ -5553,15 +4579,15 @@ LINE 8 0 10 -637.3773447853216 +428.25000000000006 20 -357.50000000000006 +284.0898110000001 30 0.0 11 -637.3773447853216 +428.25000000000006 21 -349.16666666666674 +284.5898110000001 31 0.0 0 @@ -5571,15 +4597,15 @@ LINE 8 0 10 -637.3773447853216 +428.25000000000006 20 -349.16666666666674 +284.5898110000001 30 0.0 11 -654.0440114519881 +401.0833333333334 21 -349.16666666666674 +284.58981100000005 31 0.0 0 @@ -5589,15 +4615,15 @@ LINE 8 0 10 -654.0440114519881 +401.0833333333334 20 -349.16666666666674 +284.58981100000005 30 0.0 11 -654.0440114519881 +401.0833333333334 21 -357.50000000000006 +284.08981100000005 31 0.0 0 @@ -5607,15 +4633,15 @@ LINE 8 0 10 -479.95745585200353 +554.6666666666666 20 -166.93508330001148 +277.6731443333335 30 0.0 11 -479.95745585200353 +541.3333333333334 21 -172.31169443333718 +277.6731443333334 31 0.0 0 @@ -5625,15 +4651,15 @@ LINE 8 0 10 -479.95745585200353 +541.3333333333334 20 -172.31169443333718 +277.6731443333334 30 0.0 11 -469.20423358535214 +541.3333333333334 21 -172.31169443333718 +251.00647766666683 31 0.0 0 @@ -5643,15 +4669,15 @@ LINE 8 0 10 -469.20423358535214 +541.3333333333334 20 -172.31169443333718 +251.00647766666683 30 0.0 11 -469.20423358535214 +554.6666666666666 21 -166.93508330001148 +251.00647766666685 31 0.0 0 @@ -5661,15 +4687,15 @@ LINE 8 0 10 -598.7106781186549 +455.00219917198274 20 -67.72727272727273 +26.533125655075565 30 0.0 11 -598.7106781186549 +435.6474884973269 21 -63.727272727272734 +20.621135404204527 31 0.0 0 @@ -5679,15 +4705,15 @@ LINE 8 0 10 -598.7106781186549 +435.6474884973269 20 -63.727272727272734 +20.621135404204527 30 0.0 11 -602.710678118655 +435.7935537204534 21 -67.72727272727273 +20.142946162802136 31 0.0 0 @@ -5697,15 +4723,15 @@ LINE 8 0 10 -602.710678118655 +435.7935537204534 20 -67.72727272727273 +20.142946162802136 30 0.0 11 -602.710678118655 +455.14826439510927 21 -80.45454545454547 +26.05493641367315 31 0.0 0 @@ -5715,15 +4741,15 @@ LINE 8 0 10 -602.710678118655 +455.14826439510927 20 -80.45454545454547 +26.05493641367315 30 0.0 11 -598.7106781186549 +455.00219917198274 21 -84.45454545454547 +26.533125655075565 31 0.0 0 @@ -5733,15 +4759,15 @@ LINE 8 0 10 -598.7106781186549 +549.4697925519548 20 -84.45454545454547 +74.60230981961654 30 0.0 11 -598.7106781186549 +539.6010419617629 21 -80.45454545454547 +74.60230981961652 31 0.0 0 @@ -5751,15 +4777,15 @@ LINE 8 0 10 -598.7106781186549 +539.6010419617629 20 -99.54545454545455 +74.60230981961652 30 0.0 11 -598.7106781186549 +539.6010419617629 21 -95.54545454545456 +54.86480863923283 31 0.0 0 @@ -5769,15 +4795,15 @@ LINE 8 0 10 -598.7106781186549 +539.6010419617629 20 -95.54545454545456 +54.86480863923283 30 0.0 11 -602.710678118655 +549.4697925519548 21 -99.54545454545455 +54.86480863923283 31 0.0 0 @@ -5787,15 +4813,15 @@ LINE 8 0 10 -602.710678118655 +284.6666666666668 20 -99.54545454545455 +251.0064776666666 30 0.0 11 -602.710678118655 +298.0000000000001 21 -112.27272727272728 +251.00647766666665 31 0.0 0 @@ -5805,15 +4831,15 @@ LINE 8 0 10 -602.710678118655 +298.0000000000001 20 -112.27272727272728 +251.00647766666665 30 0.0 11 -598.7106781186549 +298.0000000000001 21 -116.27272727272728 +277.67314433333325 31 0.0 0 @@ -5823,15 +4849,15 @@ LINE 8 0 10 -598.7106781186549 +298.0000000000001 20 -116.27272727272728 +277.67314433333325 30 0.0 11 -598.7106781186549 +284.6666666666668 21 -112.27272727272728 +277.67314433333325 31 0.0 0 diff --git a/rocolib/output/ESP32StackBoat/graph-lasercutter.svg b/rocolib/output/ESP32StackBoat/graph-lasercutter.svg index fbe90f4b60bd0fd51135e3d3c6b56b9d2eda71b7..b7c7fbe9247a908b50a6f24647ca90c248508c3c 100644 --- a/rocolib/output/ESP32StackBoat/graph-lasercutter.svg +++ b/rocolib/output/ESP32StackBoat/graph-lasercutter.svg @@ -1,272 +1,218 @@ <?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="361.666667mm" version="1.1" viewBox="0.000000 0.000000 670.710678 361.666667" width="670.710678mm"> +<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="304.339811mm" version="1.1" viewBox="0.000000 0.000000 561.333333 304.339811" width="561.333333mm"> <defs/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="34.0" y1="59.50000000000001" y2="120.50000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="120.50000000000001" y2="59.50000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="22.000000000000004" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="22.000000000000004" x2="34.0" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="19.500000000000004" y2="59.50000000000001"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="59.50000000000001" y2="19.500000000000004"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="14.5" y2="19.500000000000004"/> - <line stroke="#000000" x1="22.000000000000004" x2="10.000000000000002" y1="14.5" y2="14.5"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="19.500000000000004" y2="14.5"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="19.500000000000004" y2="59.50000000000001"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="59.50000000000001" y2="19.500000000000004"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="14.5" y2="19.500000000000004"/> - <line stroke="#000000" x1="34.0" x2="22.000000000000004" y1="14.5" y2="14.5"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="19.500000000000004" y2="14.5"/> - <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="59.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="94.00000000000001" x2="70.00000000000001" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="94.00000000000001" y1="59.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="70.00000000000001" x2="94.00000000000001" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="130.0" x2="94.00000000000001" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#000000" x1="130.0" x2="130.0" y1="120.50000000000001" y2="59.50000000000001"/> - <line stroke="#000000" x1="94.00000000000001" x2="130.0" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="22.000000000000004" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="22.000000000000004" x2="10.000000000000002" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="160.50000000000003" y2="120.50000000000001"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="120.50000000000001" y2="160.50000000000003"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="165.50000000000003" y2="160.50000000000003"/> - <line stroke="#000000" x1="22.000000000000004" x2="34.0" y1="165.50000000000003" y2="165.50000000000003"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="160.50000000000003" y2="165.50000000000003"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="160.50000000000003" y2="120.50000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="120.50000000000001" y2="160.50000000000003"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="165.50000000000003" y2="160.50000000000003"/> - <line stroke="#000000" x1="10.000000000000002" x2="22.000000000000004" y1="165.50000000000003" y2="165.50000000000003"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="160.50000000000003" y2="165.50000000000003"/> - <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="120.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="0.0" x2="0.0" y1="59.50000000000001" y2="120.50000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="59.50000000000001" y2="59.50000000000001"/> - <line stroke="#888888" x1="11.400000000000002" x2="12.6" y1="69.5" y2="69.5"/> - <line stroke="#888888" x1="12.6" x2="12.6" y1="69.5" y2="110.50000000000001"/> - <line stroke="#888888" x1="12.6" x2="11.400000000000002" y1="110.50000000000001" y2="110.50000000000001"/> - <line stroke="#888888" x1="11.400000000000002" x2="11.400000000000002" y1="110.50000000000001" y2="69.5"/> - <line stroke="#888888" x1="31.400000000000002" x2="32.60000000000001" y1="70.00000000000001" y2="70.00000000000001"/> - <line stroke="#888888" x1="32.60000000000001" x2="32.60000000000001" y1="70.00000000000001" y2="100.0"/> - <line stroke="#888888" x1="32.60000000000001" x2="31.400000000000002" y1="100.0" y2="100.0"/> - <line stroke="#888888" x1="31.400000000000002" x2="31.400000000000002" y1="100.0" y2="70.00000000000001"/> - <line stroke="#888888" x1="18.000000000000004" x2="18.000000000000004" y1="15.750000000000002" y2="18.25"/> - <line stroke="#888888" x1="18.000000000000004" x2="14.000000000000002" y1="18.25" y2="18.25"/> - <line stroke="#888888" x1="14.000000000000002" x2="14.000000000000002" y1="18.25" y2="15.750000000000002"/> - <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="15.750000000000002" y2="18.25"/> - <line stroke="#888888" x1="30.000000000000004" x2="26.000000000000004" y1="18.25" y2="18.25"/> - <line stroke="#888888" x1="26.000000000000004" x2="26.000000000000004" y1="18.25" y2="15.750000000000002"/> - <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="111.00000000000001" y2="93.00000000000001"/> - <line stroke="#888888" x1="30.000000000000004" x2="60.00000000000001" y1="93.00000000000001" y2="93.00000000000001"/> - <line stroke="#888888" x1="60.00000000000001" x2="60.00000000000001" y1="93.00000000000001" y2="111.00000000000001"/> - <line stroke="#888888" x1="60.00000000000001" x2="30.000000000000004" y1="111.00000000000001" y2="111.00000000000001"/> - <line stroke="#888888" x1="91.40000000000002" x2="92.60000000000001" y1="69.5" y2="69.5"/> - <line stroke="#888888" x1="92.60000000000001" x2="92.60000000000001" y1="69.5" y2="110.50000000000001"/> - <line stroke="#888888" x1="92.60000000000001" x2="91.40000000000002" y1="110.50000000000001" y2="110.50000000000001"/> - <line stroke="#888888" x1="91.40000000000002" x2="91.40000000000002" y1="110.50000000000001" y2="69.5"/> - <line stroke="#888888" x1="71.4" x2="72.60000000000001" y1="70.00000000000001" y2="70.00000000000001"/> - <line stroke="#888888" x1="72.60000000000001" x2="72.60000000000001" y1="70.00000000000001" y2="100.0"/> - <line stroke="#888888" x1="72.60000000000001" x2="71.4" y1="100.0" y2="100.0"/> - <line stroke="#888888" x1="71.4" x2="71.4" y1="100.0" y2="70.00000000000001"/> - <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="73.50000000000001" y2="66.50000000000001"/> - <line stroke="#888888" x1="97.00000000000001" x2="117.00000000000001" y1="66.50000000000001" y2="66.50000000000001"/> - <line stroke="#888888" x1="117.00000000000001" x2="117.00000000000001" y1="66.50000000000001" y2="73.50000000000001"/> - <line stroke="#888888" x1="117.00000000000001" x2="97.00000000000001" y1="73.50000000000001" y2="73.50000000000001"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="81.9318181818182" y2="70.3409090909091"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="70.3409090909091" y2="70.3409090909091"/> - <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="70.3409090909091" y2="81.9318181818182"/> - <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="81.9318181818182" y2="81.9318181818182"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="109.65909090909092" y2="98.06818181818183"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="98.06818181818183" y2="98.06818181818183"/> - <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="98.06818181818183" y2="109.65909090909092"/> - <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="109.65909090909092" y2="109.65909090909092"/> - <line stroke="#888888" x1="26.000000000000004" x2="26.000000000000004" y1="164.25000000000003" y2="161.75"/> - <line stroke="#888888" x1="26.000000000000004" x2="30.000000000000004" y1="161.75" y2="161.75"/> - <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="161.75" y2="164.25000000000003"/> - <line stroke="#888888" x1="14.000000000000002" x2="14.000000000000002" y1="164.25000000000003" y2="161.75"/> - <line stroke="#888888" x1="14.000000000000002" x2="18.000000000000004" y1="161.75" y2="161.75"/> - <line stroke="#888888" x1="18.000000000000004" x2="18.000000000000004" y1="161.75" y2="164.25000000000003"/> - <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="70.5909090909091" y2="70.5909090909091"/> - <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="70.5909090909091" y2="81.68181818181819"/> - <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="81.68181818181819" y2="81.68181818181819"/> - <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="98.31818181818184" y2="98.31818181818184"/> - <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="98.31818181818184" y2="109.40909090909092"/> - <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="109.40909090909092" y2="109.40909090909092"/> - <line stroke="#000000" x1="186.00000000000003" x2="140.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="198.0" x2="186.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="210.00000000000003" x2="198.0" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="222.00000000000003" x2="210.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="234.00000000000003" x2="222.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="246.00000000000003" x2="234.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="258.0" x2="246.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="270.00000000000006" x2="258.0" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="270.00000000000006" x2="270.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="140.00000000000003" x2="270.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="140.00000000000003" x2="140.00000000000003" y1="90.0" y2="90.0"/> - <line stroke="#888888" x1="206.25000000000003" x2="201.75000000000003" y1="94.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="201.75000000000003" x2="201.75000000000003" y1="94.00000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="201.75000000000003" x2="206.25000000000003" y1="93.50000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="206.25000000000003" x2="206.25000000000003" y1="93.50000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="218.25000000000003" x2="213.75" y1="94.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="213.75" x2="213.75" y1="94.00000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="213.75" x2="218.25000000000003" y1="93.50000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="218.25000000000003" x2="218.25000000000003" y1="93.50000000000001" y2="94.00000000000001"/> - <line stroke="#000000" x1="326.00000000000006" x2="280.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="338.00000000000006" x2="326.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="350.0" x2="338.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="362.00000000000006" x2="350.0" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="374.00000000000006" x2="362.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="386.00000000000006" x2="374.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="398.00000000000006" x2="386.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="410.00000000000006" x2="398.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="410.00000000000006" x2="410.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="280.00000000000006" x2="410.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#000000" x1="280.00000000000006" x2="280.00000000000006" y1="90.0" y2="90.0"/> - <line stroke="#888888" x1="334.25000000000006" x2="329.75000000000006" y1="94.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="329.75000000000006" x2="329.75000000000006" y1="94.00000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="329.75000000000006" x2="334.25000000000006" y1="93.50000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="334.25000000000006" x2="334.25000000000006" y1="93.50000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="346.25" x2="341.75" y1="94.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="341.75" x2="341.75" y1="94.00000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="341.75" x2="346.25" y1="93.50000000000001" y2="93.50000000000001"/> - <line stroke="#888888" x1="346.25" x2="346.25" y1="93.50000000000001" y2="94.00000000000001"/> - <line stroke="#000000" x1="612.710678118655" x2="604.710678118655" y1="55.00000000000001" y2="55.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="612.710678118655" x2="612.710678118655" y1="55.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="604.710678118655" x2="612.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.710678118655" x2="604.710678118655" y1="125.00000000000001" y2="55.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="620.710678118655" y1="55.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="55.00000000000001" y2="5.000000000000001"/> - <line stroke="#000000" x1="612.710678118655" x2="612.710678118655" y1="5.000000000000001" y2="55.00000000000001"/> - <line stroke="#000000" x1="612.710678118655" x2="612.710678118655" y1="0.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="620.710678118655" x2="612.710678118655" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="5.000000000000001" y2="0.0"/> - <line stroke="#000000" x1="628.710678118655" x2="620.710678118655" y1="55.00000000000001" y2="55.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="628.710678118655" x2="628.710678118655" y1="55.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="620.710678118655" x2="628.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="636.710678118655" x2="628.710678118655" y1="55.00000000000001" y2="55.00000000000001"/> - <line stroke="#000000" x1="636.710678118655" x2="636.710678118655" y1="125.00000000000001" y2="55.00000000000001"/> - <line stroke="#000000" x1="628.710678118655" x2="636.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="612.710678118655" x2="612.710678118655" y1="125.00000000000001" y2="175.0"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="175.0" y2="125.00000000000001"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="612.710678118655" y1="175.0" y2="175.0"/> - <line stroke="#000000" x1="612.710678118655" x2="490.7106781186549" y1="175.0" y2="175.0"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="175.0" y2="175.0"/> - <line stroke="#000000" x1="490.7106781186549" x2="490.7106781186549" y1="175.0" y2="175.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.7106781186549" x2="620.710678118655" y1="225.00000000000003" y2="225.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.7106781186549" x2="490.7106781186549" y1="175.0" y2="225.00000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="458.4510113187008" x2="490.7106781186549" y1="175.0" y2="225.00000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="458.4510113187008" x2="490.7106781186549" y1="175.0" y2="175.0"/> - <line stroke="#000000" x1="458.45101131870075" x2="445.1550063219791" y1="175.0" y2="204.3922158601766"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="445.1550063219791" x2="490.7106781186549" y1="204.3922158601766" y2="225.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="420.00000000000017" x2="490.7106781186549" y1="260.0" y2="225.00000000000003"/> - <line stroke="#000000" x1="431.85900132525745" x2="420.00000000000017" y1="233.78443172035318" y2="260.0"/> - <line stroke="#000000" x1="445.15500632197916" x2="431.85900132525745" y1="204.3922158601766" y2="233.78443172035318"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.7106781186549" x2="490.7106781186549" y1="225.00000000000003" y2="260.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.7106781186549" x2="490.7106781186549" y1="260.0" y2="295.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="420.00000000000017" x2="490.7106781186549" y1="260.0" y2="295.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.7106781186549" x2="620.710678118655" y1="295.0" y2="295.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="620.710678118655" y1="260.0" y2="225.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="620.710678118655" y1="295.0" y2="260.0"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="275.00000000000006" y2="225.00000000000003"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="260.0" y2="275.00000000000006"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="670.7106781186549" y1="225.00000000000003" y2="225.00000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="670.7106781186549" y1="225.00000000000003" y2="175.00000000000003"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="225.00000000000003" y2="175.00000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="670.7106781186549" y1="175.0" y2="175.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="620.710678118655" y1="225.00000000000003" y2="175.0"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="158.33333333333337" y2="175.0"/> - <line stroke="#000000" x1="670.7106781186549" x2="620.710678118655" y1="158.33333333333337" y2="158.33333333333337"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="175.0" y2="158.33333333333337"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="670.7106781186549" x2="620.710678118655" y1="295.0" y2="295.0"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="245.00000000000003" y2="260.0"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="295.0" y2="245.00000000000003"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="345.00000000000006" y2="295.0"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="670.7106781186549" x2="620.710678118655" y1="345.00000000000006" y2="295.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="295.0"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="670.7106781186549" x2="620.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.71067811865487" x2="490.71067811865487" y1="295.0" y2="345.00000000000006"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.71067811865487" x2="458.45101131870075" y1="345.00000000000006" y2="345.00000000000006"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.71067811865487" x2="458.45101131870075" y1="295.0" y2="345.00000000000006"/> - <line stroke="#000000" x1="490.71067811865487" x2="490.71067811865487" y1="355.75322226665145" y2="345.00000000000006"/> - <line stroke="#000000" x1="458.45101131870075" x2="490.71067811865487" y1="355.75322226665145" y2="355.75322226665145"/> - <line stroke="#000000" x1="458.45101131870075" x2="458.45101131870075" y1="345.00000000000006" y2="355.75322226665145"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.71067811865487" x2="445.1550063219791" y1="295.0" y2="315.6077841398234"/> - <line stroke="#000000" x1="445.1550063219791" x2="458.45101131870075" y1="315.6077841398234" y2="345.00000000000006"/> - <line stroke="#000000" x1="431.8590013252574" x2="445.1550063219791" y1="286.21556827964685" y2="315.6077841398234"/> - <line stroke="#000000" x1="420.00000000000006" x2="431.8590013252574" y1="260.0" y2="286.21556827964685"/> - <line stroke="#000000" x1="612.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> - <line stroke="#000000" x1="490.71067811865487" x2="612.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> - <line stroke="#000000" x1="490.71067811865487" x2="490.71067811865487" y1="345.00000000000006" y2="345.00000000000006"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> - <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="361.66666666666674" y2="345.00000000000006"/> - <line stroke="#000000" x1="620.710678118655" x2="670.7106781186549" y1="361.66666666666674" y2="361.66666666666674"/> - <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="361.66666666666674"/> - <line stroke="#000000" x1="458.4510113187008" x2="458.4510113187008" y1="164.2467777333486" y2="175.0"/> - <line stroke="#000000" x1="490.7106781186549" x2="458.4510113187008" y1="164.2467777333486" y2="164.2467777333486"/> - <line stroke="#000000" x1="490.7106781186549" x2="490.7106781186549" y1="175.0" y2="164.2467777333486"/> - <line stroke="#000000" x1="596.7106781186549" x2="604.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="596.7106781186549" x2="596.7106781186549" y1="55.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="604.710678118655" x2="596.7106781186549" y1="55.00000000000001" y2="55.00000000000001"/> - <line stroke="#888888" x1="604.710678118655" x2="612.710678118655" y1="86.00000000000001" y2="86.00000000000001"/> - <line stroke="#888888" x1="612.710678118655" x2="612.710678118655" y1="86.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="612.710678118655" x2="604.710678118655" y1="94.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="604.710678118655" x2="604.710678118655" y1="94.00000000000001" y2="86.00000000000001"/> - <line stroke="#888888" x1="618.0440114519882" x2="618.0440114519882" y1="1.2500000000000002" y2="3.7500000000000004"/> - <line stroke="#888888" x1="618.0440114519882" x2="615.3773447853215" y1="3.7500000000000004" y2="3.7500000000000004"/> - <line stroke="#888888" x1="615.3773447853215" x2="615.3773447853215" y1="3.7500000000000004" y2="1.2500000000000002"/> - <line stroke="#888888" x1="620.710678118655" x2="628.710678118655" y1="86.00000000000001" y2="86.00000000000001"/> - <line stroke="#888888" x1="628.710678118655" x2="628.710678118655" y1="86.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="628.710678118655" x2="620.710678118655" y1="94.00000000000001" y2="94.00000000000001"/> - <line stroke="#888888" x1="620.710678118655" x2="620.710678118655" y1="94.00000000000001" y2="86.00000000000001"/> - <line stroke="#888888" x1="630.4606781186549" x2="630.4606781186549" y1="80.70454545454547" y2="67.47727272727273"/> - <line stroke="#888888" x1="630.4606781186549" x2="630.9606781186549" y1="67.47727272727273" y2="67.47727272727273"/> - <line stroke="#888888" x1="630.9606781186549" x2="630.9606781186549" y1="67.47727272727273" y2="80.70454545454547"/> - <line stroke="#888888" x1="630.9606781186549" x2="630.4606781186549" y1="80.70454545454547" y2="80.70454545454547"/> - <line stroke="#888888" x1="630.4606781186549" x2="630.4606781186549" y1="112.52272727272728" y2="99.29545454545456"/> - <line stroke="#888888" x1="630.4606781186549" x2="630.9606781186549" y1="99.29545454545456" y2="99.29545454545456"/> - <line stroke="#888888" x1="630.9606781186549" x2="630.9606781186549" y1="99.29545454545456" y2="112.52272727272728"/> - <line stroke="#888888" x1="630.9606781186549" x2="630.4606781186549" y1="112.52272727272728" y2="112.52272727272728"/> - <line stroke="#888888" x1="448.40187590113186" x2="443.7637963941598" y1="217.3888829577983" y2="227.64184496249058"/> - <line stroke="#888888" x1="443.7637963941598" x2="443.308239676193" y1="227.64184496249058" y2="227.43576712109234"/> - <line stroke="#888888" x1="443.308239676193" x2="447.94631918316514" y1="227.43576712109234" y2="217.18280511640006"/> - <line stroke="#888888" x1="447.94631918316514" x2="448.40187590113186" y1="217.18280511640006" y2="217.3888829577983"/> - <line stroke="#888888" x1="657.9606781186549" x2="657.9606781186549" y1="258.58333333333337" y2="241.41666666666669"/> - <line stroke="#888888" x1="657.9606781186549" x2="658.4606781186549" y1="241.41666666666669" y2="241.41666666666669"/> - <line stroke="#888888" x1="658.4606781186549" x2="658.4606781186549" y1="241.41666666666669" y2="258.58333333333337"/> - <line stroke="#888888" x1="658.4606781186549" x2="657.9606781186549" y1="258.58333333333337" y2="258.58333333333337"/> - <line stroke="#888888" x1="654.0440114519881" x2="654.0440114519881" y1="162.50000000000003" y2="170.83333333333334"/> - <line stroke="#888888" x1="654.0440114519881" x2="637.3773447853216" y1="170.83333333333334" y2="170.83333333333334"/> - <line stroke="#888888" x1="637.3773447853216" x2="637.3773447853216" y1="170.83333333333334" y2="162.50000000000003"/> - <line stroke="#888888" x1="657.9606781186549" x2="657.9606781186549" y1="278.5833333333333" y2="261.4166666666667"/> - <line stroke="#888888" x1="657.9606781186549" x2="658.4606781186549" y1="261.4166666666667" y2="261.4166666666667"/> - <line stroke="#888888" x1="658.4606781186549" x2="658.4606781186549" y1="261.4166666666667" y2="278.5833333333333"/> - <line stroke="#888888" x1="658.4606781186549" x2="657.9606781186549" y1="278.5833333333333" y2="278.5833333333333"/> - <line stroke="#888888" x1="469.20423358535214" x2="469.20423358535214" y1="353.06491669998854" y2="347.6883055666629"/> - <line stroke="#888888" x1="469.20423358535214" x2="479.95745585200353" y1="347.6883055666629" y2="347.6883055666629"/> - <line stroke="#888888" x1="479.95745585200353" x2="479.95745585200353" y1="347.6883055666629" y2="353.06491669998854"/> - <line stroke="#888888" x1="443.76379639415967" x2="448.4018759011318" y1="292.3581550375095" y2="302.6111170422017"/> - <line stroke="#888888" x1="448.4018759011318" x2="447.94631918316503" y1="302.6111170422017" y2="302.81719488360005"/> - <line stroke="#888888" x1="447.94631918316503" x2="443.30823967619295" y1="302.81719488360005" y2="292.5642328789077"/> - <line stroke="#888888" x1="443.30823967619295" x2="443.76379639415967" y1="292.5642328789077" y2="292.3581550375095"/> - <line stroke="#888888" x1="615.1273447853216" x2="618.2940114519882" y1="341.0" y2="341.0"/> - <line stroke="#888888" x1="618.2940114519882" x2="618.2940114519882" y1="341.0" y2="341.5"/> - <line stroke="#888888" x1="618.2940114519882" x2="615.1273447853216" y1="341.5" y2="341.5"/> - <line stroke="#888888" x1="615.1273447853216" x2="615.1273447853216" y1="341.5" y2="341.0"/> - <line stroke="#888888" x1="637.3773447853216" x2="637.3773447853216" y1="357.50000000000006" y2="349.16666666666674"/> - <line stroke="#888888" x1="637.3773447853216" x2="654.0440114519881" y1="349.16666666666674" y2="349.16666666666674"/> - <line stroke="#888888" x1="654.0440114519881" x2="654.0440114519881" y1="349.16666666666674" y2="357.50000000000006"/> - <line stroke="#888888" x1="479.95745585200353" x2="479.95745585200353" y1="166.93508330001148" y2="172.31169443333718"/> - <line stroke="#888888" x1="479.95745585200353" x2="469.20423358535214" y1="172.31169443333718" y2="172.31169443333718"/> - <line stroke="#888888" x1="469.20423358535214" x2="469.20423358535214" y1="172.31169443333718" y2="166.93508330001148"/> - <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="67.72727272727273" y2="63.727272727272734"/> - <line stroke="#888888" x1="598.7106781186549" x2="602.710678118655" y1="63.727272727272734" y2="67.72727272727273"/> - <line stroke="#888888" x1="602.710678118655" x2="602.710678118655" y1="67.72727272727273" y2="80.45454545454547"/> - <line stroke="#888888" x1="602.710678118655" x2="598.7106781186549" y1="80.45454545454547" y2="84.45454545454547"/> - <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="84.45454545454547" y2="80.45454545454547"/> - <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="99.54545454545455" y2="95.54545454545456"/> - <line stroke="#888888" x1="598.7106781186549" x2="602.710678118655" y1="95.54545454545456" y2="99.54545454545455"/> - <line stroke="#888888" x1="602.710678118655" x2="602.710678118655" y1="99.54545454545455" y2="112.27272727272728"/> - <line stroke="#888888" x1="602.710678118655" x2="598.7106781186549" y1="112.27272727272728" y2="116.27272727272728"/> - <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="116.27272727272728" y2="112.27272727272728"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="94.00000000000001" y1="147.33981100000003" y2="147.33981100000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="94.00000000000001" y1="147.33981100000003" y2="171.339811"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="34.0" y1="171.339811" y2="171.339811"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="34.0" y1="171.339811" y2="147.33981100000003"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="140.33981100000003" y2="147.33981100000003"/> + <line stroke="#000000" x1="94.00000000000001" x2="34.0" y1="140.33981100000003" y2="140.33981100000003"/> + <line stroke="#000000" x1="94.00000000000001" x2="94.00000000000001" y1="147.33981100000003" y2="140.33981100000003"/> + <line stroke="#000000" x1="101.00000000000001" x2="94.00000000000001" y1="147.33981100000003" y2="147.33981100000003"/> + <line stroke="#000000" x1="101.00000000000001" x2="101.00000000000001" y1="171.339811" y2="147.33981100000003"/> + <line stroke="#000000" x1="94.00000000000001" x2="101.00000000000001" y1="171.339811" y2="171.339811"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="94.00000000000001" y1="171.339811" y2="232.33981100000003"/> + <line stroke="#000000" x1="34.0" x2="94.00000000000001" y1="232.33981100000003" y2="232.33981100000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="34.0" y1="171.339811" y2="232.33981100000003"/> + <line stroke="#000000" x1="118.00000000000001" x2="94.00000000000001" y1="171.339811" y2="171.339811"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="118.00000000000001" x2="118.00000000000001" y1="171.339811" y2="232.33981100000003"/> + <line stroke="#000000" x1="94.00000000000001" x2="118.00000000000001" y1="232.33981100000003" y2="232.33981100000003"/> + <line stroke="#000000" x1="178.00000000000003" x2="118.00000000000001" y1="171.339811" y2="171.339811"/> + <line stroke="#000000" x1="178.00000000000003" x2="178.00000000000003" y1="232.33981100000003" y2="171.339811"/> + <line stroke="#000000" x1="118.00000000000001" x2="178.00000000000003" y1="232.33981100000003" y2="232.33981100000003"/> + <line stroke="#000000" x1="34.0" x2="10.000000000000002" y1="171.339811" y2="171.339811"/> + <line stroke="#000000" x1="10.000000000000002" x2="34.0" y1="232.33981100000003" y2="232.33981100000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="232.33981100000003" y2="171.339811"/> + <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="232.33981100000003" y2="232.33981100000003"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="171.339811" y2="232.33981100000003"/> + <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="171.339811" y2="171.339811"/> + <line stroke="#000000" x1="27.000000000000004" x2="34.0" y1="171.339811" y2="171.339811"/> + <line stroke="#000000" x1="27.000000000000004" x2="27.000000000000004" y1="147.33981100000003" y2="171.339811"/> + <line stroke="#000000" x1="34.0" x2="27.000000000000004" y1="147.33981100000003" y2="147.33981100000003"/> + <line stroke="#888888" x1="83.0909090909091" x2="86.59090909090911" y1="142.08981100000003" y2="142.08981100000003"/> + <line stroke="#888888" x1="86.59090909090911" x2="83.0909090909091" y1="142.08981100000003" y2="145.58981100000003"/> + <line stroke="#888888" x1="83.0909090909091" x2="72.1818181818182" y1="145.58981100000003" y2="145.58981100000003"/> + <line stroke="#888888" x1="72.1818181818182" x2="68.6818181818182" y1="145.58981100000003" y2="142.08981100000003"/> + <line stroke="#888888" x1="68.6818181818182" x2="72.1818181818182" y1="142.08981100000003" y2="142.08981100000003"/> + <line stroke="#888888" x1="55.818181818181834" x2="59.31818181818183" y1="142.08981100000003" y2="142.08981100000003"/> + <line stroke="#888888" x1="59.31818181818183" x2="55.818181818181834" y1="142.08981100000003" y2="145.58981100000003"/> + <line stroke="#888888" x1="55.818181818181834" x2="44.90909090909092" y1="145.58981100000003" y2="145.58981100000003"/> + <line stroke="#888888" x1="44.90909090909092" x2="41.40909090909093" y1="145.58981100000003" y2="142.08981100000003"/> + <line stroke="#888888" x1="41.40909090909093" x2="44.90909090909092" y1="142.08981100000003" y2="142.08981100000003"/> + <line stroke="#888888" x1="99.25000000000001" x2="95.75000000000001" y1="163.33981100000003" y2="163.33981100000003"/> + <line stroke="#888888" x1="95.75000000000001" x2="95.75000000000001" y1="163.33981100000003" y2="155.339811"/> + <line stroke="#888888" x1="95.75000000000001" x2="99.25000000000001" y1="155.339811" y2="155.339811"/> + <line stroke="#888888" x1="42.0" x2="42.0" y1="222.83981100000003" y2="204.83981100000003"/> + <line stroke="#888888" x1="42.0" x2="72.00000000000001" y1="204.83981100000003" y2="204.83981100000003"/> + <line stroke="#888888" x1="72.00000000000001" x2="72.00000000000001" y1="204.83981100000003" y2="222.83981100000003"/> + <line stroke="#888888" x1="72.00000000000001" x2="42.0" y1="222.83981100000003" y2="222.83981100000003"/> + <line stroke="#888888" x1="115.40000000000002" x2="116.60000000000001" y1="181.33981100000003" y2="181.33981100000003"/> + <line stroke="#888888" x1="116.60000000000001" x2="116.60000000000001" y1="181.33981100000003" y2="222.33981100000003"/> + <line stroke="#888888" x1="116.60000000000001" x2="115.40000000000002" y1="222.33981100000003" y2="222.33981100000003"/> + <line stroke="#888888" x1="115.40000000000002" x2="115.40000000000002" y1="222.33981100000003" y2="181.33981100000003"/> + <line stroke="#888888" x1="95.4" x2="96.60000000000001" y1="181.83981100000003" y2="181.83981100000003"/> + <line stroke="#888888" x1="96.60000000000001" x2="96.60000000000001" y1="181.83981100000003" y2="211.83981100000003"/> + <line stroke="#888888" x1="96.60000000000001" x2="95.4" y1="211.83981100000003" y2="211.83981100000003"/> + <line stroke="#888888" x1="95.4" x2="95.4" y1="211.83981100000003" y2="181.83981100000003"/> + <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="179.08981100000003" y2="179.08981100000003"/> + <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="179.08981100000003" y2="178.58981100000003"/> + <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="178.58981100000003" y2="178.58981100000003"/> + <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="178.58981100000003" y2="179.08981100000003"/> + <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="226.83981100000003" y2="226.83981100000003"/> + <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="226.83981100000003" y2="227.33981100000003"/> + <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="227.33981100000003" y2="227.33981100000003"/> + <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="227.33981100000003" y2="226.83981100000003"/> + <line stroke="#888888" x1="133.00000000000003" x2="133.00000000000003" y1="185.33981100000003" y2="178.33981100000003"/> + <line stroke="#888888" x1="133.00000000000003" x2="153.00000000000003" y1="178.33981100000003" y2="178.33981100000003"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="178.33981100000003" y2="185.33981100000003"/> + <line stroke="#888888" x1="153.00000000000003" x2="133.00000000000003" y1="185.33981100000003" y2="185.33981100000003"/> + <line stroke="#888888" x1="140.06818181818184" x2="128.65909090909093" y1="176.83981100000003" y2="176.83981100000003"/> + <line stroke="#888888" x1="128.65909090909093" x2="128.65909090909093" y1="176.83981100000003" y2="176.33981100000003"/> + <line stroke="#888888" x1="128.65909090909093" x2="140.06818181818184" y1="176.33981100000003" y2="176.33981100000003"/> + <line stroke="#888888" x1="140.06818181818184" x2="140.06818181818184" y1="176.33981100000003" y2="176.83981100000003"/> + <line stroke="#888888" x1="167.3409090909091" x2="155.93181818181822" y1="176.83981100000003" y2="176.83981100000003"/> + <line stroke="#888888" x1="155.93181818181822" x2="155.93181818181822" y1="176.83981100000003" y2="176.33981100000003"/> + <line stroke="#888888" x1="155.93181818181822" x2="167.3409090909091" y1="176.33981100000003" y2="176.33981100000003"/> + <line stroke="#888888" x1="167.3409090909091" x2="167.3409090909091" y1="176.33981100000003" y2="176.83981100000003"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="193.77162918181818" y2="182.18072009090912"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="182.18072009090912" y2="182.18072009090912"/> + <line stroke="#888888" x1="170.75" x2="170.75" y1="182.18072009090912" y2="193.77162918181818"/> + <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="193.77162918181818" y2="193.77162918181818"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="221.49890190909093" y2="209.9079928181818"/> + <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="209.9079928181818" y2="209.9079928181818"/> + <line stroke="#888888" x1="170.75" x2="170.75" y1="209.9079928181818" y2="221.49890190909093"/> + <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="221.49890190909093" y2="221.49890190909093"/> + <line stroke="#888888" x1="11.4" x2="12.600000000000001" y1="181.33981100000003" y2="181.33981100000003"/> + <line stroke="#888888" x1="12.600000000000001" x2="12.600000000000001" y1="181.33981100000003" y2="222.33981100000003"/> + <line stroke="#888888" x1="12.600000000000001" x2="11.4" y1="222.33981100000003" y2="222.33981100000003"/> + <line stroke="#888888" x1="11.4" x2="11.4" y1="222.33981100000003" y2="181.33981100000003"/> + <line stroke="#888888" x1="31.400000000000002" x2="32.60000000000001" y1="181.83981100000003" y2="181.83981100000003"/> + <line stroke="#888888" x1="32.60000000000001" x2="32.60000000000001" y1="181.83981100000003" y2="211.83981100000003"/> + <line stroke="#888888" x1="32.60000000000001" x2="31.400000000000002" y1="211.83981100000003" y2="211.83981100000003"/> + <line stroke="#888888" x1="31.400000000000002" x2="31.400000000000002" y1="211.83981100000003" y2="181.83981100000003"/> + <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="179.08981100000003" y2="179.08981100000003"/> + <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="179.08981100000003" y2="178.58981100000003"/> + <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="178.58981100000003" y2="178.58981100000003"/> + <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="178.58981100000003" y2="179.08981100000003"/> + <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="226.83981100000003" y2="226.83981100000003"/> + <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="226.83981100000003" y2="227.33981100000003"/> + <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="227.33981100000003" y2="227.33981100000003"/> + <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="227.33981100000003" y2="226.83981100000003"/> + <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="182.43072009090912" y2="182.43072009090912"/> + <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="182.43072009090912" y2="193.52162918181818"/> + <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="193.52162918181818" y2="193.52162918181818"/> + <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="210.1579928181818" y2="210.1579928181818"/> + <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="210.1579928181818" y2="221.24890190909093"/> + <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="221.24890190909093" y2="221.24890190909093"/> + <line stroke="#888888" x1="28.750000000000004" x2="32.25" y1="155.339811" y2="155.339811"/> + <line stroke="#888888" x1="32.25" x2="32.25" y1="155.339811" y2="163.33981100000003"/> + <line stroke="#888888" x1="32.25" x2="28.750000000000004" y1="163.33981100000003" y2="163.33981100000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="198.0" x2="258.0" y1="141.13953627679874" y2="141.13953627679874"/> + <line stroke="#000000" x1="258.0" x2="258.0" y1="177.54008572320132" y2="141.13953627679874"/> + <line stroke="#000000" x1="198.0" x2="258.0" y1="177.54008572320132" y2="177.54008572320132"/> + <line stroke="#000000" x1="198.0" x2="198.0" y1="141.13953627679874" y2="177.54008572320132"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="258.0" x2="198.0" y1="117.13953627679872" y2="117.13953627679872"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="258.0" x2="258.0" y1="117.13953627679872" y2="141.13953627679874"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="198.0" x2="198.0" y1="141.13953627679874" y2="117.13953627679872"/> + <line stroke="#000000" x1="198.0" x2="198.0" y1="80.73898683039612" y2="117.13953627679872"/> + <line stroke="#000000" x1="258.0" x2="198.0" y1="80.73898683039612" y2="80.73898683039612"/> + <line stroke="#000000" x1="258.0" x2="258.0" y1="117.13953627679872" y2="80.73898683039612"/> + <line stroke="#000000" x1="268.00000000000006" x2="258.0" y1="117.13953627679872" y2="117.13953627679872"/> + <line stroke="#000000" x1="268.00000000000006" x2="268.00000000000006" y1="141.13953627679874" y2="117.13953627679872"/> + <line stroke="#000000" x1="258.0" x2="268.00000000000006" y1="141.13953627679874" y2="141.13953627679874"/> + <line stroke="#000000" x1="188.00000000000003" x2="198.0" y1="141.13953627679874" y2="141.13953627679874"/> + <line stroke="#000000" x1="188.00000000000003" x2="188.00000000000003" y1="117.13953627679872" y2="141.13953627679874"/> + <line stroke="#000000" x1="198.0" x2="188.00000000000003" y1="117.13953627679872" y2="117.13953627679872"/> + <line stroke="#888888" x1="215.50000000000003" x2="226.50000000000003" y1="122.63953627679872" y2="122.63953627679872"/> + <line stroke="#888888" x1="226.50000000000003" x2="226.50000000000003" y1="122.63953627679872" y2="135.6395362767987"/> + <line stroke="#888888" x1="226.50000000000003" x2="215.50000000000003" y1="135.6395362767987" y2="135.6395362767987"/> + <line stroke="#888888" x1="215.50000000000003" x2="215.50000000000003" y1="135.6395362767987" y2="122.63953627679872"/> + <line stroke="#888888" x1="247.00000000000003" x2="253.00000000000003" y1="124.13953627679872" y2="124.13953627679872"/> + <line stroke="#888888" x1="253.00000000000003" x2="253.00000000000003" y1="124.13953627679872" y2="134.13953627679874"/> + <line stroke="#888888" x1="253.00000000000003" x2="247.00000000000003" y1="134.13953627679874" y2="134.13953627679874"/> + <line stroke="#888888" x1="247.00000000000003" x2="247.00000000000003" y1="134.13953627679874" y2="124.13953627679872"/> + <line stroke="#888888" x1="265.50000000000006" x2="260.50000000000006" y1="133.13953627679874" y2="133.13953627679874"/> + <line stroke="#888888" x1="260.50000000000006" x2="260.50000000000006" y1="133.13953627679874" y2="125.13953627679872"/> + <line stroke="#888888" x1="260.50000000000006" x2="265.50000000000006" y1="125.13953627679872" y2="125.13953627679872"/> + <line stroke="#888888" x1="190.50000000000003" x2="195.5" y1="125.13953627679872" y2="125.13953627679872"/> + <line stroke="#888888" x1="195.5" x2="195.5" y1="125.13953627679872" y2="133.13953627679874"/> + <line stroke="#888888" x1="195.5" x2="190.50000000000003" y1="133.13953627679874" y2="133.13953627679874"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="454.6666666666669" x2="454.6666666666669" y1="94.33981100000001" y2="224.33981100000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="384.6666666666669" x2="384.6666666666669" y1="94.33981100000001" y2="224.33981100000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="419.6666666666669" x2="384.6666666666669" y1="94.33981100000001" y2="94.33981100000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="454.6666666666669" x2="419.6666666666669" y1="94.33981100000001" y2="94.33981100000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="419.6666666666669" x2="384.6666666666669" y1="-3.2056604482022527e-07" y2="94.33981100000001"/> + <line stroke="#000000" x1="417.9257952661878" x2="361.29623096642734" y1="0.5317572923818831" y2="17.829532375615347"/> + <line stroke="#000000" x1="419.6666666666669" x2="417.9257952661878" y1="-3.2056604482022527e-07" y2="0.5317572923818831"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="384.6666666666669" x2="361.29623096642734" y1="94.339811" y2="17.829532375615347"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="384.6666666666669" x2="304.66666666666697" y1="94.33981100000001" y2="35.127307458848826"/> + <line stroke="#000000" x1="361.29623096642734" x2="304.66666666666697" y1="17.829532375615347" y2="35.127307458848826"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="304.66666666666686" x2="304.66666666666697" y1="94.33981099999995" y2="35.12730745884883"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="384.6666666666669" x2="304.66666666666686" y1="94.33981100000001" y2="94.33981099999995"/> + <line stroke="#000000" x1="284.92916548628324" x2="304.66666666666686" y1="94.33981099999994" y2="94.33981099999995"/> + <line stroke="#000000" x1="284.92916548628324" x2="284.92916548628324" y1="35.127307458848826" y2="94.33981099999994"/> + <line stroke="#000000" x1="304.66666666666697" x2="284.92916548628324" y1="35.12730745884883" y2="35.127307458848826"/> + <line stroke="#000000" x1="304.66666666666686" x2="304.66666666666674" y1="94.33981099999995" y2="224.33981099999997"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="304.66666666666674" x2="384.6666666666668" y1="224.33981099999997" y2="224.33981100000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="304.6666666666667" x2="384.6666666666668" y1="304.339811" y2="224.33981100000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="304.6666666666667" x2="304.66666666666674" y1="304.339811" y2="224.33981099999997"/> + <line stroke="#000000" x1="304.6666666666667" x2="384.6666666666667" y1="304.339811" y2="304.33981100000005"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="384.6666666666667" x2="384.6666666666668" y1="304.33981100000005" y2="224.33981100000003"/> + <line stroke="#000000" x1="464.6666666666667" x2="419.6666666666667" y1="304.33981100000005" y2="304.33981100000005"/> + <line stroke="#000000" x1="384.6666666666667" x2="464.6666666666667" y1="304.33981100000005" y2="304.33981100000005"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="384.6666666666668" x2="419.6666666666668" y1="224.33981100000003" y2="224.33981100000005"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="419.6666666666668" x2="454.66666666666674" y1="224.33981100000005" y2="224.33981100000008"/> + <line stroke="#000000" x1="374.66666666666674" x2="454.6666666666667" y1="304.339811" y2="304.33981100000005"/> + <line stroke="#000000" x1="419.6666666666667" x2="374.66666666666674" y1="304.33981100000005" y2="304.339811"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="454.66666666666674" x2="454.6666666666667" y1="224.3398110000001" y2="304.33981100000005"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="454.66666666666674" x2="534.6666666666665" y1="224.3398110000001" y2="304.33981100000017"/> + <line stroke="#000000" x1="454.6666666666667" x2="534.6666666666665" y1="304.33981100000005" y2="304.33981100000017"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="534.6666666666667" x2="534.6666666666665" y1="224.3398110000002" y2="304.33981100000017"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="454.66666666666674" x2="534.6666666666667" y1="224.3398110000001" y2="224.3398110000002"/> + <line stroke="#000000" x1="561.3333333333334" x2="534.6666666666667" y1="224.3398110000002" y2="224.3398110000002"/> + <line stroke="#000000" x1="561.3333333333334" x2="561.3333333333334" y1="304.33981100000017" y2="224.3398110000002"/> + <line stroke="#000000" x1="534.6666666666665" x2="561.3333333333334" y1="304.3398110000001" y2="304.33981100000017"/> + <line stroke="#000000" x1="534.6666666666667" x2="534.666666666667" y1="224.3398110000002" y2="94.33981100000021"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="534.666666666667" x2="454.6666666666669" y1="94.33981100000022" y2="94.33981100000011"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="534.6666666666671" x2="454.66666666666697" y1="35.12730745884912" y2="94.33981100000011"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="534.6666666666671" x2="534.666666666667" y1="35.12730745884912" y2="94.33981100000022"/> + <line stroke="#000000" x1="534.6666666666671" x2="478.0371023669066" y1="35.12730745884912" y2="17.829532375615546"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="478.0371023669066" x2="454.66666666666697" y1="17.829532375615546" y2="94.33981100000011"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="419.6666666666672" x2="454.6666666666669" y1="-3.20565959555097e-07" y2="94.33981100000011"/> + <line stroke="#000000" x1="421.4075380671463" x2="419.6666666666672" y1="0.5317572923819398" y2="-3.20565959555097e-07"/> + <line stroke="#000000" x1="478.0371023669066" x2="421.4075380671463" y1="17.829532375615546" y2="0.5317572923819398"/> + <line stroke="#000000" x1="554.4041678470508" x2="534.6666666666671" y1="35.12730745884915" y2="35.12730745884912"/> + <line stroke="#000000" x1="554.4041678470506" x2="554.4041678470508" y1="94.33981100000025" y2="35.12730745884915"/> + <line stroke="#000000" x1="534.666666666667" x2="554.4041678470506" y1="94.33981100000022" y2="94.33981100000025"/> + <line stroke="#000000" x1="278.0" x2="304.6666666666667" y1="304.33981099999994" y2="304.339811"/> + <line stroke="#000000" x1="278.0000000000001" x2="278.0" y1="224.3398109999999" y2="304.33981099999994"/> + <line stroke="#000000" x1="304.66666666666674" x2="278.0000000000001" y1="224.33981099999997" y2="224.3398109999999"/> + <line stroke="#888888" x1="403.68584483600716" x2="384.3311341613512" y1="20.621135404204413" y2="26.5331256550754"/> + <line stroke="#888888" x1="384.3311341613512" x2="384.1850689382248" y1="26.5331256550754" y2="26.05493641367301"/> + <line stroke="#888888" x1="384.1850689382248" x2="403.53977961288064" y1="26.05493641367301" y2="20.142946162802023"/> + <line stroke="#888888" x1="403.53977961288064" x2="403.68584483600716" y1="20.142946162802023" y2="20.621135404204413"/> + <line stroke="#888888" x1="289.8635407813792" x2="299.73229137157097" y1="54.86480863923253" y2="54.86480863923254"/> + <line stroke="#888888" x1="299.73229137157097" x2="299.73229137157097" y1="54.86480863923254" y2="74.60230981961625"/> + <line stroke="#888888" x1="299.73229137157097" x2="289.8635407813792" y1="74.60230981961625" y2="74.60230981961624"/> + <line stroke="#888888" x1="411.08333333333337" x2="438.25000000000006" y1="284.0898110000001" y2="284.0898110000001"/> + <line stroke="#888888" x1="438.25000000000006" x2="438.25000000000006" y1="284.0898110000001" y2="284.5898110000001"/> + <line stroke="#888888" x1="438.25000000000006" x2="411.08333333333337" y1="284.5898110000001" y2="284.5898110000001"/> + <line stroke="#888888" x1="411.08333333333337" x2="411.08333333333337" y1="284.5898110000001" y2="284.0898110000001"/> + <line stroke="#888888" x1="401.0833333333334" x2="428.25000000000006" y1="284.08981100000005" y2="284.0898110000001"/> + <line stroke="#888888" x1="428.25000000000006" x2="428.25000000000006" y1="284.0898110000001" y2="284.5898110000001"/> + <line stroke="#888888" x1="428.25000000000006" x2="401.0833333333334" y1="284.5898110000001" y2="284.58981100000005"/> + <line stroke="#888888" x1="401.0833333333334" x2="401.0833333333334" y1="284.58981100000005" y2="284.08981100000005"/> + <line stroke="#888888" x1="554.6666666666666" x2="541.3333333333334" y1="277.6731443333335" y2="277.6731443333334"/> + <line stroke="#888888" x1="541.3333333333334" x2="541.3333333333334" y1="277.6731443333334" y2="251.00647766666683"/> + <line stroke="#888888" x1="541.3333333333334" x2="554.6666666666666" y1="251.00647766666683" y2="251.00647766666685"/> + <line stroke="#888888" x1="455.00219917198274" x2="435.6474884973269" y1="26.533125655075565" y2="20.621135404204527"/> + <line stroke="#888888" x1="435.6474884973269" x2="435.7935537204534" y1="20.621135404204527" y2="20.142946162802136"/> + <line stroke="#888888" x1="435.7935537204534" x2="455.14826439510927" y1="20.142946162802136" y2="26.05493641367315"/> + <line stroke="#888888" x1="455.14826439510927" x2="455.00219917198274" y1="26.05493641367315" y2="26.533125655075565"/> + <line stroke="#888888" x1="549.4697925519548" x2="539.6010419617629" y1="74.60230981961654" y2="74.60230981961652"/> + <line stroke="#888888" x1="539.6010419617629" x2="539.6010419617629" y1="74.60230981961652" y2="54.86480863923283"/> + <line stroke="#888888" x1="539.6010419617629" x2="549.4697925519548" y1="54.86480863923283" y2="54.86480863923283"/> + <line stroke="#888888" x1="284.6666666666668" x2="298.0000000000001" y1="251.0064776666666" y2="251.00647766666665"/> + <line stroke="#888888" x1="298.0000000000001" x2="298.0000000000001" y1="251.00647766666665" y2="277.67314433333325"/> + <line stroke="#888888" x1="298.0000000000001" x2="284.6666666666668" y1="277.67314433333325" y2="277.67314433333325"/> </svg> diff --git a/rocolib/output/ESP32StackBoat/graph-model.png b/rocolib/output/ESP32StackBoat/graph-model.png index ac353a9a662e60f0c2cbca3b35a56bbf32288e29..15132169cd464319c2612ecd0251fd59169d0fb0 100644 Binary files a/rocolib/output/ESP32StackBoat/graph-model.png and b/rocolib/output/ESP32StackBoat/graph-model.png differ diff --git a/rocolib/output/ESP32StackBoat/graph-model.stl b/rocolib/output/ESP32StackBoat/graph-model.stl index 425c3baec9659c38acd98a7c1c7eb19872486874..d59675f560e5db0495bd03430163bdc96e94fc6f 100644 --- a/rocolib/output/ESP32StackBoat/graph-model.stl +++ b/rocolib/output/ESP32StackBoat/graph-model.stl @@ -1,800 +1,758 @@ solid python facet normal 0 0 0 outer loop -vertex -0.0120 -0.0305 0.0000 -vertex -0.0094 -0.0205 0.0000 -vertex -0.0106 -0.0205 0.0000 +vertex -0.0300 0.0120 0.0000 +vertex -0.0300 -0.0120 0.0000 +vertex 0.0300 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0094 -0.0205 0.0000 -vertex -0.0120 -0.0305 0.0000 -vertex 0.0120 -0.0305 0.0000 +vertex 0.0300 -0.0120 0.0000 +vertex 0.0300 0.0120 0.0000 +vertex -0.0300 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0305 0.0000 -vertex -0.0106 -0.0205 0.0000 -vertex -0.0106 0.0205 0.0000 +vertex -0.0300 0.0182 0.0000 +vertex -0.0300 -0.0182 0.0000 +vertex 0.0300 -0.0182 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0305 0.0000 -vertex -0.0106 0.0205 0.0000 -vertex -0.0094 0.0205 0.0000 +vertex 0.0300 -0.0182 0.0000 +vertex 0.0300 0.0182 0.0000 +vertex -0.0300 0.0182 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0106 0.0205 0.0000 -vertex -0.0120 0.0305 0.0000 -vertex -0.0120 -0.0305 0.0000 +vertex 0.0300 -0.0352 -0.0534 +vertex 0.0300 -0.0352 -0.0170 +vertex -0.0300 -0.0352 -0.0170 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0305 0.0000 -vertex -0.0094 0.0205 0.0000 -vertex 0.0120 0.0305 0.0000 +vertex -0.0300 -0.0352 -0.0170 +vertex -0.0300 -0.0352 -0.0534 +vertex 0.0300 -0.0352 -0.0534 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0094 -0.0205 0.0000 -vertex 0.0094 0.0100 0.0000 -vertex -0.0094 0.0205 0.0000 +vertex -0.0300 -0.0352 -0.0170 +vertex -0.0015 -0.0313 -0.0131 +vertex -0.0125 -0.0313 -0.0131 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0094 -0.0200 0.0000 -vertex 0.0120 -0.0305 0.0000 -vertex 0.0106 -0.0200 0.0000 +vertex -0.0015 -0.0313 -0.0131 +vertex -0.0300 -0.0352 -0.0170 +vertex 0.0300 -0.0352 -0.0170 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0305 0.0000 -vertex 0.0094 -0.0200 0.0000 -vertex -0.0094 -0.0205 0.0000 +vertex -0.0300 -0.0352 -0.0170 +vertex -0.0125 -0.0313 -0.0131 +vertex -0.0125 -0.0221 -0.0039 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0106 -0.0200 0.0000 -vertex 0.0120 -0.0305 0.0000 -vertex 0.0106 0.0100 0.0000 +vertex -0.0300 -0.0182 0.0000 +vertex -0.0125 -0.0221 -0.0039 +vertex -0.0015 -0.0221 -0.0039 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0094 0.0100 0.0000 -vertex 0.0106 0.0100 0.0000 -vertex 0.0120 0.0305 0.0000 +vertex -0.0125 -0.0221 -0.0039 +vertex -0.0300 -0.0182 0.0000 +vertex -0.0300 -0.0352 -0.0170 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0305 0.0000 -vertex 0.0106 0.0100 0.0000 -vertex 0.0120 -0.0305 0.0000 +vertex -0.0300 -0.0182 0.0000 +vertex -0.0015 -0.0221 -0.0039 +vertex 0.0300 -0.0182 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0094 0.0100 0.0000 -vertex 0.0120 0.0305 0.0000 -vertex -0.0094 0.0205 0.0000 +vertex -0.0015 -0.0313 -0.0131 +vertex 0.0190 -0.0302 -0.0120 +vertex -0.0015 -0.0221 -0.0039 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0094 -0.0200 0.0000 -vertex 0.0094 0.0100 0.0000 -vertex -0.0094 -0.0205 0.0000 +vertex 0.0190 -0.0302 -0.0120 +vertex 0.0300 -0.0352 -0.0170 +vertex 0.0250 -0.0302 -0.0120 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0030 0.0040 -vertex 0.0120 0.0030 0.0000 -vertex 0.0120 0.0210 0.0040 +vertex 0.0300 -0.0352 -0.0170 +vertex 0.0190 -0.0302 -0.0120 +vertex -0.0015 -0.0313 -0.0131 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0305 0.0000 -vertex 0.0120 0.0030 -0.0260 -vertex 0.0120 0.0030 0.0000 +vertex 0.0250 -0.0302 -0.0120 +vertex 0.0300 -0.0352 -0.0170 +vertex 0.0300 -0.0182 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0030 -0.0260 -vertex 0.0120 -0.0305 -0.0360 -vertex 0.0120 0.0305 -0.0360 +vertex 0.0190 -0.0232 -0.0049 +vertex 0.0250 -0.0232 -0.0049 +vertex 0.0300 -0.0182 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0305 -0.0360 -vertex 0.0120 0.0030 -0.0260 -vertex 0.0120 -0.0305 0.0000 +vertex 0.0300 -0.0182 0.0000 +vertex 0.0250 -0.0232 -0.0049 +vertex 0.0250 -0.0302 -0.0120 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0210 -0.0260 -vertex 0.0120 0.0305 -0.0360 -vertex 0.0120 0.0305 0.0000 +vertex 0.0190 -0.0232 -0.0049 +vertex 0.0300 -0.0182 0.0000 +vertex -0.0015 -0.0221 -0.0039 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0305 -0.0360 -vertex 0.0120 0.0210 -0.0260 -vertex 0.0120 0.0030 -0.0260 +vertex 0.0190 -0.0302 -0.0120 +vertex 0.0190 -0.0232 -0.0049 +vertex -0.0015 -0.0221 -0.0039 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0210 0.0040 -vertex 0.0120 0.0030 0.0000 -vertex 0.0120 0.0210 0.0000 +vertex -0.0300 -0.0120 0.0000 +vertex -0.0300 -0.0094 -0.0100 +vertex -0.0300 -0.0106 -0.0100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0305 0.0000 -vertex 0.0120 0.0210 0.0000 -vertex 0.0120 0.0210 -0.0260 +vertex -0.0300 -0.0094 -0.0100 +vertex -0.0300 -0.0120 0.0000 +vertex -0.0300 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0305 -0.0360 -vertex 0.0094 -0.0200 -0.0360 -vertex 0.0106 -0.0200 -0.0360 +vertex -0.0300 -0.0120 0.0000 +vertex -0.0300 -0.0106 -0.0100 +vertex -0.0300 -0.0106 -0.0510 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0094 -0.0200 -0.0360 -vertex 0.0120 -0.0305 -0.0360 -vertex -0.0094 -0.0205 -0.0360 +vertex -0.0300 -0.0120 -0.0610 +vertex -0.0300 -0.0106 -0.0510 +vertex -0.0300 -0.0094 -0.0510 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0305 -0.0360 -vertex 0.0106 -0.0200 -0.0360 -vertex 0.0106 0.0100 -0.0360 +vertex -0.0300 -0.0106 -0.0510 +vertex -0.0300 -0.0120 -0.0610 +vertex -0.0300 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0305 -0.0360 -vertex 0.0106 0.0100 -0.0360 -vertex 0.0094 0.0100 -0.0360 +vertex -0.0300 -0.0120 -0.0610 +vertex -0.0300 -0.0094 -0.0510 +vertex -0.0300 0.0120 -0.0610 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0106 0.0100 -0.0360 -vertex 0.0120 0.0305 -0.0360 -vertex 0.0120 -0.0305 -0.0360 +vertex -0.0300 -0.0094 -0.0100 +vertex -0.0300 0.0094 -0.0405 +vertex -0.0300 -0.0094 -0.0510 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0305 -0.0360 -vertex 0.0094 0.0100 -0.0360 -vertex -0.0094 0.0205 -0.0360 +vertex -0.0300 0.0094 -0.0105 +vertex -0.0300 0.0120 0.0000 +vertex -0.0300 0.0106 -0.0105 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0094 -0.0200 -0.0360 -vertex -0.0094 -0.0205 -0.0360 -vertex 0.0094 0.0100 -0.0360 +vertex -0.0300 0.0120 0.0000 +vertex -0.0300 0.0094 -0.0105 +vertex -0.0300 -0.0094 -0.0100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0094 -0.0205 -0.0360 -vertex -0.0120 -0.0305 -0.0360 -vertex -0.0106 -0.0205 -0.0360 +vertex -0.0300 0.0106 -0.0105 +vertex -0.0300 0.0120 0.0000 +vertex -0.0300 0.0106 -0.0405 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0305 -0.0360 -vertex -0.0094 -0.0205 -0.0360 -vertex 0.0120 -0.0305 -0.0360 +vertex -0.0300 0.0094 -0.0405 +vertex -0.0300 0.0106 -0.0405 +vertex -0.0300 0.0120 -0.0610 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0106 -0.0205 -0.0360 -vertex -0.0120 -0.0305 -0.0360 -vertex -0.0120 0.0305 -0.0360 +vertex -0.0300 0.0120 -0.0610 +vertex -0.0300 0.0106 -0.0405 +vertex -0.0300 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0094 0.0205 -0.0360 -vertex -0.0106 0.0205 -0.0360 -vertex -0.0120 0.0305 -0.0360 +vertex -0.0300 0.0094 -0.0405 +vertex -0.0300 0.0120 -0.0610 +vertex -0.0300 -0.0094 -0.0510 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0305 -0.0360 -vertex -0.0106 0.0205 -0.0360 -vertex -0.0106 -0.0205 -0.0360 +vertex -0.0300 0.0094 -0.0105 +vertex -0.0300 0.0094 -0.0405 +vertex -0.0300 -0.0094 -0.0100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0094 0.0205 -0.0360 -vertex -0.0120 0.0305 -0.0360 -vertex 0.0120 0.0305 -0.0360 +vertex -0.0300 0.0120 0.0000 +vertex -0.0220 0.0120 -0.0335 +vertex -0.0300 0.0120 -0.0610 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0094 -0.0205 -0.0360 -vertex -0.0094 0.0205 -0.0360 -vertex 0.0094 0.0100 -0.0360 +vertex -0.0220 0.0120 -0.0335 +vertex -0.0300 0.0120 0.0000 +vertex 0.0080 0.0120 -0.0335 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0305 -0.0360 -vertex -0.0120 -0.0235 -0.0330 -vertex -0.0120 -0.0165 -0.0330 +vertex -0.0300 0.0120 -0.0610 +vertex -0.0220 0.0120 -0.0515 +vertex 0.0080 0.0120 -0.0515 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0235 -0.0330 -vertex -0.0120 -0.0305 -0.0360 -vertex -0.0120 -0.0235 -0.0130 +vertex -0.0220 0.0120 -0.0515 +vertex -0.0300 0.0120 -0.0610 +vertex -0.0220 0.0120 -0.0335 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0305 -0.0360 -vertex -0.0120 -0.0165 -0.0330 -vertex -0.0120 -0.0165 -0.0130 +vertex 0.0080 0.0120 -0.0335 +vertex 0.0300 0.0120 0.0000 +vertex 0.0300 0.0120 -0.0610 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0165 -0.0330 -vertex -0.0120 0.0305 -0.0360 -vertex -0.0120 -0.0305 -0.0360 +vertex 0.0300 0.0120 0.0000 +vertex 0.0080 0.0120 -0.0335 +vertex -0.0300 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0235 -0.0130 -vertex -0.0120 -0.0305 0.0000 -vertex -0.0120 -0.0165 -0.0130 +vertex 0.0080 0.0120 -0.0515 +vertex 0.0300 0.0120 -0.0610 +vertex -0.0300 0.0120 -0.0610 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0305 0.0000 -vertex -0.0120 -0.0235 -0.0130 -vertex -0.0120 -0.0305 -0.0360 +vertex 0.0300 0.0120 -0.0610 +vertex 0.0080 0.0120 -0.0515 +vertex 0.0080 0.0120 -0.0335 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0165 -0.0130 -vertex -0.0120 0.0305 0.0000 -vertex -0.0120 0.0305 -0.0360 +vertex 0.0300 0.0120 0.0000 +vertex 0.0300 0.0094 -0.0105 +vertex 0.0300 0.0106 -0.0105 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0305 0.0000 -vertex -0.0120 -0.0165 -0.0130 -vertex -0.0120 -0.0305 0.0000 +vertex 0.0300 0.0094 -0.0105 +vertex 0.0300 0.0120 0.0000 +vertex 0.0300 -0.0094 -0.0100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0305 0.0000 -vertex 0.0000 -0.0305 0.0000 -vertex 0.0000 -0.0305 -0.0400 +vertex 0.0300 0.0120 0.0000 +vertex 0.0300 0.0106 -0.0105 +vertex 0.0300 0.0106 -0.0405 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0305 -0.0400 -vertex 0.0120 -0.0305 -0.0400 -vertex 0.0120 -0.0305 0.0000 +vertex 0.0300 0.0120 -0.0610 +vertex 0.0300 0.0106 -0.0405 +vertex 0.0300 0.0094 -0.0405 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0305 0.0000 -vertex -0.0120 -0.0305 0.0000 -vertex -0.0120 -0.0305 -0.0400 +vertex 0.0300 0.0106 -0.0405 +vertex 0.0300 0.0120 -0.0610 +vertex 0.0300 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0305 -0.0400 -vertex 0.0000 -0.0305 -0.0400 -vertex 0.0000 -0.0305 0.0000 +vertex 0.0300 0.0120 -0.0610 +vertex 0.0300 0.0094 -0.0405 +vertex 0.0300 -0.0094 -0.0510 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0305 0.0000 -vertex 0.0000 0.0305 0.0000 -vertex 0.0000 0.0305 -0.0400 +vertex 0.0300 0.0094 -0.0105 +vertex 0.0300 -0.0094 -0.0100 +vertex 0.0300 0.0094 -0.0405 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0305 -0.0400 -vertex -0.0120 0.0305 -0.0400 -vertex -0.0120 0.0305 0.0000 +vertex 0.0300 -0.0094 -0.0100 +vertex 0.0300 -0.0120 0.0000 +vertex 0.0300 -0.0106 -0.0100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0305 0.0000 -vertex 0.0120 0.0305 0.0000 -vertex 0.0120 0.0305 -0.0400 +vertex 0.0300 -0.0120 0.0000 +vertex 0.0300 -0.0094 -0.0100 +vertex 0.0300 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0305 -0.0400 -vertex 0.0000 0.0305 -0.0400 -vertex 0.0000 0.0305 0.0000 +vertex 0.0300 -0.0106 -0.0100 +vertex 0.0300 -0.0120 0.0000 +vertex 0.0300 -0.0120 -0.0610 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0040 -0.0040 0.0000 -vertex -0.0040 -0.0350 0.0000 -vertex 0.0040 -0.0350 0.0000 +vertex 0.0300 -0.0094 -0.0510 +vertex 0.0300 -0.0106 -0.0510 +vertex 0.0300 -0.0120 -0.0610 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0040 0.0350 0.0000 -vertex -0.0040 0.0040 0.0000 -vertex 0.0040 0.0040 0.0000 +vertex 0.0300 -0.0120 -0.0610 +vertex 0.0300 -0.0106 -0.0510 +vertex 0.0300 -0.0106 -0.0100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 -0.0350 0.0000 -vertex 0.0040 -0.0040 0.0000 -vertex -0.0040 -0.0040 0.0000 +vertex 0.0300 -0.0094 -0.0510 +vertex 0.0300 -0.0120 -0.0610 +vertex 0.0300 0.0120 -0.0610 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0040 0.0000 -vertex 0.0040 0.0350 0.0000 -vertex -0.0040 0.0350 0.0000 +vertex 0.0300 -0.0094 -0.0100 +vertex 0.0300 -0.0094 -0.0510 +vertex 0.0300 0.0094 -0.0405 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0350 0.0000 -vertex 0.0040 -0.0350 0.0000 -vertex 0.0040 -0.0350 -0.0080 +vertex 0.0300 -0.0120 0.0000 +vertex 0.0150 -0.0120 -0.0070 +vertex 0.0150 -0.0120 -0.0140 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 -0.0350 -0.0080 -vertex 0.0040 0.0350 -0.0080 -vertex 0.0040 0.0350 0.0000 +vertex 0.0150 -0.0120 -0.0070 +vertex 0.0300 -0.0120 0.0000 +vertex -0.0050 -0.0120 -0.0070 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 -0.0040 -0.0080 -vertex 0.0040 -0.0350 -0.0080 -vertex -0.0040 -0.0350 -0.0080 +vertex 0.0300 -0.0120 -0.0610 +vertex 0.0150 -0.0120 -0.0140 +vertex -0.0050 -0.0120 -0.0140 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0350 -0.0080 -vertex 0.0040 0.0040 -0.0080 -vertex -0.0040 0.0040 -0.0080 +vertex 0.0150 -0.0120 -0.0140 +vertex 0.0300 -0.0120 -0.0610 +vertex 0.0300 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0040 -0.0350 -0.0080 -vertex -0.0040 -0.0040 -0.0080 -vertex 0.0040 -0.0040 -0.0080 +vertex -0.0050 -0.0120 -0.0070 +vertex -0.0300 -0.0120 0.0000 +vertex -0.0050 -0.0120 -0.0140 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0040 0.0040 -0.0080 -vertex -0.0040 0.0350 -0.0080 -vertex 0.0040 0.0350 -0.0080 +vertex -0.0300 -0.0120 0.0000 +vertex -0.0050 -0.0120 -0.0070 +vertex 0.0300 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0040 0.0350 -0.0080 -vertex -0.0040 -0.0350 -0.0080 -vertex -0.0040 -0.0350 -0.0000 +vertex -0.0050 -0.0120 -0.0140 +vertex -0.0300 -0.0120 -0.0610 +vertex 0.0300 -0.0120 -0.0610 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0040 -0.0350 -0.0000 -vertex -0.0040 0.0350 -0.0000 -vertex -0.0040 0.0350 -0.0080 +vertex -0.0300 -0.0120 -0.0610 +vertex -0.0050 -0.0120 -0.0140 +vertex -0.0300 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0350 -0.0080 -vertex 0.0740 0.0350 0.1220 -vertex 0.0040 0.0350 0.1220 +vertex -0.0350 0.0650 0.0000 +vertex -0.0350 -0.0650 0.0000 +vertex 0.0350 -0.0650 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0350 0.1220 -vertex 0.0040 0.0350 -0.0080 -vertex 0.0740 0.0350 -0.0080 +vertex 0.0350 -0.0650 0.0000 +vertex 0.0350 0.0650 0.0000 +vertex -0.0350 0.0650 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0850 -0.0080 -vertex 0.0740 0.0850 0.1220 -vertex 0.0740 0.0350 0.1220 +vertex -0.0350 0.0650 -0.0800 +vertex -0.0350 -0.0650 -0.0800 +vertex -0.0350 -0.0650 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0350 0.1220 -vertex 0.0740 0.0350 -0.0080 -vertex 0.0740 0.0850 -0.0080 +vertex -0.0350 -0.0650 0.0000 +vertex -0.0350 0.0650 -0.0000 +vertex -0.0350 0.0650 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0350 -0.0080 -vertex 0.0040 0.0350 0.1220 -vertex 0.0040 0.0850 0.1220 +vertex 0.0350 0.0650 -0.0000 +vertex 0.0350 -0.0650 0.0000 +vertex 0.0350 -0.0650 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0850 0.1220 -vertex 0.0040 0.0850 -0.0080 -vertex 0.0040 0.0350 -0.0080 +vertex 0.0350 -0.0650 -0.0800 +vertex 0.0350 0.0650 -0.0800 +vertex 0.0350 0.0650 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 -0.0850 0.0000 -vertex 0.0040 -0.0850 -0.0080 -vertex 0.0040 -0.0350 -0.0080 +vertex -0.0350 -0.0650 -0.0000 +vertex -0.0350 -0.0650 -0.0800 +vertex -0.0010 -0.1135 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 -0.0350 -0.0080 -vertex 0.0040 -0.0350 0.0000 -vertex 0.0040 -0.0850 0.0000 +vertex -0.0010 -0.1135 -0.0800 +vertex -0.0000 -0.1150 -0.0800 +vertex -0.0350 -0.0650 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0850 -0.0080 -vertex 0.0040 0.0850 0.0000 -vertex 0.0040 0.0350 0.0000 +vertex 0.0000 -0.0650 0.0000 +vertex -0.0350 -0.0650 0.0000 +vertex 0.0000 -0.1150 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0350 0.0000 -vertex 0.0040 0.0350 -0.0080 -vertex 0.0040 0.0850 -0.0080 +vertex 0.0000 -0.0650 0.0000 +vertex 0.0000 -0.1150 -0.0800 +vertex 0.0350 -0.0650 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0350 0.1220 -vertex 0.0740 0.0850 0.1220 -vertex 0.0555 0.0850 0.1484 +vertex 0.0010 -0.1135 -0.0800 +vertex 0.0350 -0.0650 -0.0800 +vertex 0.0350 -0.0650 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0555 0.0850 0.1484 -vertex 0.0390 0.0850 0.1720 -vertex 0.0740 0.0350 0.1220 +vertex 0.0350 -0.0650 0.0000 +vertex 0.0000 -0.1150 -0.0800 +vertex 0.0010 -0.1135 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0390 0.0350 0.1220 -vertex 0.0740 0.0350 0.1220 -vertex 0.0390 0.0850 0.1720 +vertex -0.0350 -0.0650 -0.0800 +vertex -0.0350 -0.0650 0.0000 +vertex -0.0010 -0.1135 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0390 0.0350 0.1220 -vertex 0.0390 0.0850 0.1720 -vertex 0.0040 0.0350 0.1220 +vertex -0.0350 -0.0650 -0.0800 +vertex -0.0010 -0.1135 -0.0800 +vertex -0.0350 -0.0650 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0225 0.0850 0.1484 -vertex 0.0040 0.0850 0.1220 -vertex 0.0040 0.0350 0.1220 +vertex 0.0350 -0.0650 -0.0800 +vertex 0.0010 -0.1135 -0.0800 +vertex 0.0350 -0.0650 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0350 0.1220 -vertex 0.0390 0.0850 0.1720 -vertex 0.0225 0.0850 0.1484 +vertex 0.0350 -0.0650 -0.0800 +vertex 0.0350 -0.0650 0.0000 +vertex 0.0010 -0.1135 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0850 0.1220 -vertex 0.0740 0.0350 0.1220 -vertex 0.0555 0.0850 0.1484 +vertex 0.0350 0.0650 0.0000 +vertex 0.0350 0.0650 -0.0800 +vertex -0.0000 0.0650 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0850 0.1220 -vertex 0.0555 0.0850 0.1484 -vertex 0.0740 0.0350 0.1220 +vertex -0.0000 0.0650 -0.0000 +vertex 0.0350 0.0650 -0.0000 +vertex -0.0000 0.0650 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0850 0.1220 -vertex 0.0225 0.0850 0.1484 -vertex 0.0040 0.0350 0.1220 +vertex -0.0000 0.0650 -0.0000 +vertex -0.0000 0.0650 -0.0800 +vertex -0.0350 0.0650 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0850 0.1220 -vertex 0.0040 0.0350 0.1220 -vertex 0.0225 0.0850 0.1484 +vertex -0.0000 0.0650 -0.0800 +vertex -0.0350 0.0650 -0.0800 +vertex -0.0350 0.0650 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0350 -0.0080 -vertex 0.0040 0.0850 -0.0080 -vertex 0.0390 0.0850 -0.0080 +vertex 0.0350 0.0650 -0.0800 +vertex 0.0350 0.0650 -0.0000 +vertex -0.0450 0.0650 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0390 0.0350 -0.0080 -vertex 0.0040 0.0350 -0.0080 -vertex 0.0390 0.0850 -0.0080 +vertex 0.0350 0.0650 -0.0800 +vertex -0.0450 0.0650 -0.0800 +vertex 0.0350 0.0650 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0390 0.0350 -0.0080 -vertex 0.0390 0.0850 -0.0080 -vertex 0.0740 0.0350 -0.0080 +vertex -0.0350 0.0650 -0.0800 +vertex 0.0450 0.0650 -0.0800 +vertex -0.0350 0.0650 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0390 0.0850 -0.0080 -vertex 0.0740 0.0850 -0.0080 -vertex 0.0740 0.0350 -0.0080 +vertex -0.0350 0.0650 -0.0800 +vertex -0.0350 0.0650 -0.0000 +vertex 0.0450 0.0650 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0850 -0.0080 -vertex 0.0040 0.0350 -0.0080 -vertex 0.0540 0.0850 -0.0080 +vertex -0.0300 -0.0281 -0.0240 +vertex -0.0300 -0.0352 -0.0170 +vertex -0.0300 -0.0182 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0040 0.0850 -0.0080 -vertex 0.0540 0.0850 -0.0080 -vertex 0.0040 0.0350 -0.0080 +vertex -0.0300 -0.0182 0.0000 +vertex -0.0300 -0.0111 -0.0071 +vertex -0.0300 -0.0281 -0.0240 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0850 -0.0080 -vertex 0.0240 0.0850 -0.0080 -vertex 0.0740 0.0350 -0.0080 +vertex 0.0300 0.0120 -0.0070 +vertex 0.0300 0.0120 0.0000 +vertex 0.0300 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0850 -0.0080 -vertex 0.0740 0.0350 -0.0080 -vertex 0.0240 0.0850 -0.0080 +vertex 0.0300 -0.0120 0.0000 +vertex 0.0300 -0.0120 -0.0070 +vertex 0.0300 0.0120 -0.0070 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0305 -0.0100 -vertex -0.0120 -0.0305 0.0000 -vertex -0.0120 0.0305 0.0000 +vertex 0.0300 -0.0111 -0.0071 +vertex 0.0300 -0.0182 0.0000 +vertex 0.0300 -0.0352 -0.0170 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0305 0.0000 -vertex -0.0120 0.0305 -0.0100 -vertex -0.0120 -0.0305 -0.0100 +vertex 0.0300 -0.0352 -0.0170 +vertex 0.0300 -0.0281 -0.0240 +vertex 0.0300 -0.0111 -0.0071 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0305 -0.0450 -vertex 0.0000 -0.0305 -0.0400 -vertex -0.0120 -0.0305 -0.0400 +vertex -0.0300 -0.0120 -0.0070 +vertex -0.0300 -0.0120 0.0000 +vertex -0.0300 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0305 -0.0400 -vertex -0.0120 -0.0305 -0.0450 -vertex 0.0000 -0.0305 -0.0450 +vertex -0.0300 0.0120 0.0000 +vertex -0.0300 0.0120 -0.0070 +vertex -0.0300 -0.0120 -0.0070 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0305 -0.0450 -vertex 0.0120 -0.0305 -0.0400 -vertex 0.0000 -0.0305 -0.0400 +vertex 0.0300 -0.0120 -0.0070 +vertex 0.0300 -0.0120 0.0000 +vertex -0.0300 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0305 -0.0400 -vertex 0.0000 -0.0305 -0.0450 -vertex 0.0120 -0.0305 -0.0450 +vertex -0.0300 -0.0120 0.0000 +vertex -0.0300 -0.0120 -0.0070 +vertex 0.0300 -0.0120 -0.0070 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0305 -0.0450 -vertex 0.0000 0.0305 -0.0400 -vertex 0.0120 0.0305 -0.0400 +vertex -0.0200 -0.0120 -0.0000 +vertex -0.0300 -0.0120 0.0000 +vertex -0.0300 -0.0120 -0.0610 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0305 -0.0400 -vertex 0.0120 0.0305 -0.0450 -vertex 0.0000 0.0305 -0.0450 +vertex -0.0300 -0.0120 -0.0610 +vertex -0.0200 -0.0120 -0.0610 +vertex -0.0200 -0.0120 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0305 -0.0450 -vertex -0.0120 0.0305 -0.0400 -vertex 0.0000 0.0305 -0.0400 +vertex -0.0027 -0.1147 -0.0604 +vertex -0.0010 -0.1135 -0.0800 +vertex -0.0350 -0.0650 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0305 -0.0400 -vertex 0.0000 0.0305 -0.0450 -vertex -0.0120 0.0305 -0.0450 +vertex -0.0350 -0.0650 -0.0800 +vertex -0.0367 -0.0662 -0.0604 +vertex -0.0027 -0.1147 -0.0604 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0040 -0.0350 -0.0080 -vertex -0.0040 -0.0350 0.0000 -vertex -0.0040 0.0350 0.0000 +vertex 0.0367 -0.0662 -0.0604 +vertex 0.0350 -0.0650 -0.0800 +vertex 0.0010 -0.1135 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0040 0.0350 0.0000 -vertex -0.0040 0.0350 -0.0080 -vertex -0.0040 -0.0350 -0.0080 +vertex 0.0010 -0.1135 -0.0800 +vertex 0.0027 -0.1147 -0.0604 +vertex 0.0367 -0.0662 -0.0604 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0564 0.0743 0.1491 -vertex 0.0555 0.0850 0.1484 -vertex 0.0740 0.0850 0.1220 +vertex -0.0450 0.0678 -0.0535 +vertex -0.0450 0.0650 -0.0800 +vertex 0.0350 0.0650 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0850 0.1220 -vertex 0.0749 0.0743 0.1226 -vertex 0.0564 0.0743 0.1491 +vertex 0.0350 0.0650 -0.0800 +vertex 0.0350 0.0678 -0.0535 +vertex -0.0450 0.0678 -0.0535 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0031 0.0743 0.1226 -vertex 0.0040 0.0850 0.1220 -vertex 0.0225 0.0850 0.1484 +vertex -0.0350 0.0678 -0.0535 +vertex -0.0350 0.0650 -0.0800 +vertex 0.0450 0.0650 -0.0800 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0225 0.0850 0.1484 -vertex 0.0216 0.0743 0.1491 -vertex 0.0031 0.0743 0.1226 -endloop -endfacet -facet normal 0 0 0 -outer loop -vertex 0.0540 0.0684 -0.0097 -vertex 0.0540 0.0850 -0.0080 -vertex 0.0040 0.0850 -0.0080 -endloop -endfacet -facet normal 0 0 0 -outer loop -vertex 0.0040 0.0850 -0.0080 -vertex 0.0040 0.0684 -0.0097 -vertex 0.0540 0.0684 -0.0097 -endloop -endfacet -facet normal 0 0 0 -outer loop -vertex 0.0740 0.0684 -0.0097 -vertex 0.0740 0.0850 -0.0080 -vertex 0.0240 0.0850 -0.0080 -endloop -endfacet -facet normal 0 0 0 -outer loop -vertex 0.0240 0.0850 -0.0080 -vertex 0.0240 0.0684 -0.0097 -vertex 0.0740 0.0684 -0.0097 -endloop -endfacet -facet normal 0 0 0 -outer loop -vertex 0.0040 -0.0900 -0.0080 -vertex 0.0040 -0.0850 -0.0080 -vertex 0.0040 -0.0850 0.0000 -endloop -endfacet -facet normal 0 0 0 -outer loop -vertex 0.0040 -0.0850 0.0000 -vertex 0.0040 -0.0900 0.0000 -vertex 0.0040 -0.0900 -0.0080 +vertex 0.0450 0.0650 -0.0800 +vertex 0.0450 0.0678 -0.0535 +vertex -0.0350 0.0678 -0.0535 endloop endfacet endsolid python diff --git a/rocolib/output/ESP32StackBoat/graph-silhouette.dxf b/rocolib/output/ESP32StackBoat/graph-silhouette.dxf index 2b1bbe5c6f71dd411292bf3ac752e4b4c634895c..17d241f6efe948e21ef48cc3e4692cd25b07abc2 100644 --- a/rocolib/output/ESP32StackBoat/graph-silhouette.dxf +++ b/rocolib/output/ESP32StackBoat/graph-silhouette.dxf @@ -947,13 +947,13 @@ DOTTED 10 34.0 20 -59.50000000000001 +147.33981100000003 30 0.0 11 -34.0 +94.00000000000001 21 -120.50000000000001 +147.33981100000003 31 0.0 0 @@ -965,15 +965,15 @@ DOTTED 8 0 10 -10.000000000000002 +94.00000000000001 20 -120.50000000000001 +147.33981100000003 30 0.0 11 -10.000000000000002 +94.00000000000001 21 -59.50000000000001 +171.339811 31 0.0 0 @@ -985,15 +985,15 @@ DOTTED 8 0 10 -10.000000000000002 +94.00000000000001 20 -59.50000000000001 +171.339811 30 0.0 11 -22.000000000000004 +34.0 21 -59.50000000000001 +171.339811 31 0.0 0 @@ -1005,15 +1005,15 @@ DOTTED 8 0 10 -22.000000000000004 +34.0 20 -59.50000000000001 +171.339811 30 0.0 11 34.0 21 -59.50000000000001 +147.33981100000003 31 0.0 0 @@ -1025,13 +1025,13 @@ LINE 10 34.0 20 -59.50000000000001 +140.33981100000003 30 0.0 11 34.0 21 -59.50000000000001 +147.33981100000003 31 0.0 0 @@ -1041,15 +1041,15 @@ LINE 8 0 10 -10.000000000000002 +94.00000000000001 20 -59.50000000000001 +140.33981100000003 30 0.0 11 -10.000000000000002 +34.0 21 -59.50000000000001 +140.33981100000003 31 0.0 0 @@ -1059,15 +1059,15 @@ LINE 8 0 10 -10.000000000000002 +94.00000000000001 20 -19.500000000000004 +147.33981100000003 30 0.0 11 -10.000000000000002 +94.00000000000001 21 -59.50000000000001 +140.33981100000003 31 0.0 0 @@ -1077,15 +1077,15 @@ LINE 8 0 10 -22.000000000000004 +101.00000000000001 20 -59.50000000000001 +147.33981100000003 30 0.0 11 -22.000000000000004 +94.00000000000001 21 -19.500000000000004 +147.33981100000003 31 0.0 0 @@ -1095,15 +1095,15 @@ LINE 8 0 10 -10.000000000000002 +101.00000000000001 20 -14.5 +171.339811 30 0.0 11 -10.000000000000002 +101.00000000000001 21 -19.500000000000004 +147.33981100000003 31 0.0 0 @@ -1113,33 +1113,35 @@ LINE 8 0 10 -22.000000000000004 +94.00000000000001 20 -14.5 +171.339811 30 0.0 11 -10.000000000000002 +101.00000000000001 21 -14.5 +171.339811 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -22.000000000000004 +94.00000000000001 20 -19.500000000000004 +171.339811 30 0.0 11 -22.000000000000004 +94.00000000000001 21 -14.5 +232.33981100000003 31 0.0 0 @@ -1149,33 +1151,35 @@ LINE 8 0 10 -22.000000000000004 +34.0 20 -19.500000000000004 +232.33981100000003 30 0.0 11 -22.000000000000004 +94.00000000000001 21 -59.50000000000001 +232.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 34.0 20 -59.50000000000001 +171.339811 30 0.0 11 34.0 21 -19.500000000000004 +232.33981100000003 31 0.0 0 @@ -1185,33 +1189,35 @@ LINE 8 0 10 -22.000000000000004 +118.00000000000001 20 -14.5 +171.339811 30 0.0 11 -22.000000000000004 +94.00000000000001 21 -19.500000000000004 +171.339811 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -34.0 +118.00000000000001 20 -14.5 +171.339811 30 0.0 11 -22.000000000000004 +118.00000000000001 21 -14.5 +232.33981100000003 31 0.0 0 @@ -1221,15 +1227,15 @@ LINE 8 0 10 -34.0 +94.00000000000001 20 -19.500000000000004 +232.33981100000003 30 0.0 11 -34.0 +118.00000000000001 21 -14.5 +232.33981100000003 31 0.0 0 @@ -1239,35 +1245,33 @@ LINE 8 0 10 -70.00000000000001 +178.00000000000003 20 -59.50000000000001 +171.339811 30 0.0 11 -34.0 +118.00000000000001 21 -59.50000000000001 +171.339811 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -70.00000000000001 +178.00000000000003 20 -59.50000000000001 +232.33981100000003 30 0.0 11 -70.00000000000001 +178.00000000000003 21 -120.50000000000001 +171.339811 31 0.0 0 @@ -1277,15 +1281,15 @@ LINE 8 0 10 -34.0 +118.00000000000001 20 -120.50000000000001 +232.33981100000003 30 0.0 11 -70.00000000000001 +178.00000000000003 21 -120.50000000000001 +232.33981100000003 31 0.0 0 @@ -1295,53 +1299,53 @@ LINE 8 0 10 -94.00000000000001 +34.0 20 -59.50000000000001 +171.339811 30 0.0 11 -70.00000000000001 +10.000000000000002 21 -59.50000000000001 +171.339811 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -94.00000000000001 +10.000000000000002 20 -59.50000000000001 +232.33981100000003 30 0.0 11 -94.00000000000001 +34.0 21 -120.50000000000001 +232.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -70.00000000000001 +10.000000000000002 20 -120.50000000000001 +232.33981100000003 30 0.0 11 -94.00000000000001 +10.000000000000002 21 -120.50000000000001 +171.339811 31 0.0 0 @@ -1351,15 +1355,15 @@ LINE 8 0 10 -130.0 +0.0 20 -59.50000000000001 +232.33981100000003 30 0.0 11 -94.00000000000001 +10.000000000000002 21 -59.50000000000001 +232.33981100000003 31 0.0 0 @@ -1369,15 +1373,15 @@ LINE 8 0 10 -130.0 +0.0 20 -120.50000000000001 +171.339811 30 0.0 11 -130.0 +0.0 21 -59.50000000000001 +232.33981100000003 31 0.0 0 @@ -1387,55 +1391,33 @@ LINE 8 0 10 -94.00000000000001 +10.000000000000002 20 -120.50000000000001 +171.339811 30 0.0 11 -130.0 - 21 -120.50000000000001 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -34.0 - 20 -120.50000000000001 - 30 0.0 - 11 -22.000000000000004 21 -120.50000000000001 +171.339811 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -22.000000000000004 +27.000000000000004 20 -120.50000000000001 +171.339811 30 0.0 11 -10.000000000000002 +34.0 21 -120.50000000000001 +171.339811 31 0.0 0 @@ -1445,15 +1427,15 @@ LINE 8 0 10 -10.000000000000002 +27.000000000000004 20 -120.50000000000001 +147.33981100000003 30 0.0 11 -10.000000000000002 +27.000000000000004 21 -120.50000000000001 +171.339811 31 0.0 0 @@ -1465,13 +1447,13 @@ LINE 10 34.0 20 -120.50000000000001 +147.33981100000003 30 0.0 11 -34.0 +27.000000000000004 21 -120.50000000000001 +147.33981100000003 31 0.0 0 @@ -1481,15 +1463,15 @@ LINE 8 0 10 -34.0 +83.0909090909091 20 -160.50000000000003 +142.08981100000003 30 0.0 11 -34.0 +86.59090909090911 21 -120.50000000000001 +142.08981100000003 31 0.0 0 @@ -1499,15 +1481,15 @@ LINE 8 0 10 -22.000000000000004 +86.59090909090911 20 -120.50000000000001 +142.08981100000003 30 0.0 11 -22.000000000000004 +83.0909090909091 21 -160.50000000000003 +145.58981100000003 31 0.0 0 @@ -1517,15 +1499,15 @@ LINE 8 0 10 -34.0 +83.0909090909091 20 -165.50000000000003 +145.58981100000003 30 0.0 11 -34.0 +72.1818181818182 21 -160.50000000000003 +145.58981100000003 31 0.0 0 @@ -1535,15 +1517,15 @@ LINE 8 0 10 -22.000000000000004 +72.1818181818182 20 -165.50000000000003 +145.58981100000003 30 0.0 11 -34.0 +68.6818181818182 21 -165.50000000000003 +142.08981100000003 31 0.0 0 @@ -1553,15 +1535,15 @@ LINE 8 0 10 -22.000000000000004 +68.6818181818182 20 -160.50000000000003 +142.08981100000003 30 0.0 11 -22.000000000000004 +72.1818181818182 21 -165.50000000000003 +142.08981100000003 31 0.0 0 @@ -1571,15 +1553,15 @@ LINE 8 0 10 -22.000000000000004 +55.818181818181834 20 -160.50000000000003 +142.08981100000003 30 0.0 11 -22.000000000000004 +59.31818181818183 21 -120.50000000000001 +142.08981100000003 31 0.0 0 @@ -1589,15 +1571,15 @@ LINE 8 0 10 -10.000000000000002 +59.31818181818183 20 -120.50000000000001 +142.08981100000003 30 0.0 11 -10.000000000000002 +55.818181818181834 21 -160.50000000000003 +145.58981100000003 31 0.0 0 @@ -1607,15 +1589,15 @@ LINE 8 0 10 -22.000000000000004 +55.818181818181834 20 -165.50000000000003 +145.58981100000003 30 0.0 11 -22.000000000000004 +44.90909090909092 21 -160.50000000000003 +145.58981100000003 31 0.0 0 @@ -1625,15 +1607,15 @@ LINE 8 0 10 -10.000000000000002 +44.90909090909092 20 -165.50000000000003 +145.58981100000003 30 0.0 11 -22.000000000000004 +41.40909090909093 21 -165.50000000000003 +142.08981100000003 31 0.0 0 @@ -1643,15 +1625,15 @@ LINE 8 0 10 -10.000000000000002 +41.40909090909093 20 -160.50000000000003 +142.08981100000003 30 0.0 11 -10.000000000000002 +44.90909090909092 21 -165.50000000000003 +142.08981100000003 31 0.0 0 @@ -1661,15 +1643,15 @@ LINE 8 0 10 -0.0 +99.25000000000001 20 -120.50000000000001 +163.33981100000003 30 0.0 11 -10.000000000000002 +95.75000000000001 21 -120.50000000000001 +163.33981100000003 31 0.0 0 @@ -1679,15 +1661,15 @@ LINE 8 0 10 -0.0 +95.75000000000001 20 -59.50000000000001 +163.33981100000003 30 0.0 11 -0.0 +95.75000000000001 21 -120.50000000000001 +155.339811 31 0.0 0 @@ -1697,15 +1679,15 @@ LINE 8 0 10 -10.000000000000002 +95.75000000000001 20 -59.50000000000001 +155.339811 30 0.0 11 -0.0 +99.25000000000001 21 -59.50000000000001 +155.339811 31 0.0 0 @@ -1715,15 +1697,15 @@ LINE 8 0 10 -11.400000000000002 +42.0 20 -69.5 +222.83981100000003 30 0.0 11 -12.6 +42.0 21 -69.5 +204.83981100000003 31 0.0 0 @@ -1733,15 +1715,15 @@ LINE 8 0 10 -12.6 +42.0 20 -69.5 +204.83981100000003 30 0.0 11 -12.6 +72.00000000000001 21 -110.50000000000001 +204.83981100000003 31 0.0 0 @@ -1751,15 +1733,15 @@ LINE 8 0 10 -12.6 +72.00000000000001 20 -110.50000000000001 +204.83981100000003 30 0.0 11 -11.400000000000002 +72.00000000000001 21 -110.50000000000001 +222.83981100000003 31 0.0 0 @@ -1769,15 +1751,15 @@ LINE 8 0 10 -11.400000000000002 +72.00000000000001 20 -110.50000000000001 +222.83981100000003 30 0.0 11 -11.400000000000002 +42.0 21 -69.5 +222.83981100000003 31 0.0 0 @@ -1787,15 +1769,15 @@ LINE 8 0 10 -31.400000000000002 +115.40000000000002 20 -70.00000000000001 +181.33981100000003 30 0.0 11 -32.60000000000001 +116.60000000000001 21 -70.00000000000001 +181.33981100000003 31 0.0 0 @@ -1805,15 +1787,15 @@ LINE 8 0 10 -32.60000000000001 +116.60000000000001 20 -70.00000000000001 +181.33981100000003 30 0.0 11 -32.60000000000001 +116.60000000000001 21 -100.0 +222.33981100000003 31 0.0 0 @@ -1823,15 +1805,15 @@ LINE 8 0 10 -32.60000000000001 +116.60000000000001 20 -100.0 +222.33981100000003 30 0.0 11 -31.400000000000002 +115.40000000000002 21 -100.0 +222.33981100000003 31 0.0 0 @@ -1841,15 +1823,15 @@ LINE 8 0 10 -31.400000000000002 +115.40000000000002 20 -100.0 +222.33981100000003 30 0.0 11 -31.400000000000002 +115.40000000000002 21 -70.00000000000001 +181.33981100000003 31 0.0 0 @@ -1859,15 +1841,15 @@ LINE 8 0 10 -18.000000000000004 +95.4 20 -15.750000000000002 +181.83981100000003 30 0.0 11 -18.000000000000004 +96.60000000000001 21 -18.25 +181.83981100000003 31 0.0 0 @@ -1877,15 +1859,15 @@ LINE 8 0 10 -18.000000000000004 +96.60000000000001 20 -18.25 +181.83981100000003 30 0.0 11 -14.000000000000002 +96.60000000000001 21 -18.25 +211.83981100000003 31 0.0 0 @@ -1895,15 +1877,15 @@ LINE 8 0 10 -14.000000000000002 +96.60000000000001 20 -18.25 +211.83981100000003 30 0.0 11 -14.000000000000002 +95.4 21 -15.750000000000002 +211.83981100000003 31 0.0 0 @@ -1913,15 +1895,15 @@ LINE 8 0 10 -30.000000000000004 +95.4 20 -15.750000000000002 +211.83981100000003 30 0.0 11 -30.000000000000004 +95.4 21 -18.25 +181.83981100000003 31 0.0 0 @@ -1931,15 +1913,15 @@ LINE 8 0 10 -30.000000000000004 +110.25000000000001 20 -18.25 +179.08981100000003 30 0.0 11 -26.000000000000004 +101.75000000000001 21 -18.25 +179.08981100000003 31 0.0 0 @@ -1949,15 +1931,15 @@ LINE 8 0 10 -26.000000000000004 +101.75000000000001 20 -18.25 +179.08981100000003 30 0.0 11 -26.000000000000004 +101.75000000000001 21 -15.750000000000002 +178.58981100000003 31 0.0 0 @@ -1967,15 +1949,15 @@ LINE 8 0 10 -30.000000000000004 +101.75000000000001 20 -111.00000000000001 +178.58981100000003 30 0.0 11 -30.000000000000004 +110.25000000000001 21 -93.00000000000001 +178.58981100000003 31 0.0 0 @@ -1985,15 +1967,15 @@ LINE 8 0 10 -30.000000000000004 +110.25000000000001 20 -93.00000000000001 +178.58981100000003 30 0.0 11 -60.00000000000001 +110.25000000000001 21 -93.00000000000001 +179.08981100000003 31 0.0 0 @@ -2003,15 +1985,15 @@ LINE 8 0 10 -60.00000000000001 +101.75000000000001 20 -93.00000000000001 +226.83981100000003 30 0.0 11 -60.00000000000001 +110.25000000000001 21 -111.00000000000001 +226.83981100000003 31 0.0 0 @@ -2021,15 +2003,15 @@ LINE 8 0 10 -60.00000000000001 +110.25000000000001 20 -111.00000000000001 +226.83981100000003 30 0.0 11 -30.000000000000004 +110.25000000000001 21 -111.00000000000001 +227.33981100000003 31 0.0 0 @@ -2039,15 +2021,15 @@ LINE 8 0 10 -91.40000000000002 +110.25000000000001 20 -69.5 +227.33981100000003 30 0.0 11 -92.60000000000001 +101.75000000000001 21 -69.5 +227.33981100000003 31 0.0 0 @@ -2057,15 +2039,15 @@ LINE 8 0 10 -92.60000000000001 +101.75000000000001 20 -69.5 +227.33981100000003 30 0.0 11 -92.60000000000001 +101.75000000000001 21 -110.50000000000001 +226.83981100000003 31 0.0 0 @@ -2075,15 +2057,15 @@ LINE 8 0 10 -92.60000000000001 +133.00000000000003 20 -110.50000000000001 +185.33981100000003 30 0.0 11 -91.40000000000002 +133.00000000000003 21 -110.50000000000001 +178.33981100000003 31 0.0 0 @@ -2093,15 +2075,15 @@ LINE 8 0 10 -91.40000000000002 +133.00000000000003 20 -110.50000000000001 +178.33981100000003 30 0.0 11 -91.40000000000002 +153.00000000000003 21 -69.5 +178.33981100000003 31 0.0 0 @@ -2111,15 +2093,15 @@ LINE 8 0 10 -71.4 +153.00000000000003 20 -70.00000000000001 +178.33981100000003 30 0.0 11 -72.60000000000001 +153.00000000000003 21 -70.00000000000001 +185.33981100000003 31 0.0 0 @@ -2129,15 +2111,15 @@ LINE 8 0 10 -72.60000000000001 +153.00000000000003 20 -70.00000000000001 +185.33981100000003 30 0.0 11 -72.60000000000001 +133.00000000000003 21 -100.0 +185.33981100000003 31 0.0 0 @@ -2147,15 +2129,15 @@ LINE 8 0 10 -72.60000000000001 +140.06818181818184 20 -100.0 +176.83981100000003 30 0.0 11 -71.4 +128.65909090909093 21 -100.0 +176.83981100000003 31 0.0 0 @@ -2165,15 +2147,15 @@ LINE 8 0 10 -71.4 +128.65909090909093 20 -100.0 +176.83981100000003 30 0.0 11 -71.4 +128.65909090909093 21 -70.00000000000001 +176.33981100000003 31 0.0 0 @@ -2183,15 +2165,15 @@ LINE 8 0 10 -97.00000000000001 +128.65909090909093 20 -73.50000000000001 +176.33981100000003 30 0.0 11 -97.00000000000001 +140.06818181818184 21 -66.50000000000001 +176.33981100000003 31 0.0 0 @@ -2201,15 +2183,15 @@ LINE 8 0 10 -97.00000000000001 +140.06818181818184 20 -66.50000000000001 +176.33981100000003 30 0.0 11 -117.00000000000001 +140.06818181818184 21 -66.50000000000001 +176.83981100000003 31 0.0 0 @@ -2219,15 +2201,15 @@ LINE 8 0 10 -117.00000000000001 +167.3409090909091 20 -66.50000000000001 +176.83981100000003 30 0.0 11 -117.00000000000001 +155.93181818181822 21 -73.50000000000001 +176.83981100000003 31 0.0 0 @@ -2237,15 +2219,15 @@ LINE 8 0 10 -117.00000000000001 +155.93181818181822 20 -73.50000000000001 +176.83981100000003 30 0.0 11 -97.00000000000001 +155.93181818181822 21 -73.50000000000001 +176.33981100000003 31 0.0 0 @@ -2255,15 +2237,15 @@ LINE 8 0 10 -122.25000000000001 +155.93181818181822 20 -81.9318181818182 +176.33981100000003 30 0.0 11 -122.25000000000001 +167.3409090909091 21 -70.3409090909091 +176.33981100000003 31 0.0 0 @@ -2273,15 +2255,15 @@ LINE 8 0 10 -122.25000000000001 +167.3409090909091 20 -70.3409090909091 +176.33981100000003 30 0.0 11 -122.75000000000001 +167.3409090909091 21 -70.3409090909091 +176.83981100000003 31 0.0 0 @@ -2291,15 +2273,15 @@ LINE 8 0 10 -122.75000000000001 +170.25000000000003 20 -70.3409090909091 +193.77162918181818 30 0.0 11 -122.75000000000001 +170.25000000000003 21 -81.9318181818182 +182.18072009090912 31 0.0 0 @@ -2309,15 +2291,15 @@ LINE 8 0 10 -122.75000000000001 +170.25000000000003 20 -81.9318181818182 +182.18072009090912 30 0.0 11 -122.25000000000001 +170.75 21 -81.9318181818182 +182.18072009090912 31 0.0 0 @@ -2327,15 +2309,15 @@ LINE 8 0 10 -122.25000000000001 +170.75 20 -109.65909090909092 +182.18072009090912 30 0.0 11 -122.25000000000001 +170.75 21 -98.06818181818183 +193.77162918181818 31 0.0 0 @@ -2345,15 +2327,15 @@ LINE 8 0 10 -122.25000000000001 +170.75 20 -98.06818181818183 +193.77162918181818 30 0.0 11 -122.75000000000001 +170.25000000000003 21 -98.06818181818183 +193.77162918181818 31 0.0 0 @@ -2363,15 +2345,15 @@ LINE 8 0 10 -122.75000000000001 +170.25000000000003 20 -98.06818181818183 +221.49890190909093 30 0.0 11 -122.75000000000001 +170.25000000000003 21 -109.65909090909092 +209.9079928181818 31 0.0 0 @@ -2381,15 +2363,15 @@ LINE 8 0 10 -122.75000000000001 +170.25000000000003 20 -109.65909090909092 +209.9079928181818 30 0.0 11 -122.25000000000001 +170.75 21 -109.65909090909092 +209.9079928181818 31 0.0 0 @@ -2399,15 +2381,15 @@ LINE 8 0 10 -26.000000000000004 +170.75 20 -164.25000000000003 +209.9079928181818 30 0.0 11 -26.000000000000004 +170.75 21 -161.75 +221.49890190909093 31 0.0 0 @@ -2417,15 +2399,15 @@ LINE 8 0 10 -26.000000000000004 +170.75 20 -161.75 +221.49890190909093 30 0.0 11 -30.000000000000004 +170.25000000000003 21 -161.75 +221.49890190909093 31 0.0 0 @@ -2435,15 +2417,15 @@ LINE 8 0 10 -30.000000000000004 +11.4 20 -161.75 +181.33981100000003 30 0.0 11 -30.000000000000004 +12.600000000000001 21 -164.25000000000003 +181.33981100000003 31 0.0 0 @@ -2453,15 +2435,15 @@ LINE 8 0 10 -14.000000000000002 +12.600000000000001 20 -164.25000000000003 +181.33981100000003 30 0.0 11 -14.000000000000002 +12.600000000000001 21 -161.75 +222.33981100000003 31 0.0 0 @@ -2471,15 +2453,15 @@ LINE 8 0 10 -14.000000000000002 +12.600000000000001 20 -161.75 +222.33981100000003 30 0.0 11 -18.000000000000004 +11.4 21 -161.75 +222.33981100000003 31 0.0 0 @@ -2489,15 +2471,15 @@ LINE 8 0 10 -18.000000000000004 +11.4 20 -161.75 +222.33981100000003 30 0.0 11 -18.000000000000004 +11.4 21 -164.25000000000003 +181.33981100000003 31 0.0 0 @@ -2507,15 +2489,15 @@ LINE 8 0 10 -2.5000000000000004 +31.400000000000002 20 -70.5909090909091 +181.83981100000003 30 0.0 11 -7.500000000000001 +32.60000000000001 21 -70.5909090909091 +181.83981100000003 31 0.0 0 @@ -2525,15 +2507,15 @@ LINE 8 0 10 -7.500000000000001 +32.60000000000001 20 -70.5909090909091 +181.83981100000003 30 0.0 11 -7.500000000000001 +32.60000000000001 21 -81.68181818181819 +211.83981100000003 31 0.0 0 @@ -2543,15 +2525,15 @@ LINE 8 0 10 -7.500000000000001 +32.60000000000001 20 -81.68181818181819 +211.83981100000003 30 0.0 11 -2.5000000000000004 +31.400000000000002 21 -81.68181818181819 +211.83981100000003 31 0.0 0 @@ -2561,15 +2543,15 @@ LINE 8 0 10 -2.5000000000000004 +31.400000000000002 20 -98.31818181818184 +211.83981100000003 30 0.0 11 -7.500000000000001 +31.400000000000002 21 -98.31818181818184 +181.83981100000003 31 0.0 0 @@ -2579,15 +2561,15 @@ LINE 8 0 10 -7.500000000000001 +26.250000000000004 20 -98.31818181818184 +179.08981100000003 30 0.0 11 -7.500000000000001 +17.750000000000004 21 -109.40909090909092 +179.08981100000003 31 0.0 0 @@ -2597,15 +2579,15 @@ LINE 8 0 10 -7.500000000000001 +17.750000000000004 20 -109.40909090909092 +179.08981100000003 30 0.0 11 -2.5000000000000004 +17.750000000000004 21 -109.40909090909092 +178.58981100000003 31 0.0 0 @@ -2615,15 +2597,15 @@ LINE 8 0 10 -186.00000000000003 +17.750000000000004 20 -90.0 +178.58981100000003 30 0.0 11 -140.00000000000003 +26.250000000000004 21 -90.0 +178.58981100000003 31 0.0 0 @@ -2633,15 +2615,15 @@ LINE 8 0 10 -198.0 +26.250000000000004 20 -90.0 +178.58981100000003 30 0.0 11 -186.00000000000003 +26.250000000000004 21 -90.0 +179.08981100000003 31 0.0 0 @@ -2651,15 +2633,15 @@ LINE 8 0 10 -210.00000000000003 +17.750000000000004 20 -90.0 +226.83981100000003 30 0.0 11 -198.0 +26.250000000000004 21 -90.0 +226.83981100000003 31 0.0 0 @@ -2669,15 +2651,15 @@ LINE 8 0 10 -222.00000000000003 +26.250000000000004 20 -90.0 +226.83981100000003 30 0.0 11 -210.00000000000003 +26.250000000000004 21 -90.0 +227.33981100000003 31 0.0 0 @@ -2687,15 +2669,15 @@ LINE 8 0 10 -234.00000000000003 +26.250000000000004 20 -90.0 +227.33981100000003 30 0.0 11 -222.00000000000003 +17.750000000000004 21 -90.0 +227.33981100000003 31 0.0 0 @@ -2705,15 +2687,15 @@ LINE 8 0 10 -246.00000000000003 +17.750000000000004 20 -90.0 +227.33981100000003 30 0.0 11 -234.00000000000003 +17.750000000000004 21 -90.0 +226.83981100000003 31 0.0 0 @@ -2723,15 +2705,15 @@ LINE 8 0 10 -258.0 +2.5000000000000004 20 -90.0 +182.43072009090912 30 0.0 11 -246.00000000000003 +7.500000000000001 21 -90.0 +182.43072009090912 31 0.0 0 @@ -2741,15 +2723,15 @@ LINE 8 0 10 -270.00000000000006 +7.500000000000001 20 -90.0 +182.43072009090912 30 0.0 11 -258.0 +7.500000000000001 21 -90.0 +193.52162918181818 31 0.0 0 @@ -2759,15 +2741,15 @@ LINE 8 0 10 -270.00000000000006 +7.500000000000001 20 -90.0 +193.52162918181818 30 0.0 11 -270.00000000000006 +2.5000000000000004 21 -90.0 +193.52162918181818 31 0.0 0 @@ -2777,15 +2759,15 @@ LINE 8 0 10 -140.00000000000003 +2.5000000000000004 20 -90.0 +210.1579928181818 30 0.0 11 -270.00000000000006 +7.500000000000001 21 -90.0 +210.1579928181818 31 0.0 0 @@ -2795,15 +2777,15 @@ LINE 8 0 10 -140.00000000000003 +7.500000000000001 20 -90.0 +210.1579928181818 30 0.0 11 -140.00000000000003 +7.500000000000001 21 -90.0 +221.24890190909093 31 0.0 0 @@ -2813,15 +2795,15 @@ LINE 8 0 10 -206.25000000000003 +7.500000000000001 20 -94.00000000000001 +221.24890190909093 30 0.0 11 -201.75000000000003 +2.5000000000000004 21 -94.00000000000001 +221.24890190909093 31 0.0 0 @@ -2831,15 +2813,15 @@ LINE 8 0 10 -201.75000000000003 +28.750000000000004 20 -94.00000000000001 +155.339811 30 0.0 11 -201.75000000000003 +32.25 21 -93.50000000000001 +155.339811 31 0.0 0 @@ -2849,15 +2831,15 @@ LINE 8 0 10 -201.75000000000003 +32.25 20 -93.50000000000001 +155.339811 30 0.0 11 -206.25000000000003 +32.25 21 -93.50000000000001 +163.33981100000003 31 0.0 0 @@ -2867,33 +2849,35 @@ LINE 8 0 10 -206.25000000000003 +32.25 20 -93.50000000000001 +163.33981100000003 30 0.0 11 -206.25000000000003 +28.750000000000004 21 -94.00000000000001 +163.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -218.25000000000003 +198.0 20 -94.00000000000001 +141.13953627679874 30 0.0 11 -213.75 +258.0 21 -94.00000000000001 +141.13953627679874 31 0.0 0 @@ -2903,15 +2887,15 @@ LINE 8 0 10 -213.75 +258.0 20 -94.00000000000001 +177.54008572320132 30 0.0 11 -213.75 +258.0 21 -93.50000000000001 +141.13953627679874 31 0.0 0 @@ -2921,15 +2905,15 @@ LINE 8 0 10 -213.75 +198.0 20 -93.50000000000001 +177.54008572320132 30 0.0 11 -218.25000000000003 +258.0 21 -93.50000000000001 +177.54008572320132 31 0.0 0 @@ -2939,69 +2923,75 @@ LINE 8 0 10 -218.25000000000003 +198.0 20 -93.50000000000001 +141.13953627679874 30 0.0 11 -218.25000000000003 +198.0 21 -94.00000000000001 +177.54008572320132 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -326.00000000000006 +258.0 20 -90.0 +117.13953627679872 30 0.0 11 -280.00000000000006 +198.0 21 -90.0 +117.13953627679872 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -338.00000000000006 +258.0 20 -90.0 +117.13953627679872 30 0.0 11 -326.00000000000006 +258.0 21 -90.0 +141.13953627679874 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -350.0 +198.0 20 -90.0 +141.13953627679874 30 0.0 11 -338.00000000000006 +198.0 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3011,15 +3001,15 @@ LINE 8 0 10 -362.00000000000006 +198.0 20 -90.0 +80.73898683039612 30 0.0 11 -350.0 +198.0 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3029,15 +3019,15 @@ LINE 8 0 10 -374.00000000000006 +258.0 20 -90.0 +80.73898683039612 30 0.0 11 -362.00000000000006 +198.0 21 -90.0 +80.73898683039612 31 0.0 0 @@ -3047,15 +3037,15 @@ LINE 8 0 10 -386.00000000000006 +258.0 20 -90.0 +117.13953627679872 30 0.0 11 -374.00000000000006 +258.0 21 -90.0 +80.73898683039612 31 0.0 0 @@ -3065,15 +3055,15 @@ LINE 8 0 10 -398.00000000000006 +268.00000000000006 20 -90.0 +117.13953627679872 30 0.0 11 -386.00000000000006 +258.0 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3083,15 +3073,15 @@ LINE 8 0 10 -410.00000000000006 +268.00000000000006 20 -90.0 +141.13953627679874 30 0.0 11 -398.00000000000006 +268.00000000000006 21 -90.0 +117.13953627679872 31 0.0 0 @@ -3101,15 +3091,15 @@ LINE 8 0 10 -410.00000000000006 +258.0 20 -90.0 +141.13953627679874 30 0.0 11 -410.00000000000006 +268.00000000000006 21 -90.0 +141.13953627679874 31 0.0 0 @@ -3119,15 +3109,15 @@ LINE 8 0 10 -280.00000000000006 +188.00000000000003 20 -90.0 +141.13953627679874 30 0.0 11 -410.00000000000006 +198.0 21 -90.0 +141.13953627679874 31 0.0 0 @@ -3137,15 +3127,15 @@ LINE 8 0 10 -280.00000000000006 +188.00000000000003 20 -90.0 +117.13953627679872 30 0.0 11 -280.00000000000006 +188.00000000000003 21 -90.0 +141.13953627679874 31 0.0 0 @@ -3155,15 +3145,15 @@ LINE 8 0 10 -334.25000000000006 +198.0 20 -94.00000000000001 +117.13953627679872 30 0.0 11 -329.75000000000006 +188.00000000000003 21 -94.00000000000001 +117.13953627679872 31 0.0 0 @@ -3173,15 +3163,15 @@ LINE 8 0 10 -329.75000000000006 +215.50000000000003 20 -94.00000000000001 +122.63953627679872 30 0.0 11 -329.75000000000006 +226.50000000000003 21 -93.50000000000001 +122.63953627679872 31 0.0 0 @@ -3191,15 +3181,15 @@ LINE 8 0 10 -329.75000000000006 +226.50000000000003 20 -93.50000000000001 +122.63953627679872 30 0.0 11 -334.25000000000006 +226.50000000000003 21 -93.50000000000001 +135.6395362767987 31 0.0 0 @@ -3209,15 +3199,15 @@ LINE 8 0 10 -334.25000000000006 +226.50000000000003 20 -93.50000000000001 +135.6395362767987 30 0.0 11 -334.25000000000006 +215.50000000000003 21 -94.00000000000001 +135.6395362767987 31 0.0 0 @@ -3227,15 +3217,15 @@ LINE 8 0 10 -346.25 +215.50000000000003 20 -94.00000000000001 +135.6395362767987 30 0.0 11 -341.75 +215.50000000000003 21 -94.00000000000001 +122.63953627679872 31 0.0 0 @@ -3245,15 +3235,15 @@ LINE 8 0 10 -341.75 +247.00000000000003 20 -94.00000000000001 +124.13953627679872 30 0.0 11 -341.75 +253.00000000000003 21 -93.50000000000001 +124.13953627679872 31 0.0 0 @@ -3263,15 +3253,15 @@ LINE 8 0 10 -341.75 +253.00000000000003 20 -93.50000000000001 +124.13953627679872 30 0.0 11 -346.25 +253.00000000000003 21 -93.50000000000001 +134.13953627679874 31 0.0 0 @@ -3281,15 +3271,15 @@ LINE 8 0 10 -346.25 +253.00000000000003 20 -93.50000000000001 +134.13953627679874 30 0.0 11 -346.25 +247.00000000000003 21 -94.00000000000001 +134.13953627679874 31 0.0 0 @@ -3299,35 +3289,33 @@ LINE 8 0 10 -612.710678118655 +247.00000000000003 20 -55.00000000000001 +134.13953627679874 30 0.0 11 -604.710678118655 +247.00000000000003 21 -55.00000000000001 +124.13953627679872 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -612.710678118655 +265.50000000000006 20 -55.00000000000001 +133.13953627679874 30 0.0 11 -612.710678118655 +260.50000000000006 21 -125.00000000000001 +133.13953627679874 31 0.0 0 @@ -3337,55 +3325,51 @@ LINE 8 0 10 -604.710678118655 +260.50000000000006 20 -125.00000000000001 +133.13953627679874 30 0.0 11 -612.710678118655 +260.50000000000006 21 -125.00000000000001 +125.13953627679872 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -604.710678118655 +260.50000000000006 20 -125.00000000000001 +125.13953627679872 30 0.0 11 -604.710678118655 +265.50000000000006 21 -55.00000000000001 +125.13953627679872 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -620.710678118655 +190.50000000000003 20 -55.00000000000001 +125.13953627679872 30 0.0 11 -620.710678118655 +195.5 21 -125.00000000000001 +125.13953627679872 31 0.0 0 @@ -3395,15 +3379,15 @@ LINE 8 0 10 -620.710678118655 +195.5 20 -55.00000000000001 +125.13953627679872 30 0.0 11 -620.710678118655 +195.5 21 -5.000000000000001 +133.13953627679874 31 0.0 0 @@ -3413,87 +3397,95 @@ LINE 8 0 10 -612.710678118655 +195.5 20 -5.000000000000001 +133.13953627679874 30 0.0 11 -612.710678118655 +190.50000000000003 21 -55.00000000000001 +133.13953627679874 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -612.710678118655 +454.6666666666669 20 -0.0 +94.33981100000001 30 0.0 11 -612.710678118655 +454.6666666666669 21 -5.000000000000001 +224.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -620.710678118655 +384.6666666666669 20 -0.0 +94.33981100000001 30 0.0 11 -612.710678118655 +384.6666666666669 21 -0.0 +224.33981100000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -620.710678118655 +419.6666666666669 20 -5.000000000000001 +94.33981100000001 30 0.0 11 -620.710678118655 +384.6666666666669 21 -0.0 +94.33981100000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -628.710678118655 +454.6666666666669 20 -55.00000000000001 +94.33981100000001 30 0.0 11 -620.710678118655 +419.6666666666669 21 -55.00000000000001 +94.33981100000001 31 0.0 0 @@ -3505,15 +3497,15 @@ DOTTED 8 0 10 -628.710678118655 +419.6666666666669 20 -55.00000000000001 +-3.2056604482022527e-07 30 0.0 11 -628.710678118655 +384.6666666666669 21 -125.00000000000001 +94.33981100000001 31 0.0 0 @@ -3523,15 +3515,15 @@ LINE 8 0 10 -620.710678118655 +417.9257952661878 20 -125.00000000000001 +0.5317572923818831 30 0.0 11 -628.710678118655 +361.29623096642734 21 -125.00000000000001 +17.829532375615347 31 0.0 0 @@ -3541,51 +3533,55 @@ LINE 8 0 10 -636.710678118655 +419.6666666666669 20 -55.00000000000001 +-3.2056604482022527e-07 30 0.0 11 -628.710678118655 +417.9257952661878 21 -55.00000000000001 +0.5317572923818831 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -636.710678118655 +384.6666666666669 20 -125.00000000000001 +94.339811 30 0.0 11 -636.710678118655 +361.29623096642734 21 -55.00000000000001 +17.829532375615347 31 0.0 0 LINE + 6 +DOTTED 62 -5 +3 8 0 10 -628.710678118655 +384.6666666666669 20 -125.00000000000001 +94.33981100000001 30 0.0 11 -636.710678118655 +304.66666666666697 21 -125.00000000000001 +35.127307458848826 31 0.0 0 @@ -3595,33 +3591,35 @@ LINE 8 0 10 -612.710678118655 +361.29623096642734 20 -125.00000000000001 +17.829532375615347 30 0.0 11 -612.710678118655 +304.66666666666697 21 -175.0 +35.127307458848826 31 0.0 0 LINE + 6 +DOTTED 62 -5 +3 8 0 10 -620.710678118655 +304.66666666666686 20 -175.0 +94.33981099999995 30 0.0 11 -620.710678118655 +304.66666666666697 21 -125.00000000000001 +35.12730745884883 31 0.0 0 @@ -3629,19 +3627,19 @@ LINE 6 DOTTED 62 -3 +1 8 0 10 -620.710678118655 +384.6666666666669 20 -175.0 +94.33981100000001 30 0.0 11 -612.710678118655 +304.66666666666686 21 -175.0 +94.33981099999995 31 0.0 0 @@ -3651,15 +3649,15 @@ LINE 8 0 10 -612.710678118655 +284.92916548628324 20 -175.0 +94.33981099999994 30 0.0 11 -490.7106781186549 +304.66666666666686 21 -175.0 +94.33981099999995 31 0.0 0 @@ -3669,15 +3667,15 @@ LINE 8 0 10 -620.710678118655 +284.92916548628324 20 -175.0 +35.127307458848826 30 0.0 11 -620.710678118655 +284.92916548628324 21 -175.0 +94.33981099999994 31 0.0 0 @@ -3687,35 +3685,33 @@ LINE 8 0 10 -490.7106781186549 +304.66666666666697 20 -175.0 +35.12730745884883 30 0.0 11 -490.7106781186549 +284.92916548628324 21 -175.0 +35.127307458848826 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -490.7106781186549 +304.66666666666686 20 -225.00000000000003 +94.33981099999995 30 0.0 11 -620.710678118655 +304.66666666666674 21 -225.00000000000003 +224.33981099999997 31 0.0 0 @@ -3727,15 +3723,15 @@ DOTTED 8 0 10 -490.7106781186549 +304.66666666666674 20 -175.0 +224.33981099999997 30 0.0 11 -490.7106781186549 +384.6666666666668 21 -225.00000000000003 +224.33981100000003 31 0.0 0 @@ -3747,15 +3743,15 @@ DOTTED 8 0 10 -458.4510113187008 +304.6666666666667 20 -175.0 +304.339811 30 0.0 11 -490.7106781186549 +384.6666666666668 21 -225.00000000000003 +224.33981100000003 31 0.0 0 @@ -3767,15 +3763,15 @@ DOTTED 8 0 10 -458.4510113187008 +304.6666666666667 20 -175.0 +304.339811 30 0.0 11 -490.7106781186549 +304.66666666666674 21 -175.0 +224.33981099999997 31 0.0 0 @@ -3785,35 +3781,15 @@ LINE 8 0 10 -458.45101131870075 - 20 -175.0 - 30 -0.0 - 11 -445.1550063219791 - 21 -204.3922158601766 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -445.1550063219791 +304.6666666666667 20 -204.3922158601766 +304.339811 30 0.0 11 -490.7106781186549 +384.6666666666667 21 -225.00000000000003 +304.33981100000005 31 0.0 0 @@ -3825,15 +3801,15 @@ DOTTED 8 0 10 -420.00000000000017 +384.6666666666667 20 -260.0 +304.33981100000005 30 0.0 11 -490.7106781186549 +384.6666666666668 21 -225.00000000000003 +224.33981100000003 31 0.0 0 @@ -3843,15 +3819,15 @@ LINE 8 0 10 -431.85900132525745 +464.6666666666667 20 -233.78443172035318 +304.33981100000005 30 0.0 11 -420.00000000000017 +419.6666666666667 21 -260.0 +304.33981100000005 31 0.0 0 @@ -3861,95 +3837,15 @@ LINE 8 0 10 -445.15500632197916 - 20 -204.3922158601766 - 30 -0.0 - 11 -431.85900132525745 - 21 -233.78443172035318 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -490.7106781186549 - 20 -225.00000000000003 - 30 -0.0 - 11 -490.7106781186549 - 21 -260.0 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -490.7106781186549 - 20 -260.0 - 30 -0.0 - 11 -490.7106781186549 - 21 -295.0 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -420.00000000000017 - 20 -260.0 - 30 -0.0 - 11 -490.7106781186549 - 21 -295.0 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -490.7106781186549 +384.6666666666667 20 -295.0 +304.33981100000005 30 0.0 11 -620.710678118655 +464.6666666666667 21 -295.0 +304.33981100000005 31 0.0 0 @@ -3961,15 +3857,15 @@ DOTTED 8 0 10 -620.710678118655 +384.6666666666668 20 -260.0 +224.33981100000003 30 0.0 11 -620.710678118655 +419.6666666666668 21 -225.00000000000003 +224.33981100000005 31 0.0 0 @@ -3981,15 +3877,15 @@ DOTTED 8 0 10 -620.710678118655 +419.6666666666668 20 -295.0 +224.33981100000005 30 0.0 11 -620.710678118655 +454.66666666666674 21 -260.0 +224.33981100000008 31 0.0 0 @@ -3999,15 +3895,15 @@ LINE 8 0 10 -670.7106781186549 +374.66666666666674 20 -275.00000000000006 +304.339811 30 0.0 11 -670.7106781186549 +454.6666666666667 21 -225.00000000000003 +304.33981100000005 31 0.0 0 @@ -4017,15 +3913,15 @@ LINE 8 0 10 -670.7106781186549 +419.6666666666667 20 -260.0 +304.33981100000005 30 0.0 11 -670.7106781186549 +374.66666666666674 21 -275.00000000000006 +304.339811 31 0.0 0 @@ -4037,15 +3933,15 @@ DOTTED 8 0 10 -620.710678118655 +454.66666666666674 20 -225.00000000000003 +224.3398110000001 30 0.0 11 -670.7106781186549 +454.6666666666667 21 -225.00000000000003 +304.33981100000005 31 0.0 0 @@ -4057,15 +3953,15 @@ DOTTED 8 0 10 -620.710678118655 +454.66666666666674 20 -225.00000000000003 +224.3398110000001 30 0.0 11 -670.7106781186549 +534.6666666666665 21 -175.00000000000003 +304.33981100000017 31 0.0 0 @@ -4075,15 +3971,15 @@ LINE 8 0 10 -670.7106781186549 +454.6666666666667 20 -225.00000000000003 +304.33981100000005 30 0.0 11 -670.7106781186549 +534.6666666666665 21 -175.00000000000003 +304.33981100000017 31 0.0 0 @@ -4095,15 +3991,15 @@ DOTTED 8 0 10 -620.710678118655 +534.6666666666667 20 -175.0 +224.3398110000002 30 0.0 11 -670.7106781186549 +534.6666666666665 21 -175.0 +304.33981100000017 31 0.0 0 @@ -4115,33 +4011,15 @@ DOTTED 8 0 10 -620.710678118655 - 20 -225.00000000000003 - 30 -0.0 - 11 -620.710678118655 - 21 -175.0 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -620.710678118655 +454.66666666666674 20 -158.33333333333337 +224.3398110000001 30 0.0 11 -620.710678118655 +534.6666666666667 21 -175.0 +224.3398110000002 31 0.0 0 @@ -4151,53 +4029,15 @@ LINE 8 0 10 -670.7106781186549 - 20 -158.33333333333337 - 30 -0.0 - 11 -620.710678118655 - 21 -158.33333333333337 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -670.7106781186549 - 20 -175.0 - 30 -0.0 - 11 -670.7106781186549 - 21 -158.33333333333337 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -670.7106781186549 +561.3333333333334 20 -295.0 +224.3398110000002 30 0.0 11 -620.710678118655 +534.6666666666667 21 -295.0 +224.3398110000002 31 0.0 0 @@ -4207,15 +4047,15 @@ LINE 8 0 10 -670.7106781186549 +561.3333333333334 20 -245.00000000000003 +304.33981100000017 30 0.0 11 -670.7106781186549 +561.3333333333334 21 -260.0 +224.3398110000002 31 0.0 0 @@ -4225,15 +4065,15 @@ LINE 8 0 10 -670.7106781186549 +534.6666666666665 20 -295.0 +304.3398110000001 30 0.0 11 -670.7106781186549 +561.3333333333334 21 -245.00000000000003 +304.33981100000017 31 0.0 0 @@ -4243,75 +4083,15 @@ LINE 8 0 10 -670.7106781186549 - 20 -345.00000000000006 - 30 -0.0 - 11 -670.7106781186549 - 21 -295.0 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -3 - 8 -0 - 10 -670.7106781186549 - 20 -345.00000000000006 - 30 -0.0 - 11 -620.710678118655 - 21 -295.0 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -620.710678118655 - 20 -345.00000000000006 - 30 -0.0 - 11 -620.710678118655 - 21 -295.0 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -3 - 8 -0 - 10 -670.7106781186549 +534.6666666666667 20 -345.00000000000006 +224.3398110000002 30 0.0 11 -620.710678118655 +534.666666666667 21 -345.00000000000006 +94.33981100000021 31 0.0 0 @@ -4323,15 +4103,15 @@ DOTTED 8 0 10 -490.71067811865487 +534.666666666667 20 -295.0 +94.33981100000022 30 0.0 11 -490.71067811865487 +454.6666666666669 21 -345.00000000000006 +94.33981100000011 31 0.0 0 @@ -4343,15 +4123,15 @@ DOTTED 8 0 10 -490.71067811865487 +534.6666666666671 20 -345.00000000000006 +35.12730745884912 30 0.0 11 -458.45101131870075 +454.66666666666697 21 -345.00000000000006 +94.33981100000011 31 0.0 0 @@ -4363,51 +4143,15 @@ DOTTED 8 0 10 -490.71067811865487 - 20 -295.0 - 30 -0.0 - 11 -458.45101131870075 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -490.71067811865487 - 20 -355.75322226665145 - 30 -0.0 - 11 -490.71067811865487 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -458.45101131870075 +534.6666666666671 20 -355.75322226665145 +35.12730745884912 30 0.0 11 -490.71067811865487 +534.666666666667 21 -355.75322226665145 +94.33981100000022 31 0.0 0 @@ -4417,15 +4161,15 @@ LINE 8 0 10 -458.45101131870075 +534.6666666666671 20 -345.00000000000006 +35.12730745884912 30 0.0 11 -458.45101131870075 +478.0371023669066 21 -355.75322226665145 +17.829532375615546 31 0.0 0 @@ -4437,753 +4181,35 @@ DOTTED 8 0 10 -490.71067811865487 - 20 -295.0 - 30 -0.0 - 11 -445.1550063219791 - 21 -315.6077841398234 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -445.1550063219791 - 20 -315.6077841398234 - 30 -0.0 - 11 -458.45101131870075 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -431.8590013252574 +478.0371023669066 20 -286.21556827964685 +17.829532375615546 30 0.0 11 -445.1550063219791 +454.66666666666697 21 -315.6077841398234 +94.33981100000011 31 0.0 0 LINE + 6 +DOTTED 62 -5 - 8 -0 - 10 -420.00000000000006 - 20 -260.0 - 30 -0.0 - 11 -431.8590013252574 - 21 -286.21556827964685 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -612.710678118655 - 20 -345.00000000000006 - 30 -0.0 - 11 -620.710678118655 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -490.71067811865487 - 20 -345.00000000000006 - 30 -0.0 - 11 -612.710678118655 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -490.71067811865487 - 20 -345.00000000000006 - 30 -0.0 - 11 -490.71067811865487 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -620.710678118655 - 20 -345.00000000000006 - 30 -0.0 - 11 -620.710678118655 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -670.7106781186549 - 20 -361.66666666666674 - 30 -0.0 - 11 -670.7106781186549 - 21 -345.00000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -620.710678118655 - 20 -361.66666666666674 - 30 -0.0 - 11 -670.7106781186549 - 21 -361.66666666666674 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -620.710678118655 - 20 -345.00000000000006 - 30 -0.0 - 11 -620.710678118655 - 21 -361.66666666666674 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -458.4510113187008 - 20 -164.2467777333486 - 30 -0.0 - 11 -458.4510113187008 - 21 -175.0 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -490.7106781186549 - 20 -164.2467777333486 - 30 -0.0 - 11 -458.4510113187008 - 21 -164.2467777333486 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -490.7106781186549 - 20 -175.0 - 30 -0.0 - 11 -490.7106781186549 - 21 -164.2467777333486 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -596.7106781186549 - 20 -125.00000000000001 - 30 -0.0 - 11 -604.710678118655 - 21 -125.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -596.7106781186549 - 20 -55.00000000000001 - 30 -0.0 - 11 -596.7106781186549 - 21 -125.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -604.710678118655 - 20 -55.00000000000001 - 30 -0.0 - 11 -596.7106781186549 - 21 -55.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -604.710678118655 - 20 -86.00000000000001 - 30 -0.0 - 11 -612.710678118655 - 21 -86.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -612.710678118655 - 20 -86.00000000000001 - 30 -0.0 - 11 -612.710678118655 - 21 -94.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -612.710678118655 - 20 -94.00000000000001 - 30 -0.0 - 11 -604.710678118655 - 21 -94.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -604.710678118655 - 20 -94.00000000000001 - 30 -0.0 - 11 -604.710678118655 - 21 -86.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -618.0440114519882 - 20 -1.2500000000000002 - 30 -0.0 - 11 -618.0440114519882 - 21 -3.7500000000000004 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -618.0440114519882 - 20 -3.7500000000000004 - 30 -0.0 - 11 -615.3773447853215 - 21 -3.7500000000000004 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -615.3773447853215 - 20 -3.7500000000000004 - 30 -0.0 - 11 -615.3773447853215 - 21 -1.2500000000000002 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -620.710678118655 - 20 -86.00000000000001 - 30 -0.0 - 11 -628.710678118655 - 21 -86.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -628.710678118655 - 20 -86.00000000000001 - 30 -0.0 - 11 -628.710678118655 - 21 -94.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -628.710678118655 - 20 -94.00000000000001 - 30 -0.0 - 11 -620.710678118655 - 21 -94.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -620.710678118655 - 20 -94.00000000000001 - 30 -0.0 - 11 -620.710678118655 - 21 -86.00000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.4606781186549 - 20 -80.70454545454547 - 30 -0.0 - 11 -630.4606781186549 - 21 -67.47727272727273 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.4606781186549 - 20 -67.47727272727273 - 30 -0.0 - 11 -630.9606781186549 - 21 -67.47727272727273 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.9606781186549 - 20 -67.47727272727273 - 30 -0.0 - 11 -630.9606781186549 - 21 -80.70454545454547 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.9606781186549 - 20 -80.70454545454547 - 30 -0.0 - 11 -630.4606781186549 - 21 -80.70454545454547 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.4606781186549 - 20 -112.52272727272728 - 30 -0.0 - 11 -630.4606781186549 - 21 -99.29545454545456 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.4606781186549 - 20 -99.29545454545456 - 30 -0.0 - 11 -630.9606781186549 - 21 -99.29545454545456 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.9606781186549 - 20 -99.29545454545456 - 30 -0.0 - 11 -630.9606781186549 - 21 -112.52272727272728 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -630.9606781186549 - 20 -112.52272727272728 - 30 -0.0 - 11 -630.4606781186549 - 21 -112.52272727272728 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -448.40187590113186 - 20 -217.3888829577983 - 30 -0.0 - 11 -443.7637963941598 - 21 -227.64184496249058 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -443.7637963941598 - 20 -227.64184496249058 - 30 -0.0 - 11 -443.308239676193 - 21 -227.43576712109234 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -443.308239676193 - 20 -227.43576712109234 - 30 -0.0 - 11 -447.94631918316514 - 21 -217.18280511640006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -447.94631918316514 - 20 -217.18280511640006 - 30 -0.0 - 11 -448.40187590113186 - 21 -217.3888829577983 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -657.9606781186549 - 20 -258.58333333333337 - 30 -0.0 - 11 -657.9606781186549 - 21 -241.41666666666669 - 31 -0.0 - 0 -LINE - 62 -5 +1 8 0 10 -657.9606781186549 +419.6666666666672 20 -241.41666666666669 +-3.20565959555097e-07 30 0.0 11 -658.4606781186549 +454.6666666666669 21 -241.41666666666669 +94.33981100000011 31 0.0 0 @@ -5193,15 +4219,15 @@ LINE 8 0 10 -658.4606781186549 +421.4075380671463 20 -241.41666666666669 +0.5317572923819398 30 0.0 11 -658.4606781186549 +419.6666666666672 21 -258.58333333333337 +-3.20565959555097e-07 31 0.0 0 @@ -5211,15 +4237,15 @@ LINE 8 0 10 -658.4606781186549 +478.0371023669066 20 -258.58333333333337 +17.829532375615546 30 0.0 11 -657.9606781186549 +421.4075380671463 21 -258.58333333333337 +0.5317572923819398 31 0.0 0 @@ -5229,15 +4255,15 @@ LINE 8 0 10 -654.0440114519881 +554.4041678470508 20 -162.50000000000003 +35.12730745884915 30 0.0 11 -654.0440114519881 +534.6666666666671 21 -170.83333333333334 +35.12730745884912 31 0.0 0 @@ -5247,15 +4273,15 @@ LINE 8 0 10 -654.0440114519881 +554.4041678470506 20 -170.83333333333334 +94.33981100000025 30 0.0 11 -637.3773447853216 +554.4041678470508 21 -170.83333333333334 +35.12730745884915 31 0.0 0 @@ -5265,15 +4291,15 @@ LINE 8 0 10 -637.3773447853216 +534.666666666667 20 -170.83333333333334 +94.33981100000022 30 0.0 11 -637.3773447853216 +554.4041678470506 21 -162.50000000000003 +94.33981100000025 31 0.0 0 @@ -5283,15 +4309,15 @@ LINE 8 0 10 -657.9606781186549 +278.0 20 -278.5833333333333 +304.33981099999994 30 0.0 11 -657.9606781186549 +304.6666666666667 21 -261.4166666666667 +304.339811 31 0.0 0 @@ -5301,15 +4327,15 @@ LINE 8 0 10 -657.9606781186549 +278.0000000000001 20 -261.4166666666667 +224.3398109999999 30 0.0 11 -658.4606781186549 +278.0 21 -261.4166666666667 +304.33981099999994 31 0.0 0 @@ -5319,15 +4345,15 @@ LINE 8 0 10 -658.4606781186549 +304.66666666666674 20 -261.4166666666667 +224.33981099999997 30 0.0 11 -658.4606781186549 +278.0000000000001 21 -278.5833333333333 +224.3398109999999 31 0.0 0 @@ -5337,15 +4363,15 @@ LINE 8 0 10 -658.4606781186549 +403.68584483600716 20 -278.5833333333333 +20.621135404204413 30 0.0 11 -657.9606781186549 +384.3311341613512 21 -278.5833333333333 +26.5331256550754 31 0.0 0 @@ -5355,15 +4381,15 @@ LINE 8 0 10 -469.20423358535214 +384.3311341613512 20 -353.06491669998854 +26.5331256550754 30 0.0 11 -469.20423358535214 +384.1850689382248 21 -347.6883055666629 +26.05493641367301 31 0.0 0 @@ -5373,15 +4399,15 @@ LINE 8 0 10 -469.20423358535214 +384.1850689382248 20 -347.6883055666629 +26.05493641367301 30 0.0 11 -479.95745585200353 +403.53977961288064 21 -347.6883055666629 +20.142946162802023 31 0.0 0 @@ -5391,15 +4417,15 @@ LINE 8 0 10 -479.95745585200353 +403.53977961288064 20 -347.6883055666629 +20.142946162802023 30 0.0 11 -479.95745585200353 +403.68584483600716 21 -353.06491669998854 +20.621135404204413 31 0.0 0 @@ -5409,15 +4435,15 @@ LINE 8 0 10 -443.76379639415967 +289.8635407813792 20 -292.3581550375095 +54.86480863923253 30 0.0 11 -448.4018759011318 +299.73229137157097 21 -302.6111170422017 +54.86480863923254 31 0.0 0 @@ -5427,15 +4453,15 @@ LINE 8 0 10 -448.4018759011318 +299.73229137157097 20 -302.6111170422017 +54.86480863923254 30 0.0 11 -447.94631918316503 +299.73229137157097 21 -302.81719488360005 +74.60230981961625 31 0.0 0 @@ -5445,15 +4471,15 @@ LINE 8 0 10 -447.94631918316503 +299.73229137157097 20 -302.81719488360005 +74.60230981961625 30 0.0 11 -443.30823967619295 +289.8635407813792 21 -292.5642328789077 +74.60230981961624 31 0.0 0 @@ -5463,15 +4489,15 @@ LINE 8 0 10 -443.30823967619295 +411.08333333333337 20 -292.5642328789077 +284.0898110000001 30 0.0 11 -443.76379639415967 +438.25000000000006 21 -292.3581550375095 +284.0898110000001 31 0.0 0 @@ -5481,15 +4507,15 @@ LINE 8 0 10 -615.1273447853216 +438.25000000000006 20 -341.0 +284.0898110000001 30 0.0 11 -618.2940114519882 +438.25000000000006 21 -341.0 +284.5898110000001 31 0.0 0 @@ -5499,15 +4525,15 @@ LINE 8 0 10 -618.2940114519882 +438.25000000000006 20 -341.0 +284.5898110000001 30 0.0 11 -618.2940114519882 +411.08333333333337 21 -341.5 +284.5898110000001 31 0.0 0 @@ -5517,15 +4543,15 @@ LINE 8 0 10 -618.2940114519882 +411.08333333333337 20 -341.5 +284.5898110000001 30 0.0 11 -615.1273447853216 +411.08333333333337 21 -341.5 +284.0898110000001 31 0.0 0 @@ -5535,15 +4561,15 @@ LINE 8 0 10 -615.1273447853216 +401.0833333333334 20 -341.5 +284.08981100000005 30 0.0 11 -615.1273447853216 +428.25000000000006 21 -341.0 +284.0898110000001 31 0.0 0 @@ -5553,15 +4579,15 @@ LINE 8 0 10 -637.3773447853216 +428.25000000000006 20 -357.50000000000006 +284.0898110000001 30 0.0 11 -637.3773447853216 +428.25000000000006 21 -349.16666666666674 +284.5898110000001 31 0.0 0 @@ -5571,15 +4597,15 @@ LINE 8 0 10 -637.3773447853216 +428.25000000000006 20 -349.16666666666674 +284.5898110000001 30 0.0 11 -654.0440114519881 +401.0833333333334 21 -349.16666666666674 +284.58981100000005 31 0.0 0 @@ -5589,15 +4615,15 @@ LINE 8 0 10 -654.0440114519881 +401.0833333333334 20 -349.16666666666674 +284.58981100000005 30 0.0 11 -654.0440114519881 +401.0833333333334 21 -357.50000000000006 +284.08981100000005 31 0.0 0 @@ -5607,15 +4633,15 @@ LINE 8 0 10 -479.95745585200353 +554.6666666666666 20 -166.93508330001148 +277.6731443333335 30 0.0 11 -479.95745585200353 +541.3333333333334 21 -172.31169443333718 +277.6731443333334 31 0.0 0 @@ -5625,15 +4651,15 @@ LINE 8 0 10 -479.95745585200353 +541.3333333333334 20 -172.31169443333718 +277.6731443333334 30 0.0 11 -469.20423358535214 +541.3333333333334 21 -172.31169443333718 +251.00647766666683 31 0.0 0 @@ -5643,15 +4669,15 @@ LINE 8 0 10 -469.20423358535214 +541.3333333333334 20 -172.31169443333718 +251.00647766666683 30 0.0 11 -469.20423358535214 +554.6666666666666 21 -166.93508330001148 +251.00647766666685 31 0.0 0 @@ -5661,15 +4687,15 @@ LINE 8 0 10 -598.7106781186549 +455.00219917198274 20 -67.72727272727273 +26.533125655075565 30 0.0 11 -598.7106781186549 +435.6474884973269 21 -63.727272727272734 +20.621135404204527 31 0.0 0 @@ -5679,15 +4705,15 @@ LINE 8 0 10 -598.7106781186549 +435.6474884973269 20 -63.727272727272734 +20.621135404204527 30 0.0 11 -602.710678118655 +435.7935537204534 21 -67.72727272727273 +20.142946162802136 31 0.0 0 @@ -5697,15 +4723,15 @@ LINE 8 0 10 -602.710678118655 +435.7935537204534 20 -67.72727272727273 +20.142946162802136 30 0.0 11 -602.710678118655 +455.14826439510927 21 -80.45454545454547 +26.05493641367315 31 0.0 0 @@ -5715,15 +4741,15 @@ LINE 8 0 10 -602.710678118655 +455.14826439510927 20 -80.45454545454547 +26.05493641367315 30 0.0 11 -598.7106781186549 +455.00219917198274 21 -84.45454545454547 +26.533125655075565 31 0.0 0 @@ -5733,15 +4759,15 @@ LINE 8 0 10 -598.7106781186549 +549.4697925519548 20 -84.45454545454547 +74.60230981961654 30 0.0 11 -598.7106781186549 +539.6010419617629 21 -80.45454545454547 +74.60230981961652 31 0.0 0 @@ -5751,15 +4777,15 @@ LINE 8 0 10 -598.7106781186549 +539.6010419617629 20 -99.54545454545455 +74.60230981961652 30 0.0 11 -598.7106781186549 +539.6010419617629 21 -95.54545454545456 +54.86480863923283 31 0.0 0 @@ -5769,15 +4795,15 @@ LINE 8 0 10 -598.7106781186549 +539.6010419617629 20 -95.54545454545456 +54.86480863923283 30 0.0 11 -602.710678118655 +549.4697925519548 21 -99.54545454545455 +54.86480863923283 31 0.0 0 @@ -5787,15 +4813,15 @@ LINE 8 0 10 -602.710678118655 +284.6666666666668 20 -99.54545454545455 +251.0064776666666 30 0.0 11 -602.710678118655 +298.0000000000001 21 -112.27272727272728 +251.00647766666665 31 0.0 0 @@ -5805,15 +4831,15 @@ LINE 8 0 10 -602.710678118655 +298.0000000000001 20 -112.27272727272728 +251.00647766666665 30 0.0 11 -598.7106781186549 +298.0000000000001 21 -116.27272727272728 +277.67314433333325 31 0.0 0 @@ -5823,15 +4849,15 @@ LINE 8 0 10 -598.7106781186549 +298.0000000000001 20 -116.27272727272728 +277.67314433333325 30 0.0 11 -598.7106781186549 +284.6666666666668 21 -112.27272727272728 +277.67314433333325 31 0.0 0 diff --git a/rocolib/output/ESP32StackBoat/tree.png b/rocolib/output/ESP32StackBoat/tree.png index ca8256354e7281c5572a55d2d737208a6617244d..f3385abdffabca768d7dc7e5a16c5c2fb62fa65d 100644 Binary files a/rocolib/output/ESP32StackBoat/tree.png and b/rocolib/output/ESP32StackBoat/tree.png differ