diff --git a/rocolib/builders/boat/.DS_Store b/rocolib/builders/boat/.DS_Store index 8a7ae2a762ee7a194ef146b1ca33d0b98c548aa6..202d8954419252a7d049ead6f69ca9e2ca7db5a9 100644 Binary files a/rocolib/builders/boat/.DS_Store and b/rocolib/builders/boat/.DS_Store differ diff --git a/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py b/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py index e4beef1b8a2f66fdb1d73ec19ca61914f6f523ef..af0ddd90ac37b403bf2f434ee456eef67a2d9c77 100644 --- a/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py +++ b/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py @@ -6,36 +6,52 @@ c = Component() c.addSubcomponent("boat", "BoatBase", inherit=True, prefix=None) c.inheritAllInterfaces("boat") -c.addParameter("length", 169, paramType="length") +c.addParameter("length", 156, paramType="length") c.addParameter("width", 90, paramType="length") c.addParameter("depth", 70, paramType="length") -c.addSubcomponent("boat", "BoatBase", inherit=True) - c.addConstraint(("boat", "boat.length"), "length") c.addConstraint(("boat", "boat.width"), "width") c.addConstraint(("boat", "boat.depth"), "depth") -c.addSubcomponent("servostackbattery", "ServoStackBatteryMount") -c.inheritAllInterfaces("servostackbattery") +c.addSubcomponent("servostack", "ServoStackMount") +c.inheritAllInterfaces("servostack") + +c.addSubcomponent("batterymount", "BatteryMount") +c.inheritAllInterfaces("batterymount") +# +c.addSubcomponent("portsplit0", "SplitEdge") +c.inheritAllInterfaces("portsplit0") +c.addConstConstraint(("portsplit0", "toplength"), (156,)) #156-61 +c.addConstConstraint(("portsplit0", "botlength"), (95, 61)) + +c.addConnection(("portsplit0", "topedge0"), ("boat", "portedge")) -c.addSubcomponent("portsplit", "SplitEdge") -c.inheritAllInterfaces("portsplit") -c.addConstConstraint(("portsplit", "toplength"), (169,)) -c.addConstConstraint(("portsplit", "botlength"), (61, 108)) +c.addSubcomponent("portsplit1", "SplitEdge") +c.inheritAllInterfaces("portsplit1") +c.addConstConstraint(("portsplit1", "toplength"), (95,61)) #156-61 +c.addConstConstraint(("portsplit1", "botlength"), (61, 10, 24, 61)) -c.addSubcomponent("starsplit", "SplitEdge") -c.inheritAllInterfaces("starsplit") -c.addConstConstraint(("starsplit", "toplength"), (169,)) -c.addConstConstraint(("starsplit", "botlength"), (108, 61)) +c.addConnection(("portsplit0", "botedge0"), ("portsplit1", "topedge0")) +c.addConnection(("portsplit0", "botedge1"), ("portsplit1", "topedge1")) -c.addConnection(("portsplit", "topedge0"), ("boat", "portedge")) #both face the same direction -c.addConnection(("portsplit", "botedge1"), ("servostackbattery", "lservostackbatterysplit")) +c.addConnection(("portsplit1", "botedge0"), ("servostack", "lstacksplit")) +c.addConnection(("portsplit1", "botedge2"), ("servostack", "lservosplit")) -c.addConnection(("starsplit", "topedge0"), ("boat", "staredge")) #both face the same direction -c.addConnection(("starsplit", "botedge0"), ("servostackbattery", "rservostackbatterysplit")) +c.addConnection(("batterymount", "leftArmInterface"), ("portsplit1", "botedge3"), tabWidth=10) + +# c.addSubcomponent("starsplit", "SplitEdge") +# c.inheritAllInterfaces("starsplit") +# c.addConstConstraint(("starsplit", "toplength"), (169,)) +# c.addConstConstraint(("starsplit", "botlength"), (108, 61)) +# +# c.addConnection(("portsplit", "topedge0"), ("boat", "portedge")) #both face the same direction +# c.addConnection(("portsplit", "botedge1"), ("servostackbattery", "lservostackbatterysplit")) +# +# c.addConnection(("starsplit", "topedge0"), ("boat", "staredge")) #both face the same direction +# c.addConnection(("starsplit", "botedge0"), ("servostackbattery", "rservostackbatterysplit")) # -# c.addConnection(("boat", "portedge"), ("servostackbattery", "lservostackbatterysplit")) #both face the same direction -# c.addConnection(("boat", "staredge"), ("servostackbattery", "lservostackbatterysplit")) +# c.addConnection(("boat", "portedge"), ("servostack", "lservostacksplit")) #both face the same direction +# c.addConnection(("boat", "staredge"), ("servostack", "lservostacksplit")) c.toLibrary("BoatWithServoStackBattery") diff --git a/rocolib/builders/boat/mounts/.DS_Store b/rocolib/builders/boat/mounts/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..9464bb50caf7c0fed5c5cd73e7a12e345ecad7ed Binary files /dev/null and b/rocolib/builders/boat/mounts/.DS_Store differ diff --git a/rocolib/builders/boat/mounts/ServoStackMountBuilder.py b/rocolib/builders/boat/mounts/ServoStackMountBuilder.py index 5cd25c519fe3d6baec8a9cda8ba09aa8c525a34d..5440f6de95ddc1a434f6b8480d97c0e53e918535 100644 --- a/rocolib/builders/boat/mounts/ServoStackMountBuilder.py +++ b/rocolib/builders/boat/mounts/ServoStackMountBuilder.py @@ -10,7 +10,7 @@ c.inheritAllInterfaces("espStack") c.addSubcomponent("portsplit", "SplitEdge") c.inheritAllInterfaces("portsplit") -c.addConstraint(("portsplit", "toplength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[0]*2+x[1]*2+10*2+x[2],)") +c.addConstraint(("portsplit", "toplength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[2], 10, x[0], x[0]+x[1]*2+10)") c.addConstraint(("portsplit", "botlength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[2], 10, x[0], x[0]+x[1]*2+10)") c.addConnection(("doubleServoMount", "lServoInterface"), ("portsplit", "botedge2")) #both face the same direction @@ -18,13 +18,15 @@ c.addConnection(("espStack", "leftArmInterface"), ("portsplit", "botedge0")) #bo c.addSubcomponent("starsplit", "SplitEdge") c.inheritAllInterfaces("starsplit") -c.addConstraint(("starsplit", "toplength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[0] * 2 + x[1] * 2 + 10 * 2 + x[2],)") +c.addConstraint(("starsplit", "toplength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[0]+x[1]*2+10, x[0], 10, x[2])") c.addConstraint(("starsplit", "botlength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[0]+x[1]*2+10, x[0], 10, x[2])") c.addConnection(("doubleServoMount", "rServoInterface"), ("starsplit", "botedge1")) c.addConnection(("espStack", "rightArmInterface"), ("starsplit", "botedge3"), tabWidth=10) -c.inheritInterface("lservostacksplit", ("portsplit","topedge0")) -c.inheritInterface("rservostacksplit", ("starsplit","topedge0")) +c.inheritInterface("lservosplit", ("portsplit","topedge2")) +c.inheritInterface("rservosplit", ("starsplit","topedge1")) +c.inheritInterface("lstacksplit", ("portsplit","topedge0")) +c.inheritInterface("rstacksplit", ("starsplit","topedge3")) c.toLibrary("ServoStackMount") diff --git a/rocolib/library/BoatWithServoStackBattery.yaml b/rocolib/library/BoatWithServoStackBattery.yaml index 56535de55fa611629e5e969909c379071d33119a..a2530d54af8820d5a03e2720bea4c4ba977ab66c 100644 --- a/rocolib/library/BoatWithServoStackBattery.yaml +++ b/rocolib/library/BoatWithServoStackBattery.yaml @@ -1,3684 +1,2490 @@ connections: connection0: - - - portsplit + - - portsplit0 - topedge0 - - boat - portedge - {} connection1: - - - portsplit - - botedge1 - - - servostackbattery - - lservostackbatterysplit + - - portsplit0 + - botedge0 + - - portsplit1 + - topedge0 - {} connection2: - - - starsplit - - topedge0 - - - boat - - staredge + - - portsplit0 + - botedge1 + - - portsplit1 + - topedge1 - {} connection3: - - - starsplit + - - portsplit1 - botedge0 - - - servostackbattery - - rservostackbatterysplit + - - servostack + - lstacksplit + - {} + connection4: + - - portsplit1 + - botedge2 + - - servostack + - lservosplit - {} + connection5: + - - batterymount + - leftArmInterface + - - portsplit1 + - botedge3 + - tabWidth: 10 interfaces: + batterymount.leftArmInterface: + interface: leftArmInterface + subcomponent: batterymount + batterymount.rightArmInterface: + interface: rightArmInterface + subcomponent: batterymount boat.portedge: interface: portedge subcomponent: boat boat.staredge: interface: staredge subcomponent: boat - portsplit.botedge0: + portsplit0.botedge0: interface: botedge0 - subcomponent: portsplit - portsplit.botedge1: + subcomponent: portsplit0 + portsplit0.botedge1: interface: botedge1 - subcomponent: portsplit - portsplit.botedge10: + subcomponent: portsplit0 + portsplit0.botedge10: interface: botedge10 - subcomponent: portsplit - portsplit.botedge11: + subcomponent: portsplit0 + portsplit0.botedge11: interface: botedge11 - subcomponent: portsplit - portsplit.botedge12: + subcomponent: portsplit0 + portsplit0.botedge12: interface: botedge12 - subcomponent: portsplit - portsplit.botedge13: + subcomponent: portsplit0 + portsplit0.botedge13: interface: botedge13 - subcomponent: portsplit - portsplit.botedge14: + subcomponent: portsplit0 + portsplit0.botedge14: interface: botedge14 - subcomponent: portsplit - portsplit.botedge15: + subcomponent: portsplit0 + portsplit0.botedge15: interface: botedge15 - subcomponent: portsplit - portsplit.botedge16: + subcomponent: portsplit0 + portsplit0.botedge16: interface: botedge16 - subcomponent: portsplit - portsplit.botedge17: + subcomponent: portsplit0 + portsplit0.botedge17: interface: botedge17 - subcomponent: portsplit - portsplit.botedge18: + subcomponent: portsplit0 + portsplit0.botedge18: interface: botedge18 - subcomponent: portsplit - portsplit.botedge19: + subcomponent: portsplit0 + portsplit0.botedge19: interface: botedge19 - subcomponent: portsplit - portsplit.botedge2: + subcomponent: portsplit0 + portsplit0.botedge2: interface: botedge2 - subcomponent: portsplit - portsplit.botedge20: + subcomponent: portsplit0 + portsplit0.botedge20: interface: botedge20 - subcomponent: portsplit - portsplit.botedge21: + subcomponent: portsplit0 + portsplit0.botedge21: interface: botedge21 - subcomponent: portsplit - portsplit.botedge22: + subcomponent: portsplit0 + portsplit0.botedge22: interface: botedge22 - subcomponent: portsplit - portsplit.botedge23: + subcomponent: portsplit0 + portsplit0.botedge23: interface: botedge23 - subcomponent: portsplit - portsplit.botedge24: + subcomponent: portsplit0 + portsplit0.botedge24: interface: botedge24 - subcomponent: portsplit - portsplit.botedge25: + subcomponent: portsplit0 + portsplit0.botedge25: interface: botedge25 - subcomponent: portsplit - portsplit.botedge26: + subcomponent: portsplit0 + portsplit0.botedge26: interface: botedge26 - subcomponent: portsplit - portsplit.botedge27: + subcomponent: portsplit0 + portsplit0.botedge27: interface: botedge27 - subcomponent: portsplit - portsplit.botedge28: + subcomponent: portsplit0 + portsplit0.botedge28: interface: botedge28 - subcomponent: portsplit - portsplit.botedge29: + subcomponent: portsplit0 + portsplit0.botedge29: interface: botedge29 - subcomponent: portsplit - portsplit.botedge3: + subcomponent: portsplit0 + portsplit0.botedge3: interface: botedge3 - subcomponent: portsplit - portsplit.botedge30: + subcomponent: portsplit0 + portsplit0.botedge30: interface: botedge30 - subcomponent: portsplit - portsplit.botedge31: + subcomponent: portsplit0 + portsplit0.botedge31: interface: botedge31 - subcomponent: portsplit - portsplit.botedge32: + subcomponent: portsplit0 + portsplit0.botedge32: interface: botedge32 - subcomponent: portsplit - portsplit.botedge33: + subcomponent: portsplit0 + portsplit0.botedge33: interface: botedge33 - subcomponent: portsplit - portsplit.botedge34: + subcomponent: portsplit0 + portsplit0.botedge34: interface: botedge34 - subcomponent: portsplit - portsplit.botedge35: + subcomponent: portsplit0 + portsplit0.botedge35: interface: botedge35 - subcomponent: portsplit - portsplit.botedge36: + subcomponent: portsplit0 + portsplit0.botedge36: interface: botedge36 - subcomponent: portsplit - portsplit.botedge37: + subcomponent: portsplit0 + portsplit0.botedge37: interface: botedge37 - subcomponent: portsplit - portsplit.botedge38: + subcomponent: portsplit0 + portsplit0.botedge38: interface: botedge38 - subcomponent: portsplit - portsplit.botedge39: + subcomponent: portsplit0 + portsplit0.botedge39: interface: botedge39 - subcomponent: portsplit - portsplit.botedge4: + subcomponent: portsplit0 + portsplit0.botedge4: interface: botedge4 - subcomponent: portsplit - portsplit.botedge40: + subcomponent: portsplit0 + portsplit0.botedge40: interface: botedge40 - subcomponent: portsplit - portsplit.botedge41: + subcomponent: portsplit0 + portsplit0.botedge41: interface: botedge41 - subcomponent: portsplit - portsplit.botedge42: + subcomponent: portsplit0 + portsplit0.botedge42: interface: botedge42 - subcomponent: portsplit - portsplit.botedge43: + subcomponent: portsplit0 + portsplit0.botedge43: interface: botedge43 - subcomponent: portsplit - portsplit.botedge44: + subcomponent: portsplit0 + portsplit0.botedge44: interface: botedge44 - subcomponent: portsplit - portsplit.botedge45: + subcomponent: portsplit0 + portsplit0.botedge45: interface: botedge45 - subcomponent: portsplit - portsplit.botedge46: + subcomponent: portsplit0 + portsplit0.botedge46: interface: botedge46 - subcomponent: portsplit - portsplit.botedge47: + subcomponent: portsplit0 + portsplit0.botedge47: interface: botedge47 - subcomponent: portsplit - portsplit.botedge48: + subcomponent: portsplit0 + portsplit0.botedge48: interface: botedge48 - subcomponent: portsplit - portsplit.botedge49: + subcomponent: portsplit0 + portsplit0.botedge49: interface: botedge49 - subcomponent: portsplit - portsplit.botedge5: + subcomponent: portsplit0 + portsplit0.botedge5: interface: botedge5 - subcomponent: portsplit - portsplit.botedge50: + subcomponent: portsplit0 + portsplit0.botedge50: interface: botedge50 - subcomponent: portsplit - portsplit.botedge51: + subcomponent: portsplit0 + portsplit0.botedge51: interface: botedge51 - subcomponent: portsplit - portsplit.botedge52: + subcomponent: portsplit0 + portsplit0.botedge52: interface: botedge52 - subcomponent: portsplit - portsplit.botedge53: + subcomponent: portsplit0 + portsplit0.botedge53: interface: botedge53 - subcomponent: portsplit - portsplit.botedge54: + subcomponent: portsplit0 + portsplit0.botedge54: interface: botedge54 - subcomponent: portsplit - portsplit.botedge55: + subcomponent: portsplit0 + portsplit0.botedge55: interface: botedge55 - subcomponent: portsplit - portsplit.botedge56: + subcomponent: portsplit0 + portsplit0.botedge56: interface: botedge56 - subcomponent: portsplit - portsplit.botedge57: + subcomponent: portsplit0 + portsplit0.botedge57: interface: botedge57 - subcomponent: portsplit - portsplit.botedge58: + subcomponent: portsplit0 + portsplit0.botedge58: interface: botedge58 - subcomponent: portsplit - portsplit.botedge59: + subcomponent: portsplit0 + portsplit0.botedge59: interface: botedge59 - subcomponent: portsplit - portsplit.botedge6: + subcomponent: portsplit0 + portsplit0.botedge6: interface: botedge6 - subcomponent: portsplit - portsplit.botedge60: + subcomponent: portsplit0 + portsplit0.botedge60: interface: botedge60 - subcomponent: portsplit - portsplit.botedge61: + subcomponent: portsplit0 + portsplit0.botedge61: interface: botedge61 - subcomponent: portsplit - portsplit.botedge62: + subcomponent: portsplit0 + portsplit0.botedge62: interface: botedge62 - subcomponent: portsplit - portsplit.botedge63: + subcomponent: portsplit0 + portsplit0.botedge63: interface: botedge63 - subcomponent: portsplit - portsplit.botedge64: + subcomponent: portsplit0 + portsplit0.botedge64: interface: botedge64 - subcomponent: portsplit - portsplit.botedge65: + subcomponent: portsplit0 + portsplit0.botedge65: interface: botedge65 - subcomponent: portsplit - portsplit.botedge66: + subcomponent: portsplit0 + portsplit0.botedge66: interface: botedge66 - subcomponent: portsplit - portsplit.botedge67: + subcomponent: portsplit0 + portsplit0.botedge67: interface: botedge67 - subcomponent: portsplit - portsplit.botedge68: + subcomponent: portsplit0 + portsplit0.botedge68: interface: botedge68 - subcomponent: portsplit - portsplit.botedge69: + subcomponent: portsplit0 + portsplit0.botedge69: interface: botedge69 - subcomponent: portsplit - portsplit.botedge7: + subcomponent: portsplit0 + portsplit0.botedge7: interface: botedge7 - subcomponent: portsplit - portsplit.botedge70: + subcomponent: portsplit0 + portsplit0.botedge70: interface: botedge70 - subcomponent: portsplit - portsplit.botedge71: + subcomponent: portsplit0 + portsplit0.botedge71: interface: botedge71 - subcomponent: portsplit - portsplit.botedge72: + subcomponent: portsplit0 + portsplit0.botedge72: interface: botedge72 - subcomponent: portsplit - portsplit.botedge73: + subcomponent: portsplit0 + portsplit0.botedge73: interface: botedge73 - subcomponent: portsplit - portsplit.botedge74: + subcomponent: portsplit0 + portsplit0.botedge74: interface: botedge74 - subcomponent: portsplit - portsplit.botedge75: + subcomponent: portsplit0 + portsplit0.botedge75: interface: botedge75 - subcomponent: portsplit - portsplit.botedge76: + subcomponent: portsplit0 + portsplit0.botedge76: interface: botedge76 - subcomponent: portsplit - portsplit.botedge77: + subcomponent: portsplit0 + portsplit0.botedge77: interface: botedge77 - subcomponent: portsplit - portsplit.botedge78: + subcomponent: portsplit0 + portsplit0.botedge78: interface: botedge78 - subcomponent: portsplit - portsplit.botedge79: + subcomponent: portsplit0 + portsplit0.botedge79: interface: botedge79 - subcomponent: portsplit - portsplit.botedge8: + subcomponent: portsplit0 + portsplit0.botedge8: interface: botedge8 - subcomponent: portsplit - portsplit.botedge80: + subcomponent: portsplit0 + portsplit0.botedge80: interface: botedge80 - subcomponent: portsplit - portsplit.botedge81: + subcomponent: portsplit0 + portsplit0.botedge81: interface: botedge81 - subcomponent: portsplit - portsplit.botedge82: + subcomponent: portsplit0 + portsplit0.botedge82: interface: botedge82 - subcomponent: portsplit - portsplit.botedge83: + subcomponent: portsplit0 + portsplit0.botedge83: interface: botedge83 - subcomponent: portsplit - portsplit.botedge84: + subcomponent: portsplit0 + portsplit0.botedge84: interface: botedge84 - subcomponent: portsplit - portsplit.botedge85: + subcomponent: portsplit0 + portsplit0.botedge85: interface: botedge85 - subcomponent: portsplit - portsplit.botedge86: + subcomponent: portsplit0 + portsplit0.botedge86: interface: botedge86 - subcomponent: portsplit - portsplit.botedge87: + subcomponent: portsplit0 + portsplit0.botedge87: interface: botedge87 - subcomponent: portsplit - portsplit.botedge88: + subcomponent: portsplit0 + portsplit0.botedge88: interface: botedge88 - subcomponent: portsplit - portsplit.botedge89: + subcomponent: portsplit0 + portsplit0.botedge89: interface: botedge89 - subcomponent: portsplit - portsplit.botedge9: + subcomponent: portsplit0 + portsplit0.botedge9: interface: botedge9 - subcomponent: portsplit - portsplit.botedge90: + subcomponent: portsplit0 + portsplit0.botedge90: interface: botedge90 - subcomponent: portsplit - portsplit.botedge91: + subcomponent: portsplit0 + portsplit0.botedge91: interface: botedge91 - subcomponent: portsplit - portsplit.botedge92: + subcomponent: portsplit0 + portsplit0.botedge92: interface: botedge92 - subcomponent: portsplit - portsplit.botedge93: + subcomponent: portsplit0 + portsplit0.botedge93: interface: botedge93 - subcomponent: portsplit - portsplit.botedge94: + subcomponent: portsplit0 + portsplit0.botedge94: interface: botedge94 - subcomponent: portsplit - portsplit.botedge95: + subcomponent: portsplit0 + portsplit0.botedge95: interface: botedge95 - subcomponent: portsplit - portsplit.botedge96: + subcomponent: portsplit0 + portsplit0.botedge96: interface: botedge96 - subcomponent: portsplit - portsplit.botedge97: + subcomponent: portsplit0 + portsplit0.botedge97: interface: botedge97 - subcomponent: portsplit - portsplit.botedge98: + subcomponent: portsplit0 + portsplit0.botedge98: interface: botedge98 - subcomponent: portsplit - portsplit.botedge99: + subcomponent: portsplit0 + portsplit0.botedge99: interface: botedge99 - subcomponent: portsplit - portsplit.topedge0: + subcomponent: portsplit0 + portsplit0.topedge0: interface: topedge0 - subcomponent: portsplit - portsplit.topedge1: + subcomponent: portsplit0 + portsplit0.topedge1: interface: topedge1 - subcomponent: portsplit - portsplit.topedge10: + subcomponent: portsplit0 + portsplit0.topedge10: interface: topedge10 - subcomponent: portsplit - portsplit.topedge11: + subcomponent: portsplit0 + portsplit0.topedge11: interface: topedge11 - subcomponent: portsplit - portsplit.topedge12: + subcomponent: portsplit0 + portsplit0.topedge12: interface: topedge12 - subcomponent: portsplit - portsplit.topedge13: + subcomponent: portsplit0 + portsplit0.topedge13: interface: topedge13 - subcomponent: portsplit - portsplit.topedge14: + subcomponent: portsplit0 + portsplit0.topedge14: interface: topedge14 - subcomponent: portsplit - portsplit.topedge15: + subcomponent: portsplit0 + portsplit0.topedge15: interface: topedge15 - subcomponent: portsplit - portsplit.topedge16: + subcomponent: portsplit0 + portsplit0.topedge16: interface: topedge16 - subcomponent: portsplit - portsplit.topedge17: + subcomponent: portsplit0 + portsplit0.topedge17: interface: topedge17 - subcomponent: portsplit - portsplit.topedge18: + subcomponent: portsplit0 + portsplit0.topedge18: interface: topedge18 - subcomponent: portsplit - portsplit.topedge19: + subcomponent: portsplit0 + portsplit0.topedge19: interface: topedge19 - subcomponent: portsplit - portsplit.topedge2: + subcomponent: portsplit0 + portsplit0.topedge2: interface: topedge2 - subcomponent: portsplit - portsplit.topedge20: + subcomponent: portsplit0 + portsplit0.topedge20: interface: topedge20 - subcomponent: portsplit - portsplit.topedge21: + subcomponent: portsplit0 + portsplit0.topedge21: interface: topedge21 - subcomponent: portsplit - portsplit.topedge22: + subcomponent: portsplit0 + portsplit0.topedge22: interface: topedge22 - subcomponent: portsplit - portsplit.topedge23: + subcomponent: portsplit0 + portsplit0.topedge23: interface: topedge23 - subcomponent: portsplit - portsplit.topedge24: + subcomponent: portsplit0 + portsplit0.topedge24: interface: topedge24 - subcomponent: portsplit - portsplit.topedge25: + subcomponent: portsplit0 + portsplit0.topedge25: interface: topedge25 - subcomponent: portsplit - portsplit.topedge26: + subcomponent: portsplit0 + portsplit0.topedge26: interface: topedge26 - subcomponent: portsplit - portsplit.topedge27: + subcomponent: portsplit0 + portsplit0.topedge27: interface: topedge27 - subcomponent: portsplit - portsplit.topedge28: + subcomponent: portsplit0 + portsplit0.topedge28: interface: topedge28 - subcomponent: portsplit - portsplit.topedge29: + subcomponent: portsplit0 + portsplit0.topedge29: interface: topedge29 - subcomponent: portsplit - portsplit.topedge3: + subcomponent: portsplit0 + portsplit0.topedge3: interface: topedge3 - subcomponent: portsplit - portsplit.topedge30: + subcomponent: portsplit0 + portsplit0.topedge30: interface: topedge30 - subcomponent: portsplit - portsplit.topedge31: + subcomponent: portsplit0 + portsplit0.topedge31: interface: topedge31 - subcomponent: portsplit - portsplit.topedge32: + subcomponent: portsplit0 + portsplit0.topedge32: interface: topedge32 - subcomponent: portsplit - portsplit.topedge33: + subcomponent: portsplit0 + portsplit0.topedge33: interface: topedge33 - subcomponent: portsplit - portsplit.topedge34: + subcomponent: portsplit0 + portsplit0.topedge34: interface: topedge34 - subcomponent: portsplit - portsplit.topedge35: + subcomponent: portsplit0 + portsplit0.topedge35: interface: topedge35 - subcomponent: portsplit - portsplit.topedge36: + subcomponent: portsplit0 + portsplit0.topedge36: interface: topedge36 - subcomponent: portsplit - portsplit.topedge37: + subcomponent: portsplit0 + portsplit0.topedge37: interface: topedge37 - subcomponent: portsplit - portsplit.topedge38: + subcomponent: portsplit0 + portsplit0.topedge38: interface: topedge38 - subcomponent: portsplit - portsplit.topedge39: + subcomponent: portsplit0 + portsplit0.topedge39: interface: topedge39 - subcomponent: portsplit - portsplit.topedge4: + subcomponent: portsplit0 + portsplit0.topedge4: interface: topedge4 - subcomponent: portsplit - portsplit.topedge40: + subcomponent: portsplit0 + portsplit0.topedge40: interface: topedge40 - subcomponent: portsplit - portsplit.topedge41: + subcomponent: portsplit0 + portsplit0.topedge41: interface: topedge41 - subcomponent: portsplit - portsplit.topedge42: + subcomponent: portsplit0 + portsplit0.topedge42: interface: topedge42 - subcomponent: portsplit - portsplit.topedge43: + subcomponent: portsplit0 + portsplit0.topedge43: interface: topedge43 - subcomponent: portsplit - portsplit.topedge44: + subcomponent: portsplit0 + portsplit0.topedge44: interface: topedge44 - subcomponent: portsplit - portsplit.topedge45: + subcomponent: portsplit0 + portsplit0.topedge45: interface: topedge45 - subcomponent: portsplit - portsplit.topedge46: + subcomponent: portsplit0 + portsplit0.topedge46: interface: topedge46 - subcomponent: portsplit - portsplit.topedge47: + subcomponent: portsplit0 + portsplit0.topedge47: interface: topedge47 - subcomponent: portsplit - portsplit.topedge48: + subcomponent: portsplit0 + portsplit0.topedge48: interface: topedge48 - subcomponent: portsplit - portsplit.topedge49: + subcomponent: portsplit0 + portsplit0.topedge49: interface: topedge49 - subcomponent: portsplit - portsplit.topedge5: + subcomponent: portsplit0 + portsplit0.topedge5: interface: topedge5 - subcomponent: portsplit - portsplit.topedge50: + subcomponent: portsplit0 + portsplit0.topedge50: interface: topedge50 - subcomponent: portsplit - portsplit.topedge51: + subcomponent: portsplit0 + portsplit0.topedge51: interface: topedge51 - subcomponent: portsplit - portsplit.topedge52: + subcomponent: portsplit0 + portsplit0.topedge52: interface: topedge52 - subcomponent: portsplit - portsplit.topedge53: + subcomponent: portsplit0 + portsplit0.topedge53: interface: topedge53 - subcomponent: portsplit - portsplit.topedge54: + subcomponent: portsplit0 + portsplit0.topedge54: interface: topedge54 - subcomponent: portsplit - portsplit.topedge55: + subcomponent: portsplit0 + portsplit0.topedge55: interface: topedge55 - subcomponent: portsplit - portsplit.topedge56: + subcomponent: portsplit0 + portsplit0.topedge56: interface: topedge56 - subcomponent: portsplit - portsplit.topedge57: + subcomponent: portsplit0 + portsplit0.topedge57: interface: topedge57 - subcomponent: portsplit - portsplit.topedge58: + subcomponent: portsplit0 + portsplit0.topedge58: interface: topedge58 - subcomponent: portsplit - portsplit.topedge59: + subcomponent: portsplit0 + portsplit0.topedge59: interface: topedge59 - subcomponent: portsplit - portsplit.topedge6: + subcomponent: portsplit0 + portsplit0.topedge6: interface: topedge6 - subcomponent: portsplit - portsplit.topedge60: + subcomponent: portsplit0 + portsplit0.topedge60: interface: topedge60 - subcomponent: portsplit - portsplit.topedge61: + subcomponent: portsplit0 + portsplit0.topedge61: interface: topedge61 - subcomponent: portsplit - portsplit.topedge62: + subcomponent: portsplit0 + portsplit0.topedge62: interface: topedge62 - subcomponent: portsplit - portsplit.topedge63: + subcomponent: portsplit0 + portsplit0.topedge63: interface: topedge63 - subcomponent: portsplit - portsplit.topedge64: + subcomponent: portsplit0 + portsplit0.topedge64: interface: topedge64 - subcomponent: portsplit - portsplit.topedge65: + subcomponent: portsplit0 + portsplit0.topedge65: interface: topedge65 - subcomponent: portsplit - portsplit.topedge66: + subcomponent: portsplit0 + portsplit0.topedge66: interface: topedge66 - subcomponent: portsplit - portsplit.topedge67: + subcomponent: portsplit0 + portsplit0.topedge67: interface: topedge67 - subcomponent: portsplit - portsplit.topedge68: + subcomponent: portsplit0 + portsplit0.topedge68: interface: topedge68 - subcomponent: portsplit - portsplit.topedge69: + subcomponent: portsplit0 + portsplit0.topedge69: interface: topedge69 - subcomponent: portsplit - portsplit.topedge7: + subcomponent: portsplit0 + portsplit0.topedge7: interface: topedge7 - subcomponent: portsplit - portsplit.topedge70: + subcomponent: portsplit0 + portsplit0.topedge70: interface: topedge70 - subcomponent: portsplit - portsplit.topedge71: + subcomponent: portsplit0 + portsplit0.topedge71: interface: topedge71 - subcomponent: portsplit - portsplit.topedge72: + subcomponent: portsplit0 + portsplit0.topedge72: interface: topedge72 - subcomponent: portsplit - portsplit.topedge73: + subcomponent: portsplit0 + portsplit0.topedge73: interface: topedge73 - subcomponent: portsplit - portsplit.topedge74: + subcomponent: portsplit0 + portsplit0.topedge74: interface: topedge74 - subcomponent: portsplit - portsplit.topedge75: + subcomponent: portsplit0 + portsplit0.topedge75: interface: topedge75 - subcomponent: portsplit - portsplit.topedge76: + subcomponent: portsplit0 + portsplit0.topedge76: interface: topedge76 - subcomponent: portsplit - portsplit.topedge77: + subcomponent: portsplit0 + portsplit0.topedge77: interface: topedge77 - subcomponent: portsplit - portsplit.topedge78: + subcomponent: portsplit0 + portsplit0.topedge78: interface: topedge78 - subcomponent: portsplit - portsplit.topedge79: + subcomponent: portsplit0 + portsplit0.topedge79: interface: topedge79 - subcomponent: portsplit - portsplit.topedge8: + subcomponent: portsplit0 + portsplit0.topedge8: interface: topedge8 - subcomponent: portsplit - portsplit.topedge80: + subcomponent: portsplit0 + portsplit0.topedge80: interface: topedge80 - subcomponent: portsplit - portsplit.topedge81: + subcomponent: portsplit0 + portsplit0.topedge81: interface: topedge81 - subcomponent: portsplit - portsplit.topedge82: + subcomponent: portsplit0 + portsplit0.topedge82: interface: topedge82 - subcomponent: portsplit - portsplit.topedge83: + subcomponent: portsplit0 + portsplit0.topedge83: interface: topedge83 - subcomponent: portsplit - portsplit.topedge84: + subcomponent: portsplit0 + portsplit0.topedge84: interface: topedge84 - subcomponent: portsplit - portsplit.topedge85: + subcomponent: portsplit0 + portsplit0.topedge85: interface: topedge85 - subcomponent: portsplit - portsplit.topedge86: + subcomponent: portsplit0 + portsplit0.topedge86: interface: topedge86 - subcomponent: portsplit - portsplit.topedge87: + subcomponent: portsplit0 + portsplit0.topedge87: interface: topedge87 - subcomponent: portsplit - portsplit.topedge88: + subcomponent: portsplit0 + portsplit0.topedge88: interface: topedge88 - subcomponent: portsplit - portsplit.topedge89: + subcomponent: portsplit0 + portsplit0.topedge89: interface: topedge89 - subcomponent: portsplit - portsplit.topedge9: + subcomponent: portsplit0 + portsplit0.topedge9: interface: topedge9 - subcomponent: portsplit - portsplit.topedge90: + subcomponent: portsplit0 + portsplit0.topedge90: interface: topedge90 - subcomponent: portsplit - portsplit.topedge91: + subcomponent: portsplit0 + portsplit0.topedge91: interface: topedge91 - subcomponent: portsplit - portsplit.topedge92: + subcomponent: portsplit0 + portsplit0.topedge92: interface: topedge92 - subcomponent: portsplit - portsplit.topedge93: + subcomponent: portsplit0 + portsplit0.topedge93: interface: topedge93 - subcomponent: portsplit - portsplit.topedge94: + subcomponent: portsplit0 + portsplit0.topedge94: interface: topedge94 - subcomponent: portsplit - portsplit.topedge95: + subcomponent: portsplit0 + portsplit0.topedge95: interface: topedge95 - subcomponent: portsplit - portsplit.topedge96: + subcomponent: portsplit0 + portsplit0.topedge96: interface: topedge96 - subcomponent: portsplit - portsplit.topedge97: + subcomponent: portsplit0 + portsplit0.topedge97: interface: topedge97 - subcomponent: portsplit - portsplit.topedge98: + subcomponent: portsplit0 + portsplit0.topedge98: interface: topedge98 - subcomponent: portsplit - portsplit.topedge99: + subcomponent: portsplit0 + portsplit0.topedge99: interface: topedge99 - subcomponent: portsplit - servostackbattery.batterymount.leftArmInterface: - interface: batterymount.leftArmInterface - subcomponent: servostackbattery - servostackbattery.batterymount.rightArmInterface: - interface: batterymount.rightArmInterface - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge0: - interface: lfullsplit.botedge0 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge1: - interface: lfullsplit.botedge1 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge10: - interface: lfullsplit.botedge10 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge11: - interface: lfullsplit.botedge11 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge12: - interface: lfullsplit.botedge12 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge13: - interface: lfullsplit.botedge13 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge14: - interface: lfullsplit.botedge14 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge15: - interface: lfullsplit.botedge15 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge16: - interface: lfullsplit.botedge16 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge17: - interface: lfullsplit.botedge17 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge18: - interface: lfullsplit.botedge18 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge19: - interface: lfullsplit.botedge19 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge2: - interface: lfullsplit.botedge2 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge20: - interface: lfullsplit.botedge20 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge21: - interface: lfullsplit.botedge21 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge22: - interface: lfullsplit.botedge22 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge23: - interface: lfullsplit.botedge23 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge24: - interface: lfullsplit.botedge24 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge25: - interface: lfullsplit.botedge25 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge26: - interface: lfullsplit.botedge26 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge27: - interface: lfullsplit.botedge27 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge28: - interface: lfullsplit.botedge28 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge29: - interface: lfullsplit.botedge29 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge3: - interface: lfullsplit.botedge3 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge30: - interface: lfullsplit.botedge30 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge31: - interface: lfullsplit.botedge31 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge32: - interface: lfullsplit.botedge32 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge33: - interface: lfullsplit.botedge33 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge34: - interface: lfullsplit.botedge34 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge35: - interface: lfullsplit.botedge35 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge36: - interface: lfullsplit.botedge36 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge37: - interface: lfullsplit.botedge37 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge38: - interface: lfullsplit.botedge38 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge39: - interface: lfullsplit.botedge39 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge4: - interface: lfullsplit.botedge4 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge40: - interface: lfullsplit.botedge40 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge41: - interface: lfullsplit.botedge41 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge42: - interface: lfullsplit.botedge42 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge43: - interface: lfullsplit.botedge43 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge44: - interface: lfullsplit.botedge44 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge45: - interface: lfullsplit.botedge45 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge46: - interface: lfullsplit.botedge46 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge47: - interface: lfullsplit.botedge47 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge48: - interface: lfullsplit.botedge48 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge49: - interface: lfullsplit.botedge49 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge5: - interface: lfullsplit.botedge5 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge50: - interface: lfullsplit.botedge50 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge51: - interface: lfullsplit.botedge51 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge52: - interface: lfullsplit.botedge52 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge53: - interface: lfullsplit.botedge53 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge54: - interface: lfullsplit.botedge54 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge55: - interface: lfullsplit.botedge55 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge56: - interface: lfullsplit.botedge56 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge57: - interface: lfullsplit.botedge57 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge58: - interface: lfullsplit.botedge58 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge59: - interface: lfullsplit.botedge59 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge6: - interface: lfullsplit.botedge6 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge60: - interface: lfullsplit.botedge60 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge61: - interface: lfullsplit.botedge61 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge62: - interface: lfullsplit.botedge62 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge63: - interface: lfullsplit.botedge63 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge64: - interface: lfullsplit.botedge64 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge65: - interface: lfullsplit.botedge65 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge66: - interface: lfullsplit.botedge66 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge67: - interface: lfullsplit.botedge67 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge68: - interface: lfullsplit.botedge68 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge69: - interface: lfullsplit.botedge69 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge7: - interface: lfullsplit.botedge7 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge70: - interface: lfullsplit.botedge70 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge71: - interface: lfullsplit.botedge71 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge72: - interface: lfullsplit.botedge72 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge73: - interface: lfullsplit.botedge73 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge74: - interface: lfullsplit.botedge74 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge75: - interface: lfullsplit.botedge75 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge76: - interface: lfullsplit.botedge76 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge77: - interface: lfullsplit.botedge77 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge78: - interface: lfullsplit.botedge78 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge79: - interface: lfullsplit.botedge79 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge8: - interface: lfullsplit.botedge8 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge80: - interface: lfullsplit.botedge80 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge81: - interface: lfullsplit.botedge81 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge82: - interface: lfullsplit.botedge82 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge83: - interface: lfullsplit.botedge83 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge84: - interface: lfullsplit.botedge84 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge85: - interface: lfullsplit.botedge85 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge86: - interface: lfullsplit.botedge86 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge87: - interface: lfullsplit.botedge87 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge88: - interface: lfullsplit.botedge88 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge89: - interface: lfullsplit.botedge89 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge9: - interface: lfullsplit.botedge9 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge90: - interface: lfullsplit.botedge90 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge91: - interface: lfullsplit.botedge91 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge92: - interface: lfullsplit.botedge92 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge93: - interface: lfullsplit.botedge93 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge94: - interface: lfullsplit.botedge94 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge95: - interface: lfullsplit.botedge95 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge96: - interface: lfullsplit.botedge96 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge97: - interface: lfullsplit.botedge97 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge98: - interface: lfullsplit.botedge98 - subcomponent: servostackbattery - servostackbattery.lfullsplit.botedge99: - interface: lfullsplit.botedge99 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge0: - interface: lfullsplit.topedge0 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge1: - interface: lfullsplit.topedge1 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge10: - interface: lfullsplit.topedge10 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge11: - interface: lfullsplit.topedge11 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge12: - interface: lfullsplit.topedge12 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge13: - interface: lfullsplit.topedge13 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge14: - interface: lfullsplit.topedge14 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge15: - interface: lfullsplit.topedge15 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge16: - interface: lfullsplit.topedge16 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge17: - interface: lfullsplit.topedge17 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge18: - interface: lfullsplit.topedge18 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge19: - interface: lfullsplit.topedge19 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge2: - interface: lfullsplit.topedge2 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge20: - interface: lfullsplit.topedge20 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge21: - interface: lfullsplit.topedge21 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge22: - interface: lfullsplit.topedge22 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge23: - interface: lfullsplit.topedge23 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge24: - interface: lfullsplit.topedge24 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge25: - interface: lfullsplit.topedge25 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge26: - interface: lfullsplit.topedge26 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge27: - interface: lfullsplit.topedge27 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge28: - interface: lfullsplit.topedge28 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge29: - interface: lfullsplit.topedge29 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge3: - interface: lfullsplit.topedge3 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge30: - interface: lfullsplit.topedge30 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge31: - interface: lfullsplit.topedge31 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge32: - interface: lfullsplit.topedge32 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge33: - interface: lfullsplit.topedge33 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge34: - interface: lfullsplit.topedge34 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge35: - interface: lfullsplit.topedge35 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge36: - interface: lfullsplit.topedge36 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge37: - interface: lfullsplit.topedge37 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge38: - interface: lfullsplit.topedge38 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge39: - interface: lfullsplit.topedge39 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge4: - interface: lfullsplit.topedge4 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge40: - interface: lfullsplit.topedge40 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge41: - interface: lfullsplit.topedge41 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge42: - interface: lfullsplit.topedge42 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge43: - interface: lfullsplit.topedge43 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge44: - interface: lfullsplit.topedge44 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge45: - interface: lfullsplit.topedge45 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge46: - interface: lfullsplit.topedge46 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge47: - interface: lfullsplit.topedge47 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge48: - interface: lfullsplit.topedge48 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge49: - interface: lfullsplit.topedge49 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge5: - interface: lfullsplit.topedge5 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge50: - interface: lfullsplit.topedge50 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge51: - interface: lfullsplit.topedge51 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge52: - interface: lfullsplit.topedge52 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge53: - interface: lfullsplit.topedge53 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge54: - interface: lfullsplit.topedge54 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge55: - interface: lfullsplit.topedge55 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge56: - interface: lfullsplit.topedge56 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge57: - interface: lfullsplit.topedge57 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge58: - interface: lfullsplit.topedge58 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge59: - interface: lfullsplit.topedge59 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge6: - interface: lfullsplit.topedge6 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge60: - interface: lfullsplit.topedge60 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge61: - interface: lfullsplit.topedge61 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge62: - interface: lfullsplit.topedge62 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge63: - interface: lfullsplit.topedge63 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge64: - interface: lfullsplit.topedge64 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge65: - interface: lfullsplit.topedge65 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge66: - interface: lfullsplit.topedge66 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge67: - interface: lfullsplit.topedge67 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge68: - interface: lfullsplit.topedge68 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge69: - interface: lfullsplit.topedge69 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge7: - interface: lfullsplit.topedge7 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge70: - interface: lfullsplit.topedge70 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge71: - interface: lfullsplit.topedge71 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge72: - interface: lfullsplit.topedge72 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge73: - interface: lfullsplit.topedge73 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge74: - interface: lfullsplit.topedge74 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge75: - interface: lfullsplit.topedge75 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge76: - interface: lfullsplit.topedge76 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge77: - interface: lfullsplit.topedge77 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge78: - interface: lfullsplit.topedge78 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge79: - interface: lfullsplit.topedge79 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge8: - interface: lfullsplit.topedge8 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge80: - interface: lfullsplit.topedge80 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge81: - interface: lfullsplit.topedge81 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge82: - interface: lfullsplit.topedge82 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge83: - interface: lfullsplit.topedge83 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge84: - interface: lfullsplit.topedge84 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge85: - interface: lfullsplit.topedge85 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge86: - interface: lfullsplit.topedge86 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge87: - interface: lfullsplit.topedge87 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge88: - interface: lfullsplit.topedge88 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge89: - interface: lfullsplit.topedge89 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge9: - interface: lfullsplit.topedge9 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge90: - interface: lfullsplit.topedge90 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge91: - interface: lfullsplit.topedge91 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge92: - interface: lfullsplit.topedge92 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge93: - interface: lfullsplit.topedge93 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge94: - interface: lfullsplit.topedge94 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge95: - interface: lfullsplit.topedge95 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge96: - interface: lfullsplit.topedge96 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge97: - interface: lfullsplit.topedge97 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge98: - interface: lfullsplit.topedge98 - subcomponent: servostackbattery - servostackbattery.lfullsplit.topedge99: - interface: lfullsplit.topedge99 - subcomponent: servostackbattery - servostackbattery.lservostackbatterysplit: - interface: lservostackbatterysplit - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge0: - interface: rfullsplit.botedge0 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge1: - interface: rfullsplit.botedge1 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge10: - interface: rfullsplit.botedge10 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge11: - interface: rfullsplit.botedge11 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge12: - interface: rfullsplit.botedge12 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge13: - interface: rfullsplit.botedge13 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge14: - interface: rfullsplit.botedge14 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge15: - interface: rfullsplit.botedge15 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge16: - interface: rfullsplit.botedge16 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge17: - interface: rfullsplit.botedge17 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge18: - interface: rfullsplit.botedge18 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge19: - interface: rfullsplit.botedge19 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge2: - interface: rfullsplit.botedge2 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge20: - interface: rfullsplit.botedge20 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge21: - interface: rfullsplit.botedge21 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge22: - interface: rfullsplit.botedge22 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge23: - interface: rfullsplit.botedge23 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge24: - interface: rfullsplit.botedge24 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge25: - interface: rfullsplit.botedge25 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge26: - interface: rfullsplit.botedge26 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge27: - interface: rfullsplit.botedge27 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge28: - interface: rfullsplit.botedge28 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge29: - interface: rfullsplit.botedge29 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge3: - interface: rfullsplit.botedge3 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge30: - interface: rfullsplit.botedge30 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge31: - interface: rfullsplit.botedge31 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge32: - interface: rfullsplit.botedge32 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge33: - interface: rfullsplit.botedge33 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge34: - interface: rfullsplit.botedge34 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge35: - interface: rfullsplit.botedge35 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge36: - interface: rfullsplit.botedge36 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge37: - interface: rfullsplit.botedge37 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge38: - interface: rfullsplit.botedge38 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge39: - interface: rfullsplit.botedge39 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge4: - interface: rfullsplit.botedge4 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge40: - interface: rfullsplit.botedge40 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge41: - interface: rfullsplit.botedge41 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge42: - interface: rfullsplit.botedge42 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge43: - interface: rfullsplit.botedge43 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge44: - interface: rfullsplit.botedge44 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge45: - interface: rfullsplit.botedge45 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge46: - interface: rfullsplit.botedge46 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge47: - interface: rfullsplit.botedge47 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge48: - interface: rfullsplit.botedge48 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge49: - interface: rfullsplit.botedge49 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge5: - interface: rfullsplit.botedge5 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge50: - interface: rfullsplit.botedge50 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge51: - interface: rfullsplit.botedge51 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge52: - interface: rfullsplit.botedge52 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge53: - interface: rfullsplit.botedge53 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge54: - interface: rfullsplit.botedge54 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge55: - interface: rfullsplit.botedge55 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge56: - interface: rfullsplit.botedge56 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge57: - interface: rfullsplit.botedge57 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge58: - interface: rfullsplit.botedge58 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge59: - interface: rfullsplit.botedge59 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge6: - interface: rfullsplit.botedge6 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge60: - interface: rfullsplit.botedge60 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge61: - interface: rfullsplit.botedge61 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge62: - interface: rfullsplit.botedge62 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge63: - interface: rfullsplit.botedge63 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge64: - interface: rfullsplit.botedge64 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge65: - interface: rfullsplit.botedge65 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge66: - interface: rfullsplit.botedge66 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge67: - interface: rfullsplit.botedge67 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge68: - interface: rfullsplit.botedge68 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge69: - interface: rfullsplit.botedge69 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge7: - interface: rfullsplit.botedge7 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge70: - interface: rfullsplit.botedge70 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge71: - interface: rfullsplit.botedge71 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge72: - interface: rfullsplit.botedge72 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge73: - interface: rfullsplit.botedge73 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge74: - interface: rfullsplit.botedge74 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge75: - interface: rfullsplit.botedge75 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge76: - interface: rfullsplit.botedge76 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge77: - interface: rfullsplit.botedge77 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge78: - interface: rfullsplit.botedge78 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge79: - interface: rfullsplit.botedge79 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge8: - interface: rfullsplit.botedge8 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge80: - interface: rfullsplit.botedge80 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge81: - interface: rfullsplit.botedge81 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge82: - interface: rfullsplit.botedge82 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge83: - interface: rfullsplit.botedge83 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge84: - interface: rfullsplit.botedge84 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge85: - interface: rfullsplit.botedge85 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge86: - interface: rfullsplit.botedge86 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge87: - interface: rfullsplit.botedge87 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge88: - interface: rfullsplit.botedge88 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge89: - interface: rfullsplit.botedge89 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge9: - interface: rfullsplit.botedge9 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge90: - interface: rfullsplit.botedge90 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge91: - interface: rfullsplit.botedge91 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge92: - interface: rfullsplit.botedge92 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge93: - interface: rfullsplit.botedge93 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge94: - interface: rfullsplit.botedge94 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge95: - interface: rfullsplit.botedge95 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge96: - interface: rfullsplit.botedge96 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge97: - interface: rfullsplit.botedge97 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge98: - interface: rfullsplit.botedge98 - subcomponent: servostackbattery - servostackbattery.rfullsplit.botedge99: - interface: rfullsplit.botedge99 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge0: - interface: rfullsplit.topedge0 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge1: - interface: rfullsplit.topedge1 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge10: - interface: rfullsplit.topedge10 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge11: - interface: rfullsplit.topedge11 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge12: - interface: rfullsplit.topedge12 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge13: - interface: rfullsplit.topedge13 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge14: - interface: rfullsplit.topedge14 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge15: - interface: rfullsplit.topedge15 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge16: - interface: rfullsplit.topedge16 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge17: - interface: rfullsplit.topedge17 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge18: - interface: rfullsplit.topedge18 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge19: - interface: rfullsplit.topedge19 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge2: - interface: rfullsplit.topedge2 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge20: - interface: rfullsplit.topedge20 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge21: - interface: rfullsplit.topedge21 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge22: - interface: rfullsplit.topedge22 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge23: - interface: rfullsplit.topedge23 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge24: - interface: rfullsplit.topedge24 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge25: - interface: rfullsplit.topedge25 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge26: - interface: rfullsplit.topedge26 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge27: - interface: rfullsplit.topedge27 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge28: - interface: rfullsplit.topedge28 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge29: - interface: rfullsplit.topedge29 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge3: - interface: rfullsplit.topedge3 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge30: - interface: rfullsplit.topedge30 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge31: - interface: rfullsplit.topedge31 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge32: - interface: rfullsplit.topedge32 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge33: - interface: rfullsplit.topedge33 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge34: - interface: rfullsplit.topedge34 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge35: - interface: rfullsplit.topedge35 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge36: - interface: rfullsplit.topedge36 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge37: - interface: rfullsplit.topedge37 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge38: - interface: rfullsplit.topedge38 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge39: - interface: rfullsplit.topedge39 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge4: - interface: rfullsplit.topedge4 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge40: - interface: rfullsplit.topedge40 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge41: - interface: rfullsplit.topedge41 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge42: - interface: rfullsplit.topedge42 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge43: - interface: rfullsplit.topedge43 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge44: - interface: rfullsplit.topedge44 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge45: - interface: rfullsplit.topedge45 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge46: - interface: rfullsplit.topedge46 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge47: - interface: rfullsplit.topedge47 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge48: - interface: rfullsplit.topedge48 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge49: - interface: rfullsplit.topedge49 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge5: - interface: rfullsplit.topedge5 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge50: - interface: rfullsplit.topedge50 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge51: - interface: rfullsplit.topedge51 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge52: - interface: rfullsplit.topedge52 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge53: - interface: rfullsplit.topedge53 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge54: - interface: rfullsplit.topedge54 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge55: - interface: rfullsplit.topedge55 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge56: - interface: rfullsplit.topedge56 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge57: - interface: rfullsplit.topedge57 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge58: - interface: rfullsplit.topedge58 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge59: - interface: rfullsplit.topedge59 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge6: - interface: rfullsplit.topedge6 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge60: - interface: rfullsplit.topedge60 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge61: - interface: rfullsplit.topedge61 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge62: - interface: rfullsplit.topedge62 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge63: - interface: rfullsplit.topedge63 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge64: - interface: rfullsplit.topedge64 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge65: - interface: rfullsplit.topedge65 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge66: - interface: rfullsplit.topedge66 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge67: - interface: rfullsplit.topedge67 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge68: - interface: rfullsplit.topedge68 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge69: - interface: rfullsplit.topedge69 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge7: - interface: rfullsplit.topedge7 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge70: - interface: rfullsplit.topedge70 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge71: - interface: rfullsplit.topedge71 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge72: - interface: rfullsplit.topedge72 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge73: - interface: rfullsplit.topedge73 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge74: - interface: rfullsplit.topedge74 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge75: - interface: rfullsplit.topedge75 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge76: - interface: rfullsplit.topedge76 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge77: - interface: rfullsplit.topedge77 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge78: - interface: rfullsplit.topedge78 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge79: - interface: rfullsplit.topedge79 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge8: - interface: rfullsplit.topedge8 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge80: - interface: rfullsplit.topedge80 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge81: - interface: rfullsplit.topedge81 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge82: - interface: rfullsplit.topedge82 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge83: - interface: rfullsplit.topedge83 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge84: - interface: rfullsplit.topedge84 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge85: - interface: rfullsplit.topedge85 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge86: - interface: rfullsplit.topedge86 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge87: - interface: rfullsplit.topedge87 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge88: - interface: rfullsplit.topedge88 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge89: - interface: rfullsplit.topedge89 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge9: - interface: rfullsplit.topedge9 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge90: - interface: rfullsplit.topedge90 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge91: - interface: rfullsplit.topedge91 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge92: - interface: rfullsplit.topedge92 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge93: - interface: rfullsplit.topedge93 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge94: - interface: rfullsplit.topedge94 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge95: - interface: rfullsplit.topedge95 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge96: - interface: rfullsplit.topedge96 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge97: - interface: rfullsplit.topedge97 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge98: - interface: rfullsplit.topedge98 - subcomponent: servostackbattery - servostackbattery.rfullsplit.topedge99: - interface: rfullsplit.topedge99 - subcomponent: servostackbattery - servostackbattery.rservostackbatterysplit: - interface: rservostackbatterysplit - subcomponent: servostackbattery - servostackbattery.servosandstack.doubleServoMount.lServoInterface: - interface: servosandstack.doubleServoMount.lServoInterface - subcomponent: servostackbattery - servostackbattery.servosandstack.doubleServoMount.lServoMount.leftInterface: - interface: servosandstack.doubleServoMount.lServoMount.leftInterface - subcomponent: servostackbattery - servostackbattery.servosandstack.doubleServoMount.lServoMount.rightInterface: - interface: servosandstack.doubleServoMount.lServoMount.rightInterface - subcomponent: servostackbattery - servostackbattery.servosandstack.doubleServoMount.rServoInterface: - interface: servosandstack.doubleServoMount.rServoInterface - subcomponent: servostackbattery - servostackbattery.servosandstack.doubleServoMount.rServoMount.leftInterface: - interface: servosandstack.doubleServoMount.rServoMount.leftInterface - subcomponent: servostackbattery - servostackbattery.servosandstack.doubleServoMount.rServoMount.rightInterface: - interface: servosandstack.doubleServoMount.rServoMount.rightInterface - subcomponent: servostackbattery - servostackbattery.servosandstack.espStack.leftArmInterface: - interface: servosandstack.espStack.leftArmInterface - subcomponent: servostackbattery - servostackbattery.servosandstack.espStack.rightArmInterface: - interface: servosandstack.espStack.rightArmInterface - subcomponent: servostackbattery - servostackbattery.servosandstack.lservostacksplit: - interface: servosandstack.lservostacksplit - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge0: - interface: servosandstack.portsplit.botedge0 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge1: - interface: servosandstack.portsplit.botedge1 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge10: - interface: servosandstack.portsplit.botedge10 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge11: - interface: servosandstack.portsplit.botedge11 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge12: - interface: servosandstack.portsplit.botedge12 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge13: - interface: servosandstack.portsplit.botedge13 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge14: - interface: servosandstack.portsplit.botedge14 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge15: - interface: servosandstack.portsplit.botedge15 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge16: - interface: servosandstack.portsplit.botedge16 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge17: - interface: servosandstack.portsplit.botedge17 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge18: - interface: servosandstack.portsplit.botedge18 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge19: - interface: servosandstack.portsplit.botedge19 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge2: - interface: servosandstack.portsplit.botedge2 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge20: - interface: servosandstack.portsplit.botedge20 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge21: - interface: servosandstack.portsplit.botedge21 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge22: - interface: servosandstack.portsplit.botedge22 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge23: - interface: servosandstack.portsplit.botedge23 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge24: - interface: servosandstack.portsplit.botedge24 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge25: - interface: servosandstack.portsplit.botedge25 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge26: - interface: servosandstack.portsplit.botedge26 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge27: - interface: servosandstack.portsplit.botedge27 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge28: - interface: servosandstack.portsplit.botedge28 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge29: - interface: servosandstack.portsplit.botedge29 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge3: - interface: servosandstack.portsplit.botedge3 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge30: - interface: servosandstack.portsplit.botedge30 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge31: - interface: servosandstack.portsplit.botedge31 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge32: - interface: servosandstack.portsplit.botedge32 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge33: - interface: servosandstack.portsplit.botedge33 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge34: - interface: servosandstack.portsplit.botedge34 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge35: - interface: servosandstack.portsplit.botedge35 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge36: - interface: servosandstack.portsplit.botedge36 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge37: - interface: servosandstack.portsplit.botedge37 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge38: - interface: servosandstack.portsplit.botedge38 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge39: - interface: servosandstack.portsplit.botedge39 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge4: - interface: servosandstack.portsplit.botedge4 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge40: - interface: servosandstack.portsplit.botedge40 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge41: - interface: servosandstack.portsplit.botedge41 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge42: - interface: servosandstack.portsplit.botedge42 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge43: - interface: servosandstack.portsplit.botedge43 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge44: - interface: servosandstack.portsplit.botedge44 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge45: - interface: servosandstack.portsplit.botedge45 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge46: - interface: servosandstack.portsplit.botedge46 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge47: - interface: servosandstack.portsplit.botedge47 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge48: - interface: servosandstack.portsplit.botedge48 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge49: - interface: servosandstack.portsplit.botedge49 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge5: - interface: servosandstack.portsplit.botedge5 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge50: - interface: servosandstack.portsplit.botedge50 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge51: - interface: servosandstack.portsplit.botedge51 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge52: - interface: servosandstack.portsplit.botedge52 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge53: - interface: servosandstack.portsplit.botedge53 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge54: - interface: servosandstack.portsplit.botedge54 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge55: - interface: servosandstack.portsplit.botedge55 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge56: - interface: servosandstack.portsplit.botedge56 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge57: - interface: servosandstack.portsplit.botedge57 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge58: - interface: servosandstack.portsplit.botedge58 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge59: - interface: servosandstack.portsplit.botedge59 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge6: - interface: servosandstack.portsplit.botedge6 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge60: - interface: servosandstack.portsplit.botedge60 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge61: - interface: servosandstack.portsplit.botedge61 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge62: - interface: servosandstack.portsplit.botedge62 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge63: - interface: servosandstack.portsplit.botedge63 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge64: - interface: servosandstack.portsplit.botedge64 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge65: - interface: servosandstack.portsplit.botedge65 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge66: - interface: servosandstack.portsplit.botedge66 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge67: - interface: servosandstack.portsplit.botedge67 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge68: - interface: servosandstack.portsplit.botedge68 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge69: - interface: servosandstack.portsplit.botedge69 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge7: - interface: servosandstack.portsplit.botedge7 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge70: - interface: servosandstack.portsplit.botedge70 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge71: - interface: servosandstack.portsplit.botedge71 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge72: - interface: servosandstack.portsplit.botedge72 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge73: - interface: servosandstack.portsplit.botedge73 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge74: - interface: servosandstack.portsplit.botedge74 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge75: - interface: servosandstack.portsplit.botedge75 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge76: - interface: servosandstack.portsplit.botedge76 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge77: - interface: servosandstack.portsplit.botedge77 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge78: - interface: servosandstack.portsplit.botedge78 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge79: - interface: servosandstack.portsplit.botedge79 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge8: - interface: servosandstack.portsplit.botedge8 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge80: - interface: servosandstack.portsplit.botedge80 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge81: - interface: servosandstack.portsplit.botedge81 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge82: - interface: servosandstack.portsplit.botedge82 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge83: - interface: servosandstack.portsplit.botedge83 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge84: - interface: servosandstack.portsplit.botedge84 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge85: - interface: servosandstack.portsplit.botedge85 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge86: - interface: servosandstack.portsplit.botedge86 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge87: - interface: servosandstack.portsplit.botedge87 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge88: - interface: servosandstack.portsplit.botedge88 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge89: - interface: servosandstack.portsplit.botedge89 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge9: - interface: servosandstack.portsplit.botedge9 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge90: - interface: servosandstack.portsplit.botedge90 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge91: - interface: servosandstack.portsplit.botedge91 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge92: - interface: servosandstack.portsplit.botedge92 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge93: - interface: servosandstack.portsplit.botedge93 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge94: - interface: servosandstack.portsplit.botedge94 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge95: - interface: servosandstack.portsplit.botedge95 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge96: - interface: servosandstack.portsplit.botedge96 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge97: - interface: servosandstack.portsplit.botedge97 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge98: - interface: servosandstack.portsplit.botedge98 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.botedge99: - interface: servosandstack.portsplit.botedge99 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge0: - interface: servosandstack.portsplit.topedge0 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge1: - interface: servosandstack.portsplit.topedge1 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge10: - interface: servosandstack.portsplit.topedge10 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge11: - interface: servosandstack.portsplit.topedge11 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge12: - interface: servosandstack.portsplit.topedge12 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge13: - interface: servosandstack.portsplit.topedge13 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge14: - interface: servosandstack.portsplit.topedge14 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge15: - interface: servosandstack.portsplit.topedge15 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge16: - interface: servosandstack.portsplit.topedge16 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge17: - interface: servosandstack.portsplit.topedge17 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge18: - interface: servosandstack.portsplit.topedge18 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge19: - interface: servosandstack.portsplit.topedge19 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge2: - interface: servosandstack.portsplit.topedge2 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge20: - interface: servosandstack.portsplit.topedge20 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge21: - interface: servosandstack.portsplit.topedge21 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge22: - interface: servosandstack.portsplit.topedge22 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge23: - interface: servosandstack.portsplit.topedge23 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge24: - interface: servosandstack.portsplit.topedge24 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge25: - interface: servosandstack.portsplit.topedge25 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge26: - interface: servosandstack.portsplit.topedge26 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge27: - interface: servosandstack.portsplit.topedge27 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge28: - interface: servosandstack.portsplit.topedge28 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge29: - interface: servosandstack.portsplit.topedge29 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge3: - interface: servosandstack.portsplit.topedge3 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge30: - interface: servosandstack.portsplit.topedge30 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge31: - interface: servosandstack.portsplit.topedge31 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge32: - interface: servosandstack.portsplit.topedge32 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge33: - interface: servosandstack.portsplit.topedge33 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge34: - interface: servosandstack.portsplit.topedge34 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge35: - interface: servosandstack.portsplit.topedge35 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge36: - interface: servosandstack.portsplit.topedge36 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge37: - interface: servosandstack.portsplit.topedge37 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge38: - interface: servosandstack.portsplit.topedge38 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge39: - interface: servosandstack.portsplit.topedge39 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge4: - interface: servosandstack.portsplit.topedge4 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge40: - interface: servosandstack.portsplit.topedge40 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge41: - interface: servosandstack.portsplit.topedge41 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge42: - interface: servosandstack.portsplit.topedge42 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge43: - interface: servosandstack.portsplit.topedge43 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge44: - interface: servosandstack.portsplit.topedge44 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge45: - interface: servosandstack.portsplit.topedge45 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge46: - interface: servosandstack.portsplit.topedge46 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge47: - interface: servosandstack.portsplit.topedge47 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge48: - interface: servosandstack.portsplit.topedge48 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge49: - interface: servosandstack.portsplit.topedge49 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge5: - interface: servosandstack.portsplit.topedge5 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge50: - interface: servosandstack.portsplit.topedge50 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge51: - interface: servosandstack.portsplit.topedge51 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge52: - interface: servosandstack.portsplit.topedge52 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge53: - interface: servosandstack.portsplit.topedge53 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge54: - interface: servosandstack.portsplit.topedge54 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge55: - interface: servosandstack.portsplit.topedge55 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge56: - interface: servosandstack.portsplit.topedge56 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge57: - interface: servosandstack.portsplit.topedge57 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge58: - interface: servosandstack.portsplit.topedge58 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge59: - interface: servosandstack.portsplit.topedge59 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge6: - interface: servosandstack.portsplit.topedge6 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge60: - interface: servosandstack.portsplit.topedge60 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge61: - interface: servosandstack.portsplit.topedge61 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge62: - interface: servosandstack.portsplit.topedge62 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge63: - interface: servosandstack.portsplit.topedge63 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge64: - interface: servosandstack.portsplit.topedge64 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge65: - interface: servosandstack.portsplit.topedge65 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge66: - interface: servosandstack.portsplit.topedge66 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge67: - interface: servosandstack.portsplit.topedge67 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge68: - interface: servosandstack.portsplit.topedge68 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge69: - interface: servosandstack.portsplit.topedge69 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge7: - interface: servosandstack.portsplit.topedge7 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge70: - interface: servosandstack.portsplit.topedge70 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge71: - interface: servosandstack.portsplit.topedge71 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge72: - interface: servosandstack.portsplit.topedge72 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge73: - interface: servosandstack.portsplit.topedge73 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge74: - interface: servosandstack.portsplit.topedge74 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge75: - interface: servosandstack.portsplit.topedge75 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge76: - interface: servosandstack.portsplit.topedge76 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge77: - interface: servosandstack.portsplit.topedge77 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge78: - interface: servosandstack.portsplit.topedge78 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge79: - interface: servosandstack.portsplit.topedge79 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge8: - interface: servosandstack.portsplit.topedge8 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge80: - interface: servosandstack.portsplit.topedge80 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge81: - interface: servosandstack.portsplit.topedge81 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge82: - interface: servosandstack.portsplit.topedge82 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge83: - interface: servosandstack.portsplit.topedge83 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge84: - interface: servosandstack.portsplit.topedge84 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge85: - interface: servosandstack.portsplit.topedge85 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge86: - interface: servosandstack.portsplit.topedge86 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge87: - interface: servosandstack.portsplit.topedge87 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge88: - interface: servosandstack.portsplit.topedge88 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge89: - interface: servosandstack.portsplit.topedge89 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge9: - interface: servosandstack.portsplit.topedge9 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge90: - interface: servosandstack.portsplit.topedge90 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge91: - interface: servosandstack.portsplit.topedge91 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge92: - interface: servosandstack.portsplit.topedge92 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge93: - interface: servosandstack.portsplit.topedge93 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge94: - interface: servosandstack.portsplit.topedge94 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge95: - interface: servosandstack.portsplit.topedge95 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge96: - interface: servosandstack.portsplit.topedge96 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge97: - interface: servosandstack.portsplit.topedge97 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge98: - interface: servosandstack.portsplit.topedge98 - subcomponent: servostackbattery - servostackbattery.servosandstack.portsplit.topedge99: - interface: servosandstack.portsplit.topedge99 - subcomponent: servostackbattery - servostackbattery.servosandstack.rservostacksplit: - interface: servosandstack.rservostacksplit - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge0: - interface: servosandstack.starsplit.botedge0 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge1: - interface: servosandstack.starsplit.botedge1 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge10: - interface: servosandstack.starsplit.botedge10 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge11: - interface: servosandstack.starsplit.botedge11 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge12: - interface: servosandstack.starsplit.botedge12 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge13: - interface: servosandstack.starsplit.botedge13 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge14: - interface: servosandstack.starsplit.botedge14 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge15: - interface: servosandstack.starsplit.botedge15 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge16: - interface: servosandstack.starsplit.botedge16 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge17: - interface: servosandstack.starsplit.botedge17 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge18: - interface: servosandstack.starsplit.botedge18 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge19: - interface: servosandstack.starsplit.botedge19 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge2: - interface: servosandstack.starsplit.botedge2 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge20: - interface: servosandstack.starsplit.botedge20 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge21: - interface: servosandstack.starsplit.botedge21 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge22: - interface: servosandstack.starsplit.botedge22 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge23: - interface: servosandstack.starsplit.botedge23 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge24: - interface: servosandstack.starsplit.botedge24 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge25: - interface: servosandstack.starsplit.botedge25 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge26: - interface: servosandstack.starsplit.botedge26 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge27: - interface: servosandstack.starsplit.botedge27 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge28: - interface: servosandstack.starsplit.botedge28 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge29: - interface: servosandstack.starsplit.botedge29 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge3: - interface: servosandstack.starsplit.botedge3 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge30: - interface: servosandstack.starsplit.botedge30 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge31: - interface: servosandstack.starsplit.botedge31 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge32: - interface: servosandstack.starsplit.botedge32 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge33: - interface: servosandstack.starsplit.botedge33 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge34: - interface: servosandstack.starsplit.botedge34 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge35: - interface: servosandstack.starsplit.botedge35 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge36: - interface: servosandstack.starsplit.botedge36 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge37: - interface: servosandstack.starsplit.botedge37 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge38: - interface: servosandstack.starsplit.botedge38 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge39: - interface: servosandstack.starsplit.botedge39 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge4: - interface: servosandstack.starsplit.botedge4 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge40: - interface: servosandstack.starsplit.botedge40 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge41: - interface: servosandstack.starsplit.botedge41 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge42: - interface: servosandstack.starsplit.botedge42 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge43: - interface: servosandstack.starsplit.botedge43 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge44: - interface: servosandstack.starsplit.botedge44 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge45: - interface: servosandstack.starsplit.botedge45 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge46: - interface: servosandstack.starsplit.botedge46 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge47: - interface: servosandstack.starsplit.botedge47 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge48: - interface: servosandstack.starsplit.botedge48 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge49: - interface: servosandstack.starsplit.botedge49 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge5: - interface: servosandstack.starsplit.botedge5 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge50: - interface: servosandstack.starsplit.botedge50 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge51: - interface: servosandstack.starsplit.botedge51 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge52: - interface: servosandstack.starsplit.botedge52 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge53: - interface: servosandstack.starsplit.botedge53 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge54: - interface: servosandstack.starsplit.botedge54 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge55: - interface: servosandstack.starsplit.botedge55 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge56: - interface: servosandstack.starsplit.botedge56 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge57: - interface: servosandstack.starsplit.botedge57 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge58: - interface: servosandstack.starsplit.botedge58 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge59: - interface: servosandstack.starsplit.botedge59 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge6: - interface: servosandstack.starsplit.botedge6 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge60: - interface: servosandstack.starsplit.botedge60 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge61: - interface: servosandstack.starsplit.botedge61 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge62: - interface: servosandstack.starsplit.botedge62 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge63: - interface: servosandstack.starsplit.botedge63 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge64: - interface: servosandstack.starsplit.botedge64 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge65: - interface: servosandstack.starsplit.botedge65 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge66: - interface: servosandstack.starsplit.botedge66 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge67: - interface: servosandstack.starsplit.botedge67 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge68: - interface: servosandstack.starsplit.botedge68 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge69: - interface: servosandstack.starsplit.botedge69 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge7: - interface: servosandstack.starsplit.botedge7 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge70: - interface: servosandstack.starsplit.botedge70 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge71: - interface: servosandstack.starsplit.botedge71 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge72: - interface: servosandstack.starsplit.botedge72 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge73: - interface: servosandstack.starsplit.botedge73 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge74: - interface: servosandstack.starsplit.botedge74 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge75: - interface: servosandstack.starsplit.botedge75 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge76: - interface: servosandstack.starsplit.botedge76 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge77: - interface: servosandstack.starsplit.botedge77 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge78: - interface: servosandstack.starsplit.botedge78 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge79: - interface: servosandstack.starsplit.botedge79 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge8: - interface: servosandstack.starsplit.botedge8 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge80: - interface: servosandstack.starsplit.botedge80 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge81: - interface: servosandstack.starsplit.botedge81 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge82: - interface: servosandstack.starsplit.botedge82 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge83: - interface: servosandstack.starsplit.botedge83 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge84: - interface: servosandstack.starsplit.botedge84 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge85: - interface: servosandstack.starsplit.botedge85 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge86: - interface: servosandstack.starsplit.botedge86 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge87: - interface: servosandstack.starsplit.botedge87 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge88: - interface: servosandstack.starsplit.botedge88 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge89: - interface: servosandstack.starsplit.botedge89 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge9: - interface: servosandstack.starsplit.botedge9 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge90: - interface: servosandstack.starsplit.botedge90 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge91: - interface: servosandstack.starsplit.botedge91 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge92: - interface: servosandstack.starsplit.botedge92 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge93: - interface: servosandstack.starsplit.botedge93 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge94: - interface: servosandstack.starsplit.botedge94 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge95: - interface: servosandstack.starsplit.botedge95 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge96: - interface: servosandstack.starsplit.botedge96 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge97: - interface: servosandstack.starsplit.botedge97 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge98: - interface: servosandstack.starsplit.botedge98 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.botedge99: - interface: servosandstack.starsplit.botedge99 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge0: - interface: servosandstack.starsplit.topedge0 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge1: - interface: servosandstack.starsplit.topedge1 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge10: - interface: servosandstack.starsplit.topedge10 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge11: - interface: servosandstack.starsplit.topedge11 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge12: - interface: servosandstack.starsplit.topedge12 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge13: - interface: servosandstack.starsplit.topedge13 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge14: - interface: servosandstack.starsplit.topedge14 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge15: - interface: servosandstack.starsplit.topedge15 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge16: - interface: servosandstack.starsplit.topedge16 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge17: - interface: servosandstack.starsplit.topedge17 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge18: - interface: servosandstack.starsplit.topedge18 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge19: - interface: servosandstack.starsplit.topedge19 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge2: - interface: servosandstack.starsplit.topedge2 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge20: - interface: servosandstack.starsplit.topedge20 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge21: - interface: servosandstack.starsplit.topedge21 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge22: - interface: servosandstack.starsplit.topedge22 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge23: - interface: servosandstack.starsplit.topedge23 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge24: - interface: servosandstack.starsplit.topedge24 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge25: - interface: servosandstack.starsplit.topedge25 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge26: - interface: servosandstack.starsplit.topedge26 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge27: - interface: servosandstack.starsplit.topedge27 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge28: - interface: servosandstack.starsplit.topedge28 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge29: - interface: servosandstack.starsplit.topedge29 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge3: - interface: servosandstack.starsplit.topedge3 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge30: - interface: servosandstack.starsplit.topedge30 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge31: - interface: servosandstack.starsplit.topedge31 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge32: - interface: servosandstack.starsplit.topedge32 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge33: - interface: servosandstack.starsplit.topedge33 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge34: - interface: servosandstack.starsplit.topedge34 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge35: - interface: servosandstack.starsplit.topedge35 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge36: - interface: servosandstack.starsplit.topedge36 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge37: - interface: servosandstack.starsplit.topedge37 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge38: - interface: servosandstack.starsplit.topedge38 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge39: - interface: servosandstack.starsplit.topedge39 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge4: - interface: servosandstack.starsplit.topedge4 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge40: - interface: servosandstack.starsplit.topedge40 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge41: - interface: servosandstack.starsplit.topedge41 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge42: - interface: servosandstack.starsplit.topedge42 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge43: - interface: servosandstack.starsplit.topedge43 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge44: - interface: servosandstack.starsplit.topedge44 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge45: - interface: servosandstack.starsplit.topedge45 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge46: - interface: servosandstack.starsplit.topedge46 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge47: - interface: servosandstack.starsplit.topedge47 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge48: - interface: servosandstack.starsplit.topedge48 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge49: - interface: servosandstack.starsplit.topedge49 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge5: - interface: servosandstack.starsplit.topedge5 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge50: - interface: servosandstack.starsplit.topedge50 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge51: - interface: servosandstack.starsplit.topedge51 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge52: - interface: servosandstack.starsplit.topedge52 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge53: - interface: servosandstack.starsplit.topedge53 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge54: - interface: servosandstack.starsplit.topedge54 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge55: - interface: servosandstack.starsplit.topedge55 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge56: - interface: servosandstack.starsplit.topedge56 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge57: - interface: servosandstack.starsplit.topedge57 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge58: - interface: servosandstack.starsplit.topedge58 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge59: - interface: servosandstack.starsplit.topedge59 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge6: - interface: servosandstack.starsplit.topedge6 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge60: - interface: servosandstack.starsplit.topedge60 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge61: - interface: servosandstack.starsplit.topedge61 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge62: - interface: servosandstack.starsplit.topedge62 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge63: - interface: servosandstack.starsplit.topedge63 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge64: - interface: servosandstack.starsplit.topedge64 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge65: - interface: servosandstack.starsplit.topedge65 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge66: - interface: servosandstack.starsplit.topedge66 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge67: - interface: servosandstack.starsplit.topedge67 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge68: - interface: servosandstack.starsplit.topedge68 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge69: - interface: servosandstack.starsplit.topedge69 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge7: - interface: servosandstack.starsplit.topedge7 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge70: - interface: servosandstack.starsplit.topedge70 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge71: - interface: servosandstack.starsplit.topedge71 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge72: - interface: servosandstack.starsplit.topedge72 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge73: - interface: servosandstack.starsplit.topedge73 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge74: - interface: servosandstack.starsplit.topedge74 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge75: - interface: servosandstack.starsplit.topedge75 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge76: - interface: servosandstack.starsplit.topedge76 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge77: - interface: servosandstack.starsplit.topedge77 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge78: - interface: servosandstack.starsplit.topedge78 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge79: - interface: servosandstack.starsplit.topedge79 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge8: - interface: servosandstack.starsplit.topedge8 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge80: - interface: servosandstack.starsplit.topedge80 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge81: - interface: servosandstack.starsplit.topedge81 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge82: - interface: servosandstack.starsplit.topedge82 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge83: - interface: servosandstack.starsplit.topedge83 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge84: - interface: servosandstack.starsplit.topedge84 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge85: - interface: servosandstack.starsplit.topedge85 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge86: - interface: servosandstack.starsplit.topedge86 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge87: - interface: servosandstack.starsplit.topedge87 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge88: - interface: servosandstack.starsplit.topedge88 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge89: - interface: servosandstack.starsplit.topedge89 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge9: - interface: servosandstack.starsplit.topedge9 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge90: - interface: servosandstack.starsplit.topedge90 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge91: - interface: servosandstack.starsplit.topedge91 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge92: - interface: servosandstack.starsplit.topedge92 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge93: - interface: servosandstack.starsplit.topedge93 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge94: - interface: servosandstack.starsplit.topedge94 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge95: - interface: servosandstack.starsplit.topedge95 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge96: - interface: servosandstack.starsplit.topedge96 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge97: - interface: servosandstack.starsplit.topedge97 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge98: - interface: servosandstack.starsplit.topedge98 - subcomponent: servostackbattery - servostackbattery.servosandstack.starsplit.topedge99: - interface: servosandstack.starsplit.topedge99 - subcomponent: servostackbattery - starsplit.botedge0: + subcomponent: portsplit0 + portsplit1.botedge0: interface: botedge0 - subcomponent: starsplit - starsplit.botedge1: + subcomponent: portsplit1 + portsplit1.botedge1: interface: botedge1 - subcomponent: starsplit - starsplit.botedge10: + subcomponent: portsplit1 + portsplit1.botedge10: interface: botedge10 - subcomponent: starsplit - starsplit.botedge11: + subcomponent: portsplit1 + portsplit1.botedge11: interface: botedge11 - subcomponent: starsplit - starsplit.botedge12: + subcomponent: portsplit1 + portsplit1.botedge12: interface: botedge12 - subcomponent: starsplit - starsplit.botedge13: + subcomponent: portsplit1 + portsplit1.botedge13: interface: botedge13 - subcomponent: starsplit - starsplit.botedge14: + subcomponent: portsplit1 + portsplit1.botedge14: interface: botedge14 - subcomponent: starsplit - starsplit.botedge15: + subcomponent: portsplit1 + portsplit1.botedge15: interface: botedge15 - subcomponent: starsplit - starsplit.botedge16: + subcomponent: portsplit1 + portsplit1.botedge16: interface: botedge16 - subcomponent: starsplit - starsplit.botedge17: + subcomponent: portsplit1 + portsplit1.botedge17: interface: botedge17 - subcomponent: starsplit - starsplit.botedge18: + subcomponent: portsplit1 + portsplit1.botedge18: interface: botedge18 - subcomponent: starsplit - starsplit.botedge19: + subcomponent: portsplit1 + portsplit1.botedge19: interface: botedge19 - subcomponent: starsplit - starsplit.botedge2: + subcomponent: portsplit1 + portsplit1.botedge2: interface: botedge2 - subcomponent: starsplit - starsplit.botedge20: + subcomponent: portsplit1 + portsplit1.botedge20: interface: botedge20 - subcomponent: starsplit - starsplit.botedge21: + subcomponent: portsplit1 + portsplit1.botedge21: interface: botedge21 - subcomponent: starsplit - starsplit.botedge22: + subcomponent: portsplit1 + portsplit1.botedge22: interface: botedge22 - subcomponent: starsplit - starsplit.botedge23: + subcomponent: portsplit1 + portsplit1.botedge23: interface: botedge23 - subcomponent: starsplit - starsplit.botedge24: + subcomponent: portsplit1 + portsplit1.botedge24: interface: botedge24 - subcomponent: starsplit - starsplit.botedge25: + subcomponent: portsplit1 + portsplit1.botedge25: interface: botedge25 - subcomponent: starsplit - starsplit.botedge26: + subcomponent: portsplit1 + portsplit1.botedge26: interface: botedge26 - subcomponent: starsplit - starsplit.botedge27: + subcomponent: portsplit1 + portsplit1.botedge27: interface: botedge27 - subcomponent: starsplit - starsplit.botedge28: + subcomponent: portsplit1 + portsplit1.botedge28: interface: botedge28 - subcomponent: starsplit - starsplit.botedge29: + subcomponent: portsplit1 + portsplit1.botedge29: interface: botedge29 - subcomponent: starsplit - starsplit.botedge3: + subcomponent: portsplit1 + portsplit1.botedge3: interface: botedge3 - subcomponent: starsplit - starsplit.botedge30: + subcomponent: portsplit1 + portsplit1.botedge30: interface: botedge30 - subcomponent: starsplit - starsplit.botedge31: + subcomponent: portsplit1 + portsplit1.botedge31: interface: botedge31 - subcomponent: starsplit - starsplit.botedge32: + subcomponent: portsplit1 + portsplit1.botedge32: interface: botedge32 - subcomponent: starsplit - starsplit.botedge33: + subcomponent: portsplit1 + portsplit1.botedge33: interface: botedge33 - subcomponent: starsplit - starsplit.botedge34: + subcomponent: portsplit1 + portsplit1.botedge34: interface: botedge34 - subcomponent: starsplit - starsplit.botedge35: + subcomponent: portsplit1 + portsplit1.botedge35: interface: botedge35 - subcomponent: starsplit - starsplit.botedge36: + subcomponent: portsplit1 + portsplit1.botedge36: interface: botedge36 - subcomponent: starsplit - starsplit.botedge37: + subcomponent: portsplit1 + portsplit1.botedge37: interface: botedge37 - subcomponent: starsplit - starsplit.botedge38: + subcomponent: portsplit1 + portsplit1.botedge38: interface: botedge38 - subcomponent: starsplit - starsplit.botedge39: + subcomponent: portsplit1 + portsplit1.botedge39: interface: botedge39 - subcomponent: starsplit - starsplit.botedge4: + subcomponent: portsplit1 + portsplit1.botedge4: interface: botedge4 - subcomponent: starsplit - starsplit.botedge40: + subcomponent: portsplit1 + portsplit1.botedge40: interface: botedge40 - subcomponent: starsplit - starsplit.botedge41: + subcomponent: portsplit1 + portsplit1.botedge41: interface: botedge41 - subcomponent: starsplit - starsplit.botedge42: + subcomponent: portsplit1 + portsplit1.botedge42: interface: botedge42 - subcomponent: starsplit - starsplit.botedge43: + subcomponent: portsplit1 + portsplit1.botedge43: interface: botedge43 - subcomponent: starsplit - starsplit.botedge44: + subcomponent: portsplit1 + portsplit1.botedge44: interface: botedge44 - subcomponent: starsplit - starsplit.botedge45: + subcomponent: portsplit1 + portsplit1.botedge45: interface: botedge45 - subcomponent: starsplit - starsplit.botedge46: + subcomponent: portsplit1 + portsplit1.botedge46: interface: botedge46 - subcomponent: starsplit - starsplit.botedge47: + subcomponent: portsplit1 + portsplit1.botedge47: interface: botedge47 - subcomponent: starsplit - starsplit.botedge48: + subcomponent: portsplit1 + portsplit1.botedge48: interface: botedge48 - subcomponent: starsplit - starsplit.botedge49: + subcomponent: portsplit1 + portsplit1.botedge49: interface: botedge49 - subcomponent: starsplit - starsplit.botedge5: + subcomponent: portsplit1 + portsplit1.botedge5: interface: botedge5 - subcomponent: starsplit - starsplit.botedge50: + subcomponent: portsplit1 + portsplit1.botedge50: interface: botedge50 - subcomponent: starsplit - starsplit.botedge51: + subcomponent: portsplit1 + portsplit1.botedge51: interface: botedge51 - subcomponent: starsplit - starsplit.botedge52: + subcomponent: portsplit1 + portsplit1.botedge52: interface: botedge52 - subcomponent: starsplit - starsplit.botedge53: + subcomponent: portsplit1 + portsplit1.botedge53: interface: botedge53 - subcomponent: starsplit - starsplit.botedge54: + subcomponent: portsplit1 + portsplit1.botedge54: interface: botedge54 - subcomponent: starsplit - starsplit.botedge55: + subcomponent: portsplit1 + portsplit1.botedge55: interface: botedge55 - subcomponent: starsplit - starsplit.botedge56: + subcomponent: portsplit1 + portsplit1.botedge56: interface: botedge56 - subcomponent: starsplit - starsplit.botedge57: + subcomponent: portsplit1 + portsplit1.botedge57: interface: botedge57 - subcomponent: starsplit - starsplit.botedge58: + subcomponent: portsplit1 + portsplit1.botedge58: interface: botedge58 - subcomponent: starsplit - starsplit.botedge59: + subcomponent: portsplit1 + portsplit1.botedge59: interface: botedge59 - subcomponent: starsplit - starsplit.botedge6: + subcomponent: portsplit1 + portsplit1.botedge6: interface: botedge6 - subcomponent: starsplit - starsplit.botedge60: + subcomponent: portsplit1 + portsplit1.botedge60: interface: botedge60 - subcomponent: starsplit - starsplit.botedge61: + subcomponent: portsplit1 + portsplit1.botedge61: interface: botedge61 - subcomponent: starsplit - starsplit.botedge62: + subcomponent: portsplit1 + portsplit1.botedge62: interface: botedge62 - subcomponent: starsplit - starsplit.botedge63: + subcomponent: portsplit1 + portsplit1.botedge63: interface: botedge63 - subcomponent: starsplit - starsplit.botedge64: + subcomponent: portsplit1 + portsplit1.botedge64: interface: botedge64 - subcomponent: starsplit - starsplit.botedge65: + subcomponent: portsplit1 + portsplit1.botedge65: interface: botedge65 - subcomponent: starsplit - starsplit.botedge66: + subcomponent: portsplit1 + portsplit1.botedge66: interface: botedge66 - subcomponent: starsplit - starsplit.botedge67: + subcomponent: portsplit1 + portsplit1.botedge67: interface: botedge67 - subcomponent: starsplit - starsplit.botedge68: + subcomponent: portsplit1 + portsplit1.botedge68: interface: botedge68 - subcomponent: starsplit - starsplit.botedge69: + subcomponent: portsplit1 + portsplit1.botedge69: interface: botedge69 - subcomponent: starsplit - starsplit.botedge7: + subcomponent: portsplit1 + portsplit1.botedge7: interface: botedge7 - subcomponent: starsplit - starsplit.botedge70: + subcomponent: portsplit1 + portsplit1.botedge70: interface: botedge70 - subcomponent: starsplit - starsplit.botedge71: + subcomponent: portsplit1 + portsplit1.botedge71: interface: botedge71 - subcomponent: starsplit - starsplit.botedge72: + subcomponent: portsplit1 + portsplit1.botedge72: interface: botedge72 - subcomponent: starsplit - starsplit.botedge73: + subcomponent: portsplit1 + portsplit1.botedge73: interface: botedge73 - subcomponent: starsplit - starsplit.botedge74: + subcomponent: portsplit1 + portsplit1.botedge74: interface: botedge74 - subcomponent: starsplit - starsplit.botedge75: + subcomponent: portsplit1 + portsplit1.botedge75: interface: botedge75 - subcomponent: starsplit - starsplit.botedge76: + subcomponent: portsplit1 + portsplit1.botedge76: interface: botedge76 - subcomponent: starsplit - starsplit.botedge77: + subcomponent: portsplit1 + portsplit1.botedge77: interface: botedge77 - subcomponent: starsplit - starsplit.botedge78: + subcomponent: portsplit1 + portsplit1.botedge78: interface: botedge78 - subcomponent: starsplit - starsplit.botedge79: + subcomponent: portsplit1 + portsplit1.botedge79: interface: botedge79 - subcomponent: starsplit - starsplit.botedge8: + subcomponent: portsplit1 + portsplit1.botedge8: interface: botedge8 - subcomponent: starsplit - starsplit.botedge80: + subcomponent: portsplit1 + portsplit1.botedge80: interface: botedge80 - subcomponent: starsplit - starsplit.botedge81: + subcomponent: portsplit1 + portsplit1.botedge81: interface: botedge81 - subcomponent: starsplit - starsplit.botedge82: + subcomponent: portsplit1 + portsplit1.botedge82: interface: botedge82 - subcomponent: starsplit - starsplit.botedge83: + subcomponent: portsplit1 + portsplit1.botedge83: interface: botedge83 - subcomponent: starsplit - starsplit.botedge84: + subcomponent: portsplit1 + portsplit1.botedge84: interface: botedge84 - subcomponent: starsplit - starsplit.botedge85: + subcomponent: portsplit1 + portsplit1.botedge85: interface: botedge85 - subcomponent: starsplit - starsplit.botedge86: + subcomponent: portsplit1 + portsplit1.botedge86: interface: botedge86 - subcomponent: starsplit - starsplit.botedge87: + subcomponent: portsplit1 + portsplit1.botedge87: interface: botedge87 - subcomponent: starsplit - starsplit.botedge88: + subcomponent: portsplit1 + portsplit1.botedge88: interface: botedge88 - subcomponent: starsplit - starsplit.botedge89: + subcomponent: portsplit1 + portsplit1.botedge89: interface: botedge89 - subcomponent: starsplit - starsplit.botedge9: + subcomponent: portsplit1 + portsplit1.botedge9: interface: botedge9 - subcomponent: starsplit - starsplit.botedge90: + subcomponent: portsplit1 + portsplit1.botedge90: interface: botedge90 - subcomponent: starsplit - starsplit.botedge91: + subcomponent: portsplit1 + portsplit1.botedge91: interface: botedge91 - subcomponent: starsplit - starsplit.botedge92: + subcomponent: portsplit1 + portsplit1.botedge92: interface: botedge92 - subcomponent: starsplit - starsplit.botedge93: + subcomponent: portsplit1 + portsplit1.botedge93: interface: botedge93 - subcomponent: starsplit - starsplit.botedge94: + subcomponent: portsplit1 + portsplit1.botedge94: interface: botedge94 - subcomponent: starsplit - starsplit.botedge95: + subcomponent: portsplit1 + portsplit1.botedge95: interface: botedge95 - subcomponent: starsplit - starsplit.botedge96: + subcomponent: portsplit1 + portsplit1.botedge96: interface: botedge96 - subcomponent: starsplit - starsplit.botedge97: + subcomponent: portsplit1 + portsplit1.botedge97: interface: botedge97 - subcomponent: starsplit - starsplit.botedge98: + subcomponent: portsplit1 + portsplit1.botedge98: interface: botedge98 - subcomponent: starsplit - starsplit.botedge99: + subcomponent: portsplit1 + portsplit1.botedge99: interface: botedge99 - subcomponent: starsplit - starsplit.topedge0: + subcomponent: portsplit1 + portsplit1.topedge0: interface: topedge0 - subcomponent: starsplit - starsplit.topedge1: + subcomponent: portsplit1 + portsplit1.topedge1: interface: topedge1 - subcomponent: starsplit - starsplit.topedge10: + subcomponent: portsplit1 + portsplit1.topedge10: interface: topedge10 - subcomponent: starsplit - starsplit.topedge11: + subcomponent: portsplit1 + portsplit1.topedge11: interface: topedge11 - subcomponent: starsplit - starsplit.topedge12: + subcomponent: portsplit1 + portsplit1.topedge12: interface: topedge12 - subcomponent: starsplit - starsplit.topedge13: + subcomponent: portsplit1 + portsplit1.topedge13: interface: topedge13 - subcomponent: starsplit - starsplit.topedge14: + subcomponent: portsplit1 + portsplit1.topedge14: interface: topedge14 - subcomponent: starsplit - starsplit.topedge15: + subcomponent: portsplit1 + portsplit1.topedge15: interface: topedge15 - subcomponent: starsplit - starsplit.topedge16: + subcomponent: portsplit1 + portsplit1.topedge16: interface: topedge16 - subcomponent: starsplit - starsplit.topedge17: + subcomponent: portsplit1 + portsplit1.topedge17: interface: topedge17 - subcomponent: starsplit - starsplit.topedge18: + subcomponent: portsplit1 + portsplit1.topedge18: interface: topedge18 - subcomponent: starsplit - starsplit.topedge19: + subcomponent: portsplit1 + portsplit1.topedge19: interface: topedge19 - subcomponent: starsplit - starsplit.topedge2: + subcomponent: portsplit1 + portsplit1.topedge2: interface: topedge2 - subcomponent: starsplit - starsplit.topedge20: + subcomponent: portsplit1 + portsplit1.topedge20: interface: topedge20 - subcomponent: starsplit - starsplit.topedge21: + subcomponent: portsplit1 + portsplit1.topedge21: interface: topedge21 - subcomponent: starsplit - starsplit.topedge22: + subcomponent: portsplit1 + portsplit1.topedge22: interface: topedge22 - subcomponent: starsplit - starsplit.topedge23: + subcomponent: portsplit1 + portsplit1.topedge23: interface: topedge23 - subcomponent: starsplit - starsplit.topedge24: + subcomponent: portsplit1 + portsplit1.topedge24: interface: topedge24 - subcomponent: starsplit - starsplit.topedge25: + subcomponent: portsplit1 + portsplit1.topedge25: interface: topedge25 - subcomponent: starsplit - starsplit.topedge26: + subcomponent: portsplit1 + portsplit1.topedge26: interface: topedge26 - subcomponent: starsplit - starsplit.topedge27: + subcomponent: portsplit1 + portsplit1.topedge27: interface: topedge27 - subcomponent: starsplit - starsplit.topedge28: + subcomponent: portsplit1 + portsplit1.topedge28: interface: topedge28 - subcomponent: starsplit - starsplit.topedge29: + subcomponent: portsplit1 + portsplit1.topedge29: interface: topedge29 - subcomponent: starsplit - starsplit.topedge3: + subcomponent: portsplit1 + portsplit1.topedge3: interface: topedge3 - subcomponent: starsplit - starsplit.topedge30: + subcomponent: portsplit1 + portsplit1.topedge30: interface: topedge30 - subcomponent: starsplit - starsplit.topedge31: + subcomponent: portsplit1 + portsplit1.topedge31: interface: topedge31 - subcomponent: starsplit - starsplit.topedge32: + subcomponent: portsplit1 + portsplit1.topedge32: interface: topedge32 - subcomponent: starsplit - starsplit.topedge33: + subcomponent: portsplit1 + portsplit1.topedge33: interface: topedge33 - subcomponent: starsplit - starsplit.topedge34: + subcomponent: portsplit1 + portsplit1.topedge34: interface: topedge34 - subcomponent: starsplit - starsplit.topedge35: + subcomponent: portsplit1 + portsplit1.topedge35: interface: topedge35 - subcomponent: starsplit - starsplit.topedge36: + subcomponent: portsplit1 + portsplit1.topedge36: interface: topedge36 - subcomponent: starsplit - starsplit.topedge37: + subcomponent: portsplit1 + portsplit1.topedge37: interface: topedge37 - subcomponent: starsplit - starsplit.topedge38: + subcomponent: portsplit1 + portsplit1.topedge38: interface: topedge38 - subcomponent: starsplit - starsplit.topedge39: + subcomponent: portsplit1 + portsplit1.topedge39: interface: topedge39 - subcomponent: starsplit - starsplit.topedge4: + subcomponent: portsplit1 + portsplit1.topedge4: interface: topedge4 - subcomponent: starsplit - starsplit.topedge40: + subcomponent: portsplit1 + portsplit1.topedge40: interface: topedge40 - subcomponent: starsplit - starsplit.topedge41: + subcomponent: portsplit1 + portsplit1.topedge41: interface: topedge41 - subcomponent: starsplit - starsplit.topedge42: + subcomponent: portsplit1 + portsplit1.topedge42: interface: topedge42 - subcomponent: starsplit - starsplit.topedge43: + subcomponent: portsplit1 + portsplit1.topedge43: interface: topedge43 - subcomponent: starsplit - starsplit.topedge44: + subcomponent: portsplit1 + portsplit1.topedge44: interface: topedge44 - subcomponent: starsplit - starsplit.topedge45: + subcomponent: portsplit1 + portsplit1.topedge45: interface: topedge45 - subcomponent: starsplit - starsplit.topedge46: + subcomponent: portsplit1 + portsplit1.topedge46: interface: topedge46 - subcomponent: starsplit - starsplit.topedge47: + subcomponent: portsplit1 + portsplit1.topedge47: interface: topedge47 - subcomponent: starsplit - starsplit.topedge48: + subcomponent: portsplit1 + portsplit1.topedge48: interface: topedge48 - subcomponent: starsplit - starsplit.topedge49: + subcomponent: portsplit1 + portsplit1.topedge49: interface: topedge49 - subcomponent: starsplit - starsplit.topedge5: + subcomponent: portsplit1 + portsplit1.topedge5: interface: topedge5 - subcomponent: starsplit - starsplit.topedge50: + subcomponent: portsplit1 + portsplit1.topedge50: interface: topedge50 - subcomponent: starsplit - starsplit.topedge51: + subcomponent: portsplit1 + portsplit1.topedge51: interface: topedge51 - subcomponent: starsplit - starsplit.topedge52: + subcomponent: portsplit1 + portsplit1.topedge52: interface: topedge52 - subcomponent: starsplit - starsplit.topedge53: + subcomponent: portsplit1 + portsplit1.topedge53: interface: topedge53 - subcomponent: starsplit - starsplit.topedge54: + subcomponent: portsplit1 + portsplit1.topedge54: interface: topedge54 - subcomponent: starsplit - starsplit.topedge55: + subcomponent: portsplit1 + portsplit1.topedge55: interface: topedge55 - subcomponent: starsplit - starsplit.topedge56: + subcomponent: portsplit1 + portsplit1.topedge56: interface: topedge56 - subcomponent: starsplit - starsplit.topedge57: + subcomponent: portsplit1 + portsplit1.topedge57: interface: topedge57 - subcomponent: starsplit - starsplit.topedge58: + subcomponent: portsplit1 + portsplit1.topedge58: interface: topedge58 - subcomponent: starsplit - starsplit.topedge59: + subcomponent: portsplit1 + portsplit1.topedge59: interface: topedge59 - subcomponent: starsplit - starsplit.topedge6: + subcomponent: portsplit1 + portsplit1.topedge6: interface: topedge6 - subcomponent: starsplit - starsplit.topedge60: + subcomponent: portsplit1 + portsplit1.topedge60: interface: topedge60 - subcomponent: starsplit - starsplit.topedge61: + subcomponent: portsplit1 + portsplit1.topedge61: interface: topedge61 - subcomponent: starsplit - starsplit.topedge62: + subcomponent: portsplit1 + portsplit1.topedge62: interface: topedge62 - subcomponent: starsplit - starsplit.topedge63: + subcomponent: portsplit1 + portsplit1.topedge63: interface: topedge63 - subcomponent: starsplit - starsplit.topedge64: + subcomponent: portsplit1 + portsplit1.topedge64: interface: topedge64 - subcomponent: starsplit - starsplit.topedge65: + subcomponent: portsplit1 + portsplit1.topedge65: interface: topedge65 - subcomponent: starsplit - starsplit.topedge66: + subcomponent: portsplit1 + portsplit1.topedge66: interface: topedge66 - subcomponent: starsplit - starsplit.topedge67: + subcomponent: portsplit1 + portsplit1.topedge67: interface: topedge67 - subcomponent: starsplit - starsplit.topedge68: + subcomponent: portsplit1 + portsplit1.topedge68: interface: topedge68 - subcomponent: starsplit - starsplit.topedge69: + subcomponent: portsplit1 + portsplit1.topedge69: interface: topedge69 - subcomponent: starsplit - starsplit.topedge7: + subcomponent: portsplit1 + portsplit1.topedge7: interface: topedge7 - subcomponent: starsplit - starsplit.topedge70: + subcomponent: portsplit1 + portsplit1.topedge70: interface: topedge70 - subcomponent: starsplit - starsplit.topedge71: + subcomponent: portsplit1 + portsplit1.topedge71: interface: topedge71 - subcomponent: starsplit - starsplit.topedge72: + subcomponent: portsplit1 + portsplit1.topedge72: interface: topedge72 - subcomponent: starsplit - starsplit.topedge73: + subcomponent: portsplit1 + portsplit1.topedge73: interface: topedge73 - subcomponent: starsplit - starsplit.topedge74: + subcomponent: portsplit1 + portsplit1.topedge74: interface: topedge74 - subcomponent: starsplit - starsplit.topedge75: + subcomponent: portsplit1 + portsplit1.topedge75: interface: topedge75 - subcomponent: starsplit - starsplit.topedge76: + subcomponent: portsplit1 + portsplit1.topedge76: interface: topedge76 - subcomponent: starsplit - starsplit.topedge77: + subcomponent: portsplit1 + portsplit1.topedge77: interface: topedge77 - subcomponent: starsplit - starsplit.topedge78: + subcomponent: portsplit1 + portsplit1.topedge78: interface: topedge78 - subcomponent: starsplit - starsplit.topedge79: + subcomponent: portsplit1 + portsplit1.topedge79: interface: topedge79 - subcomponent: starsplit - starsplit.topedge8: + subcomponent: portsplit1 + portsplit1.topedge8: interface: topedge8 - subcomponent: starsplit - starsplit.topedge80: + subcomponent: portsplit1 + portsplit1.topedge80: interface: topedge80 - subcomponent: starsplit - starsplit.topedge81: + subcomponent: portsplit1 + portsplit1.topedge81: interface: topedge81 - subcomponent: starsplit - starsplit.topedge82: + subcomponent: portsplit1 + portsplit1.topedge82: interface: topedge82 - subcomponent: starsplit - starsplit.topedge83: + subcomponent: portsplit1 + portsplit1.topedge83: interface: topedge83 - subcomponent: starsplit - starsplit.topedge84: + subcomponent: portsplit1 + portsplit1.topedge84: interface: topedge84 - subcomponent: starsplit - starsplit.topedge85: + subcomponent: portsplit1 + portsplit1.topedge85: interface: topedge85 - subcomponent: starsplit - starsplit.topedge86: + subcomponent: portsplit1 + portsplit1.topedge86: interface: topedge86 - subcomponent: starsplit - starsplit.topedge87: + subcomponent: portsplit1 + portsplit1.topedge87: interface: topedge87 - subcomponent: starsplit - starsplit.topedge88: + subcomponent: portsplit1 + portsplit1.topedge88: interface: topedge88 - subcomponent: starsplit - starsplit.topedge89: + subcomponent: portsplit1 + portsplit1.topedge89: interface: topedge89 - subcomponent: starsplit - starsplit.topedge9: + subcomponent: portsplit1 + portsplit1.topedge9: interface: topedge9 - subcomponent: starsplit - starsplit.topedge90: + subcomponent: portsplit1 + portsplit1.topedge90: interface: topedge90 - subcomponent: starsplit - starsplit.topedge91: + subcomponent: portsplit1 + portsplit1.topedge91: interface: topedge91 - subcomponent: starsplit - starsplit.topedge92: + subcomponent: portsplit1 + portsplit1.topedge92: interface: topedge92 - subcomponent: starsplit - starsplit.topedge93: + subcomponent: portsplit1 + portsplit1.topedge93: interface: topedge93 - subcomponent: starsplit - starsplit.topedge94: + subcomponent: portsplit1 + portsplit1.topedge94: interface: topedge94 - subcomponent: starsplit - starsplit.topedge95: + subcomponent: portsplit1 + portsplit1.topedge95: interface: topedge95 - subcomponent: starsplit - starsplit.topedge96: + subcomponent: portsplit1 + portsplit1.topedge96: interface: topedge96 - subcomponent: starsplit - starsplit.topedge97: + subcomponent: portsplit1 + portsplit1.topedge97: interface: topedge97 - subcomponent: starsplit - starsplit.topedge98: + subcomponent: portsplit1 + portsplit1.topedge98: interface: topedge98 - subcomponent: starsplit - starsplit.topedge99: + subcomponent: portsplit1 + portsplit1.topedge99: interface: topedge99 - subcomponent: starsplit + subcomponent: portsplit1 + servostack.doubleServoMount.lServoInterface: + interface: doubleServoMount.lServoInterface + subcomponent: servostack + servostack.doubleServoMount.lServoMount.leftInterface: + interface: doubleServoMount.lServoMount.leftInterface + subcomponent: servostack + servostack.doubleServoMount.lServoMount.rightInterface: + interface: doubleServoMount.lServoMount.rightInterface + subcomponent: servostack + servostack.doubleServoMount.rServoInterface: + interface: doubleServoMount.rServoInterface + subcomponent: servostack + servostack.doubleServoMount.rServoMount.leftInterface: + interface: doubleServoMount.rServoMount.leftInterface + subcomponent: servostack + servostack.doubleServoMount.rServoMount.rightInterface: + interface: doubleServoMount.rServoMount.rightInterface + subcomponent: servostack + servostack.espStack.leftArmInterface: + interface: espStack.leftArmInterface + subcomponent: servostack + servostack.espStack.rightArmInterface: + interface: espStack.rightArmInterface + subcomponent: servostack + servostack.lservosplit: + interface: lservosplit + subcomponent: servostack + servostack.lstacksplit: + interface: lstacksplit + subcomponent: servostack + servostack.portsplit.botedge0: + interface: portsplit.botedge0 + subcomponent: servostack + servostack.portsplit.botedge1: + interface: portsplit.botedge1 + subcomponent: servostack + servostack.portsplit.botedge10: + interface: portsplit.botedge10 + subcomponent: servostack + servostack.portsplit.botedge11: + interface: portsplit.botedge11 + subcomponent: servostack + servostack.portsplit.botedge12: + interface: portsplit.botedge12 + subcomponent: servostack + servostack.portsplit.botedge13: + interface: portsplit.botedge13 + subcomponent: servostack + servostack.portsplit.botedge14: + interface: portsplit.botedge14 + subcomponent: servostack + servostack.portsplit.botedge15: + interface: portsplit.botedge15 + subcomponent: servostack + servostack.portsplit.botedge16: + interface: portsplit.botedge16 + subcomponent: servostack + servostack.portsplit.botedge17: + interface: portsplit.botedge17 + subcomponent: servostack + servostack.portsplit.botedge18: + interface: portsplit.botedge18 + subcomponent: servostack + servostack.portsplit.botedge19: + interface: portsplit.botedge19 + subcomponent: servostack + servostack.portsplit.botedge2: + interface: portsplit.botedge2 + subcomponent: servostack + servostack.portsplit.botedge20: + interface: portsplit.botedge20 + subcomponent: servostack + servostack.portsplit.botedge21: + interface: portsplit.botedge21 + subcomponent: servostack + servostack.portsplit.botedge22: + interface: portsplit.botedge22 + subcomponent: servostack + servostack.portsplit.botedge23: + interface: portsplit.botedge23 + subcomponent: servostack + servostack.portsplit.botedge24: + interface: portsplit.botedge24 + subcomponent: servostack + servostack.portsplit.botedge25: + interface: portsplit.botedge25 + subcomponent: servostack + servostack.portsplit.botedge26: + interface: portsplit.botedge26 + subcomponent: servostack + servostack.portsplit.botedge27: + interface: portsplit.botedge27 + subcomponent: servostack + servostack.portsplit.botedge28: + interface: portsplit.botedge28 + subcomponent: servostack + servostack.portsplit.botedge29: + interface: portsplit.botedge29 + subcomponent: servostack + servostack.portsplit.botedge3: + interface: portsplit.botedge3 + subcomponent: servostack + servostack.portsplit.botedge30: + interface: portsplit.botedge30 + subcomponent: servostack + servostack.portsplit.botedge31: + interface: portsplit.botedge31 + subcomponent: servostack + servostack.portsplit.botedge32: + interface: portsplit.botedge32 + subcomponent: servostack + servostack.portsplit.botedge33: + interface: portsplit.botedge33 + subcomponent: servostack + servostack.portsplit.botedge34: + interface: portsplit.botedge34 + subcomponent: servostack + servostack.portsplit.botedge35: + interface: portsplit.botedge35 + subcomponent: servostack + servostack.portsplit.botedge36: + interface: portsplit.botedge36 + subcomponent: servostack + servostack.portsplit.botedge37: + interface: portsplit.botedge37 + subcomponent: servostack + servostack.portsplit.botedge38: + interface: portsplit.botedge38 + subcomponent: servostack + servostack.portsplit.botedge39: + interface: portsplit.botedge39 + subcomponent: servostack + servostack.portsplit.botedge4: + interface: portsplit.botedge4 + subcomponent: servostack + servostack.portsplit.botedge40: + interface: portsplit.botedge40 + subcomponent: servostack + servostack.portsplit.botedge41: + interface: portsplit.botedge41 + subcomponent: servostack + servostack.portsplit.botedge42: + interface: portsplit.botedge42 + subcomponent: servostack + servostack.portsplit.botedge43: + interface: portsplit.botedge43 + subcomponent: servostack + servostack.portsplit.botedge44: + interface: portsplit.botedge44 + subcomponent: servostack + servostack.portsplit.botedge45: + interface: portsplit.botedge45 + subcomponent: servostack + servostack.portsplit.botedge46: + interface: portsplit.botedge46 + subcomponent: servostack + servostack.portsplit.botedge47: + interface: portsplit.botedge47 + subcomponent: servostack + servostack.portsplit.botedge48: + interface: portsplit.botedge48 + subcomponent: servostack + servostack.portsplit.botedge49: + interface: portsplit.botedge49 + subcomponent: servostack + servostack.portsplit.botedge5: + interface: portsplit.botedge5 + subcomponent: servostack + servostack.portsplit.botedge50: + interface: portsplit.botedge50 + subcomponent: servostack + servostack.portsplit.botedge51: + interface: portsplit.botedge51 + subcomponent: servostack + servostack.portsplit.botedge52: + interface: portsplit.botedge52 + subcomponent: servostack + servostack.portsplit.botedge53: + interface: portsplit.botedge53 + subcomponent: servostack + servostack.portsplit.botedge54: + interface: portsplit.botedge54 + subcomponent: servostack + servostack.portsplit.botedge55: + interface: portsplit.botedge55 + subcomponent: servostack + servostack.portsplit.botedge56: + interface: portsplit.botedge56 + subcomponent: servostack + servostack.portsplit.botedge57: + interface: portsplit.botedge57 + subcomponent: servostack + servostack.portsplit.botedge58: + interface: portsplit.botedge58 + subcomponent: servostack + servostack.portsplit.botedge59: + interface: portsplit.botedge59 + subcomponent: servostack + servostack.portsplit.botedge6: + interface: portsplit.botedge6 + subcomponent: servostack + servostack.portsplit.botedge60: + interface: portsplit.botedge60 + subcomponent: servostack + servostack.portsplit.botedge61: + interface: portsplit.botedge61 + subcomponent: servostack + servostack.portsplit.botedge62: + interface: portsplit.botedge62 + subcomponent: servostack + servostack.portsplit.botedge63: + interface: portsplit.botedge63 + subcomponent: servostack + servostack.portsplit.botedge64: + interface: portsplit.botedge64 + subcomponent: servostack + servostack.portsplit.botedge65: + interface: portsplit.botedge65 + subcomponent: servostack + servostack.portsplit.botedge66: + interface: portsplit.botedge66 + subcomponent: servostack + servostack.portsplit.botedge67: + interface: portsplit.botedge67 + subcomponent: servostack + servostack.portsplit.botedge68: + interface: portsplit.botedge68 + subcomponent: servostack + servostack.portsplit.botedge69: + interface: portsplit.botedge69 + subcomponent: servostack + servostack.portsplit.botedge7: + interface: portsplit.botedge7 + subcomponent: servostack + servostack.portsplit.botedge70: + interface: portsplit.botedge70 + subcomponent: servostack + servostack.portsplit.botedge71: + interface: portsplit.botedge71 + subcomponent: servostack + servostack.portsplit.botedge72: + interface: portsplit.botedge72 + subcomponent: servostack + servostack.portsplit.botedge73: + interface: portsplit.botedge73 + subcomponent: servostack + servostack.portsplit.botedge74: + interface: portsplit.botedge74 + subcomponent: servostack + servostack.portsplit.botedge75: + interface: portsplit.botedge75 + subcomponent: servostack + servostack.portsplit.botedge76: + interface: portsplit.botedge76 + subcomponent: servostack + servostack.portsplit.botedge77: + interface: portsplit.botedge77 + subcomponent: servostack + servostack.portsplit.botedge78: + interface: portsplit.botedge78 + subcomponent: servostack + servostack.portsplit.botedge79: + interface: portsplit.botedge79 + subcomponent: servostack + servostack.portsplit.botedge8: + interface: portsplit.botedge8 + subcomponent: servostack + servostack.portsplit.botedge80: + interface: portsplit.botedge80 + subcomponent: servostack + servostack.portsplit.botedge81: + interface: portsplit.botedge81 + subcomponent: servostack + servostack.portsplit.botedge82: + interface: portsplit.botedge82 + subcomponent: servostack + servostack.portsplit.botedge83: + interface: portsplit.botedge83 + subcomponent: servostack + servostack.portsplit.botedge84: + interface: portsplit.botedge84 + subcomponent: servostack + servostack.portsplit.botedge85: + interface: portsplit.botedge85 + subcomponent: servostack + servostack.portsplit.botedge86: + interface: portsplit.botedge86 + subcomponent: servostack + servostack.portsplit.botedge87: + interface: portsplit.botedge87 + subcomponent: servostack + servostack.portsplit.botedge88: + interface: portsplit.botedge88 + subcomponent: servostack + servostack.portsplit.botedge89: + interface: portsplit.botedge89 + subcomponent: servostack + servostack.portsplit.botedge9: + interface: portsplit.botedge9 + subcomponent: servostack + servostack.portsplit.botedge90: + interface: portsplit.botedge90 + subcomponent: servostack + servostack.portsplit.botedge91: + interface: portsplit.botedge91 + subcomponent: servostack + servostack.portsplit.botedge92: + interface: portsplit.botedge92 + subcomponent: servostack + servostack.portsplit.botedge93: + interface: portsplit.botedge93 + subcomponent: servostack + servostack.portsplit.botedge94: + interface: portsplit.botedge94 + subcomponent: servostack + servostack.portsplit.botedge95: + interface: portsplit.botedge95 + subcomponent: servostack + servostack.portsplit.botedge96: + interface: portsplit.botedge96 + subcomponent: servostack + servostack.portsplit.botedge97: + interface: portsplit.botedge97 + subcomponent: servostack + servostack.portsplit.botedge98: + interface: portsplit.botedge98 + subcomponent: servostack + servostack.portsplit.botedge99: + interface: portsplit.botedge99 + subcomponent: servostack + servostack.portsplit.topedge0: + interface: portsplit.topedge0 + subcomponent: servostack + servostack.portsplit.topedge1: + interface: portsplit.topedge1 + subcomponent: servostack + servostack.portsplit.topedge10: + interface: portsplit.topedge10 + subcomponent: servostack + servostack.portsplit.topedge11: + interface: portsplit.topedge11 + subcomponent: servostack + servostack.portsplit.topedge12: + interface: portsplit.topedge12 + subcomponent: servostack + servostack.portsplit.topedge13: + interface: portsplit.topedge13 + subcomponent: servostack + servostack.portsplit.topedge14: + interface: portsplit.topedge14 + subcomponent: servostack + servostack.portsplit.topedge15: + interface: portsplit.topedge15 + subcomponent: servostack + servostack.portsplit.topedge16: + interface: portsplit.topedge16 + subcomponent: servostack + servostack.portsplit.topedge17: + interface: portsplit.topedge17 + subcomponent: servostack + servostack.portsplit.topedge18: + interface: portsplit.topedge18 + subcomponent: servostack + servostack.portsplit.topedge19: + interface: portsplit.topedge19 + subcomponent: servostack + servostack.portsplit.topedge2: + interface: portsplit.topedge2 + subcomponent: servostack + servostack.portsplit.topedge20: + interface: portsplit.topedge20 + subcomponent: servostack + servostack.portsplit.topedge21: + interface: portsplit.topedge21 + subcomponent: servostack + servostack.portsplit.topedge22: + interface: portsplit.topedge22 + subcomponent: servostack + servostack.portsplit.topedge23: + interface: portsplit.topedge23 + subcomponent: servostack + servostack.portsplit.topedge24: + interface: portsplit.topedge24 + subcomponent: servostack + servostack.portsplit.topedge25: + interface: portsplit.topedge25 + subcomponent: servostack + servostack.portsplit.topedge26: + interface: portsplit.topedge26 + subcomponent: servostack + servostack.portsplit.topedge27: + interface: portsplit.topedge27 + subcomponent: servostack + servostack.portsplit.topedge28: + interface: portsplit.topedge28 + subcomponent: servostack + servostack.portsplit.topedge29: + interface: portsplit.topedge29 + subcomponent: servostack + servostack.portsplit.topedge3: + interface: portsplit.topedge3 + subcomponent: servostack + servostack.portsplit.topedge30: + interface: portsplit.topedge30 + subcomponent: servostack + servostack.portsplit.topedge31: + interface: portsplit.topedge31 + subcomponent: servostack + servostack.portsplit.topedge32: + interface: portsplit.topedge32 + subcomponent: servostack + servostack.portsplit.topedge33: + interface: portsplit.topedge33 + subcomponent: servostack + servostack.portsplit.topedge34: + interface: portsplit.topedge34 + subcomponent: servostack + servostack.portsplit.topedge35: + interface: portsplit.topedge35 + subcomponent: servostack + servostack.portsplit.topedge36: + interface: portsplit.topedge36 + subcomponent: servostack + servostack.portsplit.topedge37: + interface: portsplit.topedge37 + subcomponent: servostack + servostack.portsplit.topedge38: + interface: portsplit.topedge38 + subcomponent: servostack + servostack.portsplit.topedge39: + interface: portsplit.topedge39 + subcomponent: servostack + servostack.portsplit.topedge4: + interface: portsplit.topedge4 + subcomponent: servostack + servostack.portsplit.topedge40: + interface: portsplit.topedge40 + subcomponent: servostack + servostack.portsplit.topedge41: + interface: portsplit.topedge41 + subcomponent: servostack + servostack.portsplit.topedge42: + interface: portsplit.topedge42 + subcomponent: servostack + servostack.portsplit.topedge43: + interface: portsplit.topedge43 + subcomponent: servostack + servostack.portsplit.topedge44: + interface: portsplit.topedge44 + subcomponent: servostack + servostack.portsplit.topedge45: + interface: portsplit.topedge45 + subcomponent: servostack + servostack.portsplit.topedge46: + interface: portsplit.topedge46 + subcomponent: servostack + servostack.portsplit.topedge47: + interface: portsplit.topedge47 + subcomponent: servostack + servostack.portsplit.topedge48: + interface: portsplit.topedge48 + subcomponent: servostack + servostack.portsplit.topedge49: + interface: portsplit.topedge49 + subcomponent: servostack + servostack.portsplit.topedge5: + interface: portsplit.topedge5 + subcomponent: servostack + servostack.portsplit.topedge50: + interface: portsplit.topedge50 + subcomponent: servostack + servostack.portsplit.topedge51: + interface: portsplit.topedge51 + subcomponent: servostack + servostack.portsplit.topedge52: + interface: portsplit.topedge52 + subcomponent: servostack + servostack.portsplit.topedge53: + interface: portsplit.topedge53 + subcomponent: servostack + servostack.portsplit.topedge54: + interface: portsplit.topedge54 + subcomponent: servostack + servostack.portsplit.topedge55: + interface: portsplit.topedge55 + subcomponent: servostack + servostack.portsplit.topedge56: + interface: portsplit.topedge56 + subcomponent: servostack + servostack.portsplit.topedge57: + interface: portsplit.topedge57 + subcomponent: servostack + servostack.portsplit.topedge58: + interface: portsplit.topedge58 + subcomponent: servostack + servostack.portsplit.topedge59: + interface: portsplit.topedge59 + subcomponent: servostack + servostack.portsplit.topedge6: + interface: portsplit.topedge6 + subcomponent: servostack + servostack.portsplit.topedge60: + interface: portsplit.topedge60 + subcomponent: servostack + servostack.portsplit.topedge61: + interface: portsplit.topedge61 + subcomponent: servostack + servostack.portsplit.topedge62: + interface: portsplit.topedge62 + subcomponent: servostack + servostack.portsplit.topedge63: + interface: portsplit.topedge63 + subcomponent: servostack + servostack.portsplit.topedge64: + interface: portsplit.topedge64 + subcomponent: servostack + servostack.portsplit.topedge65: + interface: portsplit.topedge65 + subcomponent: servostack + servostack.portsplit.topedge66: + interface: portsplit.topedge66 + subcomponent: servostack + servostack.portsplit.topedge67: + interface: portsplit.topedge67 + subcomponent: servostack + servostack.portsplit.topedge68: + interface: portsplit.topedge68 + subcomponent: servostack + servostack.portsplit.topedge69: + interface: portsplit.topedge69 + subcomponent: servostack + servostack.portsplit.topedge7: + interface: portsplit.topedge7 + subcomponent: servostack + servostack.portsplit.topedge70: + interface: portsplit.topedge70 + subcomponent: servostack + servostack.portsplit.topedge71: + interface: portsplit.topedge71 + subcomponent: servostack + servostack.portsplit.topedge72: + interface: portsplit.topedge72 + subcomponent: servostack + servostack.portsplit.topedge73: + interface: portsplit.topedge73 + subcomponent: servostack + servostack.portsplit.topedge74: + interface: portsplit.topedge74 + subcomponent: servostack + servostack.portsplit.topedge75: + interface: portsplit.topedge75 + subcomponent: servostack + servostack.portsplit.topedge76: + interface: portsplit.topedge76 + subcomponent: servostack + servostack.portsplit.topedge77: + interface: portsplit.topedge77 + subcomponent: servostack + servostack.portsplit.topedge78: + interface: portsplit.topedge78 + subcomponent: servostack + servostack.portsplit.topedge79: + interface: portsplit.topedge79 + subcomponent: servostack + servostack.portsplit.topedge8: + interface: portsplit.topedge8 + subcomponent: servostack + servostack.portsplit.topedge80: + interface: portsplit.topedge80 + subcomponent: servostack + servostack.portsplit.topedge81: + interface: portsplit.topedge81 + subcomponent: servostack + servostack.portsplit.topedge82: + interface: portsplit.topedge82 + subcomponent: servostack + servostack.portsplit.topedge83: + interface: portsplit.topedge83 + subcomponent: servostack + servostack.portsplit.topedge84: + interface: portsplit.topedge84 + subcomponent: servostack + servostack.portsplit.topedge85: + interface: portsplit.topedge85 + subcomponent: servostack + servostack.portsplit.topedge86: + interface: portsplit.topedge86 + subcomponent: servostack + servostack.portsplit.topedge87: + interface: portsplit.topedge87 + subcomponent: servostack + servostack.portsplit.topedge88: + interface: portsplit.topedge88 + subcomponent: servostack + servostack.portsplit.topedge89: + interface: portsplit.topedge89 + subcomponent: servostack + servostack.portsplit.topedge9: + interface: portsplit.topedge9 + subcomponent: servostack + servostack.portsplit.topedge90: + interface: portsplit.topedge90 + subcomponent: servostack + servostack.portsplit.topedge91: + interface: portsplit.topedge91 + subcomponent: servostack + servostack.portsplit.topedge92: + interface: portsplit.topedge92 + subcomponent: servostack + servostack.portsplit.topedge93: + interface: portsplit.topedge93 + subcomponent: servostack + servostack.portsplit.topedge94: + interface: portsplit.topedge94 + subcomponent: servostack + servostack.portsplit.topedge95: + interface: portsplit.topedge95 + subcomponent: servostack + servostack.portsplit.topedge96: + interface: portsplit.topedge96 + subcomponent: servostack + servostack.portsplit.topedge97: + interface: portsplit.topedge97 + subcomponent: servostack + servostack.portsplit.topedge98: + interface: portsplit.topedge98 + subcomponent: servostack + servostack.portsplit.topedge99: + interface: portsplit.topedge99 + subcomponent: servostack + servostack.rservosplit: + interface: rservosplit + subcomponent: servostack + servostack.rstacksplit: + interface: rstacksplit + subcomponent: servostack + servostack.starsplit.botedge0: + interface: starsplit.botedge0 + subcomponent: servostack + servostack.starsplit.botedge1: + interface: starsplit.botedge1 + subcomponent: servostack + servostack.starsplit.botedge10: + interface: starsplit.botedge10 + subcomponent: servostack + servostack.starsplit.botedge11: + interface: starsplit.botedge11 + subcomponent: servostack + servostack.starsplit.botedge12: + interface: starsplit.botedge12 + subcomponent: servostack + servostack.starsplit.botedge13: + interface: starsplit.botedge13 + subcomponent: servostack + servostack.starsplit.botedge14: + interface: starsplit.botedge14 + subcomponent: servostack + servostack.starsplit.botedge15: + interface: starsplit.botedge15 + subcomponent: servostack + servostack.starsplit.botedge16: + interface: starsplit.botedge16 + subcomponent: servostack + servostack.starsplit.botedge17: + interface: starsplit.botedge17 + subcomponent: servostack + servostack.starsplit.botedge18: + interface: starsplit.botedge18 + subcomponent: servostack + servostack.starsplit.botedge19: + interface: starsplit.botedge19 + subcomponent: servostack + servostack.starsplit.botedge2: + interface: starsplit.botedge2 + subcomponent: servostack + servostack.starsplit.botedge20: + interface: starsplit.botedge20 + subcomponent: servostack + servostack.starsplit.botedge21: + interface: starsplit.botedge21 + subcomponent: servostack + servostack.starsplit.botedge22: + interface: starsplit.botedge22 + subcomponent: servostack + servostack.starsplit.botedge23: + interface: starsplit.botedge23 + subcomponent: servostack + servostack.starsplit.botedge24: + interface: starsplit.botedge24 + subcomponent: servostack + servostack.starsplit.botedge25: + interface: starsplit.botedge25 + subcomponent: servostack + servostack.starsplit.botedge26: + interface: starsplit.botedge26 + subcomponent: servostack + servostack.starsplit.botedge27: + interface: starsplit.botedge27 + subcomponent: servostack + servostack.starsplit.botedge28: + interface: starsplit.botedge28 + subcomponent: servostack + servostack.starsplit.botedge29: + interface: starsplit.botedge29 + subcomponent: servostack + servostack.starsplit.botedge3: + interface: starsplit.botedge3 + subcomponent: servostack + servostack.starsplit.botedge30: + interface: starsplit.botedge30 + subcomponent: servostack + servostack.starsplit.botedge31: + interface: starsplit.botedge31 + subcomponent: servostack + servostack.starsplit.botedge32: + interface: starsplit.botedge32 + subcomponent: servostack + servostack.starsplit.botedge33: + interface: starsplit.botedge33 + subcomponent: servostack + servostack.starsplit.botedge34: + interface: starsplit.botedge34 + subcomponent: servostack + servostack.starsplit.botedge35: + interface: starsplit.botedge35 + subcomponent: servostack + servostack.starsplit.botedge36: + interface: starsplit.botedge36 + subcomponent: servostack + servostack.starsplit.botedge37: + interface: starsplit.botedge37 + subcomponent: servostack + servostack.starsplit.botedge38: + interface: starsplit.botedge38 + subcomponent: servostack + servostack.starsplit.botedge39: + interface: starsplit.botedge39 + subcomponent: servostack + servostack.starsplit.botedge4: + interface: starsplit.botedge4 + subcomponent: servostack + servostack.starsplit.botedge40: + interface: starsplit.botedge40 + subcomponent: servostack + servostack.starsplit.botedge41: + interface: starsplit.botedge41 + subcomponent: servostack + servostack.starsplit.botedge42: + interface: starsplit.botedge42 + subcomponent: servostack + servostack.starsplit.botedge43: + interface: starsplit.botedge43 + subcomponent: servostack + servostack.starsplit.botedge44: + interface: starsplit.botedge44 + subcomponent: servostack + servostack.starsplit.botedge45: + interface: starsplit.botedge45 + subcomponent: servostack + servostack.starsplit.botedge46: + interface: starsplit.botedge46 + subcomponent: servostack + servostack.starsplit.botedge47: + interface: starsplit.botedge47 + subcomponent: servostack + servostack.starsplit.botedge48: + interface: starsplit.botedge48 + subcomponent: servostack + servostack.starsplit.botedge49: + interface: starsplit.botedge49 + subcomponent: servostack + servostack.starsplit.botedge5: + interface: starsplit.botedge5 + subcomponent: servostack + servostack.starsplit.botedge50: + interface: starsplit.botedge50 + subcomponent: servostack + servostack.starsplit.botedge51: + interface: starsplit.botedge51 + subcomponent: servostack + servostack.starsplit.botedge52: + interface: starsplit.botedge52 + subcomponent: servostack + servostack.starsplit.botedge53: + interface: starsplit.botedge53 + subcomponent: servostack + servostack.starsplit.botedge54: + interface: starsplit.botedge54 + subcomponent: servostack + servostack.starsplit.botedge55: + interface: starsplit.botedge55 + subcomponent: servostack + servostack.starsplit.botedge56: + interface: starsplit.botedge56 + subcomponent: servostack + servostack.starsplit.botedge57: + interface: starsplit.botedge57 + subcomponent: servostack + servostack.starsplit.botedge58: + interface: starsplit.botedge58 + subcomponent: servostack + servostack.starsplit.botedge59: + interface: starsplit.botedge59 + subcomponent: servostack + servostack.starsplit.botedge6: + interface: starsplit.botedge6 + subcomponent: servostack + servostack.starsplit.botedge60: + interface: starsplit.botedge60 + subcomponent: servostack + servostack.starsplit.botedge61: + interface: starsplit.botedge61 + subcomponent: servostack + servostack.starsplit.botedge62: + interface: starsplit.botedge62 + subcomponent: servostack + servostack.starsplit.botedge63: + interface: starsplit.botedge63 + subcomponent: servostack + servostack.starsplit.botedge64: + interface: starsplit.botedge64 + subcomponent: servostack + servostack.starsplit.botedge65: + interface: starsplit.botedge65 + subcomponent: servostack + servostack.starsplit.botedge66: + interface: starsplit.botedge66 + subcomponent: servostack + servostack.starsplit.botedge67: + interface: starsplit.botedge67 + subcomponent: servostack + servostack.starsplit.botedge68: + interface: starsplit.botedge68 + subcomponent: servostack + servostack.starsplit.botedge69: + interface: starsplit.botedge69 + subcomponent: servostack + servostack.starsplit.botedge7: + interface: starsplit.botedge7 + subcomponent: servostack + servostack.starsplit.botedge70: + interface: starsplit.botedge70 + subcomponent: servostack + servostack.starsplit.botedge71: + interface: starsplit.botedge71 + subcomponent: servostack + servostack.starsplit.botedge72: + interface: starsplit.botedge72 + subcomponent: servostack + servostack.starsplit.botedge73: + interface: starsplit.botedge73 + subcomponent: servostack + servostack.starsplit.botedge74: + interface: starsplit.botedge74 + subcomponent: servostack + servostack.starsplit.botedge75: + interface: starsplit.botedge75 + subcomponent: servostack + servostack.starsplit.botedge76: + interface: starsplit.botedge76 + subcomponent: servostack + servostack.starsplit.botedge77: + interface: starsplit.botedge77 + subcomponent: servostack + servostack.starsplit.botedge78: + interface: starsplit.botedge78 + subcomponent: servostack + servostack.starsplit.botedge79: + interface: starsplit.botedge79 + subcomponent: servostack + servostack.starsplit.botedge8: + interface: starsplit.botedge8 + subcomponent: servostack + servostack.starsplit.botedge80: + interface: starsplit.botedge80 + subcomponent: servostack + servostack.starsplit.botedge81: + interface: starsplit.botedge81 + subcomponent: servostack + servostack.starsplit.botedge82: + interface: starsplit.botedge82 + subcomponent: servostack + servostack.starsplit.botedge83: + interface: starsplit.botedge83 + subcomponent: servostack + servostack.starsplit.botedge84: + interface: starsplit.botedge84 + subcomponent: servostack + servostack.starsplit.botedge85: + interface: starsplit.botedge85 + subcomponent: servostack + servostack.starsplit.botedge86: + interface: starsplit.botedge86 + subcomponent: servostack + servostack.starsplit.botedge87: + interface: starsplit.botedge87 + subcomponent: servostack + servostack.starsplit.botedge88: + interface: starsplit.botedge88 + subcomponent: servostack + servostack.starsplit.botedge89: + interface: starsplit.botedge89 + subcomponent: servostack + servostack.starsplit.botedge9: + interface: starsplit.botedge9 + subcomponent: servostack + servostack.starsplit.botedge90: + interface: starsplit.botedge90 + subcomponent: servostack + servostack.starsplit.botedge91: + interface: starsplit.botedge91 + subcomponent: servostack + servostack.starsplit.botedge92: + interface: starsplit.botedge92 + subcomponent: servostack + servostack.starsplit.botedge93: + interface: starsplit.botedge93 + subcomponent: servostack + servostack.starsplit.botedge94: + interface: starsplit.botedge94 + subcomponent: servostack + servostack.starsplit.botedge95: + interface: starsplit.botedge95 + subcomponent: servostack + servostack.starsplit.botedge96: + interface: starsplit.botedge96 + subcomponent: servostack + servostack.starsplit.botedge97: + interface: starsplit.botedge97 + subcomponent: servostack + servostack.starsplit.botedge98: + interface: starsplit.botedge98 + subcomponent: servostack + servostack.starsplit.botedge99: + interface: starsplit.botedge99 + subcomponent: servostack + servostack.starsplit.topedge0: + interface: starsplit.topedge0 + subcomponent: servostack + servostack.starsplit.topedge1: + interface: starsplit.topedge1 + subcomponent: servostack + servostack.starsplit.topedge10: + interface: starsplit.topedge10 + subcomponent: servostack + servostack.starsplit.topedge11: + interface: starsplit.topedge11 + subcomponent: servostack + servostack.starsplit.topedge12: + interface: starsplit.topedge12 + subcomponent: servostack + servostack.starsplit.topedge13: + interface: starsplit.topedge13 + subcomponent: servostack + servostack.starsplit.topedge14: + interface: starsplit.topedge14 + subcomponent: servostack + servostack.starsplit.topedge15: + interface: starsplit.topedge15 + subcomponent: servostack + servostack.starsplit.topedge16: + interface: starsplit.topedge16 + subcomponent: servostack + servostack.starsplit.topedge17: + interface: starsplit.topedge17 + subcomponent: servostack + servostack.starsplit.topedge18: + interface: starsplit.topedge18 + subcomponent: servostack + servostack.starsplit.topedge19: + interface: starsplit.topedge19 + subcomponent: servostack + servostack.starsplit.topedge2: + interface: starsplit.topedge2 + subcomponent: servostack + servostack.starsplit.topedge20: + interface: starsplit.topedge20 + subcomponent: servostack + servostack.starsplit.topedge21: + interface: starsplit.topedge21 + subcomponent: servostack + servostack.starsplit.topedge22: + interface: starsplit.topedge22 + subcomponent: servostack + servostack.starsplit.topedge23: + interface: starsplit.topedge23 + subcomponent: servostack + servostack.starsplit.topedge24: + interface: starsplit.topedge24 + subcomponent: servostack + servostack.starsplit.topedge25: + interface: starsplit.topedge25 + subcomponent: servostack + servostack.starsplit.topedge26: + interface: starsplit.topedge26 + subcomponent: servostack + servostack.starsplit.topedge27: + interface: starsplit.topedge27 + subcomponent: servostack + servostack.starsplit.topedge28: + interface: starsplit.topedge28 + subcomponent: servostack + servostack.starsplit.topedge29: + interface: starsplit.topedge29 + subcomponent: servostack + servostack.starsplit.topedge3: + interface: starsplit.topedge3 + subcomponent: servostack + servostack.starsplit.topedge30: + interface: starsplit.topedge30 + subcomponent: servostack + servostack.starsplit.topedge31: + interface: starsplit.topedge31 + subcomponent: servostack + servostack.starsplit.topedge32: + interface: starsplit.topedge32 + subcomponent: servostack + servostack.starsplit.topedge33: + interface: starsplit.topedge33 + subcomponent: servostack + servostack.starsplit.topedge34: + interface: starsplit.topedge34 + subcomponent: servostack + servostack.starsplit.topedge35: + interface: starsplit.topedge35 + subcomponent: servostack + servostack.starsplit.topedge36: + interface: starsplit.topedge36 + subcomponent: servostack + servostack.starsplit.topedge37: + interface: starsplit.topedge37 + subcomponent: servostack + servostack.starsplit.topedge38: + interface: starsplit.topedge38 + subcomponent: servostack + servostack.starsplit.topedge39: + interface: starsplit.topedge39 + subcomponent: servostack + servostack.starsplit.topedge4: + interface: starsplit.topedge4 + subcomponent: servostack + servostack.starsplit.topedge40: + interface: starsplit.topedge40 + subcomponent: servostack + servostack.starsplit.topedge41: + interface: starsplit.topedge41 + subcomponent: servostack + servostack.starsplit.topedge42: + interface: starsplit.topedge42 + subcomponent: servostack + servostack.starsplit.topedge43: + interface: starsplit.topedge43 + subcomponent: servostack + servostack.starsplit.topedge44: + interface: starsplit.topedge44 + subcomponent: servostack + servostack.starsplit.topedge45: + interface: starsplit.topedge45 + subcomponent: servostack + servostack.starsplit.topedge46: + interface: starsplit.topedge46 + subcomponent: servostack + servostack.starsplit.topedge47: + interface: starsplit.topedge47 + subcomponent: servostack + servostack.starsplit.topedge48: + interface: starsplit.topedge48 + subcomponent: servostack + servostack.starsplit.topedge49: + interface: starsplit.topedge49 + subcomponent: servostack + servostack.starsplit.topedge5: + interface: starsplit.topedge5 + subcomponent: servostack + servostack.starsplit.topedge50: + interface: starsplit.topedge50 + subcomponent: servostack + servostack.starsplit.topedge51: + interface: starsplit.topedge51 + subcomponent: servostack + servostack.starsplit.topedge52: + interface: starsplit.topedge52 + subcomponent: servostack + servostack.starsplit.topedge53: + interface: starsplit.topedge53 + subcomponent: servostack + servostack.starsplit.topedge54: + interface: starsplit.topedge54 + subcomponent: servostack + servostack.starsplit.topedge55: + interface: starsplit.topedge55 + subcomponent: servostack + servostack.starsplit.topedge56: + interface: starsplit.topedge56 + subcomponent: servostack + servostack.starsplit.topedge57: + interface: starsplit.topedge57 + subcomponent: servostack + servostack.starsplit.topedge58: + interface: starsplit.topedge58 + subcomponent: servostack + servostack.starsplit.topedge59: + interface: starsplit.topedge59 + subcomponent: servostack + servostack.starsplit.topedge6: + interface: starsplit.topedge6 + subcomponent: servostack + servostack.starsplit.topedge60: + interface: starsplit.topedge60 + subcomponent: servostack + servostack.starsplit.topedge61: + interface: starsplit.topedge61 + subcomponent: servostack + servostack.starsplit.topedge62: + interface: starsplit.topedge62 + subcomponent: servostack + servostack.starsplit.topedge63: + interface: starsplit.topedge63 + subcomponent: servostack + servostack.starsplit.topedge64: + interface: starsplit.topedge64 + subcomponent: servostack + servostack.starsplit.topedge65: + interface: starsplit.topedge65 + subcomponent: servostack + servostack.starsplit.topedge66: + interface: starsplit.topedge66 + subcomponent: servostack + servostack.starsplit.topedge67: + interface: starsplit.topedge67 + subcomponent: servostack + servostack.starsplit.topedge68: + interface: starsplit.topedge68 + subcomponent: servostack + servostack.starsplit.topedge69: + interface: starsplit.topedge69 + subcomponent: servostack + servostack.starsplit.topedge7: + interface: starsplit.topedge7 + subcomponent: servostack + servostack.starsplit.topedge70: + interface: starsplit.topedge70 + subcomponent: servostack + servostack.starsplit.topedge71: + interface: starsplit.topedge71 + subcomponent: servostack + servostack.starsplit.topedge72: + interface: starsplit.topedge72 + subcomponent: servostack + servostack.starsplit.topedge73: + interface: starsplit.topedge73 + subcomponent: servostack + servostack.starsplit.topedge74: + interface: starsplit.topedge74 + subcomponent: servostack + servostack.starsplit.topedge75: + interface: starsplit.topedge75 + subcomponent: servostack + servostack.starsplit.topedge76: + interface: starsplit.topedge76 + subcomponent: servostack + servostack.starsplit.topedge77: + interface: starsplit.topedge77 + subcomponent: servostack + servostack.starsplit.topedge78: + interface: starsplit.topedge78 + subcomponent: servostack + servostack.starsplit.topedge79: + interface: starsplit.topedge79 + subcomponent: servostack + servostack.starsplit.topedge8: + interface: starsplit.topedge8 + subcomponent: servostack + servostack.starsplit.topedge80: + interface: starsplit.topedge80 + subcomponent: servostack + servostack.starsplit.topedge81: + interface: starsplit.topedge81 + subcomponent: servostack + servostack.starsplit.topedge82: + interface: starsplit.topedge82 + subcomponent: servostack + servostack.starsplit.topedge83: + interface: starsplit.topedge83 + subcomponent: servostack + servostack.starsplit.topedge84: + interface: starsplit.topedge84 + subcomponent: servostack + servostack.starsplit.topedge85: + interface: starsplit.topedge85 + subcomponent: servostack + servostack.starsplit.topedge86: + interface: starsplit.topedge86 + subcomponent: servostack + servostack.starsplit.topedge87: + interface: starsplit.topedge87 + subcomponent: servostack + servostack.starsplit.topedge88: + interface: starsplit.topedge88 + subcomponent: servostack + servostack.starsplit.topedge89: + interface: starsplit.topedge89 + subcomponent: servostack + servostack.starsplit.topedge9: + interface: starsplit.topedge9 + subcomponent: servostack + servostack.starsplit.topedge90: + interface: starsplit.topedge90 + subcomponent: servostack + servostack.starsplit.topedge91: + interface: starsplit.topedge91 + subcomponent: servostack + servostack.starsplit.topedge92: + interface: starsplit.topedge92 + subcomponent: servostack + servostack.starsplit.topedge93: + interface: starsplit.topedge93 + subcomponent: servostack + servostack.starsplit.topedge94: + interface: starsplit.topedge94 + subcomponent: servostack + servostack.starsplit.topedge95: + interface: starsplit.topedge95 + subcomponent: servostack + servostack.starsplit.topedge96: + interface: starsplit.topedge96 + subcomponent: servostack + servostack.starsplit.topedge97: + interface: starsplit.topedge97 + subcomponent: servostack + servostack.starsplit.topedge98: + interface: starsplit.topedge98 + subcomponent: servostack + servostack.starsplit.topedge99: + interface: starsplit.topedge99 + subcomponent: servostack parameters: - boat.bow.point: - defaultValue: 50 - spec: - minValue: 0 - units: mm - valueType: (float, int) boat.depth: defaultValue: 20 spec: @@ -3691,12 +2497,6 @@ parameters: minValue: 0 units: mm valueType: (float, int) - boat.stern.point: - defaultValue: 50 - spec: - minValue: 0 - units: mm - valueType: (float, int) boat.width: defaultValue: 50 spec: @@ -3716,7 +2516,7 @@ parameters: units: mm valueType: (float, int) length: - defaultValue: 169 + defaultValue: 156 spec: minValue: 0 units: mm @@ -3735,6 +2535,10 @@ parameters: valueType: (float, int) source: ../builders/boat/BoatWithServoStackBatteryBuilder.py subcomponents: + batterymount: + classname: BatteryMount + kwargs: {} + parameters: {} boat: classname: BoatBase kwargs: {} @@ -3746,27 +2550,29 @@ subcomponents: boat.width: parameter: width bow.point: - parameter: boat.bow.point + parameter: bow.point stern.point: - parameter: boat.stern.point - portsplit: + parameter: stern.point + portsplit0: classname: SplitEdge kwargs: {} parameters: - botlength: + botlength: &id001 + - 95 - 61 - - 108 - toplength: &id001 - - 169 - servostackbattery: - classname: ServoStackBatteryMount - kwargs: {} - parameters: {} - starsplit: + toplength: + - 156 + portsplit1: classname: SplitEdge kwargs: {} parameters: botlength: - - 108 + - 61 + - 10 + - 24 - 61 toplength: *id001 + servostack: + classname: ServoStackMount + kwargs: {} + parameters: {} diff --git a/rocolib/library/ServoStackMount.yaml b/rocolib/library/ServoStackMount.yaml index 8ecd52b9fe75ef1dd82f2c4a38e6ec597276cd44..e574f5018fde3c490808a79b3afaf9af36e8107d 100644 --- a/rocolib/library/ServoStackMount.yaml +++ b/rocolib/library/ServoStackMount.yaml @@ -48,7 +48,10 @@ interfaces: espStack.rightArmInterface: interface: rightArmInterface subcomponent: espStack - lservostacksplit: + lservosplit: + interface: topedge2 + subcomponent: portsplit + lstacksplit: interface: topedge0 subcomponent: portsplit portsplit.botedge0: @@ -651,8 +654,11 @@ interfaces: portsplit.topedge99: interface: topedge99 subcomponent: portsplit - rservostacksplit: - interface: topedge0 + rservosplit: + interface: topedge1 + subcomponent: starsplit + rstacksplit: + interface: topedge3 subcomponent: starsplit starsplit.botedge0: interface: botedge0 @@ -1300,7 +1306,7 @@ subcomponents: - lServoMount.width - stack.length toplength: - function: (x[0]*2+x[1]*2+10*2+x[2],) + function: (x[2], 10, x[0], x[0]+x[1]*2+10) parameter: *id001 starsplit: classname: SplitEdge @@ -1310,5 +1316,5 @@ subcomponents: function: (x[0]+x[1]*2+10, x[0], 10, x[2]) parameter: *id001 toplength: - function: (x[0] * 2 + x[1] * 2 + 10 * 2 + x[2],) + function: (x[0]+x[1]*2+10, x[0], 10, x[2]) parameter: *id001 diff --git a/rocolib/output/.DS_Store b/rocolib/output/.DS_Store index 967ad30a1b66cd1a6df3e9d3b821475062024f7c..1058a71d1404c8f3361730991c9dbdfad3f09186 100644 Binary files a/rocolib/output/.DS_Store and b/rocolib/output/.DS_Store differ diff --git a/rocolib/output/BatteryMount/graph-anim.svg b/rocolib/output/BatteryMount/graph-anim.svg new file mode 100644 index 0000000000000000000000000000000000000000..d88661732b2b1a767143570c29733fad09bee39d --- /dev/null +++ b/rocolib/output/BatteryMount/graph-anim.svg @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="utf-8" ?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="166.000000mm" version="1.1" viewBox="0.000000 0.000000 150.308556 166.000000" width="150.308556mm"> + <defs/> + <line stroke="#000000" x1="150.3085560697229" x2="88.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="150.3085560697229" x2="150.3085560697229" y1="166.0" y2="105.00000000000001"/> + <line stroke="#000000" x1="88.65427803486146" x2="150.3085560697229" y1="166.0" y2="166.0"/> + <line opacity="0.25" stroke="#ff0000" x1="88.65427803486146" x2="88.65427803486146" y1="166.0" y2="105.00000000000001"/> + <line stroke="#000000" x1="61.65427803486146" x2="88.65427803486146" y1="166.0" y2="166.0"/> + <line opacity="0.25" stroke="#ff0000" x1="61.65427803486146" x2="61.65427803486146" y1="105.00000000000001" y2="166.0"/> + <line opacity="0.5" stroke="#0000ff" x1="88.65427803486146" x2="61.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="61.65427803486146" y1="166.0" y2="166.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="105.00000000000001" y2="166.0"/> + <line stroke="#000000" x1="61.65427803486146" x2="0.0" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="105.00000000000001" y2="88.00000000000001"/> + <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="88.00000000000001" y2="105.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="88.65427803486146" x2="61.65427803486146" y1="88.00000000000001" y2="88.00000000000001"/> + <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="88.00000000000001" y2="27.000000000000004"/> + <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="27.000000000000004" y2="88.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="88.65427803486146" x2="61.65427803486146" y1="27.000000000000004" y2="27.000000000000004"/> + <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="27.000000000000004" y2="10.000000000000002"/> + <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="10.000000000000002" y2="27.000000000000004"/> + <line opacity="0.5" stroke="#0000ff" x1="61.65427803486146" x2="88.65427803486146" y1="10.000000000000002" y2="10.000000000000002"/> + <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="0.0" y2="10.000000000000002"/> + <line stroke="#000000" x1="88.65427803486146" x2="61.65427803486146" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="10.000000000000002" y2="0.0"/> + <line stroke="#888888" x1="84.15427803486145" x2="84.15427803486145" y1="102.50000000000001" y2="108.50000000000001"/> + <line stroke="#888888" x1="84.15427803486145" x2="66.15427803486145" y1="108.50000000000001" y2="108.50000000000001"/> + <line stroke="#888888" x1="66.15427803486145" x2="66.15427803486145" y1="108.50000000000001" y2="102.50000000000001"/> + <line stroke="#888888" x1="66.15427803486145" x2="84.15427803486145" y1="102.50000000000001" y2="102.50000000000001"/> + <line stroke="#888888" x1="70.40427803486146" x2="79.90427803486145" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="79.90427803486145" x2="79.90427803486145" y1="158.25000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="79.90427803486145" x2="70.40427803486146" y1="158.75000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="70.40427803486146" x2="70.40427803486146" y1="158.75000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="79.65427803486145" x2="79.65427803486145" y1="2.5000000000000004" y2="7.500000000000001"/> + <line stroke="#888888" x1="79.65427803486145" x2="70.65427803486145" y1="7.500000000000001" y2="7.500000000000001"/> + <line stroke="#888888" x1="70.65427803486145" x2="70.65427803486145" y1="7.500000000000001" y2="2.5000000000000004"/> +</svg> diff --git a/rocolib/output/BatteryMount/graph-autofold-default.dxf b/rocolib/output/BatteryMount/graph-autofold-default.dxf new file mode 100644 index 0000000000000000000000000000000000000000..126d9db2800bf6738820f01790fcb8826f162cca --- /dev/null +++ b/rocolib/output/BatteryMount/graph-autofold-default.dxf @@ -0,0 +1,1578 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +8 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +LAYER + 2 +0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-45 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +cut + 10 +150.3085560697229 + 20 +105.00000000000001 + 30 +0.0 + 11 +88.65427803486146 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +150.3085560697229 + 20 +166.0 + 30 +0.0 + 11 +150.3085560697229 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +88.65427803486146 + 20 +166.0 + 30 +0.0 + 11 +150.3085560697229 + 21 +166.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-45 + 10 +88.65427803486146 + 20 +166.0 + 30 +0.0 + 11 +88.65427803486146 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +61.65427803486146 + 20 +166.0 + 30 +0.0 + 11 +88.65427803486146 + 21 +166.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-45 + 10 +61.65427803486146 + 20 +105.00000000000001 + 30 +0.0 + 11 +61.65427803486146 + 21 +166.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +88.65427803486146 + 20 +105.00000000000001 + 30 +0.0 + 11 +61.65427803486146 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +166.0 + 30 +0.0 + 11 +61.65427803486146 + 21 +166.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +105.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +166.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +61.65427803486146 + 20 +105.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +88.65427803486146 + 20 +105.00000000000001 + 30 +0.0 + 11 +88.65427803486146 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +61.65427803486146 + 20 +88.00000000000001 + 30 +0.0 + 11 +61.65427803486146 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +88.65427803486146 + 20 +88.00000000000001 + 30 +0.0 + 11 +61.65427803486146 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +88.65427803486146 + 20 +88.00000000000001 + 30 +0.0 + 11 +88.65427803486146 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +61.65427803486146 + 20 +27.000000000000004 + 30 +0.0 + 11 +61.65427803486146 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +88.65427803486146 + 20 +27.000000000000004 + 30 +0.0 + 11 +61.65427803486146 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +88.65427803486146 + 20 +27.000000000000004 + 30 +0.0 + 11 +88.65427803486146 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +61.65427803486146 + 20 +10.000000000000002 + 30 +0.0 + 11 +61.65427803486146 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +61.65427803486146 + 20 +10.000000000000002 + 30 +0.0 + 11 +88.65427803486146 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +61.65427803486146 + 20 +0.0 + 30 +0.0 + 11 +61.65427803486146 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +88.65427803486146 + 20 +0.0 + 30 +0.0 + 11 +61.65427803486146 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +88.65427803486146 + 20 +10.000000000000002 + 30 +0.0 + 11 +88.65427803486146 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +84.15427803486145 + 20 +102.50000000000001 + 30 +0.0 + 11 +84.15427803486145 + 21 +108.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +84.15427803486145 + 20 +108.50000000000001 + 30 +0.0 + 11 +66.15427803486145 + 21 +108.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +66.15427803486145 + 20 +108.50000000000001 + 30 +0.0 + 11 +66.15427803486145 + 21 +102.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +66.15427803486145 + 20 +102.50000000000001 + 30 +0.0 + 11 +84.15427803486145 + 21 +102.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +70.40427803486146 + 20 +158.25000000000003 + 30 +0.0 + 11 +79.90427803486145 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +79.90427803486145 + 20 +158.25000000000003 + 30 +0.0 + 11 +79.90427803486145 + 21 +158.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +79.90427803486145 + 20 +158.75000000000003 + 30 +0.0 + 11 +70.40427803486146 + 21 +158.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +70.40427803486146 + 20 +158.75000000000003 + 30 +0.0 + 11 +70.40427803486146 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +79.65427803486145 + 20 +2.5000000000000004 + 30 +0.0 + 11 +79.65427803486145 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +79.65427803486145 + 20 +7.500000000000001 + 30 +0.0 + 11 +70.65427803486145 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +70.65427803486145 + 20 +7.500000000000001 + 30 +0.0 + 11 +70.65427803486145 + 21 +2.5000000000000004 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BatteryMount/graph-autofold-graph.dxf b/rocolib/output/BatteryMount/graph-autofold-graph.dxf new file mode 100644 index 0000000000000000000000000000000000000000..f085ea7890de289f1fd6fb5fc873bd4843f50ef2 --- /dev/null +++ b/rocolib/output/BatteryMount/graph-autofold-graph.dxf @@ -0,0 +1,1548 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +0 + 10 +150.3085560697229 + 20 +105.00000000000001 + 30 +0.0 + 11 +88.65427803486146 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +150.3085560697229 + 20 +166.0 + 30 +0.0 + 11 +150.3085560697229 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.65427803486146 + 20 +166.0 + 30 +0.0 + 11 +150.3085560697229 + 21 +166.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +88.65427803486146 + 20 +166.0 + 30 +0.0 + 11 +88.65427803486146 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.65427803486146 + 20 +166.0 + 30 +0.0 + 11 +88.65427803486146 + 21 +166.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +61.65427803486146 + 20 +105.00000000000001 + 30 +0.0 + 11 +61.65427803486146 + 21 +166.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +88.65427803486146 + 20 +105.00000000000001 + 30 +0.0 + 11 +61.65427803486146 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +166.0 + 30 +0.0 + 11 +61.65427803486146 + 21 +166.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +105.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +166.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.65427803486146 + 20 +105.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.65427803486146 + 20 +105.00000000000001 + 30 +0.0 + 11 +88.65427803486146 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.65427803486146 + 20 +88.00000000000001 + 30 +0.0 + 11 +61.65427803486146 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +88.65427803486146 + 20 +88.00000000000001 + 30 +0.0 + 11 +61.65427803486146 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.65427803486146 + 20 +88.00000000000001 + 30 +0.0 + 11 +88.65427803486146 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.65427803486146 + 20 +27.000000000000004 + 30 +0.0 + 11 +61.65427803486146 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +88.65427803486146 + 20 +27.000000000000004 + 30 +0.0 + 11 +61.65427803486146 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.65427803486146 + 20 +27.000000000000004 + 30 +0.0 + 11 +88.65427803486146 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.65427803486146 + 20 +10.000000000000002 + 30 +0.0 + 11 +61.65427803486146 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +61.65427803486146 + 20 +10.000000000000002 + 30 +0.0 + 11 +88.65427803486146 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.65427803486146 + 20 +0.0 + 30 +0.0 + 11 +61.65427803486146 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.65427803486146 + 20 +0.0 + 30 +0.0 + 11 +61.65427803486146 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.65427803486146 + 20 +10.000000000000002 + 30 +0.0 + 11 +88.65427803486146 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +84.15427803486145 + 20 +102.50000000000001 + 30 +0.0 + 11 +84.15427803486145 + 21 +108.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +84.15427803486145 + 20 +108.50000000000001 + 30 +0.0 + 11 +66.15427803486145 + 21 +108.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.15427803486145 + 20 +108.50000000000001 + 30 +0.0 + 11 +66.15427803486145 + 21 +102.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.15427803486145 + 20 +102.50000000000001 + 30 +0.0 + 11 +84.15427803486145 + 21 +102.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.40427803486146 + 20 +158.25000000000003 + 30 +0.0 + 11 +79.90427803486145 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.90427803486145 + 20 +158.25000000000003 + 30 +0.0 + 11 +79.90427803486145 + 21 +158.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.90427803486145 + 20 +158.75000000000003 + 30 +0.0 + 11 +70.40427803486146 + 21 +158.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.40427803486146 + 20 +158.75000000000003 + 30 +0.0 + 11 +70.40427803486146 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.65427803486145 + 20 +2.5000000000000004 + 30 +0.0 + 11 +79.65427803486145 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.65427803486145 + 20 +7.500000000000001 + 30 +0.0 + 11 +70.65427803486145 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.65427803486145 + 20 +7.500000000000001 + 30 +0.0 + 11 +70.65427803486145 + 21 +2.5000000000000004 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BatteryMount/graph-lasercutter.svg b/rocolib/output/BatteryMount/graph-lasercutter.svg new file mode 100644 index 0000000000000000000000000000000000000000..c3055257ace5ac19f85a907f0ac4ae6565cdfcf5 --- /dev/null +++ b/rocolib/output/BatteryMount/graph-lasercutter.svg @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="utf-8" ?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="166.000000mm" version="1.1" viewBox="0.000000 0.000000 150.308556 166.000000" width="150.308556mm"> + <defs/> + <line stroke="#000000" x1="150.3085560697229" x2="88.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="150.3085560697229" x2="150.3085560697229" y1="166.0" y2="105.00000000000001"/> + <line stroke="#000000" x1="88.65427803486146" x2="150.3085560697229" y1="166.0" y2="166.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="88.65427803486146" x2="88.65427803486146" y1="166.0" y2="105.00000000000001"/> + <line stroke="#000000" x1="61.65427803486146" x2="88.65427803486146" y1="166.0" y2="166.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="61.65427803486146" x2="61.65427803486146" y1="105.00000000000001" y2="166.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="88.65427803486146" x2="61.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="61.65427803486146" y1="166.0" y2="166.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="105.00000000000001" y2="166.0"/> + <line stroke="#000000" x1="61.65427803486146" x2="0.0" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="105.00000000000001" y2="88.00000000000001"/> + <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="88.00000000000001" y2="105.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="88.65427803486146" x2="61.65427803486146" y1="88.00000000000001" y2="88.00000000000001"/> + <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="88.00000000000001" y2="27.000000000000004"/> + <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="27.000000000000004" y2="88.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="88.65427803486146" x2="61.65427803486146" y1="27.000000000000004" y2="27.000000000000004"/> + <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="27.000000000000004" y2="10.000000000000002"/> + <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="10.000000000000002" y2="27.000000000000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="61.65427803486146" x2="88.65427803486146" y1="10.000000000000002" y2="10.000000000000002"/> + <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="0.0" y2="10.000000000000002"/> + <line stroke="#000000" x1="88.65427803486146" x2="61.65427803486146" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="10.000000000000002" y2="0.0"/> + <line stroke="#888888" x1="84.15427803486145" x2="84.15427803486145" y1="102.50000000000001" y2="108.50000000000001"/> + <line stroke="#888888" x1="84.15427803486145" x2="66.15427803486145" y1="108.50000000000001" y2="108.50000000000001"/> + <line stroke="#888888" x1="66.15427803486145" x2="66.15427803486145" y1="108.50000000000001" y2="102.50000000000001"/> + <line stroke="#888888" x1="66.15427803486145" x2="84.15427803486145" y1="102.50000000000001" y2="102.50000000000001"/> + <line stroke="#888888" x1="70.40427803486146" x2="79.90427803486145" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="79.90427803486145" x2="79.90427803486145" y1="158.25000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="79.90427803486145" x2="70.40427803486146" y1="158.75000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="70.40427803486146" x2="70.40427803486146" y1="158.75000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="79.65427803486145" x2="79.65427803486145" y1="2.5000000000000004" y2="7.500000000000001"/> + <line stroke="#888888" x1="79.65427803486145" x2="70.65427803486145" y1="7.500000000000001" y2="7.500000000000001"/> + <line stroke="#888888" x1="70.65427803486145" x2="70.65427803486145" y1="7.500000000000001" y2="2.5000000000000004"/> +</svg> diff --git a/rocolib/output/BatteryMount/graph-model.png b/rocolib/output/BatteryMount/graph-model.png new file mode 100644 index 0000000000000000000000000000000000000000..f4e87f061d9964384595d2980de408f75ebc0278 Binary files /dev/null and b/rocolib/output/BatteryMount/graph-model.png differ diff --git a/rocolib/output/BatteryMount/graph-model.stl b/rocolib/output/BatteryMount/graph-model.stl new file mode 100644 index 0000000000000000000000000000000000000000..1a05baa4df9539a2aaa6ef42b625f50da117d8b9 --- /dev/null +++ b/rocolib/output/BatteryMount/graph-model.stl @@ -0,0 +1,142 @@ +solid python +facet normal 0 0 0 +outer loop +vertex -0.0308 0.0305 0.0000 +vertex -0.0308 -0.0305 0.0000 +vertex 0.0308 -0.0305 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0308 -0.0305 0.0000 +vertex 0.0308 0.0305 0.0000 +vertex -0.0308 0.0305 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0499 -0.0305 0.0191 +vertex -0.0499 0.0305 0.0191 +vertex -0.0499 0.0305 0.0807 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0499 0.0305 0.0807 +vertex -0.0499 -0.0305 0.0807 +vertex -0.0499 -0.0305 0.0191 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0499 0.0305 0.0191 +vertex -0.0308 0.0305 -0.0000 +vertex -0.0428 0.0305 -0.0120 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0428 0.0305 -0.0120 +vertex -0.0619 0.0305 0.0071 +vertex -0.0499 0.0305 0.0191 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0619 0.0305 0.0071 +vertex -0.0428 0.0305 -0.0120 +vertex -0.0428 -0.0305 -0.0120 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0428 -0.0305 -0.0120 +vertex -0.0619 -0.0305 0.0071 +vertex -0.0619 0.0305 0.0071 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0619 -0.0305 0.0071 +vertex -0.0428 -0.0305 -0.0120 +vertex -0.0308 -0.0305 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0308 -0.0305 0.0000 +vertex -0.0499 -0.0305 0.0191 +vertex -0.0619 -0.0305 0.0071 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0340 -0.0330 0.0032 +vertex -0.0467 -0.0305 0.0159 +vertex -0.0467 -0.0330 0.0159 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0308 -0.0305 0.0000 +vertex -0.0340 -0.0270 0.0032 +vertex -0.0340 -0.0305 0.0032 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0340 -0.0270 0.0032 +vertex -0.0308 0.0305 0.0000 +vertex -0.0499 0.0305 0.0191 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0308 0.0305 0.0000 +vertex -0.0340 -0.0270 0.0032 +vertex -0.0308 -0.0305 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0467 -0.0270 0.0159 +vertex -0.0499 0.0305 0.0191 +vertex -0.0499 -0.0305 0.0191 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0499 0.0305 0.0191 +vertex -0.0467 -0.0270 0.0159 +vertex -0.0340 -0.0270 0.0032 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0499 -0.0305 0.0191 +vertex -0.0467 -0.0305 0.0159 +vertex -0.0467 -0.0270 0.0159 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0467 -0.0305 0.0159 +vertex -0.0340 -0.0330 0.0032 +vertex -0.0340 -0.0305 0.0032 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0308 0.0205 -0.0000 +vertex -0.0308 0.0305 -0.0000 +vertex -0.0499 0.0305 0.0191 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0499 0.0305 0.0191 +vertex -0.0499 0.0205 0.0191 +vertex -0.0308 0.0205 -0.0000 +endloop +endfacet +endsolid python diff --git a/rocolib/output/BatteryMount/graph-silhouette.dxf b/rocolib/output/BatteryMount/graph-silhouette.dxf new file mode 100644 index 0000000000000000000000000000000000000000..f3f52603114f6ea325e2851ec26614ed1744586b --- /dev/null +++ b/rocolib/output/BatteryMount/graph-silhouette.dxf @@ -0,0 +1,1548 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +0 + 10 +150.3085560697229 + 20 +105.00000000000001 + 30 +0.0 + 11 +88.65427803486146 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +150.3085560697229 + 20 +166.0 + 30 +0.0 + 11 +150.3085560697229 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.65427803486146 + 20 +166.0 + 30 +0.0 + 11 +150.3085560697229 + 21 +166.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +88.65427803486146 + 20 +166.0 + 30 +0.0 + 11 +88.65427803486146 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.65427803486146 + 20 +166.0 + 30 +0.0 + 11 +88.65427803486146 + 21 +166.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +61.65427803486146 + 20 +105.00000000000001 + 30 +0.0 + 11 +61.65427803486146 + 21 +166.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +88.65427803486146 + 20 +105.00000000000001 + 30 +0.0 + 11 +61.65427803486146 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +166.0 + 30 +0.0 + 11 +61.65427803486146 + 21 +166.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +105.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +166.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.65427803486146 + 20 +105.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.65427803486146 + 20 +105.00000000000001 + 30 +0.0 + 11 +88.65427803486146 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.65427803486146 + 20 +88.00000000000001 + 30 +0.0 + 11 +61.65427803486146 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +88.65427803486146 + 20 +88.00000000000001 + 30 +0.0 + 11 +61.65427803486146 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.65427803486146 + 20 +88.00000000000001 + 30 +0.0 + 11 +88.65427803486146 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.65427803486146 + 20 +27.000000000000004 + 30 +0.0 + 11 +61.65427803486146 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +88.65427803486146 + 20 +27.000000000000004 + 30 +0.0 + 11 +61.65427803486146 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.65427803486146 + 20 +27.000000000000004 + 30 +0.0 + 11 +88.65427803486146 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.65427803486146 + 20 +10.000000000000002 + 30 +0.0 + 11 +61.65427803486146 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +61.65427803486146 + 20 +10.000000000000002 + 30 +0.0 + 11 +88.65427803486146 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.65427803486146 + 20 +0.0 + 30 +0.0 + 11 +61.65427803486146 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.65427803486146 + 20 +0.0 + 30 +0.0 + 11 +61.65427803486146 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.65427803486146 + 20 +10.000000000000002 + 30 +0.0 + 11 +88.65427803486146 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +84.15427803486145 + 20 +102.50000000000001 + 30 +0.0 + 11 +84.15427803486145 + 21 +108.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +84.15427803486145 + 20 +108.50000000000001 + 30 +0.0 + 11 +66.15427803486145 + 21 +108.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.15427803486145 + 20 +108.50000000000001 + 30 +0.0 + 11 +66.15427803486145 + 21 +102.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.15427803486145 + 20 +102.50000000000001 + 30 +0.0 + 11 +84.15427803486145 + 21 +102.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.40427803486146 + 20 +158.25000000000003 + 30 +0.0 + 11 +79.90427803486145 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.90427803486145 + 20 +158.25000000000003 + 30 +0.0 + 11 +79.90427803486145 + 21 +158.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.90427803486145 + 20 +158.75000000000003 + 30 +0.0 + 11 +70.40427803486146 + 21 +158.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.40427803486146 + 20 +158.75000000000003 + 30 +0.0 + 11 +70.40427803486146 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.65427803486145 + 20 +2.5000000000000004 + 30 +0.0 + 11 +79.65427803486145 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.65427803486145 + 20 +7.500000000000001 + 30 +0.0 + 11 +70.65427803486145 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.65427803486145 + 20 +7.500000000000001 + 30 +0.0 + 11 +70.65427803486145 + 21 +2.5000000000000004 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BatteryMount/tree.png b/rocolib/output/BatteryMount/tree.png new file mode 100644 index 0000000000000000000000000000000000000000..7d43e2bb388d1281155ba767a4b1cfc2862eaa3b Binary files /dev/null and b/rocolib/output/BatteryMount/tree.png differ diff --git a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg index 7f596d3c99179c8a4722fbfb89b221c97fe1d9fa..90e395c9318ba09b5385f838f33834a014a0967d 100644 --- a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg +++ b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg @@ -1,108 +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="480.500000mm" version="1.1" viewBox="0.000000 0.000000 709.355061 480.500000" width="709.355061mm"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="383.004790mm" version="1.1" viewBox="0.000000 0.000000 811.355061 383.004790" width="811.355061mm"> <defs/> - <line stroke="#000000" x1="255.02325267042647" x2="194.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="194.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="160.02325267042647" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="194.02325267042647" x2="184.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="135.50000000000003" y2="101.50000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="160.02325267042647" x2="160.02325267042647" y1="101.50000000000001" y2="135.50000000000003"/> - <line stroke="#000000" x1="160.02325267042647" x2="160.02325267042647" y1="65.5" y2="101.50000000000001"/> - <line opacity="0.5" stroke="#ff0000" x1="160.02325267042647" x2="184.02325267042647" y1="65.5" y2="65.5"/> - <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="101.50000000000001" y2="65.5"/> - <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="65.5" y2="20.5"/> - <line stroke="#000000" x1="160.02325267042647" x2="160.02325267042647" y1="20.5" y2="65.5"/> - <line stroke="#000000" x1="160.02325267042647" x2="160.02325267042647" y1="15.500000000000004" y2="20.5"/> - <line stroke="#000000" x1="184.02325267042647" x2="160.02325267042647" y1="15.500000000000004" y2="15.500000000000004"/> - <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="20.5" y2="15.500000000000004"/> - <line stroke="#000000" x1="160.02325267042647" x2="140.02325267042644" y1="101.50000000000001" y2="101.50000000000001"/> - <line stroke="#000000" x1="140.02325267042644" x2="160.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="140.02325267042644" x2="140.02325267042644" y1="101.50000000000001" y2="135.50000000000003"/> - <line stroke="#000000" x1="140.02325267042644" x2="116.02325267042646" y1="101.50000000000001" y2="101.50000000000001"/> - <line stroke="#000000" x1="116.02325267042646" x2="140.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="116.02325267042646" x2="116.02325267042646" y1="101.50000000000001" y2="135.50000000000003"/> - <line stroke="#000000" x1="116.02325267042646" x2="96.02325267042644" y1="101.50000000000001" y2="101.50000000000001"/> - <line stroke="#000000" x1="96.02325267042644" x2="116.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="96.02325267042644" x2="96.02325267042644" y1="135.50000000000003" y2="101.50000000000001"/> - <line stroke="#000000" x1="86.02325267042646" x2="96.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="101.50000000000001" y2="135.50000000000003"/> - <line stroke="#000000" x1="96.02325267042644" x2="86.02325267042646" y1="101.50000000000001" y2="101.50000000000001"/> - <line opacity="0.25" stroke="#0000ff" x1="194.02325267042647" x2="255.02325267042647" y1="99.36137800081471" y2="99.36137800081471"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="99.36137800081471"/> - <line stroke="#000000" x1="194.02325267042647" x2="194.02325267042647" y1="99.36137800081471" y2="135.50000000000003"/> - <line opacity="0.25" stroke="#0000ff" x1="255.02325267042647" x2="194.02325267042647" y1="75.36137800081471" y2="75.36137800081471"/> - <line opacity="0.5" stroke="#0000ff" x1="255.02325267042647" x2="255.02325267042647" y1="75.36137800081471" y2="99.36137800081471"/> - <line stroke="#000000" x1="194.02325267042647" x2="194.02325267042647" y1="39.22275600162939" y2="75.36137800081472"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="75.36137800081472" y2="39.22275600162939"/> - <line stroke="#000000" x1="194.02325267042647" x2="194.02325267042647" y1="29.222756001629396" y2="39.22275600162939"/> - <line stroke="#000000" x1="255.02325267042647" x2="194.02325267042647" y1="29.222756001629396" y2="29.222756001629396"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="39.22275600162939" y2="29.222756001629396"/> - <line stroke="#000000" x1="265.02325267042653" x2="255.02325267042647" y1="75.36137800081471" y2="75.36137800081471"/> - <line stroke="#000000" x1="265.02325267042653" x2="265.02325267042653" y1="99.36137800081471" y2="75.36137800081471"/> - <line stroke="#000000" x1="255.02325267042647" x2="265.02325267042653" y1="99.36137800081471" y2="99.36137800081471"/> - <line stroke="#000000" x1="184.02325267042647" x2="194.02325267042647" y1="99.36137800081471" y2="99.36137800081471"/> - <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="75.36137800081471" y2="99.36137800081471"/> - <line stroke="#000000" x1="194.02325267042647" x2="184.02325267042647" y1="75.36137800081471" y2="75.36137800081471"/> - <line opacity="0.5" stroke="#0000ff" x1="255.02325267042647" x2="86.02325267042646" y1="205.50000000000003" y2="205.50000000000003"/> - <line opacity="0.2332622916434259" stroke="#0000ff" x1="255.02325267042647" x2="255.02325267042647" y1="205.50000000000003" y2="135.50000000000003"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="255.02325267042647" x2="307.53762348858805" y1="135.50000000000003" y2="135.50000000000003"/> - <line opacity="1.0" stroke="#ff0000" x1="255.02325267042647" x2="307.53762348858805" y1="205.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="117.99520972727949" y2="135.50000000000003"/> - <line stroke="#000000" x1="307.53762348858805" x2="255.02325267042647" y1="117.99520972727949" y2="117.99520972727949"/> - <line stroke="#000000" x1="307.53762348858805" x2="307.53762348858805" y1="135.50000000000003" y2="117.99520972727949"/> - <line opacity="1.0" stroke="#0000ff" x1="255.02325267042647" x2="322.2284003443256" y1="205.50000000000003" y2="185.91765779766357"/> - <line stroke="#000000" x1="322.2284003443256" x2="307.53762348858805" y1="185.91765779766357" y2="135.50000000000003"/> - <line stroke="#000000" x1="336.91917720006325" x2="322.2284003443256" y1="236.33531559532716" y2="185.91765779766357"/> - <line stroke="#000000" x1="341.0465053408527" x2="336.91917720006325" y1="250.50000000000003" y2="236.33531559532716"/> - <line opacity="0.31677294251280175" stroke="#0000ff" x1="341.0465053408527" x2="255.02325267042647" y1="250.50000000000003" y2="205.50000000000003"/> - <line opacity="0.3025684567112535" stroke="#0000ff" x1="255.0232526704265" x2="255.02325267042647" y1="250.50000000000003" y2="205.50000000000003"/> - <line opacity="0.3025684567112535" stroke="#0000ff" x1="255.02325267042653" x2="255.0232526704265" y1="295.5" y2="250.50000000000006"/> - <line opacity="0.31677294251280175" stroke="#0000ff" x1="341.0465053408528" x2="255.02325267042653" y1="250.50000000000003" y2="295.50000000000006"/> - <line opacity="1.0" stroke="#0000ff" x1="322.22840034432573" x2="255.0232526704265" y1="315.08234220233646" y2="295.50000000000006"/> - <line stroke="#000000" x1="336.9191772000633" x2="341.0465053408527" y1="264.6646844046729" y2="250.50000000000003"/> - <line stroke="#000000" x1="322.22840034432573" x2="336.9191772000633" y1="315.08234220233646" y2="264.6646844046729"/> - <line stroke="#000000" x1="307.53762348858817" x2="322.22840034432573" y1="365.50000000000006" y2="315.0823422023364"/> - <line opacity="1.0" stroke="#ff0000" x1="307.53762348858817" x2="255.02325267042653" y1="365.50000000000006" y2="295.50000000000006"/> - <line opacity="0.2332622916434259" stroke="#0000ff" x1="255.0232526704266" x2="255.0232526704265" y1="365.5000000000001" y2="295.5"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="307.53762348858817" x2="255.0232526704266" y1="365.50000000000006" y2="365.5000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="255.02325267042653" x2="86.02325267042642" y1="295.5" y2="295.50000000000017"/> - <line stroke="#000000" x1="194.02325267042656" x2="255.0232526704266" y1="365.50000000000017" y2="365.5000000000001"/> - <line stroke="#000000" x1="86.02325267042649" x2="86.02325267042649" y1="365.5000000000003" y2="365.5000000000003"/> - <line stroke="#000000" x1="255.0232526704266" x2="255.0232526704266" y1="365.5000000000001" y2="365.5000000000001"/> - <line stroke="#000000" x1="255.0232526704266" x2="194.02325267042656" y1="365.5000000000001" y2="365.50000000000017"/> - <line stroke="#000000" x1="255.0232526704266" x2="255.0232526704266" y1="365.5000000000001" y2="365.5000000000001"/> - <line stroke="#000000" x1="86.0232526704265" x2="86.0232526704265" y1="365.5000000000003" y2="365.5000000000003"/> - <line stroke="#000000" x1="194.02325267042656" x2="255.0232526704266" y1="365.50000000000017" y2="365.5000000000001"/> - <line stroke="#000000" x1="184.02325267042656" x2="194.02325267042656" y1="365.50000000000017" y2="365.50000000000017"/> - <line stroke="#000000" x1="86.02325267042649" x2="160.02325267042656" y1="365.5000000000003" y2="365.50000000000017"/> - <line stroke="#000000" x1="86.02325267042649" x2="86.02325267042649" y1="365.5000000000003" y2="365.5000000000003"/> - <line stroke="#000000" x1="255.0232526704266" x2="255.0232526704266" y1="365.5000000000001" y2="365.5000000000001"/> - <line stroke="#000000" x1="184.0232526704266" x2="184.02325267042656" y1="399.5000000000001" y2="365.50000000000017"/> - <line opacity="0.5" stroke="#0000ff" x1="160.02325267042656" x2="160.0232526704266" y1="365.50000000000017" y2="399.5000000000001"/> - <line stroke="#000000" x1="184.02325267042661" x2="184.0232526704266" y1="435.50000000000017" y2="399.5000000000001"/> - <line opacity="0.5" stroke="#ff0000" x1="184.02325267042661" x2="160.0232526704266" y1="435.50000000000017" y2="435.50000000000017"/> - <line stroke="#000000" x1="160.02325267042656" x2="160.0232526704266" y1="399.5000000000001" y2="435.50000000000017"/> - <line stroke="#000000" x1="160.0232526704266" x2="160.02325267042661" y1="435.50000000000017" y2="480.50000000000017"/> - <line stroke="#000000" x1="184.02325267042667" x2="184.02325267042661" y1="480.50000000000017" y2="435.50000000000017"/> - <line stroke="#000000" x1="160.02325267042661" x2="184.02325267042667" y1="480.50000000000017" y2="480.50000000000017"/> - <line stroke="#000000" x1="160.02325267042656" x2="140.0232526704265" y1="365.50000000000017" y2="365.50000000000017"/> - <line stroke="#000000" x1="140.02325267042653" x2="160.02325267042656" y1="399.5000000000001" y2="399.5000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="140.0232526704265" x2="140.02325267042653" y1="365.50000000000017" y2="399.5000000000001"/> - <line stroke="#000000" x1="140.02325267042653" x2="116.02325267042652" y1="365.50000000000017" y2="365.50000000000017"/> - <line stroke="#000000" x1="116.02325267042656" x2="140.02325267042656" y1="399.5000000000001" y2="399.5000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="116.02325267042652" x2="116.02325267042656" y1="365.50000000000017" y2="399.5000000000001"/> - <line stroke="#000000" x1="116.02325267042652" x2="96.02325267042652" y1="365.50000000000017" y2="365.50000000000017"/> - <line stroke="#000000" x1="96.02325267042654" x2="116.02325267042654" y1="399.5000000000001" y2="399.5000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="96.02325267042654" x2="96.02325267042652" y1="399.5000000000001" y2="365.50000000000017"/> - <line stroke="#000000" x1="86.02325267042654" x2="96.02325267042654" y1="399.5000000000001" y2="399.5000000000001"/> - <line stroke="#000000" x1="86.02325267042652" x2="86.02325267042654" y1="365.50000000000017" y2="399.5000000000001"/> - <line stroke="#000000" x1="96.02325267042652" x2="86.02325267042652" y1="365.50000000000017" y2="365.50000000000017"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="86.02325267042642" x2="86.02325267042642" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="147.02325267042642" x2="86.02325267042642" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="181.02325267042644" x2="171.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="86.02325267042642" x2="86.02325267042642" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="147.02325267042642" x2="73.02325267042643" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="181.02325267042644" x2="171.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="171.02325267042644" x2="181.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="73.02325267042643" x2="147.02325267042642" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="73.02325267042643" x2="73.02325267042643" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="171.02325267042644" x2="171.02325267042644" y1="135.50000000000003" y2="101.50000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="147.02325267042642" x2="147.02325267042642" y1="101.50000000000001" y2="135.50000000000003"/> + <line stroke="#000000" x1="147.02325267042642" x2="147.02325267042642" y1="65.5" y2="101.50000000000001"/> + <line opacity="0.5" stroke="#ff0000" x1="147.02325267042642" x2="171.02325267042644" y1="65.5" y2="65.5"/> + <line stroke="#000000" x1="171.02325267042644" x2="171.02325267042644" y1="101.50000000000001" y2="65.5"/> + <line stroke="#000000" x1="171.02325267042644" x2="171.02325267042644" y1="65.5" y2="20.5"/> + <line stroke="#000000" x1="147.02325267042642" x2="147.02325267042642" y1="20.5" y2="65.5"/> + <line stroke="#000000" x1="147.02325267042642" x2="147.02325267042642" y1="15.500000000000004" y2="20.5"/> + <line stroke="#000000" x1="171.02325267042644" x2="147.02325267042642" y1="15.500000000000004" y2="15.500000000000004"/> + <line stroke="#000000" x1="171.02325267042644" x2="171.02325267042644" y1="20.5" y2="15.500000000000004"/> + <line stroke="#000000" x1="147.02325267042642" x2="127.02325267042643" y1="101.50000000000001" y2="101.50000000000001"/> + <line stroke="#000000" x1="127.02325267042643" x2="147.02325267042642" y1="135.50000000000003" y2="135.50000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="127.02325267042643" x2="127.02325267042643" y1="101.50000000000001" y2="135.50000000000003"/> + <line stroke="#000000" x1="127.02325267042643" x2="103.02325267042642" y1="101.50000000000001" y2="101.50000000000001"/> + <line stroke="#000000" x1="103.02325267042642" x2="127.02325267042643" y1="135.50000000000003" y2="135.50000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="103.02325267042642" x2="103.02325267042642" y1="101.50000000000001" y2="135.50000000000003"/> + <line stroke="#000000" x1="103.02325267042642" x2="83.02325267042643" y1="101.50000000000001" y2="101.50000000000001"/> + <line stroke="#000000" x1="83.02325267042643" x2="103.02325267042642" y1="135.50000000000003" y2="135.50000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="83.02325267042643" x2="83.02325267042643" y1="135.50000000000003" y2="101.50000000000001"/> + <line stroke="#000000" x1="73.02325267042643" x2="83.02325267042643" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="73.02325267042643" x2="73.02325267042643" y1="101.50000000000001" y2="135.50000000000003"/> + <line stroke="#000000" x1="83.02325267042643" x2="73.02325267042643" y1="101.50000000000001" y2="101.50000000000001"/> + <line opacity="0.25" stroke="#0000ff" x1="181.02325267042644" x2="242.02325267042644" y1="99.36137800081471" y2="99.36137800081471"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="135.50000000000003" y2="99.36137800081471"/> + <line stroke="#000000" x1="181.02325267042644" x2="181.02325267042644" y1="99.36137800081471" y2="135.50000000000003"/> + <line opacity="0.25" stroke="#0000ff" x1="242.02325267042644" x2="181.02325267042644" y1="75.36137800081471" y2="75.36137800081471"/> + <line opacity="0.5" stroke="#0000ff" x1="242.02325267042644" x2="242.02325267042644" y1="75.36137800081471" y2="99.36137800081471"/> + <line stroke="#000000" x1="181.02325267042644" x2="181.02325267042644" y1="39.22275600162939" y2="75.36137800081472"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="75.36137800081472" y2="39.22275600162939"/> + <line stroke="#000000" x1="181.02325267042644" x2="181.02325267042644" y1="29.222756001629396" y2="39.22275600162939"/> + <line stroke="#000000" x1="242.02325267042644" x2="181.02325267042644" y1="29.222756001629396" y2="29.222756001629396"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="39.22275600162939" y2="29.222756001629396"/> + <line stroke="#000000" x1="252.02325267042647" x2="242.02325267042644" y1="75.36137800081471" y2="75.36137800081471"/> + <line stroke="#000000" x1="252.02325267042647" x2="252.02325267042647" y1="99.36137800081471" y2="75.36137800081471"/> + <line stroke="#000000" x1="242.02325267042644" x2="252.02325267042647" y1="99.36137800081471" y2="99.36137800081471"/> + <line stroke="#000000" x1="171.02325267042644" x2="181.02325267042644" y1="99.36137800081471" y2="99.36137800081471"/> + <line stroke="#000000" x1="171.02325267042644" x2="171.02325267042644" y1="75.36137800081471" y2="99.36137800081471"/> + <line stroke="#000000" x1="181.02325267042644" x2="171.02325267042644" y1="75.36137800081471" y2="75.36137800081471"/> + <line opacity="0.5" stroke="#0000ff" x1="242.02325267042644" x2="86.02325267042642" y1="205.50000000000003" y2="205.50000000000003"/> + <line opacity="0.2332622916434259" stroke="#0000ff" x1="242.02325267042644" x2="242.02325267042644" y1="205.50000000000003" y2="135.50000000000003"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="242.02325267042644" x2="294.53762348858805" y1="135.50000000000003" y2="135.50000000000003"/> + <line opacity="1.0" stroke="#ff0000" x1="242.02325267042644" x2="294.53762348858805" y1="205.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="117.99520972727949" y2="135.50000000000003"/> + <line stroke="#000000" x1="294.53762348858805" x2="242.02325267042644" y1="117.99520972727949" y2="117.99520972727949"/> + <line stroke="#000000" x1="294.53762348858805" x2="294.53762348858805" y1="135.50000000000003" y2="117.99520972727949"/> + <line opacity="1.0" stroke="#0000ff" x1="242.02325267042644" x2="309.2284003443256" y1="205.50000000000003" y2="185.91765779766357"/> + <line stroke="#000000" x1="309.2284003443256" x2="294.53762348858805" y1="185.91765779766357" y2="135.50000000000003"/> + <line stroke="#000000" x1="323.9191772000632" x2="309.2284003443256" y1="236.33531559532716" y2="185.91765779766357"/> + <line stroke="#000000" x1="328.0465053408528" x2="323.9191772000632" y1="250.50000000000003" y2="236.33531559532716"/> + <line opacity="0.31677294251280175" stroke="#0000ff" x1="328.0465053408528" x2="242.02325267042644" y1="250.50000000000003" y2="205.50000000000003"/> + <line opacity="0.3025684567112535" stroke="#0000ff" x1="242.02325267042647" x2="242.02325267042644" y1="250.50000000000003" y2="205.50000000000003"/> + <line opacity="0.3025684567112535" stroke="#0000ff" x1="242.0232526704265" x2="242.02325267042647" y1="295.5" y2="250.50000000000006"/> + <line opacity="0.31677294251280175" stroke="#0000ff" x1="328.0465053408528" x2="242.0232526704265" y1="250.50000000000003" y2="295.50000000000006"/> + <line opacity="1.0" stroke="#0000ff" x1="309.22840034432573" x2="242.02325267042647" y1="315.08234220233646" y2="295.50000000000006"/> + <line stroke="#000000" x1="323.91917720006325" x2="328.0465053408528" y1="264.6646844046729" y2="250.50000000000003"/> + <line stroke="#000000" x1="309.22840034432573" x2="323.91917720006325" y1="315.08234220233646" y2="264.6646844046729"/> + <line stroke="#000000" x1="294.5376234885881" x2="309.22840034432573" y1="365.50000000000006" y2="315.0823422023364"/> + <line opacity="1.0" stroke="#ff0000" x1="294.5376234885881" x2="242.0232526704265" y1="365.50000000000006" y2="295.50000000000006"/> + <line opacity="0.2332622916434259" stroke="#0000ff" x1="242.02325267042656" x2="242.02325267042647" y1="365.5000000000001" y2="295.5"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="294.5376234885881" x2="242.02325267042656" y1="365.50000000000006" y2="365.5000000000001"/> + <line stroke="#000000" x1="86.02325267042647" x2="242.02325267042656" y1="365.5000000000002" y2="365.5000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="242.0232526704265" x2="86.02325267042639" y1="295.50000000000006" y2="295.50000000000017"/> <line opacity="0.2332622916434259" stroke="#0000ff" x1="86.0232526704264" x2="86.02325267042649" y1="295.50000000000017" y2="365.5000000000002"/> <line opacity="0.9666666666666667" stroke="#ff0000" x1="86.02325267042649" x2="33.508881852264885" y1="365.5000000000003" y2="365.5000000000003"/> <line opacity="1.0" stroke="#ff0000" x1="86.0232526704264" x2="33.508881852264885" y1="295.5000000000002" y2="365.5000000000003"/> @@ -127,119 +99,76 @@ <line stroke="#000000" x1="33.50888185226451" x2="33.50888185226454" y1="117.9952097272797" y2="135.50000000000023"/> <line stroke="#000000" x1="86.02325267042612" x2="33.50888185226451" y1="117.9952097272796" y2="117.9952097272797"/> <line stroke="#000000" x1="86.02325267042615" x2="86.02325267042612" y1="135.5000000000001" y2="117.9952097272796"/> - <line stroke="#000000" x1="307.5376234885882" x2="307.53762348858817" y1="383.0047902727206" y2="365.50000000000006"/> - <line stroke="#000000" x1="255.02325267042661" x2="307.5376234885882" y1="383.00479027272064" y2="383.0047902727206"/> - <line stroke="#000000" x1="255.0232526704266" x2="255.02325267042661" y1="365.5000000000001" y2="383.00479027272064"/> - <line stroke="#888888" x1="232.5914344886083" x2="244.18234357951738" y1="127.75000000000001" y2="127.75000000000001"/> - <line stroke="#888888" x1="244.18234357951738" x2="244.18234357951738" y1="127.75000000000001" y2="128.25000000000003"/> - <line stroke="#888888" x1="244.18234357951738" x2="232.5914344886083" y1="128.25000000000003" y2="128.25000000000003"/> - <line stroke="#888888" x1="232.5914344886083" x2="232.5914344886083" y1="128.25000000000003" y2="127.75000000000001"/> - <line stroke="#888888" x1="204.86416176133557" x2="216.45507085224466" y1="127.75000000000001" y2="127.75000000000001"/> - <line stroke="#888888" x1="216.45507085224466" x2="216.45507085224466" y1="127.75000000000001" y2="128.25000000000003"/> - <line stroke="#888888" x1="216.45507085224466" x2="204.86416176133557" y1="128.25000000000003" y2="128.25000000000003"/> - <line stroke="#888888" x1="204.86416176133557" x2="204.86416176133557" y1="128.25000000000003" y2="127.75000000000001"/> - <line stroke="#888888" x1="176.27325267042647" x2="176.27325267042647" y1="124.41666666666669" y2="112.58333333333334"/> - <line stroke="#888888" x1="176.27325267042647" x2="176.77325267042644" y1="112.58333333333334" y2="112.58333333333334"/> - <line stroke="#888888" x1="176.77325267042644" x2="176.77325267042644" y1="112.58333333333334" y2="124.41666666666669"/> - <line stroke="#888888" x1="176.77325267042644" x2="176.27325267042647" y1="124.41666666666669" y2="124.41666666666669"/> - <line stroke="#888888" x1="176.02325267042647" x2="178.52325267042647" y1="16.750000000000004" y2="16.750000000000004"/> - <line stroke="#888888" x1="178.52325267042647" x2="176.02325267042647" y1="16.750000000000004" y2="19.250000000000004"/> - <line stroke="#888888" x1="176.02325267042647" x2="168.02325267042644" y1="19.250000000000004" y2="19.250000000000004"/> - <line stroke="#888888" x1="168.02325267042644" x2="165.52325267042644" y1="19.250000000000004" y2="16.750000000000004"/> - <line stroke="#888888" x1="165.52325267042644" x2="168.02325267042644" y1="16.750000000000004" y2="16.750000000000004"/> - <line stroke="#888888" x1="141.02325267042647" x2="145.02325267042644" y1="112.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="145.02325267042644" x2="145.02325267042644" y1="112.50000000000001" y2="124.50000000000001"/> - <line stroke="#888888" x1="145.02325267042644" x2="141.02325267042647" y1="124.50000000000001" y2="124.50000000000001"/> - <line stroke="#888888" x1="141.02325267042647" x2="141.02325267042647" y1="124.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="153.02325267042647" x2="157.02325267042647" y1="114.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="157.02325267042647" x2="157.02325267042647" y1="114.00000000000001" y2="123.00000000000001"/> - <line stroke="#888888" x1="157.02325267042647" x2="153.02325267042647" y1="123.00000000000001" y2="123.00000000000001"/> - <line stroke="#888888" x1="153.02325267042647" x2="153.02325267042647" y1="123.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="116.52325267042646" x2="139.52325267042647" y1="112.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="139.52325267042647" x2="139.52325267042647" y1="112.50000000000001" y2="124.50000000000001"/> - <line stroke="#888888" x1="139.52325267042647" x2="116.52325267042646" y1="124.50000000000001" y2="124.50000000000001"/> - <line stroke="#888888" x1="116.52325267042646" x2="116.52325267042646" y1="124.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="111.02325267042646" x2="115.02325267042646" y1="112.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="115.02325267042646" x2="115.02325267042646" y1="112.50000000000001" y2="124.50000000000001"/> - <line stroke="#888888" x1="115.02325267042646" x2="111.02325267042646" y1="124.50000000000001" y2="124.50000000000001"/> - <line stroke="#888888" x1="111.02325267042646" x2="111.02325267042646" y1="124.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="88.52325267042646" x2="93.52325267042646" y1="112.83333333333336" y2="112.83333333333336"/> - <line stroke="#888888" x1="93.52325267042646" x2="93.52325267042646" y1="112.83333333333336" y2="124.16666666666669"/> - <line stroke="#888888" x1="93.52325267042646" x2="88.52325267042646" y1="124.16666666666669" y2="124.16666666666669"/> - <line stroke="#888888" x1="212.02325267042647" x2="223.02325267042647" y1="80.86137800081471" y2="80.86137800081471"/> - <line stroke="#888888" x1="223.02325267042647" x2="223.02325267042647" y1="80.86137800081471" y2="93.86137800081471"/> - <line stroke="#888888" x1="223.02325267042647" x2="212.02325267042647" y1="93.86137800081471" y2="93.86137800081471"/> - <line stroke="#888888" x1="212.02325267042647" x2="212.02325267042647" y1="93.86137800081471" y2="80.86137800081471"/> - <line stroke="#888888" x1="243.52325267042647" x2="249.52325267042647" y1="82.36137800081471" y2="82.36137800081471"/> - <line stroke="#888888" x1="249.52325267042647" x2="249.52325267042647" y1="82.36137800081471" y2="92.36137800081471"/> - <line stroke="#888888" x1="249.52325267042647" x2="243.52325267042647" y1="92.36137800081471" y2="92.36137800081471"/> - <line stroke="#888888" x1="243.52325267042647" x2="243.52325267042647" y1="92.36137800081471" y2="82.36137800081471"/> - <line stroke="#888888" x1="243.93234357951738" x2="243.93234357951738" y1="31.722756001629396" y2="36.7227560016294"/> - <line stroke="#888888" x1="243.93234357951738" x2="232.8414344886083" y1="36.7227560016294" y2="36.7227560016294"/> - <line stroke="#888888" x1="232.8414344886083" x2="232.8414344886083" y1="36.7227560016294" y2="31.722756001629396"/> - <line stroke="#888888" x1="216.20507085224466" x2="216.20507085224466" y1="31.722756001629396" y2="36.7227560016294"/> - <line stroke="#888888" x1="216.20507085224466" x2="205.11416176133554" y1="36.7227560016294" y2="36.7227560016294"/> - <line stroke="#888888" x1="205.11416176133554" x2="205.11416176133554" y1="36.7227560016294" y2="31.722756001629396"/> - <line stroke="#888888" x1="262.52325267042653" x2="257.52325267042653" y1="91.36137800081471" y2="91.36137800081471"/> - <line stroke="#888888" x1="257.52325267042653" x2="257.52325267042653" y1="91.36137800081471" y2="83.36137800081471"/> - <line stroke="#888888" x1="257.52325267042653" x2="262.52325267042653" y1="83.36137800081471" y2="83.36137800081471"/> - <line stroke="#888888" x1="186.52325267042647" x2="191.52325267042647" y1="83.36137800081471" y2="83.36137800081471"/> - <line stroke="#888888" x1="191.52325267042647" x2="191.52325267042647" y1="83.36137800081471" y2="91.36137800081471"/> - <line stroke="#888888" x1="191.52325267042647" x2="186.52325267042647" y1="91.36137800081471" y2="91.36137800081471"/> - <line stroke="#888888" x1="290.0328332158675" x2="290.0328332158675" y1="122.37140729545962" y2="131.12380243181985"/> - <line stroke="#888888" x1="290.0328332158675" x2="272.52804294314694" y1="131.12380243181985" y2="131.12380243181988"/> - <line stroke="#888888" x1="272.52804294314694" x2="272.52804294314694" y1="131.12380243181988" y2="122.37140729545962"/> - <line stroke="#888888" x1="319.2477556839554" x2="314.2109561925024" y1="223.5120791976936" y2="206.22615649603978"/> - <line stroke="#888888" x1="314.2109561925024" x2="314.69099296160164" y1="206.22615649603978" y2="206.08628262316594"/> - <line stroke="#888888" x1="314.69099296160164" x2="319.72779245305475" y1="206.08628262316594" y2="223.37220532481973"/> - <line stroke="#888888" x1="319.72779245305475" x2="319.2477556839554" y1="223.37220532481973" y2="223.5120791976936"/> - <line stroke="#888888" x1="314.21095619250247" x2="319.24775568395546" y1="294.77384350396034" y2="277.4879208023065"/> - <line stroke="#888888" x1="319.24775568395546" x2="319.72779245305475" y1="277.4879208023065" y2="277.6277946751803"/> - <line stroke="#888888" x1="319.72779245305475" x2="314.69099296160164" y1="277.6277946751803" y2="294.91371737683414"/> - <line stroke="#888888" x1="314.69099296160164" x2="314.21095619250247" y1="294.91371737683414" y2="294.77384350396034"/> - <line stroke="#888888" x1="216.45507085224477" x2="204.86416176133565" y1="373.25000000000017" y2="373.25000000000017"/> - <line stroke="#888888" x1="204.86416176133565" x2="204.86416176133565" y1="373.25000000000017" y2="372.7500000000001"/> - <line stroke="#888888" x1="204.86416176133565" x2="216.45507085224477" y1="372.7500000000001" y2="372.7500000000001"/> - <line stroke="#888888" x1="216.45507085224477" x2="216.45507085224477" y1="372.7500000000001" y2="373.25000000000017"/> - <line stroke="#888888" x1="244.1823435795175" x2="232.5914344886084" y1="373.25000000000006" y2="373.25000000000017"/> - <line stroke="#888888" x1="232.5914344886084" x2="232.5914344886084" y1="373.25000000000017" y2="372.7500000000001"/> - <line stroke="#888888" x1="232.5914344886084" x2="244.1823435795175" y1="372.7500000000001" y2="372.75000000000006"/> - <line stroke="#888888" x1="244.1823435795175" x2="244.1823435795175" y1="372.75000000000006" y2="373.25000000000006"/> - <line stroke="#888888" x1="232.5914344886084" x2="244.1823435795175" y1="357.75000000000017" y2="357.7500000000001"/> - <line stroke="#888888" x1="244.1823435795175" x2="244.1823435795175" y1="357.7500000000001" y2="358.2500000000001"/> - <line stroke="#888888" x1="244.1823435795175" x2="232.5914344886084" y1="358.2500000000001" y2="358.25000000000017"/> - <line stroke="#888888" x1="232.5914344886084" x2="232.5914344886084" y1="358.25000000000017" y2="357.75000000000017"/> - <line stroke="#888888" x1="204.86416176133562" x2="216.45507085224475" y1="357.75000000000017" y2="357.75000000000017"/> - <line stroke="#888888" x1="216.45507085224475" x2="216.45507085224475" y1="357.75000000000017" y2="358.25000000000017"/> - <line stroke="#888888" x1="216.45507085224475" x2="204.86416176133562" y1="358.25000000000017" y2="358.25000000000017"/> - <line stroke="#888888" x1="204.86416176133562" x2="204.86416176133562" y1="358.25000000000017" y2="357.75000000000017"/> - <line stroke="#888888" x1="176.27325267042653" x2="176.27325267042653" y1="388.4166666666668" y2="376.5833333333335"/> - <line stroke="#888888" x1="176.27325267042653" x2="176.77325267042653" y1="376.5833333333335" y2="376.5833333333335"/> - <line stroke="#888888" x1="176.77325267042653" x2="176.77325267042653" y1="376.5833333333335" y2="388.4166666666668"/> - <line stroke="#888888" x1="176.77325267042653" x2="176.27325267042653" y1="388.4166666666668" y2="388.4166666666668"/> - <line stroke="#888888" x1="167.77325267042664" x2="176.27325267042661" y1="476.50000000000017" y2="476.50000000000017"/> - <line stroke="#888888" x1="176.27325267042661" x2="176.27325267042661" y1="476.50000000000017" y2="477.00000000000017"/> - <line stroke="#888888" x1="176.27325267042661" x2="167.77325267042664" y1="477.00000000000017" y2="477.00000000000017"/> - <line stroke="#888888" x1="167.77325267042664" x2="167.77325267042664" y1="477.00000000000017" y2="476.50000000000017"/> - <line stroke="#888888" x1="141.02325267042656" x2="145.02325267042653" y1="376.50000000000017" y2="376.50000000000017"/> - <line stroke="#888888" x1="145.02325267042653" x2="145.02325267042653" y1="376.50000000000017" y2="388.50000000000017"/> - <line stroke="#888888" x1="145.02325267042653" x2="141.02325267042656" y1="388.50000000000017" y2="388.50000000000017"/> - <line stroke="#888888" x1="141.02325267042656" x2="141.02325267042656" y1="388.50000000000017" y2="376.50000000000017"/> - <line stroke="#888888" x1="153.02325267042656" x2="157.02325267042656" y1="378.00000000000017" y2="378.00000000000017"/> - <line stroke="#888888" x1="157.02325267042656" x2="157.02325267042656" y1="378.00000000000017" y2="387.00000000000017"/> - <line stroke="#888888" x1="157.02325267042656" x2="153.02325267042656" y1="387.00000000000017" y2="387.00000000000017"/> - <line stroke="#888888" x1="153.02325267042656" x2="153.02325267042656" y1="387.00000000000017" y2="378.00000000000017"/> - <line stroke="#888888" x1="116.52325267042653" x2="139.52325267042656" y1="376.50000000000017" y2="376.50000000000017"/> - <line stroke="#888888" x1="139.52325267042656" x2="139.52325267042656" y1="376.50000000000017" y2="388.50000000000017"/> - <line stroke="#888888" x1="139.52325267042656" x2="116.52325267042654" y1="388.50000000000017" y2="388.50000000000017"/> - <line stroke="#888888" x1="116.52325267042654" x2="116.52325267042653" y1="388.50000000000017" y2="376.50000000000017"/> - <line stroke="#888888" x1="111.02325267042653" x2="115.02325267042653" y1="376.50000000000017" y2="376.50000000000017"/> - <line stroke="#888888" x1="115.02325267042653" x2="115.02325267042653" y1="376.50000000000017" y2="388.50000000000017"/> - <line stroke="#888888" x1="115.02325267042653" x2="111.02325267042654" y1="388.50000000000017" y2="388.50000000000017"/> - <line stroke="#888888" x1="111.02325267042654" x2="111.02325267042653" y1="388.50000000000017" y2="376.50000000000017"/> - <line stroke="#888888" x1="88.52325267042652" x2="93.5232526704265" y1="376.8333333333335" y2="376.8333333333335"/> - <line stroke="#888888" x1="93.5232526704265" x2="93.52325267042652" y1="376.8333333333335" y2="388.16666666666686"/> - <line stroke="#888888" x1="93.52325267042652" x2="88.52325267042653" y1="388.16666666666686" y2="388.16666666666686"/> + <line stroke="#000000" x1="294.5376234885881" x2="294.5376234885881" y1="383.0047902727206" y2="365.50000000000006"/> + <line stroke="#000000" x1="242.0232526704266" x2="294.5376234885881" y1="383.00479027272064" y2="383.0047902727206"/> + <line stroke="#000000" x1="242.02325267042656" x2="242.0232526704266" y1="365.5000000000001" y2="383.00479027272064"/> + <line stroke="#888888" x1="108.4550708522446" x2="96.86416176133552" y1="143.25" y2="143.25"/> + <line stroke="#888888" x1="96.86416176133552" x2="96.86416176133552" y1="143.25" y2="142.75000000000003"/> + <line stroke="#888888" x1="96.86416176133552" x2="108.4550708522446" y1="142.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="108.4550708522446" x2="108.4550708522446" y1="142.75000000000003" y2="143.25"/> + <line stroke="#888888" x1="136.18234357951735" x2="124.59143448860826" y1="143.25" y2="143.25"/> + <line stroke="#888888" x1="124.59143448860826" x2="124.59143448860826" y1="143.25" y2="142.75000000000003"/> + <line stroke="#888888" x1="124.59143448860826" x2="136.18234357951735" y1="142.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="136.18234357951735" x2="136.18234357951735" y1="142.75000000000003" y2="143.25"/> + <line stroke="#888888" x1="163.27325267042642" x2="163.27325267042642" y1="124.41666666666669" y2="112.58333333333334"/> + <line stroke="#888888" x1="163.27325267042642" x2="163.77325267042644" y1="112.58333333333334" y2="112.58333333333334"/> + <line stroke="#888888" x1="163.77325267042644" x2="163.77325267042644" y1="112.58333333333334" y2="124.41666666666669"/> + <line stroke="#888888" x1="163.77325267042644" x2="163.27325267042642" y1="124.41666666666669" y2="124.41666666666669"/> + <line stroke="#888888" x1="163.02325267042642" x2="165.52325267042642" y1="16.750000000000004" y2="16.750000000000004"/> + <line stroke="#888888" x1="165.52325267042642" x2="163.02325267042642" y1="16.750000000000004" y2="19.250000000000004"/> + <line stroke="#888888" x1="163.02325267042642" x2="155.02325267042644" y1="19.250000000000004" y2="19.250000000000004"/> + <line stroke="#888888" x1="155.02325267042644" x2="152.52325267042644" y1="19.250000000000004" y2="16.750000000000004"/> + <line stroke="#888888" x1="152.52325267042644" x2="155.02325267042644" y1="16.750000000000004" y2="16.750000000000004"/> + <line stroke="#888888" x1="128.02325267042644" x2="132.02325267042644" y1="112.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="132.02325267042644" x2="132.02325267042644" y1="112.50000000000001" y2="124.50000000000001"/> + <line stroke="#888888" x1="132.02325267042644" x2="128.02325267042644" y1="124.50000000000001" y2="124.50000000000001"/> + <line stroke="#888888" x1="128.02325267042644" x2="128.02325267042644" y1="124.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="140.02325267042644" x2="144.02325267042644" y1="114.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="144.02325267042644" x2="144.02325267042644" y1="114.00000000000001" y2="123.00000000000001"/> + <line stroke="#888888" x1="144.02325267042644" x2="140.02325267042644" y1="123.00000000000001" y2="123.00000000000001"/> + <line stroke="#888888" x1="140.02325267042644" x2="140.02325267042644" y1="123.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="103.52325267042643" x2="126.52325267042643" y1="112.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="126.52325267042643" x2="126.52325267042643" y1="112.50000000000001" y2="124.50000000000001"/> + <line stroke="#888888" x1="126.52325267042643" x2="103.52325267042643" y1="124.50000000000001" y2="124.50000000000001"/> + <line stroke="#888888" x1="103.52325267042643" x2="103.52325267042643" y1="124.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="98.02325267042643" x2="102.02325267042643" y1="112.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="102.02325267042643" x2="102.02325267042643" y1="112.50000000000001" y2="124.50000000000001"/> + <line stroke="#888888" x1="102.02325267042643" x2="98.02325267042643" y1="124.50000000000001" y2="124.50000000000001"/> + <line stroke="#888888" x1="98.02325267042643" x2="98.02325267042643" y1="124.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="75.52325267042642" x2="80.52325267042643" y1="112.83333333333336" y2="112.83333333333336"/> + <line stroke="#888888" x1="80.52325267042643" x2="80.52325267042643" y1="112.83333333333336" y2="124.16666666666669"/> + <line stroke="#888888" x1="80.52325267042643" x2="75.52325267042642" y1="124.16666666666669" y2="124.16666666666669"/> + <line stroke="#888888" x1="199.02325267042644" x2="210.02325267042644" y1="80.86137800081471" y2="80.86137800081471"/> + <line stroke="#888888" x1="210.02325267042644" x2="210.02325267042644" y1="80.86137800081471" y2="93.86137800081471"/> + <line stroke="#888888" x1="210.02325267042644" x2="199.02325267042644" y1="93.86137800081471" y2="93.86137800081471"/> + <line stroke="#888888" x1="199.02325267042644" x2="199.02325267042644" y1="93.86137800081471" y2="80.86137800081471"/> + <line stroke="#888888" x1="230.52325267042644" x2="236.52325267042644" y1="82.36137800081471" y2="82.36137800081471"/> + <line stroke="#888888" x1="236.52325267042644" x2="236.52325267042644" y1="82.36137800081471" y2="92.36137800081471"/> + <line stroke="#888888" x1="236.52325267042644" x2="230.52325267042644" y1="92.36137800081471" y2="92.36137800081471"/> + <line stroke="#888888" x1="230.52325267042644" x2="230.52325267042644" y1="92.36137800081471" y2="82.36137800081471"/> + <line stroke="#888888" x1="230.93234357951735" x2="230.93234357951735" y1="31.722756001629396" y2="36.7227560016294"/> + <line stroke="#888888" x1="230.93234357951735" x2="219.84143448860826" y1="36.7227560016294" y2="36.7227560016294"/> + <line stroke="#888888" x1="219.84143448860826" x2="219.84143448860826" y1="36.7227560016294" y2="31.722756001629396"/> + <line stroke="#888888" x1="203.20507085224463" x2="203.20507085224463" y1="31.722756001629396" y2="36.7227560016294"/> + <line stroke="#888888" x1="203.20507085224463" x2="192.11416176133554" y1="36.7227560016294" y2="36.7227560016294"/> + <line stroke="#888888" x1="192.11416176133554" x2="192.11416176133554" y1="36.7227560016294" y2="31.722756001629396"/> + <line stroke="#888888" x1="249.52325267042644" x2="244.52325267042644" y1="91.36137800081471" y2="91.36137800081471"/> + <line stroke="#888888" x1="244.52325267042644" x2="244.52325267042644" y1="91.36137800081471" y2="83.36137800081471"/> + <line stroke="#888888" x1="244.52325267042644" x2="249.52325267042644" y1="83.36137800081471" y2="83.36137800081471"/> + <line stroke="#888888" x1="173.52325267042644" x2="178.52325267042644" y1="83.36137800081471" y2="83.36137800081471"/> + <line stroke="#888888" x1="178.52325267042644" x2="178.52325267042644" y1="83.36137800081471" y2="91.36137800081471"/> + <line stroke="#888888" x1="178.52325267042644" x2="173.52325267042644" y1="91.36137800081471" y2="91.36137800081471"/> + <line stroke="#888888" x1="277.03283321586747" x2="277.03283321586747" y1="122.37140729545962" y2="131.12380243181985"/> + <line stroke="#888888" x1="277.03283321586747" x2="259.52804294314694" y1="131.12380243181985" y2="131.12380243181988"/> + <line stroke="#888888" x1="259.52804294314694" x2="259.52804294314694" y1="131.12380243181988" y2="122.37140729545962"/> + <line stroke="#888888" x1="306.2477556839554" x2="301.21095619250235" y1="223.5120791976936" y2="206.22615649603978"/> + <line stroke="#888888" x1="301.21095619250235" x2="301.6909929616017" y1="206.22615649603978" y2="206.08628262316594"/> + <line stroke="#888888" x1="301.6909929616017" x2="306.7277924530547" y1="206.08628262316594" y2="223.37220532481973"/> + <line stroke="#888888" x1="306.7277924530547" x2="306.2477556839554" y1="223.37220532481973" y2="223.5120791976936"/> + <line stroke="#888888" x1="301.2109561925024" x2="306.2477556839554" y1="294.77384350396034" y2="277.4879208023065"/> + <line stroke="#888888" x1="306.2477556839554" x2="306.72779245305475" y1="277.4879208023065" y2="277.6277946751803"/> + <line stroke="#888888" x1="306.72779245305475" x2="301.6909929616017" y1="277.6277946751803" y2="294.91371737683414"/> + <line stroke="#888888" x1="301.6909929616017" x2="301.2109561925024" y1="294.91371737683414" y2="294.77384350396034"/> <line stroke="#888888" x1="51.01367212498543" x2="51.013672124985426" y1="378.6285927045407" y2="369.87619756818043"/> <line stroke="#888888" x1="51.013672124985426" x2="68.51846239770595" y1="369.87619756818043" y2="369.87619756818043"/> <line stroke="#888888" x1="68.51846239770595" x2="68.51846239770595" y1="369.87619756818043" y2="378.6285927045407"/> @@ -254,402 +183,458 @@ <line stroke="#888888" x1="68.51846239770559" x2="68.51846239770562" y1="122.37140729545976" y2="131.12380243182005"/> <line stroke="#888888" x1="68.51846239770562" x2="51.01367212498507" y1="131.12380243182005" y2="131.12380243182008"/> <line stroke="#888888" x1="51.01367212498507" x2="51.01367212498506" y1="131.12380243182008" y2="122.3714072954598"/> - <line stroke="#888888" x1="272.52804294314706" x2="272.52804294314706" y1="378.6285927045405" y2="369.87619756818015"/> - <line stroke="#888888" x1="272.52804294314706" x2="290.03283321586764" y1="369.87619756818015" y2="369.87619756818015"/> - <line stroke="#888888" x1="290.03283321586764" x2="290.03283321586764" y1="369.87619756818015" y2="378.6285927045405"/> - <line stroke="#000000" x1="511.3550614105758" x2="449.7007833757143" y1="105.00000000000001" y2="105.00000000000001"/> - <line stroke="#000000" x1="449.7007833757143" x2="511.3550614105758" y1="166.0" y2="166.0"/> - <line opacity="0.25" stroke="#ff0000" x1="449.7007833757143" x2="449.7007833757143" y1="166.0" y2="105.00000000000001"/> - <line stroke="#000000" x1="521.3550614105757" x2="511.3550614105758" y1="105.00000000000001" y2="105.00000000000001"/> - <line stroke="#000000" x1="521.3550614105757" x2="521.3550614105757" y1="166.0" y2="105.00000000000001"/> - <line stroke="#000000" x1="511.3550614105758" x2="521.3550614105757" y1="166.0" y2="166.0"/> - <line stroke="#000000" x1="422.7007833757143" x2="449.7007833757143" y1="166.0" y2="166.0"/> - <line opacity="0.25" stroke="#ff0000" x1="422.7007833757143" x2="422.7007833757143" y1="105.00000000000001" y2="166.0"/> - <line opacity="0.5" stroke="#0000ff" x1="449.7007833757143" x2="422.7007833757143" y1="105.00000000000001" y2="105.00000000000001"/> - <line stroke="#000000" x1="361.0465053408529" x2="422.7007833757143" y1="166.0" y2="166.0"/> - <line stroke="#000000" x1="422.7007833757143" x2="361.0465053408529" y1="105.00000000000001" y2="105.00000000000001"/> - <line stroke="#000000" x1="351.0465053408529" x2="361.0465053408529" y1="166.0" y2="166.0"/> - <line stroke="#000000" x1="351.0465053408529" x2="351.0465053408529" y1="105.00000000000001" y2="166.0"/> - <line stroke="#000000" x1="361.0465053408529" x2="351.0465053408529" y1="105.00000000000001" y2="105.00000000000001"/> - <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="105.00000000000001" y2="88.00000000000001"/> - <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="88.00000000000001" y2="105.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="449.7007833757143" x2="422.7007833757143" y1="88.00000000000001" y2="88.00000000000001"/> - <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="88.00000000000001" y2="27.000000000000004"/> - <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="27.000000000000004" y2="88.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="449.7007833757143" x2="422.7007833757143" y1="27.000000000000004" y2="27.000000000000004"/> - <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="27.000000000000004" y2="10.000000000000002"/> - <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="10.000000000000002" y2="27.000000000000004"/> - <line opacity="0.5" stroke="#0000ff" x1="422.7007833757143" x2="449.7007833757143" y1="10.000000000000002" y2="10.000000000000002"/> - <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="0.0" y2="10.000000000000002"/> - <line stroke="#000000" x1="449.7007833757143" x2="422.7007833757143" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="10.000000000000002" y2="0.0"/> - <line stroke="#888888" x1="518.8550614105758" x2="513.8550614105758" y1="154.90909090909093" y2="154.90909090909093"/> - <line stroke="#888888" x1="513.8550614105758" x2="513.8550614105758" y1="154.90909090909093" y2="143.8181818181818"/> - <line stroke="#888888" x1="513.8550614105758" x2="518.8550614105758" y1="143.8181818181818" y2="143.8181818181818"/> - <line stroke="#888888" x1="518.8550614105758" x2="513.8550614105758" y1="127.1818181818182" y2="127.1818181818182"/> - <line stroke="#888888" x1="513.8550614105758" x2="513.8550614105758" y1="127.1818181818182" y2="116.09090909090911"/> - <line stroke="#888888" x1="513.8550614105758" x2="518.8550614105758" y1="116.09090909090911" y2="116.09090909090911"/> - <line stroke="#888888" x1="445.2007833757143" x2="445.2007833757143" y1="102.50000000000001" y2="108.50000000000001"/> - <line stroke="#888888" x1="445.2007833757143" x2="427.2007833757143" y1="108.50000000000001" y2="108.50000000000001"/> - <line stroke="#888888" x1="427.2007833757143" x2="427.2007833757143" y1="108.50000000000001" y2="102.50000000000001"/> - <line stroke="#888888" x1="427.2007833757143" x2="445.2007833757143" y1="102.50000000000001" y2="102.50000000000001"/> - <line stroke="#888888" x1="431.4507833757143" x2="440.9507833757143" y1="158.25000000000003" y2="158.25000000000003"/> - <line stroke="#888888" x1="440.9507833757143" x2="440.9507833757143" y1="158.25000000000003" y2="158.75000000000003"/> - <line stroke="#888888" x1="440.9507833757143" x2="431.4507833757143" y1="158.75000000000003" y2="158.75000000000003"/> - <line stroke="#888888" x1="431.4507833757143" x2="431.4507833757143" y1="158.75000000000003" y2="158.25000000000003"/> - <line stroke="#888888" x1="353.54650534085283" x2="358.54650534085283" y1="116.09090909090911" y2="116.09090909090911"/> - <line stroke="#888888" x1="358.54650534085283" x2="358.54650534085283" y1="116.09090909090911" y2="127.18181818181822"/> - <line stroke="#888888" x1="358.54650534085283" x2="353.54650534085283" y1="127.18181818181822" y2="127.18181818181822"/> - <line stroke="#888888" x1="353.54650534085283" x2="358.54650534085283" y1="143.81818181818184" y2="143.81818181818184"/> - <line stroke="#888888" x1="358.54650534085283" x2="358.54650534085283" y1="143.81818181818184" y2="154.90909090909093"/> - <line stroke="#888888" x1="358.54650534085283" x2="353.54650534085283" y1="154.90909090909093" y2="154.90909090909093"/> - <line stroke="#888888" x1="440.7007833757143" x2="440.7007833757143" y1="2.5000000000000004" y2="7.500000000000001"/> - <line stroke="#888888" x1="440.7007833757143" x2="431.7007833757143" y1="7.500000000000001" y2="7.500000000000001"/> - <line stroke="#888888" x1="431.7007833757143" x2="431.7007833757143" y1="7.500000000000001" y2="2.5000000000000004"/> - <line opacity="0.5" stroke="#0000ff" x1="564.3550614105757" x2="625.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="625.3550614105758" x2="625.3550614105758" y1="123.50000000000001" y2="147.5"/> - <line opacity="0.5" stroke="#0000ff" x1="625.3550614105758" x2="564.3550614105757" y1="147.5" y2="147.5"/> - <line opacity="0.5" stroke="#0000ff" x1="564.3550614105757" x2="564.3550614105757" y1="147.5" y2="123.50000000000001"/> - <line stroke="#000000" x1="564.3550614105757" x2="564.3550614105757" y1="116.50000000000001" y2="123.50000000000001"/> - <line stroke="#000000" x1="624.3550614105758" x2="564.3550614105757" y1="116.50000000000001" y2="116.50000000000001"/> - <line stroke="#000000" x1="624.3550614105758" x2="624.3550614105758" y1="123.50000000000001" y2="116.50000000000001"/> - <line stroke="#000000" x1="632.3550614105758" x2="625.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> - <line stroke="#000000" x1="632.3550614105758" x2="632.3550614105758" y1="147.5" y2="123.50000000000001"/> - <line stroke="#000000" x1="625.3550614105758" x2="632.3550614105758" y1="147.5" y2="147.5"/> - <line opacity="0.5" stroke="#0000ff" x1="625.3550614105758" x2="625.3550614105758" y1="147.5" y2="208.50000000000003"/> - <line stroke="#000000" x1="565.3550614105757" x2="625.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="565.3550614105757" x2="565.3550614105757" y1="147.5" y2="208.50000000000003"/> - <line stroke="#000000" x1="649.3550614105757" x2="625.3550614105758" y1="147.5" y2="147.5"/> - <line opacity="0.5" stroke="#0000ff" x1="649.3550614105757" x2="649.3550614105757" y1="147.5" y2="208.50000000000003"/> - <line stroke="#000000" x1="625.3550614105758" x2="649.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/> - <line stroke="#000000" x1="709.3550614105758" x2="649.3550614105757" y1="147.5" y2="147.5"/> - <line stroke="#000000" x1="709.3550614105758" x2="709.3550614105758" y1="208.50000000000003" y2="147.5"/> - <line stroke="#000000" x1="649.3550614105757" x2="709.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/> - <line stroke="#000000" x1="565.3550614105757" x2="541.3550614105758" y1="147.5" y2="147.5"/> - <line stroke="#000000" x1="541.3550614105758" x2="565.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="541.3550614105758" x2="541.3550614105758" y1="208.50000000000003" y2="147.5"/> - <line stroke="#000000" x1="531.3550614105757" x2="541.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/> - <line stroke="#000000" x1="531.3550614105757" x2="531.3550614105757" y1="147.5" y2="208.50000000000003"/> - <line stroke="#000000" x1="541.3550614105758" x2="531.3550614105757" y1="147.5" y2="147.5"/> - <line stroke="#000000" x1="557.3550614105757" x2="564.3550614105757" y1="147.5" y2="147.5"/> - <line stroke="#000000" x1="557.3550614105757" x2="557.3550614105757" y1="123.50000000000001" y2="147.5"/> - <line stroke="#000000" x1="564.3550614105757" x2="557.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/> - <line stroke="#888888" x1="613.4459705014848" x2="616.9459705014849" y1="118.25000000000001" y2="118.25000000000001"/> - <line stroke="#888888" x1="616.9459705014849" x2="613.4459705014848" y1="118.25000000000001" y2="121.75000000000001"/> - <line stroke="#888888" x1="613.4459705014848" x2="602.5368795923939" y1="121.75000000000001" y2="121.75000000000001"/> - <line stroke="#888888" x1="602.5368795923939" x2="599.0368795923939" y1="121.75000000000001" y2="118.25000000000001"/> - <line stroke="#888888" x1="599.0368795923939" x2="602.5368795923939" y1="118.25000000000001" y2="118.25000000000001"/> - <line stroke="#888888" x1="586.1732432287575" x2="589.6732432287577" y1="118.25000000000001" y2="118.25000000000001"/> - <line stroke="#888888" x1="589.6732432287577" x2="586.1732432287575" y1="118.25000000000001" y2="121.75000000000001"/> - <line stroke="#888888" x1="586.1732432287575" x2="575.2641523196667" y1="121.75000000000001" y2="121.75000000000001"/> - <line stroke="#888888" x1="575.2641523196667" x2="571.7641523196666" y1="121.75000000000001" y2="118.25000000000001"/> - <line stroke="#888888" x1="571.7641523196666" x2="575.2641523196667" y1="118.25000000000001" y2="118.25000000000001"/> - <line stroke="#888888" x1="630.6050614105758" x2="627.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/> - <line stroke="#888888" x1="627.1050614105758" x2="627.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/> - <line stroke="#888888" x1="627.1050614105758" x2="630.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/> - <line stroke="#888888" x1="572.8550614105758" x2="572.8550614105758" y1="199.00000000000003" y2="181.00000000000003"/> - <line stroke="#888888" x1="572.8550614105758" x2="607.8550614105758" y1="181.00000000000003" y2="181.00000000000003"/> - <line stroke="#888888" x1="607.8550614105758" x2="607.8550614105758" y1="181.00000000000003" y2="199.00000000000003"/> - <line stroke="#888888" x1="607.8550614105758" x2="572.8550614105758" y1="199.00000000000003" y2="199.00000000000003"/> - <line stroke="#888888" x1="625.8550614105758" x2="625.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/> - <line stroke="#888888" x1="625.8550614105758" x2="628.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/> - <line stroke="#888888" x1="628.8550614105757" x2="628.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="628.8550614105757" x2="625.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="162.25000000000003" y2="161.25"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="161.25" y2="161.25"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="161.25" y2="162.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="162.25000000000003" y2="161.25"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="161.25" y2="161.25"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="161.25" y2="162.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="164.75000000000003" y2="163.75"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="163.75" y2="163.75"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="163.75" y2="164.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="164.75000000000003" y2="163.75"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="163.75" y2="163.75"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="163.75" y2="164.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="167.25000000000003" y2="166.25"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="166.25" y2="166.25"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="166.25" y2="167.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="167.25000000000003" y2="166.25"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="166.25" y2="166.25"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="166.25" y2="167.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="177.25" y2="176.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="176.25000000000003" y2="177.25"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="177.25" y2="177.25"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="177.25" y2="176.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="176.25000000000003" y2="177.25"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="177.25" y2="177.25"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="179.75" y2="178.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="178.75000000000003" y2="179.75"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="179.75" y2="179.75"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="179.75" y2="178.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="178.75000000000003" y2="179.75"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="179.75" y2="179.75"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="182.25" y2="181.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="181.25000000000003" y2="182.25"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="182.25" y2="182.25"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="182.25" y2="181.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="181.25000000000003" y2="182.25"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="182.25" y2="182.25"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="189.75000000000003" y2="188.75"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="188.75" y2="188.75"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="188.75" y2="189.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="189.75000000000003" y2="188.75"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="188.75" y2="188.75"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="188.75" y2="189.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="192.25000000000003" y2="191.25"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="191.25" y2="191.25"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="191.25" y2="192.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="192.25000000000003" y2="191.25"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="191.25" y2="191.25"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="191.25" y2="192.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/> - <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/> - <line stroke="#888888" x1="645.8550614105758" x2="648.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/> - <line stroke="#888888" x1="648.8550614105757" x2="648.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/> - <line stroke="#888888" x1="648.8550614105757" x2="645.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/> - <line stroke="#888888" x1="641.6050614105758" x2="633.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/> - <line stroke="#888888" x1="633.1050614105757" x2="633.1050614105757" y1="155.25000000000003" y2="154.75"/> - <line stroke="#888888" x1="633.1050614105757" x2="641.6050614105758" y1="154.75" y2="154.75"/> - <line stroke="#888888" x1="641.6050614105758" x2="641.6050614105758" y1="154.75" y2="155.25000000000003"/> - <line stroke="#888888" x1="633.1050614105757" x2="641.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/> - <line stroke="#888888" x1="641.6050614105758" x2="641.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/> - <line stroke="#888888" x1="641.6050614105758" x2="633.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/> - <line stroke="#888888" x1="633.1050614105757" x2="633.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/> - <line stroke="#888888" x1="664.3550614105758" x2="664.3550614105758" y1="198.50000000000003" y2="185.50000000000003"/> - <line stroke="#888888" x1="664.3550614105758" x2="694.3550614105757" y1="185.50000000000003" y2="185.50000000000003"/> - <line stroke="#888888" x1="694.3550614105757" x2="694.3550614105757" y1="185.50000000000003" y2="198.50000000000003"/> - <line stroke="#888888" x1="694.3550614105757" x2="664.3550614105758" y1="198.50000000000003" y2="198.50000000000003"/> - <line stroke="#888888" x1="671.4232432287575" x2="660.0141523196667" y1="153.00000000000003" y2="153.00000000000003"/> - <line stroke="#888888" x1="660.0141523196667" x2="660.0141523196667" y1="153.00000000000003" y2="152.5"/> - <line stroke="#888888" x1="660.0141523196667" x2="671.4232432287575" y1="152.5" y2="152.5"/> - <line stroke="#888888" x1="671.4232432287575" x2="671.4232432287575" y1="152.5" y2="153.00000000000003"/> - <line stroke="#888888" x1="698.6959705014849" x2="687.2868795923938" y1="153.00000000000003" y2="153.00000000000003"/> - <line stroke="#888888" x1="687.2868795923938" x2="687.2868795923938" y1="153.00000000000003" y2="152.5"/> - <line stroke="#888888" x1="687.2868795923938" x2="698.6959705014849" y1="152.5" y2="152.5"/> - <line stroke="#888888" x1="698.6959705014849" x2="698.6959705014849" y1="152.5" y2="153.00000000000003"/> - <line stroke="#888888" x1="701.6050614105758" x2="701.6050614105758" y1="169.93181818181822" y2="158.3409090909091"/> - <line stroke="#888888" x1="701.6050614105758" x2="702.1050614105758" y1="158.3409090909091" y2="158.3409090909091"/> - <line stroke="#888888" x1="702.1050614105758" x2="702.1050614105758" y1="158.3409090909091" y2="169.93181818181822"/> - <line stroke="#888888" x1="702.1050614105758" x2="701.6050614105758" y1="169.93181818181822" y2="169.93181818181822"/> - <line stroke="#888888" x1="701.6050614105758" x2="701.6050614105758" y1="197.65909090909093" y2="186.06818181818184"/> - <line stroke="#888888" x1="701.6050614105758" x2="702.1050614105758" y1="186.06818181818184" y2="186.06818181818184"/> - <line stroke="#888888" x1="702.1050614105758" x2="702.1050614105758" y1="186.06818181818184" y2="197.65909090909093"/> - <line stroke="#888888" x1="702.1050614105758" x2="701.6050614105758" y1="197.65909090909093" y2="197.65909090909093"/> - <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/> - <line stroke="#888888" x1="541.8550614105758" x2="544.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/> - <line stroke="#888888" x1="544.8550614105758" x2="544.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="544.8550614105758" x2="541.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="162.25000000000003" y2="161.25"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="161.25" y2="161.25"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="161.25" y2="162.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="162.25000000000003" y2="161.25"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="161.25" y2="161.25"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="161.25" y2="162.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="164.75000000000003" y2="163.75"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="163.75" y2="163.75"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="163.75" y2="164.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="164.75000000000003" y2="163.75"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="163.75" y2="163.75"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="163.75" y2="164.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="167.25000000000003" y2="166.25"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="166.25" y2="166.25"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="166.25" y2="167.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="167.25000000000003" y2="166.25"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="166.25" y2="166.25"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="166.25" y2="167.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="177.25" y2="176.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="176.25000000000003" y2="177.25"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="177.25" y2="177.25"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="177.25" y2="176.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="176.25000000000003" y2="177.25"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="177.25" y2="177.25"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="179.75" y2="178.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="178.75000000000003" y2="179.75"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="179.75" y2="179.75"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="179.75" y2="178.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="178.75000000000003" y2="179.75"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="179.75" y2="179.75"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="182.25" y2="181.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="181.25000000000003" y2="182.25"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="182.25" y2="182.25"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="182.25" y2="181.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="181.25000000000003" y2="182.25"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="182.25" y2="182.25"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="189.75000000000003" y2="188.75"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="188.75" y2="188.75"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="188.75" y2="189.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="189.75000000000003" y2="188.75"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="188.75" y2="188.75"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="188.75" y2="189.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="192.25000000000003" y2="191.25"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="191.25" y2="191.25"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="191.25" y2="192.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="192.25000000000003" y2="191.25"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="191.25" y2="191.25"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="191.25" y2="192.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/> - <line stroke="#888888" x1="561.8550614105758" x2="561.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/> - <line stroke="#888888" x1="561.8550614105758" x2="564.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/> - <line stroke="#888888" x1="564.8550614105757" x2="564.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/> - <line stroke="#888888" x1="564.8550614105757" x2="561.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/> - <line stroke="#888888" x1="557.6050614105758" x2="549.1050614105758" y1="155.25000000000003" y2="155.25000000000003"/> - <line stroke="#888888" x1="549.1050614105758" x2="549.1050614105758" y1="155.25000000000003" y2="154.75"/> - <line stroke="#888888" x1="549.1050614105758" x2="557.6050614105758" y1="154.75" y2="154.75"/> - <line stroke="#888888" x1="557.6050614105758" x2="557.6050614105758" y1="154.75" y2="155.25000000000003"/> - <line stroke="#888888" x1="549.1050614105758" x2="557.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/> - <line stroke="#888888" x1="557.6050614105758" x2="557.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/> - <line stroke="#888888" x1="557.6050614105758" x2="549.1050614105758" y1="203.50000000000003" y2="203.50000000000003"/> - <line stroke="#888888" x1="549.1050614105758" x2="549.1050614105758" y1="203.50000000000003" y2="203.00000000000003"/> - <line stroke="#888888" x1="533.8550614105758" x2="538.8550614105758" y1="158.59090909090912" y2="158.59090909090912"/> - <line stroke="#888888" x1="538.8550614105758" x2="538.8550614105758" y1="158.59090909090912" y2="169.68181818181822"/> - <line stroke="#888888" x1="538.8550614105758" x2="533.8550614105758" y1="169.68181818181822" y2="169.68181818181822"/> - <line stroke="#888888" x1="533.8550614105758" x2="538.8550614105758" y1="186.31818181818184" y2="186.31818181818184"/> - <line stroke="#888888" x1="538.8550614105758" x2="538.8550614105758" y1="186.31818181818184" y2="197.40909090909093"/> - <line stroke="#888888" x1="538.8550614105758" x2="533.8550614105758" y1="197.40909090909093" y2="197.40909090909093"/> - <line stroke="#888888" x1="559.1050614105758" x2="562.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/> - <line stroke="#888888" x1="562.6050614105757" x2="562.6050614105757" y1="131.50000000000003" y2="139.50000000000003"/> - <line stroke="#888888" x1="562.6050614105757" x2="559.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/> + <line stroke="#888888" x1="259.52804294314706" x2="259.52804294314706" y1="378.6285927045405" y2="369.87619756818015"/> + <line stroke="#888888" x1="259.52804294314706" x2="277.0328332158676" y1="369.87619756818015" y2="369.87619756818015"/> + <line stroke="#888888" x1="277.0328332158676" x2="277.0328332158676" y1="369.87619756818015" y2="378.6285927045405"/> + <line stroke="#000000" x1="488.3550614105757" x2="426.7007833757142" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="426.7007833757142" x2="488.3550614105757" y1="166.0" y2="166.0"/> + <line opacity="0.25" stroke="#ff0000" x1="426.7007833757142" x2="426.7007833757142" y1="166.0" y2="105.00000000000001"/> + <line stroke="#000000" x1="498.3550614105757" x2="488.3550614105757" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="498.3550614105757" x2="498.3550614105757" y1="166.0" y2="105.00000000000001"/> + <line stroke="#000000" x1="488.3550614105757" x2="498.3550614105757" y1="166.0" y2="166.0"/> + <line stroke="#000000" x1="399.7007833757142" x2="426.7007833757142" y1="166.0" y2="166.0"/> + <line opacity="0.25" stroke="#ff0000" x1="399.7007833757142" x2="399.7007833757142" y1="105.00000000000001" y2="166.0"/> + <line opacity="0.5" stroke="#0000ff" x1="426.7007833757142" x2="399.7007833757142" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="338.0465053408528" x2="399.7007833757142" y1="166.0" y2="166.0"/> + <line stroke="#000000" x1="338.0465053408528" x2="338.0465053408528" y1="105.00000000000001" y2="166.0"/> + <line stroke="#000000" x1="399.7007833757142" x2="338.0465053408528" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="426.7007833757142" x2="426.7007833757142" y1="105.00000000000001" y2="88.00000000000001"/> + <line stroke="#000000" x1="399.7007833757142" x2="399.7007833757142" y1="88.00000000000001" y2="105.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="426.7007833757142" x2="399.7007833757142" y1="88.00000000000001" y2="88.00000000000001"/> + <line stroke="#000000" x1="426.7007833757142" x2="426.7007833757142" y1="88.00000000000001" y2="27.000000000000004"/> + <line stroke="#000000" x1="399.7007833757142" x2="399.7007833757142" y1="27.000000000000004" y2="88.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="426.7007833757142" x2="399.7007833757142" y1="27.000000000000004" y2="27.000000000000004"/> + <line stroke="#000000" x1="426.7007833757142" x2="426.7007833757142" y1="27.000000000000004" y2="10.000000000000002"/> + <line stroke="#000000" x1="399.7007833757142" x2="399.7007833757142" y1="10.000000000000002" y2="27.000000000000004"/> + <line opacity="0.5" stroke="#0000ff" x1="399.7007833757142" x2="426.7007833757142" y1="10.000000000000002" y2="10.000000000000002"/> + <line stroke="#000000" x1="399.7007833757142" x2="399.7007833757142" y1="0.0" y2="10.000000000000002"/> + <line stroke="#000000" x1="426.7007833757142" x2="399.7007833757142" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="426.7007833757142" x2="426.7007833757142" y1="10.000000000000002" y2="0.0"/> + <line stroke="#888888" x1="495.8550614105757" x2="490.8550614105757" y1="154.90909090909093" y2="154.90909090909093"/> + <line stroke="#888888" x1="490.8550614105757" x2="490.8550614105757" y1="154.90909090909093" y2="143.8181818181818"/> + <line stroke="#888888" x1="490.8550614105757" x2="495.8550614105757" y1="143.8181818181818" y2="143.8181818181818"/> + <line stroke="#888888" x1="495.8550614105757" x2="490.8550614105757" y1="127.1818181818182" y2="127.1818181818182"/> + <line stroke="#888888" x1="490.8550614105757" x2="490.8550614105757" y1="127.1818181818182" y2="116.09090909090911"/> + <line stroke="#888888" x1="490.8550614105757" x2="495.8550614105757" y1="116.09090909090911" y2="116.09090909090911"/> + <line stroke="#888888" x1="422.2007833757142" x2="422.2007833757142" y1="102.50000000000001" y2="108.50000000000001"/> + <line stroke="#888888" x1="422.2007833757142" x2="404.2007833757142" y1="108.50000000000001" y2="108.50000000000001"/> + <line stroke="#888888" x1="404.2007833757142" x2="404.2007833757142" y1="108.50000000000001" y2="102.50000000000001"/> + <line stroke="#888888" x1="404.2007833757142" x2="422.2007833757142" y1="102.50000000000001" y2="102.50000000000001"/> + <line stroke="#888888" x1="408.4507833757142" x2="417.9507833757142" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="417.9507833757142" x2="417.9507833757142" y1="158.25000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="417.9507833757142" x2="408.4507833757142" y1="158.75000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="408.4507833757142" x2="408.4507833757142" y1="158.75000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="417.7007833757142" x2="417.7007833757142" y1="2.5000000000000004" y2="7.500000000000001"/> + <line stroke="#888888" x1="417.7007833757142" x2="408.7007833757142" y1="7.500000000000001" y2="7.500000000000001"/> + <line stroke="#888888" x1="408.7007833757142" x2="408.7007833757142" y1="7.500000000000001" y2="2.5000000000000004"/> + <line stroke="#000000" x1="578.3550614105758" x2="542.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> + <line opacity="0.5" stroke="#ff0000" x1="578.3550614105758" x2="578.3550614105758" y1="123.50000000000001" y2="147.5"/> + <line stroke="#000000" x1="542.3550614105758" x2="578.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="578.3550614105758" x2="623.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="623.3550614105758" x2="578.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> + <line stroke="#000000" x1="623.3550614105758" x2="623.3550614105758" y1="147.5" y2="123.50000000000001"/> + <line stroke="#000000" x1="542.3550614105758" x2="508.35506141057573" y1="123.50000000000001" y2="123.50000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="508.35506141057573" x2="542.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="113.50000000000001" y2="52.50000000000001"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="123.50000000000001" y2="113.50000000000001"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="221.50000000000003" y2="147.5"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="221.50000000000003" y2="221.50000000000003"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="147.5" y2="221.50000000000003"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="123.50000000000001" y2="147.5"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="113.50000000000001" y2="123.50000000000001"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="52.50000000000001" y2="113.50000000000001"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="52.50000000000001" y2="52.50000000000001"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="147.5" y2="167.50000000000003"/> + <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="167.50000000000003" y2="147.5"/> + <line opacity="0.5" stroke="#0000ff" x1="508.35506141057573" x2="542.3550614105758" y1="167.50000000000003" y2="167.50000000000003"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="167.50000000000003" y2="191.50000000000003"/> + <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="191.50000000000003" y2="167.50000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="508.35506141057573" x2="542.3550614105758" y1="191.50000000000003" y2="191.50000000000003"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="191.50000000000003" y2="211.5"/> + <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="211.5" y2="191.50000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="542.3550614105758" x2="508.35506141057573" y1="211.5" y2="211.5"/> + <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="221.50000000000003" y2="211.5"/> + <line stroke="#000000" x1="508.35506141057573" x2="542.3550614105758" y1="221.50000000000003" y2="221.50000000000003"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="211.5" y2="221.50000000000003"/> + <line stroke="#888888" x1="619.3550614105757" x2="619.3550614105757" y1="139.75000000000003" y2="131.25"/> + <line stroke="#888888" x1="619.3550614105757" x2="619.8550614105757" y1="131.25" y2="131.25"/> + <line stroke="#888888" x1="619.8550614105757" x2="619.8550614105757" y1="131.25" y2="139.75000000000003"/> + <line stroke="#888888" x1="619.8550614105757" x2="619.3550614105757" y1="139.75000000000003" y2="139.75000000000003"/> + <line stroke="#888888" x1="531.2717280772423" x2="519.4383947439092" y1="131.25" y2="131.25"/> + <line stroke="#888888" x1="519.4383947439092" x2="519.4383947439092" y1="131.25" y2="130.75000000000003"/> + <line stroke="#888888" x1="519.4383947439092" x2="531.2717280772423" y1="130.75000000000003" y2="130.75000000000003"/> + <line stroke="#888888" x1="531.2717280772423" x2="531.2717280772423" y1="130.75000000000003" y2="131.25"/> + <line stroke="#888888" x1="500.60506141057573" x2="500.60506141057573" y1="74.93181818181819" y2="63.3409090909091"/> + <line stroke="#888888" x1="500.60506141057573" x2="501.10506141057573" y1="63.3409090909091" y2="63.3409090909091"/> + <line stroke="#888888" x1="501.10506141057573" x2="501.10506141057573" y1="63.3409090909091" y2="74.93181818181819"/> + <line stroke="#888888" x1="501.10506141057573" x2="500.60506141057573" y1="74.93181818181819" y2="74.93181818181819"/> + <line stroke="#888888" x1="500.60506141057573" x2="500.60506141057573" y1="102.65909090909092" y2="91.06818181818183"/> + <line stroke="#888888" x1="500.60506141057573" x2="501.10506141057573" y1="91.06818181818183" y2="91.06818181818183"/> + <line stroke="#888888" x1="501.10506141057573" x2="501.10506141057573" y1="91.06818181818183" y2="102.65909090909092"/> + <line stroke="#888888" x1="501.10506141057573" x2="500.60506141057573" y1="102.65909090909092" y2="102.65909090909092"/> + <line stroke="#888888" x1="519.3550614105758" x2="519.3550614105758" y1="166.50000000000003" y2="162.50000000000003"/> + <line stroke="#888888" x1="519.3550614105758" x2="531.3550614105757" y1="162.50000000000003" y2="162.50000000000003"/> + <line stroke="#888888" x1="531.3550614105757" x2="531.3550614105757" y1="162.50000000000003" y2="166.50000000000003"/> + <line stroke="#888888" x1="531.3550614105757" x2="519.3550614105758" y1="166.50000000000003" y2="166.50000000000003"/> + <line stroke="#888888" x1="520.8550614105757" x2="520.8550614105757" y1="154.5" y2="150.5"/> + <line stroke="#888888" x1="520.8550614105757" x2="529.8550614105758" y1="150.5" y2="150.5"/> + <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="150.5" y2="154.5"/> + <line stroke="#888888" x1="529.8550614105758" x2="520.8550614105757" y1="154.5" y2="154.5"/> + <line stroke="#888888" x1="519.3550614105758" x2="519.3550614105758" y1="191.0" y2="168.0"/> + <line stroke="#888888" x1="519.3550614105758" x2="531.3550614105757" y1="168.0" y2="168.0"/> + <line stroke="#888888" x1="531.3550614105757" x2="531.3550614105757" y1="168.0" y2="191.0"/> + <line stroke="#888888" x1="531.3550614105757" x2="519.3550614105758" y1="191.0" y2="191.0"/> + <line stroke="#888888" x1="519.3550614105758" x2="519.3550614105758" y1="196.50000000000003" y2="192.50000000000003"/> + <line stroke="#888888" x1="519.3550614105758" x2="531.3550614105757" y1="192.50000000000003" y2="192.50000000000003"/> + <line stroke="#888888" x1="531.3550614105757" x2="531.3550614105757" y1="192.50000000000003" y2="196.50000000000003"/> + <line stroke="#888888" x1="531.3550614105757" x2="519.3550614105758" y1="196.50000000000003" y2="196.50000000000003"/> + <line stroke="#888888" x1="519.6883947439092" x2="519.6883947439092" y1="219.00000000000003" y2="214.0"/> + <line stroke="#888888" x1="519.6883947439092" x2="531.0217280772423" y1="214.0" y2="214.0"/> + <line stroke="#888888" x1="531.0217280772423" x2="531.0217280772423" y1="214.0" y2="219.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="666.3550614105757" x2="727.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="727.3550614105758" x2="727.3550614105758" y1="123.50000000000001" y2="147.5"/> + <line opacity="0.5" stroke="#0000ff" x1="727.3550614105758" x2="666.3550614105757" y1="147.5" y2="147.5"/> + <line opacity="0.5" stroke="#0000ff" x1="666.3550614105757" x2="666.3550614105757" y1="147.5" y2="123.50000000000001"/> + <line stroke="#000000" x1="666.3550614105757" x2="666.3550614105757" y1="116.50000000000001" y2="123.50000000000001"/> + <line stroke="#000000" x1="726.3550614105758" x2="666.3550614105757" y1="116.50000000000001" y2="116.50000000000001"/> + <line stroke="#000000" x1="726.3550614105758" x2="726.3550614105758" y1="123.50000000000001" y2="116.50000000000001"/> + <line stroke="#000000" x1="734.3550614105758" x2="727.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> + <line stroke="#000000" x1="734.3550614105758" x2="734.3550614105758" y1="147.5" y2="123.50000000000001"/> + <line stroke="#000000" x1="727.3550614105758" x2="734.3550614105758" y1="147.5" y2="147.5"/> + <line opacity="0.5" stroke="#0000ff" x1="727.3550614105758" x2="727.3550614105758" y1="147.5" y2="208.50000000000003"/> + <line stroke="#000000" x1="667.3550614105757" x2="727.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="667.3550614105757" x2="667.3550614105757" y1="147.5" y2="208.50000000000003"/> + <line stroke="#000000" x1="751.3550614105758" x2="727.3550614105758" y1="147.5" y2="147.5"/> + <line opacity="0.5" stroke="#0000ff" x1="751.3550614105758" x2="751.3550614105758" y1="147.5" y2="208.50000000000003"/> + <line stroke="#000000" x1="727.3550614105758" x2="751.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/> + <line stroke="#000000" x1="811.3550614105757" x2="751.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="811.3550614105757" x2="811.3550614105757" y1="208.50000000000003" y2="147.5"/> + <line stroke="#000000" x1="751.3550614105758" x2="811.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/> + <line stroke="#000000" x1="667.3550614105757" x2="643.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="643.3550614105758" x2="667.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="643.3550614105758" x2="643.3550614105758" y1="208.50000000000003" y2="147.5"/> + <line stroke="#000000" x1="633.3550614105758" x2="643.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/> + <line stroke="#000000" x1="633.3550614105758" x2="633.3550614105758" y1="147.5" y2="208.50000000000003"/> + <line stroke="#000000" x1="643.3550614105758" x2="633.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="659.3550614105758" x2="666.3550614105757" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="659.3550614105758" x2="659.3550614105758" y1="123.50000000000001" y2="147.5"/> + <line stroke="#000000" x1="666.3550614105757" x2="659.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> + <line stroke="#888888" x1="715.4459705014848" x2="718.9459705014849" y1="118.25000000000001" y2="118.25000000000001"/> + <line stroke="#888888" x1="718.9459705014849" x2="715.4459705014848" y1="118.25000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="715.4459705014848" x2="704.5368795923939" y1="121.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="704.5368795923939" x2="701.0368795923939" y1="121.75000000000001" y2="118.25000000000001"/> + <line stroke="#888888" x1="701.0368795923939" x2="704.5368795923939" y1="118.25000000000001" y2="118.25000000000001"/> + <line stroke="#888888" x1="688.1732432287577" x2="691.6732432287577" y1="118.25000000000001" y2="118.25000000000001"/> + <line stroke="#888888" x1="691.6732432287577" x2="688.1732432287577" y1="118.25000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="688.1732432287577" x2="677.2641523196667" y1="121.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="677.2641523196667" x2="673.7641523196667" y1="121.75000000000001" y2="118.25000000000001"/> + <line stroke="#888888" x1="673.7641523196667" x2="677.2641523196667" y1="118.25000000000001" y2="118.25000000000001"/> + <line stroke="#888888" x1="732.6050614105758" x2="729.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/> + <line stroke="#888888" x1="729.1050614105758" x2="729.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/> + <line stroke="#888888" x1="729.1050614105758" x2="732.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/> + <line stroke="#888888" x1="674.8550614105757" x2="674.8550614105757" y1="199.00000000000003" y2="181.00000000000003"/> + <line stroke="#888888" x1="674.8550614105757" x2="709.8550614105758" y1="181.00000000000003" y2="181.00000000000003"/> + <line stroke="#888888" x1="709.8550614105758" x2="709.8550614105758" y1="181.00000000000003" y2="199.00000000000003"/> + <line stroke="#888888" x1="709.8550614105758" x2="674.8550614105757" y1="199.00000000000003" y2="199.00000000000003"/> + <line stroke="#888888" x1="727.8550614105758" x2="727.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/> + <line stroke="#888888" x1="727.8550614105758" x2="730.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/> + <line stroke="#888888" x1="730.8550614105757" x2="730.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="730.8550614105757" x2="727.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="162.25000000000003" y2="161.25"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="161.25" y2="161.25"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="161.25" y2="162.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="162.25000000000003" y2="161.25"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="161.25" y2="161.25"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="161.25" y2="162.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="164.75000000000003" y2="163.75"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="163.75" y2="163.75"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="163.75" y2="164.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="164.75000000000003" y2="163.75"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="163.75" y2="163.75"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="163.75" y2="164.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="167.25000000000003" y2="166.25"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="166.25" y2="166.25"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="166.25" y2="167.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="167.25000000000003" y2="166.25"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="166.25" y2="166.25"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="166.25" y2="167.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="177.25" y2="176.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="176.25000000000003" y2="177.25"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="177.25" y2="177.25"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="177.25" y2="176.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="176.25000000000003" y2="177.25"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="177.25" y2="177.25"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="179.75" y2="178.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="178.75000000000003" y2="179.75"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="179.75" y2="179.75"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="179.75" y2="178.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="178.75000000000003" y2="179.75"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="179.75" y2="179.75"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="182.25" y2="181.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="181.25000000000003" y2="182.25"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="182.25" y2="182.25"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="182.25" y2="181.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="181.25000000000003" y2="182.25"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="182.25" y2="182.25"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="189.75000000000003" y2="188.75"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="188.75" y2="188.75"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="188.75" y2="189.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="189.75000000000003" y2="188.75"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="188.75" y2="188.75"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="188.75" y2="189.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="192.25000000000003" y2="191.25"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="191.25" y2="191.25"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="191.25" y2="192.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="192.25000000000003" y2="191.25"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="191.25" y2="191.25"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="191.25" y2="192.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="197.25000000000003" y2="196.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="197.25000000000003" y2="197.25000000000003"/> + <line stroke="#888888" x1="747.8550614105757" x2="747.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/> + <line stroke="#888888" x1="747.8550614105757" x2="750.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/> + <line stroke="#888888" x1="750.8550614105758" x2="750.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/> + <line stroke="#888888" x1="750.8550614105758" x2="747.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/> + <line stroke="#888888" x1="743.6050614105757" x2="735.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/> + <line stroke="#888888" x1="735.1050614105757" x2="735.1050614105757" y1="155.25000000000003" y2="154.75"/> + <line stroke="#888888" x1="735.1050614105757" x2="743.6050614105757" y1="154.75" y2="154.75"/> + <line stroke="#888888" x1="743.6050614105757" x2="743.6050614105757" y1="154.75" y2="155.25000000000003"/> + <line stroke="#888888" x1="735.1050614105757" x2="743.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/> + <line stroke="#888888" x1="743.6050614105757" x2="743.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/> + <line stroke="#888888" x1="743.6050614105757" x2="735.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/> + <line stroke="#888888" x1="735.1050614105757" x2="735.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/> + <line stroke="#888888" x1="766.3550614105757" x2="766.3550614105757" y1="198.50000000000003" y2="185.50000000000003"/> + <line stroke="#888888" x1="766.3550614105757" x2="796.3550614105758" y1="185.50000000000003" y2="185.50000000000003"/> + <line stroke="#888888" x1="796.3550614105758" x2="796.3550614105758" y1="185.50000000000003" y2="198.50000000000003"/> + <line stroke="#888888" x1="796.3550614105758" x2="766.3550614105757" y1="198.50000000000003" y2="198.50000000000003"/> + <line stroke="#888888" x1="773.4232432287574" x2="762.0141523196667" y1="153.00000000000003" y2="153.00000000000003"/> + <line stroke="#888888" x1="762.0141523196667" x2="762.0141523196667" y1="153.00000000000003" y2="152.5"/> + <line stroke="#888888" x1="762.0141523196667" x2="773.4232432287574" y1="152.5" y2="152.5"/> + <line stroke="#888888" x1="773.4232432287574" x2="773.4232432287574" y1="152.5" y2="153.00000000000003"/> + <line stroke="#888888" x1="800.6959705014848" x2="789.2868795923939" y1="153.00000000000003" y2="153.00000000000003"/> + <line stroke="#888888" x1="789.2868795923939" x2="789.2868795923939" y1="153.00000000000003" y2="152.5"/> + <line stroke="#888888" x1="789.2868795923939" x2="800.6959705014848" y1="152.5" y2="152.5"/> + <line stroke="#888888" x1="800.6959705014848" x2="800.6959705014848" y1="152.5" y2="153.00000000000003"/> + <line stroke="#888888" x1="803.6050614105758" x2="803.6050614105758" y1="169.93181818181822" y2="158.3409090909091"/> + <line stroke="#888888" x1="803.6050614105758" x2="804.1050614105758" y1="158.3409090909091" y2="158.3409090909091"/> + <line stroke="#888888" x1="804.1050614105758" x2="804.1050614105758" y1="158.3409090909091" y2="169.93181818181822"/> + <line stroke="#888888" x1="804.1050614105758" x2="803.6050614105758" y1="169.93181818181822" y2="169.93181818181822"/> + <line stroke="#888888" x1="803.6050614105758" x2="803.6050614105758" y1="197.65909090909093" y2="186.06818181818184"/> + <line stroke="#888888" x1="803.6050614105758" x2="804.1050614105758" y1="186.06818181818184" y2="186.06818181818184"/> + <line stroke="#888888" x1="804.1050614105758" x2="804.1050614105758" y1="186.06818181818184" y2="197.65909090909093"/> + <line stroke="#888888" x1="804.1050614105758" x2="803.6050614105758" y1="197.65909090909093" y2="197.65909090909093"/> + <line stroke="#888888" x1="643.8550614105758" x2="643.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/> + <line stroke="#888888" x1="643.8550614105758" x2="646.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/> + <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="646.8550614105757" x2="643.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="162.25000000000003" y2="161.25"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="161.25" y2="161.25"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="161.25" y2="162.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="162.25000000000003" y2="161.25"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="161.25" y2="161.25"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="161.25" y2="162.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="164.75000000000003" y2="163.75"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="163.75" y2="163.75"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="163.75" y2="164.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="164.75000000000003" y2="163.75"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="163.75" y2="163.75"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="163.75" y2="164.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="167.25000000000003" y2="166.25"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="166.25" y2="166.25"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="166.25" y2="167.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="167.25000000000003" y2="166.25"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="166.25" y2="166.25"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="166.25" y2="167.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="177.25" y2="176.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="176.25000000000003" y2="177.25"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="177.25" y2="177.25"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="177.25" y2="176.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="176.25000000000003" y2="177.25"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="177.25" y2="177.25"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="179.75" y2="178.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="178.75000000000003" y2="179.75"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="179.75" y2="179.75"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="179.75" y2="178.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="178.75000000000003" y2="179.75"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="179.75" y2="179.75"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="182.25" y2="181.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="181.25000000000003" y2="182.25"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="182.25" y2="182.25"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="182.25" y2="181.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="181.25000000000003" y2="182.25"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="182.25" y2="182.25"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="189.75000000000003" y2="188.75"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="188.75" y2="188.75"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="188.75" y2="189.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="189.75000000000003" y2="188.75"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="188.75" y2="188.75"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="188.75" y2="189.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="192.25000000000003" y2="191.25"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="191.25" y2="191.25"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="191.25" y2="192.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="192.25000000000003" y2="191.25"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="191.25" y2="191.25"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="191.25" y2="192.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/> + <line stroke="#888888" x1="663.8550614105758" x2="663.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/> + <line stroke="#888888" x1="663.8550614105758" x2="666.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/> + <line stroke="#888888" x1="666.8550614105757" x2="666.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/> + <line stroke="#888888" x1="666.8550614105757" x2="663.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/> + <line stroke="#888888" x1="659.6050614105758" x2="651.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/> + <line stroke="#888888" x1="651.1050614105757" x2="651.1050614105757" y1="155.25000000000003" y2="154.75"/> + <line stroke="#888888" x1="651.1050614105757" x2="659.6050614105758" y1="154.75" y2="154.75"/> + <line stroke="#888888" x1="659.6050614105758" x2="659.6050614105758" y1="154.75" y2="155.25000000000003"/> + <line stroke="#888888" x1="651.1050614105757" x2="659.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/> + <line stroke="#888888" x1="659.6050614105758" x2="659.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/> + <line stroke="#888888" x1="659.6050614105758" x2="651.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/> + <line stroke="#888888" x1="651.1050614105757" x2="651.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/> + <line stroke="#888888" x1="635.8550614105758" x2="640.8550614105758" y1="158.59090909090912" y2="158.59090909090912"/> + <line stroke="#888888" x1="640.8550614105758" x2="640.8550614105758" y1="158.59090909090912" y2="169.68181818181822"/> + <line stroke="#888888" x1="640.8550614105758" x2="635.8550614105758" y1="169.68181818181822" y2="169.68181818181822"/> + <line stroke="#888888" x1="635.8550614105758" x2="640.8550614105758" y1="186.31818181818184" y2="186.31818181818184"/> + <line stroke="#888888" x1="640.8550614105758" x2="640.8550614105758" y1="186.31818181818184" y2="197.40909090909093"/> + <line stroke="#888888" x1="640.8550614105758" x2="635.8550614105758" y1="197.40909090909093" y2="197.40909090909093"/> + <line stroke="#888888" x1="661.1050614105757" x2="664.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/> + <line stroke="#888888" x1="664.6050614105758" x2="664.6050614105758" y1="131.50000000000003" y2="139.50000000000003"/> + <line stroke="#888888" x1="664.6050614105758" x2="661.1050614105757" y1="139.50000000000003" y2="139.50000000000003"/> </svg> diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf index 7197f040b67f2590d925eb4c7aabf25c72188d69..de9cace026061ffd9220dfb1ea5f7ae4afeb74d9 100644 --- a/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf +++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf @@ -1053,13 +1053,13 @@ LINE 8 cut 10 -255.02325267042647 +242.02325267042644 20 135.50000000000003 30 0.0 11 -194.02325267042647 +242.02325267042644 21 135.50000000000003 31 @@ -1071,13 +1071,49 @@ LINE 8 cut 10 -255.02325267042647 +86.02325267042642 + 20 +135.50000000000003 + 30 +0.0 + 11 +86.02325267042642 + 21 +135.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +147.02325267042642 + 20 +135.50000000000003 + 30 +0.0 + 11 +86.02325267042642 + 21 +135.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +181.02325267042644 20 135.50000000000003 30 0.0 11 -255.02325267042647 +171.02325267042644 21 135.50000000000003 31 @@ -1089,13 +1125,13 @@ LINE 8 cut 10 -86.02325267042646 +242.02325267042644 20 135.50000000000003 30 0.0 11 -86.02325267042646 +242.02325267042644 21 135.50000000000003 31 @@ -1107,13 +1143,13 @@ LINE 8 cut 10 -194.02325267042647 +86.02325267042642 20 135.50000000000003 30 0.0 11 -255.02325267042647 +86.02325267042642 21 135.50000000000003 31 @@ -1125,13 +1161,13 @@ LINE 8 cut 10 -86.02325267042646 +147.02325267042642 20 135.50000000000003 30 0.0 11 -86.02325267042646 +73.02325267042643 21 135.50000000000003 31 @@ -1143,13 +1179,13 @@ LINE 8 cut 10 -255.02325267042647 +181.02325267042644 20 135.50000000000003 30 0.0 11 -255.02325267042647 +171.02325267042644 21 135.50000000000003 31 @@ -1161,13 +1197,13 @@ LINE 8 cut 10 -160.02325267042647 +242.02325267042644 20 135.50000000000003 30 0.0 11 -86.02325267042646 +242.02325267042644 21 135.50000000000003 31 @@ -1179,13 +1215,13 @@ LINE 8 cut 10 -194.02325267042647 +171.02325267042644 20 135.50000000000003 30 0.0 11 -184.02325267042647 +181.02325267042644 21 135.50000000000003 31 @@ -1197,13 +1233,13 @@ LINE 8 cut 10 -255.02325267042647 +73.02325267042643 20 135.50000000000003 30 0.0 11 -255.02325267042647 +147.02325267042642 21 135.50000000000003 31 @@ -1215,13 +1251,13 @@ LINE 8 cut 10 -86.02325267042646 +73.02325267042643 20 135.50000000000003 30 0.0 11 -86.02325267042646 +73.02325267042643 21 135.50000000000003 31 @@ -1233,13 +1269,13 @@ LINE 8 cut 10 -184.02325267042647 +171.02325267042644 20 135.50000000000003 30 0.0 11 -184.02325267042647 +171.02325267042644 21 101.50000000000001 31 @@ -1253,13 +1289,13 @@ DOTTED 8 90 10 -160.02325267042647 +147.02325267042642 20 101.50000000000001 30 0.0 11 -160.02325267042647 +147.02325267042642 21 135.50000000000003 31 @@ -1271,13 +1307,13 @@ LINE 8 cut 10 -160.02325267042647 +147.02325267042642 20 65.5 30 0.0 11 -160.02325267042647 +147.02325267042642 21 101.50000000000001 31 @@ -1291,13 +1327,13 @@ DOTTED 8 -90 10 -160.02325267042647 +147.02325267042642 20 65.5 30 0.0 11 -184.02325267042647 +171.02325267042644 21 65.5 31 @@ -1309,13 +1345,13 @@ LINE 8 cut 10 -184.02325267042647 +171.02325267042644 20 101.50000000000001 30 0.0 11 -184.02325267042647 +171.02325267042644 21 65.5 31 @@ -1327,13 +1363,13 @@ LINE 8 cut 10 -184.02325267042647 +171.02325267042644 20 65.5 30 0.0 11 -184.02325267042647 +171.02325267042644 21 20.5 31 @@ -1345,13 +1381,13 @@ LINE 8 cut 10 -160.02325267042647 +147.02325267042642 20 20.5 30 0.0 11 -160.02325267042647 +147.02325267042642 21 65.5 31 @@ -1363,13 +1399,13 @@ LINE 8 cut 10 -160.02325267042647 +147.02325267042642 20 15.500000000000004 30 0.0 11 -160.02325267042647 +147.02325267042642 21 20.5 31 @@ -1381,13 +1417,13 @@ LINE 8 cut 10 -184.02325267042647 +171.02325267042644 20 15.500000000000004 30 0.0 11 -160.02325267042647 +147.02325267042642 21 15.500000000000004 31 @@ -1399,13 +1435,13 @@ LINE 8 cut 10 -184.02325267042647 +171.02325267042644 20 20.5 30 0.0 11 -184.02325267042647 +171.02325267042644 21 15.500000000000004 31 @@ -1417,13 +1453,13 @@ LINE 8 cut 10 -160.02325267042647 +147.02325267042642 20 101.50000000000001 30 0.0 11 -140.02325267042644 +127.02325267042643 21 101.50000000000001 31 @@ -1435,13 +1471,13 @@ LINE 8 cut 10 -140.02325267042644 +127.02325267042643 20 135.50000000000003 30 0.0 11 -160.02325267042647 +147.02325267042642 21 135.50000000000003 31 @@ -1455,13 +1491,13 @@ DOTTED 8 90 10 -140.02325267042644 +127.02325267042643 20 101.50000000000001 30 0.0 11 -140.02325267042644 +127.02325267042643 21 135.50000000000003 31 @@ -1473,13 +1509,13 @@ LINE 8 cut 10 -140.02325267042644 +127.02325267042643 20 101.50000000000001 30 0.0 11 -116.02325267042646 +103.02325267042642 21 101.50000000000001 31 @@ -1491,13 +1527,13 @@ LINE 8 cut 10 -116.02325267042646 +103.02325267042642 20 135.50000000000003 30 0.0 11 -140.02325267042644 +127.02325267042643 21 135.50000000000003 31 @@ -1511,13 +1547,13 @@ DOTTED 8 90 10 -116.02325267042646 +103.02325267042642 20 101.50000000000001 30 0.0 11 -116.02325267042646 +103.02325267042642 21 135.50000000000003 31 @@ -1529,13 +1565,13 @@ LINE 8 cut 10 -116.02325267042646 +103.02325267042642 20 101.50000000000001 30 0.0 11 -96.02325267042644 +83.02325267042643 21 101.50000000000001 31 @@ -1547,13 +1583,13 @@ LINE 8 cut 10 -96.02325267042644 +83.02325267042643 20 135.50000000000003 30 0.0 11 -116.02325267042646 +103.02325267042642 21 135.50000000000003 31 @@ -1567,13 +1603,13 @@ DOTTED 8 90 10 -96.02325267042644 +83.02325267042643 20 135.50000000000003 30 0.0 11 -96.02325267042644 +83.02325267042643 21 101.50000000000001 31 @@ -1585,13 +1621,13 @@ LINE 8 cut 10 -86.02325267042646 +73.02325267042643 20 135.50000000000003 30 0.0 11 -96.02325267042644 +83.02325267042643 21 135.50000000000003 31 @@ -1603,13 +1639,13 @@ LINE 8 cut 10 -86.02325267042646 +73.02325267042643 20 101.50000000000001 30 0.0 11 -86.02325267042646 +73.02325267042643 21 135.50000000000003 31 @@ -1621,13 +1657,13 @@ LINE 8 cut 10 -96.02325267042644 +83.02325267042643 20 101.50000000000001 30 0.0 11 -86.02325267042646 +73.02325267042643 21 101.50000000000001 31 @@ -1641,13 +1677,13 @@ DOTTED 8 45 10 -194.02325267042647 +181.02325267042644 20 99.36137800081471 30 0.0 11 -255.02325267042647 +242.02325267042644 21 99.36137800081471 31 @@ -1659,13 +1695,13 @@ LINE 8 cut 10 -255.02325267042647 +242.02325267042644 20 135.50000000000003 30 0.0 11 -255.02325267042647 +242.02325267042644 21 99.36137800081471 31 @@ -1677,13 +1713,13 @@ LINE 8 cut 10 -194.02325267042647 +181.02325267042644 20 99.36137800081471 30 0.0 11 -194.02325267042647 +181.02325267042644 21 135.50000000000003 31 @@ -1697,13 +1733,13 @@ DOTTED 8 45 10 -255.02325267042647 +242.02325267042644 20 75.36137800081471 30 0.0 11 -194.02325267042647 +181.02325267042644 21 75.36137800081471 31 @@ -1717,13 +1753,13 @@ DOTTED 8 90 10 -255.02325267042647 +242.02325267042644 20 75.36137800081471 30 0.0 11 -255.02325267042647 +242.02325267042644 21 99.36137800081471 31 @@ -1735,13 +1771,13 @@ LINE 8 cut 10 -194.02325267042647 +181.02325267042644 20 39.22275600162939 30 0.0 11 -194.02325267042647 +181.02325267042644 21 75.36137800081472 31 @@ -1753,13 +1789,13 @@ LINE 8 cut 10 -255.02325267042647 +242.02325267042644 20 75.36137800081472 30 0.0 11 -255.02325267042647 +242.02325267042644 21 39.22275600162939 31 @@ -1771,13 +1807,13 @@ LINE 8 cut 10 -194.02325267042647 +181.02325267042644 20 29.222756001629396 30 0.0 11 -194.02325267042647 +181.02325267042644 21 39.22275600162939 31 @@ -1789,13 +1825,13 @@ LINE 8 cut 10 -255.02325267042647 +242.02325267042644 20 29.222756001629396 30 0.0 11 -194.02325267042647 +181.02325267042644 21 29.222756001629396 31 @@ -1807,13 +1843,13 @@ LINE 8 cut 10 -255.02325267042647 +242.02325267042644 20 39.22275600162939 30 0.0 11 -255.02325267042647 +242.02325267042644 21 29.222756001629396 31 @@ -1825,13 +1861,13 @@ LINE 8 cut 10 -265.02325267042653 +252.02325267042647 20 75.36137800081471 30 0.0 11 -255.02325267042647 +242.02325267042644 21 75.36137800081471 31 @@ -1843,13 +1879,13 @@ LINE 8 cut 10 -265.02325267042653 +252.02325267042647 20 99.36137800081471 30 0.0 11 -265.02325267042653 +252.02325267042647 21 75.36137800081471 31 @@ -1861,13 +1897,13 @@ LINE 8 cut 10 -255.02325267042647 +242.02325267042644 20 99.36137800081471 30 0.0 11 -265.02325267042653 +252.02325267042647 21 99.36137800081471 31 @@ -1879,13 +1915,13 @@ LINE 8 cut 10 -184.02325267042647 +171.02325267042644 20 99.36137800081471 30 0.0 11 -194.02325267042647 +181.02325267042644 21 99.36137800081471 31 @@ -1897,13 +1933,13 @@ LINE 8 cut 10 -184.02325267042647 +171.02325267042644 20 75.36137800081471 30 0.0 11 -184.02325267042647 +171.02325267042644 21 99.36137800081471 31 @@ -1915,13 +1951,13 @@ LINE 8 cut 10 -194.02325267042647 +181.02325267042644 20 75.36137800081471 30 0.0 11 -184.02325267042647 +171.02325267042644 21 75.36137800081471 31 @@ -1935,13 +1971,13 @@ DOTTED 8 90 10 -255.02325267042647 +242.02325267042644 20 205.50000000000003 30 0.0 11 -86.02325267042646 +86.02325267042642 21 205.50000000000003 31 @@ -1955,13 +1991,13 @@ DOTTED 8 41.987212495816664 10 -255.02325267042647 +242.02325267042644 20 205.50000000000003 30 0.0 11 -255.02325267042647 +242.02325267042644 21 135.50000000000003 31 @@ -1975,13 +2011,13 @@ DOTTED 8 -174 10 -255.02325267042647 +242.02325267042644 20 135.50000000000003 30 0.0 11 -307.53762348858805 +294.53762348858805 21 135.50000000000003 31 @@ -1995,13 +2031,13 @@ DOTTED 8 -180 10 -255.02325267042647 +242.02325267042644 20 205.50000000000003 30 0.0 11 -307.53762348858805 +294.53762348858805 21 135.50000000000003 31 @@ -2013,13 +2049,13 @@ LINE 8 cut 10 -255.02325267042647 +242.02325267042644 20 117.99520972727949 30 0.0 11 -255.02325267042647 +242.02325267042644 21 135.50000000000003 31 @@ -2031,13 +2067,13 @@ LINE 8 cut 10 -307.53762348858805 +294.53762348858805 20 117.99520972727949 30 0.0 11 -255.02325267042647 +242.02325267042644 21 117.99520972727949 31 @@ -2049,13 +2085,13 @@ LINE 8 cut 10 -307.53762348858805 +294.53762348858805 20 135.50000000000003 30 0.0 11 -307.53762348858805 +294.53762348858805 21 117.99520972727949 31 @@ -2069,13 +2105,13 @@ DOTTED 8 180 10 -255.02325267042647 +242.02325267042644 20 205.50000000000003 30 0.0 11 -322.2284003443256 +309.2284003443256 21 185.91765779766357 31 @@ -2087,13 +2123,13 @@ LINE 8 cut 10 -322.2284003443256 +309.2284003443256 20 185.91765779766357 30 0.0 11 -307.53762348858805 +294.53762348858805 21 135.50000000000003 31 @@ -2105,13 +2141,13 @@ LINE 8 cut 10 -336.91917720006325 +323.9191772000632 20 236.33531559532716 30 0.0 11 -322.2284003443256 +309.2284003443256 21 185.91765779766357 31 @@ -2123,13 +2159,13 @@ LINE 8 cut 10 -341.0465053408527 +328.0465053408528 20 250.50000000000003 30 0.0 11 -336.91917720006325 +323.9191772000632 21 236.33531559532716 31 @@ -2143,13 +2179,13 @@ DOTTED 8 57.019129652304315 10 -341.0465053408527 +328.0465053408528 20 250.50000000000003 30 0.0 11 -255.02325267042647 +242.02325267042644 21 205.50000000000003 31 @@ -2163,13 +2199,13 @@ DOTTED 8 54.462322208025626 10 -255.0232526704265 +242.02325267042647 20 250.50000000000003 30 0.0 11 -255.02325267042647 +242.02325267042644 21 205.50000000000003 31 @@ -2183,13 +2219,13 @@ DOTTED 8 54.462322208025626 10 -255.02325267042653 +242.0232526704265 20 295.5 30 0.0 11 -255.0232526704265 +242.02325267042647 21 250.50000000000006 31 @@ -2203,13 +2239,13 @@ DOTTED 8 57.019129652304315 10 -341.0465053408528 +328.0465053408528 20 250.50000000000003 30 0.0 11 -255.02325267042653 +242.0232526704265 21 295.50000000000006 31 @@ -2223,13 +2259,13 @@ DOTTED 8 180 10 -322.22840034432573 +309.22840034432573 20 315.08234220233646 30 0.0 11 -255.0232526704265 +242.02325267042647 21 295.50000000000006 31 @@ -2241,13 +2277,13 @@ LINE 8 cut 10 -336.9191772000633 +323.91917720006325 20 264.6646844046729 30 0.0 11 -341.0465053408527 +328.0465053408528 21 250.50000000000003 31 @@ -2259,13 +2295,13 @@ LINE 8 cut 10 -322.22840034432573 +309.22840034432573 20 315.08234220233646 30 0.0 11 -336.9191772000633 +323.91917720006325 21 264.6646844046729 31 @@ -2277,13 +2313,13 @@ LINE 8 cut 10 -307.53762348858817 +294.5376234885881 20 365.50000000000006 30 0.0 11 -322.22840034432573 +309.22840034432573 21 315.0823422023364 31 @@ -2297,13 +2333,13 @@ DOTTED 8 -180 10 -307.53762348858817 +294.5376234885881 20 365.50000000000006 30 0.0 11 -255.02325267042653 +242.0232526704265 21 295.50000000000006 31 @@ -2317,13 +2353,13 @@ DOTTED 8 41.987212495816664 10 -255.0232526704266 +242.02325267042656 20 365.5000000000001 30 0.0 11 -255.0232526704265 +242.02325267042647 21 295.5 31 @@ -2337,107 +2373,113 @@ DOTTED 8 -174 10 -307.53762348858817 +294.5376234885881 20 365.50000000000006 30 0.0 11 -255.0232526704266 +242.02325267042656 21 365.5000000000001 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -255.02325267042653 +86.02325267042647 20 -295.5 +365.5000000000002 30 0.0 11 -86.02325267042642 +242.02325267042656 21 -295.50000000000017 +365.5000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -194.02325267042656 +242.0232526704265 20 -365.50000000000017 +295.50000000000006 30 0.0 11 -255.0232526704266 +86.02325267042639 21 -365.5000000000001 +295.50000000000017 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +41.987212495816664 10 -86.02325267042649 +86.0232526704264 20 -365.5000000000003 +295.50000000000017 30 0.0 11 86.02325267042649 21 -365.5000000000003 +365.5000000000002 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +-174 10 -255.0232526704266 +86.02325267042649 20 -365.5000000000001 +365.5000000000003 30 0.0 11 -255.0232526704266 +33.508881852264885 21 -365.5000000000001 +365.5000000000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +-180 10 -255.0232526704266 +86.0232526704264 20 -365.5000000000001 +295.5000000000002 30 0.0 11 -194.02325267042656 +33.508881852264885 21 -365.50000000000017 +365.5000000000003 31 0.0 0 @@ -2447,15 +2489,15 @@ LINE 8 cut 10 -255.0232526704266 +86.0232526704265 20 -365.5000000000001 +383.00479027272075 30 0.0 11 -255.0232526704266 +86.02325267042649 21 -365.5000000000001 +365.5000000000003 31 0.0 0 @@ -2465,15 +2507,15 @@ LINE 8 cut 10 -86.0232526704265 +33.5088818522649 20 -365.5000000000003 +383.00479027272087 30 0.0 11 86.0232526704265 21 -365.5000000000003 +383.00479027272075 31 0.0 0 @@ -2483,33 +2525,35 @@ LINE 8 cut 10 -194.02325267042656 +33.508881852264885 20 -365.50000000000017 +365.5000000000003 30 0.0 11 -255.0232526704266 +33.5088818522649 21 -365.5000000000001 +383.00479027272087 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +180 10 -184.02325267042656 +86.0232526704264 20 -365.50000000000017 +295.50000000000017 30 0.0 11 -194.02325267042656 +18.81810499652724 21 -365.50000000000017 +315.08234220233675 31 0.0 0 @@ -2519,15 +2563,15 @@ LINE 8 cut 10 -86.02325267042649 +18.81810499652724 20 -365.5000000000003 +315.08234220233675 30 0.0 11 -160.02325267042656 +33.508881852264885 21 -365.50000000000017 +365.5000000000003 31 0.0 0 @@ -2537,15 +2581,15 @@ LINE 8 cut 10 -86.02325267042649 +4.127328140789602 20 -365.5000000000003 +264.6646844046731 30 0.0 11 -86.02325267042649 +18.81810499652724 21 -365.5000000000003 +315.08234220233675 31 0.0 0 @@ -2555,33 +2599,35 @@ LINE 8 cut 10 -255.0232526704266 +2.8421709430404014e-14 20 -365.5000000000001 +250.50000000000028 30 0.0 11 -255.0232526704266 +4.127328140789602 21 -365.5000000000001 +264.6646844046731 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +57.019129652304315 10 -184.0232526704266 +2.8421709430404014e-14 20 -399.5000000000001 +250.50000000000028 30 0.0 11 -184.02325267042656 +86.02325267042642 21 -365.50000000000017 +295.50000000000017 31 0.0 0 @@ -2591,35 +2637,37 @@ DOTTED 62 1 8 -90 +54.462322208025626 10 -160.02325267042656 +86.02325267042637 20 -365.50000000000017 +250.50000000000017 30 0.0 11 -160.0232526704266 +86.02325267042642 21 -399.5000000000001 +295.50000000000017 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +54.462322208025626 10 -184.02325267042661 +86.0232526704263 20 -435.50000000000017 +205.50000000000017 30 0.0 11 -184.0232526704266 +86.02325267042636 21 -399.5000000000001 +250.5000000000002 31 0.0 0 @@ -2629,35 +2677,37 @@ DOTTED 62 1 8 --90 +57.019129652304315 10 -184.02325267042661 +1.4210854715202007e-14 20 -435.50000000000017 +250.5000000000003 30 0.0 11 -160.0232526704266 +86.0232526704263 21 -435.50000000000017 +205.50000000000014 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +180 10 -160.02325267042656 +18.818104996527044 20 -399.5000000000001 +185.91765779766385 30 0.0 11 -160.0232526704266 +86.02325267042629 21 -435.50000000000017 +205.50000000000014 31 0.0 0 @@ -2667,15 +2717,15 @@ LINE 8 cut 10 -160.0232526704266 +4.127328140789545 20 -435.50000000000017 +236.33531559532744 30 0.0 11 -160.02325267042661 +0.0 21 -480.50000000000017 +250.5000000000003 31 0.0 0 @@ -2685,15 +2735,15 @@ LINE 8 cut 10 -184.02325267042667 +18.818104996527044 20 -480.50000000000017 +185.91765779766385 30 0.0 11 -184.02325267042661 +4.127328140789545 21 -435.50000000000017 +236.33531559532744 31 0.0 0 @@ -2703,51 +2753,55 @@ LINE 8 cut 10 -160.02325267042661 +33.50888185226453 20 -480.50000000000017 +135.50000000000023 30 0.0 11 -184.02325267042667 +18.818104996527044 21 -480.50000000000017 +185.91765779766385 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +-180 10 -160.02325267042656 +33.50888185226453 20 -365.50000000000017 +135.50000000000023 30 0.0 11 -140.0232526704265 +86.02325267042629 21 -365.50000000000017 +205.50000000000017 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +41.987212495816664 10 -140.02325267042653 +86.02325267042616 20 -399.5000000000001 +135.5000000000001 30 0.0 11 -160.02325267042656 +86.02325267042632 21 -399.5000000000001 +205.50000000000017 31 0.0 0 @@ -2757,17 +2811,17 @@ DOTTED 62 1 8 -90 +-174 10 -140.0232526704265 +33.508881852264544 20 -365.50000000000017 +135.50000000000023 30 0.0 11 -140.02325267042653 +86.02325267042616 21 -399.5000000000001 +135.5000000000001 31 0.0 0 @@ -2777,15 +2831,15 @@ LINE 8 cut 10 -140.02325267042653 +33.50888185226451 20 -365.50000000000017 +117.9952097272797 30 0.0 11 -116.02325267042652 +33.50888185226454 21 -365.50000000000017 +135.50000000000023 31 0.0 0 @@ -2795,35 +2849,33 @@ LINE 8 cut 10 -116.02325267042656 +86.02325267042612 20 -399.5000000000001 +117.9952097272796 30 0.0 11 -140.02325267042656 +33.50888185226451 21 -399.5000000000001 +117.9952097272797 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -116.02325267042652 +86.02325267042615 20 -365.50000000000017 +135.5000000000001 30 0.0 11 -116.02325267042656 +86.02325267042612 21 -399.5000000000001 +117.9952097272796 31 0.0 0 @@ -2833,15 +2885,15 @@ LINE 8 cut 10 -116.02325267042652 +294.5376234885881 20 -365.50000000000017 +383.0047902727206 30 0.0 11 -96.02325267042652 +294.5376234885881 21 -365.50000000000017 +365.50000000000006 31 0.0 0 @@ -2851,35 +2903,33 @@ LINE 8 cut 10 -96.02325267042654 +242.0232526704266 20 -399.5000000000001 +383.00479027272064 30 0.0 11 -116.02325267042654 +294.5376234885881 21 -399.5000000000001 +383.0047902727206 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -96.02325267042654 +242.02325267042656 20 -399.5000000000001 +365.5000000000001 30 0.0 11 -96.02325267042652 +242.0232526704266 21 -365.50000000000017 +383.00479027272064 31 0.0 0 @@ -2889,15 +2939,15 @@ LINE 8 cut 10 -86.02325267042654 +108.4550708522446 20 -399.5000000000001 +143.25 30 0.0 11 -96.02325267042654 +96.86416176133552 21 -399.5000000000001 +143.25 31 0.0 0 @@ -2907,15 +2957,15 @@ LINE 8 cut 10 -86.02325267042652 +96.86416176133552 20 -365.50000000000017 +143.25 30 0.0 11 -86.02325267042654 +96.86416176133552 21 -399.5000000000001 +142.75000000000003 31 0.0 0 @@ -2925,579 +2975,15 @@ LINE 8 cut 10 -96.02325267042652 +96.86416176133552 20 -365.50000000000017 +142.75000000000003 30 0.0 11 -86.02325267042652 +108.4550708522446 21 -365.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -41.987212495816664 - 10 -86.0232526704264 - 20 -295.50000000000017 - 30 -0.0 - 11 -86.02325267042649 - 21 -365.5000000000002 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 --174 - 10 -86.02325267042649 - 20 -365.5000000000003 - 30 -0.0 - 11 -33.508881852264885 - 21 -365.5000000000003 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 --180 - 10 -86.0232526704264 - 20 -295.5000000000002 - 30 -0.0 - 11 -33.508881852264885 - 21 -365.5000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -86.0232526704265 - 20 -383.00479027272075 - 30 -0.0 - 11 -86.02325267042649 - 21 -365.5000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -33.5088818522649 - 20 -383.00479027272087 - 30 -0.0 - 11 -86.0232526704265 - 21 -383.00479027272075 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -33.508881852264885 - 20 -365.5000000000003 - 30 -0.0 - 11 -33.5088818522649 - 21 -383.00479027272087 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -180 - 10 -86.0232526704264 - 20 -295.50000000000017 - 30 -0.0 - 11 -18.81810499652724 - 21 -315.08234220233675 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -18.81810499652724 - 20 -315.08234220233675 - 30 -0.0 - 11 -33.508881852264885 - 21 -365.5000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -4.127328140789602 - 20 -264.6646844046731 - 30 -0.0 - 11 -18.81810499652724 - 21 -315.08234220233675 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -2.8421709430404014e-14 - 20 -250.50000000000028 - 30 -0.0 - 11 -4.127328140789602 - 21 -264.6646844046731 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -57.019129652304315 - 10 -2.8421709430404014e-14 - 20 -250.50000000000028 - 30 -0.0 - 11 -86.02325267042642 - 21 -295.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -54.462322208025626 - 10 -86.02325267042637 - 20 -250.50000000000017 - 30 -0.0 - 11 -86.02325267042642 - 21 -295.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -54.462322208025626 - 10 -86.0232526704263 - 20 -205.50000000000017 - 30 -0.0 - 11 -86.02325267042636 - 21 -250.5000000000002 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -57.019129652304315 - 10 -1.4210854715202007e-14 - 20 -250.5000000000003 - 30 -0.0 - 11 -86.0232526704263 - 21 -205.50000000000014 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -180 - 10 -18.818104996527044 - 20 -185.91765779766385 - 30 -0.0 - 11 -86.02325267042629 - 21 -205.50000000000014 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -4.127328140789545 - 20 -236.33531559532744 - 30 -0.0 - 11 -0.0 - 21 -250.5000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -18.818104996527044 - 20 -185.91765779766385 - 30 -0.0 - 11 -4.127328140789545 - 21 -236.33531559532744 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -33.50888185226453 - 20 -135.50000000000023 - 30 -0.0 - 11 -18.818104996527044 - 21 -185.91765779766385 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 --180 - 10 -33.50888185226453 - 20 -135.50000000000023 - 30 -0.0 - 11 -86.02325267042629 - 21 -205.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -41.987212495816664 - 10 -86.02325267042616 - 20 -135.5000000000001 - 30 -0.0 - 11 -86.02325267042632 - 21 -205.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 --174 - 10 -33.508881852264544 - 20 -135.50000000000023 - 30 -0.0 - 11 -86.02325267042616 - 21 -135.5000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -33.50888185226451 - 20 -117.9952097272797 - 30 -0.0 - 11 -33.50888185226454 - 21 -135.50000000000023 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -86.02325267042612 - 20 -117.9952097272796 - 30 -0.0 - 11 -33.50888185226451 - 21 -117.9952097272797 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -86.02325267042615 - 20 -135.5000000000001 - 30 -0.0 - 11 -86.02325267042612 - 21 -117.9952097272796 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -307.5376234885882 - 20 -383.0047902727206 - 30 -0.0 - 11 -307.53762348858817 - 21 -365.50000000000006 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -255.02325267042661 - 20 -383.00479027272064 - 30 -0.0 - 11 -307.5376234885882 - 21 -383.0047902727206 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -255.0232526704266 - 20 -365.5000000000001 - 30 -0.0 - 11 -255.02325267042661 - 21 -383.00479027272064 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -232.5914344886083 - 20 -127.75000000000001 - 30 -0.0 - 11 -244.18234357951738 - 21 -127.75000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -244.18234357951738 - 20 -127.75000000000001 - 30 -0.0 - 11 -244.18234357951738 - 21 -128.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -244.18234357951738 - 20 -128.25000000000003 - 30 -0.0 - 11 -232.5914344886083 - 21 -128.25000000000003 +142.75000000000003 31 0.0 0 @@ -3507,15 +2993,15 @@ LINE 8 cut 10 -232.5914344886083 +108.4550708522446 20 -128.25000000000003 +142.75000000000003 30 0.0 11 -232.5914344886083 +108.4550708522446 21 -127.75000000000001 +143.25 31 0.0 0 @@ -3525,15 +3011,15 @@ LINE 8 cut 10 -204.86416176133557 +136.18234357951735 20 -127.75000000000001 +143.25 30 0.0 11 -216.45507085224466 +124.59143448860826 21 -127.75000000000001 +143.25 31 0.0 0 @@ -3543,15 +3029,15 @@ LINE 8 cut 10 -216.45507085224466 +124.59143448860826 20 -127.75000000000001 +143.25 30 0.0 11 -216.45507085224466 +124.59143448860826 21 -128.25000000000003 +142.75000000000003 31 0.0 0 @@ -3561,15 +3047,15 @@ LINE 8 cut 10 -216.45507085224466 +124.59143448860826 20 -128.25000000000003 +142.75000000000003 30 0.0 11 -204.86416176133557 +136.18234357951735 21 -128.25000000000003 +142.75000000000003 31 0.0 0 @@ -3579,15 +3065,15 @@ LINE 8 cut 10 -204.86416176133557 +136.18234357951735 20 -128.25000000000003 +142.75000000000003 30 0.0 11 -204.86416176133557 +136.18234357951735 21 -127.75000000000001 +143.25 31 0.0 0 @@ -3597,13 +3083,13 @@ LINE 8 cut 10 -176.27325267042647 +163.27325267042642 20 124.41666666666669 30 0.0 11 -176.27325267042647 +163.27325267042642 21 112.58333333333334 31 @@ -3615,13 +3101,13 @@ LINE 8 cut 10 -176.27325267042647 +163.27325267042642 20 112.58333333333334 30 0.0 11 -176.77325267042644 +163.77325267042644 21 112.58333333333334 31 @@ -3633,13 +3119,13 @@ LINE 8 cut 10 -176.77325267042644 +163.77325267042644 20 112.58333333333334 30 0.0 11 -176.77325267042644 +163.77325267042644 21 124.41666666666669 31 @@ -3651,13 +3137,13 @@ LINE 8 cut 10 -176.77325267042644 +163.77325267042644 20 124.41666666666669 30 0.0 11 -176.27325267042647 +163.27325267042642 21 124.41666666666669 31 @@ -3669,13 +3155,13 @@ LINE 8 cut 10 -176.02325267042647 +163.02325267042642 20 16.750000000000004 30 0.0 11 -178.52325267042647 +165.52325267042642 21 16.750000000000004 31 @@ -3687,13 +3173,13 @@ LINE 8 cut 10 -178.52325267042647 +165.52325267042642 20 16.750000000000004 30 0.0 11 -176.02325267042647 +163.02325267042642 21 19.250000000000004 31 @@ -3705,13 +3191,13 @@ LINE 8 cut 10 -176.02325267042647 +163.02325267042642 20 19.250000000000004 30 0.0 11 -168.02325267042644 +155.02325267042644 21 19.250000000000004 31 @@ -3723,13 +3209,13 @@ LINE 8 cut 10 -168.02325267042644 +155.02325267042644 20 19.250000000000004 30 0.0 11 -165.52325267042644 +152.52325267042644 21 16.750000000000004 31 @@ -3741,13 +3227,13 @@ LINE 8 cut 10 -165.52325267042644 +152.52325267042644 20 16.750000000000004 30 0.0 11 -168.02325267042644 +155.02325267042644 21 16.750000000000004 31 @@ -3759,13 +3245,13 @@ LINE 8 cut 10 -141.02325267042647 +128.02325267042644 20 112.50000000000001 30 0.0 11 -145.02325267042644 +132.02325267042644 21 112.50000000000001 31 @@ -3777,13 +3263,13 @@ LINE 8 cut 10 -145.02325267042644 +132.02325267042644 20 112.50000000000001 30 0.0 11 -145.02325267042644 +132.02325267042644 21 124.50000000000001 31 @@ -3795,13 +3281,13 @@ LINE 8 cut 10 -145.02325267042644 +132.02325267042644 20 124.50000000000001 30 0.0 11 -141.02325267042647 +128.02325267042644 21 124.50000000000001 31 @@ -3813,13 +3299,13 @@ LINE 8 cut 10 -141.02325267042647 +128.02325267042644 20 124.50000000000001 30 0.0 11 -141.02325267042647 +128.02325267042644 21 112.50000000000001 31 @@ -3831,13 +3317,13 @@ LINE 8 cut 10 -153.02325267042647 +140.02325267042644 20 114.00000000000001 30 0.0 11 -157.02325267042647 +144.02325267042644 21 114.00000000000001 31 @@ -3849,13 +3335,13 @@ LINE 8 cut 10 -157.02325267042647 +144.02325267042644 20 114.00000000000001 30 0.0 11 -157.02325267042647 +144.02325267042644 21 123.00000000000001 31 @@ -3867,13 +3353,13 @@ LINE 8 cut 10 -157.02325267042647 +144.02325267042644 20 123.00000000000001 30 0.0 11 -153.02325267042647 +140.02325267042644 21 123.00000000000001 31 @@ -3885,13 +3371,13 @@ LINE 8 cut 10 -153.02325267042647 +140.02325267042644 20 123.00000000000001 30 0.0 11 -153.02325267042647 +140.02325267042644 21 114.00000000000001 31 @@ -3903,13 +3389,13 @@ LINE 8 cut 10 -116.52325267042646 +103.52325267042643 20 112.50000000000001 30 0.0 11 -139.52325267042647 +126.52325267042643 21 112.50000000000001 31 @@ -3921,13 +3407,13 @@ LINE 8 cut 10 -139.52325267042647 +126.52325267042643 20 112.50000000000001 30 0.0 11 -139.52325267042647 +126.52325267042643 21 124.50000000000001 31 @@ -3939,13 +3425,13 @@ LINE 8 cut 10 -139.52325267042647 +126.52325267042643 20 124.50000000000001 30 0.0 11 -116.52325267042646 +103.52325267042643 21 124.50000000000001 31 @@ -3957,13 +3443,13 @@ LINE 8 cut 10 -116.52325267042646 +103.52325267042643 20 124.50000000000001 30 0.0 11 -116.52325267042646 +103.52325267042643 21 112.50000000000001 31 @@ -3975,13 +3461,13 @@ LINE 8 cut 10 -111.02325267042646 +98.02325267042643 20 112.50000000000001 30 0.0 11 -115.02325267042646 +102.02325267042643 21 112.50000000000001 31 @@ -3993,13 +3479,13 @@ LINE 8 cut 10 -115.02325267042646 +102.02325267042643 20 112.50000000000001 30 0.0 11 -115.02325267042646 +102.02325267042643 21 124.50000000000001 31 @@ -4011,13 +3497,13 @@ LINE 8 cut 10 -115.02325267042646 +102.02325267042643 20 124.50000000000001 30 0.0 11 -111.02325267042646 +98.02325267042643 21 124.50000000000001 31 @@ -4029,13 +3515,13 @@ LINE 8 cut 10 -111.02325267042646 +98.02325267042643 20 124.50000000000001 30 0.0 11 -111.02325267042646 +98.02325267042643 21 112.50000000000001 31 @@ -4047,13 +3533,13 @@ LINE 8 cut 10 -88.52325267042646 +75.52325267042642 20 112.83333333333336 30 0.0 11 -93.52325267042646 +80.52325267042643 21 112.83333333333336 31 @@ -4065,13 +3551,13 @@ LINE 8 cut 10 -93.52325267042646 +80.52325267042643 20 112.83333333333336 30 0.0 11 -93.52325267042646 +80.52325267042643 21 124.16666666666669 31 @@ -4083,13 +3569,13 @@ LINE 8 cut 10 -93.52325267042646 +80.52325267042643 20 124.16666666666669 30 0.0 11 -88.52325267042646 +75.52325267042642 21 124.16666666666669 31 @@ -4101,13 +3587,13 @@ LINE 8 cut 10 -212.02325267042647 +199.02325267042644 20 80.86137800081471 30 0.0 11 -223.02325267042647 +210.02325267042644 21 80.86137800081471 31 @@ -4119,13 +3605,13 @@ LINE 8 cut 10 -223.02325267042647 +210.02325267042644 20 80.86137800081471 30 0.0 11 -223.02325267042647 +210.02325267042644 21 93.86137800081471 31 @@ -4137,13 +3623,13 @@ LINE 8 cut 10 -223.02325267042647 +210.02325267042644 20 93.86137800081471 30 0.0 11 -212.02325267042647 +199.02325267042644 21 93.86137800081471 31 @@ -4155,13 +3641,13 @@ LINE 8 cut 10 -212.02325267042647 +199.02325267042644 20 93.86137800081471 30 0.0 11 -212.02325267042647 +199.02325267042644 21 80.86137800081471 31 @@ -4173,13 +3659,13 @@ LINE 8 cut 10 -243.52325267042647 +230.52325267042644 20 82.36137800081471 30 0.0 11 -249.52325267042647 +236.52325267042644 21 82.36137800081471 31 @@ -4191,13 +3677,13 @@ LINE 8 cut 10 -249.52325267042647 +236.52325267042644 20 82.36137800081471 30 0.0 11 -249.52325267042647 +236.52325267042644 21 92.36137800081471 31 @@ -4209,13 +3695,13 @@ LINE 8 cut 10 -249.52325267042647 +236.52325267042644 20 92.36137800081471 30 0.0 11 -243.52325267042647 +230.52325267042644 21 92.36137800081471 31 @@ -4227,13 +3713,13 @@ LINE 8 cut 10 -243.52325267042647 +230.52325267042644 20 92.36137800081471 30 0.0 11 -243.52325267042647 +230.52325267042644 21 82.36137800081471 31 @@ -4245,13 +3731,13 @@ LINE 8 cut 10 -243.93234357951738 +230.93234357951735 20 31.722756001629396 30 0.0 11 -243.93234357951738 +230.93234357951735 21 36.7227560016294 31 @@ -4263,13 +3749,13 @@ LINE 8 cut 10 -243.93234357951738 +230.93234357951735 20 36.7227560016294 30 0.0 11 -232.8414344886083 +219.84143448860826 21 36.7227560016294 31 @@ -4281,13 +3767,13 @@ LINE 8 cut 10 -232.8414344886083 +219.84143448860826 20 36.7227560016294 30 0.0 11 -232.8414344886083 +219.84143448860826 21 31.722756001629396 31 @@ -4299,13 +3785,13 @@ LINE 8 cut 10 -216.20507085224466 +203.20507085224463 20 31.722756001629396 30 0.0 11 -216.20507085224466 +203.20507085224463 21 36.7227560016294 31 @@ -4317,13 +3803,13 @@ LINE 8 cut 10 -216.20507085224466 +203.20507085224463 20 36.7227560016294 30 0.0 11 -205.11416176133554 +192.11416176133554 21 36.7227560016294 31 @@ -4335,13 +3821,13 @@ LINE 8 cut 10 -205.11416176133554 +192.11416176133554 20 36.7227560016294 30 0.0 11 -205.11416176133554 +192.11416176133554 21 31.722756001629396 31 @@ -4353,13 +3839,13 @@ LINE 8 cut 10 -262.52325267042653 +249.52325267042644 20 91.36137800081471 30 0.0 11 -257.52325267042653 +244.52325267042644 21 91.36137800081471 31 @@ -4371,13 +3857,13 @@ LINE 8 cut 10 -257.52325267042653 +244.52325267042644 20 91.36137800081471 30 0.0 11 -257.52325267042653 +244.52325267042644 21 83.36137800081471 31 @@ -4389,13 +3875,13 @@ LINE 8 cut 10 -257.52325267042653 +244.52325267042644 20 83.36137800081471 30 0.0 11 -262.52325267042653 +249.52325267042644 21 83.36137800081471 31 @@ -4407,13 +3893,13 @@ LINE 8 cut 10 -186.52325267042647 +173.52325267042644 20 83.36137800081471 30 0.0 11 -191.52325267042647 +178.52325267042644 21 83.36137800081471 31 @@ -4425,13 +3911,13 @@ LINE 8 cut 10 -191.52325267042647 +178.52325267042644 20 83.36137800081471 30 0.0 11 -191.52325267042647 +178.52325267042644 21 91.36137800081471 31 @@ -4443,13 +3929,13 @@ LINE 8 cut 10 -191.52325267042647 +178.52325267042644 20 91.36137800081471 30 0.0 11 -186.52325267042647 +173.52325267042644 21 91.36137800081471 31 @@ -4461,13 +3947,13 @@ LINE 8 cut 10 -290.0328332158675 +277.03283321586747 20 122.37140729545962 30 0.0 11 -290.0328332158675 +277.03283321586747 21 131.12380243181985 31 @@ -4479,13 +3965,13 @@ LINE 8 cut 10 -290.0328332158675 +277.03283321586747 20 131.12380243181985 30 0.0 11 -272.52804294314694 +259.52804294314694 21 131.12380243181988 31 @@ -4497,13 +3983,13 @@ LINE 8 cut 10 -272.52804294314694 +259.52804294314694 20 131.12380243181988 30 0.0 11 -272.52804294314694 +259.52804294314694 21 122.37140729545962 31 @@ -4515,13 +4001,13 @@ LINE 8 cut 10 -319.2477556839554 +306.2477556839554 20 223.5120791976936 30 0.0 11 -314.2109561925024 +301.21095619250235 21 206.22615649603978 31 @@ -4533,13 +4019,13 @@ LINE 8 cut 10 -314.2109561925024 +301.21095619250235 20 206.22615649603978 30 0.0 11 -314.69099296160164 +301.6909929616017 21 206.08628262316594 31 @@ -4551,13 +4037,13 @@ LINE 8 cut 10 -314.69099296160164 +301.6909929616017 20 206.08628262316594 30 0.0 11 -319.72779245305475 +306.7277924530547 21 223.37220532481973 31 @@ -4569,13 +4055,13 @@ LINE 8 cut 10 -319.72779245305475 +306.7277924530547 20 223.37220532481973 30 0.0 11 -319.2477556839554 +306.2477556839554 21 223.5120791976936 31 @@ -4587,13 +4073,13 @@ LINE 8 cut 10 -314.21095619250247 +301.2109561925024 20 294.77384350396034 30 0.0 11 -319.24775568395546 +306.2477556839554 21 277.4879208023065 31 @@ -4605,13 +4091,13 @@ LINE 8 cut 10 -319.24775568395546 +306.2477556839554 20 277.4879208023065 30 0.0 11 -319.72779245305475 +306.72779245305475 21 277.6277946751803 31 @@ -4623,13 +4109,13 @@ LINE 8 cut 10 -319.72779245305475 +306.72779245305475 20 277.6277946751803 30 0.0 11 -314.69099296160164 +301.6909929616017 21 294.91371737683414 31 @@ -4641,15 +4127,249 @@ LINE 8 cut 10 -314.69099296160164 +301.6909929616017 + 20 +294.91371737683414 + 30 +0.0 + 11 +301.2109561925024 + 21 +294.77384350396034 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +51.01367212498543 + 20 +378.6285927045407 + 30 +0.0 + 11 +51.013672124985426 + 21 +369.87619756818043 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +51.013672124985426 + 20 +369.87619756818043 + 30 +0.0 + 11 +68.51846239770595 + 21 +369.87619756818043 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +68.51846239770595 + 20 +369.87619756818043 + 30 +0.0 + 11 +68.51846239770595 + 21 +378.6285927045407 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +21.798749656897446 + 20 +277.4879208023067 + 30 +0.0 + 11 +26.83554914835048 + 21 +294.7738435039605 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +26.83554914835048 + 20 +294.7738435039605 + 30 +0.0 + 11 +26.3555123792512 + 21 +294.9137173768343 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +26.3555123792512 + 20 +294.9137173768343 + 30 +0.0 + 11 +21.318712887798156 + 21 +277.62779467518055 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +21.318712887798156 + 20 +277.62779467518055 + 30 +0.0 + 11 +21.798749656897446 + 21 +277.4879208023067 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +26.835549148350342 + 20 +206.22615649604003 + 30 +0.0 + 11 +21.798749656897346 + 21 +223.51207919769385 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +21.798749656897346 + 20 +223.51207919769385 + 30 +0.0 + 11 +21.31871288779806 + 21 +223.37220532482002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +21.31871288779806 + 20 +223.37220532482002 + 30 +0.0 + 11 +26.355512379251053 + 21 +206.08628262316617 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +26.355512379251053 + 20 +206.08628262316617 + 30 +0.0 + 11 +26.835549148350342 + 21 +206.22615649604003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +68.51846239770559 + 20 +122.37140729545976 + 30 +0.0 + 11 +68.51846239770562 + 21 +131.12380243182005 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +68.51846239770562 20 -294.91371737683414 +131.12380243182005 30 0.0 11 -314.21095619250247 +51.01367212498507 21 -294.77384350396034 +131.12380243182008 31 0.0 0 @@ -4659,15 +4379,15 @@ LINE 8 cut 10 -216.45507085224477 +51.01367212498507 20 -373.25000000000017 +131.12380243182008 30 0.0 11 -204.86416176133565 +51.01367212498506 21 -373.25000000000017 +122.3714072954598 31 0.0 0 @@ -4677,15 +4397,15 @@ LINE 8 cut 10 -204.86416176133565 +259.52804294314706 20 -373.25000000000017 +378.6285927045405 30 0.0 11 -204.86416176133565 +259.52804294314706 21 -372.7500000000001 +369.87619756818015 31 0.0 0 @@ -4695,15 +4415,15 @@ LINE 8 cut 10 -204.86416176133565 +259.52804294314706 20 -372.7500000000001 +369.87619756818015 30 0.0 11 -216.45507085224477 +277.0328332158676 21 -372.7500000000001 +369.87619756818015 31 0.0 0 @@ -4713,15 +4433,15 @@ LINE 8 cut 10 -216.45507085224477 +277.0328332158676 20 -372.7500000000001 +369.87619756818015 30 0.0 11 -216.45507085224477 +277.0328332158676 21 -373.25000000000017 +378.6285927045405 31 0.0 0 @@ -4731,15 +4451,15 @@ LINE 8 cut 10 -244.1823435795175 +488.3550614105757 20 -373.25000000000006 +105.00000000000001 30 0.0 11 -232.5914344886084 +426.7007833757142 21 -373.25000000000017 +105.00000000000001 31 0.0 0 @@ -4749,33 +4469,35 @@ LINE 8 cut 10 -232.5914344886084 +426.7007833757142 20 -373.25000000000017 +166.0 30 0.0 11 -232.5914344886084 +488.3550614105757 21 -372.7500000000001 +166.0 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +-45 10 -232.5914344886084 +426.7007833757142 20 -372.7500000000001 +166.0 30 0.0 11 -244.1823435795175 +426.7007833757142 21 -372.75000000000006 +105.00000000000001 31 0.0 0 @@ -4785,15 +4507,15 @@ LINE 8 cut 10 -244.1823435795175 +498.3550614105757 20 -372.75000000000006 +105.00000000000001 30 0.0 11 -244.1823435795175 +488.3550614105757 21 -373.25000000000006 +105.00000000000001 31 0.0 0 @@ -4803,15 +4525,15 @@ LINE 8 cut 10 -232.5914344886084 +498.3550614105757 20 -357.75000000000017 +166.0 30 0.0 11 -244.1823435795175 +498.3550614105757 21 -357.7500000000001 +105.00000000000001 31 0.0 0 @@ -4821,15 +4543,15 @@ LINE 8 cut 10 -244.1823435795175 +488.3550614105757 20 -357.7500000000001 +166.0 30 0.0 11 -244.1823435795175 +498.3550614105757 21 -358.2500000000001 +166.0 31 0.0 0 @@ -4839,51 +4561,55 @@ LINE 8 cut 10 -244.1823435795175 +399.7007833757142 20 -358.2500000000001 +166.0 30 0.0 11 -232.5914344886084 +426.7007833757142 21 -358.25000000000017 +166.0 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +-45 10 -232.5914344886084 +399.7007833757142 20 -358.25000000000017 +105.00000000000001 30 0.0 11 -232.5914344886084 +399.7007833757142 21 -357.75000000000017 +166.0 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -204.86416176133562 +426.7007833757142 20 -357.75000000000017 +105.00000000000001 30 0.0 11 -216.45507085224475 +399.7007833757142 21 -357.75000000000017 +105.00000000000001 31 0.0 0 @@ -4893,15 +4619,15 @@ LINE 8 cut 10 -216.45507085224475 +338.0465053408528 20 -357.75000000000017 +166.0 30 0.0 11 -216.45507085224475 +399.7007833757142 21 -358.25000000000017 +166.0 31 0.0 0 @@ -4911,15 +4637,15 @@ LINE 8 cut 10 -216.45507085224475 +338.0465053408528 20 -358.25000000000017 +105.00000000000001 30 0.0 11 -204.86416176133562 +338.0465053408528 21 -358.25000000000017 +166.0 31 0.0 0 @@ -4929,15 +4655,15 @@ LINE 8 cut 10 -204.86416176133562 +399.7007833757142 20 -358.25000000000017 +105.00000000000001 30 0.0 11 -204.86416176133562 +338.0465053408528 21 -357.75000000000017 +105.00000000000001 31 0.0 0 @@ -4947,15 +4673,15 @@ LINE 8 cut 10 -176.27325267042653 +426.7007833757142 20 -388.4166666666668 +105.00000000000001 30 0.0 11 -176.27325267042653 +426.7007833757142 21 -376.5833333333335 +88.00000000000001 31 0.0 0 @@ -4965,33 +4691,35 @@ LINE 8 cut 10 -176.27325267042653 +399.7007833757142 20 -376.5833333333335 +88.00000000000001 30 0.0 11 -176.77325267042653 +399.7007833757142 21 -376.5833333333335 +105.00000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -176.77325267042653 +426.7007833757142 20 -376.5833333333335 +88.00000000000001 30 0.0 11 -176.77325267042653 +399.7007833757142 21 -388.4166666666668 +88.00000000000001 31 0.0 0 @@ -5001,15 +4729,15 @@ LINE 8 cut 10 -176.77325267042653 +426.7007833757142 20 -388.4166666666668 +88.00000000000001 30 0.0 11 -176.27325267042653 +426.7007833757142 21 -388.4166666666668 +27.000000000000004 31 0.0 0 @@ -5019,33 +4747,35 @@ LINE 8 cut 10 -167.77325267042664 +399.7007833757142 20 -476.50000000000017 +27.000000000000004 30 0.0 11 -176.27325267042661 +399.7007833757142 21 -476.50000000000017 +88.00000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -176.27325267042661 +426.7007833757142 20 -476.50000000000017 +27.000000000000004 30 0.0 11 -176.27325267042661 +399.7007833757142 21 -477.00000000000017 +27.000000000000004 31 0.0 0 @@ -5055,15 +4785,15 @@ LINE 8 cut 10 -176.27325267042661 +426.7007833757142 20 -477.00000000000017 +27.000000000000004 30 0.0 11 -167.77325267042664 +426.7007833757142 21 -477.00000000000017 +10.000000000000002 31 0.0 0 @@ -5073,33 +4803,35 @@ LINE 8 cut 10 -167.77325267042664 +399.7007833757142 20 -477.00000000000017 +10.000000000000002 30 0.0 11 -167.77325267042664 +399.7007833757142 21 -476.50000000000017 +27.000000000000004 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -141.02325267042656 +399.7007833757142 20 -376.50000000000017 +10.000000000000002 30 0.0 11 -145.02325267042653 +426.7007833757142 21 -376.50000000000017 +10.000000000000002 31 0.0 0 @@ -5109,15 +4841,15 @@ LINE 8 cut 10 -145.02325267042653 +399.7007833757142 20 -376.50000000000017 +0.0 30 0.0 11 -145.02325267042653 +399.7007833757142 21 -388.50000000000017 +10.000000000000002 31 0.0 0 @@ -5127,15 +4859,15 @@ LINE 8 cut 10 -145.02325267042653 +426.7007833757142 20 -388.50000000000017 +0.0 30 0.0 11 -141.02325267042656 +399.7007833757142 21 -388.50000000000017 +0.0 31 0.0 0 @@ -5145,15 +4877,15 @@ LINE 8 cut 10 -141.02325267042656 +426.7007833757142 20 -388.50000000000017 +10.000000000000002 30 0.0 11 -141.02325267042656 +426.7007833757142 21 -376.50000000000017 +0.0 31 0.0 0 @@ -5163,15 +4895,15 @@ LINE 8 cut 10 -153.02325267042656 +495.8550614105757 20 -378.00000000000017 +154.90909090909093 30 0.0 11 -157.02325267042656 +490.8550614105757 21 -378.00000000000017 +154.90909090909093 31 0.0 0 @@ -5181,15 +4913,15 @@ LINE 8 cut 10 -157.02325267042656 +490.8550614105757 20 -378.00000000000017 +154.90909090909093 30 0.0 11 -157.02325267042656 +490.8550614105757 21 -387.00000000000017 +143.8181818181818 31 0.0 0 @@ -5199,15 +4931,15 @@ LINE 8 cut 10 -157.02325267042656 +490.8550614105757 20 -387.00000000000017 +143.8181818181818 30 0.0 11 -153.02325267042656 +495.8550614105757 21 -387.00000000000017 +143.8181818181818 31 0.0 0 @@ -5217,15 +4949,15 @@ LINE 8 cut 10 -153.02325267042656 +495.8550614105757 20 -387.00000000000017 +127.1818181818182 30 0.0 11 -153.02325267042656 +490.8550614105757 21 -378.00000000000017 +127.1818181818182 31 0.0 0 @@ -5235,15 +4967,15 @@ LINE 8 cut 10 -116.52325267042653 +490.8550614105757 20 -376.50000000000017 +127.1818181818182 30 0.0 11 -139.52325267042656 +490.8550614105757 21 -376.50000000000017 +116.09090909090911 31 0.0 0 @@ -5253,15 +4985,15 @@ LINE 8 cut 10 -139.52325267042656 +490.8550614105757 20 -376.50000000000017 +116.09090909090911 30 0.0 11 -139.52325267042656 +495.8550614105757 21 -388.50000000000017 +116.09090909090911 31 0.0 0 @@ -5271,15 +5003,15 @@ LINE 8 cut 10 -139.52325267042656 +422.2007833757142 20 -388.50000000000017 +102.50000000000001 30 0.0 11 -116.52325267042654 +422.2007833757142 21 -388.50000000000017 +108.50000000000001 31 0.0 0 @@ -5289,15 +5021,15 @@ LINE 8 cut 10 -116.52325267042654 +422.2007833757142 20 -388.50000000000017 +108.50000000000001 30 0.0 11 -116.52325267042653 +404.2007833757142 21 -376.50000000000017 +108.50000000000001 31 0.0 0 @@ -5307,15 +5039,15 @@ LINE 8 cut 10 -111.02325267042653 +404.2007833757142 20 -376.50000000000017 +108.50000000000001 30 0.0 11 -115.02325267042653 +404.2007833757142 21 -376.50000000000017 +102.50000000000001 31 0.0 0 @@ -5325,15 +5057,15 @@ LINE 8 cut 10 -115.02325267042653 +404.2007833757142 20 -376.50000000000017 +102.50000000000001 30 0.0 11 -115.02325267042653 +422.2007833757142 21 -388.50000000000017 +102.50000000000001 31 0.0 0 @@ -5343,15 +5075,15 @@ LINE 8 cut 10 -115.02325267042653 +408.4507833757142 20 -388.50000000000017 +158.25000000000003 30 0.0 11 -111.02325267042654 +417.9507833757142 21 -388.50000000000017 +158.25000000000003 31 0.0 0 @@ -5361,15 +5093,15 @@ LINE 8 cut 10 -111.02325267042654 +417.9507833757142 20 -388.50000000000017 +158.25000000000003 30 0.0 11 -111.02325267042653 +417.9507833757142 21 -376.50000000000017 +158.75000000000003 31 0.0 0 @@ -5379,15 +5111,15 @@ LINE 8 cut 10 -88.52325267042652 +417.9507833757142 20 -376.8333333333335 +158.75000000000003 30 0.0 11 -93.5232526704265 +408.4507833757142 21 -376.8333333333335 +158.75000000000003 31 0.0 0 @@ -5397,15 +5129,15 @@ LINE 8 cut 10 -93.5232526704265 +408.4507833757142 20 -376.8333333333335 +158.75000000000003 30 0.0 11 -93.52325267042652 +408.4507833757142 21 -388.16666666666686 +158.25000000000003 31 0.0 0 @@ -5415,15 +5147,15 @@ LINE 8 cut 10 -93.52325267042652 +417.7007833757142 20 -388.16666666666686 +2.5000000000000004 30 0.0 11 -88.52325267042653 +417.7007833757142 21 -388.16666666666686 +7.500000000000001 31 0.0 0 @@ -5433,15 +5165,15 @@ LINE 8 cut 10 -51.01367212498543 +417.7007833757142 20 -378.6285927045407 +7.500000000000001 30 0.0 11 -51.013672124985426 +408.7007833757142 21 -369.87619756818043 +7.500000000000001 31 0.0 0 @@ -5451,15 +5183,15 @@ LINE 8 cut 10 -51.013672124985426 +408.7007833757142 20 -369.87619756818043 +7.500000000000001 30 0.0 11 -68.51846239770595 +408.7007833757142 21 -369.87619756818043 +2.5000000000000004 31 0.0 0 @@ -5469,33 +5201,35 @@ LINE 8 cut 10 -68.51846239770595 +578.3550614105758 20 -369.87619756818043 +123.50000000000001 30 0.0 11 -68.51846239770595 +542.3550614105758 21 -378.6285927045407 +123.50000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +-90 10 -21.798749656897446 +578.3550614105758 20 -277.4879208023067 +123.50000000000001 30 0.0 11 -26.83554914835048 +578.3550614105758 21 -294.7738435039605 +147.5 31 0.0 0 @@ -5505,15 +5239,15 @@ LINE 8 cut 10 -26.83554914835048 +542.3550614105758 20 -294.7738435039605 +147.5 30 0.0 11 -26.3555123792512 +578.3550614105758 21 -294.9137173768343 +147.5 31 0.0 0 @@ -5523,15 +5257,15 @@ LINE 8 cut 10 -26.3555123792512 +578.3550614105758 20 -294.9137173768343 +147.5 30 0.0 11 -21.318712887798156 +623.3550614105758 21 -277.62779467518055 +147.5 31 0.0 0 @@ -5541,15 +5275,15 @@ LINE 8 cut 10 -21.318712887798156 +623.3550614105758 20 -277.62779467518055 +123.50000000000001 30 0.0 11 -21.798749656897446 +578.3550614105758 21 -277.4879208023067 +123.50000000000001 31 0.0 0 @@ -5559,15 +5293,15 @@ LINE 8 cut 10 -26.835549148350342 +623.3550614105758 20 -206.22615649604003 +147.5 30 0.0 11 -21.798749656897346 +623.3550614105758 21 -223.51207919769385 +123.50000000000001 31 0.0 0 @@ -5577,33 +5311,35 @@ LINE 8 cut 10 -21.798749656897346 +542.3550614105758 20 -223.51207919769385 +123.50000000000001 30 0.0 11 -21.31871288779806 +508.35506141057573 21 -223.37220532482002 +123.50000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -21.31871288779806 +508.35506141057573 20 -223.37220532482002 +147.5 30 0.0 11 -26.355512379251053 +542.3550614105758 21 -206.08628262316617 +147.5 31 0.0 0 @@ -5613,15 +5349,15 @@ LINE 8 cut 10 -26.355512379251053 +508.35506141057573 20 -206.08628262316617 +113.50000000000001 30 0.0 11 -26.835549148350342 +508.35506141057573 21 -206.22615649604003 +52.50000000000001 31 0.0 0 @@ -5631,15 +5367,15 @@ LINE 8 cut 10 -68.51846239770559 +508.35506141057573 20 -122.37140729545976 +123.50000000000001 30 0.0 11 -68.51846239770562 +508.35506141057573 21 -131.12380243182005 +113.50000000000001 31 0.0 0 @@ -5649,15 +5385,15 @@ LINE 8 cut 10 -68.51846239770562 +508.35506141057573 20 -131.12380243182005 +221.50000000000003 30 0.0 11 -51.01367212498507 +508.35506141057573 21 -131.12380243182008 +147.5 31 0.0 0 @@ -5667,15 +5403,15 @@ LINE 8 cut 10 -51.01367212498507 +508.35506141057573 20 -131.12380243182008 +221.50000000000003 30 0.0 11 -51.01367212498506 +508.35506141057573 21 -122.3714072954598 +221.50000000000003 31 0.0 0 @@ -5685,15 +5421,15 @@ LINE 8 cut 10 -272.52804294314706 +508.35506141057573 20 -378.6285927045405 +147.5 30 0.0 11 -272.52804294314706 +508.35506141057573 21 -369.87619756818015 +221.50000000000003 31 0.0 0 @@ -5703,15 +5439,15 @@ LINE 8 cut 10 -272.52804294314706 +508.35506141057573 20 -369.87619756818015 +123.50000000000001 30 0.0 11 -290.03283321586764 +508.35506141057573 21 -369.87619756818015 +147.5 31 0.0 0 @@ -5721,15 +5457,15 @@ LINE 8 cut 10 -290.03283321586764 +508.35506141057573 20 -369.87619756818015 +113.50000000000001 30 0.0 11 -290.03283321586764 +508.35506141057573 21 -378.6285927045405 +123.50000000000001 31 0.0 0 @@ -5739,15 +5475,15 @@ LINE 8 cut 10 -511.3550614105758 +508.35506141057573 20 -105.00000000000001 +52.50000000000001 30 0.0 11 -449.7007833757143 +508.35506141057573 21 -105.00000000000001 +113.50000000000001 31 0.0 0 @@ -5757,35 +5493,33 @@ LINE 8 cut 10 -449.7007833757143 +508.35506141057573 20 -166.0 +52.50000000000001 30 0.0 11 -511.3550614105758 +508.35506141057573 21 -166.0 +52.50000000000001 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 --45 +cut 10 -449.7007833757143 +508.35506141057573 20 -166.0 +147.5 30 0.0 11 -449.7007833757143 +508.35506141057573 21 -105.00000000000001 +167.50000000000003 31 0.0 0 @@ -5795,33 +5529,35 @@ LINE 8 cut 10 -521.3550614105757 +542.3550614105758 20 -105.00000000000001 +167.50000000000003 30 0.0 11 -511.3550614105758 +542.3550614105758 21 -105.00000000000001 +147.5 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -521.3550614105757 +508.35506141057573 20 -166.0 +167.50000000000003 30 0.0 11 -521.3550614105757 +542.3550614105758 21 -105.00000000000001 +167.50000000000003 31 0.0 0 @@ -5831,15 +5567,15 @@ LINE 8 cut 10 -511.3550614105758 +508.35506141057573 20 -166.0 +167.50000000000003 30 0.0 11 -521.3550614105757 +508.35506141057573 21 -166.0 +191.50000000000003 31 0.0 0 @@ -5849,15 +5585,15 @@ LINE 8 cut 10 -422.7007833757143 +542.3550614105758 20 -166.0 +191.50000000000003 30 0.0 11 -449.7007833757143 +542.3550614105758 21 -166.0 +167.50000000000003 31 0.0 0 @@ -5867,37 +5603,35 @@ DOTTED 62 1 8 --45 +90 10 -422.7007833757143 +508.35506141057573 20 -105.00000000000001 +191.50000000000003 30 0.0 11 -422.7007833757143 +542.3550614105758 21 -166.0 +191.50000000000003 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -449.7007833757143 +508.35506141057573 20 -105.00000000000001 +191.50000000000003 30 0.0 11 -422.7007833757143 +508.35506141057573 21 -105.00000000000001 +211.5 31 0.0 0 @@ -5907,33 +5641,35 @@ LINE 8 cut 10 -361.0465053408529 +542.3550614105758 20 -166.0 +211.5 30 0.0 11 -422.7007833757143 +542.3550614105758 21 -166.0 +191.50000000000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +90 10 -422.7007833757143 +542.3550614105758 20 -105.00000000000001 +211.5 30 0.0 11 -361.0465053408529 +508.35506141057573 21 -105.00000000000001 +211.5 31 0.0 0 @@ -5943,15 +5679,15 @@ LINE 8 cut 10 -351.0465053408529 +542.3550614105758 20 -166.0 +221.50000000000003 30 0.0 11 -361.0465053408529 +542.3550614105758 21 -166.0 +211.5 31 0.0 0 @@ -5961,15 +5697,15 @@ LINE 8 cut 10 -351.0465053408529 +508.35506141057573 20 -105.00000000000001 +221.50000000000003 30 0.0 11 -351.0465053408529 +542.3550614105758 21 -166.0 +221.50000000000003 31 0.0 0 @@ -5979,15 +5715,15 @@ LINE 8 cut 10 -361.0465053408529 +508.35506141057573 20 -105.00000000000001 +211.5 30 0.0 11 -351.0465053408529 +508.35506141057573 21 -105.00000000000001 +221.50000000000003 31 0.0 0 @@ -5997,15 +5733,15 @@ LINE 8 cut 10 -449.7007833757143 +619.3550614105757 20 -105.00000000000001 +139.75000000000003 30 0.0 11 -449.7007833757143 +619.3550614105757 21 -88.00000000000001 +131.25 31 0.0 0 @@ -6015,35 +5751,33 @@ LINE 8 cut 10 -422.7007833757143 +619.3550614105757 20 -88.00000000000001 +131.25 30 0.0 11 -422.7007833757143 +619.8550614105757 21 -105.00000000000001 +131.25 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -449.7007833757143 +619.8550614105757 20 -88.00000000000001 +131.25 30 0.0 11 -422.7007833757143 +619.8550614105757 21 -88.00000000000001 +139.75000000000003 31 0.0 0 @@ -6053,15 +5787,15 @@ LINE 8 cut 10 -449.7007833757143 +619.8550614105757 20 -88.00000000000001 +139.75000000000003 30 0.0 11 -449.7007833757143 +619.3550614105757 21 -27.000000000000004 +139.75000000000003 31 0.0 0 @@ -6071,35 +5805,33 @@ LINE 8 cut 10 -422.7007833757143 +531.2717280772423 20 -27.000000000000004 +131.25 30 0.0 11 -422.7007833757143 +519.4383947439092 21 -88.00000000000001 +131.25 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -449.7007833757143 +519.4383947439092 20 -27.000000000000004 +131.25 30 0.0 11 -422.7007833757143 +519.4383947439092 21 -27.000000000000004 +130.75000000000003 31 0.0 0 @@ -6109,15 +5841,15 @@ LINE 8 cut 10 -449.7007833757143 +519.4383947439092 20 -27.000000000000004 +130.75000000000003 30 0.0 11 -449.7007833757143 +531.2717280772423 21 -10.000000000000002 +130.75000000000003 31 0.0 0 @@ -6127,35 +5859,33 @@ LINE 8 cut 10 -422.7007833757143 +531.2717280772423 20 -10.000000000000002 +130.75000000000003 30 0.0 11 -422.7007833757143 +531.2717280772423 21 -27.000000000000004 +131.25 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -422.7007833757143 +500.60506141057573 20 -10.000000000000002 +74.93181818181819 30 0.0 11 -449.7007833757143 +500.60506141057573 21 -10.000000000000002 +63.3409090909091 31 0.0 0 @@ -6165,15 +5895,15 @@ LINE 8 cut 10 -422.7007833757143 +500.60506141057573 20 -0.0 +63.3409090909091 30 0.0 11 -422.7007833757143 +501.10506141057573 21 -10.000000000000002 +63.3409090909091 31 0.0 0 @@ -6183,15 +5913,15 @@ LINE 8 cut 10 -449.7007833757143 +501.10506141057573 20 -0.0 +63.3409090909091 30 0.0 11 -422.7007833757143 +501.10506141057573 21 -0.0 +74.93181818181819 31 0.0 0 @@ -6201,15 +5931,15 @@ LINE 8 cut 10 -449.7007833757143 +501.10506141057573 20 -10.000000000000002 +74.93181818181819 30 0.0 11 -449.7007833757143 +500.60506141057573 21 -0.0 +74.93181818181819 31 0.0 0 @@ -6219,15 +5949,15 @@ LINE 8 cut 10 -518.8550614105758 +500.60506141057573 20 -154.90909090909093 +102.65909090909092 30 0.0 11 -513.8550614105758 +500.60506141057573 21 -154.90909090909093 +91.06818181818183 31 0.0 0 @@ -6237,15 +5967,15 @@ LINE 8 cut 10 -513.8550614105758 +500.60506141057573 20 -154.90909090909093 +91.06818181818183 30 0.0 11 -513.8550614105758 +501.10506141057573 21 -143.8181818181818 +91.06818181818183 31 0.0 0 @@ -6255,15 +5985,15 @@ LINE 8 cut 10 -513.8550614105758 +501.10506141057573 20 -143.8181818181818 +91.06818181818183 30 0.0 11 -518.8550614105758 +501.10506141057573 21 -143.8181818181818 +102.65909090909092 31 0.0 0 @@ -6273,15 +6003,15 @@ LINE 8 cut 10 -518.8550614105758 +501.10506141057573 20 -127.1818181818182 +102.65909090909092 30 0.0 11 -513.8550614105758 +500.60506141057573 21 -127.1818181818182 +102.65909090909092 31 0.0 0 @@ -6291,15 +6021,15 @@ LINE 8 cut 10 -513.8550614105758 +519.3550614105758 20 -127.1818181818182 +166.50000000000003 30 0.0 11 -513.8550614105758 +519.3550614105758 21 -116.09090909090911 +162.50000000000003 31 0.0 0 @@ -6309,15 +6039,15 @@ LINE 8 cut 10 -513.8550614105758 +519.3550614105758 20 -116.09090909090911 +162.50000000000003 30 0.0 11 -518.8550614105758 +531.3550614105757 21 -116.09090909090911 +162.50000000000003 31 0.0 0 @@ -6327,15 +6057,15 @@ LINE 8 cut 10 -445.2007833757143 +531.3550614105757 20 -102.50000000000001 +162.50000000000003 30 0.0 11 -445.2007833757143 +531.3550614105757 21 -108.50000000000001 +166.50000000000003 31 0.0 0 @@ -6345,15 +6075,15 @@ LINE 8 cut 10 -445.2007833757143 +531.3550614105757 20 -108.50000000000001 +166.50000000000003 30 0.0 11 -427.2007833757143 +519.3550614105758 21 -108.50000000000001 +166.50000000000003 31 0.0 0 @@ -6363,15 +6093,15 @@ LINE 8 cut 10 -427.2007833757143 +520.8550614105757 20 -108.50000000000001 +154.5 30 0.0 11 -427.2007833757143 +520.8550614105757 21 -102.50000000000001 +150.5 31 0.0 0 @@ -6381,15 +6111,15 @@ LINE 8 cut 10 -427.2007833757143 +520.8550614105757 20 -102.50000000000001 +150.5 30 0.0 11 -445.2007833757143 +529.8550614105758 21 -102.50000000000001 +150.5 31 0.0 0 @@ -6399,15 +6129,15 @@ LINE 8 cut 10 -431.4507833757143 +529.8550614105758 20 -158.25000000000003 +150.5 30 0.0 11 -440.9507833757143 +529.8550614105758 21 -158.25000000000003 +154.5 31 0.0 0 @@ -6417,15 +6147,15 @@ LINE 8 cut 10 -440.9507833757143 +529.8550614105758 20 -158.25000000000003 +154.5 30 0.0 11 -440.9507833757143 +520.8550614105757 21 -158.75000000000003 +154.5 31 0.0 0 @@ -6435,15 +6165,15 @@ LINE 8 cut 10 -440.9507833757143 +519.3550614105758 20 -158.75000000000003 +191.0 30 0.0 11 -431.4507833757143 +519.3550614105758 21 -158.75000000000003 +168.0 31 0.0 0 @@ -6453,15 +6183,15 @@ LINE 8 cut 10 -431.4507833757143 +519.3550614105758 20 -158.75000000000003 +168.0 30 0.0 11 -431.4507833757143 +531.3550614105757 21 -158.25000000000003 +168.0 31 0.0 0 @@ -6471,15 +6201,15 @@ LINE 8 cut 10 -353.54650534085283 +531.3550614105757 20 -116.09090909090911 +168.0 30 0.0 11 -358.54650534085283 +531.3550614105757 21 -116.09090909090911 +191.0 31 0.0 0 @@ -6489,15 +6219,15 @@ LINE 8 cut 10 -358.54650534085283 +531.3550614105757 20 -116.09090909090911 +191.0 30 0.0 11 -358.54650534085283 +519.3550614105758 21 -127.18181818181822 +191.0 31 0.0 0 @@ -6507,15 +6237,15 @@ LINE 8 cut 10 -358.54650534085283 +519.3550614105758 20 -127.18181818181822 +196.50000000000003 30 0.0 11 -353.54650534085283 +519.3550614105758 21 -127.18181818181822 +192.50000000000003 31 0.0 0 @@ -6525,15 +6255,15 @@ LINE 8 cut 10 -353.54650534085283 +519.3550614105758 20 -143.81818181818184 +192.50000000000003 30 0.0 11 -358.54650534085283 +531.3550614105757 21 -143.81818181818184 +192.50000000000003 31 0.0 0 @@ -6543,15 +6273,15 @@ LINE 8 cut 10 -358.54650534085283 +531.3550614105757 20 -143.81818181818184 +192.50000000000003 30 0.0 11 -358.54650534085283 +531.3550614105757 21 -154.90909090909093 +196.50000000000003 31 0.0 0 @@ -6561,15 +6291,15 @@ LINE 8 cut 10 -358.54650534085283 +531.3550614105757 20 -154.90909090909093 +196.50000000000003 30 0.0 11 -353.54650534085283 +519.3550614105758 21 -154.90909090909093 +196.50000000000003 31 0.0 0 @@ -6579,15 +6309,15 @@ LINE 8 cut 10 -440.7007833757143 +519.6883947439092 20 -2.5000000000000004 +219.00000000000003 30 0.0 11 -440.7007833757143 +519.6883947439092 21 -7.500000000000001 +214.0 31 0.0 0 @@ -6597,15 +6327,15 @@ LINE 8 cut 10 -440.7007833757143 +519.6883947439092 20 -7.500000000000001 +214.0 30 0.0 11 -431.7007833757143 +531.0217280772423 21 -7.500000000000001 +214.0 31 0.0 0 @@ -6615,15 +6345,15 @@ LINE 8 cut 10 -431.7007833757143 +531.0217280772423 20 -7.500000000000001 +214.0 30 0.0 11 -431.7007833757143 +531.0217280772423 21 -2.5000000000000004 +219.00000000000003 31 0.0 0 @@ -6635,13 +6365,13 @@ DOTTED 8 90 10 -564.3550614105757 +666.3550614105757 20 123.50000000000001 30 0.0 11 -625.3550614105758 +727.3550614105758 21 123.50000000000001 31 @@ -6655,13 +6385,13 @@ DOTTED 8 90 10 -625.3550614105758 +727.3550614105758 20 123.50000000000001 30 0.0 11 -625.3550614105758 +727.3550614105758 21 147.5 31 @@ -6675,13 +6405,13 @@ DOTTED 8 90 10 -625.3550614105758 +727.3550614105758 20 147.5 30 0.0 11 -564.3550614105757 +666.3550614105757 21 147.5 31 @@ -6695,13 +6425,13 @@ DOTTED 8 90 10 -564.3550614105757 +666.3550614105757 20 147.5 30 0.0 11 -564.3550614105757 +666.3550614105757 21 123.50000000000001 31 @@ -6713,13 +6443,13 @@ LINE 8 cut 10 -564.3550614105757 +666.3550614105757 20 116.50000000000001 30 0.0 11 -564.3550614105757 +666.3550614105757 21 123.50000000000001 31 @@ -6731,13 +6461,13 @@ LINE 8 cut 10 -624.3550614105758 +726.3550614105758 20 116.50000000000001 30 0.0 11 -564.3550614105757 +666.3550614105757 21 116.50000000000001 31 @@ -6749,13 +6479,13 @@ LINE 8 cut 10 -624.3550614105758 +726.3550614105758 20 123.50000000000001 30 0.0 11 -624.3550614105758 +726.3550614105758 21 116.50000000000001 31 @@ -6767,13 +6497,13 @@ LINE 8 cut 10 -632.3550614105758 +734.3550614105758 20 123.50000000000001 30 0.0 11 -625.3550614105758 +727.3550614105758 21 123.50000000000001 31 @@ -6785,13 +6515,13 @@ LINE 8 cut 10 -632.3550614105758 +734.3550614105758 20 147.5 30 0.0 11 -632.3550614105758 +734.3550614105758 21 123.50000000000001 31 @@ -6803,13 +6533,13 @@ LINE 8 cut 10 -625.3550614105758 +727.3550614105758 20 147.5 30 0.0 11 -632.3550614105758 +734.3550614105758 21 147.5 31 @@ -6823,13 +6553,13 @@ DOTTED 8 90 10 -625.3550614105758 +727.3550614105758 20 147.5 30 0.0 11 -625.3550614105758 +727.3550614105758 21 208.50000000000003 31 @@ -6841,13 +6571,13 @@ LINE 8 cut 10 -565.3550614105757 +667.3550614105757 20 208.50000000000003 30 0.0 11 -625.3550614105758 +727.3550614105758 21 208.50000000000003 31 @@ -6861,13 +6591,13 @@ DOTTED 8 90 10 -565.3550614105757 +667.3550614105757 20 147.5 30 0.0 11 -565.3550614105757 +667.3550614105757 21 208.50000000000003 31 @@ -6879,13 +6609,13 @@ LINE 8 cut 10 -649.3550614105757 +751.3550614105758 20 147.5 30 0.0 11 -625.3550614105758 +727.3550614105758 21 147.5 31 @@ -6899,13 +6629,13 @@ DOTTED 8 90 10 -649.3550614105757 +751.3550614105758 20 147.5 30 0.0 11 -649.3550614105757 +751.3550614105758 21 208.50000000000003 31 @@ -6917,13 +6647,13 @@ LINE 8 cut 10 -625.3550614105758 +727.3550614105758 20 208.50000000000003 30 0.0 11 -649.3550614105757 +751.3550614105758 21 208.50000000000003 31 @@ -6935,13 +6665,13 @@ LINE 8 cut 10 -709.3550614105758 +811.3550614105757 20 147.5 30 0.0 11 -649.3550614105757 +751.3550614105758 21 147.5 31 @@ -6953,13 +6683,13 @@ LINE 8 cut 10 -709.3550614105758 +811.3550614105757 20 208.50000000000003 30 0.0 11 -709.3550614105758 +811.3550614105757 21 147.5 31 @@ -6971,13 +6701,13 @@ LINE 8 cut 10 -649.3550614105757 +751.3550614105758 20 208.50000000000003 30 0.0 11 -709.3550614105758 +811.3550614105757 21 208.50000000000003 31 @@ -6989,13 +6719,13 @@ LINE 8 cut 10 -565.3550614105757 +667.3550614105757 20 147.5 30 0.0 11 -541.3550614105758 +643.3550614105758 21 147.5 31 @@ -7007,13 +6737,13 @@ LINE 8 cut 10 -541.3550614105758 +643.3550614105758 20 208.50000000000003 30 0.0 11 -565.3550614105757 +667.3550614105757 21 208.50000000000003 31 @@ -7027,13 +6757,13 @@ DOTTED 8 90 10 -541.3550614105758 +643.3550614105758 20 208.50000000000003 30 0.0 11 -541.3550614105758 +643.3550614105758 21 147.5 31 @@ -7045,13 +6775,13 @@ LINE 8 cut 10 -531.3550614105757 +633.3550614105758 20 208.50000000000003 30 0.0 11 -541.3550614105758 +643.3550614105758 21 208.50000000000003 31 @@ -7063,13 +6793,13 @@ LINE 8 cut 10 -531.3550614105757 +633.3550614105758 20 147.5 30 0.0 11 -531.3550614105757 +633.3550614105758 21 208.50000000000003 31 @@ -7081,13 +6811,13 @@ LINE 8 cut 10 -541.3550614105758 +643.3550614105758 20 147.5 30 0.0 11 -531.3550614105757 +633.3550614105758 21 147.5 31 @@ -7099,13 +6829,13 @@ LINE 8 cut 10 -557.3550614105757 +659.3550614105758 20 147.5 30 0.0 11 -564.3550614105757 +666.3550614105757 21 147.5 31 @@ -7117,13 +6847,13 @@ LINE 8 cut 10 -557.3550614105757 +659.3550614105758 20 123.50000000000001 30 0.0 11 -557.3550614105757 +659.3550614105758 21 147.5 31 @@ -7135,13 +6865,13 @@ LINE 8 cut 10 -564.3550614105757 +666.3550614105757 20 123.50000000000001 30 0.0 11 -557.3550614105757 +659.3550614105758 21 123.50000000000001 31 @@ -7153,13 +6883,13 @@ LINE 8 cut 10 -613.4459705014848 +715.4459705014848 20 118.25000000000001 30 0.0 11 -616.9459705014849 +718.9459705014849 21 118.25000000000001 31 @@ -7171,13 +6901,13 @@ LINE 8 cut 10 -616.9459705014849 +718.9459705014849 20 118.25000000000001 30 0.0 11 -613.4459705014848 +715.4459705014848 21 121.75000000000001 31 @@ -7189,13 +6919,13 @@ LINE 8 cut 10 -613.4459705014848 +715.4459705014848 20 121.75000000000001 30 0.0 11 -602.5368795923939 +704.5368795923939 21 121.75000000000001 31 @@ -7207,13 +6937,13 @@ LINE 8 cut 10 -602.5368795923939 +704.5368795923939 20 121.75000000000001 30 0.0 11 -599.0368795923939 +701.0368795923939 21 118.25000000000001 31 @@ -7225,13 +6955,13 @@ LINE 8 cut 10 -599.0368795923939 +701.0368795923939 20 118.25000000000001 30 0.0 11 -602.5368795923939 +704.5368795923939 21 118.25000000000001 31 @@ -7243,13 +6973,13 @@ LINE 8 cut 10 -586.1732432287575 +688.1732432287577 20 118.25000000000001 30 0.0 11 -589.6732432287577 +691.6732432287577 21 118.25000000000001 31 @@ -7261,13 +6991,13 @@ LINE 8 cut 10 -589.6732432287577 +691.6732432287577 20 118.25000000000001 30 0.0 11 -586.1732432287575 +688.1732432287577 21 121.75000000000001 31 @@ -7279,13 +7009,13 @@ LINE 8 cut 10 -586.1732432287575 +688.1732432287577 20 121.75000000000001 30 0.0 11 -575.2641523196667 +677.2641523196667 21 121.75000000000001 31 @@ -7297,13 +7027,13 @@ LINE 8 cut 10 -575.2641523196667 +677.2641523196667 20 121.75000000000001 30 0.0 11 -571.7641523196666 +673.7641523196667 21 118.25000000000001 31 @@ -7315,13 +7045,13 @@ LINE 8 cut 10 -571.7641523196666 +673.7641523196667 20 118.25000000000001 30 0.0 11 -575.2641523196667 +677.2641523196667 21 118.25000000000001 31 @@ -7333,13 +7063,13 @@ LINE 8 cut 10 -630.6050614105758 +732.6050614105758 20 139.50000000000003 30 0.0 11 -627.1050614105758 +729.1050614105758 21 139.50000000000003 31 @@ -7351,13 +7081,13 @@ LINE 8 cut 10 -627.1050614105758 +729.1050614105758 20 139.50000000000003 30 0.0 11 -627.1050614105758 +729.1050614105758 21 131.50000000000003 31 @@ -7369,13 +7099,13 @@ LINE 8 cut 10 -627.1050614105758 +729.1050614105758 20 131.50000000000003 30 0.0 11 -630.6050614105758 +732.6050614105758 21 131.50000000000003 31 @@ -7387,13 +7117,13 @@ LINE 8 cut 10 -572.8550614105758 +674.8550614105757 20 199.00000000000003 30 0.0 11 -572.8550614105758 +674.8550614105757 21 181.00000000000003 31 @@ -7405,13 +7135,13 @@ LINE 8 cut 10 -572.8550614105758 +674.8550614105757 20 181.00000000000003 30 0.0 11 -607.8550614105758 +709.8550614105758 21 181.00000000000003 31 @@ -7423,13 +7153,13 @@ LINE 8 cut 10 -607.8550614105758 +709.8550614105758 20 181.00000000000003 30 0.0 11 -607.8550614105758 +709.8550614105758 21 199.00000000000003 31 @@ -7441,13 +7171,13 @@ LINE 8 cut 10 -607.8550614105758 +709.8550614105758 20 199.00000000000003 30 0.0 11 -572.8550614105758 +674.8550614105757 21 199.00000000000003 31 @@ -7459,13 +7189,13 @@ LINE 8 cut 10 -625.8550614105758 +727.8550614105758 20 160.75000000000003 30 0.0 11 -625.8550614105758 +727.8550614105758 21 157.75000000000003 31 @@ -7477,13 +7207,13 @@ LINE 8 cut 10 -625.8550614105758 +727.8550614105758 20 157.75000000000003 30 0.0 11 -628.8550614105757 +730.8550614105757 21 157.75000000000003 31 @@ -7495,13 +7225,13 @@ LINE 8 cut 10 -628.8550614105757 +730.8550614105757 20 157.75000000000003 30 0.0 11 -628.8550614105757 +730.8550614105757 21 160.75000000000003 31 @@ -7513,13 +7243,13 @@ LINE 8 cut 10 -628.8550614105757 +730.8550614105757 20 160.75000000000003 30 0.0 11 -625.8550614105758 +727.8550614105758 21 160.75000000000003 31 @@ -7531,13 +7261,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 159.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 158.75000000000003 31 @@ -7549,13 +7279,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 158.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 158.75000000000003 31 @@ -7567,13 +7297,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 158.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 159.75000000000003 31 @@ -7585,13 +7315,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 159.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 159.75000000000003 31 @@ -7603,13 +7333,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 162.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 161.25 31 @@ -7621,13 +7351,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 161.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 161.25 31 @@ -7639,13 +7369,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 161.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 162.25000000000003 31 @@ -7657,13 +7387,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 162.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 162.25000000000003 31 @@ -7675,13 +7405,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 162.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 161.25 31 @@ -7693,13 +7423,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 161.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 161.25 31 @@ -7711,13 +7441,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 161.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 162.25000000000003 31 @@ -7729,13 +7459,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 162.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 162.25000000000003 31 @@ -7747,13 +7477,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 164.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 163.75 31 @@ -7765,13 +7495,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 163.75 30 0.0 11 -627.8550614105758 +729.8550614105757 21 163.75 31 @@ -7783,13 +7513,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 163.75 30 0.0 11 -627.8550614105758 +729.8550614105757 21 164.75000000000003 31 @@ -7801,13 +7531,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 164.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 164.75000000000003 31 @@ -7819,13 +7549,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 164.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 163.75 31 @@ -7837,13 +7567,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 163.75 30 0.0 11 -647.8550614105757 +749.8550614105758 21 163.75 31 @@ -7855,13 +7585,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 163.75 30 0.0 11 -647.8550614105757 +749.8550614105758 21 164.75000000000003 31 @@ -7873,13 +7603,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 164.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 164.75000000000003 31 @@ -7891,13 +7621,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 167.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 166.25 31 @@ -7909,13 +7639,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 166.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 166.25 31 @@ -7927,13 +7657,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 166.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 167.25000000000003 31 @@ -7945,13 +7675,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 167.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 167.25000000000003 31 @@ -7963,13 +7693,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 167.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 166.25 31 @@ -7981,13 +7711,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 166.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 166.25 31 @@ -7999,13 +7729,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 166.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 167.25000000000003 31 @@ -8017,13 +7747,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 167.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 167.25000000000003 31 @@ -8035,13 +7765,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 169.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 168.75000000000003 31 @@ -8053,13 +7783,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 168.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 168.75000000000003 31 @@ -8071,13 +7801,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 168.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 169.75000000000003 31 @@ -8089,13 +7819,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 169.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 169.75000000000003 31 @@ -8107,13 +7837,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 169.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 168.75000000000003 31 @@ -8125,13 +7855,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 168.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 168.75000000000003 31 @@ -8143,13 +7873,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 168.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 169.75000000000003 31 @@ -8161,13 +7891,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 169.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 169.75000000000003 31 @@ -8179,13 +7909,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 172.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 171.25000000000003 31 @@ -8197,13 +7927,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 171.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 171.25000000000003 31 @@ -8215,13 +7945,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 171.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 172.25000000000003 31 @@ -8233,13 +7963,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 172.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 172.25000000000003 31 @@ -8251,13 +7981,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 172.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 171.25000000000003 31 @@ -8269,13 +7999,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 171.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 171.25000000000003 31 @@ -8287,13 +8017,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 171.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 172.25000000000003 31 @@ -8305,13 +8035,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 172.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 172.25000000000003 31 @@ -8323,13 +8053,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 174.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 173.75000000000003 31 @@ -8341,13 +8071,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 173.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 173.75000000000003 31 @@ -8359,13 +8089,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 173.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 174.75000000000003 31 @@ -8377,13 +8107,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 174.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 174.75000000000003 31 @@ -8395,13 +8125,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 174.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 173.75000000000003 31 @@ -8413,13 +8143,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 173.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 173.75000000000003 31 @@ -8431,13 +8161,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 173.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 174.75000000000003 31 @@ -8449,13 +8179,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 174.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 174.75000000000003 31 @@ -8467,13 +8197,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 177.25 30 0.0 11 -626.8550614105758 +728.8550614105757 21 176.25000000000003 31 @@ -8485,13 +8215,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 176.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 176.25000000000003 31 @@ -8503,13 +8233,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 176.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 177.25 31 @@ -8521,13 +8251,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 177.25 30 0.0 11 -626.8550614105758 +728.8550614105757 21 177.25 31 @@ -8539,13 +8269,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 177.25 30 0.0 11 -646.8550614105757 +748.8550614105757 21 176.25000000000003 31 @@ -8557,13 +8287,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 176.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 176.25000000000003 31 @@ -8575,13 +8305,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 176.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 177.25 31 @@ -8593,13 +8323,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 177.25 30 0.0 11 -646.8550614105757 +748.8550614105757 21 177.25 31 @@ -8611,13 +8341,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 179.75 30 0.0 11 -626.8550614105758 +728.8550614105757 21 178.75000000000003 31 @@ -8629,13 +8359,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 178.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 178.75000000000003 31 @@ -8647,13 +8377,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 178.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 179.75 31 @@ -8665,13 +8395,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 179.75 30 0.0 11 -626.8550614105758 +728.8550614105757 21 179.75 31 @@ -8683,13 +8413,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 179.75 30 0.0 11 -646.8550614105757 +748.8550614105757 21 178.75000000000003 31 @@ -8701,13 +8431,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 178.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 178.75000000000003 31 @@ -8719,13 +8449,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 178.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 179.75 31 @@ -8737,13 +8467,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 179.75 30 0.0 11 -646.8550614105757 +748.8550614105757 21 179.75 31 @@ -8755,13 +8485,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 182.25 30 0.0 11 -626.8550614105758 +728.8550614105757 21 181.25000000000003 31 @@ -8773,13 +8503,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 181.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 181.25000000000003 31 @@ -8791,13 +8521,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 181.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 182.25 31 @@ -8809,13 +8539,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 182.25 30 0.0 11 -626.8550614105758 +728.8550614105757 21 182.25 31 @@ -8827,13 +8557,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 182.25 30 0.0 11 -646.8550614105757 +748.8550614105757 21 181.25000000000003 31 @@ -8845,13 +8575,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 181.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 181.25000000000003 31 @@ -8863,13 +8593,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 181.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 182.25 31 @@ -8881,13 +8611,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 182.25 30 0.0 11 -646.8550614105757 +748.8550614105757 21 182.25 31 @@ -8899,13 +8629,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 184.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 183.75000000000003 31 @@ -8917,13 +8647,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 183.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 183.75000000000003 31 @@ -8935,13 +8665,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 183.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 184.75000000000003 31 @@ -8953,13 +8683,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 184.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 184.75000000000003 31 @@ -8971,13 +8701,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 184.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 183.75000000000003 31 @@ -8989,13 +8719,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 183.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 183.75000000000003 31 @@ -9007,13 +8737,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 183.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 184.75000000000003 31 @@ -9025,13 +8755,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 184.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 184.75000000000003 31 @@ -9043,13 +8773,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 187.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 186.25000000000003 31 @@ -9061,13 +8791,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 186.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 186.25000000000003 31 @@ -9079,13 +8809,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 186.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 187.25000000000003 31 @@ -9097,13 +8827,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 187.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 187.25000000000003 31 @@ -9115,13 +8845,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 187.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 186.25000000000003 31 @@ -9133,13 +8863,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 186.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 186.25000000000003 31 @@ -9151,13 +8881,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 186.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 187.25000000000003 31 @@ -9169,13 +8899,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 187.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 187.25000000000003 31 @@ -9187,13 +8917,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 189.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 188.75 31 @@ -9205,13 +8935,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 188.75 30 0.0 11 -627.8550614105758 +729.8550614105757 21 188.75 31 @@ -9223,13 +8953,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 188.75 30 0.0 11 -627.8550614105758 +729.8550614105757 21 189.75000000000003 31 @@ -9241,13 +8971,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 189.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 189.75000000000003 31 @@ -9259,13 +8989,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 189.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 188.75 31 @@ -9277,13 +9007,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 188.75 30 0.0 11 -647.8550614105757 +749.8550614105758 21 188.75 31 @@ -9295,13 +9025,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 188.75 30 0.0 11 -647.8550614105757 +749.8550614105758 21 189.75000000000003 31 @@ -9313,13 +9043,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 189.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 189.75000000000003 31 @@ -9331,13 +9061,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 192.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 191.25 31 @@ -9349,13 +9079,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 191.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 191.25 31 @@ -9367,13 +9097,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 191.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 192.25000000000003 31 @@ -9385,13 +9115,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 192.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 192.25000000000003 31 @@ -9403,13 +9133,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 192.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 191.25 31 @@ -9421,13 +9151,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 191.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 191.25 31 @@ -9439,13 +9169,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 191.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 192.25000000000003 31 @@ -9457,13 +9187,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 192.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 192.25000000000003 31 @@ -9475,13 +9205,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 194.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 193.75000000000003 31 @@ -9493,13 +9223,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 193.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 193.75000000000003 31 @@ -9511,13 +9241,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 193.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 194.75000000000003 31 @@ -9529,13 +9259,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 194.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 194.75000000000003 31 @@ -9547,13 +9277,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 194.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 193.75000000000003 31 @@ -9565,13 +9295,13 @@ LINE 8 cut 10 -646.8550614105757 +748.8550614105757 20 193.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 193.75000000000003 31 @@ -9583,13 +9313,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 193.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 194.75000000000003 31 @@ -9601,13 +9331,13 @@ LINE 8 cut 10 -647.8550614105757 +749.8550614105758 20 194.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 194.75000000000003 31 @@ -9619,13 +9349,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 197.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 196.25000000000003 31 @@ -9637,13 +9367,13 @@ LINE 8 cut 10 -626.8550614105758 +728.8550614105757 20 196.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 196.25000000000003 31 @@ -9655,13 +9385,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 196.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 197.25000000000003 31 @@ -9673,13 +9403,13 @@ LINE 8 cut 10 -627.8550614105758 +729.8550614105757 20 197.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 197.25000000000003 31 @@ -9691,13 +9421,13 @@ LINE 8 cut 10 -645.8550614105758 +747.8550614105757 20 198.25000000000003 30 0.0 11 -645.8550614105758 +747.8550614105757 21 195.25000000000003 31 @@ -9709,13 +9439,13 @@ LINE 8 cut 10 -645.8550614105758 +747.8550614105757 20 195.25000000000003 30 0.0 11 -648.8550614105757 +750.8550614105758 21 195.25000000000003 31 @@ -9727,13 +9457,13 @@ LINE 8 cut 10 -648.8550614105757 +750.8550614105758 20 195.25000000000003 30 0.0 11 -648.8550614105757 +750.8550614105758 21 198.25000000000003 31 @@ -9745,13 +9475,13 @@ LINE 8 cut 10 -648.8550614105757 +750.8550614105758 20 198.25000000000003 30 0.0 11 -645.8550614105758 +747.8550614105757 21 198.25000000000003 31 @@ -9763,13 +9493,13 @@ LINE 8 cut 10 -641.6050614105758 +743.6050614105757 20 155.25000000000003 30 0.0 11 -633.1050614105757 +735.1050614105757 21 155.25000000000003 31 @@ -9781,13 +9511,13 @@ LINE 8 cut 10 -633.1050614105757 +735.1050614105757 20 155.25000000000003 30 0.0 11 -633.1050614105757 +735.1050614105757 21 154.75 31 @@ -9799,13 +9529,13 @@ LINE 8 cut 10 -633.1050614105757 +735.1050614105757 20 154.75 30 0.0 11 -641.6050614105758 +743.6050614105757 21 154.75 31 @@ -9817,13 +9547,13 @@ LINE 8 cut 10 -641.6050614105758 +743.6050614105757 20 154.75 30 0.0 11 -641.6050614105758 +743.6050614105757 21 155.25000000000003 31 @@ -9835,13 +9565,13 @@ LINE 8 cut 10 -633.1050614105757 +735.1050614105757 20 203.00000000000003 30 0.0 11 -641.6050614105758 +743.6050614105757 21 203.00000000000003 31 @@ -9853,13 +9583,13 @@ LINE 8 cut 10 -641.6050614105758 +743.6050614105757 20 203.00000000000003 30 0.0 11 -641.6050614105758 +743.6050614105757 21 203.50000000000003 31 @@ -9871,13 +9601,13 @@ LINE 8 cut 10 -641.6050614105758 +743.6050614105757 20 203.50000000000003 30 0.0 11 -633.1050614105757 +735.1050614105757 21 203.50000000000003 31 @@ -9889,13 +9619,13 @@ LINE 8 cut 10 -633.1050614105757 +735.1050614105757 20 203.50000000000003 30 0.0 11 -633.1050614105757 +735.1050614105757 21 203.00000000000003 31 @@ -9907,13 +9637,13 @@ LINE 8 cut 10 -664.3550614105758 +766.3550614105757 20 198.50000000000003 30 0.0 11 -664.3550614105758 +766.3550614105757 21 185.50000000000003 31 @@ -9925,13 +9655,13 @@ LINE 8 cut 10 -664.3550614105758 +766.3550614105757 20 185.50000000000003 30 0.0 11 -694.3550614105757 +796.3550614105758 21 185.50000000000003 31 @@ -9943,13 +9673,13 @@ LINE 8 cut 10 -694.3550614105757 +796.3550614105758 20 185.50000000000003 30 0.0 11 -694.3550614105757 +796.3550614105758 21 198.50000000000003 31 @@ -9961,13 +9691,13 @@ LINE 8 cut 10 -694.3550614105757 +796.3550614105758 20 198.50000000000003 30 0.0 11 -664.3550614105758 +766.3550614105757 21 198.50000000000003 31 @@ -9979,13 +9709,13 @@ LINE 8 cut 10 -671.4232432287575 +773.4232432287574 20 153.00000000000003 30 0.0 11 -660.0141523196667 +762.0141523196667 21 153.00000000000003 31 @@ -9997,13 +9727,13 @@ LINE 8 cut 10 -660.0141523196667 +762.0141523196667 20 153.00000000000003 30 0.0 11 -660.0141523196667 +762.0141523196667 21 152.5 31 @@ -10015,13 +9745,13 @@ LINE 8 cut 10 -660.0141523196667 +762.0141523196667 20 152.5 30 0.0 11 -671.4232432287575 +773.4232432287574 21 152.5 31 @@ -10033,13 +9763,13 @@ LINE 8 cut 10 -671.4232432287575 +773.4232432287574 20 152.5 30 0.0 11 -671.4232432287575 +773.4232432287574 21 153.00000000000003 31 @@ -10051,13 +9781,13 @@ LINE 8 cut 10 -698.6959705014849 +800.6959705014848 20 153.00000000000003 30 0.0 11 -687.2868795923938 +789.2868795923939 21 153.00000000000003 31 @@ -10069,13 +9799,13 @@ LINE 8 cut 10 -687.2868795923938 +789.2868795923939 20 153.00000000000003 30 0.0 11 -687.2868795923938 +789.2868795923939 21 152.5 31 @@ -10087,13 +9817,13 @@ LINE 8 cut 10 -687.2868795923938 +789.2868795923939 20 152.5 30 0.0 11 -698.6959705014849 +800.6959705014848 21 152.5 31 @@ -10105,13 +9835,13 @@ LINE 8 cut 10 -698.6959705014849 +800.6959705014848 20 152.5 30 0.0 11 -698.6959705014849 +800.6959705014848 21 153.00000000000003 31 @@ -10123,13 +9853,13 @@ LINE 8 cut 10 -701.6050614105758 +803.6050614105758 20 169.93181818181822 30 0.0 11 -701.6050614105758 +803.6050614105758 21 158.3409090909091 31 @@ -10141,13 +9871,13 @@ LINE 8 cut 10 -701.6050614105758 +803.6050614105758 20 158.3409090909091 30 0.0 11 -702.1050614105758 +804.1050614105758 21 158.3409090909091 31 @@ -10159,13 +9889,13 @@ LINE 8 cut 10 -702.1050614105758 +804.1050614105758 20 158.3409090909091 30 0.0 11 -702.1050614105758 +804.1050614105758 21 169.93181818181822 31 @@ -10177,13 +9907,13 @@ LINE 8 cut 10 -702.1050614105758 +804.1050614105758 20 169.93181818181822 30 0.0 11 -701.6050614105758 +803.6050614105758 21 169.93181818181822 31 @@ -10195,13 +9925,13 @@ LINE 8 cut 10 -701.6050614105758 +803.6050614105758 20 197.65909090909093 30 0.0 11 -701.6050614105758 +803.6050614105758 21 186.06818181818184 31 @@ -10213,13 +9943,13 @@ LINE 8 cut 10 -701.6050614105758 +803.6050614105758 20 186.06818181818184 30 0.0 11 -702.1050614105758 +804.1050614105758 21 186.06818181818184 31 @@ -10231,13 +9961,13 @@ LINE 8 cut 10 -702.1050614105758 +804.1050614105758 20 186.06818181818184 30 0.0 11 -702.1050614105758 +804.1050614105758 21 197.65909090909093 31 @@ -10249,13 +9979,13 @@ LINE 8 cut 10 -702.1050614105758 +804.1050614105758 20 197.65909090909093 30 0.0 11 -701.6050614105758 +803.6050614105758 21 197.65909090909093 31 @@ -10267,13 +9997,13 @@ LINE 8 cut 10 -541.8550614105758 +643.8550614105758 20 160.75000000000003 30 0.0 11 -541.8550614105758 +643.8550614105758 21 157.75000000000003 31 @@ -10285,13 +10015,13 @@ LINE 8 cut 10 -541.8550614105758 +643.8550614105758 20 157.75000000000003 30 0.0 11 -544.8550614105758 +646.8550614105757 21 157.75000000000003 31 @@ -10303,13 +10033,13 @@ LINE 8 cut 10 -544.8550614105758 +646.8550614105757 20 157.75000000000003 30 0.0 11 -544.8550614105758 +646.8550614105757 21 160.75000000000003 31 @@ -10321,13 +10051,13 @@ LINE 8 cut 10 -544.8550614105758 +646.8550614105757 20 160.75000000000003 30 0.0 11 -541.8550614105758 +643.8550614105758 21 160.75000000000003 31 @@ -10339,13 +10069,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 159.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 158.75000000000003 31 @@ -10357,13 +10087,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 158.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 158.75000000000003 31 @@ -10375,13 +10105,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 158.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 159.75000000000003 31 @@ -10393,13 +10123,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 159.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 159.75000000000003 31 @@ -10411,13 +10141,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 162.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 161.25 31 @@ -10429,13 +10159,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 161.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 161.25 31 @@ -10447,13 +10177,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 161.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 162.25000000000003 31 @@ -10465,13 +10195,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 162.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 162.25000000000003 31 @@ -10483,13 +10213,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 162.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 161.25 31 @@ -10501,13 +10231,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 161.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 161.25 31 @@ -10519,13 +10249,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 161.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 162.25000000000003 31 @@ -10537,13 +10267,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 162.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 162.25000000000003 31 @@ -10555,13 +10285,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 164.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 163.75 31 @@ -10573,13 +10303,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 163.75 30 0.0 11 -543.8550614105758 +645.8550614105758 21 163.75 31 @@ -10591,13 +10321,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 163.75 30 0.0 11 -543.8550614105758 +645.8550614105758 21 164.75000000000003 31 @@ -10609,13 +10339,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 164.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 164.75000000000003 31 @@ -10627,13 +10357,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 164.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 163.75 31 @@ -10645,13 +10375,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 163.75 30 0.0 11 -563.8550614105758 +665.8550614105757 21 163.75 31 @@ -10663,13 +10393,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 163.75 30 0.0 11 -563.8550614105758 +665.8550614105757 21 164.75000000000003 31 @@ -10681,13 +10411,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 164.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 164.75000000000003 31 @@ -10699,13 +10429,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 167.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 166.25 31 @@ -10717,13 +10447,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 166.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 166.25 31 @@ -10735,13 +10465,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 166.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 167.25000000000003 31 @@ -10753,13 +10483,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 167.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 167.25000000000003 31 @@ -10771,13 +10501,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 167.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 166.25 31 @@ -10789,13 +10519,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 166.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 166.25 31 @@ -10807,13 +10537,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 166.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 167.25000000000003 31 @@ -10825,13 +10555,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 167.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 167.25000000000003 31 @@ -10843,13 +10573,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 169.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 168.75000000000003 31 @@ -10861,13 +10591,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 168.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 168.75000000000003 31 @@ -10879,13 +10609,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 168.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 169.75000000000003 31 @@ -10897,13 +10627,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 169.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 169.75000000000003 31 @@ -10915,13 +10645,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 169.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 168.75000000000003 31 @@ -10933,13 +10663,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 168.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 168.75000000000003 31 @@ -10951,13 +10681,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 168.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 169.75000000000003 31 @@ -10969,13 +10699,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 169.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 169.75000000000003 31 @@ -10987,13 +10717,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 172.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 171.25000000000003 31 @@ -11005,13 +10735,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 171.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 171.25000000000003 31 @@ -11023,13 +10753,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 171.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 172.25000000000003 31 @@ -11041,13 +10771,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 172.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 172.25000000000003 31 @@ -11059,13 +10789,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 172.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 171.25000000000003 31 @@ -11077,13 +10807,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 171.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 171.25000000000003 31 @@ -11095,13 +10825,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 171.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 172.25000000000003 31 @@ -11113,13 +10843,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 172.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 172.25000000000003 31 @@ -11131,13 +10861,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 174.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 173.75000000000003 31 @@ -11149,13 +10879,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 173.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 173.75000000000003 31 @@ -11167,13 +10897,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 173.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 174.75000000000003 31 @@ -11185,13 +10915,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 174.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 174.75000000000003 31 @@ -11203,13 +10933,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 174.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 173.75000000000003 31 @@ -11221,13 +10951,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 173.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 173.75000000000003 31 @@ -11239,13 +10969,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 173.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 174.75000000000003 31 @@ -11257,13 +10987,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 174.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 174.75000000000003 31 @@ -11275,13 +11005,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 177.25 30 0.0 11 -542.8550614105758 +644.8550614105758 21 176.25000000000003 31 @@ -11293,13 +11023,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 176.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 176.25000000000003 31 @@ -11311,13 +11041,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 176.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 177.25 31 @@ -11329,13 +11059,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 177.25 30 0.0 11 -542.8550614105758 +644.8550614105758 21 177.25 31 @@ -11347,13 +11077,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 177.25 30 0.0 11 -562.8550614105758 +664.8550614105757 21 176.25000000000003 31 @@ -11365,13 +11095,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 176.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 176.25000000000003 31 @@ -11383,13 +11113,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 176.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 177.25 31 @@ -11401,13 +11131,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 177.25 30 0.0 11 -562.8550614105758 +664.8550614105757 21 177.25 31 @@ -11419,13 +11149,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 179.75 30 0.0 11 -542.8550614105758 +644.8550614105758 21 178.75000000000003 31 @@ -11437,13 +11167,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 178.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 178.75000000000003 31 @@ -11455,13 +11185,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 178.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 179.75 31 @@ -11473,13 +11203,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 179.75 30 0.0 11 -542.8550614105758 +644.8550614105758 21 179.75 31 @@ -11491,13 +11221,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 179.75 30 0.0 11 -562.8550614105758 +664.8550614105757 21 178.75000000000003 31 @@ -11509,13 +11239,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 178.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 178.75000000000003 31 @@ -11527,13 +11257,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 178.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 179.75 31 @@ -11545,13 +11275,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 179.75 30 0.0 11 -562.8550614105758 +664.8550614105757 21 179.75 31 @@ -11563,13 +11293,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 182.25 30 0.0 11 -542.8550614105758 +644.8550614105758 21 181.25000000000003 31 @@ -11581,13 +11311,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 181.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 181.25000000000003 31 @@ -11599,13 +11329,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 181.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 182.25 31 @@ -11617,13 +11347,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 182.25 30 0.0 11 -542.8550614105758 +644.8550614105758 21 182.25 31 @@ -11635,13 +11365,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 182.25 30 0.0 11 -562.8550614105758 +664.8550614105757 21 181.25000000000003 31 @@ -11653,13 +11383,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 181.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 181.25000000000003 31 @@ -11671,13 +11401,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 181.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 182.25 31 @@ -11689,13 +11419,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 182.25 30 0.0 11 -562.8550614105758 +664.8550614105757 21 182.25 31 @@ -11707,13 +11437,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 184.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 183.75000000000003 31 @@ -11725,13 +11455,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 183.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 183.75000000000003 31 @@ -11743,13 +11473,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 183.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 184.75000000000003 31 @@ -11761,13 +11491,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 184.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 184.75000000000003 31 @@ -11779,13 +11509,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 184.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 183.75000000000003 31 @@ -11797,13 +11527,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 183.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 183.75000000000003 31 @@ -11815,13 +11545,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 183.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 184.75000000000003 31 @@ -11833,13 +11563,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 184.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 184.75000000000003 31 @@ -11851,13 +11581,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 187.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 186.25000000000003 31 @@ -11869,13 +11599,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 186.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 186.25000000000003 31 @@ -11887,13 +11617,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 186.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 187.25000000000003 31 @@ -11905,13 +11635,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 187.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 187.25000000000003 31 @@ -11923,13 +11653,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 187.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 186.25000000000003 31 @@ -11941,13 +11671,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 186.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 186.25000000000003 31 @@ -11959,13 +11689,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 186.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 187.25000000000003 31 @@ -11977,13 +11707,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 187.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 187.25000000000003 31 @@ -11995,13 +11725,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 189.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 188.75 31 @@ -12013,13 +11743,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 188.75 30 0.0 11 -543.8550614105758 +645.8550614105758 21 188.75 31 @@ -12031,13 +11761,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 188.75 30 0.0 11 -543.8550614105758 +645.8550614105758 21 189.75000000000003 31 @@ -12049,13 +11779,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 189.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 189.75000000000003 31 @@ -12067,13 +11797,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 189.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 188.75 31 @@ -12085,13 +11815,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 188.75 30 0.0 11 -563.8550614105758 +665.8550614105757 21 188.75 31 @@ -12103,13 +11833,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 188.75 30 0.0 11 -563.8550614105758 +665.8550614105757 21 189.75000000000003 31 @@ -12121,13 +11851,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 189.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 189.75000000000003 31 @@ -12139,13 +11869,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 192.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 191.25 31 @@ -12157,13 +11887,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 191.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 191.25 31 @@ -12175,13 +11905,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 191.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 192.25000000000003 31 @@ -12193,13 +11923,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 192.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 192.25000000000003 31 @@ -12211,13 +11941,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 192.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 191.25 31 @@ -12229,13 +11959,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 191.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 191.25 31 @@ -12247,13 +11977,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 191.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 192.25000000000003 31 @@ -12265,13 +11995,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 192.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 192.25000000000003 31 @@ -12283,13 +12013,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 194.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 193.75000000000003 31 @@ -12301,13 +12031,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 193.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 193.75000000000003 31 @@ -12319,13 +12049,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 193.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 194.75000000000003 31 @@ -12337,13 +12067,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 194.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 194.75000000000003 31 @@ -12355,13 +12085,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 194.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 193.75000000000003 31 @@ -12373,13 +12103,13 @@ LINE 8 cut 10 -562.8550614105758 +664.8550614105757 20 193.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 193.75000000000003 31 @@ -12391,13 +12121,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 193.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 194.75000000000003 31 @@ -12409,13 +12139,13 @@ LINE 8 cut 10 -563.8550614105758 +665.8550614105757 20 194.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 194.75000000000003 31 @@ -12427,13 +12157,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 197.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 196.25000000000003 31 @@ -12445,13 +12175,13 @@ LINE 8 cut 10 -542.8550614105758 +644.8550614105758 20 196.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 196.25000000000003 31 @@ -12463,13 +12193,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 196.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 197.25000000000003 31 @@ -12481,13 +12211,13 @@ LINE 8 cut 10 -543.8550614105758 +645.8550614105758 20 197.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 197.25000000000003 31 @@ -12499,13 +12229,13 @@ LINE 8 cut 10 -561.8550614105758 +663.8550614105758 20 198.25000000000003 30 0.0 11 -561.8550614105758 +663.8550614105758 21 195.25000000000003 31 @@ -12517,13 +12247,13 @@ LINE 8 cut 10 -561.8550614105758 +663.8550614105758 20 195.25000000000003 30 0.0 11 -564.8550614105757 +666.8550614105757 21 195.25000000000003 31 @@ -12535,13 +12265,13 @@ LINE 8 cut 10 -564.8550614105757 +666.8550614105757 20 195.25000000000003 30 0.0 11 -564.8550614105757 +666.8550614105757 21 198.25000000000003 31 @@ -12553,13 +12283,13 @@ LINE 8 cut 10 -564.8550614105757 +666.8550614105757 20 198.25000000000003 30 0.0 11 -561.8550614105758 +663.8550614105758 21 198.25000000000003 31 @@ -12571,13 +12301,13 @@ LINE 8 cut 10 -557.6050614105758 +659.6050614105758 20 155.25000000000003 30 0.0 11 -549.1050614105758 +651.1050614105757 21 155.25000000000003 31 @@ -12589,13 +12319,13 @@ LINE 8 cut 10 -549.1050614105758 +651.1050614105757 20 155.25000000000003 30 0.0 11 -549.1050614105758 +651.1050614105757 21 154.75 31 @@ -12607,13 +12337,13 @@ LINE 8 cut 10 -549.1050614105758 +651.1050614105757 20 154.75 30 0.0 11 -557.6050614105758 +659.6050614105758 21 154.75 31 @@ -12625,13 +12355,13 @@ LINE 8 cut 10 -557.6050614105758 +659.6050614105758 20 154.75 30 0.0 11 -557.6050614105758 +659.6050614105758 21 155.25000000000003 31 @@ -12643,13 +12373,13 @@ LINE 8 cut 10 -549.1050614105758 +651.1050614105757 20 203.00000000000003 30 0.0 11 -557.6050614105758 +659.6050614105758 21 203.00000000000003 31 @@ -12661,13 +12391,13 @@ LINE 8 cut 10 -557.6050614105758 +659.6050614105758 20 203.00000000000003 30 0.0 11 -557.6050614105758 +659.6050614105758 21 203.50000000000003 31 @@ -12679,13 +12409,13 @@ LINE 8 cut 10 -557.6050614105758 +659.6050614105758 20 203.50000000000003 30 0.0 11 -549.1050614105758 +651.1050614105757 21 203.50000000000003 31 @@ -12697,13 +12427,13 @@ LINE 8 cut 10 -549.1050614105758 +651.1050614105757 20 203.50000000000003 30 0.0 11 -549.1050614105758 +651.1050614105757 21 203.00000000000003 31 @@ -12715,13 +12445,13 @@ LINE 8 cut 10 -533.8550614105758 +635.8550614105758 20 158.59090909090912 30 0.0 11 -538.8550614105758 +640.8550614105758 21 158.59090909090912 31 @@ -12733,13 +12463,13 @@ LINE 8 cut 10 -538.8550614105758 +640.8550614105758 20 158.59090909090912 30 0.0 11 -538.8550614105758 +640.8550614105758 21 169.68181818181822 31 @@ -12751,13 +12481,13 @@ LINE 8 cut 10 -538.8550614105758 +640.8550614105758 20 169.68181818181822 30 0.0 11 -533.8550614105758 +635.8550614105758 21 169.68181818181822 31 @@ -12769,13 +12499,13 @@ LINE 8 cut 10 -533.8550614105758 +635.8550614105758 20 186.31818181818184 30 0.0 11 -538.8550614105758 +640.8550614105758 21 186.31818181818184 31 @@ -12787,13 +12517,13 @@ LINE 8 cut 10 -538.8550614105758 +640.8550614105758 20 186.31818181818184 30 0.0 11 -538.8550614105758 +640.8550614105758 21 197.40909090909093 31 @@ -12805,13 +12535,13 @@ LINE 8 cut 10 -538.8550614105758 +640.8550614105758 20 197.40909090909093 30 0.0 11 -533.8550614105758 +635.8550614105758 21 197.40909090909093 31 @@ -12823,13 +12553,13 @@ LINE 8 cut 10 -559.1050614105758 +661.1050614105757 20 131.50000000000003 30 0.0 11 -562.6050614105757 +664.6050614105758 21 131.50000000000003 31 @@ -12841,13 +12571,13 @@ LINE 8 cut 10 -562.6050614105757 +664.6050614105758 20 131.50000000000003 30 0.0 11 -562.6050614105757 +664.6050614105758 21 139.50000000000003 31 @@ -12859,13 +12589,13 @@ LINE 8 cut 10 -562.6050614105757 +664.6050614105758 20 139.50000000000003 30 0.0 11 -559.1050614105758 +661.1050614105757 21 139.50000000000003 31 diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf index 382bdbd318bc40eb9fb9d2d379642a30dc286563..73be47c17958db9d012549b00a07c920e24bc451 100644 --- a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf +++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf @@ -943,13 +943,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 135.50000000000003 30 0.0 11 -194.02325267042647 +242.02325267042644 21 135.50000000000003 31 @@ -961,13 +961,49 @@ LINE 8 0 10 -255.02325267042647 +86.02325267042642 + 20 +135.50000000000003 + 30 +0.0 + 11 +86.02325267042642 + 21 +135.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.02325267042642 + 20 +135.50000000000003 + 30 +0.0 + 11 +86.02325267042642 + 21 +135.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +181.02325267042644 20 135.50000000000003 30 0.0 11 -255.02325267042647 +171.02325267042644 21 135.50000000000003 31 @@ -979,13 +1015,13 @@ LINE 8 0 10 -86.02325267042646 +242.02325267042644 20 135.50000000000003 30 0.0 11 -86.02325267042646 +242.02325267042644 21 135.50000000000003 31 @@ -997,13 +1033,13 @@ LINE 8 0 10 -194.02325267042647 +86.02325267042642 20 135.50000000000003 30 0.0 11 -255.02325267042647 +86.02325267042642 21 135.50000000000003 31 @@ -1015,13 +1051,13 @@ LINE 8 0 10 -86.02325267042646 +147.02325267042642 20 135.50000000000003 30 0.0 11 -86.02325267042646 +73.02325267042643 21 135.50000000000003 31 @@ -1033,13 +1069,13 @@ LINE 8 0 10 -255.02325267042647 +181.02325267042644 20 135.50000000000003 30 0.0 11 -255.02325267042647 +171.02325267042644 21 135.50000000000003 31 @@ -1051,13 +1087,13 @@ LINE 8 0 10 -160.02325267042647 +242.02325267042644 20 135.50000000000003 30 0.0 11 -86.02325267042646 +242.02325267042644 21 135.50000000000003 31 @@ -1069,13 +1105,13 @@ LINE 8 0 10 -194.02325267042647 +171.02325267042644 20 135.50000000000003 30 0.0 11 -184.02325267042647 +181.02325267042644 21 135.50000000000003 31 @@ -1087,13 +1123,13 @@ LINE 8 0 10 -255.02325267042647 +73.02325267042643 20 135.50000000000003 30 0.0 11 -255.02325267042647 +147.02325267042642 21 135.50000000000003 31 @@ -1105,13 +1141,13 @@ LINE 8 0 10 -86.02325267042646 +73.02325267042643 20 135.50000000000003 30 0.0 11 -86.02325267042646 +73.02325267042643 21 135.50000000000003 31 @@ -1123,13 +1159,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 135.50000000000003 30 0.0 11 -184.02325267042647 +171.02325267042644 21 101.50000000000001 31 @@ -1143,13 +1179,13 @@ DOTTED 8 0 10 -160.02325267042647 +147.02325267042642 20 101.50000000000001 30 0.0 11 -160.02325267042647 +147.02325267042642 21 135.50000000000003 31 @@ -1161,13 +1197,13 @@ LINE 8 0 10 -160.02325267042647 +147.02325267042642 20 65.5 30 0.0 11 -160.02325267042647 +147.02325267042642 21 101.50000000000001 31 @@ -1181,13 +1217,13 @@ DOTTED 8 0 10 -160.02325267042647 +147.02325267042642 20 65.5 30 0.0 11 -184.02325267042647 +171.02325267042644 21 65.5 31 @@ -1199,13 +1235,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 101.50000000000001 30 0.0 11 -184.02325267042647 +171.02325267042644 21 65.5 31 @@ -1217,13 +1253,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 65.5 30 0.0 11 -184.02325267042647 +171.02325267042644 21 20.5 31 @@ -1235,13 +1271,13 @@ LINE 8 0 10 -160.02325267042647 +147.02325267042642 20 20.5 30 0.0 11 -160.02325267042647 +147.02325267042642 21 65.5 31 @@ -1253,13 +1289,13 @@ LINE 8 0 10 -160.02325267042647 +147.02325267042642 20 15.500000000000004 30 0.0 11 -160.02325267042647 +147.02325267042642 21 20.5 31 @@ -1271,13 +1307,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 15.500000000000004 30 0.0 11 -160.02325267042647 +147.02325267042642 21 15.500000000000004 31 @@ -1289,13 +1325,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 20.5 30 0.0 11 -184.02325267042647 +171.02325267042644 21 15.500000000000004 31 @@ -1307,13 +1343,13 @@ LINE 8 0 10 -160.02325267042647 +147.02325267042642 20 101.50000000000001 30 0.0 11 -140.02325267042644 +127.02325267042643 21 101.50000000000001 31 @@ -1325,13 +1361,13 @@ LINE 8 0 10 -140.02325267042644 +127.02325267042643 20 135.50000000000003 30 0.0 11 -160.02325267042647 +147.02325267042642 21 135.50000000000003 31 @@ -1345,13 +1381,13 @@ DOTTED 8 0 10 -140.02325267042644 +127.02325267042643 20 101.50000000000001 30 0.0 11 -140.02325267042644 +127.02325267042643 21 135.50000000000003 31 @@ -1363,13 +1399,13 @@ LINE 8 0 10 -140.02325267042644 +127.02325267042643 20 101.50000000000001 30 0.0 11 -116.02325267042646 +103.02325267042642 21 101.50000000000001 31 @@ -1381,13 +1417,13 @@ LINE 8 0 10 -116.02325267042646 +103.02325267042642 20 135.50000000000003 30 0.0 11 -140.02325267042644 +127.02325267042643 21 135.50000000000003 31 @@ -1401,13 +1437,13 @@ DOTTED 8 0 10 -116.02325267042646 +103.02325267042642 20 101.50000000000001 30 0.0 11 -116.02325267042646 +103.02325267042642 21 135.50000000000003 31 @@ -1419,13 +1455,13 @@ LINE 8 0 10 -116.02325267042646 +103.02325267042642 20 101.50000000000001 30 0.0 11 -96.02325267042644 +83.02325267042643 21 101.50000000000001 31 @@ -1437,13 +1473,13 @@ LINE 8 0 10 -96.02325267042644 +83.02325267042643 20 135.50000000000003 30 0.0 11 -116.02325267042646 +103.02325267042642 21 135.50000000000003 31 @@ -1457,13 +1493,13 @@ DOTTED 8 0 10 -96.02325267042644 +83.02325267042643 20 135.50000000000003 30 0.0 11 -96.02325267042644 +83.02325267042643 21 101.50000000000001 31 @@ -1475,13 +1511,13 @@ LINE 8 0 10 -86.02325267042646 +73.02325267042643 20 135.50000000000003 30 0.0 11 -96.02325267042644 +83.02325267042643 21 135.50000000000003 31 @@ -1493,13 +1529,13 @@ LINE 8 0 10 -86.02325267042646 +73.02325267042643 20 101.50000000000001 30 0.0 11 -86.02325267042646 +73.02325267042643 21 135.50000000000003 31 @@ -1511,13 +1547,13 @@ LINE 8 0 10 -96.02325267042644 +83.02325267042643 20 101.50000000000001 30 0.0 11 -86.02325267042646 +73.02325267042643 21 101.50000000000001 31 @@ -1531,13 +1567,13 @@ DOTTED 8 0 10 -194.02325267042647 +181.02325267042644 20 99.36137800081471 30 0.0 11 -255.02325267042647 +242.02325267042644 21 99.36137800081471 31 @@ -1549,13 +1585,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 135.50000000000003 30 0.0 11 -255.02325267042647 +242.02325267042644 21 99.36137800081471 31 @@ -1567,13 +1603,13 @@ LINE 8 0 10 -194.02325267042647 +181.02325267042644 20 99.36137800081471 30 0.0 11 -194.02325267042647 +181.02325267042644 21 135.50000000000003 31 @@ -1587,13 +1623,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 75.36137800081471 30 0.0 11 -194.02325267042647 +181.02325267042644 21 75.36137800081471 31 @@ -1607,13 +1643,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 75.36137800081471 30 0.0 11 -255.02325267042647 +242.02325267042644 21 99.36137800081471 31 @@ -1625,13 +1661,13 @@ LINE 8 0 10 -194.02325267042647 +181.02325267042644 20 39.22275600162939 30 0.0 11 -194.02325267042647 +181.02325267042644 21 75.36137800081472 31 @@ -1643,13 +1679,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 75.36137800081472 30 0.0 11 -255.02325267042647 +242.02325267042644 21 39.22275600162939 31 @@ -1661,13 +1697,13 @@ LINE 8 0 10 -194.02325267042647 +181.02325267042644 20 29.222756001629396 30 0.0 11 -194.02325267042647 +181.02325267042644 21 39.22275600162939 31 @@ -1679,13 +1715,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 29.222756001629396 30 0.0 11 -194.02325267042647 +181.02325267042644 21 29.222756001629396 31 @@ -1697,13 +1733,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 39.22275600162939 30 0.0 11 -255.02325267042647 +242.02325267042644 21 29.222756001629396 31 @@ -1715,13 +1751,13 @@ LINE 8 0 10 -265.02325267042653 +252.02325267042647 20 75.36137800081471 30 0.0 11 -255.02325267042647 +242.02325267042644 21 75.36137800081471 31 @@ -1733,13 +1769,13 @@ LINE 8 0 10 -265.02325267042653 +252.02325267042647 20 99.36137800081471 30 0.0 11 -265.02325267042653 +252.02325267042647 21 75.36137800081471 31 @@ -1751,13 +1787,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 99.36137800081471 30 0.0 11 -265.02325267042653 +252.02325267042647 21 99.36137800081471 31 @@ -1769,13 +1805,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 99.36137800081471 30 0.0 11 -194.02325267042647 +181.02325267042644 21 99.36137800081471 31 @@ -1787,13 +1823,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 75.36137800081471 30 0.0 11 -184.02325267042647 +171.02325267042644 21 99.36137800081471 31 @@ -1805,13 +1841,13 @@ LINE 8 0 10 -194.02325267042647 +181.02325267042644 20 75.36137800081471 30 0.0 11 -184.02325267042647 +171.02325267042644 21 75.36137800081471 31 @@ -1825,13 +1861,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 205.50000000000003 30 0.0 11 -86.02325267042646 +86.02325267042642 21 205.50000000000003 31 @@ -1845,13 +1881,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 205.50000000000003 30 0.0 11 -255.02325267042647 +242.02325267042644 21 135.50000000000003 31 @@ -1865,13 +1901,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 135.50000000000003 30 0.0 11 -307.53762348858805 +294.53762348858805 21 135.50000000000003 31 @@ -1885,13 +1921,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 205.50000000000003 30 0.0 11 -307.53762348858805 +294.53762348858805 21 135.50000000000003 31 @@ -1903,13 +1939,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 117.99520972727949 30 0.0 11 -255.02325267042647 +242.02325267042644 21 135.50000000000003 31 @@ -1921,13 +1957,13 @@ LINE 8 0 10 -307.53762348858805 +294.53762348858805 20 117.99520972727949 30 0.0 11 -255.02325267042647 +242.02325267042644 21 117.99520972727949 31 @@ -1939,13 +1975,13 @@ LINE 8 0 10 -307.53762348858805 +294.53762348858805 20 135.50000000000003 30 0.0 11 -307.53762348858805 +294.53762348858805 21 117.99520972727949 31 @@ -1959,13 +1995,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 205.50000000000003 30 0.0 11 -322.2284003443256 +309.2284003443256 21 185.91765779766357 31 @@ -1977,13 +2013,13 @@ LINE 8 0 10 -322.2284003443256 +309.2284003443256 20 185.91765779766357 30 0.0 11 -307.53762348858805 +294.53762348858805 21 135.50000000000003 31 @@ -1995,13 +2031,13 @@ LINE 8 0 10 -336.91917720006325 +323.9191772000632 20 236.33531559532716 30 0.0 11 -322.2284003443256 +309.2284003443256 21 185.91765779766357 31 @@ -2013,13 +2049,13 @@ LINE 8 0 10 -341.0465053408527 +328.0465053408528 20 250.50000000000003 30 0.0 11 -336.91917720006325 +323.9191772000632 21 236.33531559532716 31 @@ -2033,13 +2069,13 @@ DOTTED 8 0 10 -341.0465053408527 +328.0465053408528 20 250.50000000000003 30 0.0 11 -255.02325267042647 +242.02325267042644 21 205.50000000000003 31 @@ -2053,13 +2089,13 @@ DOTTED 8 0 10 -255.0232526704265 +242.02325267042647 20 250.50000000000003 30 0.0 11 -255.02325267042647 +242.02325267042644 21 205.50000000000003 31 @@ -2073,13 +2109,13 @@ DOTTED 8 0 10 -255.02325267042653 +242.0232526704265 20 295.5 30 0.0 11 -255.0232526704265 +242.02325267042647 21 250.50000000000006 31 @@ -2093,13 +2129,13 @@ DOTTED 8 0 10 -341.0465053408528 +328.0465053408528 20 250.50000000000003 30 0.0 11 -255.02325267042653 +242.0232526704265 21 295.50000000000006 31 @@ -2113,13 +2149,13 @@ DOTTED 8 0 10 -322.22840034432573 +309.22840034432573 20 315.08234220233646 30 0.0 11 -255.0232526704265 +242.02325267042647 21 295.50000000000006 31 @@ -2131,13 +2167,13 @@ LINE 8 0 10 -336.9191772000633 +323.91917720006325 20 264.6646844046729 30 0.0 11 -341.0465053408527 +328.0465053408528 21 250.50000000000003 31 @@ -2149,13 +2185,13 @@ LINE 8 0 10 -322.22840034432573 +309.22840034432573 20 315.08234220233646 30 0.0 11 -336.9191772000633 +323.91917720006325 21 264.6646844046729 31 @@ -2167,13 +2203,13 @@ LINE 8 0 10 -307.53762348858817 +294.5376234885881 20 365.50000000000006 30 0.0 11 -322.22840034432573 +309.22840034432573 21 315.0823422023364 31 @@ -2187,13 +2223,13 @@ DOTTED 8 0 10 -307.53762348858817 +294.5376234885881 20 365.50000000000006 30 0.0 11 -255.02325267042653 +242.0232526704265 21 295.50000000000006 31 @@ -2207,13 +2243,13 @@ DOTTED 8 0 10 -255.0232526704266 +242.02325267042656 20 365.5000000000001 30 0.0 11 -255.0232526704265 +242.02325267042647 21 295.5 31 @@ -2227,107 +2263,113 @@ DOTTED 8 0 10 -307.53762348858817 +294.5376234885881 20 365.50000000000006 30 0.0 11 -255.0232526704266 +242.02325267042656 21 365.5000000000001 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -255.02325267042653 +86.02325267042647 20 -295.5 +365.5000000000002 30 0.0 11 -86.02325267042642 +242.02325267042656 21 -295.50000000000017 +365.5000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -194.02325267042656 +242.0232526704265 20 -365.50000000000017 +295.50000000000006 30 0.0 11 -255.0232526704266 +86.02325267042639 21 -365.5000000000001 +295.50000000000017 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -86.02325267042649 +86.0232526704264 20 -365.5000000000003 +295.50000000000017 30 0.0 11 86.02325267042649 21 -365.5000000000003 +365.5000000000002 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -255.0232526704266 +86.02325267042649 20 -365.5000000000001 +365.5000000000003 30 0.0 11 -255.0232526704266 +33.508881852264885 21 -365.5000000000001 +365.5000000000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -255.0232526704266 +86.0232526704264 20 -365.5000000000001 +295.5000000000002 30 0.0 11 -194.02325267042656 +33.508881852264885 21 -365.50000000000017 +365.5000000000003 31 0.0 0 @@ -2337,15 +2379,15 @@ LINE 8 0 10 -255.0232526704266 +86.0232526704265 20 -365.5000000000001 +383.00479027272075 30 0.0 11 -255.0232526704266 +86.02325267042649 21 -365.5000000000001 +365.5000000000003 31 0.0 0 @@ -2355,15 +2397,15 @@ LINE 8 0 10 -86.0232526704265 +33.5088818522649 20 -365.5000000000003 +383.00479027272087 30 0.0 11 86.0232526704265 21 -365.5000000000003 +383.00479027272075 31 0.0 0 @@ -2373,33 +2415,35 @@ LINE 8 0 10 -194.02325267042656 +33.508881852264885 20 -365.50000000000017 +365.5000000000003 30 0.0 11 -255.0232526704266 +33.5088818522649 21 -365.5000000000001 +383.00479027272087 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -184.02325267042656 +86.0232526704264 20 -365.50000000000017 +295.50000000000017 30 0.0 11 -194.02325267042656 +18.81810499652724 21 -365.50000000000017 +315.08234220233675 31 0.0 0 @@ -2409,15 +2453,15 @@ LINE 8 0 10 -86.02325267042649 +18.81810499652724 20 -365.5000000000003 +315.08234220233675 30 0.0 11 -160.02325267042656 +33.508881852264885 21 -365.50000000000017 +365.5000000000003 31 0.0 0 @@ -2427,15 +2471,15 @@ LINE 8 0 10 -86.02325267042649 +4.127328140789602 20 -365.5000000000003 +264.6646844046731 30 0.0 11 -86.02325267042649 +18.81810499652724 21 -365.5000000000003 +315.08234220233675 31 0.0 0 @@ -2445,33 +2489,35 @@ LINE 8 0 10 -255.0232526704266 +2.8421709430404014e-14 20 -365.5000000000001 +250.50000000000028 30 0.0 11 -255.0232526704266 +4.127328140789602 21 -365.5000000000001 +264.6646844046731 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -184.0232526704266 +2.8421709430404014e-14 20 -399.5000000000001 +250.50000000000028 30 0.0 11 -184.02325267042656 +86.02325267042642 21 -365.50000000000017 +295.50000000000017 31 0.0 0 @@ -2483,33 +2529,35 @@ DOTTED 8 0 10 -160.02325267042656 +86.02325267042637 20 -365.50000000000017 +250.50000000000017 30 0.0 11 -160.0232526704266 +86.02325267042642 21 -399.5000000000001 +295.50000000000017 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -184.02325267042661 +86.0232526704263 20 -435.50000000000017 +205.50000000000017 30 0.0 11 -184.0232526704266 +86.02325267042636 21 -399.5000000000001 +250.5000000000002 31 0.0 0 @@ -2521,33 +2569,35 @@ DOTTED 8 0 10 -184.02325267042661 +1.4210854715202007e-14 20 -435.50000000000017 +250.5000000000003 30 0.0 11 -160.0232526704266 +86.0232526704263 21 -435.50000000000017 +205.50000000000014 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -160.02325267042656 +18.818104996527044 20 -399.5000000000001 +185.91765779766385 30 0.0 11 -160.0232526704266 +86.02325267042629 21 -435.50000000000017 +205.50000000000014 31 0.0 0 @@ -2557,15 +2607,15 @@ LINE 8 0 10 -160.0232526704266 +4.127328140789545 20 -435.50000000000017 +236.33531559532744 30 0.0 11 -160.02325267042661 +0.0 21 -480.50000000000017 +250.5000000000003 31 0.0 0 @@ -2575,15 +2625,15 @@ LINE 8 0 10 -184.02325267042667 +18.818104996527044 20 -480.50000000000017 +185.91765779766385 30 0.0 11 -184.02325267042661 +4.127328140789545 21 -435.50000000000017 +236.33531559532744 31 0.0 0 @@ -2593,51 +2643,55 @@ LINE 8 0 10 -160.02325267042661 +33.50888185226453 20 -480.50000000000017 +135.50000000000023 30 0.0 11 -184.02325267042667 +18.818104996527044 21 -480.50000000000017 +185.91765779766385 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -160.02325267042656 +33.50888185226453 20 -365.50000000000017 +135.50000000000023 30 0.0 11 -140.0232526704265 +86.02325267042629 21 -365.50000000000017 +205.50000000000017 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -140.02325267042653 +86.02325267042616 20 -399.5000000000001 +135.5000000000001 30 0.0 11 -160.02325267042656 +86.02325267042632 21 -399.5000000000001 +205.50000000000017 31 0.0 0 @@ -2649,15 +2703,15 @@ DOTTED 8 0 10 -140.0232526704265 +33.508881852264544 20 -365.50000000000017 +135.50000000000023 30 0.0 11 -140.02325267042653 +86.02325267042616 21 -399.5000000000001 +135.5000000000001 31 0.0 0 @@ -2667,15 +2721,15 @@ LINE 8 0 10 -140.02325267042653 +33.50888185226451 20 -365.50000000000017 +117.9952097272797 30 0.0 11 -116.02325267042652 +33.50888185226454 21 -365.50000000000017 +135.50000000000023 31 0.0 0 @@ -2685,35 +2739,33 @@ LINE 8 0 10 -116.02325267042656 +86.02325267042612 20 -399.5000000000001 +117.9952097272796 30 0.0 11 -140.02325267042656 +33.50888185226451 21 -399.5000000000001 +117.9952097272797 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -116.02325267042652 +86.02325267042615 20 -365.50000000000017 +135.5000000000001 30 0.0 11 -116.02325267042656 +86.02325267042612 21 -399.5000000000001 +117.9952097272796 31 0.0 0 @@ -2723,15 +2775,15 @@ LINE 8 0 10 -116.02325267042652 +294.5376234885881 20 -365.50000000000017 +383.0047902727206 30 0.0 11 -96.02325267042652 +294.5376234885881 21 -365.50000000000017 +365.50000000000006 31 0.0 0 @@ -2741,35 +2793,33 @@ LINE 8 0 10 -96.02325267042654 +242.0232526704266 20 -399.5000000000001 +383.00479027272064 30 0.0 11 -116.02325267042654 +294.5376234885881 21 -399.5000000000001 +383.0047902727206 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -96.02325267042654 +242.02325267042656 20 -399.5000000000001 +365.5000000000001 30 0.0 11 -96.02325267042652 +242.0232526704266 21 -365.50000000000017 +383.00479027272064 31 0.0 0 @@ -2779,15 +2829,15 @@ LINE 8 0 10 -86.02325267042654 +108.4550708522446 20 -399.5000000000001 +143.25 30 0.0 11 -96.02325267042654 +96.86416176133552 21 -399.5000000000001 +143.25 31 0.0 0 @@ -2797,15 +2847,15 @@ LINE 8 0 10 -86.02325267042652 +96.86416176133552 20 -365.50000000000017 +143.25 30 0.0 11 -86.02325267042654 +96.86416176133552 21 -399.5000000000001 +142.75000000000003 31 0.0 0 @@ -2815,75 +2865,69 @@ LINE 8 0 10 -96.02325267042652 +96.86416176133552 20 -365.50000000000017 +142.75000000000003 30 0.0 11 -86.02325267042652 +108.4550708522446 21 -365.50000000000017 +142.75000000000003 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -86.0232526704264 +108.4550708522446 20 -295.50000000000017 +142.75000000000003 30 0.0 11 -86.02325267042649 +108.4550708522446 21 -365.5000000000002 +143.25 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -86.02325267042649 +136.18234357951735 20 -365.5000000000003 +143.25 30 0.0 11 -33.508881852264885 +124.59143448860826 21 -365.5000000000003 +143.25 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -86.0232526704264 +124.59143448860826 20 -295.5000000000002 +143.25 30 0.0 11 -33.508881852264885 +124.59143448860826 21 -365.5000000000003 +142.75000000000003 31 0.0 0 @@ -2893,15 +2937,15 @@ LINE 8 0 10 -86.0232526704265 +124.59143448860826 20 -383.00479027272075 +142.75000000000003 30 0.0 11 -86.02325267042649 +136.18234357951735 21 -365.5000000000003 +142.75000000000003 31 0.0 0 @@ -2911,15 +2955,15 @@ LINE 8 0 10 -33.5088818522649 +136.18234357951735 20 -383.00479027272087 +142.75000000000003 30 0.0 11 -86.0232526704265 +136.18234357951735 21 -383.00479027272075 +143.25 31 0.0 0 @@ -2929,339 +2973,15 @@ LINE 8 0 10 -33.508881852264885 - 20 -365.5000000000003 - 30 -0.0 - 11 -33.5088818522649 - 21 -383.00479027272087 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -86.0232526704264 - 20 -295.50000000000017 - 30 -0.0 - 11 -18.81810499652724 - 21 -315.08234220233675 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -18.81810499652724 - 20 -315.08234220233675 - 30 -0.0 - 11 -33.508881852264885 - 21 -365.5000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -4.127328140789602 - 20 -264.6646844046731 - 30 -0.0 - 11 -18.81810499652724 - 21 -315.08234220233675 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -2.8421709430404014e-14 - 20 -250.50000000000028 - 30 -0.0 - 11 -4.127328140789602 - 21 -264.6646844046731 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -2.8421709430404014e-14 - 20 -250.50000000000028 - 30 -0.0 - 11 -86.02325267042642 - 21 -295.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -86.02325267042637 - 20 -250.50000000000017 - 30 -0.0 - 11 -86.02325267042642 - 21 -295.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -86.0232526704263 - 20 -205.50000000000017 - 30 -0.0 - 11 -86.02325267042636 - 21 -250.5000000000002 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -1.4210854715202007e-14 - 20 -250.5000000000003 - 30 -0.0 - 11 -86.0232526704263 - 21 -205.50000000000014 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -18.818104996527044 - 20 -185.91765779766385 - 30 -0.0 - 11 -86.02325267042629 - 21 -205.50000000000014 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -4.127328140789545 +163.27325267042642 20 -236.33531559532744 - 30 -0.0 - 11 -0.0 - 21 -250.5000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -18.818104996527044 - 20 -185.91765779766385 - 30 -0.0 - 11 -4.127328140789545 - 21 -236.33531559532744 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -33.50888185226453 - 20 -135.50000000000023 - 30 -0.0 - 11 -18.818104996527044 - 21 -185.91765779766385 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -33.50888185226453 - 20 -135.50000000000023 - 30 -0.0 - 11 -86.02325267042629 - 21 -205.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -86.02325267042616 - 20 -135.5000000000001 - 30 -0.0 - 11 -86.02325267042632 - 21 -205.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -33.508881852264544 - 20 -135.50000000000023 - 30 -0.0 - 11 -86.02325267042616 - 21 -135.5000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -33.50888185226451 - 20 -117.9952097272797 - 30 -0.0 - 11 -33.50888185226454 - 21 -135.50000000000023 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -86.02325267042612 - 20 -117.9952097272796 +124.41666666666669 30 0.0 11 -33.50888185226451 +163.27325267042642 21 -117.9952097272797 +112.58333333333334 31 0.0 0 @@ -3271,15 +2991,15 @@ LINE 8 0 10 -86.02325267042615 +163.27325267042642 20 -135.5000000000001 +112.58333333333334 30 0.0 11 -86.02325267042612 +163.77325267042644 21 -117.9952097272796 +112.58333333333334 31 0.0 0 @@ -3289,15 +3009,15 @@ LINE 8 0 10 -307.5376234885882 +163.77325267042644 20 -383.0047902727206 +112.58333333333334 30 0.0 11 -307.53762348858817 +163.77325267042644 21 -365.50000000000006 +124.41666666666669 31 0.0 0 @@ -3307,15 +3027,15 @@ LINE 8 0 10 -255.02325267042661 +163.77325267042644 20 -383.00479027272064 +124.41666666666669 30 0.0 11 -307.5376234885882 +163.27325267042642 21 -383.0047902727206 +124.41666666666669 31 0.0 0 @@ -3325,15 +3045,15 @@ LINE 8 0 10 -255.0232526704266 +163.02325267042642 20 -365.5000000000001 +16.750000000000004 30 0.0 11 -255.02325267042661 +165.52325267042642 21 -383.00479027272064 +16.750000000000004 31 0.0 0 @@ -3343,15 +3063,15 @@ LINE 8 0 10 -232.5914344886083 +165.52325267042642 20 -127.75000000000001 +16.750000000000004 30 0.0 11 -244.18234357951738 +163.02325267042642 21 -127.75000000000001 +19.250000000000004 31 0.0 0 @@ -3361,15 +3081,15 @@ LINE 8 0 10 -244.18234357951738 +163.02325267042642 20 -127.75000000000001 +19.250000000000004 30 0.0 11 -244.18234357951738 +155.02325267042644 21 -128.25000000000003 +19.250000000000004 31 0.0 0 @@ -3379,15 +3099,15 @@ LINE 8 0 10 -244.18234357951738 +155.02325267042644 20 -128.25000000000003 +19.250000000000004 30 0.0 11 -232.5914344886083 +152.52325267042644 21 -128.25000000000003 +16.750000000000004 31 0.0 0 @@ -3397,15 +3117,15 @@ LINE 8 0 10 -232.5914344886083 +152.52325267042644 20 -128.25000000000003 +16.750000000000004 30 0.0 11 -232.5914344886083 +155.02325267042644 21 -127.75000000000001 +16.750000000000004 31 0.0 0 @@ -3415,15 +3135,15 @@ LINE 8 0 10 -204.86416176133557 +128.02325267042644 20 -127.75000000000001 +112.50000000000001 30 0.0 11 -216.45507085224466 +132.02325267042644 21 -127.75000000000001 +112.50000000000001 31 0.0 0 @@ -3433,15 +3153,15 @@ LINE 8 0 10 -216.45507085224466 +132.02325267042644 20 -127.75000000000001 +112.50000000000001 30 0.0 11 -216.45507085224466 +132.02325267042644 21 -128.25000000000003 +124.50000000000001 31 0.0 0 @@ -3451,15 +3171,15 @@ LINE 8 0 10 -216.45507085224466 +132.02325267042644 20 -128.25000000000003 +124.50000000000001 30 0.0 11 -204.86416176133557 +128.02325267042644 21 -128.25000000000003 +124.50000000000001 31 0.0 0 @@ -3469,15 +3189,15 @@ LINE 8 0 10 -204.86416176133557 +128.02325267042644 20 -128.25000000000003 +124.50000000000001 30 0.0 11 -204.86416176133557 +128.02325267042644 21 -127.75000000000001 +112.50000000000001 31 0.0 0 @@ -3487,15 +3207,15 @@ LINE 8 0 10 -176.27325267042647 +140.02325267042644 20 -124.41666666666669 +114.00000000000001 30 0.0 11 -176.27325267042647 +144.02325267042644 21 -112.58333333333334 +114.00000000000001 31 0.0 0 @@ -3505,15 +3225,15 @@ LINE 8 0 10 -176.27325267042647 +144.02325267042644 20 -112.58333333333334 +114.00000000000001 30 0.0 11 -176.77325267042644 +144.02325267042644 21 -112.58333333333334 +123.00000000000001 31 0.0 0 @@ -3523,15 +3243,15 @@ LINE 8 0 10 -176.77325267042644 +144.02325267042644 20 -112.58333333333334 +123.00000000000001 30 0.0 11 -176.77325267042644 +140.02325267042644 21 -124.41666666666669 +123.00000000000001 31 0.0 0 @@ -3541,15 +3261,15 @@ LINE 8 0 10 -176.77325267042644 +140.02325267042644 20 -124.41666666666669 +123.00000000000001 30 0.0 11 -176.27325267042647 +140.02325267042644 21 -124.41666666666669 +114.00000000000001 31 0.0 0 @@ -3559,15 +3279,15 @@ LINE 8 0 10 -176.02325267042647 +103.52325267042643 20 -16.750000000000004 +112.50000000000001 30 0.0 11 -178.52325267042647 +126.52325267042643 21 -16.750000000000004 +112.50000000000001 31 0.0 0 @@ -3577,15 +3297,15 @@ LINE 8 0 10 -178.52325267042647 +126.52325267042643 20 -16.750000000000004 +112.50000000000001 30 0.0 11 -176.02325267042647 +126.52325267042643 21 -19.250000000000004 +124.50000000000001 31 0.0 0 @@ -3595,15 +3315,15 @@ LINE 8 0 10 -176.02325267042647 +126.52325267042643 20 -19.250000000000004 +124.50000000000001 30 0.0 11 -168.02325267042644 +103.52325267042643 21 -19.250000000000004 +124.50000000000001 31 0.0 0 @@ -3613,15 +3333,15 @@ LINE 8 0 10 -168.02325267042644 +103.52325267042643 20 -19.250000000000004 +124.50000000000001 30 0.0 11 -165.52325267042644 +103.52325267042643 21 -16.750000000000004 +112.50000000000001 31 0.0 0 @@ -3631,15 +3351,15 @@ LINE 8 0 10 -165.52325267042644 +98.02325267042643 20 -16.750000000000004 +112.50000000000001 30 0.0 11 -168.02325267042644 +102.02325267042643 21 -16.750000000000004 +112.50000000000001 31 0.0 0 @@ -3649,15 +3369,15 @@ LINE 8 0 10 -141.02325267042647 +102.02325267042643 20 112.50000000000001 30 0.0 11 -145.02325267042644 +102.02325267042643 21 -112.50000000000001 +124.50000000000001 31 0.0 0 @@ -3667,13 +3387,13 @@ LINE 8 0 10 -145.02325267042644 +102.02325267042643 20 -112.50000000000001 +124.50000000000001 30 0.0 11 -145.02325267042644 +98.02325267042643 21 124.50000000000001 31 @@ -3685,15 +3405,15 @@ LINE 8 0 10 -145.02325267042644 +98.02325267042643 20 124.50000000000001 30 0.0 11 -141.02325267042647 +98.02325267042643 21 -124.50000000000001 +112.50000000000001 31 0.0 0 @@ -3703,15 +3423,15 @@ LINE 8 0 10 -141.02325267042647 +75.52325267042642 20 -124.50000000000001 +112.83333333333336 30 0.0 11 -141.02325267042647 +80.52325267042643 21 -112.50000000000001 +112.83333333333336 31 0.0 0 @@ -3721,15 +3441,15 @@ LINE 8 0 10 -153.02325267042647 +80.52325267042643 20 -114.00000000000001 +112.83333333333336 30 0.0 11 -157.02325267042647 +80.52325267042643 21 -114.00000000000001 +124.16666666666669 31 0.0 0 @@ -3739,15 +3459,15 @@ LINE 8 0 10 -157.02325267042647 +80.52325267042643 20 -114.00000000000001 +124.16666666666669 30 0.0 11 -157.02325267042647 +75.52325267042642 21 -123.00000000000001 +124.16666666666669 31 0.0 0 @@ -3757,15 +3477,15 @@ LINE 8 0 10 -157.02325267042647 +199.02325267042644 20 -123.00000000000001 +80.86137800081471 30 0.0 11 -153.02325267042647 +210.02325267042644 21 -123.00000000000001 +80.86137800081471 31 0.0 0 @@ -3775,15 +3495,15 @@ LINE 8 0 10 -153.02325267042647 +210.02325267042644 20 -123.00000000000001 +80.86137800081471 30 0.0 11 -153.02325267042647 +210.02325267042644 21 -114.00000000000001 +93.86137800081471 31 0.0 0 @@ -3793,15 +3513,15 @@ LINE 8 0 10 -116.52325267042646 +210.02325267042644 20 -112.50000000000001 +93.86137800081471 30 0.0 11 -139.52325267042647 +199.02325267042644 21 -112.50000000000001 +93.86137800081471 31 0.0 0 @@ -3811,15 +3531,15 @@ LINE 8 0 10 -139.52325267042647 +199.02325267042644 20 -112.50000000000001 +93.86137800081471 30 0.0 11 -139.52325267042647 +199.02325267042644 21 -124.50000000000001 +80.86137800081471 31 0.0 0 @@ -3829,15 +3549,15 @@ LINE 8 0 10 -139.52325267042647 +230.52325267042644 20 -124.50000000000001 +82.36137800081471 30 0.0 11 -116.52325267042646 +236.52325267042644 21 -124.50000000000001 +82.36137800081471 31 0.0 0 @@ -3847,15 +3567,15 @@ LINE 8 0 10 -116.52325267042646 +236.52325267042644 20 -124.50000000000001 +82.36137800081471 30 0.0 11 -116.52325267042646 +236.52325267042644 21 -112.50000000000001 +92.36137800081471 31 0.0 0 @@ -3865,15 +3585,15 @@ LINE 8 0 10 -111.02325267042646 +236.52325267042644 20 -112.50000000000001 +92.36137800081471 30 0.0 11 -115.02325267042646 +230.52325267042644 21 -112.50000000000001 +92.36137800081471 31 0.0 0 @@ -3883,15 +3603,15 @@ LINE 8 0 10 -115.02325267042646 +230.52325267042644 20 -112.50000000000001 +92.36137800081471 30 0.0 11 -115.02325267042646 +230.52325267042644 21 -124.50000000000001 +82.36137800081471 31 0.0 0 @@ -3901,15 +3621,15 @@ LINE 8 0 10 -115.02325267042646 +230.93234357951735 20 -124.50000000000001 +31.722756001629396 30 0.0 11 -111.02325267042646 +230.93234357951735 21 -124.50000000000001 +36.7227560016294 31 0.0 0 @@ -3919,15 +3639,15 @@ LINE 8 0 10 -111.02325267042646 +230.93234357951735 20 -124.50000000000001 +36.7227560016294 30 0.0 11 -111.02325267042646 +219.84143448860826 21 -112.50000000000001 +36.7227560016294 31 0.0 0 @@ -3937,15 +3657,15 @@ LINE 8 0 10 -88.52325267042646 +219.84143448860826 20 -112.83333333333336 +36.7227560016294 30 0.0 11 -93.52325267042646 +219.84143448860826 21 -112.83333333333336 +31.722756001629396 31 0.0 0 @@ -3955,15 +3675,15 @@ LINE 8 0 10 -93.52325267042646 +203.20507085224463 20 -112.83333333333336 +31.722756001629396 30 0.0 11 -93.52325267042646 +203.20507085224463 21 -124.16666666666669 +36.7227560016294 31 0.0 0 @@ -3973,15 +3693,15 @@ LINE 8 0 10 -93.52325267042646 +203.20507085224463 20 -124.16666666666669 +36.7227560016294 30 0.0 11 -88.52325267042646 +192.11416176133554 21 -124.16666666666669 +36.7227560016294 31 0.0 0 @@ -3991,15 +3711,15 @@ LINE 8 0 10 -212.02325267042647 +192.11416176133554 20 -80.86137800081471 +36.7227560016294 30 0.0 11 -223.02325267042647 +192.11416176133554 21 -80.86137800081471 +31.722756001629396 31 0.0 0 @@ -4009,15 +3729,15 @@ LINE 8 0 10 -223.02325267042647 +249.52325267042644 20 -80.86137800081471 +91.36137800081471 30 0.0 11 -223.02325267042647 +244.52325267042644 21 -93.86137800081471 +91.36137800081471 31 0.0 0 @@ -4027,15 +3747,15 @@ LINE 8 0 10 -223.02325267042647 +244.52325267042644 20 -93.86137800081471 +91.36137800081471 30 0.0 11 -212.02325267042647 +244.52325267042644 21 -93.86137800081471 +83.36137800081471 31 0.0 0 @@ -4045,15 +3765,15 @@ LINE 8 0 10 -212.02325267042647 +244.52325267042644 20 -93.86137800081471 +83.36137800081471 30 0.0 11 -212.02325267042647 +249.52325267042644 21 -80.86137800081471 +83.36137800081471 31 0.0 0 @@ -4063,15 +3783,15 @@ LINE 8 0 10 -243.52325267042647 +173.52325267042644 20 -82.36137800081471 +83.36137800081471 30 0.0 11 -249.52325267042647 +178.52325267042644 21 -82.36137800081471 +83.36137800081471 31 0.0 0 @@ -4081,15 +3801,15 @@ LINE 8 0 10 -249.52325267042647 +178.52325267042644 20 -82.36137800081471 +83.36137800081471 30 0.0 11 -249.52325267042647 +178.52325267042644 21 -92.36137800081471 +91.36137800081471 31 0.0 0 @@ -4099,15 +3819,15 @@ LINE 8 0 10 -249.52325267042647 +178.52325267042644 20 -92.36137800081471 +91.36137800081471 30 0.0 11 -243.52325267042647 +173.52325267042644 21 -92.36137800081471 +91.36137800081471 31 0.0 0 @@ -4117,15 +3837,15 @@ LINE 8 0 10 -243.52325267042647 +277.03283321586747 20 -92.36137800081471 +122.37140729545962 30 0.0 11 -243.52325267042647 +277.03283321586747 21 -82.36137800081471 +131.12380243181985 31 0.0 0 @@ -4135,15 +3855,15 @@ LINE 8 0 10 -243.93234357951738 +277.03283321586747 20 -31.722756001629396 +131.12380243181985 30 0.0 11 -243.93234357951738 +259.52804294314694 21 -36.7227560016294 +131.12380243181988 31 0.0 0 @@ -4153,15 +3873,15 @@ LINE 8 0 10 -243.93234357951738 +259.52804294314694 20 -36.7227560016294 +131.12380243181988 30 0.0 11 -232.8414344886083 +259.52804294314694 21 -36.7227560016294 +122.37140729545962 31 0.0 0 @@ -4171,15 +3891,15 @@ LINE 8 0 10 -232.8414344886083 +306.2477556839554 20 -36.7227560016294 +223.5120791976936 30 0.0 11 -232.8414344886083 +301.21095619250235 21 -31.722756001629396 +206.22615649603978 31 0.0 0 @@ -4189,15 +3909,15 @@ LINE 8 0 10 -216.20507085224466 +301.21095619250235 20 -31.722756001629396 +206.22615649603978 30 0.0 11 -216.20507085224466 +301.6909929616017 21 -36.7227560016294 +206.08628262316594 31 0.0 0 @@ -4207,15 +3927,15 @@ LINE 8 0 10 -216.20507085224466 +301.6909929616017 20 -36.7227560016294 +206.08628262316594 30 0.0 11 -205.11416176133554 +306.7277924530547 21 -36.7227560016294 +223.37220532481973 31 0.0 0 @@ -4225,15 +3945,15 @@ LINE 8 0 10 -205.11416176133554 +306.7277924530547 20 -36.7227560016294 +223.37220532481973 30 0.0 11 -205.11416176133554 +306.2477556839554 21 -31.722756001629396 +223.5120791976936 31 0.0 0 @@ -4243,15 +3963,15 @@ LINE 8 0 10 -262.52325267042653 +301.2109561925024 20 -91.36137800081471 +294.77384350396034 30 0.0 11 -257.52325267042653 +306.2477556839554 21 -91.36137800081471 +277.4879208023065 31 0.0 0 @@ -4261,15 +3981,15 @@ LINE 8 0 10 -257.52325267042653 +306.2477556839554 20 -91.36137800081471 +277.4879208023065 30 0.0 11 -257.52325267042653 +306.72779245305475 21 -83.36137800081471 +277.6277946751803 31 0.0 0 @@ -4279,15 +3999,15 @@ LINE 8 0 10 -257.52325267042653 +306.72779245305475 20 -83.36137800081471 +277.6277946751803 30 0.0 11 -262.52325267042653 +301.6909929616017 21 -83.36137800081471 +294.91371737683414 31 0.0 0 @@ -4297,15 +4017,15 @@ LINE 8 0 10 -186.52325267042647 +301.6909929616017 20 -83.36137800081471 +294.91371737683414 30 0.0 11 -191.52325267042647 +301.2109561925024 21 -83.36137800081471 +294.77384350396034 31 0.0 0 @@ -4315,15 +4035,15 @@ LINE 8 0 10 -191.52325267042647 +51.01367212498543 20 -83.36137800081471 +378.6285927045407 30 0.0 11 -191.52325267042647 +51.013672124985426 21 -91.36137800081471 +369.87619756818043 31 0.0 0 @@ -4333,15 +4053,15 @@ LINE 8 0 10 -191.52325267042647 +51.013672124985426 20 -91.36137800081471 +369.87619756818043 30 0.0 11 -186.52325267042647 +68.51846239770595 21 -91.36137800081471 +369.87619756818043 31 0.0 0 @@ -4351,15 +4071,15 @@ LINE 8 0 10 -290.0328332158675 +68.51846239770595 20 -122.37140729545962 +369.87619756818043 30 0.0 11 -290.0328332158675 +68.51846239770595 21 -131.12380243181985 +378.6285927045407 31 0.0 0 @@ -4369,15 +4089,15 @@ LINE 8 0 10 -290.0328332158675 +21.798749656897446 20 -131.12380243181985 +277.4879208023067 30 0.0 11 -272.52804294314694 +26.83554914835048 21 -131.12380243181988 +294.7738435039605 31 0.0 0 @@ -4387,15 +4107,15 @@ LINE 8 0 10 -272.52804294314694 +26.83554914835048 20 -131.12380243181988 +294.7738435039605 30 0.0 11 -272.52804294314694 +26.3555123792512 21 -122.37140729545962 +294.9137173768343 31 0.0 0 @@ -4405,15 +4125,15 @@ LINE 8 0 10 -319.2477556839554 +26.3555123792512 20 -223.5120791976936 +294.9137173768343 30 0.0 11 -314.2109561925024 +21.318712887798156 21 -206.22615649603978 +277.62779467518055 31 0.0 0 @@ -4423,15 +4143,15 @@ LINE 8 0 10 -314.2109561925024 +21.318712887798156 20 -206.22615649603978 +277.62779467518055 30 0.0 11 -314.69099296160164 +21.798749656897446 21 -206.08628262316594 +277.4879208023067 31 0.0 0 @@ -4441,15 +4161,15 @@ LINE 8 0 10 -314.69099296160164 +26.835549148350342 20 -206.08628262316594 +206.22615649604003 30 0.0 11 -319.72779245305475 +21.798749656897346 21 -223.37220532481973 +223.51207919769385 31 0.0 0 @@ -4459,15 +4179,15 @@ LINE 8 0 10 -319.72779245305475 +21.798749656897346 20 -223.37220532481973 +223.51207919769385 30 0.0 11 -319.2477556839554 +21.31871288779806 21 -223.5120791976936 +223.37220532482002 31 0.0 0 @@ -4477,15 +4197,15 @@ LINE 8 0 10 -314.21095619250247 +21.31871288779806 20 -294.77384350396034 +223.37220532482002 30 0.0 11 -319.24775568395546 +26.355512379251053 21 -277.4879208023065 +206.08628262316617 31 0.0 0 @@ -4495,15 +4215,15 @@ LINE 8 0 10 -319.24775568395546 +26.355512379251053 20 -277.4879208023065 +206.08628262316617 30 0.0 11 -319.72779245305475 +26.835549148350342 21 -277.6277946751803 +206.22615649604003 31 0.0 0 @@ -4513,15 +4233,15 @@ LINE 8 0 10 -319.72779245305475 +68.51846239770559 20 -277.6277946751803 +122.37140729545976 30 0.0 11 -314.69099296160164 +68.51846239770562 21 -294.91371737683414 +131.12380243182005 31 0.0 0 @@ -4531,15 +4251,15 @@ LINE 8 0 10 -314.69099296160164 +68.51846239770562 20 -294.91371737683414 +131.12380243182005 30 0.0 11 -314.21095619250247 +51.01367212498507 21 -294.77384350396034 +131.12380243182008 31 0.0 0 @@ -4549,15 +4269,15 @@ LINE 8 0 10 -216.45507085224477 +51.01367212498507 20 -373.25000000000017 +131.12380243182008 30 0.0 11 -204.86416176133565 +51.01367212498506 21 -373.25000000000017 +122.3714072954598 31 0.0 0 @@ -4567,15 +4287,15 @@ LINE 8 0 10 -204.86416176133565 +259.52804294314706 20 -373.25000000000017 +378.6285927045405 30 0.0 11 -204.86416176133565 +259.52804294314706 21 -372.7500000000001 +369.87619756818015 31 0.0 0 @@ -4585,15 +4305,15 @@ LINE 8 0 10 -204.86416176133565 +259.52804294314706 20 -372.7500000000001 +369.87619756818015 30 0.0 11 -216.45507085224477 +277.0328332158676 21 -372.7500000000001 +369.87619756818015 31 0.0 0 @@ -4603,15 +4323,15 @@ LINE 8 0 10 -216.45507085224477 +277.0328332158676 20 -372.7500000000001 +369.87619756818015 30 0.0 11 -216.45507085224477 +277.0328332158676 21 -373.25000000000017 +378.6285927045405 31 0.0 0 @@ -4621,15 +4341,15 @@ LINE 8 0 10 -244.1823435795175 +488.3550614105757 20 -373.25000000000006 +105.00000000000001 30 0.0 11 -232.5914344886084 +426.7007833757142 21 -373.25000000000017 +105.00000000000001 31 0.0 0 @@ -4639,33 +4359,35 @@ LINE 8 0 10 -232.5914344886084 +426.7007833757142 20 -373.25000000000017 +166.0 30 0.0 11 -232.5914344886084 +488.3550614105757 21 -372.7500000000001 +166.0 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -232.5914344886084 +426.7007833757142 20 -372.7500000000001 +166.0 30 0.0 11 -244.1823435795175 +426.7007833757142 21 -372.75000000000006 +105.00000000000001 31 0.0 0 @@ -4675,15 +4397,15 @@ LINE 8 0 10 -244.1823435795175 +498.3550614105757 20 -372.75000000000006 +105.00000000000001 30 0.0 11 -244.1823435795175 +488.3550614105757 21 -373.25000000000006 +105.00000000000001 31 0.0 0 @@ -4693,15 +4415,15 @@ LINE 8 0 10 -232.5914344886084 +498.3550614105757 20 -357.75000000000017 +166.0 30 0.0 11 -244.1823435795175 +498.3550614105757 21 -357.7500000000001 +105.00000000000001 31 0.0 0 @@ -4711,15 +4433,15 @@ LINE 8 0 10 -244.1823435795175 +488.3550614105757 20 -357.7500000000001 +166.0 30 0.0 11 -244.1823435795175 +498.3550614105757 21 -358.2500000000001 +166.0 31 0.0 0 @@ -4729,51 +4451,55 @@ LINE 8 0 10 -244.1823435795175 +399.7007833757142 20 -358.2500000000001 +166.0 30 0.0 11 -232.5914344886084 +426.7007833757142 21 -358.25000000000017 +166.0 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -232.5914344886084 +399.7007833757142 20 -358.25000000000017 +105.00000000000001 30 0.0 11 -232.5914344886084 +399.7007833757142 21 -357.75000000000017 +166.0 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -204.86416176133562 +426.7007833757142 20 -357.75000000000017 +105.00000000000001 30 0.0 11 -216.45507085224475 +399.7007833757142 21 -357.75000000000017 +105.00000000000001 31 0.0 0 @@ -4783,15 +4509,15 @@ LINE 8 0 10 -216.45507085224475 +338.0465053408528 20 -357.75000000000017 +166.0 30 0.0 11 -216.45507085224475 +399.7007833757142 21 -358.25000000000017 +166.0 31 0.0 0 @@ -4801,15 +4527,15 @@ LINE 8 0 10 -216.45507085224475 +338.0465053408528 20 -358.25000000000017 +105.00000000000001 30 0.0 11 -204.86416176133562 +338.0465053408528 21 -358.25000000000017 +166.0 31 0.0 0 @@ -4819,15 +4545,15 @@ LINE 8 0 10 -204.86416176133562 +399.7007833757142 20 -358.25000000000017 +105.00000000000001 30 0.0 11 -204.86416176133562 +338.0465053408528 21 -357.75000000000017 +105.00000000000001 31 0.0 0 @@ -4837,15 +4563,15 @@ LINE 8 0 10 -176.27325267042653 +426.7007833757142 20 -388.4166666666668 +105.00000000000001 30 0.0 11 -176.27325267042653 +426.7007833757142 21 -376.5833333333335 +88.00000000000001 31 0.0 0 @@ -4855,33 +4581,35 @@ LINE 8 0 10 -176.27325267042653 +399.7007833757142 20 -376.5833333333335 +88.00000000000001 30 0.0 11 -176.77325267042653 +399.7007833757142 21 -376.5833333333335 +105.00000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -176.77325267042653 +426.7007833757142 20 -376.5833333333335 +88.00000000000001 30 0.0 11 -176.77325267042653 +399.7007833757142 21 -388.4166666666668 +88.00000000000001 31 0.0 0 @@ -4891,15 +4619,15 @@ LINE 8 0 10 -176.77325267042653 +426.7007833757142 20 -388.4166666666668 +88.00000000000001 30 0.0 11 -176.27325267042653 +426.7007833757142 21 -388.4166666666668 +27.000000000000004 31 0.0 0 @@ -4909,33 +4637,35 @@ LINE 8 0 10 -167.77325267042664 +399.7007833757142 20 -476.50000000000017 +27.000000000000004 30 0.0 11 -176.27325267042661 +399.7007833757142 21 -476.50000000000017 +88.00000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -176.27325267042661 +426.7007833757142 20 -476.50000000000017 +27.000000000000004 30 0.0 11 -176.27325267042661 +399.7007833757142 21 -477.00000000000017 +27.000000000000004 31 0.0 0 @@ -4945,15 +4675,15 @@ LINE 8 0 10 -176.27325267042661 +426.7007833757142 20 -477.00000000000017 +27.000000000000004 30 0.0 11 -167.77325267042664 +426.7007833757142 21 -477.00000000000017 +10.000000000000002 31 0.0 0 @@ -4963,33 +4693,35 @@ LINE 8 0 10 -167.77325267042664 +399.7007833757142 20 -477.00000000000017 +10.000000000000002 30 0.0 11 -167.77325267042664 +399.7007833757142 21 -476.50000000000017 +27.000000000000004 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -141.02325267042656 +399.7007833757142 20 -376.50000000000017 +10.000000000000002 30 0.0 11 -145.02325267042653 +426.7007833757142 21 -376.50000000000017 +10.000000000000002 31 0.0 0 @@ -4999,15 +4731,15 @@ LINE 8 0 10 -145.02325267042653 +399.7007833757142 20 -376.50000000000017 +0.0 30 0.0 11 -145.02325267042653 +399.7007833757142 21 -388.50000000000017 +10.000000000000002 31 0.0 0 @@ -5017,15 +4749,15 @@ LINE 8 0 10 -145.02325267042653 +426.7007833757142 20 -388.50000000000017 +0.0 30 0.0 11 -141.02325267042656 +399.7007833757142 21 -388.50000000000017 +0.0 31 0.0 0 @@ -5035,15 +4767,15 @@ LINE 8 0 10 -141.02325267042656 +426.7007833757142 20 -388.50000000000017 +10.000000000000002 30 0.0 11 -141.02325267042656 +426.7007833757142 21 -376.50000000000017 +0.0 31 0.0 0 @@ -5053,15 +4785,15 @@ LINE 8 0 10 -153.02325267042656 +495.8550614105757 20 -378.00000000000017 +154.90909090909093 30 0.0 11 -157.02325267042656 +490.8550614105757 21 -378.00000000000017 +154.90909090909093 31 0.0 0 @@ -5071,15 +4803,15 @@ LINE 8 0 10 -157.02325267042656 +490.8550614105757 20 -378.00000000000017 +154.90909090909093 30 0.0 11 -157.02325267042656 +490.8550614105757 21 -387.00000000000017 +143.8181818181818 31 0.0 0 @@ -5089,15 +4821,15 @@ LINE 8 0 10 -157.02325267042656 +490.8550614105757 20 -387.00000000000017 +143.8181818181818 30 0.0 11 -153.02325267042656 +495.8550614105757 21 -387.00000000000017 +143.8181818181818 31 0.0 0 @@ -5107,15 +4839,15 @@ LINE 8 0 10 -153.02325267042656 +495.8550614105757 20 -387.00000000000017 +127.1818181818182 30 0.0 11 -153.02325267042656 +490.8550614105757 21 -378.00000000000017 +127.1818181818182 31 0.0 0 @@ -5125,15 +4857,15 @@ LINE 8 0 10 -116.52325267042653 +490.8550614105757 20 -376.50000000000017 +127.1818181818182 30 0.0 11 -139.52325267042656 +490.8550614105757 21 -376.50000000000017 +116.09090909090911 31 0.0 0 @@ -5143,15 +4875,15 @@ LINE 8 0 10 -139.52325267042656 +490.8550614105757 20 -376.50000000000017 +116.09090909090911 30 0.0 11 -139.52325267042656 +495.8550614105757 21 -388.50000000000017 +116.09090909090911 31 0.0 0 @@ -5161,15 +4893,15 @@ LINE 8 0 10 -139.52325267042656 +422.2007833757142 20 -388.50000000000017 +102.50000000000001 30 0.0 11 -116.52325267042654 +422.2007833757142 21 -388.50000000000017 +108.50000000000001 31 0.0 0 @@ -5179,15 +4911,15 @@ LINE 8 0 10 -116.52325267042654 +422.2007833757142 20 -388.50000000000017 +108.50000000000001 30 0.0 11 -116.52325267042653 +404.2007833757142 21 -376.50000000000017 +108.50000000000001 31 0.0 0 @@ -5197,15 +4929,15 @@ LINE 8 0 10 -111.02325267042653 +404.2007833757142 20 -376.50000000000017 +108.50000000000001 30 0.0 11 -115.02325267042653 +404.2007833757142 21 -376.50000000000017 +102.50000000000001 31 0.0 0 @@ -5215,15 +4947,15 @@ LINE 8 0 10 -115.02325267042653 +404.2007833757142 20 -376.50000000000017 +102.50000000000001 30 0.0 11 -115.02325267042653 +422.2007833757142 21 -388.50000000000017 +102.50000000000001 31 0.0 0 @@ -5233,15 +4965,15 @@ LINE 8 0 10 -115.02325267042653 +408.4507833757142 20 -388.50000000000017 +158.25000000000003 30 0.0 11 -111.02325267042654 +417.9507833757142 21 -388.50000000000017 +158.25000000000003 31 0.0 0 @@ -5251,15 +4983,15 @@ LINE 8 0 10 -111.02325267042654 +417.9507833757142 20 -388.50000000000017 +158.25000000000003 30 0.0 11 -111.02325267042653 +417.9507833757142 21 -376.50000000000017 +158.75000000000003 31 0.0 0 @@ -5269,15 +5001,15 @@ LINE 8 0 10 -88.52325267042652 +417.9507833757142 20 -376.8333333333335 +158.75000000000003 30 0.0 11 -93.5232526704265 +408.4507833757142 21 -376.8333333333335 +158.75000000000003 31 0.0 0 @@ -5287,15 +5019,15 @@ LINE 8 0 10 -93.5232526704265 +408.4507833757142 20 -376.8333333333335 +158.75000000000003 30 0.0 11 -93.52325267042652 +408.4507833757142 21 -388.16666666666686 +158.25000000000003 31 0.0 0 @@ -5305,15 +5037,15 @@ LINE 8 0 10 -93.52325267042652 +417.7007833757142 20 -388.16666666666686 +2.5000000000000004 30 0.0 11 -88.52325267042653 +417.7007833757142 21 -388.16666666666686 +7.500000000000001 31 0.0 0 @@ -5323,15 +5055,15 @@ LINE 8 0 10 -51.01367212498543 +417.7007833757142 20 -378.6285927045407 +7.500000000000001 30 0.0 11 -51.013672124985426 +408.7007833757142 21 -369.87619756818043 +7.500000000000001 31 0.0 0 @@ -5341,15 +5073,15 @@ LINE 8 0 10 -51.013672124985426 +408.7007833757142 20 -369.87619756818043 +7.500000000000001 30 0.0 11 -68.51846239770595 +408.7007833757142 21 -369.87619756818043 +2.5000000000000004 31 0.0 0 @@ -5359,33 +5091,35 @@ LINE 8 0 10 -68.51846239770595 +578.3550614105758 20 -369.87619756818043 +123.50000000000001 30 0.0 11 -68.51846239770595 +542.3550614105758 21 -378.6285927045407 +123.50000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -21.798749656897446 +578.3550614105758 20 -277.4879208023067 +123.50000000000001 30 0.0 11 -26.83554914835048 +578.3550614105758 21 -294.7738435039605 +147.5 31 0.0 0 @@ -5395,15 +5129,15 @@ LINE 8 0 10 -26.83554914835048 +542.3550614105758 20 -294.7738435039605 +147.5 30 0.0 11 -26.3555123792512 +578.3550614105758 21 -294.9137173768343 +147.5 31 0.0 0 @@ -5413,15 +5147,15 @@ LINE 8 0 10 -26.3555123792512 +578.3550614105758 20 -294.9137173768343 +147.5 30 0.0 11 -21.318712887798156 +623.3550614105758 21 -277.62779467518055 +147.5 31 0.0 0 @@ -5431,15 +5165,15 @@ LINE 8 0 10 -21.318712887798156 +623.3550614105758 20 -277.62779467518055 +123.50000000000001 30 0.0 11 -21.798749656897446 +578.3550614105758 21 -277.4879208023067 +123.50000000000001 31 0.0 0 @@ -5449,15 +5183,15 @@ LINE 8 0 10 -26.835549148350342 +623.3550614105758 20 -206.22615649604003 +147.5 30 0.0 11 -21.798749656897346 +623.3550614105758 21 -223.51207919769385 +123.50000000000001 31 0.0 0 @@ -5467,33 +5201,35 @@ LINE 8 0 10 -21.798749656897346 +542.3550614105758 20 -223.51207919769385 +123.50000000000001 30 0.0 11 -21.31871288779806 +508.35506141057573 21 -223.37220532482002 +123.50000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -21.31871288779806 +508.35506141057573 20 -223.37220532482002 +147.5 30 0.0 11 -26.355512379251053 +542.3550614105758 21 -206.08628262316617 +147.5 31 0.0 0 @@ -5503,15 +5239,15 @@ LINE 8 0 10 -26.355512379251053 +508.35506141057573 20 -206.08628262316617 +113.50000000000001 30 0.0 11 -26.835549148350342 +508.35506141057573 21 -206.22615649604003 +52.50000000000001 31 0.0 0 @@ -5521,15 +5257,15 @@ LINE 8 0 10 -68.51846239770559 +508.35506141057573 20 -122.37140729545976 +123.50000000000001 30 0.0 11 -68.51846239770562 +508.35506141057573 21 -131.12380243182005 +113.50000000000001 31 0.0 0 @@ -5539,15 +5275,15 @@ LINE 8 0 10 -68.51846239770562 +508.35506141057573 20 -131.12380243182005 +221.50000000000003 30 0.0 11 -51.01367212498507 +508.35506141057573 21 -131.12380243182008 +147.5 31 0.0 0 @@ -5557,15 +5293,15 @@ LINE 8 0 10 -51.01367212498507 +508.35506141057573 20 -131.12380243182008 +221.50000000000003 30 0.0 11 -51.01367212498506 +508.35506141057573 21 -122.3714072954598 +221.50000000000003 31 0.0 0 @@ -5575,15 +5311,15 @@ LINE 8 0 10 -272.52804294314706 +508.35506141057573 20 -378.6285927045405 +147.5 30 0.0 11 -272.52804294314706 +508.35506141057573 21 -369.87619756818015 +221.50000000000003 31 0.0 0 @@ -5593,15 +5329,15 @@ LINE 8 0 10 -272.52804294314706 +508.35506141057573 20 -369.87619756818015 +123.50000000000001 30 0.0 11 -290.03283321586764 +508.35506141057573 21 -369.87619756818015 +147.5 31 0.0 0 @@ -5611,15 +5347,15 @@ LINE 8 0 10 -290.03283321586764 +508.35506141057573 20 -369.87619756818015 +113.50000000000001 30 0.0 11 -290.03283321586764 +508.35506141057573 21 -378.6285927045405 +123.50000000000001 31 0.0 0 @@ -5629,15 +5365,15 @@ LINE 8 0 10 -511.3550614105758 +508.35506141057573 20 -105.00000000000001 +52.50000000000001 30 0.0 11 -449.7007833757143 +508.35506141057573 21 -105.00000000000001 +113.50000000000001 31 0.0 0 @@ -5647,35 +5383,33 @@ LINE 8 0 10 -449.7007833757143 +508.35506141057573 20 -166.0 +52.50000000000001 30 0.0 11 -511.3550614105758 +508.35506141057573 21 -166.0 +52.50000000000001 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -449.7007833757143 +508.35506141057573 20 -166.0 +147.5 30 0.0 11 -449.7007833757143 +508.35506141057573 21 -105.00000000000001 +167.50000000000003 31 0.0 0 @@ -5685,33 +5419,35 @@ LINE 8 0 10 -521.3550614105757 +542.3550614105758 20 -105.00000000000001 +167.50000000000003 30 0.0 11 -511.3550614105758 +542.3550614105758 21 -105.00000000000001 +147.5 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -521.3550614105757 +508.35506141057573 20 -166.0 +167.50000000000003 30 0.0 11 -521.3550614105757 +542.3550614105758 21 -105.00000000000001 +167.50000000000003 31 0.0 0 @@ -5721,15 +5457,15 @@ LINE 8 0 10 -511.3550614105758 +508.35506141057573 20 -166.0 +167.50000000000003 30 0.0 11 -521.3550614105757 +508.35506141057573 21 -166.0 +191.50000000000003 31 0.0 0 @@ -5739,15 +5475,15 @@ LINE 8 0 10 -422.7007833757143 +542.3550614105758 20 -166.0 +191.50000000000003 30 0.0 11 -449.7007833757143 +542.3550614105758 21 -166.0 +167.50000000000003 31 0.0 0 @@ -5759,35 +5495,33 @@ DOTTED 8 0 10 -422.7007833757143 +508.35506141057573 20 -105.00000000000001 +191.50000000000003 30 0.0 11 -422.7007833757143 +542.3550614105758 21 -166.0 +191.50000000000003 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -449.7007833757143 +508.35506141057573 20 -105.00000000000001 +191.50000000000003 30 0.0 11 -422.7007833757143 +508.35506141057573 21 -105.00000000000001 +211.5 31 0.0 0 @@ -5797,33 +5531,35 @@ LINE 8 0 10 -361.0465053408529 +542.3550614105758 20 -166.0 +211.5 30 0.0 11 -422.7007833757143 +542.3550614105758 21 -166.0 +191.50000000000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -422.7007833757143 +542.3550614105758 20 -105.00000000000001 +211.5 30 0.0 11 -361.0465053408529 +508.35506141057573 21 -105.00000000000001 +211.5 31 0.0 0 @@ -5833,15 +5569,15 @@ LINE 8 0 10 -351.0465053408529 +542.3550614105758 20 -166.0 +221.50000000000003 30 0.0 11 -361.0465053408529 +542.3550614105758 21 -166.0 +211.5 31 0.0 0 @@ -5851,15 +5587,15 @@ LINE 8 0 10 -351.0465053408529 +508.35506141057573 20 -105.00000000000001 +221.50000000000003 30 0.0 11 -351.0465053408529 +542.3550614105758 21 -166.0 +221.50000000000003 31 0.0 0 @@ -5869,15 +5605,15 @@ LINE 8 0 10 -361.0465053408529 +508.35506141057573 20 -105.00000000000001 +211.5 30 0.0 11 -351.0465053408529 +508.35506141057573 21 -105.00000000000001 +221.50000000000003 31 0.0 0 @@ -5887,15 +5623,15 @@ LINE 8 0 10 -449.7007833757143 +619.3550614105757 20 -105.00000000000001 +139.75000000000003 30 0.0 11 -449.7007833757143 +619.3550614105757 21 -88.00000000000001 +131.25 31 0.0 0 @@ -5905,35 +5641,33 @@ LINE 8 0 10 -422.7007833757143 +619.3550614105757 20 -88.00000000000001 +131.25 30 0.0 11 -422.7007833757143 +619.8550614105757 21 -105.00000000000001 +131.25 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -449.7007833757143 +619.8550614105757 20 -88.00000000000001 +131.25 30 0.0 11 -422.7007833757143 +619.8550614105757 21 -88.00000000000001 +139.75000000000003 31 0.0 0 @@ -5943,15 +5677,15 @@ LINE 8 0 10 -449.7007833757143 +619.8550614105757 20 -88.00000000000001 +139.75000000000003 30 0.0 11 -449.7007833757143 +619.3550614105757 21 -27.000000000000004 +139.75000000000003 31 0.0 0 @@ -5961,35 +5695,33 @@ LINE 8 0 10 -422.7007833757143 +531.2717280772423 20 -27.000000000000004 +131.25 30 0.0 11 -422.7007833757143 +519.4383947439092 21 -88.00000000000001 +131.25 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -449.7007833757143 +519.4383947439092 20 -27.000000000000004 +131.25 30 0.0 11 -422.7007833757143 +519.4383947439092 21 -27.000000000000004 +130.75000000000003 31 0.0 0 @@ -5999,15 +5731,15 @@ LINE 8 0 10 -449.7007833757143 +519.4383947439092 20 -27.000000000000004 +130.75000000000003 30 0.0 11 -449.7007833757143 +531.2717280772423 21 -10.000000000000002 +130.75000000000003 31 0.0 0 @@ -6017,35 +5749,33 @@ LINE 8 0 10 -422.7007833757143 +531.2717280772423 20 -10.000000000000002 +130.75000000000003 30 0.0 11 -422.7007833757143 +531.2717280772423 21 -27.000000000000004 +131.25 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -422.7007833757143 +500.60506141057573 20 -10.000000000000002 +74.93181818181819 30 0.0 11 -449.7007833757143 +500.60506141057573 21 -10.000000000000002 +63.3409090909091 31 0.0 0 @@ -6055,15 +5785,15 @@ LINE 8 0 10 -422.7007833757143 +500.60506141057573 20 -0.0 +63.3409090909091 30 0.0 11 -422.7007833757143 +501.10506141057573 21 -10.000000000000002 +63.3409090909091 31 0.0 0 @@ -6073,15 +5803,15 @@ LINE 8 0 10 -449.7007833757143 +501.10506141057573 20 -0.0 +63.3409090909091 30 0.0 11 -422.7007833757143 +501.10506141057573 21 -0.0 +74.93181818181819 31 0.0 0 @@ -6091,15 +5821,15 @@ LINE 8 0 10 -449.7007833757143 +501.10506141057573 20 -10.000000000000002 +74.93181818181819 30 0.0 11 -449.7007833757143 +500.60506141057573 21 -0.0 +74.93181818181819 31 0.0 0 @@ -6109,15 +5839,15 @@ LINE 8 0 10 -518.8550614105758 +500.60506141057573 20 -154.90909090909093 +102.65909090909092 30 0.0 11 -513.8550614105758 +500.60506141057573 21 -154.90909090909093 +91.06818181818183 31 0.0 0 @@ -6127,15 +5857,15 @@ LINE 8 0 10 -513.8550614105758 +500.60506141057573 20 -154.90909090909093 +91.06818181818183 30 0.0 11 -513.8550614105758 +501.10506141057573 21 -143.8181818181818 +91.06818181818183 31 0.0 0 @@ -6145,15 +5875,15 @@ LINE 8 0 10 -513.8550614105758 +501.10506141057573 20 -143.8181818181818 +91.06818181818183 30 0.0 11 -518.8550614105758 +501.10506141057573 21 -143.8181818181818 +102.65909090909092 31 0.0 0 @@ -6163,15 +5893,15 @@ LINE 8 0 10 -518.8550614105758 +501.10506141057573 20 -127.1818181818182 +102.65909090909092 30 0.0 11 -513.8550614105758 +500.60506141057573 21 -127.1818181818182 +102.65909090909092 31 0.0 0 @@ -6181,15 +5911,15 @@ LINE 8 0 10 -513.8550614105758 +519.3550614105758 20 -127.1818181818182 +166.50000000000003 30 0.0 11 -513.8550614105758 +519.3550614105758 21 -116.09090909090911 +162.50000000000003 31 0.0 0 @@ -6199,15 +5929,15 @@ LINE 8 0 10 -513.8550614105758 +519.3550614105758 20 -116.09090909090911 +162.50000000000003 30 0.0 11 -518.8550614105758 +531.3550614105757 21 -116.09090909090911 +162.50000000000003 31 0.0 0 @@ -6217,15 +5947,15 @@ LINE 8 0 10 -445.2007833757143 +531.3550614105757 20 -102.50000000000001 +162.50000000000003 30 0.0 11 -445.2007833757143 +531.3550614105757 21 -108.50000000000001 +166.50000000000003 31 0.0 0 @@ -6235,15 +5965,15 @@ LINE 8 0 10 -445.2007833757143 +531.3550614105757 20 -108.50000000000001 +166.50000000000003 30 0.0 11 -427.2007833757143 +519.3550614105758 21 -108.50000000000001 +166.50000000000003 31 0.0 0 @@ -6253,15 +5983,15 @@ LINE 8 0 10 -427.2007833757143 +520.8550614105757 20 -108.50000000000001 +154.5 30 0.0 11 -427.2007833757143 +520.8550614105757 21 -102.50000000000001 +150.5 31 0.0 0 @@ -6271,15 +6001,15 @@ LINE 8 0 10 -427.2007833757143 +520.8550614105757 20 -102.50000000000001 +150.5 30 0.0 11 -445.2007833757143 +529.8550614105758 21 -102.50000000000001 +150.5 31 0.0 0 @@ -6289,15 +6019,15 @@ LINE 8 0 10 -431.4507833757143 +529.8550614105758 20 -158.25000000000003 +150.5 30 0.0 11 -440.9507833757143 +529.8550614105758 21 -158.25000000000003 +154.5 31 0.0 0 @@ -6307,15 +6037,15 @@ LINE 8 0 10 -440.9507833757143 +529.8550614105758 20 -158.25000000000003 +154.5 30 0.0 11 -440.9507833757143 +520.8550614105757 21 -158.75000000000003 +154.5 31 0.0 0 @@ -6325,15 +6055,15 @@ LINE 8 0 10 -440.9507833757143 +519.3550614105758 20 -158.75000000000003 +191.0 30 0.0 11 -431.4507833757143 +519.3550614105758 21 -158.75000000000003 +168.0 31 0.0 0 @@ -6343,15 +6073,15 @@ LINE 8 0 10 -431.4507833757143 +519.3550614105758 20 -158.75000000000003 +168.0 30 0.0 11 -431.4507833757143 +531.3550614105757 21 -158.25000000000003 +168.0 31 0.0 0 @@ -6361,15 +6091,15 @@ LINE 8 0 10 -353.54650534085283 +531.3550614105757 20 -116.09090909090911 +168.0 30 0.0 11 -358.54650534085283 +531.3550614105757 21 -116.09090909090911 +191.0 31 0.0 0 @@ -6379,15 +6109,15 @@ LINE 8 0 10 -358.54650534085283 +531.3550614105757 20 -116.09090909090911 +191.0 30 0.0 11 -358.54650534085283 +519.3550614105758 21 -127.18181818181822 +191.0 31 0.0 0 @@ -6397,15 +6127,15 @@ LINE 8 0 10 -358.54650534085283 +519.3550614105758 20 -127.18181818181822 +196.50000000000003 30 0.0 11 -353.54650534085283 +519.3550614105758 21 -127.18181818181822 +192.50000000000003 31 0.0 0 @@ -6415,15 +6145,15 @@ LINE 8 0 10 -353.54650534085283 +519.3550614105758 20 -143.81818181818184 +192.50000000000003 30 0.0 11 -358.54650534085283 +531.3550614105757 21 -143.81818181818184 +192.50000000000003 31 0.0 0 @@ -6433,15 +6163,15 @@ LINE 8 0 10 -358.54650534085283 +531.3550614105757 20 -143.81818181818184 +192.50000000000003 30 0.0 11 -358.54650534085283 +531.3550614105757 21 -154.90909090909093 +196.50000000000003 31 0.0 0 @@ -6451,15 +6181,15 @@ LINE 8 0 10 -358.54650534085283 +531.3550614105757 20 -154.90909090909093 +196.50000000000003 30 0.0 11 -353.54650534085283 +519.3550614105758 21 -154.90909090909093 +196.50000000000003 31 0.0 0 @@ -6469,15 +6199,15 @@ LINE 8 0 10 -440.7007833757143 +519.6883947439092 20 -2.5000000000000004 +219.00000000000003 30 0.0 11 -440.7007833757143 +519.6883947439092 21 -7.500000000000001 +214.0 31 0.0 0 @@ -6487,15 +6217,15 @@ LINE 8 0 10 -440.7007833757143 +519.6883947439092 20 -7.500000000000001 +214.0 30 0.0 11 -431.7007833757143 +531.0217280772423 21 -7.500000000000001 +214.0 31 0.0 0 @@ -6505,15 +6235,15 @@ LINE 8 0 10 -431.7007833757143 +531.0217280772423 20 -7.500000000000001 +214.0 30 0.0 11 -431.7007833757143 +531.0217280772423 21 -2.5000000000000004 +219.00000000000003 31 0.0 0 @@ -6525,13 +6255,13 @@ DOTTED 8 0 10 -564.3550614105757 +666.3550614105757 20 123.50000000000001 30 0.0 11 -625.3550614105758 +727.3550614105758 21 123.50000000000001 31 @@ -6545,13 +6275,13 @@ DOTTED 8 0 10 -625.3550614105758 +727.3550614105758 20 123.50000000000001 30 0.0 11 -625.3550614105758 +727.3550614105758 21 147.5 31 @@ -6565,13 +6295,13 @@ DOTTED 8 0 10 -625.3550614105758 +727.3550614105758 20 147.5 30 0.0 11 -564.3550614105757 +666.3550614105757 21 147.5 31 @@ -6585,13 +6315,13 @@ DOTTED 8 0 10 -564.3550614105757 +666.3550614105757 20 147.5 30 0.0 11 -564.3550614105757 +666.3550614105757 21 123.50000000000001 31 @@ -6603,13 +6333,13 @@ LINE 8 0 10 -564.3550614105757 +666.3550614105757 20 116.50000000000001 30 0.0 11 -564.3550614105757 +666.3550614105757 21 123.50000000000001 31 @@ -6621,13 +6351,13 @@ LINE 8 0 10 -624.3550614105758 +726.3550614105758 20 116.50000000000001 30 0.0 11 -564.3550614105757 +666.3550614105757 21 116.50000000000001 31 @@ -6639,13 +6369,13 @@ LINE 8 0 10 -624.3550614105758 +726.3550614105758 20 123.50000000000001 30 0.0 11 -624.3550614105758 +726.3550614105758 21 116.50000000000001 31 @@ -6657,13 +6387,13 @@ LINE 8 0 10 -632.3550614105758 +734.3550614105758 20 123.50000000000001 30 0.0 11 -625.3550614105758 +727.3550614105758 21 123.50000000000001 31 @@ -6675,13 +6405,13 @@ LINE 8 0 10 -632.3550614105758 +734.3550614105758 20 147.5 30 0.0 11 -632.3550614105758 +734.3550614105758 21 123.50000000000001 31 @@ -6693,13 +6423,13 @@ LINE 8 0 10 -625.3550614105758 +727.3550614105758 20 147.5 30 0.0 11 -632.3550614105758 +734.3550614105758 21 147.5 31 @@ -6713,13 +6443,13 @@ DOTTED 8 0 10 -625.3550614105758 +727.3550614105758 20 147.5 30 0.0 11 -625.3550614105758 +727.3550614105758 21 208.50000000000003 31 @@ -6731,13 +6461,13 @@ LINE 8 0 10 -565.3550614105757 +667.3550614105757 20 208.50000000000003 30 0.0 11 -625.3550614105758 +727.3550614105758 21 208.50000000000003 31 @@ -6751,13 +6481,13 @@ DOTTED 8 0 10 -565.3550614105757 +667.3550614105757 20 147.5 30 0.0 11 -565.3550614105757 +667.3550614105757 21 208.50000000000003 31 @@ -6769,13 +6499,13 @@ LINE 8 0 10 -649.3550614105757 +751.3550614105758 20 147.5 30 0.0 11 -625.3550614105758 +727.3550614105758 21 147.5 31 @@ -6789,13 +6519,13 @@ DOTTED 8 0 10 -649.3550614105757 +751.3550614105758 20 147.5 30 0.0 11 -649.3550614105757 +751.3550614105758 21 208.50000000000003 31 @@ -6807,13 +6537,13 @@ LINE 8 0 10 -625.3550614105758 +727.3550614105758 20 208.50000000000003 30 0.0 11 -649.3550614105757 +751.3550614105758 21 208.50000000000003 31 @@ -6825,13 +6555,13 @@ LINE 8 0 10 -709.3550614105758 +811.3550614105757 20 147.5 30 0.0 11 -649.3550614105757 +751.3550614105758 21 147.5 31 @@ -6843,13 +6573,13 @@ LINE 8 0 10 -709.3550614105758 +811.3550614105757 20 208.50000000000003 30 0.0 11 -709.3550614105758 +811.3550614105757 21 147.5 31 @@ -6861,13 +6591,13 @@ LINE 8 0 10 -649.3550614105757 +751.3550614105758 20 208.50000000000003 30 0.0 11 -709.3550614105758 +811.3550614105757 21 208.50000000000003 31 @@ -6879,13 +6609,13 @@ LINE 8 0 10 -565.3550614105757 +667.3550614105757 20 147.5 30 0.0 11 -541.3550614105758 +643.3550614105758 21 147.5 31 @@ -6897,13 +6627,13 @@ LINE 8 0 10 -541.3550614105758 +643.3550614105758 20 208.50000000000003 30 0.0 11 -565.3550614105757 +667.3550614105757 21 208.50000000000003 31 @@ -6917,13 +6647,13 @@ DOTTED 8 0 10 -541.3550614105758 +643.3550614105758 20 208.50000000000003 30 0.0 11 -541.3550614105758 +643.3550614105758 21 147.5 31 @@ -6935,13 +6665,13 @@ LINE 8 0 10 -531.3550614105757 +633.3550614105758 20 208.50000000000003 30 0.0 11 -541.3550614105758 +643.3550614105758 21 208.50000000000003 31 @@ -6953,13 +6683,13 @@ LINE 8 0 10 -531.3550614105757 +633.3550614105758 20 147.5 30 0.0 11 -531.3550614105757 +633.3550614105758 21 208.50000000000003 31 @@ -6971,13 +6701,13 @@ LINE 8 0 10 -541.3550614105758 +643.3550614105758 20 147.5 30 0.0 11 -531.3550614105757 +633.3550614105758 21 147.5 31 @@ -6989,13 +6719,13 @@ LINE 8 0 10 -557.3550614105757 +659.3550614105758 20 147.5 30 0.0 11 -564.3550614105757 +666.3550614105757 21 147.5 31 @@ -7007,13 +6737,13 @@ LINE 8 0 10 -557.3550614105757 +659.3550614105758 20 123.50000000000001 30 0.0 11 -557.3550614105757 +659.3550614105758 21 147.5 31 @@ -7025,13 +6755,13 @@ LINE 8 0 10 -564.3550614105757 +666.3550614105757 20 123.50000000000001 30 0.0 11 -557.3550614105757 +659.3550614105758 21 123.50000000000001 31 @@ -7043,13 +6773,13 @@ LINE 8 0 10 -613.4459705014848 +715.4459705014848 20 118.25000000000001 30 0.0 11 -616.9459705014849 +718.9459705014849 21 118.25000000000001 31 @@ -7061,13 +6791,13 @@ LINE 8 0 10 -616.9459705014849 +718.9459705014849 20 118.25000000000001 30 0.0 11 -613.4459705014848 +715.4459705014848 21 121.75000000000001 31 @@ -7079,13 +6809,13 @@ LINE 8 0 10 -613.4459705014848 +715.4459705014848 20 121.75000000000001 30 0.0 11 -602.5368795923939 +704.5368795923939 21 121.75000000000001 31 @@ -7097,13 +6827,13 @@ LINE 8 0 10 -602.5368795923939 +704.5368795923939 20 121.75000000000001 30 0.0 11 -599.0368795923939 +701.0368795923939 21 118.25000000000001 31 @@ -7115,13 +6845,13 @@ LINE 8 0 10 -599.0368795923939 +701.0368795923939 20 118.25000000000001 30 0.0 11 -602.5368795923939 +704.5368795923939 21 118.25000000000001 31 @@ -7133,13 +6863,13 @@ LINE 8 0 10 -586.1732432287575 +688.1732432287577 20 118.25000000000001 30 0.0 11 -589.6732432287577 +691.6732432287577 21 118.25000000000001 31 @@ -7151,13 +6881,13 @@ LINE 8 0 10 -589.6732432287577 +691.6732432287577 20 118.25000000000001 30 0.0 11 -586.1732432287575 +688.1732432287577 21 121.75000000000001 31 @@ -7169,13 +6899,13 @@ LINE 8 0 10 -586.1732432287575 +688.1732432287577 20 121.75000000000001 30 0.0 11 -575.2641523196667 +677.2641523196667 21 121.75000000000001 31 @@ -7187,13 +6917,13 @@ LINE 8 0 10 -575.2641523196667 +677.2641523196667 20 121.75000000000001 30 0.0 11 -571.7641523196666 +673.7641523196667 21 118.25000000000001 31 @@ -7205,13 +6935,13 @@ LINE 8 0 10 -571.7641523196666 +673.7641523196667 20 118.25000000000001 30 0.0 11 -575.2641523196667 +677.2641523196667 21 118.25000000000001 31 @@ -7223,13 +6953,13 @@ LINE 8 0 10 -630.6050614105758 +732.6050614105758 20 139.50000000000003 30 0.0 11 -627.1050614105758 +729.1050614105758 21 139.50000000000003 31 @@ -7241,13 +6971,13 @@ LINE 8 0 10 -627.1050614105758 +729.1050614105758 20 139.50000000000003 30 0.0 11 -627.1050614105758 +729.1050614105758 21 131.50000000000003 31 @@ -7259,13 +6989,13 @@ LINE 8 0 10 -627.1050614105758 +729.1050614105758 20 131.50000000000003 30 0.0 11 -630.6050614105758 +732.6050614105758 21 131.50000000000003 31 @@ -7277,13 +7007,13 @@ LINE 8 0 10 -572.8550614105758 +674.8550614105757 20 199.00000000000003 30 0.0 11 -572.8550614105758 +674.8550614105757 21 181.00000000000003 31 @@ -7295,13 +7025,13 @@ LINE 8 0 10 -572.8550614105758 +674.8550614105757 20 181.00000000000003 30 0.0 11 -607.8550614105758 +709.8550614105758 21 181.00000000000003 31 @@ -7313,13 +7043,13 @@ LINE 8 0 10 -607.8550614105758 +709.8550614105758 20 181.00000000000003 30 0.0 11 -607.8550614105758 +709.8550614105758 21 199.00000000000003 31 @@ -7331,13 +7061,13 @@ LINE 8 0 10 -607.8550614105758 +709.8550614105758 20 199.00000000000003 30 0.0 11 -572.8550614105758 +674.8550614105757 21 199.00000000000003 31 @@ -7349,13 +7079,13 @@ LINE 8 0 10 -625.8550614105758 +727.8550614105758 20 160.75000000000003 30 0.0 11 -625.8550614105758 +727.8550614105758 21 157.75000000000003 31 @@ -7367,13 +7097,13 @@ LINE 8 0 10 -625.8550614105758 +727.8550614105758 20 157.75000000000003 30 0.0 11 -628.8550614105757 +730.8550614105757 21 157.75000000000003 31 @@ -7385,13 +7115,13 @@ LINE 8 0 10 -628.8550614105757 +730.8550614105757 20 157.75000000000003 30 0.0 11 -628.8550614105757 +730.8550614105757 21 160.75000000000003 31 @@ -7403,13 +7133,13 @@ LINE 8 0 10 -628.8550614105757 +730.8550614105757 20 160.75000000000003 30 0.0 11 -625.8550614105758 +727.8550614105758 21 160.75000000000003 31 @@ -7421,13 +7151,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 159.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 158.75000000000003 31 @@ -7439,13 +7169,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 158.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 158.75000000000003 31 @@ -7457,13 +7187,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 158.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 159.75000000000003 31 @@ -7475,13 +7205,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 159.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 159.75000000000003 31 @@ -7493,13 +7223,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 162.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 161.25 31 @@ -7511,13 +7241,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 161.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 161.25 31 @@ -7529,13 +7259,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 161.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 162.25000000000003 31 @@ -7547,13 +7277,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 162.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 162.25000000000003 31 @@ -7565,13 +7295,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 162.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 161.25 31 @@ -7583,13 +7313,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 161.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 161.25 31 @@ -7601,13 +7331,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 161.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 162.25000000000003 31 @@ -7619,13 +7349,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 162.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 162.25000000000003 31 @@ -7637,13 +7367,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 164.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 163.75 31 @@ -7655,13 +7385,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 163.75 30 0.0 11 -627.8550614105758 +729.8550614105757 21 163.75 31 @@ -7673,13 +7403,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 163.75 30 0.0 11 -627.8550614105758 +729.8550614105757 21 164.75000000000003 31 @@ -7691,13 +7421,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 164.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 164.75000000000003 31 @@ -7709,13 +7439,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 164.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 163.75 31 @@ -7727,13 +7457,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 163.75 30 0.0 11 -647.8550614105757 +749.8550614105758 21 163.75 31 @@ -7745,13 +7475,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 163.75 30 0.0 11 -647.8550614105757 +749.8550614105758 21 164.75000000000003 31 @@ -7763,13 +7493,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 164.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 164.75000000000003 31 @@ -7781,13 +7511,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 167.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 166.25 31 @@ -7799,13 +7529,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 166.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 166.25 31 @@ -7817,13 +7547,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 166.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 167.25000000000003 31 @@ -7835,13 +7565,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 167.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 167.25000000000003 31 @@ -7853,13 +7583,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 167.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 166.25 31 @@ -7871,13 +7601,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 166.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 166.25 31 @@ -7889,13 +7619,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 166.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 167.25000000000003 31 @@ -7907,13 +7637,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 167.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 167.25000000000003 31 @@ -7925,13 +7655,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 169.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 168.75000000000003 31 @@ -7943,13 +7673,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 168.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 168.75000000000003 31 @@ -7961,13 +7691,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 168.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 169.75000000000003 31 @@ -7979,13 +7709,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 169.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 169.75000000000003 31 @@ -7997,13 +7727,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 169.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 168.75000000000003 31 @@ -8015,13 +7745,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 168.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 168.75000000000003 31 @@ -8033,13 +7763,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 168.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 169.75000000000003 31 @@ -8051,13 +7781,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 169.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 169.75000000000003 31 @@ -8069,13 +7799,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 172.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 171.25000000000003 31 @@ -8087,13 +7817,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 171.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 171.25000000000003 31 @@ -8105,13 +7835,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 171.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 172.25000000000003 31 @@ -8123,13 +7853,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 172.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 172.25000000000003 31 @@ -8141,13 +7871,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 172.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 171.25000000000003 31 @@ -8159,13 +7889,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 171.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 171.25000000000003 31 @@ -8177,13 +7907,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 171.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 172.25000000000003 31 @@ -8195,13 +7925,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 172.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 172.25000000000003 31 @@ -8213,13 +7943,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 174.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 173.75000000000003 31 @@ -8231,13 +7961,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 173.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 173.75000000000003 31 @@ -8249,13 +7979,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 173.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 174.75000000000003 31 @@ -8267,13 +7997,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 174.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 174.75000000000003 31 @@ -8285,13 +8015,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 174.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 173.75000000000003 31 @@ -8303,13 +8033,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 173.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 173.75000000000003 31 @@ -8321,13 +8051,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 173.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 174.75000000000003 31 @@ -8339,13 +8069,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 174.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 174.75000000000003 31 @@ -8357,13 +8087,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 177.25 30 0.0 11 -626.8550614105758 +728.8550614105757 21 176.25000000000003 31 @@ -8375,13 +8105,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 176.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 176.25000000000003 31 @@ -8393,13 +8123,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 176.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 177.25 31 @@ -8411,13 +8141,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 177.25 30 0.0 11 -626.8550614105758 +728.8550614105757 21 177.25 31 @@ -8429,13 +8159,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 177.25 30 0.0 11 -646.8550614105757 +748.8550614105757 21 176.25000000000003 31 @@ -8447,13 +8177,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 176.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 176.25000000000003 31 @@ -8465,13 +8195,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 176.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 177.25 31 @@ -8483,13 +8213,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 177.25 30 0.0 11 -646.8550614105757 +748.8550614105757 21 177.25 31 @@ -8501,13 +8231,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 179.75 30 0.0 11 -626.8550614105758 +728.8550614105757 21 178.75000000000003 31 @@ -8519,13 +8249,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 178.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 178.75000000000003 31 @@ -8537,13 +8267,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 178.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 179.75 31 @@ -8555,13 +8285,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 179.75 30 0.0 11 -626.8550614105758 +728.8550614105757 21 179.75 31 @@ -8573,13 +8303,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 179.75 30 0.0 11 -646.8550614105757 +748.8550614105757 21 178.75000000000003 31 @@ -8591,13 +8321,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 178.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 178.75000000000003 31 @@ -8609,13 +8339,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 178.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 179.75 31 @@ -8627,13 +8357,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 179.75 30 0.0 11 -646.8550614105757 +748.8550614105757 21 179.75 31 @@ -8645,13 +8375,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 182.25 30 0.0 11 -626.8550614105758 +728.8550614105757 21 181.25000000000003 31 @@ -8663,13 +8393,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 181.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 181.25000000000003 31 @@ -8681,13 +8411,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 181.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 182.25 31 @@ -8699,13 +8429,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 182.25 30 0.0 11 -626.8550614105758 +728.8550614105757 21 182.25 31 @@ -8717,13 +8447,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 182.25 30 0.0 11 -646.8550614105757 +748.8550614105757 21 181.25000000000003 31 @@ -8735,13 +8465,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 181.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 181.25000000000003 31 @@ -8753,13 +8483,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 181.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 182.25 31 @@ -8771,13 +8501,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 182.25 30 0.0 11 -646.8550614105757 +748.8550614105757 21 182.25 31 @@ -8789,13 +8519,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 184.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 183.75000000000003 31 @@ -8807,13 +8537,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 183.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 183.75000000000003 31 @@ -8825,13 +8555,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 183.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 184.75000000000003 31 @@ -8843,13 +8573,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 184.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 184.75000000000003 31 @@ -8861,13 +8591,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 184.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 183.75000000000003 31 @@ -8879,13 +8609,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 183.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 183.75000000000003 31 @@ -8897,13 +8627,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 183.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 184.75000000000003 31 @@ -8915,13 +8645,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 184.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 184.75000000000003 31 @@ -8933,13 +8663,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 187.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 186.25000000000003 31 @@ -8951,13 +8681,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 186.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 186.25000000000003 31 @@ -8969,13 +8699,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 186.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 187.25000000000003 31 @@ -8987,13 +8717,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 187.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 187.25000000000003 31 @@ -9005,13 +8735,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 187.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 186.25000000000003 31 @@ -9023,13 +8753,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 186.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 186.25000000000003 31 @@ -9041,13 +8771,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 186.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 187.25000000000003 31 @@ -9059,13 +8789,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 187.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 187.25000000000003 31 @@ -9077,13 +8807,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 189.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 188.75 31 @@ -9095,13 +8825,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 188.75 30 0.0 11 -627.8550614105758 +729.8550614105757 21 188.75 31 @@ -9113,13 +8843,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 188.75 30 0.0 11 -627.8550614105758 +729.8550614105757 21 189.75000000000003 31 @@ -9131,13 +8861,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 189.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 189.75000000000003 31 @@ -9149,13 +8879,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 189.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 188.75 31 @@ -9167,13 +8897,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 188.75 30 0.0 11 -647.8550614105757 +749.8550614105758 21 188.75 31 @@ -9185,13 +8915,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 188.75 30 0.0 11 -647.8550614105757 +749.8550614105758 21 189.75000000000003 31 @@ -9203,13 +8933,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 189.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 189.75000000000003 31 @@ -9221,13 +8951,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 192.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 191.25 31 @@ -9239,13 +8969,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 191.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 191.25 31 @@ -9257,13 +8987,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 191.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 192.25000000000003 31 @@ -9275,13 +9005,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 192.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 192.25000000000003 31 @@ -9293,13 +9023,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 192.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 191.25 31 @@ -9311,13 +9041,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 191.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 191.25 31 @@ -9329,13 +9059,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 191.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 192.25000000000003 31 @@ -9347,13 +9077,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 192.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 192.25000000000003 31 @@ -9365,13 +9095,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 194.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 193.75000000000003 31 @@ -9383,13 +9113,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 193.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 193.75000000000003 31 @@ -9401,13 +9131,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 193.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 194.75000000000003 31 @@ -9419,13 +9149,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 194.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 194.75000000000003 31 @@ -9437,13 +9167,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 194.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 193.75000000000003 31 @@ -9455,13 +9185,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 193.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 193.75000000000003 31 @@ -9473,13 +9203,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 193.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 194.75000000000003 31 @@ -9491,13 +9221,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 194.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 194.75000000000003 31 @@ -9509,13 +9239,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 197.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 196.25000000000003 31 @@ -9527,13 +9257,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 196.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 196.25000000000003 31 @@ -9545,13 +9275,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 196.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 197.25000000000003 31 @@ -9563,13 +9293,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 197.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 197.25000000000003 31 @@ -9581,13 +9311,13 @@ LINE 8 0 10 -645.8550614105758 +747.8550614105757 20 198.25000000000003 30 0.0 11 -645.8550614105758 +747.8550614105757 21 195.25000000000003 31 @@ -9599,13 +9329,13 @@ LINE 8 0 10 -645.8550614105758 +747.8550614105757 20 195.25000000000003 30 0.0 11 -648.8550614105757 +750.8550614105758 21 195.25000000000003 31 @@ -9617,13 +9347,13 @@ LINE 8 0 10 -648.8550614105757 +750.8550614105758 20 195.25000000000003 30 0.0 11 -648.8550614105757 +750.8550614105758 21 198.25000000000003 31 @@ -9635,13 +9365,13 @@ LINE 8 0 10 -648.8550614105757 +750.8550614105758 20 198.25000000000003 30 0.0 11 -645.8550614105758 +747.8550614105757 21 198.25000000000003 31 @@ -9653,13 +9383,13 @@ LINE 8 0 10 -641.6050614105758 +743.6050614105757 20 155.25000000000003 30 0.0 11 -633.1050614105757 +735.1050614105757 21 155.25000000000003 31 @@ -9671,13 +9401,13 @@ LINE 8 0 10 -633.1050614105757 +735.1050614105757 20 155.25000000000003 30 0.0 11 -633.1050614105757 +735.1050614105757 21 154.75 31 @@ -9689,13 +9419,13 @@ LINE 8 0 10 -633.1050614105757 +735.1050614105757 20 154.75 30 0.0 11 -641.6050614105758 +743.6050614105757 21 154.75 31 @@ -9707,13 +9437,13 @@ LINE 8 0 10 -641.6050614105758 +743.6050614105757 20 154.75 30 0.0 11 -641.6050614105758 +743.6050614105757 21 155.25000000000003 31 @@ -9725,13 +9455,13 @@ LINE 8 0 10 -633.1050614105757 +735.1050614105757 20 203.00000000000003 30 0.0 11 -641.6050614105758 +743.6050614105757 21 203.00000000000003 31 @@ -9743,13 +9473,13 @@ LINE 8 0 10 -641.6050614105758 +743.6050614105757 20 203.00000000000003 30 0.0 11 -641.6050614105758 +743.6050614105757 21 203.50000000000003 31 @@ -9761,13 +9491,13 @@ LINE 8 0 10 -641.6050614105758 +743.6050614105757 20 203.50000000000003 30 0.0 11 -633.1050614105757 +735.1050614105757 21 203.50000000000003 31 @@ -9779,13 +9509,13 @@ LINE 8 0 10 -633.1050614105757 +735.1050614105757 20 203.50000000000003 30 0.0 11 -633.1050614105757 +735.1050614105757 21 203.00000000000003 31 @@ -9797,13 +9527,13 @@ LINE 8 0 10 -664.3550614105758 +766.3550614105757 20 198.50000000000003 30 0.0 11 -664.3550614105758 +766.3550614105757 21 185.50000000000003 31 @@ -9815,13 +9545,13 @@ LINE 8 0 10 -664.3550614105758 +766.3550614105757 20 185.50000000000003 30 0.0 11 -694.3550614105757 +796.3550614105758 21 185.50000000000003 31 @@ -9833,13 +9563,13 @@ LINE 8 0 10 -694.3550614105757 +796.3550614105758 20 185.50000000000003 30 0.0 11 -694.3550614105757 +796.3550614105758 21 198.50000000000003 31 @@ -9851,13 +9581,13 @@ LINE 8 0 10 -694.3550614105757 +796.3550614105758 20 198.50000000000003 30 0.0 11 -664.3550614105758 +766.3550614105757 21 198.50000000000003 31 @@ -9869,13 +9599,13 @@ LINE 8 0 10 -671.4232432287575 +773.4232432287574 20 153.00000000000003 30 0.0 11 -660.0141523196667 +762.0141523196667 21 153.00000000000003 31 @@ -9887,13 +9617,13 @@ LINE 8 0 10 -660.0141523196667 +762.0141523196667 20 153.00000000000003 30 0.0 11 -660.0141523196667 +762.0141523196667 21 152.5 31 @@ -9905,13 +9635,13 @@ LINE 8 0 10 -660.0141523196667 +762.0141523196667 20 152.5 30 0.0 11 -671.4232432287575 +773.4232432287574 21 152.5 31 @@ -9923,13 +9653,13 @@ LINE 8 0 10 -671.4232432287575 +773.4232432287574 20 152.5 30 0.0 11 -671.4232432287575 +773.4232432287574 21 153.00000000000003 31 @@ -9941,13 +9671,13 @@ LINE 8 0 10 -698.6959705014849 +800.6959705014848 20 153.00000000000003 30 0.0 11 -687.2868795923938 +789.2868795923939 21 153.00000000000003 31 @@ -9959,13 +9689,13 @@ LINE 8 0 10 -687.2868795923938 +789.2868795923939 20 153.00000000000003 30 0.0 11 -687.2868795923938 +789.2868795923939 21 152.5 31 @@ -9977,13 +9707,13 @@ LINE 8 0 10 -687.2868795923938 +789.2868795923939 20 152.5 30 0.0 11 -698.6959705014849 +800.6959705014848 21 152.5 31 @@ -9995,13 +9725,13 @@ LINE 8 0 10 -698.6959705014849 +800.6959705014848 20 152.5 30 0.0 11 -698.6959705014849 +800.6959705014848 21 153.00000000000003 31 @@ -10013,13 +9743,13 @@ LINE 8 0 10 -701.6050614105758 +803.6050614105758 20 169.93181818181822 30 0.0 11 -701.6050614105758 +803.6050614105758 21 158.3409090909091 31 @@ -10031,13 +9761,13 @@ LINE 8 0 10 -701.6050614105758 +803.6050614105758 20 158.3409090909091 30 0.0 11 -702.1050614105758 +804.1050614105758 21 158.3409090909091 31 @@ -10049,13 +9779,13 @@ LINE 8 0 10 -702.1050614105758 +804.1050614105758 20 158.3409090909091 30 0.0 11 -702.1050614105758 +804.1050614105758 21 169.93181818181822 31 @@ -10067,13 +9797,13 @@ LINE 8 0 10 -702.1050614105758 +804.1050614105758 20 169.93181818181822 30 0.0 11 -701.6050614105758 +803.6050614105758 21 169.93181818181822 31 @@ -10085,13 +9815,13 @@ LINE 8 0 10 -701.6050614105758 +803.6050614105758 20 197.65909090909093 30 0.0 11 -701.6050614105758 +803.6050614105758 21 186.06818181818184 31 @@ -10103,13 +9833,13 @@ LINE 8 0 10 -701.6050614105758 +803.6050614105758 20 186.06818181818184 30 0.0 11 -702.1050614105758 +804.1050614105758 21 186.06818181818184 31 @@ -10121,13 +9851,13 @@ LINE 8 0 10 -702.1050614105758 +804.1050614105758 20 186.06818181818184 30 0.0 11 -702.1050614105758 +804.1050614105758 21 197.65909090909093 31 @@ -10139,13 +9869,13 @@ LINE 8 0 10 -702.1050614105758 +804.1050614105758 20 197.65909090909093 30 0.0 11 -701.6050614105758 +803.6050614105758 21 197.65909090909093 31 @@ -10157,13 +9887,13 @@ LINE 8 0 10 -541.8550614105758 +643.8550614105758 20 160.75000000000003 30 0.0 11 -541.8550614105758 +643.8550614105758 21 157.75000000000003 31 @@ -10175,13 +9905,13 @@ LINE 8 0 10 -541.8550614105758 +643.8550614105758 20 157.75000000000003 30 0.0 11 -544.8550614105758 +646.8550614105757 21 157.75000000000003 31 @@ -10193,13 +9923,13 @@ LINE 8 0 10 -544.8550614105758 +646.8550614105757 20 157.75000000000003 30 0.0 11 -544.8550614105758 +646.8550614105757 21 160.75000000000003 31 @@ -10211,13 +9941,13 @@ LINE 8 0 10 -544.8550614105758 +646.8550614105757 20 160.75000000000003 30 0.0 11 -541.8550614105758 +643.8550614105758 21 160.75000000000003 31 @@ -10229,13 +9959,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 159.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 158.75000000000003 31 @@ -10247,13 +9977,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 158.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 158.75000000000003 31 @@ -10265,13 +9995,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 158.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 159.75000000000003 31 @@ -10283,13 +10013,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 159.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 159.75000000000003 31 @@ -10301,13 +10031,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 162.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 161.25 31 @@ -10319,13 +10049,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 161.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 161.25 31 @@ -10337,13 +10067,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 161.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 162.25000000000003 31 @@ -10355,13 +10085,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 162.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 162.25000000000003 31 @@ -10373,13 +10103,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 162.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 161.25 31 @@ -10391,13 +10121,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 161.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 161.25 31 @@ -10409,13 +10139,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 161.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 162.25000000000003 31 @@ -10427,13 +10157,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 162.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 162.25000000000003 31 @@ -10445,13 +10175,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 164.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 163.75 31 @@ -10463,13 +10193,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 163.75 30 0.0 11 -543.8550614105758 +645.8550614105758 21 163.75 31 @@ -10481,13 +10211,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 163.75 30 0.0 11 -543.8550614105758 +645.8550614105758 21 164.75000000000003 31 @@ -10499,13 +10229,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 164.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 164.75000000000003 31 @@ -10517,13 +10247,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 164.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 163.75 31 @@ -10535,13 +10265,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 163.75 30 0.0 11 -563.8550614105758 +665.8550614105757 21 163.75 31 @@ -10553,13 +10283,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 163.75 30 0.0 11 -563.8550614105758 +665.8550614105757 21 164.75000000000003 31 @@ -10571,13 +10301,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 164.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 164.75000000000003 31 @@ -10589,13 +10319,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 167.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 166.25 31 @@ -10607,13 +10337,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 166.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 166.25 31 @@ -10625,13 +10355,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 166.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 167.25000000000003 31 @@ -10643,13 +10373,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 167.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 167.25000000000003 31 @@ -10661,13 +10391,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 167.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 166.25 31 @@ -10679,13 +10409,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 166.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 166.25 31 @@ -10697,13 +10427,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 166.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 167.25000000000003 31 @@ -10715,13 +10445,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 167.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 167.25000000000003 31 @@ -10733,13 +10463,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 169.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 168.75000000000003 31 @@ -10751,13 +10481,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 168.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 168.75000000000003 31 @@ -10769,13 +10499,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 168.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 169.75000000000003 31 @@ -10787,13 +10517,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 169.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 169.75000000000003 31 @@ -10805,13 +10535,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 169.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 168.75000000000003 31 @@ -10823,13 +10553,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 168.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 168.75000000000003 31 @@ -10841,13 +10571,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 168.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 169.75000000000003 31 @@ -10859,13 +10589,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 169.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 169.75000000000003 31 @@ -10877,13 +10607,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 172.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 171.25000000000003 31 @@ -10895,13 +10625,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 171.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 171.25000000000003 31 @@ -10913,13 +10643,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 171.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 172.25000000000003 31 @@ -10931,13 +10661,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 172.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 172.25000000000003 31 @@ -10949,13 +10679,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 172.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 171.25000000000003 31 @@ -10967,13 +10697,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 171.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 171.25000000000003 31 @@ -10985,13 +10715,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 171.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 172.25000000000003 31 @@ -11003,13 +10733,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 172.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 172.25000000000003 31 @@ -11021,13 +10751,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 174.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 173.75000000000003 31 @@ -11039,13 +10769,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 173.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 173.75000000000003 31 @@ -11057,13 +10787,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 173.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 174.75000000000003 31 @@ -11075,13 +10805,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 174.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 174.75000000000003 31 @@ -11093,13 +10823,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 174.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 173.75000000000003 31 @@ -11111,13 +10841,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 173.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 173.75000000000003 31 @@ -11129,13 +10859,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 173.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 174.75000000000003 31 @@ -11147,13 +10877,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 174.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 174.75000000000003 31 @@ -11165,13 +10895,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 177.25 30 0.0 11 -542.8550614105758 +644.8550614105758 21 176.25000000000003 31 @@ -11183,13 +10913,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 176.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 176.25000000000003 31 @@ -11201,13 +10931,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 176.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 177.25 31 @@ -11219,13 +10949,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 177.25 30 0.0 11 -542.8550614105758 +644.8550614105758 21 177.25 31 @@ -11237,13 +10967,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 177.25 30 0.0 11 -562.8550614105758 +664.8550614105757 21 176.25000000000003 31 @@ -11255,13 +10985,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 176.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 176.25000000000003 31 @@ -11273,13 +11003,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 176.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 177.25 31 @@ -11291,13 +11021,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 177.25 30 0.0 11 -562.8550614105758 +664.8550614105757 21 177.25 31 @@ -11309,13 +11039,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 179.75 30 0.0 11 -542.8550614105758 +644.8550614105758 21 178.75000000000003 31 @@ -11327,13 +11057,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 178.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 178.75000000000003 31 @@ -11345,13 +11075,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 178.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 179.75 31 @@ -11363,13 +11093,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 179.75 30 0.0 11 -542.8550614105758 +644.8550614105758 21 179.75 31 @@ -11381,13 +11111,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 179.75 30 0.0 11 -562.8550614105758 +664.8550614105757 21 178.75000000000003 31 @@ -11399,13 +11129,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 178.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 178.75000000000003 31 @@ -11417,13 +11147,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 178.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 179.75 31 @@ -11435,13 +11165,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 179.75 30 0.0 11 -562.8550614105758 +664.8550614105757 21 179.75 31 @@ -11453,13 +11183,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 182.25 30 0.0 11 -542.8550614105758 +644.8550614105758 21 181.25000000000003 31 @@ -11471,13 +11201,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 181.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 181.25000000000003 31 @@ -11489,13 +11219,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 181.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 182.25 31 @@ -11507,13 +11237,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 182.25 30 0.0 11 -542.8550614105758 +644.8550614105758 21 182.25 31 @@ -11525,13 +11255,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 182.25 30 0.0 11 -562.8550614105758 +664.8550614105757 21 181.25000000000003 31 @@ -11543,13 +11273,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 181.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 181.25000000000003 31 @@ -11561,13 +11291,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 181.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 182.25 31 @@ -11579,13 +11309,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 182.25 30 0.0 11 -562.8550614105758 +664.8550614105757 21 182.25 31 @@ -11597,13 +11327,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 184.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 183.75000000000003 31 @@ -11615,13 +11345,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 183.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 183.75000000000003 31 @@ -11633,13 +11363,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 183.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 184.75000000000003 31 @@ -11651,13 +11381,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 184.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 184.75000000000003 31 @@ -11669,13 +11399,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 184.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 183.75000000000003 31 @@ -11687,13 +11417,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 183.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 183.75000000000003 31 @@ -11705,13 +11435,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 183.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 184.75000000000003 31 @@ -11723,13 +11453,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 184.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 184.75000000000003 31 @@ -11741,13 +11471,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 187.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 186.25000000000003 31 @@ -11759,13 +11489,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 186.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 186.25000000000003 31 @@ -11777,13 +11507,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 186.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 187.25000000000003 31 @@ -11795,13 +11525,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 187.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 187.25000000000003 31 @@ -11813,13 +11543,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 187.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 186.25000000000003 31 @@ -11831,13 +11561,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 186.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 186.25000000000003 31 @@ -11849,13 +11579,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 186.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 187.25000000000003 31 @@ -11867,13 +11597,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 187.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 187.25000000000003 31 @@ -11885,13 +11615,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 189.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 188.75 31 @@ -11903,13 +11633,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 188.75 30 0.0 11 -543.8550614105758 +645.8550614105758 21 188.75 31 @@ -11921,13 +11651,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 188.75 30 0.0 11 -543.8550614105758 +645.8550614105758 21 189.75000000000003 31 @@ -11939,13 +11669,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 189.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 189.75000000000003 31 @@ -11957,13 +11687,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 189.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 188.75 31 @@ -11975,13 +11705,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 188.75 30 0.0 11 -563.8550614105758 +665.8550614105757 21 188.75 31 @@ -11993,13 +11723,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 188.75 30 0.0 11 -563.8550614105758 +665.8550614105757 21 189.75000000000003 31 @@ -12011,13 +11741,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 189.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 189.75000000000003 31 @@ -12029,13 +11759,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 192.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 191.25 31 @@ -12047,13 +11777,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 191.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 191.25 31 @@ -12065,13 +11795,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 191.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 192.25000000000003 31 @@ -12083,13 +11813,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 192.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 192.25000000000003 31 @@ -12101,13 +11831,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 192.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 191.25 31 @@ -12119,13 +11849,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 191.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 191.25 31 @@ -12137,13 +11867,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 191.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 192.25000000000003 31 @@ -12155,13 +11885,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 192.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 192.25000000000003 31 @@ -12173,13 +11903,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 194.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 193.75000000000003 31 @@ -12191,13 +11921,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 193.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 193.75000000000003 31 @@ -12209,13 +11939,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 193.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 194.75000000000003 31 @@ -12227,13 +11957,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 194.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 194.75000000000003 31 @@ -12245,13 +11975,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 194.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 193.75000000000003 31 @@ -12263,13 +11993,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 193.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 193.75000000000003 31 @@ -12281,13 +12011,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 193.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 194.75000000000003 31 @@ -12299,13 +12029,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 194.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 194.75000000000003 31 @@ -12317,13 +12047,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 197.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 196.25000000000003 31 @@ -12335,13 +12065,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 196.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 196.25000000000003 31 @@ -12353,13 +12083,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 196.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 197.25000000000003 31 @@ -12371,13 +12101,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 197.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 197.25000000000003 31 @@ -12389,13 +12119,13 @@ LINE 8 0 10 -561.8550614105758 +663.8550614105758 20 198.25000000000003 30 0.0 11 -561.8550614105758 +663.8550614105758 21 195.25000000000003 31 @@ -12407,13 +12137,13 @@ LINE 8 0 10 -561.8550614105758 +663.8550614105758 20 195.25000000000003 30 0.0 11 -564.8550614105757 +666.8550614105757 21 195.25000000000003 31 @@ -12425,13 +12155,13 @@ LINE 8 0 10 -564.8550614105757 +666.8550614105757 20 195.25000000000003 30 0.0 11 -564.8550614105757 +666.8550614105757 21 198.25000000000003 31 @@ -12443,13 +12173,13 @@ LINE 8 0 10 -564.8550614105757 +666.8550614105757 20 198.25000000000003 30 0.0 11 -561.8550614105758 +663.8550614105758 21 198.25000000000003 31 @@ -12461,13 +12191,13 @@ LINE 8 0 10 -557.6050614105758 +659.6050614105758 20 155.25000000000003 30 0.0 11 -549.1050614105758 +651.1050614105757 21 155.25000000000003 31 @@ -12479,13 +12209,13 @@ LINE 8 0 10 -549.1050614105758 +651.1050614105757 20 155.25000000000003 30 0.0 11 -549.1050614105758 +651.1050614105757 21 154.75 31 @@ -12497,13 +12227,13 @@ LINE 8 0 10 -549.1050614105758 +651.1050614105757 20 154.75 30 0.0 11 -557.6050614105758 +659.6050614105758 21 154.75 31 @@ -12515,13 +12245,13 @@ LINE 8 0 10 -557.6050614105758 +659.6050614105758 20 154.75 30 0.0 11 -557.6050614105758 +659.6050614105758 21 155.25000000000003 31 @@ -12533,13 +12263,13 @@ LINE 8 0 10 -549.1050614105758 +651.1050614105757 20 203.00000000000003 30 0.0 11 -557.6050614105758 +659.6050614105758 21 203.00000000000003 31 @@ -12551,13 +12281,13 @@ LINE 8 0 10 -557.6050614105758 +659.6050614105758 20 203.00000000000003 30 0.0 11 -557.6050614105758 +659.6050614105758 21 203.50000000000003 31 @@ -12569,13 +12299,13 @@ LINE 8 0 10 -557.6050614105758 +659.6050614105758 20 203.50000000000003 30 0.0 11 -549.1050614105758 +651.1050614105757 21 203.50000000000003 31 @@ -12587,13 +12317,13 @@ LINE 8 0 10 -549.1050614105758 +651.1050614105757 20 203.50000000000003 30 0.0 11 -549.1050614105758 +651.1050614105757 21 203.00000000000003 31 @@ -12605,13 +12335,13 @@ LINE 8 0 10 -533.8550614105758 +635.8550614105758 20 158.59090909090912 30 0.0 11 -538.8550614105758 +640.8550614105758 21 158.59090909090912 31 @@ -12623,13 +12353,13 @@ LINE 8 0 10 -538.8550614105758 +640.8550614105758 20 158.59090909090912 30 0.0 11 -538.8550614105758 +640.8550614105758 21 169.68181818181822 31 @@ -12641,13 +12371,13 @@ LINE 8 0 10 -538.8550614105758 +640.8550614105758 20 169.68181818181822 30 0.0 11 -533.8550614105758 +635.8550614105758 21 169.68181818181822 31 @@ -12659,13 +12389,13 @@ LINE 8 0 10 -533.8550614105758 +635.8550614105758 20 186.31818181818184 30 0.0 11 -538.8550614105758 +640.8550614105758 21 186.31818181818184 31 @@ -12677,13 +12407,13 @@ LINE 8 0 10 -538.8550614105758 +640.8550614105758 20 186.31818181818184 30 0.0 11 -538.8550614105758 +640.8550614105758 21 197.40909090909093 31 @@ -12695,13 +12425,13 @@ LINE 8 0 10 -538.8550614105758 +640.8550614105758 20 197.40909090909093 30 0.0 11 -533.8550614105758 +635.8550614105758 21 197.40909090909093 31 @@ -12713,13 +12443,13 @@ LINE 8 0 10 -559.1050614105758 +661.1050614105757 20 131.50000000000003 30 0.0 11 -562.6050614105757 +664.6050614105758 21 131.50000000000003 31 @@ -12731,13 +12461,13 @@ LINE 8 0 10 -562.6050614105757 +664.6050614105758 20 131.50000000000003 30 0.0 11 -562.6050614105757 +664.6050614105758 21 139.50000000000003 31 @@ -12749,13 +12479,13 @@ LINE 8 0 10 -562.6050614105757 +664.6050614105758 20 139.50000000000003 30 0.0 11 -559.1050614105758 +661.1050614105757 21 139.50000000000003 31 diff --git a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg index 5b05bff0cf96e693866a2e1e5954238982b69e52..68b1c481fb725c0272990ffbcb94d152e7fbe84e 100644 --- a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg +++ b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg @@ -1,108 +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="480.500000mm" version="1.1" viewBox="0.000000 0.000000 709.355061 480.500000" width="709.355061mm"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="383.004790mm" version="1.1" viewBox="0.000000 0.000000 811.355061 383.004790" width="811.355061mm"> <defs/> - <line stroke="#000000" x1="255.02325267042647" x2="194.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="194.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="160.02325267042647" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="194.02325267042647" x2="184.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="135.50000000000003" y2="101.50000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.02325267042647" x2="160.02325267042647" y1="101.50000000000001" y2="135.50000000000003"/> - <line stroke="#000000" x1="160.02325267042647" x2="160.02325267042647" y1="65.5" y2="101.50000000000001"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.02325267042647" x2="184.02325267042647" y1="65.5" y2="65.5"/> - <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="101.50000000000001" y2="65.5"/> - <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="65.5" y2="20.5"/> - <line stroke="#000000" x1="160.02325267042647" x2="160.02325267042647" y1="20.5" y2="65.5"/> - <line stroke="#000000" x1="160.02325267042647" x2="160.02325267042647" y1="15.500000000000004" y2="20.5"/> - <line stroke="#000000" x1="184.02325267042647" x2="160.02325267042647" y1="15.500000000000004" y2="15.500000000000004"/> - <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="20.5" y2="15.500000000000004"/> - <line stroke="#000000" x1="160.02325267042647" x2="140.02325267042644" y1="101.50000000000001" y2="101.50000000000001"/> - <line stroke="#000000" x1="140.02325267042644" x2="160.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="140.02325267042644" x2="140.02325267042644" y1="101.50000000000001" y2="135.50000000000003"/> - <line stroke="#000000" x1="140.02325267042644" x2="116.02325267042646" y1="101.50000000000001" y2="101.50000000000001"/> - <line stroke="#000000" x1="116.02325267042646" x2="140.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="116.02325267042646" x2="116.02325267042646" y1="101.50000000000001" y2="135.50000000000003"/> - <line stroke="#000000" x1="116.02325267042646" x2="96.02325267042644" y1="101.50000000000001" y2="101.50000000000001"/> - <line stroke="#000000" x1="96.02325267042644" x2="116.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.02325267042644" x2="96.02325267042644" y1="135.50000000000003" y2="101.50000000000001"/> - <line stroke="#000000" x1="86.02325267042646" x2="96.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="101.50000000000001" y2="135.50000000000003"/> - <line stroke="#000000" x1="96.02325267042644" x2="86.02325267042646" y1="101.50000000000001" y2="101.50000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.02325267042647" x2="255.02325267042647" y1="99.36137800081471" y2="99.36137800081471"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="99.36137800081471"/> - <line stroke="#000000" x1="194.02325267042647" x2="194.02325267042647" y1="99.36137800081471" y2="135.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="194.02325267042647" y1="75.36137800081471" y2="75.36137800081471"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="255.02325267042647" y1="75.36137800081471" y2="99.36137800081471"/> - <line stroke="#000000" x1="194.02325267042647" x2="194.02325267042647" y1="39.22275600162939" y2="75.36137800081472"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="75.36137800081472" y2="39.22275600162939"/> - <line stroke="#000000" x1="194.02325267042647" x2="194.02325267042647" y1="29.222756001629396" y2="39.22275600162939"/> - <line stroke="#000000" x1="255.02325267042647" x2="194.02325267042647" y1="29.222756001629396" y2="29.222756001629396"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="39.22275600162939" y2="29.222756001629396"/> - <line stroke="#000000" x1="265.02325267042653" x2="255.02325267042647" y1="75.36137800081471" y2="75.36137800081471"/> - <line stroke="#000000" x1="265.02325267042653" x2="265.02325267042653" y1="99.36137800081471" y2="75.36137800081471"/> - <line stroke="#000000" x1="255.02325267042647" x2="265.02325267042653" y1="99.36137800081471" y2="99.36137800081471"/> - <line stroke="#000000" x1="184.02325267042647" x2="194.02325267042647" y1="99.36137800081471" y2="99.36137800081471"/> - <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="75.36137800081471" y2="99.36137800081471"/> - <line stroke="#000000" x1="194.02325267042647" x2="184.02325267042647" y1="75.36137800081471" y2="75.36137800081471"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="86.02325267042646" y1="205.50000000000003" y2="205.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="255.02325267042647" y1="205.50000000000003" y2="135.50000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="307.53762348858805" y1="135.50000000000003" y2="135.50000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="307.53762348858805" y1="205.50000000000003" y2="135.50000000000003"/> - <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="117.99520972727949" y2="135.50000000000003"/> - <line stroke="#000000" x1="307.53762348858805" x2="255.02325267042647" y1="117.99520972727949" y2="117.99520972727949"/> - <line stroke="#000000" x1="307.53762348858805" x2="307.53762348858805" y1="135.50000000000003" y2="117.99520972727949"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="322.2284003443256" y1="205.50000000000003" y2="185.91765779766357"/> - <line stroke="#000000" x1="322.2284003443256" x2="307.53762348858805" y1="185.91765779766357" y2="135.50000000000003"/> - <line stroke="#000000" x1="336.91917720006325" x2="322.2284003443256" y1="236.33531559532716" y2="185.91765779766357"/> - <line stroke="#000000" x1="341.0465053408527" x2="336.91917720006325" y1="250.50000000000003" y2="236.33531559532716"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="341.0465053408527" x2="255.02325267042647" y1="250.50000000000003" y2="205.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.0232526704265" x2="255.02325267042647" y1="250.50000000000003" y2="205.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042653" x2="255.0232526704265" y1="295.5" y2="250.50000000000006"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="341.0465053408528" x2="255.02325267042653" y1="250.50000000000003" y2="295.50000000000006"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="322.22840034432573" x2="255.0232526704265" y1="315.08234220233646" y2="295.50000000000006"/> - <line stroke="#000000" x1="336.9191772000633" x2="341.0465053408527" y1="264.6646844046729" y2="250.50000000000003"/> - <line stroke="#000000" x1="322.22840034432573" x2="336.9191772000633" y1="315.08234220233646" y2="264.6646844046729"/> - <line stroke="#000000" x1="307.53762348858817" x2="322.22840034432573" y1="365.50000000000006" y2="315.0823422023364"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="307.53762348858817" x2="255.02325267042653" y1="365.50000000000006" y2="295.50000000000006"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.0232526704266" x2="255.0232526704265" y1="365.5000000000001" y2="295.5"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="307.53762348858817" x2="255.0232526704266" y1="365.50000000000006" y2="365.5000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042653" x2="86.02325267042642" y1="295.5" y2="295.50000000000017"/> - <line stroke="#000000" x1="194.02325267042656" x2="255.0232526704266" y1="365.50000000000017" y2="365.5000000000001"/> - <line stroke="#000000" x1="86.02325267042649" x2="86.02325267042649" y1="365.5000000000003" y2="365.5000000000003"/> - <line stroke="#000000" x1="255.0232526704266" x2="255.0232526704266" y1="365.5000000000001" y2="365.5000000000001"/> - <line stroke="#000000" x1="255.0232526704266" x2="194.02325267042656" y1="365.5000000000001" y2="365.50000000000017"/> - <line stroke="#000000" x1="255.0232526704266" x2="255.0232526704266" y1="365.5000000000001" y2="365.5000000000001"/> - <line stroke="#000000" x1="86.0232526704265" x2="86.0232526704265" y1="365.5000000000003" y2="365.5000000000003"/> - <line stroke="#000000" x1="194.02325267042656" x2="255.0232526704266" y1="365.50000000000017" y2="365.5000000000001"/> - <line stroke="#000000" x1="184.02325267042656" x2="194.02325267042656" y1="365.50000000000017" y2="365.50000000000017"/> - <line stroke="#000000" x1="86.02325267042649" x2="160.02325267042656" y1="365.5000000000003" y2="365.50000000000017"/> - <line stroke="#000000" x1="86.02325267042649" x2="86.02325267042649" y1="365.5000000000003" y2="365.5000000000003"/> - <line stroke="#000000" x1="255.0232526704266" x2="255.0232526704266" y1="365.5000000000001" y2="365.5000000000001"/> - <line stroke="#000000" x1="184.0232526704266" x2="184.02325267042656" y1="399.5000000000001" y2="365.50000000000017"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.02325267042656" x2="160.0232526704266" y1="365.50000000000017" y2="399.5000000000001"/> - <line stroke="#000000" x1="184.02325267042661" x2="184.0232526704266" y1="435.50000000000017" y2="399.5000000000001"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.02325267042661" x2="160.0232526704266" y1="435.50000000000017" y2="435.50000000000017"/> - <line stroke="#000000" x1="160.02325267042656" x2="160.0232526704266" y1="399.5000000000001" y2="435.50000000000017"/> - <line stroke="#000000" x1="160.0232526704266" x2="160.02325267042661" y1="435.50000000000017" y2="480.50000000000017"/> - <line stroke="#000000" x1="184.02325267042667" x2="184.02325267042661" y1="480.50000000000017" y2="435.50000000000017"/> - <line stroke="#000000" x1="160.02325267042661" x2="184.02325267042667" y1="480.50000000000017" y2="480.50000000000017"/> - <line stroke="#000000" x1="160.02325267042656" x2="140.0232526704265" y1="365.50000000000017" y2="365.50000000000017"/> - <line stroke="#000000" x1="140.02325267042653" x2="160.02325267042656" y1="399.5000000000001" y2="399.5000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="140.0232526704265" x2="140.02325267042653" y1="365.50000000000017" y2="399.5000000000001"/> - <line stroke="#000000" x1="140.02325267042653" x2="116.02325267042652" y1="365.50000000000017" y2="365.50000000000017"/> - <line stroke="#000000" x1="116.02325267042656" x2="140.02325267042656" y1="399.5000000000001" y2="399.5000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="116.02325267042652" x2="116.02325267042656" y1="365.50000000000017" y2="399.5000000000001"/> - <line stroke="#000000" x1="116.02325267042652" x2="96.02325267042652" y1="365.50000000000017" y2="365.50000000000017"/> - <line stroke="#000000" x1="96.02325267042654" x2="116.02325267042654" y1="399.5000000000001" y2="399.5000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.02325267042654" x2="96.02325267042652" y1="399.5000000000001" y2="365.50000000000017"/> - <line stroke="#000000" x1="86.02325267042654" x2="96.02325267042654" y1="399.5000000000001" y2="399.5000000000001"/> - <line stroke="#000000" x1="86.02325267042652" x2="86.02325267042654" y1="365.50000000000017" y2="399.5000000000001"/> - <line stroke="#000000" x1="96.02325267042652" x2="86.02325267042652" y1="365.50000000000017" y2="365.50000000000017"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="86.02325267042642" x2="86.02325267042642" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="147.02325267042642" x2="86.02325267042642" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="181.02325267042644" x2="171.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="86.02325267042642" x2="86.02325267042642" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="147.02325267042642" x2="73.02325267042643" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="181.02325267042644" x2="171.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="171.02325267042644" x2="181.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="73.02325267042643" x2="147.02325267042642" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="73.02325267042643" x2="73.02325267042643" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="171.02325267042644" x2="171.02325267042644" y1="135.50000000000003" y2="101.50000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.02325267042642" x2="147.02325267042642" y1="101.50000000000001" y2="135.50000000000003"/> + <line stroke="#000000" x1="147.02325267042642" x2="147.02325267042642" y1="65.5" y2="101.50000000000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.02325267042642" x2="171.02325267042644" y1="65.5" y2="65.5"/> + <line stroke="#000000" x1="171.02325267042644" x2="171.02325267042644" y1="101.50000000000001" y2="65.5"/> + <line stroke="#000000" x1="171.02325267042644" x2="171.02325267042644" y1="65.5" y2="20.5"/> + <line stroke="#000000" x1="147.02325267042642" x2="147.02325267042642" y1="20.5" y2="65.5"/> + <line stroke="#000000" x1="147.02325267042642" x2="147.02325267042642" y1="15.500000000000004" y2="20.5"/> + <line stroke="#000000" x1="171.02325267042644" x2="147.02325267042642" y1="15.500000000000004" y2="15.500000000000004"/> + <line stroke="#000000" x1="171.02325267042644" x2="171.02325267042644" y1="20.5" y2="15.500000000000004"/> + <line stroke="#000000" x1="147.02325267042642" x2="127.02325267042643" y1="101.50000000000001" y2="101.50000000000001"/> + <line stroke="#000000" x1="127.02325267042643" x2="147.02325267042642" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="127.02325267042643" x2="127.02325267042643" y1="101.50000000000001" y2="135.50000000000003"/> + <line stroke="#000000" x1="127.02325267042643" x2="103.02325267042642" y1="101.50000000000001" y2="101.50000000000001"/> + <line stroke="#000000" x1="103.02325267042642" x2="127.02325267042643" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="103.02325267042642" x2="103.02325267042642" y1="101.50000000000001" y2="135.50000000000003"/> + <line stroke="#000000" x1="103.02325267042642" x2="83.02325267042643" y1="101.50000000000001" y2="101.50000000000001"/> + <line stroke="#000000" x1="83.02325267042643" x2="103.02325267042642" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="83.02325267042643" x2="83.02325267042643" y1="135.50000000000003" y2="101.50000000000001"/> + <line stroke="#000000" x1="73.02325267042643" x2="83.02325267042643" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="73.02325267042643" x2="73.02325267042643" y1="101.50000000000001" y2="135.50000000000003"/> + <line stroke="#000000" x1="83.02325267042643" x2="73.02325267042643" y1="101.50000000000001" y2="101.50000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="181.02325267042644" x2="242.02325267042644" y1="99.36137800081471" y2="99.36137800081471"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="135.50000000000003" y2="99.36137800081471"/> + <line stroke="#000000" x1="181.02325267042644" x2="181.02325267042644" y1="99.36137800081471" y2="135.50000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="242.02325267042644" x2="181.02325267042644" y1="75.36137800081471" y2="75.36137800081471"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="242.02325267042644" x2="242.02325267042644" y1="75.36137800081471" y2="99.36137800081471"/> + <line stroke="#000000" x1="181.02325267042644" x2="181.02325267042644" y1="39.22275600162939" y2="75.36137800081472"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="75.36137800081472" y2="39.22275600162939"/> + <line stroke="#000000" x1="181.02325267042644" x2="181.02325267042644" y1="29.222756001629396" y2="39.22275600162939"/> + <line stroke="#000000" x1="242.02325267042644" x2="181.02325267042644" y1="29.222756001629396" y2="29.222756001629396"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="39.22275600162939" y2="29.222756001629396"/> + <line stroke="#000000" x1="252.02325267042647" x2="242.02325267042644" y1="75.36137800081471" y2="75.36137800081471"/> + <line stroke="#000000" x1="252.02325267042647" x2="252.02325267042647" y1="99.36137800081471" y2="75.36137800081471"/> + <line stroke="#000000" x1="242.02325267042644" x2="252.02325267042647" y1="99.36137800081471" y2="99.36137800081471"/> + <line stroke="#000000" x1="171.02325267042644" x2="181.02325267042644" y1="99.36137800081471" y2="99.36137800081471"/> + <line stroke="#000000" x1="171.02325267042644" x2="171.02325267042644" y1="75.36137800081471" y2="99.36137800081471"/> + <line stroke="#000000" x1="181.02325267042644" x2="171.02325267042644" y1="75.36137800081471" y2="75.36137800081471"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="242.02325267042644" x2="86.02325267042642" y1="205.50000000000003" y2="205.50000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="242.02325267042644" x2="242.02325267042644" y1="205.50000000000003" y2="135.50000000000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="242.02325267042644" x2="294.53762348858805" y1="135.50000000000003" y2="135.50000000000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="242.02325267042644" x2="294.53762348858805" y1="205.50000000000003" y2="135.50000000000003"/> + <line stroke="#000000" x1="242.02325267042644" x2="242.02325267042644" y1="117.99520972727949" y2="135.50000000000003"/> + <line stroke="#000000" x1="294.53762348858805" x2="242.02325267042644" y1="117.99520972727949" y2="117.99520972727949"/> + <line stroke="#000000" x1="294.53762348858805" x2="294.53762348858805" y1="135.50000000000003" y2="117.99520972727949"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="242.02325267042644" x2="309.2284003443256" y1="205.50000000000003" y2="185.91765779766357"/> + <line stroke="#000000" x1="309.2284003443256" x2="294.53762348858805" y1="185.91765779766357" y2="135.50000000000003"/> + <line stroke="#000000" x1="323.9191772000632" x2="309.2284003443256" y1="236.33531559532716" y2="185.91765779766357"/> + <line stroke="#000000" x1="328.0465053408528" x2="323.9191772000632" y1="250.50000000000003" y2="236.33531559532716"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="328.0465053408528" x2="242.02325267042644" y1="250.50000000000003" y2="205.50000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="242.02325267042647" x2="242.02325267042644" y1="250.50000000000003" y2="205.50000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="242.0232526704265" x2="242.02325267042647" y1="295.5" y2="250.50000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="328.0465053408528" x2="242.0232526704265" y1="250.50000000000003" y2="295.50000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="309.22840034432573" x2="242.02325267042647" y1="315.08234220233646" y2="295.50000000000006"/> + <line stroke="#000000" x1="323.91917720006325" x2="328.0465053408528" y1="264.6646844046729" y2="250.50000000000003"/> + <line stroke="#000000" x1="309.22840034432573" x2="323.91917720006325" y1="315.08234220233646" y2="264.6646844046729"/> + <line stroke="#000000" x1="294.5376234885881" x2="309.22840034432573" y1="365.50000000000006" y2="315.0823422023364"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="294.5376234885881" x2="242.0232526704265" y1="365.50000000000006" y2="295.50000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="242.02325267042656" x2="242.02325267042647" y1="365.5000000000001" y2="295.5"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="294.5376234885881" x2="242.02325267042656" y1="365.50000000000006" y2="365.5000000000001"/> + <line stroke="#000000" x1="86.02325267042647" x2="242.02325267042656" y1="365.5000000000002" y2="365.5000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="242.0232526704265" x2="86.02325267042639" y1="295.50000000000006" y2="295.50000000000017"/> <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.0232526704264" x2="86.02325267042649" y1="295.50000000000017" y2="365.5000000000002"/> <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042649" x2="33.508881852264885" y1="365.5000000000003" y2="365.5000000000003"/> <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.0232526704264" x2="33.508881852264885" y1="295.5000000000002" y2="365.5000000000003"/> @@ -127,119 +99,76 @@ <line stroke="#000000" x1="33.50888185226451" x2="33.50888185226454" y1="117.9952097272797" y2="135.50000000000023"/> <line stroke="#000000" x1="86.02325267042612" x2="33.50888185226451" y1="117.9952097272796" y2="117.9952097272797"/> <line stroke="#000000" x1="86.02325267042615" x2="86.02325267042612" y1="135.5000000000001" y2="117.9952097272796"/> - <line stroke="#000000" x1="307.5376234885882" x2="307.53762348858817" y1="383.0047902727206" y2="365.50000000000006"/> - <line stroke="#000000" x1="255.02325267042661" x2="307.5376234885882" y1="383.00479027272064" y2="383.0047902727206"/> - <line stroke="#000000" x1="255.0232526704266" x2="255.02325267042661" y1="365.5000000000001" y2="383.00479027272064"/> - <line stroke="#888888" x1="232.5914344886083" x2="244.18234357951738" y1="127.75000000000001" y2="127.75000000000001"/> - <line stroke="#888888" x1="244.18234357951738" x2="244.18234357951738" y1="127.75000000000001" y2="128.25000000000003"/> - <line stroke="#888888" x1="244.18234357951738" x2="232.5914344886083" y1="128.25000000000003" y2="128.25000000000003"/> - <line stroke="#888888" x1="232.5914344886083" x2="232.5914344886083" y1="128.25000000000003" y2="127.75000000000001"/> - <line stroke="#888888" x1="204.86416176133557" x2="216.45507085224466" y1="127.75000000000001" y2="127.75000000000001"/> - <line stroke="#888888" x1="216.45507085224466" x2="216.45507085224466" y1="127.75000000000001" y2="128.25000000000003"/> - <line stroke="#888888" x1="216.45507085224466" x2="204.86416176133557" y1="128.25000000000003" y2="128.25000000000003"/> - <line stroke="#888888" x1="204.86416176133557" x2="204.86416176133557" y1="128.25000000000003" y2="127.75000000000001"/> - <line stroke="#888888" x1="176.27325267042647" x2="176.27325267042647" y1="124.41666666666669" y2="112.58333333333334"/> - <line stroke="#888888" x1="176.27325267042647" x2="176.77325267042644" y1="112.58333333333334" y2="112.58333333333334"/> - <line stroke="#888888" x1="176.77325267042644" x2="176.77325267042644" y1="112.58333333333334" y2="124.41666666666669"/> - <line stroke="#888888" x1="176.77325267042644" x2="176.27325267042647" y1="124.41666666666669" y2="124.41666666666669"/> - <line stroke="#888888" x1="176.02325267042647" x2="178.52325267042647" y1="16.750000000000004" y2="16.750000000000004"/> - <line stroke="#888888" x1="178.52325267042647" x2="176.02325267042647" y1="16.750000000000004" y2="19.250000000000004"/> - <line stroke="#888888" x1="176.02325267042647" x2="168.02325267042644" y1="19.250000000000004" y2="19.250000000000004"/> - <line stroke="#888888" x1="168.02325267042644" x2="165.52325267042644" y1="19.250000000000004" y2="16.750000000000004"/> - <line stroke="#888888" x1="165.52325267042644" x2="168.02325267042644" y1="16.750000000000004" y2="16.750000000000004"/> - <line stroke="#888888" x1="141.02325267042647" x2="145.02325267042644" y1="112.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="145.02325267042644" x2="145.02325267042644" y1="112.50000000000001" y2="124.50000000000001"/> - <line stroke="#888888" x1="145.02325267042644" x2="141.02325267042647" y1="124.50000000000001" y2="124.50000000000001"/> - <line stroke="#888888" x1="141.02325267042647" x2="141.02325267042647" y1="124.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="153.02325267042647" x2="157.02325267042647" y1="114.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="157.02325267042647" x2="157.02325267042647" y1="114.00000000000001" y2="123.00000000000001"/> - <line stroke="#888888" x1="157.02325267042647" x2="153.02325267042647" y1="123.00000000000001" y2="123.00000000000001"/> - <line stroke="#888888" x1="153.02325267042647" x2="153.02325267042647" y1="123.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="116.52325267042646" x2="139.52325267042647" y1="112.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="139.52325267042647" x2="139.52325267042647" y1="112.50000000000001" y2="124.50000000000001"/> - <line stroke="#888888" x1="139.52325267042647" x2="116.52325267042646" y1="124.50000000000001" y2="124.50000000000001"/> - <line stroke="#888888" x1="116.52325267042646" x2="116.52325267042646" y1="124.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="111.02325267042646" x2="115.02325267042646" y1="112.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="115.02325267042646" x2="115.02325267042646" y1="112.50000000000001" y2="124.50000000000001"/> - <line stroke="#888888" x1="115.02325267042646" x2="111.02325267042646" y1="124.50000000000001" y2="124.50000000000001"/> - <line stroke="#888888" x1="111.02325267042646" x2="111.02325267042646" y1="124.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="88.52325267042646" x2="93.52325267042646" y1="112.83333333333336" y2="112.83333333333336"/> - <line stroke="#888888" x1="93.52325267042646" x2="93.52325267042646" y1="112.83333333333336" y2="124.16666666666669"/> - <line stroke="#888888" x1="93.52325267042646" x2="88.52325267042646" y1="124.16666666666669" y2="124.16666666666669"/> - <line stroke="#888888" x1="212.02325267042647" x2="223.02325267042647" y1="80.86137800081471" y2="80.86137800081471"/> - <line stroke="#888888" x1="223.02325267042647" x2="223.02325267042647" y1="80.86137800081471" y2="93.86137800081471"/> - <line stroke="#888888" x1="223.02325267042647" x2="212.02325267042647" y1="93.86137800081471" y2="93.86137800081471"/> - <line stroke="#888888" x1="212.02325267042647" x2="212.02325267042647" y1="93.86137800081471" y2="80.86137800081471"/> - <line stroke="#888888" x1="243.52325267042647" x2="249.52325267042647" y1="82.36137800081471" y2="82.36137800081471"/> - <line stroke="#888888" x1="249.52325267042647" x2="249.52325267042647" y1="82.36137800081471" y2="92.36137800081471"/> - <line stroke="#888888" x1="249.52325267042647" x2="243.52325267042647" y1="92.36137800081471" y2="92.36137800081471"/> - <line stroke="#888888" x1="243.52325267042647" x2="243.52325267042647" y1="92.36137800081471" y2="82.36137800081471"/> - <line stroke="#888888" x1="243.93234357951738" x2="243.93234357951738" y1="31.722756001629396" y2="36.7227560016294"/> - <line stroke="#888888" x1="243.93234357951738" x2="232.8414344886083" y1="36.7227560016294" y2="36.7227560016294"/> - <line stroke="#888888" x1="232.8414344886083" x2="232.8414344886083" y1="36.7227560016294" y2="31.722756001629396"/> - <line stroke="#888888" x1="216.20507085224466" x2="216.20507085224466" y1="31.722756001629396" y2="36.7227560016294"/> - <line stroke="#888888" x1="216.20507085224466" x2="205.11416176133554" y1="36.7227560016294" y2="36.7227560016294"/> - <line stroke="#888888" x1="205.11416176133554" x2="205.11416176133554" y1="36.7227560016294" y2="31.722756001629396"/> - <line stroke="#888888" x1="262.52325267042653" x2="257.52325267042653" y1="91.36137800081471" y2="91.36137800081471"/> - <line stroke="#888888" x1="257.52325267042653" x2="257.52325267042653" y1="91.36137800081471" y2="83.36137800081471"/> - <line stroke="#888888" x1="257.52325267042653" x2="262.52325267042653" y1="83.36137800081471" y2="83.36137800081471"/> - <line stroke="#888888" x1="186.52325267042647" x2="191.52325267042647" y1="83.36137800081471" y2="83.36137800081471"/> - <line stroke="#888888" x1="191.52325267042647" x2="191.52325267042647" y1="83.36137800081471" y2="91.36137800081471"/> - <line stroke="#888888" x1="191.52325267042647" x2="186.52325267042647" y1="91.36137800081471" y2="91.36137800081471"/> - <line stroke="#888888" x1="290.0328332158675" x2="290.0328332158675" y1="122.37140729545962" y2="131.12380243181985"/> - <line stroke="#888888" x1="290.0328332158675" x2="272.52804294314694" y1="131.12380243181985" y2="131.12380243181988"/> - <line stroke="#888888" x1="272.52804294314694" x2="272.52804294314694" y1="131.12380243181988" y2="122.37140729545962"/> - <line stroke="#888888" x1="319.2477556839554" x2="314.2109561925024" y1="223.5120791976936" y2="206.22615649603978"/> - <line stroke="#888888" x1="314.2109561925024" x2="314.69099296160164" y1="206.22615649603978" y2="206.08628262316594"/> - <line stroke="#888888" x1="314.69099296160164" x2="319.72779245305475" y1="206.08628262316594" y2="223.37220532481973"/> - <line stroke="#888888" x1="319.72779245305475" x2="319.2477556839554" y1="223.37220532481973" y2="223.5120791976936"/> - <line stroke="#888888" x1="314.21095619250247" x2="319.24775568395546" y1="294.77384350396034" y2="277.4879208023065"/> - <line stroke="#888888" x1="319.24775568395546" x2="319.72779245305475" y1="277.4879208023065" y2="277.6277946751803"/> - <line stroke="#888888" x1="319.72779245305475" x2="314.69099296160164" y1="277.6277946751803" y2="294.91371737683414"/> - <line stroke="#888888" x1="314.69099296160164" x2="314.21095619250247" y1="294.91371737683414" y2="294.77384350396034"/> - <line stroke="#888888" x1="216.45507085224477" x2="204.86416176133565" y1="373.25000000000017" y2="373.25000000000017"/> - <line stroke="#888888" x1="204.86416176133565" x2="204.86416176133565" y1="373.25000000000017" y2="372.7500000000001"/> - <line stroke="#888888" x1="204.86416176133565" x2="216.45507085224477" y1="372.7500000000001" y2="372.7500000000001"/> - <line stroke="#888888" x1="216.45507085224477" x2="216.45507085224477" y1="372.7500000000001" y2="373.25000000000017"/> - <line stroke="#888888" x1="244.1823435795175" x2="232.5914344886084" y1="373.25000000000006" y2="373.25000000000017"/> - <line stroke="#888888" x1="232.5914344886084" x2="232.5914344886084" y1="373.25000000000017" y2="372.7500000000001"/> - <line stroke="#888888" x1="232.5914344886084" x2="244.1823435795175" y1="372.7500000000001" y2="372.75000000000006"/> - <line stroke="#888888" x1="244.1823435795175" x2="244.1823435795175" y1="372.75000000000006" y2="373.25000000000006"/> - <line stroke="#888888" x1="232.5914344886084" x2="244.1823435795175" y1="357.75000000000017" y2="357.7500000000001"/> - <line stroke="#888888" x1="244.1823435795175" x2="244.1823435795175" y1="357.7500000000001" y2="358.2500000000001"/> - <line stroke="#888888" x1="244.1823435795175" x2="232.5914344886084" y1="358.2500000000001" y2="358.25000000000017"/> - <line stroke="#888888" x1="232.5914344886084" x2="232.5914344886084" y1="358.25000000000017" y2="357.75000000000017"/> - <line stroke="#888888" x1="204.86416176133562" x2="216.45507085224475" y1="357.75000000000017" y2="357.75000000000017"/> - <line stroke="#888888" x1="216.45507085224475" x2="216.45507085224475" y1="357.75000000000017" y2="358.25000000000017"/> - <line stroke="#888888" x1="216.45507085224475" x2="204.86416176133562" y1="358.25000000000017" y2="358.25000000000017"/> - <line stroke="#888888" x1="204.86416176133562" x2="204.86416176133562" y1="358.25000000000017" y2="357.75000000000017"/> - <line stroke="#888888" x1="176.27325267042653" x2="176.27325267042653" y1="388.4166666666668" y2="376.5833333333335"/> - <line stroke="#888888" x1="176.27325267042653" x2="176.77325267042653" y1="376.5833333333335" y2="376.5833333333335"/> - <line stroke="#888888" x1="176.77325267042653" x2="176.77325267042653" y1="376.5833333333335" y2="388.4166666666668"/> - <line stroke="#888888" x1="176.77325267042653" x2="176.27325267042653" y1="388.4166666666668" y2="388.4166666666668"/> - <line stroke="#888888" x1="167.77325267042664" x2="176.27325267042661" y1="476.50000000000017" y2="476.50000000000017"/> - <line stroke="#888888" x1="176.27325267042661" x2="176.27325267042661" y1="476.50000000000017" y2="477.00000000000017"/> - <line stroke="#888888" x1="176.27325267042661" x2="167.77325267042664" y1="477.00000000000017" y2="477.00000000000017"/> - <line stroke="#888888" x1="167.77325267042664" x2="167.77325267042664" y1="477.00000000000017" y2="476.50000000000017"/> - <line stroke="#888888" x1="141.02325267042656" x2="145.02325267042653" y1="376.50000000000017" y2="376.50000000000017"/> - <line stroke="#888888" x1="145.02325267042653" x2="145.02325267042653" y1="376.50000000000017" y2="388.50000000000017"/> - <line stroke="#888888" x1="145.02325267042653" x2="141.02325267042656" y1="388.50000000000017" y2="388.50000000000017"/> - <line stroke="#888888" x1="141.02325267042656" x2="141.02325267042656" y1="388.50000000000017" y2="376.50000000000017"/> - <line stroke="#888888" x1="153.02325267042656" x2="157.02325267042656" y1="378.00000000000017" y2="378.00000000000017"/> - <line stroke="#888888" x1="157.02325267042656" x2="157.02325267042656" y1="378.00000000000017" y2="387.00000000000017"/> - <line stroke="#888888" x1="157.02325267042656" x2="153.02325267042656" y1="387.00000000000017" y2="387.00000000000017"/> - <line stroke="#888888" x1="153.02325267042656" x2="153.02325267042656" y1="387.00000000000017" y2="378.00000000000017"/> - <line stroke="#888888" x1="116.52325267042653" x2="139.52325267042656" y1="376.50000000000017" y2="376.50000000000017"/> - <line stroke="#888888" x1="139.52325267042656" x2="139.52325267042656" y1="376.50000000000017" y2="388.50000000000017"/> - <line stroke="#888888" x1="139.52325267042656" x2="116.52325267042654" y1="388.50000000000017" y2="388.50000000000017"/> - <line stroke="#888888" x1="116.52325267042654" x2="116.52325267042653" y1="388.50000000000017" y2="376.50000000000017"/> - <line stroke="#888888" x1="111.02325267042653" x2="115.02325267042653" y1="376.50000000000017" y2="376.50000000000017"/> - <line stroke="#888888" x1="115.02325267042653" x2="115.02325267042653" y1="376.50000000000017" y2="388.50000000000017"/> - <line stroke="#888888" x1="115.02325267042653" x2="111.02325267042654" y1="388.50000000000017" y2="388.50000000000017"/> - <line stroke="#888888" x1="111.02325267042654" x2="111.02325267042653" y1="388.50000000000017" y2="376.50000000000017"/> - <line stroke="#888888" x1="88.52325267042652" x2="93.5232526704265" y1="376.8333333333335" y2="376.8333333333335"/> - <line stroke="#888888" x1="93.5232526704265" x2="93.52325267042652" y1="376.8333333333335" y2="388.16666666666686"/> - <line stroke="#888888" x1="93.52325267042652" x2="88.52325267042653" y1="388.16666666666686" y2="388.16666666666686"/> + <line stroke="#000000" x1="294.5376234885881" x2="294.5376234885881" y1="383.0047902727206" y2="365.50000000000006"/> + <line stroke="#000000" x1="242.0232526704266" x2="294.5376234885881" y1="383.00479027272064" y2="383.0047902727206"/> + <line stroke="#000000" x1="242.02325267042656" x2="242.0232526704266" y1="365.5000000000001" y2="383.00479027272064"/> + <line stroke="#888888" x1="108.4550708522446" x2="96.86416176133552" y1="143.25" y2="143.25"/> + <line stroke="#888888" x1="96.86416176133552" x2="96.86416176133552" y1="143.25" y2="142.75000000000003"/> + <line stroke="#888888" x1="96.86416176133552" x2="108.4550708522446" y1="142.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="108.4550708522446" x2="108.4550708522446" y1="142.75000000000003" y2="143.25"/> + <line stroke="#888888" x1="136.18234357951735" x2="124.59143448860826" y1="143.25" y2="143.25"/> + <line stroke="#888888" x1="124.59143448860826" x2="124.59143448860826" y1="143.25" y2="142.75000000000003"/> + <line stroke="#888888" x1="124.59143448860826" x2="136.18234357951735" y1="142.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="136.18234357951735" x2="136.18234357951735" y1="142.75000000000003" y2="143.25"/> + <line stroke="#888888" x1="163.27325267042642" x2="163.27325267042642" y1="124.41666666666669" y2="112.58333333333334"/> + <line stroke="#888888" x1="163.27325267042642" x2="163.77325267042644" y1="112.58333333333334" y2="112.58333333333334"/> + <line stroke="#888888" x1="163.77325267042644" x2="163.77325267042644" y1="112.58333333333334" y2="124.41666666666669"/> + <line stroke="#888888" x1="163.77325267042644" x2="163.27325267042642" y1="124.41666666666669" y2="124.41666666666669"/> + <line stroke="#888888" x1="163.02325267042642" x2="165.52325267042642" y1="16.750000000000004" y2="16.750000000000004"/> + <line stroke="#888888" x1="165.52325267042642" x2="163.02325267042642" y1="16.750000000000004" y2="19.250000000000004"/> + <line stroke="#888888" x1="163.02325267042642" x2="155.02325267042644" y1="19.250000000000004" y2="19.250000000000004"/> + <line stroke="#888888" x1="155.02325267042644" x2="152.52325267042644" y1="19.250000000000004" y2="16.750000000000004"/> + <line stroke="#888888" x1="152.52325267042644" x2="155.02325267042644" y1="16.750000000000004" y2="16.750000000000004"/> + <line stroke="#888888" x1="128.02325267042644" x2="132.02325267042644" y1="112.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="132.02325267042644" x2="132.02325267042644" y1="112.50000000000001" y2="124.50000000000001"/> + <line stroke="#888888" x1="132.02325267042644" x2="128.02325267042644" y1="124.50000000000001" y2="124.50000000000001"/> + <line stroke="#888888" x1="128.02325267042644" x2="128.02325267042644" y1="124.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="140.02325267042644" x2="144.02325267042644" y1="114.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="144.02325267042644" x2="144.02325267042644" y1="114.00000000000001" y2="123.00000000000001"/> + <line stroke="#888888" x1="144.02325267042644" x2="140.02325267042644" y1="123.00000000000001" y2="123.00000000000001"/> + <line stroke="#888888" x1="140.02325267042644" x2="140.02325267042644" y1="123.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="103.52325267042643" x2="126.52325267042643" y1="112.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="126.52325267042643" x2="126.52325267042643" y1="112.50000000000001" y2="124.50000000000001"/> + <line stroke="#888888" x1="126.52325267042643" x2="103.52325267042643" y1="124.50000000000001" y2="124.50000000000001"/> + <line stroke="#888888" x1="103.52325267042643" x2="103.52325267042643" y1="124.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="98.02325267042643" x2="102.02325267042643" y1="112.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="102.02325267042643" x2="102.02325267042643" y1="112.50000000000001" y2="124.50000000000001"/> + <line stroke="#888888" x1="102.02325267042643" x2="98.02325267042643" y1="124.50000000000001" y2="124.50000000000001"/> + <line stroke="#888888" x1="98.02325267042643" x2="98.02325267042643" y1="124.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="75.52325267042642" x2="80.52325267042643" y1="112.83333333333336" y2="112.83333333333336"/> + <line stroke="#888888" x1="80.52325267042643" x2="80.52325267042643" y1="112.83333333333336" y2="124.16666666666669"/> + <line stroke="#888888" x1="80.52325267042643" x2="75.52325267042642" y1="124.16666666666669" y2="124.16666666666669"/> + <line stroke="#888888" x1="199.02325267042644" x2="210.02325267042644" y1="80.86137800081471" y2="80.86137800081471"/> + <line stroke="#888888" x1="210.02325267042644" x2="210.02325267042644" y1="80.86137800081471" y2="93.86137800081471"/> + <line stroke="#888888" x1="210.02325267042644" x2="199.02325267042644" y1="93.86137800081471" y2="93.86137800081471"/> + <line stroke="#888888" x1="199.02325267042644" x2="199.02325267042644" y1="93.86137800081471" y2="80.86137800081471"/> + <line stroke="#888888" x1="230.52325267042644" x2="236.52325267042644" y1="82.36137800081471" y2="82.36137800081471"/> + <line stroke="#888888" x1="236.52325267042644" x2="236.52325267042644" y1="82.36137800081471" y2="92.36137800081471"/> + <line stroke="#888888" x1="236.52325267042644" x2="230.52325267042644" y1="92.36137800081471" y2="92.36137800081471"/> + <line stroke="#888888" x1="230.52325267042644" x2="230.52325267042644" y1="92.36137800081471" y2="82.36137800081471"/> + <line stroke="#888888" x1="230.93234357951735" x2="230.93234357951735" y1="31.722756001629396" y2="36.7227560016294"/> + <line stroke="#888888" x1="230.93234357951735" x2="219.84143448860826" y1="36.7227560016294" y2="36.7227560016294"/> + <line stroke="#888888" x1="219.84143448860826" x2="219.84143448860826" y1="36.7227560016294" y2="31.722756001629396"/> + <line stroke="#888888" x1="203.20507085224463" x2="203.20507085224463" y1="31.722756001629396" y2="36.7227560016294"/> + <line stroke="#888888" x1="203.20507085224463" x2="192.11416176133554" y1="36.7227560016294" y2="36.7227560016294"/> + <line stroke="#888888" x1="192.11416176133554" x2="192.11416176133554" y1="36.7227560016294" y2="31.722756001629396"/> + <line stroke="#888888" x1="249.52325267042644" x2="244.52325267042644" y1="91.36137800081471" y2="91.36137800081471"/> + <line stroke="#888888" x1="244.52325267042644" x2="244.52325267042644" y1="91.36137800081471" y2="83.36137800081471"/> + <line stroke="#888888" x1="244.52325267042644" x2="249.52325267042644" y1="83.36137800081471" y2="83.36137800081471"/> + <line stroke="#888888" x1="173.52325267042644" x2="178.52325267042644" y1="83.36137800081471" y2="83.36137800081471"/> + <line stroke="#888888" x1="178.52325267042644" x2="178.52325267042644" y1="83.36137800081471" y2="91.36137800081471"/> + <line stroke="#888888" x1="178.52325267042644" x2="173.52325267042644" y1="91.36137800081471" y2="91.36137800081471"/> + <line stroke="#888888" x1="277.03283321586747" x2="277.03283321586747" y1="122.37140729545962" y2="131.12380243181985"/> + <line stroke="#888888" x1="277.03283321586747" x2="259.52804294314694" y1="131.12380243181985" y2="131.12380243181988"/> + <line stroke="#888888" x1="259.52804294314694" x2="259.52804294314694" y1="131.12380243181988" y2="122.37140729545962"/> + <line stroke="#888888" x1="306.2477556839554" x2="301.21095619250235" y1="223.5120791976936" y2="206.22615649603978"/> + <line stroke="#888888" x1="301.21095619250235" x2="301.6909929616017" y1="206.22615649603978" y2="206.08628262316594"/> + <line stroke="#888888" x1="301.6909929616017" x2="306.7277924530547" y1="206.08628262316594" y2="223.37220532481973"/> + <line stroke="#888888" x1="306.7277924530547" x2="306.2477556839554" y1="223.37220532481973" y2="223.5120791976936"/> + <line stroke="#888888" x1="301.2109561925024" x2="306.2477556839554" y1="294.77384350396034" y2="277.4879208023065"/> + <line stroke="#888888" x1="306.2477556839554" x2="306.72779245305475" y1="277.4879208023065" y2="277.6277946751803"/> + <line stroke="#888888" x1="306.72779245305475" x2="301.6909929616017" y1="277.6277946751803" y2="294.91371737683414"/> + <line stroke="#888888" x1="301.6909929616017" x2="301.2109561925024" y1="294.91371737683414" y2="294.77384350396034"/> <line stroke="#888888" x1="51.01367212498543" x2="51.013672124985426" y1="378.6285927045407" y2="369.87619756818043"/> <line stroke="#888888" x1="51.013672124985426" x2="68.51846239770595" y1="369.87619756818043" y2="369.87619756818043"/> <line stroke="#888888" x1="68.51846239770595" x2="68.51846239770595" y1="369.87619756818043" y2="378.6285927045407"/> @@ -254,402 +183,458 @@ <line stroke="#888888" x1="68.51846239770559" x2="68.51846239770562" y1="122.37140729545976" y2="131.12380243182005"/> <line stroke="#888888" x1="68.51846239770562" x2="51.01367212498507" y1="131.12380243182005" y2="131.12380243182008"/> <line stroke="#888888" x1="51.01367212498507" x2="51.01367212498506" y1="131.12380243182008" y2="122.3714072954598"/> - <line stroke="#888888" x1="272.52804294314706" x2="272.52804294314706" y1="378.6285927045405" y2="369.87619756818015"/> - <line stroke="#888888" x1="272.52804294314706" x2="290.03283321586764" y1="369.87619756818015" y2="369.87619756818015"/> - <line stroke="#888888" x1="290.03283321586764" x2="290.03283321586764" y1="369.87619756818015" y2="378.6285927045405"/> - <line stroke="#000000" x1="511.3550614105758" x2="449.7007833757143" y1="105.00000000000001" y2="105.00000000000001"/> - <line stroke="#000000" x1="449.7007833757143" x2="511.3550614105758" y1="166.0" y2="166.0"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="449.7007833757143" x2="449.7007833757143" y1="166.0" y2="105.00000000000001"/> - <line stroke="#000000" x1="521.3550614105757" x2="511.3550614105758" y1="105.00000000000001" y2="105.00000000000001"/> - <line stroke="#000000" x1="521.3550614105757" x2="521.3550614105757" y1="166.0" y2="105.00000000000001"/> - <line stroke="#000000" x1="511.3550614105758" x2="521.3550614105757" y1="166.0" y2="166.0"/> - <line stroke="#000000" x1="422.7007833757143" x2="449.7007833757143" y1="166.0" y2="166.0"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.7007833757143" x2="422.7007833757143" y1="105.00000000000001" y2="166.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="449.7007833757143" x2="422.7007833757143" y1="105.00000000000001" y2="105.00000000000001"/> - <line stroke="#000000" x1="361.0465053408529" x2="422.7007833757143" y1="166.0" y2="166.0"/> - <line stroke="#000000" x1="422.7007833757143" x2="361.0465053408529" y1="105.00000000000001" y2="105.00000000000001"/> - <line stroke="#000000" x1="351.0465053408529" x2="361.0465053408529" y1="166.0" y2="166.0"/> - <line stroke="#000000" x1="351.0465053408529" x2="351.0465053408529" y1="105.00000000000001" y2="166.0"/> - <line stroke="#000000" x1="361.0465053408529" x2="351.0465053408529" y1="105.00000000000001" y2="105.00000000000001"/> - <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="105.00000000000001" y2="88.00000000000001"/> - <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="88.00000000000001" y2="105.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="449.7007833757143" x2="422.7007833757143" y1="88.00000000000001" y2="88.00000000000001"/> - <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="88.00000000000001" y2="27.000000000000004"/> - <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="27.000000000000004" y2="88.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="449.7007833757143" x2="422.7007833757143" y1="27.000000000000004" y2="27.000000000000004"/> - <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="27.000000000000004" y2="10.000000000000002"/> - <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="10.000000000000002" y2="27.000000000000004"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.7007833757143" x2="449.7007833757143" y1="10.000000000000002" y2="10.000000000000002"/> - <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="0.0" y2="10.000000000000002"/> - <line stroke="#000000" x1="449.7007833757143" x2="422.7007833757143" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="10.000000000000002" y2="0.0"/> - <line stroke="#888888" x1="518.8550614105758" x2="513.8550614105758" y1="154.90909090909093" y2="154.90909090909093"/> - <line stroke="#888888" x1="513.8550614105758" x2="513.8550614105758" y1="154.90909090909093" y2="143.8181818181818"/> - <line stroke="#888888" x1="513.8550614105758" x2="518.8550614105758" y1="143.8181818181818" y2="143.8181818181818"/> - <line stroke="#888888" x1="518.8550614105758" x2="513.8550614105758" y1="127.1818181818182" y2="127.1818181818182"/> - <line stroke="#888888" x1="513.8550614105758" x2="513.8550614105758" y1="127.1818181818182" y2="116.09090909090911"/> - <line stroke="#888888" x1="513.8550614105758" x2="518.8550614105758" y1="116.09090909090911" y2="116.09090909090911"/> - <line stroke="#888888" x1="445.2007833757143" x2="445.2007833757143" y1="102.50000000000001" y2="108.50000000000001"/> - <line stroke="#888888" x1="445.2007833757143" x2="427.2007833757143" y1="108.50000000000001" y2="108.50000000000001"/> - <line stroke="#888888" x1="427.2007833757143" x2="427.2007833757143" y1="108.50000000000001" y2="102.50000000000001"/> - <line stroke="#888888" x1="427.2007833757143" x2="445.2007833757143" y1="102.50000000000001" y2="102.50000000000001"/> - <line stroke="#888888" x1="431.4507833757143" x2="440.9507833757143" y1="158.25000000000003" y2="158.25000000000003"/> - <line stroke="#888888" x1="440.9507833757143" x2="440.9507833757143" y1="158.25000000000003" y2="158.75000000000003"/> - <line stroke="#888888" x1="440.9507833757143" x2="431.4507833757143" y1="158.75000000000003" y2="158.75000000000003"/> - <line stroke="#888888" x1="431.4507833757143" x2="431.4507833757143" y1="158.75000000000003" y2="158.25000000000003"/> - <line stroke="#888888" x1="353.54650534085283" x2="358.54650534085283" y1="116.09090909090911" y2="116.09090909090911"/> - <line stroke="#888888" x1="358.54650534085283" x2="358.54650534085283" y1="116.09090909090911" y2="127.18181818181822"/> - <line stroke="#888888" x1="358.54650534085283" x2="353.54650534085283" y1="127.18181818181822" y2="127.18181818181822"/> - <line stroke="#888888" x1="353.54650534085283" x2="358.54650534085283" y1="143.81818181818184" y2="143.81818181818184"/> - <line stroke="#888888" x1="358.54650534085283" x2="358.54650534085283" y1="143.81818181818184" y2="154.90909090909093"/> - <line stroke="#888888" x1="358.54650534085283" x2="353.54650534085283" y1="154.90909090909093" y2="154.90909090909093"/> - <line stroke="#888888" x1="440.7007833757143" x2="440.7007833757143" y1="2.5000000000000004" y2="7.500000000000001"/> - <line stroke="#888888" x1="440.7007833757143" x2="431.7007833757143" y1="7.500000000000001" y2="7.500000000000001"/> - <line stroke="#888888" x1="431.7007833757143" x2="431.7007833757143" y1="7.500000000000001" y2="2.5000000000000004"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="564.3550614105757" x2="625.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="625.3550614105758" x2="625.3550614105758" y1="123.50000000000001" y2="147.5"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="625.3550614105758" x2="564.3550614105757" y1="147.5" y2="147.5"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="564.3550614105757" x2="564.3550614105757" y1="147.5" y2="123.50000000000001"/> - <line stroke="#000000" x1="564.3550614105757" x2="564.3550614105757" y1="116.50000000000001" y2="123.50000000000001"/> - <line stroke="#000000" x1="624.3550614105758" x2="564.3550614105757" y1="116.50000000000001" y2="116.50000000000001"/> - <line stroke="#000000" x1="624.3550614105758" x2="624.3550614105758" y1="123.50000000000001" y2="116.50000000000001"/> - <line stroke="#000000" x1="632.3550614105758" x2="625.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> - <line stroke="#000000" x1="632.3550614105758" x2="632.3550614105758" y1="147.5" y2="123.50000000000001"/> - <line stroke="#000000" x1="625.3550614105758" x2="632.3550614105758" y1="147.5" y2="147.5"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="625.3550614105758" x2="625.3550614105758" y1="147.5" y2="208.50000000000003"/> - <line stroke="#000000" x1="565.3550614105757" x2="625.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="565.3550614105757" x2="565.3550614105757" y1="147.5" y2="208.50000000000003"/> - <line stroke="#000000" x1="649.3550614105757" x2="625.3550614105758" y1="147.5" y2="147.5"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="649.3550614105757" x2="649.3550614105757" y1="147.5" y2="208.50000000000003"/> - <line stroke="#000000" x1="625.3550614105758" x2="649.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/> - <line stroke="#000000" x1="709.3550614105758" x2="649.3550614105757" y1="147.5" y2="147.5"/> - <line stroke="#000000" x1="709.3550614105758" x2="709.3550614105758" y1="208.50000000000003" y2="147.5"/> - <line stroke="#000000" x1="649.3550614105757" x2="709.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/> - <line stroke="#000000" x1="565.3550614105757" x2="541.3550614105758" y1="147.5" y2="147.5"/> - <line stroke="#000000" x1="541.3550614105758" x2="565.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="541.3550614105758" x2="541.3550614105758" y1="208.50000000000003" y2="147.5"/> - <line stroke="#000000" x1="531.3550614105757" x2="541.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/> - <line stroke="#000000" x1="531.3550614105757" x2="531.3550614105757" y1="147.5" y2="208.50000000000003"/> - <line stroke="#000000" x1="541.3550614105758" x2="531.3550614105757" y1="147.5" y2="147.5"/> - <line stroke="#000000" x1="557.3550614105757" x2="564.3550614105757" y1="147.5" y2="147.5"/> - <line stroke="#000000" x1="557.3550614105757" x2="557.3550614105757" y1="123.50000000000001" y2="147.5"/> - <line stroke="#000000" x1="564.3550614105757" x2="557.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/> - <line stroke="#888888" x1="613.4459705014848" x2="616.9459705014849" y1="118.25000000000001" y2="118.25000000000001"/> - <line stroke="#888888" x1="616.9459705014849" x2="613.4459705014848" y1="118.25000000000001" y2="121.75000000000001"/> - <line stroke="#888888" x1="613.4459705014848" x2="602.5368795923939" y1="121.75000000000001" y2="121.75000000000001"/> - <line stroke="#888888" x1="602.5368795923939" x2="599.0368795923939" y1="121.75000000000001" y2="118.25000000000001"/> - <line stroke="#888888" x1="599.0368795923939" x2="602.5368795923939" y1="118.25000000000001" y2="118.25000000000001"/> - <line stroke="#888888" x1="586.1732432287575" x2="589.6732432287577" y1="118.25000000000001" y2="118.25000000000001"/> - <line stroke="#888888" x1="589.6732432287577" x2="586.1732432287575" y1="118.25000000000001" y2="121.75000000000001"/> - <line stroke="#888888" x1="586.1732432287575" x2="575.2641523196667" y1="121.75000000000001" y2="121.75000000000001"/> - <line stroke="#888888" x1="575.2641523196667" x2="571.7641523196666" y1="121.75000000000001" y2="118.25000000000001"/> - <line stroke="#888888" x1="571.7641523196666" x2="575.2641523196667" y1="118.25000000000001" y2="118.25000000000001"/> - <line stroke="#888888" x1="630.6050614105758" x2="627.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/> - <line stroke="#888888" x1="627.1050614105758" x2="627.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/> - <line stroke="#888888" x1="627.1050614105758" x2="630.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/> - <line stroke="#888888" x1="572.8550614105758" x2="572.8550614105758" y1="199.00000000000003" y2="181.00000000000003"/> - <line stroke="#888888" x1="572.8550614105758" x2="607.8550614105758" y1="181.00000000000003" y2="181.00000000000003"/> - <line stroke="#888888" x1="607.8550614105758" x2="607.8550614105758" y1="181.00000000000003" y2="199.00000000000003"/> - <line stroke="#888888" x1="607.8550614105758" x2="572.8550614105758" y1="199.00000000000003" y2="199.00000000000003"/> - <line stroke="#888888" x1="625.8550614105758" x2="625.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/> - <line stroke="#888888" x1="625.8550614105758" x2="628.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/> - <line stroke="#888888" x1="628.8550614105757" x2="628.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="628.8550614105757" x2="625.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="162.25000000000003" y2="161.25"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="161.25" y2="161.25"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="161.25" y2="162.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="162.25000000000003" y2="161.25"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="161.25" y2="161.25"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="161.25" y2="162.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="164.75000000000003" y2="163.75"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="163.75" y2="163.75"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="163.75" y2="164.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="164.75000000000003" y2="163.75"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="163.75" y2="163.75"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="163.75" y2="164.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="167.25000000000003" y2="166.25"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="166.25" y2="166.25"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="166.25" y2="167.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="167.25000000000003" y2="166.25"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="166.25" y2="166.25"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="166.25" y2="167.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="177.25" y2="176.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="176.25000000000003" y2="177.25"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="177.25" y2="177.25"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="177.25" y2="176.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="176.25000000000003" y2="177.25"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="177.25" y2="177.25"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="179.75" y2="178.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="178.75000000000003" y2="179.75"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="179.75" y2="179.75"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="179.75" y2="178.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="178.75000000000003" y2="179.75"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="179.75" y2="179.75"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="182.25" y2="181.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="181.25000000000003" y2="182.25"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="182.25" y2="182.25"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="182.25" y2="181.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="181.25000000000003" y2="182.25"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="182.25" y2="182.25"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="189.75000000000003" y2="188.75"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="188.75" y2="188.75"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="188.75" y2="189.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="189.75000000000003" y2="188.75"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="188.75" y2="188.75"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="188.75" y2="189.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="192.25000000000003" y2="191.25"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="191.25" y2="191.25"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="191.25" y2="192.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="192.25000000000003" y2="191.25"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="191.25" y2="191.25"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="191.25" y2="192.25000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/> - <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/> - <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/> - <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/> - <line stroke="#888888" x1="645.8550614105758" x2="648.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/> - <line stroke="#888888" x1="648.8550614105757" x2="648.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/> - <line stroke="#888888" x1="648.8550614105757" x2="645.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/> - <line stroke="#888888" x1="641.6050614105758" x2="633.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/> - <line stroke="#888888" x1="633.1050614105757" x2="633.1050614105757" y1="155.25000000000003" y2="154.75"/> - <line stroke="#888888" x1="633.1050614105757" x2="641.6050614105758" y1="154.75" y2="154.75"/> - <line stroke="#888888" x1="641.6050614105758" x2="641.6050614105758" y1="154.75" y2="155.25000000000003"/> - <line stroke="#888888" x1="633.1050614105757" x2="641.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/> - <line stroke="#888888" x1="641.6050614105758" x2="641.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/> - <line stroke="#888888" x1="641.6050614105758" x2="633.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/> - <line stroke="#888888" x1="633.1050614105757" x2="633.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/> - <line stroke="#888888" x1="664.3550614105758" x2="664.3550614105758" y1="198.50000000000003" y2="185.50000000000003"/> - <line stroke="#888888" x1="664.3550614105758" x2="694.3550614105757" y1="185.50000000000003" y2="185.50000000000003"/> - <line stroke="#888888" x1="694.3550614105757" x2="694.3550614105757" y1="185.50000000000003" y2="198.50000000000003"/> - <line stroke="#888888" x1="694.3550614105757" x2="664.3550614105758" y1="198.50000000000003" y2="198.50000000000003"/> - <line stroke="#888888" x1="671.4232432287575" x2="660.0141523196667" y1="153.00000000000003" y2="153.00000000000003"/> - <line stroke="#888888" x1="660.0141523196667" x2="660.0141523196667" y1="153.00000000000003" y2="152.5"/> - <line stroke="#888888" x1="660.0141523196667" x2="671.4232432287575" y1="152.5" y2="152.5"/> - <line stroke="#888888" x1="671.4232432287575" x2="671.4232432287575" y1="152.5" y2="153.00000000000003"/> - <line stroke="#888888" x1="698.6959705014849" x2="687.2868795923938" y1="153.00000000000003" y2="153.00000000000003"/> - <line stroke="#888888" x1="687.2868795923938" x2="687.2868795923938" y1="153.00000000000003" y2="152.5"/> - <line stroke="#888888" x1="687.2868795923938" x2="698.6959705014849" y1="152.5" y2="152.5"/> - <line stroke="#888888" x1="698.6959705014849" x2="698.6959705014849" y1="152.5" y2="153.00000000000003"/> - <line stroke="#888888" x1="701.6050614105758" x2="701.6050614105758" y1="169.93181818181822" y2="158.3409090909091"/> - <line stroke="#888888" x1="701.6050614105758" x2="702.1050614105758" y1="158.3409090909091" y2="158.3409090909091"/> - <line stroke="#888888" x1="702.1050614105758" x2="702.1050614105758" y1="158.3409090909091" y2="169.93181818181822"/> - <line stroke="#888888" x1="702.1050614105758" x2="701.6050614105758" y1="169.93181818181822" y2="169.93181818181822"/> - <line stroke="#888888" x1="701.6050614105758" x2="701.6050614105758" y1="197.65909090909093" y2="186.06818181818184"/> - <line stroke="#888888" x1="701.6050614105758" x2="702.1050614105758" y1="186.06818181818184" y2="186.06818181818184"/> - <line stroke="#888888" x1="702.1050614105758" x2="702.1050614105758" y1="186.06818181818184" y2="197.65909090909093"/> - <line stroke="#888888" x1="702.1050614105758" x2="701.6050614105758" y1="197.65909090909093" y2="197.65909090909093"/> - <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/> - <line stroke="#888888" x1="541.8550614105758" x2="544.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/> - <line stroke="#888888" x1="544.8550614105758" x2="544.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="544.8550614105758" x2="541.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="162.25000000000003" y2="161.25"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="161.25" y2="161.25"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="161.25" y2="162.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="162.25000000000003" y2="161.25"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="161.25" y2="161.25"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="161.25" y2="162.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="164.75000000000003" y2="163.75"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="163.75" y2="163.75"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="163.75" y2="164.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="164.75000000000003" y2="163.75"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="163.75" y2="163.75"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="163.75" y2="164.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="167.25000000000003" y2="166.25"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="166.25" y2="166.25"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="166.25" y2="167.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="167.25000000000003" y2="166.25"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="166.25" y2="166.25"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="166.25" y2="167.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="177.25" y2="176.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="176.25000000000003" y2="177.25"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="177.25" y2="177.25"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="177.25" y2="176.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="176.25000000000003" y2="177.25"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="177.25" y2="177.25"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="179.75" y2="178.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="178.75000000000003" y2="179.75"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="179.75" y2="179.75"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="179.75" y2="178.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="178.75000000000003" y2="179.75"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="179.75" y2="179.75"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="182.25" y2="181.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="181.25000000000003" y2="182.25"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="182.25" y2="182.25"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="182.25" y2="181.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="181.25000000000003" y2="182.25"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="182.25" y2="182.25"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="189.75000000000003" y2="188.75"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="188.75" y2="188.75"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="188.75" y2="189.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="189.75000000000003" y2="188.75"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="188.75" y2="188.75"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="188.75" y2="189.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="192.25000000000003" y2="191.25"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="191.25" y2="191.25"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="191.25" y2="192.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="192.25000000000003" y2="191.25"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="191.25" y2="191.25"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="191.25" y2="192.25000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/> - <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/> - <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/> - <line stroke="#888888" x1="561.8550614105758" x2="561.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/> - <line stroke="#888888" x1="561.8550614105758" x2="564.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/> - <line stroke="#888888" x1="564.8550614105757" x2="564.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/> - <line stroke="#888888" x1="564.8550614105757" x2="561.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/> - <line stroke="#888888" x1="557.6050614105758" x2="549.1050614105758" y1="155.25000000000003" y2="155.25000000000003"/> - <line stroke="#888888" x1="549.1050614105758" x2="549.1050614105758" y1="155.25000000000003" y2="154.75"/> - <line stroke="#888888" x1="549.1050614105758" x2="557.6050614105758" y1="154.75" y2="154.75"/> - <line stroke="#888888" x1="557.6050614105758" x2="557.6050614105758" y1="154.75" y2="155.25000000000003"/> - <line stroke="#888888" x1="549.1050614105758" x2="557.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/> - <line stroke="#888888" x1="557.6050614105758" x2="557.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/> - <line stroke="#888888" x1="557.6050614105758" x2="549.1050614105758" y1="203.50000000000003" y2="203.50000000000003"/> - <line stroke="#888888" x1="549.1050614105758" x2="549.1050614105758" y1="203.50000000000003" y2="203.00000000000003"/> - <line stroke="#888888" x1="533.8550614105758" x2="538.8550614105758" y1="158.59090909090912" y2="158.59090909090912"/> - <line stroke="#888888" x1="538.8550614105758" x2="538.8550614105758" y1="158.59090909090912" y2="169.68181818181822"/> - <line stroke="#888888" x1="538.8550614105758" x2="533.8550614105758" y1="169.68181818181822" y2="169.68181818181822"/> - <line stroke="#888888" x1="533.8550614105758" x2="538.8550614105758" y1="186.31818181818184" y2="186.31818181818184"/> - <line stroke="#888888" x1="538.8550614105758" x2="538.8550614105758" y1="186.31818181818184" y2="197.40909090909093"/> - <line stroke="#888888" x1="538.8550614105758" x2="533.8550614105758" y1="197.40909090909093" y2="197.40909090909093"/> - <line stroke="#888888" x1="559.1050614105758" x2="562.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/> - <line stroke="#888888" x1="562.6050614105757" x2="562.6050614105757" y1="131.50000000000003" y2="139.50000000000003"/> - <line stroke="#888888" x1="562.6050614105757" x2="559.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/> + <line stroke="#888888" x1="259.52804294314706" x2="259.52804294314706" y1="378.6285927045405" y2="369.87619756818015"/> + <line stroke="#888888" x1="259.52804294314706" x2="277.0328332158676" y1="369.87619756818015" y2="369.87619756818015"/> + <line stroke="#888888" x1="277.0328332158676" x2="277.0328332158676" y1="369.87619756818015" y2="378.6285927045405"/> + <line stroke="#000000" x1="488.3550614105757" x2="426.7007833757142" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="426.7007833757142" x2="488.3550614105757" y1="166.0" y2="166.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="426.7007833757142" x2="426.7007833757142" y1="166.0" y2="105.00000000000001"/> + <line stroke="#000000" x1="498.3550614105757" x2="488.3550614105757" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="498.3550614105757" x2="498.3550614105757" y1="166.0" y2="105.00000000000001"/> + <line stroke="#000000" x1="488.3550614105757" x2="498.3550614105757" y1="166.0" y2="166.0"/> + <line stroke="#000000" x1="399.7007833757142" x2="426.7007833757142" y1="166.0" y2="166.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="399.7007833757142" x2="399.7007833757142" y1="105.00000000000001" y2="166.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="426.7007833757142" x2="399.7007833757142" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="338.0465053408528" x2="399.7007833757142" y1="166.0" y2="166.0"/> + <line stroke="#000000" x1="338.0465053408528" x2="338.0465053408528" y1="105.00000000000001" y2="166.0"/> + <line stroke="#000000" x1="399.7007833757142" x2="338.0465053408528" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#000000" x1="426.7007833757142" x2="426.7007833757142" y1="105.00000000000001" y2="88.00000000000001"/> + <line stroke="#000000" x1="399.7007833757142" x2="399.7007833757142" y1="88.00000000000001" y2="105.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="426.7007833757142" x2="399.7007833757142" y1="88.00000000000001" y2="88.00000000000001"/> + <line stroke="#000000" x1="426.7007833757142" x2="426.7007833757142" y1="88.00000000000001" y2="27.000000000000004"/> + <line stroke="#000000" x1="399.7007833757142" x2="399.7007833757142" y1="27.000000000000004" y2="88.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="426.7007833757142" x2="399.7007833757142" y1="27.000000000000004" y2="27.000000000000004"/> + <line stroke="#000000" x1="426.7007833757142" x2="426.7007833757142" y1="27.000000000000004" y2="10.000000000000002"/> + <line stroke="#000000" x1="399.7007833757142" x2="399.7007833757142" y1="10.000000000000002" y2="27.000000000000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="399.7007833757142" x2="426.7007833757142" y1="10.000000000000002" y2="10.000000000000002"/> + <line stroke="#000000" x1="399.7007833757142" x2="399.7007833757142" y1="0.0" y2="10.000000000000002"/> + <line stroke="#000000" x1="426.7007833757142" x2="399.7007833757142" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="426.7007833757142" x2="426.7007833757142" y1="10.000000000000002" y2="0.0"/> + <line stroke="#888888" x1="495.8550614105757" x2="490.8550614105757" y1="154.90909090909093" y2="154.90909090909093"/> + <line stroke="#888888" x1="490.8550614105757" x2="490.8550614105757" y1="154.90909090909093" y2="143.8181818181818"/> + <line stroke="#888888" x1="490.8550614105757" x2="495.8550614105757" y1="143.8181818181818" y2="143.8181818181818"/> + <line stroke="#888888" x1="495.8550614105757" x2="490.8550614105757" y1="127.1818181818182" y2="127.1818181818182"/> + <line stroke="#888888" x1="490.8550614105757" x2="490.8550614105757" y1="127.1818181818182" y2="116.09090909090911"/> + <line stroke="#888888" x1="490.8550614105757" x2="495.8550614105757" y1="116.09090909090911" y2="116.09090909090911"/> + <line stroke="#888888" x1="422.2007833757142" x2="422.2007833757142" y1="102.50000000000001" y2="108.50000000000001"/> + <line stroke="#888888" x1="422.2007833757142" x2="404.2007833757142" y1="108.50000000000001" y2="108.50000000000001"/> + <line stroke="#888888" x1="404.2007833757142" x2="404.2007833757142" y1="108.50000000000001" y2="102.50000000000001"/> + <line stroke="#888888" x1="404.2007833757142" x2="422.2007833757142" y1="102.50000000000001" y2="102.50000000000001"/> + <line stroke="#888888" x1="408.4507833757142" x2="417.9507833757142" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="417.9507833757142" x2="417.9507833757142" y1="158.25000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="417.9507833757142" x2="408.4507833757142" y1="158.75000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="408.4507833757142" x2="408.4507833757142" y1="158.75000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="417.7007833757142" x2="417.7007833757142" y1="2.5000000000000004" y2="7.500000000000001"/> + <line stroke="#888888" x1="417.7007833757142" x2="408.7007833757142" y1="7.500000000000001" y2="7.500000000000001"/> + <line stroke="#888888" x1="408.7007833757142" x2="408.7007833757142" y1="7.500000000000001" y2="2.5000000000000004"/> + <line stroke="#000000" x1="578.3550614105758" x2="542.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="578.3550614105758" x2="578.3550614105758" y1="123.50000000000001" y2="147.5"/> + <line stroke="#000000" x1="542.3550614105758" x2="578.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="578.3550614105758" x2="623.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="623.3550614105758" x2="578.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> + <line stroke="#000000" x1="623.3550614105758" x2="623.3550614105758" y1="147.5" y2="123.50000000000001"/> + <line stroke="#000000" x1="542.3550614105758" x2="508.35506141057573" y1="123.50000000000001" y2="123.50000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="508.35506141057573" x2="542.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="113.50000000000001" y2="52.50000000000001"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="123.50000000000001" y2="113.50000000000001"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="221.50000000000003" y2="147.5"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="221.50000000000003" y2="221.50000000000003"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="147.5" y2="221.50000000000003"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="123.50000000000001" y2="147.5"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="113.50000000000001" y2="123.50000000000001"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="52.50000000000001" y2="113.50000000000001"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="52.50000000000001" y2="52.50000000000001"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="147.5" y2="167.50000000000003"/> + <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="167.50000000000003" y2="147.5"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="508.35506141057573" x2="542.3550614105758" y1="167.50000000000003" y2="167.50000000000003"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="167.50000000000003" y2="191.50000000000003"/> + <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="191.50000000000003" y2="167.50000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="508.35506141057573" x2="542.3550614105758" y1="191.50000000000003" y2="191.50000000000003"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="191.50000000000003" y2="211.5"/> + <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="211.5" y2="191.50000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="542.3550614105758" x2="508.35506141057573" y1="211.5" y2="211.5"/> + <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="221.50000000000003" y2="211.5"/> + <line stroke="#000000" x1="508.35506141057573" x2="542.3550614105758" y1="221.50000000000003" y2="221.50000000000003"/> + <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="211.5" y2="221.50000000000003"/> + <line stroke="#888888" x1="619.3550614105757" x2="619.3550614105757" y1="139.75000000000003" y2="131.25"/> + <line stroke="#888888" x1="619.3550614105757" x2="619.8550614105757" y1="131.25" y2="131.25"/> + <line stroke="#888888" x1="619.8550614105757" x2="619.8550614105757" y1="131.25" y2="139.75000000000003"/> + <line stroke="#888888" x1="619.8550614105757" x2="619.3550614105757" y1="139.75000000000003" y2="139.75000000000003"/> + <line stroke="#888888" x1="531.2717280772423" x2="519.4383947439092" y1="131.25" y2="131.25"/> + <line stroke="#888888" x1="519.4383947439092" x2="519.4383947439092" y1="131.25" y2="130.75000000000003"/> + <line stroke="#888888" x1="519.4383947439092" x2="531.2717280772423" y1="130.75000000000003" y2="130.75000000000003"/> + <line stroke="#888888" x1="531.2717280772423" x2="531.2717280772423" y1="130.75000000000003" y2="131.25"/> + <line stroke="#888888" x1="500.60506141057573" x2="500.60506141057573" y1="74.93181818181819" y2="63.3409090909091"/> + <line stroke="#888888" x1="500.60506141057573" x2="501.10506141057573" y1="63.3409090909091" y2="63.3409090909091"/> + <line stroke="#888888" x1="501.10506141057573" x2="501.10506141057573" y1="63.3409090909091" y2="74.93181818181819"/> + <line stroke="#888888" x1="501.10506141057573" x2="500.60506141057573" y1="74.93181818181819" y2="74.93181818181819"/> + <line stroke="#888888" x1="500.60506141057573" x2="500.60506141057573" y1="102.65909090909092" y2="91.06818181818183"/> + <line stroke="#888888" x1="500.60506141057573" x2="501.10506141057573" y1="91.06818181818183" y2="91.06818181818183"/> + <line stroke="#888888" x1="501.10506141057573" x2="501.10506141057573" y1="91.06818181818183" y2="102.65909090909092"/> + <line stroke="#888888" x1="501.10506141057573" x2="500.60506141057573" y1="102.65909090909092" y2="102.65909090909092"/> + <line stroke="#888888" x1="519.3550614105758" x2="519.3550614105758" y1="166.50000000000003" y2="162.50000000000003"/> + <line stroke="#888888" x1="519.3550614105758" x2="531.3550614105757" y1="162.50000000000003" y2="162.50000000000003"/> + <line stroke="#888888" x1="531.3550614105757" x2="531.3550614105757" y1="162.50000000000003" y2="166.50000000000003"/> + <line stroke="#888888" x1="531.3550614105757" x2="519.3550614105758" y1="166.50000000000003" y2="166.50000000000003"/> + <line stroke="#888888" x1="520.8550614105757" x2="520.8550614105757" y1="154.5" y2="150.5"/> + <line stroke="#888888" x1="520.8550614105757" x2="529.8550614105758" y1="150.5" y2="150.5"/> + <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="150.5" y2="154.5"/> + <line stroke="#888888" x1="529.8550614105758" x2="520.8550614105757" y1="154.5" y2="154.5"/> + <line stroke="#888888" x1="519.3550614105758" x2="519.3550614105758" y1="191.0" y2="168.0"/> + <line stroke="#888888" x1="519.3550614105758" x2="531.3550614105757" y1="168.0" y2="168.0"/> + <line stroke="#888888" x1="531.3550614105757" x2="531.3550614105757" y1="168.0" y2="191.0"/> + <line stroke="#888888" x1="531.3550614105757" x2="519.3550614105758" y1="191.0" y2="191.0"/> + <line stroke="#888888" x1="519.3550614105758" x2="519.3550614105758" y1="196.50000000000003" y2="192.50000000000003"/> + <line stroke="#888888" x1="519.3550614105758" x2="531.3550614105757" y1="192.50000000000003" y2="192.50000000000003"/> + <line stroke="#888888" x1="531.3550614105757" x2="531.3550614105757" y1="192.50000000000003" y2="196.50000000000003"/> + <line stroke="#888888" x1="531.3550614105757" x2="519.3550614105758" y1="196.50000000000003" y2="196.50000000000003"/> + <line stroke="#888888" x1="519.6883947439092" x2="519.6883947439092" y1="219.00000000000003" y2="214.0"/> + <line stroke="#888888" x1="519.6883947439092" x2="531.0217280772423" y1="214.0" y2="214.0"/> + <line stroke="#888888" x1="531.0217280772423" x2="531.0217280772423" y1="214.0" y2="219.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="666.3550614105757" x2="727.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="727.3550614105758" x2="727.3550614105758" y1="123.50000000000001" y2="147.5"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="727.3550614105758" x2="666.3550614105757" y1="147.5" y2="147.5"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="666.3550614105757" x2="666.3550614105757" y1="147.5" y2="123.50000000000001"/> + <line stroke="#000000" x1="666.3550614105757" x2="666.3550614105757" y1="116.50000000000001" y2="123.50000000000001"/> + <line stroke="#000000" x1="726.3550614105758" x2="666.3550614105757" y1="116.50000000000001" y2="116.50000000000001"/> + <line stroke="#000000" x1="726.3550614105758" x2="726.3550614105758" y1="123.50000000000001" y2="116.50000000000001"/> + <line stroke="#000000" x1="734.3550614105758" x2="727.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> + <line stroke="#000000" x1="734.3550614105758" x2="734.3550614105758" y1="147.5" y2="123.50000000000001"/> + <line stroke="#000000" x1="727.3550614105758" x2="734.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="727.3550614105758" x2="727.3550614105758" y1="147.5" y2="208.50000000000003"/> + <line stroke="#000000" x1="667.3550614105757" x2="727.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="667.3550614105757" x2="667.3550614105757" y1="147.5" y2="208.50000000000003"/> + <line stroke="#000000" x1="751.3550614105758" x2="727.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="751.3550614105758" x2="751.3550614105758" y1="147.5" y2="208.50000000000003"/> + <line stroke="#000000" x1="727.3550614105758" x2="751.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/> + <line stroke="#000000" x1="811.3550614105757" x2="751.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="811.3550614105757" x2="811.3550614105757" y1="208.50000000000003" y2="147.5"/> + <line stroke="#000000" x1="751.3550614105758" x2="811.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/> + <line stroke="#000000" x1="667.3550614105757" x2="643.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="643.3550614105758" x2="667.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="643.3550614105758" x2="643.3550614105758" y1="208.50000000000003" y2="147.5"/> + <line stroke="#000000" x1="633.3550614105758" x2="643.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/> + <line stroke="#000000" x1="633.3550614105758" x2="633.3550614105758" y1="147.5" y2="208.50000000000003"/> + <line stroke="#000000" x1="643.3550614105758" x2="633.3550614105758" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="659.3550614105758" x2="666.3550614105757" y1="147.5" y2="147.5"/> + <line stroke="#000000" x1="659.3550614105758" x2="659.3550614105758" y1="123.50000000000001" y2="147.5"/> + <line stroke="#000000" x1="666.3550614105757" x2="659.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/> + <line stroke="#888888" x1="715.4459705014848" x2="718.9459705014849" y1="118.25000000000001" y2="118.25000000000001"/> + <line stroke="#888888" x1="718.9459705014849" x2="715.4459705014848" y1="118.25000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="715.4459705014848" x2="704.5368795923939" y1="121.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="704.5368795923939" x2="701.0368795923939" y1="121.75000000000001" y2="118.25000000000001"/> + <line stroke="#888888" x1="701.0368795923939" x2="704.5368795923939" y1="118.25000000000001" y2="118.25000000000001"/> + <line stroke="#888888" x1="688.1732432287577" x2="691.6732432287577" y1="118.25000000000001" y2="118.25000000000001"/> + <line stroke="#888888" x1="691.6732432287577" x2="688.1732432287577" y1="118.25000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="688.1732432287577" x2="677.2641523196667" y1="121.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="677.2641523196667" x2="673.7641523196667" y1="121.75000000000001" y2="118.25000000000001"/> + <line stroke="#888888" x1="673.7641523196667" x2="677.2641523196667" y1="118.25000000000001" y2="118.25000000000001"/> + <line stroke="#888888" x1="732.6050614105758" x2="729.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/> + <line stroke="#888888" x1="729.1050614105758" x2="729.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/> + <line stroke="#888888" x1="729.1050614105758" x2="732.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/> + <line stroke="#888888" x1="674.8550614105757" x2="674.8550614105757" y1="199.00000000000003" y2="181.00000000000003"/> + <line stroke="#888888" x1="674.8550614105757" x2="709.8550614105758" y1="181.00000000000003" y2="181.00000000000003"/> + <line stroke="#888888" x1="709.8550614105758" x2="709.8550614105758" y1="181.00000000000003" y2="199.00000000000003"/> + <line stroke="#888888" x1="709.8550614105758" x2="674.8550614105757" y1="199.00000000000003" y2="199.00000000000003"/> + <line stroke="#888888" x1="727.8550614105758" x2="727.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/> + <line stroke="#888888" x1="727.8550614105758" x2="730.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/> + <line stroke="#888888" x1="730.8550614105757" x2="730.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="730.8550614105757" x2="727.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="162.25000000000003" y2="161.25"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="161.25" y2="161.25"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="161.25" y2="162.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="162.25000000000003" y2="161.25"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="161.25" y2="161.25"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="161.25" y2="162.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="164.75000000000003" y2="163.75"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="163.75" y2="163.75"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="163.75" y2="164.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="164.75000000000003" y2="163.75"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="163.75" y2="163.75"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="163.75" y2="164.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="167.25000000000003" y2="166.25"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="166.25" y2="166.25"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="166.25" y2="167.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="167.25000000000003" y2="166.25"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="166.25" y2="166.25"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="166.25" y2="167.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="177.25" y2="176.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="176.25000000000003" y2="177.25"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="177.25" y2="177.25"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="177.25" y2="176.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="176.25000000000003" y2="177.25"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="177.25" y2="177.25"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="179.75" y2="178.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="178.75000000000003" y2="179.75"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="179.75" y2="179.75"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="179.75" y2="178.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="178.75000000000003" y2="179.75"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="179.75" y2="179.75"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="182.25" y2="181.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="181.25000000000003" y2="182.25"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="182.25" y2="182.25"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="182.25" y2="181.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="181.25000000000003" y2="182.25"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="182.25" y2="182.25"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="189.75000000000003" y2="188.75"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="188.75" y2="188.75"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="188.75" y2="189.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="189.75000000000003" y2="188.75"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="188.75" y2="188.75"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="188.75" y2="189.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="192.25000000000003" y2="191.25"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="191.25" y2="191.25"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="191.25" y2="192.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="192.25000000000003" y2="191.25"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="191.25" y2="191.25"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="191.25" y2="192.25000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="197.25000000000003" y2="196.25000000000003"/> + <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/> + <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="197.25000000000003" y2="197.25000000000003"/> + <line stroke="#888888" x1="747.8550614105757" x2="747.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/> + <line stroke="#888888" x1="747.8550614105757" x2="750.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/> + <line stroke="#888888" x1="750.8550614105758" x2="750.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/> + <line stroke="#888888" x1="750.8550614105758" x2="747.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/> + <line stroke="#888888" x1="743.6050614105757" x2="735.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/> + <line stroke="#888888" x1="735.1050614105757" x2="735.1050614105757" y1="155.25000000000003" y2="154.75"/> + <line stroke="#888888" x1="735.1050614105757" x2="743.6050614105757" y1="154.75" y2="154.75"/> + <line stroke="#888888" x1="743.6050614105757" x2="743.6050614105757" y1="154.75" y2="155.25000000000003"/> + <line stroke="#888888" x1="735.1050614105757" x2="743.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/> + <line stroke="#888888" x1="743.6050614105757" x2="743.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/> + <line stroke="#888888" x1="743.6050614105757" x2="735.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/> + <line stroke="#888888" x1="735.1050614105757" x2="735.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/> + <line stroke="#888888" x1="766.3550614105757" x2="766.3550614105757" y1="198.50000000000003" y2="185.50000000000003"/> + <line stroke="#888888" x1="766.3550614105757" x2="796.3550614105758" y1="185.50000000000003" y2="185.50000000000003"/> + <line stroke="#888888" x1="796.3550614105758" x2="796.3550614105758" y1="185.50000000000003" y2="198.50000000000003"/> + <line stroke="#888888" x1="796.3550614105758" x2="766.3550614105757" y1="198.50000000000003" y2="198.50000000000003"/> + <line stroke="#888888" x1="773.4232432287574" x2="762.0141523196667" y1="153.00000000000003" y2="153.00000000000003"/> + <line stroke="#888888" x1="762.0141523196667" x2="762.0141523196667" y1="153.00000000000003" y2="152.5"/> + <line stroke="#888888" x1="762.0141523196667" x2="773.4232432287574" y1="152.5" y2="152.5"/> + <line stroke="#888888" x1="773.4232432287574" x2="773.4232432287574" y1="152.5" y2="153.00000000000003"/> + <line stroke="#888888" x1="800.6959705014848" x2="789.2868795923939" y1="153.00000000000003" y2="153.00000000000003"/> + <line stroke="#888888" x1="789.2868795923939" x2="789.2868795923939" y1="153.00000000000003" y2="152.5"/> + <line stroke="#888888" x1="789.2868795923939" x2="800.6959705014848" y1="152.5" y2="152.5"/> + <line stroke="#888888" x1="800.6959705014848" x2="800.6959705014848" y1="152.5" y2="153.00000000000003"/> + <line stroke="#888888" x1="803.6050614105758" x2="803.6050614105758" y1="169.93181818181822" y2="158.3409090909091"/> + <line stroke="#888888" x1="803.6050614105758" x2="804.1050614105758" y1="158.3409090909091" y2="158.3409090909091"/> + <line stroke="#888888" x1="804.1050614105758" x2="804.1050614105758" y1="158.3409090909091" y2="169.93181818181822"/> + <line stroke="#888888" x1="804.1050614105758" x2="803.6050614105758" y1="169.93181818181822" y2="169.93181818181822"/> + <line stroke="#888888" x1="803.6050614105758" x2="803.6050614105758" y1="197.65909090909093" y2="186.06818181818184"/> + <line stroke="#888888" x1="803.6050614105758" x2="804.1050614105758" y1="186.06818181818184" y2="186.06818181818184"/> + <line stroke="#888888" x1="804.1050614105758" x2="804.1050614105758" y1="186.06818181818184" y2="197.65909090909093"/> + <line stroke="#888888" x1="804.1050614105758" x2="803.6050614105758" y1="197.65909090909093" y2="197.65909090909093"/> + <line stroke="#888888" x1="643.8550614105758" x2="643.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/> + <line stroke="#888888" x1="643.8550614105758" x2="646.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/> + <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="646.8550614105757" x2="643.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="162.25000000000003" y2="161.25"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="161.25" y2="161.25"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="161.25" y2="162.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="162.25000000000003" y2="161.25"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="161.25" y2="161.25"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="161.25" y2="162.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="164.75000000000003" y2="163.75"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="163.75" y2="163.75"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="163.75" y2="164.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="164.75000000000003" y2="163.75"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="163.75" y2="163.75"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="163.75" y2="164.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="167.25000000000003" y2="166.25"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="166.25" y2="166.25"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="166.25" y2="167.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="167.25000000000003" y2="166.25"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="166.25" y2="166.25"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="166.25" y2="167.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="177.25" y2="176.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="176.25000000000003" y2="177.25"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="177.25" y2="177.25"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="177.25" y2="176.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="176.25000000000003" y2="177.25"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="177.25" y2="177.25"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="179.75" y2="178.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="178.75000000000003" y2="179.75"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="179.75" y2="179.75"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="179.75" y2="178.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="178.75000000000003" y2="179.75"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="179.75" y2="179.75"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="182.25" y2="181.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="181.25000000000003" y2="182.25"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="182.25" y2="182.25"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="182.25" y2="181.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="181.25000000000003" y2="182.25"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="182.25" y2="182.25"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="189.75000000000003" y2="188.75"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="188.75" y2="188.75"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="188.75" y2="189.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="189.75000000000003" y2="188.75"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="188.75" y2="188.75"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="188.75" y2="189.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="192.25000000000003" y2="191.25"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="191.25" y2="191.25"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="191.25" y2="192.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="192.25000000000003" y2="191.25"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="191.25" y2="191.25"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="191.25" y2="192.25000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/> + <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/> + <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/> + <line stroke="#888888" x1="663.8550614105758" x2="663.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/> + <line stroke="#888888" x1="663.8550614105758" x2="666.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/> + <line stroke="#888888" x1="666.8550614105757" x2="666.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/> + <line stroke="#888888" x1="666.8550614105757" x2="663.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/> + <line stroke="#888888" x1="659.6050614105758" x2="651.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/> + <line stroke="#888888" x1="651.1050614105757" x2="651.1050614105757" y1="155.25000000000003" y2="154.75"/> + <line stroke="#888888" x1="651.1050614105757" x2="659.6050614105758" y1="154.75" y2="154.75"/> + <line stroke="#888888" x1="659.6050614105758" x2="659.6050614105758" y1="154.75" y2="155.25000000000003"/> + <line stroke="#888888" x1="651.1050614105757" x2="659.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/> + <line stroke="#888888" x1="659.6050614105758" x2="659.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/> + <line stroke="#888888" x1="659.6050614105758" x2="651.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/> + <line stroke="#888888" x1="651.1050614105757" x2="651.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/> + <line stroke="#888888" x1="635.8550614105758" x2="640.8550614105758" y1="158.59090909090912" y2="158.59090909090912"/> + <line stroke="#888888" x1="640.8550614105758" x2="640.8550614105758" y1="158.59090909090912" y2="169.68181818181822"/> + <line stroke="#888888" x1="640.8550614105758" x2="635.8550614105758" y1="169.68181818181822" y2="169.68181818181822"/> + <line stroke="#888888" x1="635.8550614105758" x2="640.8550614105758" y1="186.31818181818184" y2="186.31818181818184"/> + <line stroke="#888888" x1="640.8550614105758" x2="640.8550614105758" y1="186.31818181818184" y2="197.40909090909093"/> + <line stroke="#888888" x1="640.8550614105758" x2="635.8550614105758" y1="197.40909090909093" y2="197.40909090909093"/> + <line stroke="#888888" x1="661.1050614105757" x2="664.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/> + <line stroke="#888888" x1="664.6050614105758" x2="664.6050614105758" y1="131.50000000000003" y2="139.50000000000003"/> + <line stroke="#888888" x1="664.6050614105758" x2="661.1050614105757" y1="139.50000000000003" y2="139.50000000000003"/> </svg> diff --git a/rocolib/output/BoatWithServoStackBattery/graph-model.png b/rocolib/output/BoatWithServoStackBattery/graph-model.png index d1afa32a1f437758d7337b266ae296c04257ef74..dab77ab7697361b48974b412f921efe523fc9195 100644 Binary files a/rocolib/output/BoatWithServoStackBattery/graph-model.png and b/rocolib/output/BoatWithServoStackBattery/graph-model.png differ diff --git a/rocolib/output/BoatWithServoStackBattery/graph-model.stl b/rocolib/output/BoatWithServoStackBattery/graph-model.stl index ceb58e8fa5afabcefb6c81fae6d93fff4050e602..997e634951905b2187c42d8efeee0b2791d1896f 100644 --- a/rocolib/output/BoatWithServoStackBattery/graph-model.stl +++ b/rocolib/output/BoatWithServoStackBattery/graph-model.stl @@ -1,814 +1,814 @@ solid python facet normal 0 0 0 outer loop -vertex 0.0000 0.0700 0.0000 -vertex 0.1690 0.0700 -0.0000 -vertex 0.1690 0.0700 -0.0900 +vertex -0.0308 0.0305 0.0000 +vertex -0.0308 -0.0305 0.0000 +vertex 0.0308 -0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 0.0700 -0.0900 -vertex 0.0000 0.0700 -0.0900 -vertex 0.0000 0.0700 0.0000 +vertex 0.0308 -0.0305 0.0000 +vertex 0.0308 0.0305 0.0000 +vertex -0.0308 0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0000 0.0000 -vertex 0.1690 0.0000 0.0000 -vertex 0.1690 0.0700 0.0000 +vertex -0.0499 -0.0305 0.0191 +vertex -0.0499 0.0305 0.0191 +vertex -0.0499 0.0305 0.0807 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 0.0700 0.0000 -vertex 0.0000 0.0700 0.0000 -vertex 0.0000 0.0000 0.0000 +vertex -0.0499 0.0305 0.0807 +vertex -0.0499 -0.0305 0.0807 +vertex -0.0499 -0.0305 0.0191 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0700 -0.0900 -vertex 0.1690 0.0700 -0.0900 -vertex 0.1690 -0.0000 -0.0900 +vertex -0.0499 0.0305 0.0191 +vertex -0.0308 0.0305 -0.0000 +vertex -0.0428 0.0305 -0.0120 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 -0.0000 -0.0900 -vertex -0.0000 0.0000 -0.0900 -vertex -0.0000 0.0700 -0.0900 +vertex -0.0428 0.0305 -0.0120 +vertex -0.0619 0.0305 0.0071 +vertex -0.0499 0.0305 0.0191 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 0.0700 0.0000 -vertex 0.1690 0.0000 0.0000 -vertex 0.2080 -0.0000 -0.0351 +vertex -0.0619 0.0305 0.0071 +vertex -0.0428 0.0305 -0.0120 +vertex -0.0428 -0.0305 -0.0120 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.2080 -0.0000 -0.0351 -vertex 0.2190 -0.0000 -0.0450 -vertex 0.1690 0.0700 0.0000 +vertex -0.0428 -0.0305 -0.0120 +vertex -0.0619 -0.0305 0.0071 +vertex -0.0619 0.0305 0.0071 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 0.0700 -0.0450 -vertex 0.1690 0.0700 -0.0000 -vertex 0.2190 0.0000 -0.0450 +vertex -0.0619 -0.0305 0.0071 +vertex -0.0428 -0.0305 -0.0120 +vertex -0.0308 -0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 0.0700 -0.0450 -vertex 0.2190 -0.0000 -0.0450 -vertex 0.1690 0.0700 -0.0900 +vertex -0.0308 -0.0305 0.0000 +vertex -0.0499 -0.0305 0.0191 +vertex -0.0619 -0.0305 0.0071 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.2080 -0.0000 -0.0549 -vertex 0.1690 -0.0000 -0.0900 -vertex 0.1690 0.0700 -0.0900 +vertex -0.0340 -0.0330 0.0032 +vertex -0.0467 -0.0305 0.0159 +vertex -0.0467 -0.0330 0.0159 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 0.0700 -0.0900 -vertex 0.2190 -0.0000 -0.0450 -vertex 0.2080 -0.0000 -0.0549 +vertex -0.0308 -0.0305 0.0000 +vertex -0.0340 -0.0270 0.0032 +vertex -0.0340 -0.0305 0.0032 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 0.0000 0.0000 -vertex 0.1690 0.0700 0.0000 -vertex 0.2080 0.0000 -0.0351 +vertex -0.0340 -0.0270 0.0032 +vertex -0.0308 0.0305 0.0000 +vertex -0.0499 0.0305 0.0191 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 0.0000 0.0000 -vertex 0.2080 0.0000 -0.0351 -vertex 0.1690 0.0700 0.0000 +vertex -0.0308 0.0305 0.0000 +vertex -0.0340 -0.0270 0.0032 +vertex -0.0308 -0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 -0.0000 -0.0900 -vertex 0.2080 -0.0000 -0.0549 -vertex 0.1690 0.0700 -0.0900 +vertex -0.0467 -0.0270 0.0159 +vertex -0.0499 0.0305 0.0191 +vertex -0.0499 -0.0305 0.0191 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 -0.0000 -0.0900 -vertex 0.1690 0.0700 -0.0900 -vertex 0.2080 -0.0000 -0.0549 +vertex -0.0499 0.0305 0.0191 +vertex -0.0467 -0.0270 0.0159 +vertex -0.0340 -0.0270 0.0032 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0700 -0.0900 -vertex -0.0000 0.0000 -0.0900 -vertex -0.0390 0.0000 -0.0549 +vertex -0.0499 -0.0305 0.0191 +vertex -0.0467 -0.0305 0.0159 +vertex -0.0467 -0.0270 0.0159 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0390 0.0000 -0.0549 -vertex -0.0500 0.0000 -0.0450 -vertex -0.0000 0.0700 -0.0900 +vertex -0.0467 -0.0305 0.0159 +vertex -0.0340 -0.0330 0.0032 +vertex -0.0340 -0.0305 0.0032 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0700 -0.0450 -vertex -0.0000 0.0700 -0.0900 -vertex -0.0500 0.0000 -0.0450 +vertex 0.0000 0.0700 0.0000 +vertex 0.1560 0.0700 -0.0000 +vertex 0.1560 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0700 -0.0450 -vertex -0.0500 0.0000 -0.0450 +vertex 0.1560 0.0700 -0.0900 +vertex -0.0000 0.0700 -0.0900 vertex 0.0000 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0390 0.0000 -0.0351 vertex 0.0000 0.0000 0.0000 -vertex 0.0000 0.0700 0.0000 +vertex 0.1560 0.0000 0.0000 +vertex 0.1560 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop +vertex 0.1560 0.0700 0.0000 vertex 0.0000 0.0700 0.0000 -vertex -0.0500 0.0000 -0.0450 -vertex -0.0390 0.0000 -0.0351 +vertex 0.0000 0.0000 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0000 -0.0900 vertex -0.0000 0.0700 -0.0900 -vertex -0.0390 0.0000 -0.0549 +vertex 0.1560 0.0700 -0.0900 +vertex 0.1560 -0.0000 -0.0900 endloop endfacet facet normal 0 0 0 outer loop +vertex 0.1560 -0.0000 -0.0900 vertex -0.0000 0.0000 -0.0900 -vertex -0.0390 0.0000 -0.0549 vertex -0.0000 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0000 0.0000 -vertex -0.0390 0.0000 -0.0351 -vertex 0.0000 0.0700 0.0000 +vertex 0.1560 0.0700 0.0000 +vertex 0.1560 0.0000 0.0000 +vertex 0.1950 -0.0000 -0.0351 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0000 0.0000 -vertex 0.0000 0.0700 0.0000 -vertex -0.0390 0.0000 -0.0351 +vertex 0.1950 -0.0000 -0.0351 +vertex 0.2060 -0.0000 -0.0450 +vertex 0.1560 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0308 0.0305 0.0000 -vertex -0.0308 -0.0305 0.0000 -vertex 0.0308 -0.0305 0.0000 +vertex 0.1560 0.0700 -0.0450 +vertex 0.1560 0.0700 -0.0000 +vertex 0.2060 0.0000 -0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0308 -0.0305 0.0000 -vertex 0.0308 0.0305 0.0000 -vertex -0.0308 0.0305 0.0000 +vertex 0.1560 0.0700 -0.0450 +vertex 0.2060 -0.0000 -0.0450 +vertex 0.1560 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0499 -0.0305 0.0191 -vertex -0.0499 0.0305 0.0191 -vertex -0.0499 0.0305 0.0807 +vertex 0.1950 -0.0000 -0.0549 +vertex 0.1560 -0.0000 -0.0900 +vertex 0.1560 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0499 0.0305 0.0807 -vertex -0.0499 -0.0305 0.0807 -vertex -0.0499 -0.0305 0.0191 +vertex 0.1560 0.0700 -0.0900 +vertex 0.2060 -0.0000 -0.0450 +vertex 0.1950 -0.0000 -0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0499 0.0305 0.0191 -vertex -0.0308 0.0305 -0.0000 -vertex -0.0428 0.0305 -0.0120 +vertex 0.1560 0.0000 0.0000 +vertex 0.1560 0.0700 0.0000 +vertex 0.1950 0.0000 -0.0351 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0428 0.0305 -0.0120 -vertex -0.0619 0.0305 0.0071 -vertex -0.0499 0.0305 0.0191 +vertex 0.1560 0.0000 0.0000 +vertex 0.1950 0.0000 -0.0351 +vertex 0.1560 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0619 0.0305 0.0071 -vertex -0.0428 0.0305 -0.0120 -vertex -0.0428 -0.0305 -0.0120 +vertex 0.1560 -0.0000 -0.0900 +vertex 0.1950 -0.0000 -0.0549 +vertex 0.1560 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0428 -0.0305 -0.0120 -vertex -0.0619 -0.0305 0.0071 -vertex -0.0619 0.0305 0.0071 +vertex 0.1560 -0.0000 -0.0900 +vertex 0.1560 0.0700 -0.0900 +vertex 0.1950 -0.0000 -0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0619 -0.0305 0.0071 -vertex -0.0428 -0.0305 -0.0120 -vertex -0.0308 -0.0305 0.0000 +vertex -0.0000 0.0700 -0.0900 +vertex -0.0000 0.0000 -0.0900 +vertex -0.0390 0.0000 -0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0308 -0.0305 0.0000 -vertex -0.0499 -0.0305 0.0191 -vertex -0.0619 -0.0305 0.0071 +vertex -0.0390 0.0000 -0.0549 +vertex -0.0500 0.0000 -0.0450 +vertex -0.0000 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0340 -0.0330 0.0032 -vertex -0.0467 -0.0305 0.0159 -vertex -0.0467 -0.0330 0.0159 +vertex 0.0000 0.0700 -0.0450 +vertex -0.0000 0.0700 -0.0900 +vertex -0.0500 0.0000 -0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0308 -0.0305 0.0000 -vertex -0.0340 -0.0270 0.0032 -vertex -0.0340 -0.0305 0.0032 +vertex 0.0000 0.0700 -0.0450 +vertex -0.0500 0.0000 -0.0450 +vertex 0.0000 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0340 -0.0270 0.0032 -vertex -0.0308 0.0305 0.0000 -vertex -0.0499 0.0305 0.0191 +vertex -0.0390 0.0000 -0.0351 +vertex 0.0000 0.0000 0.0000 +vertex 0.0000 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0308 0.0305 0.0000 -vertex -0.0340 -0.0270 0.0032 -vertex -0.0308 -0.0305 0.0000 +vertex 0.0000 0.0700 0.0000 +vertex -0.0500 0.0000 -0.0450 +vertex -0.0390 0.0000 -0.0351 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0467 -0.0270 0.0159 -vertex -0.0499 0.0305 0.0191 -vertex -0.0499 -0.0305 0.0191 +vertex -0.0000 0.0000 -0.0900 +vertex -0.0000 0.0700 -0.0900 +vertex -0.0390 0.0000 -0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0499 0.0305 0.0191 -vertex -0.0467 -0.0270 0.0159 -vertex -0.0340 -0.0270 0.0032 +vertex -0.0000 0.0000 -0.0900 +vertex -0.0390 0.0000 -0.0549 +vertex -0.0000 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0499 -0.0305 0.0191 -vertex -0.0467 -0.0305 0.0159 -vertex -0.0467 -0.0270 0.0159 +vertex -0.0000 0.0000 0.0000 +vertex -0.0390 0.0000 -0.0351 +vertex 0.0000 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0467 -0.0305 0.0159 -vertex -0.0340 -0.0330 0.0032 -vertex -0.0340 -0.0305 0.0032 +vertex 0.0000 0.0000 0.0000 +vertex 0.0000 0.0700 0.0000 +vertex -0.0390 0.0000 -0.0351 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0340 0.0000 -vertex 0.0740 -0.0340 0.0000 -vertex 0.0740 -0.0700 0.0000 +vertex 0.0850 -0.0340 0.0000 +vertex 0.0610 -0.0340 0.0000 +vertex 0.0610 -0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0700 0.0000 -vertex 0.0980 -0.0700 0.0000 -vertex 0.0980 -0.0340 0.0000 +vertex 0.0610 -0.0700 0.0000 +vertex 0.0850 -0.0700 0.0000 +vertex 0.0850 -0.0340 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0340 -0.0900 -vertex 0.0980 -0.0340 -0.0900 -vertex 0.0980 -0.0700 -0.0900 +vertex -0.0180 0.0120 0.0000 +vertex -0.0180 -0.0120 0.0000 +vertex 0.0180 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0700 -0.0900 -vertex 0.0740 -0.0700 -0.0900 -vertex 0.0740 -0.0340 -0.0900 +vertex 0.0180 -0.0120 0.0000 +vertex 0.0180 0.0120 0.0000 +vertex -0.0180 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0700 0.0450 -vertex 0.0980 -0.0700 0.0450 -vertex 0.0980 -0.0700 0.0000 +vertex 0.0610 -0.0700 0.0450 +vertex 0.0850 -0.0700 0.0450 +vertex 0.0850 -0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0700 0.0000 -vertex 0.0740 -0.0700 0.0000 -vertex 0.0740 -0.0700 0.0450 +vertex 0.0850 -0.0700 0.0000 +vertex 0.0610 -0.0700 0.0000 +vertex 0.0610 -0.0700 0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0340 -0.0000 -vertex 0.0980 -0.0230 -0.0150 -vertex 0.0980 -0.0110 -0.0150 +vertex 0.0850 -0.0340 -0.0000 +vertex 0.0850 -0.0230 -0.0150 +vertex 0.0850 -0.0110 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0230 -0.0150 -vertex 0.0980 -0.0340 -0.0000 -vertex 0.0980 -0.0340 -0.0200 +vertex 0.0850 -0.0230 -0.0150 +vertex 0.0850 -0.0340 -0.0000 +vertex 0.0850 -0.0340 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 0.0000 -0.0000 -vertex 0.0980 -0.0110 -0.0150 -vertex 0.0980 0.0000 -0.0200 +vertex 0.0850 0.0000 -0.0000 +vertex 0.0850 -0.0110 -0.0150 +vertex 0.0850 0.0000 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0110 -0.0150 -vertex 0.0980 0.0000 -0.0000 -vertex 0.0980 -0.0340 -0.0000 +vertex 0.0850 -0.0110 -0.0150 +vertex 0.0850 0.0000 -0.0000 +vertex 0.0850 -0.0340 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0230 -0.0190 -vertex 0.0980 -0.0340 -0.0200 -vertex 0.0980 0.0000 -0.0200 +vertex 0.0850 -0.0230 -0.0190 +vertex 0.0850 -0.0340 -0.0200 +vertex 0.0850 0.0000 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0340 -0.0200 -vertex 0.0980 -0.0230 -0.0190 -vertex 0.0980 -0.0230 -0.0150 +vertex 0.0850 -0.0340 -0.0200 +vertex 0.0850 -0.0230 -0.0190 +vertex 0.0850 -0.0230 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0110 -0.0190 -vertex 0.0980 0.0000 -0.0200 -vertex 0.0980 -0.0110 -0.0150 +vertex 0.0850 -0.0110 -0.0190 +vertex 0.0850 0.0000 -0.0200 +vertex 0.0850 -0.0110 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 0.0000 -0.0200 -vertex 0.0980 -0.0110 -0.0190 -vertex 0.0980 -0.0230 -0.0190 +vertex 0.0850 0.0000 -0.0200 +vertex 0.0850 -0.0110 -0.0190 +vertex 0.0850 -0.0230 -0.0190 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0340 -0.0200 -vertex 0.0975 -0.0230 -0.0200 -vertex 0.0975 -0.0110 -0.0200 +vertex 0.0850 -0.0340 -0.0200 +vertex 0.0845 -0.0230 -0.0200 +vertex 0.0845 -0.0110 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0975 -0.0230 -0.0200 -vertex 0.0980 -0.0340 -0.0200 -vertex 0.0740 -0.0340 -0.0200 +vertex 0.0845 -0.0230 -0.0200 +vertex 0.0850 -0.0340 -0.0200 +vertex 0.0610 -0.0340 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 0.0000 -0.0200 -vertex 0.0975 -0.0110 -0.0200 -vertex 0.0745 -0.0110 -0.0200 +vertex 0.0850 0.0000 -0.0200 +vertex 0.0845 -0.0110 -0.0200 +vertex 0.0615 -0.0110 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0975 -0.0110 -0.0200 -vertex 0.0980 0.0000 -0.0200 -vertex 0.0980 -0.0340 -0.0200 +vertex 0.0845 -0.0110 -0.0200 +vertex 0.0850 0.0000 -0.0200 +vertex 0.0850 -0.0340 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0745 -0.0230 -0.0200 -vertex 0.0740 -0.0340 -0.0200 -vertex 0.0740 0.0000 -0.0200 +vertex 0.0615 -0.0230 -0.0200 +vertex 0.0610 -0.0340 -0.0200 +vertex 0.0610 0.0000 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0340 -0.0200 -vertex 0.0745 -0.0230 -0.0200 -vertex 0.0975 -0.0230 -0.0200 +vertex 0.0610 -0.0340 -0.0200 +vertex 0.0615 -0.0230 -0.0200 +vertex 0.0845 -0.0230 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0745 -0.0110 -0.0200 -vertex 0.0740 0.0000 -0.0200 -vertex 0.0980 0.0000 -0.0200 +vertex 0.0615 -0.0110 -0.0200 +vertex 0.0610 0.0000 -0.0200 +vertex 0.0850 0.0000 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0000 -0.0200 -vertex 0.0745 -0.0110 -0.0200 -vertex 0.0745 -0.0230 -0.0200 +vertex 0.0610 0.0000 -0.0200 +vertex 0.0615 -0.0110 -0.0200 +vertex 0.0615 -0.0230 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0340 -0.0200 -vertex 0.0740 -0.0230 -0.0150 -vertex 0.0740 -0.0230 -0.0190 +vertex 0.0610 -0.0340 -0.0200 +vertex 0.0610 -0.0230 -0.0150 +vertex 0.0610 -0.0230 -0.0190 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0230 -0.0150 -vertex 0.0740 -0.0340 -0.0200 -vertex 0.0740 -0.0340 0.0000 +vertex 0.0610 -0.0230 -0.0150 +vertex 0.0610 -0.0340 -0.0200 +vertex 0.0610 -0.0340 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0340 -0.0200 -vertex 0.0740 -0.0230 -0.0190 -vertex 0.0740 -0.0110 -0.0190 +vertex 0.0610 -0.0340 -0.0200 +vertex 0.0610 -0.0230 -0.0190 +vertex 0.0610 -0.0110 -0.0190 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0000 -0.0200 -vertex 0.0740 -0.0110 -0.0190 -vertex 0.0740 -0.0110 -0.0150 +vertex 0.0610 0.0000 -0.0200 +vertex 0.0610 -0.0110 -0.0190 +vertex 0.0610 -0.0110 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0110 -0.0190 -vertex 0.0740 0.0000 -0.0200 -vertex 0.0740 -0.0340 -0.0200 +vertex 0.0610 -0.0110 -0.0190 +vertex 0.0610 0.0000 -0.0200 +vertex 0.0610 -0.0340 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0000 -0.0200 -vertex 0.0740 -0.0110 -0.0150 -vertex 0.0740 0.0000 0.0000 +vertex 0.0610 0.0000 -0.0200 +vertex 0.0610 -0.0110 -0.0150 +vertex 0.0610 0.0000 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0230 -0.0150 -vertex 0.0740 -0.0215 -0.0070 -vertex 0.0740 -0.0110 -0.0150 +vertex 0.0610 -0.0230 -0.0150 +vertex 0.0610 -0.0215 -0.0070 +vertex 0.0610 -0.0110 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0215 -0.0070 -vertex 0.0740 -0.0340 0.0000 -vertex 0.0740 -0.0215 -0.0030 +vertex 0.0610 -0.0215 -0.0070 +vertex 0.0610 -0.0340 0.0000 +vertex 0.0610 -0.0215 -0.0030 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0340 0.0000 -vertex 0.0740 -0.0215 -0.0070 -vertex 0.0740 -0.0230 -0.0150 +vertex 0.0610 -0.0340 0.0000 +vertex 0.0610 -0.0215 -0.0070 +vertex 0.0610 -0.0230 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0215 -0.0030 -vertex 0.0740 -0.0340 0.0000 -vertex 0.0740 0.0000 0.0000 +vertex 0.0610 -0.0215 -0.0030 +vertex 0.0610 -0.0340 0.0000 +vertex 0.0610 0.0000 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0125 -0.0070 -vertex 0.0740 -0.0125 -0.0030 -vertex 0.0740 0.0000 0.0000 +vertex 0.0610 -0.0125 -0.0070 +vertex 0.0610 -0.0125 -0.0030 +vertex 0.0610 0.0000 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0000 0.0000 -vertex 0.0740 -0.0125 -0.0030 -vertex 0.0740 -0.0215 -0.0030 +vertex 0.0610 0.0000 0.0000 +vertex 0.0610 -0.0125 -0.0030 +vertex 0.0610 -0.0215 -0.0030 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0125 -0.0070 -vertex 0.0740 0.0000 0.0000 -vertex 0.0740 -0.0110 -0.0150 +vertex 0.0610 -0.0125 -0.0070 +vertex 0.0610 0.0000 0.0000 +vertex 0.0610 -0.0110 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0215 -0.0070 -vertex 0.0740 -0.0125 -0.0070 -vertex 0.0740 -0.0110 -0.0150 +vertex 0.0610 -0.0215 -0.0070 +vertex 0.0610 -0.0125 -0.0070 +vertex 0.0610 -0.0110 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0000 0.0000 -vertex 0.0740 -0.0340 0.0000 -vertex 0.0980 -0.0340 0.0000 +vertex 0.0610 0.0000 0.0000 +vertex 0.0610 -0.0340 0.0000 +vertex 0.0850 -0.0340 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0340 0.0000 -vertex 0.0980 0.0000 0.0000 -vertex 0.0740 0.0000 0.0000 +vertex 0.0850 -0.0340 0.0000 +vertex 0.0850 0.0000 0.0000 +vertex 0.0610 0.0000 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 0.0000 -0.0900 -vertex 0.0980 -0.0110 -0.0750 -vertex 0.0980 -0.0230 -0.0750 +vertex -0.0520 -0.0120 -0.0000 +vertex -0.0410 -0.0120 -0.0150 +vertex -0.0290 -0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0110 -0.0750 -vertex 0.0980 0.0000 -0.0900 -vertex 0.0980 0.0000 -0.0700 +vertex -0.0410 -0.0120 -0.0150 +vertex -0.0520 -0.0120 -0.0000 +vertex -0.0520 -0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0340 -0.0900 -vertex 0.0980 -0.0230 -0.0750 -vertex 0.0980 -0.0340 -0.0700 +vertex -0.0180 -0.0120 -0.0000 +vertex -0.0290 -0.0120 -0.0150 +vertex -0.0180 -0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0230 -0.0750 -vertex 0.0980 -0.0340 -0.0900 -vertex 0.0980 0.0000 -0.0900 +vertex -0.0290 -0.0120 -0.0150 +vertex -0.0180 -0.0120 -0.0000 +vertex -0.0520 -0.0120 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0110 -0.0710 -vertex 0.0980 0.0000 -0.0700 -vertex 0.0980 -0.0340 -0.0700 +vertex -0.0410 -0.0120 -0.0190 +vertex -0.0520 -0.0120 -0.0200 +vertex -0.0180 -0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 0.0000 -0.0700 -vertex 0.0980 -0.0110 -0.0710 -vertex 0.0980 -0.0110 -0.0750 +vertex -0.0520 -0.0120 -0.0200 +vertex -0.0410 -0.0120 -0.0190 +vertex -0.0410 -0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0230 -0.0710 -vertex 0.0980 -0.0340 -0.0700 -vertex 0.0980 -0.0230 -0.0750 +vertex -0.0290 -0.0120 -0.0190 +vertex -0.0180 -0.0120 -0.0200 +vertex -0.0290 -0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0340 -0.0700 -vertex 0.0980 -0.0230 -0.0710 -vertex 0.0980 -0.0110 -0.0710 +vertex -0.0180 -0.0120 -0.0200 +vertex -0.0290 -0.0120 -0.0190 +vertex -0.0410 -0.0120 -0.0190 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 0.0000 -0.0700 -vertex 0.0975 -0.0110 -0.0700 -vertex 0.0975 -0.0230 -0.0700 +vertex -0.0520 -0.0120 -0.0200 +vertex -0.0410 -0.0115 -0.0200 +vertex -0.0290 -0.0115 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0975 -0.0110 -0.0700 -vertex 0.0980 0.0000 -0.0700 -vertex 0.0740 0.0000 -0.0700 +vertex -0.0410 -0.0115 -0.0200 +vertex -0.0520 -0.0120 -0.0200 +vertex -0.0520 0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0340 -0.0700 -vertex 0.0975 -0.0230 -0.0700 -vertex 0.0745 -0.0230 -0.0700 +vertex -0.0180 -0.0120 -0.0200 +vertex -0.0290 -0.0115 -0.0200 +vertex -0.0290 0.0115 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0975 -0.0230 -0.0700 -vertex 0.0980 -0.0340 -0.0700 -vertex 0.0980 0.0000 -0.0700 +vertex -0.0290 -0.0115 -0.0200 +vertex -0.0180 -0.0120 -0.0200 +vertex -0.0520 -0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0745 -0.0110 -0.0700 -vertex 0.0740 0.0000 -0.0700 -vertex 0.0740 -0.0340 -0.0700 +vertex -0.0410 0.0115 -0.0200 +vertex -0.0520 0.0120 -0.0200 +vertex -0.0180 0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0000 -0.0700 -vertex 0.0745 -0.0110 -0.0700 -vertex 0.0975 -0.0110 -0.0700 +vertex -0.0520 0.0120 -0.0200 +vertex -0.0410 0.0115 -0.0200 +vertex -0.0410 -0.0115 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0745 -0.0230 -0.0700 -vertex 0.0740 -0.0340 -0.0700 -vertex 0.0980 -0.0340 -0.0700 +vertex -0.0290 0.0115 -0.0200 +vertex -0.0180 0.0120 -0.0200 +vertex -0.0180 -0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0340 -0.0700 -vertex 0.0745 -0.0230 -0.0700 -vertex 0.0745 -0.0110 -0.0700 +vertex -0.0180 0.0120 -0.0200 +vertex -0.0290 0.0115 -0.0200 +vertex -0.0410 0.0115 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0000 -0.0700 -vertex 0.0740 -0.0110 -0.0750 -vertex 0.0740 -0.0110 -0.0710 +vertex -0.0520 0.0120 -0.0200 +vertex -0.0410 0.0120 -0.0150 +vertex -0.0410 0.0120 -0.0190 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0110 -0.0750 -vertex 0.0740 0.0000 -0.0700 -vertex 0.0740 0.0000 -0.0900 +vertex -0.0410 0.0120 -0.0150 +vertex -0.0520 0.0120 -0.0200 +vertex -0.0520 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0000 -0.0700 -vertex 0.0740 -0.0110 -0.0710 -vertex 0.0740 -0.0230 -0.0710 +vertex -0.0520 0.0120 -0.0200 +vertex -0.0410 0.0120 -0.0190 +vertex -0.0290 0.0120 -0.0190 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0340 -0.0700 -vertex 0.0740 -0.0230 -0.0710 -vertex 0.0740 -0.0230 -0.0750 +vertex -0.0180 0.0120 -0.0200 +vertex -0.0290 0.0120 -0.0190 +vertex -0.0290 0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0230 -0.0710 -vertex 0.0740 -0.0340 -0.0700 -vertex 0.0740 0.0000 -0.0700 +vertex -0.0290 0.0120 -0.0190 +vertex -0.0180 0.0120 -0.0200 +vertex -0.0520 0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0340 -0.0700 -vertex 0.0740 -0.0230 -0.0750 -vertex 0.0740 -0.0340 -0.0900 +vertex -0.0180 0.0120 -0.0200 +vertex -0.0290 0.0120 -0.0150 +vertex -0.0180 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0110 -0.0750 -vertex 0.0740 -0.0125 -0.0830 -vertex 0.0740 -0.0230 -0.0750 +vertex -0.0410 0.0120 -0.0150 +vertex -0.0395 0.0120 -0.0070 +vertex -0.0290 0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0125 -0.0830 -vertex 0.0740 0.0000 -0.0900 -vertex 0.0740 -0.0125 -0.0870 +vertex -0.0395 0.0120 -0.0070 +vertex -0.0520 0.0120 0.0000 +vertex -0.0395 0.0120 -0.0030 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 0.0000 -0.0900 -vertex 0.0740 -0.0125 -0.0830 -vertex 0.0740 -0.0110 -0.0750 +vertex -0.0520 0.0120 0.0000 +vertex -0.0395 0.0120 -0.0070 +vertex -0.0410 0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0125 -0.0870 -vertex 0.0740 0.0000 -0.0900 -vertex 0.0740 -0.0340 -0.0900 +vertex -0.0395 0.0120 -0.0030 +vertex -0.0520 0.0120 0.0000 +vertex -0.0180 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0215 -0.0830 -vertex 0.0740 -0.0215 -0.0870 -vertex 0.0740 -0.0340 -0.0900 +vertex -0.0305 0.0120 -0.0070 +vertex -0.0305 0.0120 -0.0030 +vertex -0.0180 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0340 -0.0900 -vertex 0.0740 -0.0215 -0.0870 -vertex 0.0740 -0.0125 -0.0870 +vertex -0.0180 0.0120 0.0000 +vertex -0.0305 0.0120 -0.0030 +vertex -0.0395 0.0120 -0.0030 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0215 -0.0830 -vertex 0.0740 -0.0340 -0.0900 -vertex 0.0740 -0.0230 -0.0750 +vertex -0.0305 0.0120 -0.0070 +vertex -0.0180 0.0120 0.0000 +vertex -0.0290 0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0125 -0.0830 -vertex 0.0740 -0.0215 -0.0830 -vertex 0.0740 -0.0230 -0.0750 +vertex -0.0395 0.0120 -0.0070 +vertex -0.0305 0.0120 -0.0070 +vertex -0.0290 0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0340 -0.0900 -vertex 0.0740 0.0000 -0.0900 -vertex 0.0980 0.0000 -0.0900 +vertex -0.0180 0.0120 0.0000 +vertex -0.0520 0.0120 0.0000 +vertex -0.0520 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 0.0000 -0.0900 -vertex 0.0980 -0.0340 -0.0900 -vertex 0.0740 -0.0340 -0.0900 +vertex -0.0520 -0.0120 0.0000 +vertex -0.0180 -0.0120 0.0000 +vertex -0.0180 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0700 -0.1350 -vertex 0.0740 -0.0700 -0.1350 -vertex 0.0740 -0.0700 -0.0900 +vertex 0.0180 -0.0120 0.0450 +vertex 0.0180 0.0120 0.0450 +vertex 0.0180 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0700 -0.0900 -vertex 0.0980 -0.0700 -0.0900 -vertex 0.0980 -0.0700 -0.1350 +vertex 0.0180 0.0120 0.0000 +vertex 0.0180 -0.0120 0.0000 +vertex 0.0180 -0.0120 0.0450 endloop endfacet facet normal 0 0 0 @@ -827,128 +827,128 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1080 0.0000 0.0000 -vertex 0.1080 -0.0361 0.0000 -vertex 0.1690 -0.0361 0.0000 +vertex 0.0950 0.0000 0.0000 +vertex 0.0950 -0.0361 0.0000 +vertex 0.1560 -0.0361 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 -0.0361 0.0000 -vertex 0.1690 0.0000 0.0000 -vertex 0.1080 0.0000 0.0000 +vertex 0.1560 -0.0361 0.0000 +vertex 0.1560 0.0000 0.0000 +vertex 0.0950 0.0000 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 -0.0531 -0.0531 -vertex 0.1690 -0.0531 -0.0170 -vertex 0.1080 -0.0531 -0.0170 +vertex 0.1560 -0.0531 -0.0531 +vertex 0.1560 -0.0531 -0.0170 +vertex 0.0950 -0.0531 -0.0170 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1080 -0.0531 -0.0170 -vertex 0.1080 -0.0531 -0.0531 -vertex 0.1690 -0.0531 -0.0531 +vertex 0.0950 -0.0531 -0.0170 +vertex 0.0950 -0.0531 -0.0531 +vertex 0.1560 -0.0531 -0.0531 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1080 -0.0531 -0.0170 -vertex 0.1370 -0.0492 -0.0131 -vertex 0.1260 -0.0492 -0.0131 +vertex 0.0950 -0.0531 -0.0170 +vertex 0.1240 -0.0492 -0.0131 +vertex 0.1130 -0.0492 -0.0131 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1370 -0.0492 -0.0131 -vertex 0.1080 -0.0531 -0.0170 -vertex 0.1690 -0.0531 -0.0170 +vertex 0.1240 -0.0492 -0.0131 +vertex 0.0950 -0.0531 -0.0170 +vertex 0.1560 -0.0531 -0.0170 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1080 -0.0531 -0.0170 -vertex 0.1260 -0.0492 -0.0131 -vertex 0.1260 -0.0400 -0.0039 +vertex 0.0950 -0.0531 -0.0170 +vertex 0.1130 -0.0492 -0.0131 +vertex 0.1130 -0.0400 -0.0039 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1080 -0.0361 0.0000 -vertex 0.1260 -0.0400 -0.0039 -vertex 0.1370 -0.0400 -0.0039 +vertex 0.0950 -0.0361 0.0000 +vertex 0.1130 -0.0400 -0.0039 +vertex 0.1240 -0.0400 -0.0039 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1260 -0.0400 -0.0039 -vertex 0.1080 -0.0361 0.0000 -vertex 0.1080 -0.0531 -0.0170 +vertex 0.1130 -0.0400 -0.0039 +vertex 0.0950 -0.0361 0.0000 +vertex 0.0950 -0.0531 -0.0170 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1080 -0.0361 0.0000 -vertex 0.1370 -0.0400 -0.0039 -vertex 0.1690 -0.0361 0.0000 +vertex 0.0950 -0.0361 0.0000 +vertex 0.1240 -0.0400 -0.0039 +vertex 0.1560 -0.0361 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1370 -0.0492 -0.0131 -vertex 0.1575 -0.0482 -0.0120 -vertex 0.1370 -0.0400 -0.0039 +vertex 0.1240 -0.0492 -0.0131 +vertex 0.1445 -0.0482 -0.0120 +vertex 0.1240 -0.0400 -0.0039 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1575 -0.0482 -0.0120 -vertex 0.1690 -0.0531 -0.0170 -vertex 0.1635 -0.0482 -0.0120 +vertex 0.1445 -0.0482 -0.0120 +vertex 0.1560 -0.0531 -0.0170 +vertex 0.1505 -0.0482 -0.0120 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 -0.0531 -0.0170 -vertex 0.1575 -0.0482 -0.0120 -vertex 0.1370 -0.0492 -0.0131 +vertex 0.1560 -0.0531 -0.0170 +vertex 0.1445 -0.0482 -0.0120 +vertex 0.1240 -0.0492 -0.0131 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1635 -0.0482 -0.0120 -vertex 0.1690 -0.0531 -0.0170 -vertex 0.1690 -0.0361 0.0000 +vertex 0.1505 -0.0482 -0.0120 +vertex 0.1560 -0.0531 -0.0170 +vertex 0.1560 -0.0361 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1575 -0.0411 -0.0049 -vertex 0.1635 -0.0411 -0.0049 -vertex 0.1690 -0.0361 0.0000 +vertex 0.1445 -0.0411 -0.0049 +vertex 0.1505 -0.0411 -0.0049 +vertex 0.1560 -0.0361 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 -0.0361 0.0000 -vertex 0.1635 -0.0411 -0.0049 -vertex 0.1635 -0.0482 -0.0120 +vertex 0.1560 -0.0361 0.0000 +vertex 0.1505 -0.0411 -0.0049 +vertex 0.1505 -0.0482 -0.0120 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1575 -0.0411 -0.0049 -vertex 0.1690 -0.0361 0.0000 -vertex 0.1370 -0.0400 -0.0039 +vertex 0.1445 -0.0411 -0.0049 +vertex 0.1560 -0.0361 0.0000 +vertex 0.1240 -0.0400 -0.0039 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1575 -0.0482 -0.0120 -vertex 0.1575 -0.0411 -0.0049 -vertex 0.1370 -0.0400 -0.0039 +vertex 0.1445 -0.0482 -0.0120 +vertex 0.1445 -0.0411 -0.0049 +vertex 0.1240 -0.0400 -0.0039 endloop endfacet facet normal 0 0 0 @@ -3781,30 +3781,44 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.2093 0.0174 -0.0338 -vertex 0.2080 0.0000 -0.0351 -vertex 0.1690 0.0000 0.0000 +vertex -0.0308 0.0205 -0.0000 +vertex -0.0308 0.0305 -0.0000 +vertex -0.0499 0.0305 0.0191 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 0.0000 0.0000 -vertex 0.1702 0.0174 0.0014 -vertex 0.2093 0.0174 -0.0338 +vertex -0.0499 0.0305 0.0191 +vertex -0.0499 0.0205 0.0191 +vertex -0.0308 0.0205 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1702 0.0174 -0.0914 -vertex 0.1690 -0.0000 -0.0900 -vertex 0.2080 -0.0000 -0.0549 +vertex 0.1963 0.0174 -0.0338 +vertex 0.1950 0.0000 -0.0351 +vertex 0.1560 0.0000 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.2080 -0.0000 -0.0549 -vertex 0.2093 0.0174 -0.0562 -vertex 0.1702 0.0174 -0.0914 +vertex 0.1560 0.0000 0.0000 +vertex 0.1572 0.0174 0.0014 +vertex 0.1963 0.0174 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1572 0.0174 -0.0914 +vertex 0.1560 -0.0000 -0.0900 +vertex 0.1950 -0.0000 -0.0549 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1950 -0.0000 -0.0549 +vertex 0.1963 0.0174 -0.0562 +vertex 0.1572 0.0174 -0.0914 endloop endfacet facet normal 0 0 0 @@ -3837,34 +3851,6 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0308 0.0205 -0.0000 -vertex -0.0308 0.0305 -0.0000 -vertex -0.0499 0.0305 0.0191 -endloop -endfacet -facet normal 0 0 0 -outer loop -vertex -0.0499 0.0305 0.0191 -vertex -0.0499 0.0205 0.0191 -vertex -0.0308 0.0205 -0.0000 -endloop -endfacet -facet normal 0 0 0 -outer loop -vertex -0.0499 -0.0305 0.0907 -vertex -0.0499 -0.0305 0.0807 -vertex -0.0499 0.0305 0.0807 -endloop -endfacet -facet normal 0 0 0 -outer loop -vertex -0.0499 0.0305 0.0807 -vertex -0.0499 0.0305 0.0907 -vertex -0.0499 -0.0305 0.0907 -endloop -endfacet -facet normal 0 0 0 -outer loop vertex 0.0408 0.0305 0.0000 vertex 0.0308 0.0305 0.0000 vertex 0.0308 -0.0305 0.0000 @@ -3879,58 +3865,58 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0880 -0.0340 -0.0000 -vertex 0.0980 -0.0340 -0.0000 -vertex 0.0980 0.0000 -0.0000 +vertex 0.0750 -0.0340 -0.0000 +vertex 0.0850 -0.0340 -0.0000 +vertex 0.0850 0.0000 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 0.0000 -0.0000 -vertex 0.0880 0.0000 -0.0000 -vertex 0.0880 -0.0340 -0.0000 +vertex 0.0850 0.0000 -0.0000 +vertex 0.0750 0.0000 -0.0000 +vertex 0.0750 -0.0340 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0880 0.0000 -0.0900 -vertex 0.0980 0.0000 -0.0900 -vertex 0.0980 -0.0340 -0.0900 +vertex -0.0520 -0.0020 -0.0000 +vertex -0.0520 -0.0120 -0.0000 +vertex -0.0180 -0.0120 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0340 -0.0900 -vertex 0.0880 -0.0340 -0.0900 -vertex 0.0880 0.0000 -0.0900 +vertex -0.0180 -0.0120 -0.0000 +vertex -0.0180 -0.0020 -0.0000 +vertex -0.0520 -0.0020 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0700 0.0500 -vertex 0.0980 -0.0700 0.0450 -vertex 0.0740 -0.0700 0.0450 +vertex 0.0850 -0.0700 0.0500 +vertex 0.0850 -0.0700 0.0450 +vertex 0.0610 -0.0700 0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0740 -0.0700 0.0450 -vertex 0.0740 -0.0700 0.0500 -vertex 0.0980 -0.0700 0.0500 +vertex 0.0610 -0.0700 0.0450 +vertex 0.0610 -0.0700 0.0500 +vertex 0.0850 -0.0700 0.0500 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0980 -0.0531 -0.0170 -vertex 0.1080 -0.0531 -0.0170 -vertex 0.1080 -0.0361 0.0000 +vertex 0.0850 -0.0531 -0.0170 +vertex 0.0950 -0.0531 -0.0170 +vertex 0.0950 -0.0361 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1080 -0.0361 0.0000 -vertex 0.0980 -0.0361 0.0000 -vertex 0.0980 -0.0531 -0.0170 +vertex 0.0950 -0.0361 0.0000 +vertex 0.0850 -0.0361 0.0000 +vertex 0.0850 -0.0531 -0.0170 endloop endfacet facet normal 0 0 0 @@ -3949,16 +3935,16 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 -0.0291 -0.0071 -vertex 0.1690 -0.0361 0.0000 -vertex 0.1690 -0.0531 -0.0170 +vertex 0.1560 -0.0291 -0.0071 +vertex 0.1560 -0.0361 0.0000 +vertex 0.1560 -0.0531 -0.0170 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 -0.0531 -0.0170 -vertex 0.1690 -0.0460 -0.0240 -vertex 0.1690 -0.0291 -0.0071 +vertex 0.1560 -0.0531 -0.0170 +vertex 0.1560 -0.0460 -0.0240 +vertex 0.1560 -0.0291 -0.0071 endloop endfacet facet normal 0 0 0 @@ -4005,16 +3991,16 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1690 -0.0531 -0.0631 -vertex 0.1690 -0.0531 -0.0531 -vertex 0.1080 -0.0531 -0.0531 +vertex 0.1560 -0.0531 -0.0631 +vertex 0.1560 -0.0531 -0.0531 +vertex 0.0950 -0.0531 -0.0531 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1080 -0.0531 -0.0531 -vertex 0.1080 -0.0531 -0.0631 -vertex 0.1690 -0.0531 -0.0631 +vertex 0.0950 -0.0531 -0.0531 +vertex 0.0950 -0.0531 -0.0631 +vertex 0.1560 -0.0531 -0.0631 endloop endfacet endsolid python diff --git a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf index d5ba02242d159be7fe79143e8312988bc11fcee9..5f8ef183bf7a59757a3659aded59eeab4f80b2ca 100644 --- a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf +++ b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf @@ -943,13 +943,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 135.50000000000003 30 0.0 11 -194.02325267042647 +242.02325267042644 21 135.50000000000003 31 @@ -961,13 +961,49 @@ LINE 8 0 10 -255.02325267042647 +86.02325267042642 + 20 +135.50000000000003 + 30 +0.0 + 11 +86.02325267042642 + 21 +135.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.02325267042642 + 20 +135.50000000000003 + 30 +0.0 + 11 +86.02325267042642 + 21 +135.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +181.02325267042644 20 135.50000000000003 30 0.0 11 -255.02325267042647 +171.02325267042644 21 135.50000000000003 31 @@ -979,13 +1015,13 @@ LINE 8 0 10 -86.02325267042646 +242.02325267042644 20 135.50000000000003 30 0.0 11 -86.02325267042646 +242.02325267042644 21 135.50000000000003 31 @@ -997,13 +1033,13 @@ LINE 8 0 10 -194.02325267042647 +86.02325267042642 20 135.50000000000003 30 0.0 11 -255.02325267042647 +86.02325267042642 21 135.50000000000003 31 @@ -1015,13 +1051,13 @@ LINE 8 0 10 -86.02325267042646 +147.02325267042642 20 135.50000000000003 30 0.0 11 -86.02325267042646 +73.02325267042643 21 135.50000000000003 31 @@ -1033,13 +1069,13 @@ LINE 8 0 10 -255.02325267042647 +181.02325267042644 20 135.50000000000003 30 0.0 11 -255.02325267042647 +171.02325267042644 21 135.50000000000003 31 @@ -1051,13 +1087,13 @@ LINE 8 0 10 -160.02325267042647 +242.02325267042644 20 135.50000000000003 30 0.0 11 -86.02325267042646 +242.02325267042644 21 135.50000000000003 31 @@ -1069,13 +1105,13 @@ LINE 8 0 10 -194.02325267042647 +171.02325267042644 20 135.50000000000003 30 0.0 11 -184.02325267042647 +181.02325267042644 21 135.50000000000003 31 @@ -1087,13 +1123,13 @@ LINE 8 0 10 -255.02325267042647 +73.02325267042643 20 135.50000000000003 30 0.0 11 -255.02325267042647 +147.02325267042642 21 135.50000000000003 31 @@ -1105,13 +1141,13 @@ LINE 8 0 10 -86.02325267042646 +73.02325267042643 20 135.50000000000003 30 0.0 11 -86.02325267042646 +73.02325267042643 21 135.50000000000003 31 @@ -1123,13 +1159,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 135.50000000000003 30 0.0 11 -184.02325267042647 +171.02325267042644 21 101.50000000000001 31 @@ -1143,13 +1179,13 @@ DOTTED 8 0 10 -160.02325267042647 +147.02325267042642 20 101.50000000000001 30 0.0 11 -160.02325267042647 +147.02325267042642 21 135.50000000000003 31 @@ -1161,13 +1197,13 @@ LINE 8 0 10 -160.02325267042647 +147.02325267042642 20 65.5 30 0.0 11 -160.02325267042647 +147.02325267042642 21 101.50000000000001 31 @@ -1181,13 +1217,13 @@ DOTTED 8 0 10 -160.02325267042647 +147.02325267042642 20 65.5 30 0.0 11 -184.02325267042647 +171.02325267042644 21 65.5 31 @@ -1199,13 +1235,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 101.50000000000001 30 0.0 11 -184.02325267042647 +171.02325267042644 21 65.5 31 @@ -1217,13 +1253,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 65.5 30 0.0 11 -184.02325267042647 +171.02325267042644 21 20.5 31 @@ -1235,13 +1271,13 @@ LINE 8 0 10 -160.02325267042647 +147.02325267042642 20 20.5 30 0.0 11 -160.02325267042647 +147.02325267042642 21 65.5 31 @@ -1253,13 +1289,13 @@ LINE 8 0 10 -160.02325267042647 +147.02325267042642 20 15.500000000000004 30 0.0 11 -160.02325267042647 +147.02325267042642 21 20.5 31 @@ -1271,13 +1307,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 15.500000000000004 30 0.0 11 -160.02325267042647 +147.02325267042642 21 15.500000000000004 31 @@ -1289,13 +1325,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 20.5 30 0.0 11 -184.02325267042647 +171.02325267042644 21 15.500000000000004 31 @@ -1307,13 +1343,13 @@ LINE 8 0 10 -160.02325267042647 +147.02325267042642 20 101.50000000000001 30 0.0 11 -140.02325267042644 +127.02325267042643 21 101.50000000000001 31 @@ -1325,13 +1361,13 @@ LINE 8 0 10 -140.02325267042644 +127.02325267042643 20 135.50000000000003 30 0.0 11 -160.02325267042647 +147.02325267042642 21 135.50000000000003 31 @@ -1345,13 +1381,13 @@ DOTTED 8 0 10 -140.02325267042644 +127.02325267042643 20 101.50000000000001 30 0.0 11 -140.02325267042644 +127.02325267042643 21 135.50000000000003 31 @@ -1363,13 +1399,13 @@ LINE 8 0 10 -140.02325267042644 +127.02325267042643 20 101.50000000000001 30 0.0 11 -116.02325267042646 +103.02325267042642 21 101.50000000000001 31 @@ -1381,13 +1417,13 @@ LINE 8 0 10 -116.02325267042646 +103.02325267042642 20 135.50000000000003 30 0.0 11 -140.02325267042644 +127.02325267042643 21 135.50000000000003 31 @@ -1401,13 +1437,13 @@ DOTTED 8 0 10 -116.02325267042646 +103.02325267042642 20 101.50000000000001 30 0.0 11 -116.02325267042646 +103.02325267042642 21 135.50000000000003 31 @@ -1419,13 +1455,13 @@ LINE 8 0 10 -116.02325267042646 +103.02325267042642 20 101.50000000000001 30 0.0 11 -96.02325267042644 +83.02325267042643 21 101.50000000000001 31 @@ -1437,13 +1473,13 @@ LINE 8 0 10 -96.02325267042644 +83.02325267042643 20 135.50000000000003 30 0.0 11 -116.02325267042646 +103.02325267042642 21 135.50000000000003 31 @@ -1457,13 +1493,13 @@ DOTTED 8 0 10 -96.02325267042644 +83.02325267042643 20 135.50000000000003 30 0.0 11 -96.02325267042644 +83.02325267042643 21 101.50000000000001 31 @@ -1475,13 +1511,13 @@ LINE 8 0 10 -86.02325267042646 +73.02325267042643 20 135.50000000000003 30 0.0 11 -96.02325267042644 +83.02325267042643 21 135.50000000000003 31 @@ -1493,13 +1529,13 @@ LINE 8 0 10 -86.02325267042646 +73.02325267042643 20 101.50000000000001 30 0.0 11 -86.02325267042646 +73.02325267042643 21 135.50000000000003 31 @@ -1511,13 +1547,13 @@ LINE 8 0 10 -96.02325267042644 +83.02325267042643 20 101.50000000000001 30 0.0 11 -86.02325267042646 +73.02325267042643 21 101.50000000000001 31 @@ -1531,13 +1567,13 @@ DOTTED 8 0 10 -194.02325267042647 +181.02325267042644 20 99.36137800081471 30 0.0 11 -255.02325267042647 +242.02325267042644 21 99.36137800081471 31 @@ -1549,13 +1585,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 135.50000000000003 30 0.0 11 -255.02325267042647 +242.02325267042644 21 99.36137800081471 31 @@ -1567,13 +1603,13 @@ LINE 8 0 10 -194.02325267042647 +181.02325267042644 20 99.36137800081471 30 0.0 11 -194.02325267042647 +181.02325267042644 21 135.50000000000003 31 @@ -1587,13 +1623,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 75.36137800081471 30 0.0 11 -194.02325267042647 +181.02325267042644 21 75.36137800081471 31 @@ -1607,13 +1643,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 75.36137800081471 30 0.0 11 -255.02325267042647 +242.02325267042644 21 99.36137800081471 31 @@ -1625,13 +1661,13 @@ LINE 8 0 10 -194.02325267042647 +181.02325267042644 20 39.22275600162939 30 0.0 11 -194.02325267042647 +181.02325267042644 21 75.36137800081472 31 @@ -1643,13 +1679,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 75.36137800081472 30 0.0 11 -255.02325267042647 +242.02325267042644 21 39.22275600162939 31 @@ -1661,13 +1697,13 @@ LINE 8 0 10 -194.02325267042647 +181.02325267042644 20 29.222756001629396 30 0.0 11 -194.02325267042647 +181.02325267042644 21 39.22275600162939 31 @@ -1679,13 +1715,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 29.222756001629396 30 0.0 11 -194.02325267042647 +181.02325267042644 21 29.222756001629396 31 @@ -1697,13 +1733,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 39.22275600162939 30 0.0 11 -255.02325267042647 +242.02325267042644 21 29.222756001629396 31 @@ -1715,13 +1751,13 @@ LINE 8 0 10 -265.02325267042653 +252.02325267042647 20 75.36137800081471 30 0.0 11 -255.02325267042647 +242.02325267042644 21 75.36137800081471 31 @@ -1733,13 +1769,13 @@ LINE 8 0 10 -265.02325267042653 +252.02325267042647 20 99.36137800081471 30 0.0 11 -265.02325267042653 +252.02325267042647 21 75.36137800081471 31 @@ -1751,13 +1787,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 99.36137800081471 30 0.0 11 -265.02325267042653 +252.02325267042647 21 99.36137800081471 31 @@ -1769,13 +1805,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 99.36137800081471 30 0.0 11 -194.02325267042647 +181.02325267042644 21 99.36137800081471 31 @@ -1787,13 +1823,13 @@ LINE 8 0 10 -184.02325267042647 +171.02325267042644 20 75.36137800081471 30 0.0 11 -184.02325267042647 +171.02325267042644 21 99.36137800081471 31 @@ -1805,13 +1841,13 @@ LINE 8 0 10 -194.02325267042647 +181.02325267042644 20 75.36137800081471 30 0.0 11 -184.02325267042647 +171.02325267042644 21 75.36137800081471 31 @@ -1825,13 +1861,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 205.50000000000003 30 0.0 11 -86.02325267042646 +86.02325267042642 21 205.50000000000003 31 @@ -1845,13 +1881,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 205.50000000000003 30 0.0 11 -255.02325267042647 +242.02325267042644 21 135.50000000000003 31 @@ -1865,13 +1901,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 135.50000000000003 30 0.0 11 -307.53762348858805 +294.53762348858805 21 135.50000000000003 31 @@ -1885,13 +1921,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 205.50000000000003 30 0.0 11 -307.53762348858805 +294.53762348858805 21 135.50000000000003 31 @@ -1903,13 +1939,13 @@ LINE 8 0 10 -255.02325267042647 +242.02325267042644 20 117.99520972727949 30 0.0 11 -255.02325267042647 +242.02325267042644 21 135.50000000000003 31 @@ -1921,13 +1957,13 @@ LINE 8 0 10 -307.53762348858805 +294.53762348858805 20 117.99520972727949 30 0.0 11 -255.02325267042647 +242.02325267042644 21 117.99520972727949 31 @@ -1939,13 +1975,13 @@ LINE 8 0 10 -307.53762348858805 +294.53762348858805 20 135.50000000000003 30 0.0 11 -307.53762348858805 +294.53762348858805 21 117.99520972727949 31 @@ -1959,13 +1995,13 @@ DOTTED 8 0 10 -255.02325267042647 +242.02325267042644 20 205.50000000000003 30 0.0 11 -322.2284003443256 +309.2284003443256 21 185.91765779766357 31 @@ -1977,13 +2013,13 @@ LINE 8 0 10 -322.2284003443256 +309.2284003443256 20 185.91765779766357 30 0.0 11 -307.53762348858805 +294.53762348858805 21 135.50000000000003 31 @@ -1995,13 +2031,13 @@ LINE 8 0 10 -336.91917720006325 +323.9191772000632 20 236.33531559532716 30 0.0 11 -322.2284003443256 +309.2284003443256 21 185.91765779766357 31 @@ -2013,13 +2049,13 @@ LINE 8 0 10 -341.0465053408527 +328.0465053408528 20 250.50000000000003 30 0.0 11 -336.91917720006325 +323.9191772000632 21 236.33531559532716 31 @@ -2033,13 +2069,13 @@ DOTTED 8 0 10 -341.0465053408527 +328.0465053408528 20 250.50000000000003 30 0.0 11 -255.02325267042647 +242.02325267042644 21 205.50000000000003 31 @@ -2053,13 +2089,13 @@ DOTTED 8 0 10 -255.0232526704265 +242.02325267042647 20 250.50000000000003 30 0.0 11 -255.02325267042647 +242.02325267042644 21 205.50000000000003 31 @@ -2073,13 +2109,13 @@ DOTTED 8 0 10 -255.02325267042653 +242.0232526704265 20 295.5 30 0.0 11 -255.0232526704265 +242.02325267042647 21 250.50000000000006 31 @@ -2093,13 +2129,13 @@ DOTTED 8 0 10 -341.0465053408528 +328.0465053408528 20 250.50000000000003 30 0.0 11 -255.02325267042653 +242.0232526704265 21 295.50000000000006 31 @@ -2113,13 +2149,13 @@ DOTTED 8 0 10 -322.22840034432573 +309.22840034432573 20 315.08234220233646 30 0.0 11 -255.0232526704265 +242.02325267042647 21 295.50000000000006 31 @@ -2131,13 +2167,13 @@ LINE 8 0 10 -336.9191772000633 +323.91917720006325 20 264.6646844046729 30 0.0 11 -341.0465053408527 +328.0465053408528 21 250.50000000000003 31 @@ -2149,13 +2185,13 @@ LINE 8 0 10 -322.22840034432573 +309.22840034432573 20 315.08234220233646 30 0.0 11 -336.9191772000633 +323.91917720006325 21 264.6646844046729 31 @@ -2167,13 +2203,13 @@ LINE 8 0 10 -307.53762348858817 +294.5376234885881 20 365.50000000000006 30 0.0 11 -322.22840034432573 +309.22840034432573 21 315.0823422023364 31 @@ -2187,13 +2223,13 @@ DOTTED 8 0 10 -307.53762348858817 +294.5376234885881 20 365.50000000000006 30 0.0 11 -255.02325267042653 +242.0232526704265 21 295.50000000000006 31 @@ -2207,13 +2243,13 @@ DOTTED 8 0 10 -255.0232526704266 +242.02325267042656 20 365.5000000000001 30 0.0 11 -255.0232526704265 +242.02325267042647 21 295.5 31 @@ -2227,107 +2263,113 @@ DOTTED 8 0 10 -307.53762348858817 +294.5376234885881 20 365.50000000000006 30 0.0 11 -255.0232526704266 +242.02325267042656 21 365.5000000000001 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -255.02325267042653 +86.02325267042647 20 -295.5 +365.5000000000002 30 0.0 11 -86.02325267042642 +242.02325267042656 21 -295.50000000000017 +365.5000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -194.02325267042656 +242.0232526704265 20 -365.50000000000017 +295.50000000000006 30 0.0 11 -255.0232526704266 +86.02325267042639 21 -365.5000000000001 +295.50000000000017 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -86.02325267042649 +86.0232526704264 20 -365.5000000000003 +295.50000000000017 30 0.0 11 86.02325267042649 21 -365.5000000000003 +365.5000000000002 31 0.0 0 LINE + 6 +DOTTED 62 -5 +3 8 0 10 -255.0232526704266 +86.02325267042649 20 -365.5000000000001 +365.5000000000003 30 0.0 11 -255.0232526704266 +33.508881852264885 21 -365.5000000000001 +365.5000000000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +3 8 0 10 -255.0232526704266 +86.0232526704264 20 -365.5000000000001 +295.5000000000002 30 0.0 11 -194.02325267042656 +33.508881852264885 21 -365.50000000000017 +365.5000000000003 31 0.0 0 @@ -2337,15 +2379,15 @@ LINE 8 0 10 -255.0232526704266 +86.0232526704265 20 -365.5000000000001 +383.00479027272075 30 0.0 11 -255.0232526704266 +86.02325267042649 21 -365.5000000000001 +365.5000000000003 31 0.0 0 @@ -2355,15 +2397,15 @@ LINE 8 0 10 -86.0232526704265 +33.5088818522649 20 -365.5000000000003 +383.00479027272087 30 0.0 11 86.0232526704265 21 -365.5000000000003 +383.00479027272075 31 0.0 0 @@ -2373,33 +2415,35 @@ LINE 8 0 10 -194.02325267042656 +33.508881852264885 20 -365.50000000000017 +365.5000000000003 30 0.0 11 -255.0232526704266 +33.5088818522649 21 -365.5000000000001 +383.00479027272087 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -184.02325267042656 +86.0232526704264 20 -365.50000000000017 +295.50000000000017 30 0.0 11 -194.02325267042656 +18.81810499652724 21 -365.50000000000017 +315.08234220233675 31 0.0 0 @@ -2409,15 +2453,15 @@ LINE 8 0 10 -86.02325267042649 +18.81810499652724 20 -365.5000000000003 +315.08234220233675 30 0.0 11 -160.02325267042656 +33.508881852264885 21 -365.50000000000017 +365.5000000000003 31 0.0 0 @@ -2427,15 +2471,15 @@ LINE 8 0 10 -86.02325267042649 +4.127328140789602 20 -365.5000000000003 +264.6646844046731 30 0.0 11 -86.02325267042649 +18.81810499652724 21 -365.5000000000003 +315.08234220233675 31 0.0 0 @@ -2445,33 +2489,35 @@ LINE 8 0 10 -255.0232526704266 +2.8421709430404014e-14 20 -365.5000000000001 +250.50000000000028 30 0.0 11 -255.0232526704266 +4.127328140789602 21 -365.5000000000001 +264.6646844046731 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -184.0232526704266 +2.8421709430404014e-14 20 -399.5000000000001 +250.50000000000028 30 0.0 11 -184.02325267042656 +86.02325267042642 21 -365.50000000000017 +295.50000000000017 31 0.0 0 @@ -2483,33 +2529,35 @@ DOTTED 8 0 10 -160.02325267042656 +86.02325267042637 20 -365.50000000000017 +250.50000000000017 30 0.0 11 -160.0232526704266 +86.02325267042642 21 -399.5000000000001 +295.50000000000017 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -184.02325267042661 +86.0232526704263 20 -435.50000000000017 +205.50000000000017 30 0.0 11 -184.0232526704266 +86.02325267042636 21 -399.5000000000001 +250.5000000000002 31 0.0 0 @@ -2517,37 +2565,39 @@ LINE 6 DOTTED 62 -3 +1 8 0 10 -184.02325267042661 +1.4210854715202007e-14 20 -435.50000000000017 +250.5000000000003 30 0.0 11 -160.0232526704266 +86.0232526704263 21 -435.50000000000017 +205.50000000000014 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -160.02325267042656 +18.818104996527044 20 -399.5000000000001 +185.91765779766385 30 0.0 11 -160.0232526704266 +86.02325267042629 21 -435.50000000000017 +205.50000000000014 31 0.0 0 @@ -2557,15 +2607,15 @@ LINE 8 0 10 -160.0232526704266 +4.127328140789545 20 -435.50000000000017 +236.33531559532744 30 0.0 11 -160.02325267042661 +0.0 21 -480.50000000000017 +250.5000000000003 31 0.0 0 @@ -2575,15 +2625,15 @@ LINE 8 0 10 -184.02325267042667 +18.818104996527044 20 -480.50000000000017 +185.91765779766385 30 0.0 11 -184.02325267042661 +4.127328140789545 21 -435.50000000000017 +236.33531559532744 31 0.0 0 @@ -2593,51 +2643,55 @@ LINE 8 0 10 -160.02325267042661 +33.50888185226453 20 -480.50000000000017 +135.50000000000023 30 0.0 11 -184.02325267042667 +18.818104996527044 21 -480.50000000000017 +185.91765779766385 31 0.0 0 LINE + 6 +DOTTED 62 -5 +3 8 0 10 -160.02325267042656 +33.50888185226453 20 -365.50000000000017 +135.50000000000023 30 0.0 11 -140.0232526704265 +86.02325267042629 21 -365.50000000000017 +205.50000000000017 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -140.02325267042653 +86.02325267042616 20 -399.5000000000001 +135.5000000000001 30 0.0 11 -160.02325267042656 +86.02325267042632 21 -399.5000000000001 +205.50000000000017 31 0.0 0 @@ -2645,19 +2699,19 @@ LINE 6 DOTTED 62 -1 +3 8 0 10 -140.0232526704265 +33.508881852264544 20 -365.50000000000017 +135.50000000000023 30 0.0 11 -140.02325267042653 +86.02325267042616 21 -399.5000000000001 +135.5000000000001 31 0.0 0 @@ -2667,15 +2721,15 @@ LINE 8 0 10 -140.02325267042653 +33.50888185226451 20 -365.50000000000017 +117.9952097272797 30 0.0 11 -116.02325267042652 +33.50888185226454 21 -365.50000000000017 +135.50000000000023 31 0.0 0 @@ -2685,35 +2739,33 @@ LINE 8 0 10 -116.02325267042656 +86.02325267042612 20 -399.5000000000001 +117.9952097272796 30 0.0 11 -140.02325267042656 +33.50888185226451 21 -399.5000000000001 +117.9952097272797 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -116.02325267042652 +86.02325267042615 20 -365.50000000000017 +135.5000000000001 30 0.0 11 -116.02325267042656 +86.02325267042612 21 -399.5000000000001 +117.9952097272796 31 0.0 0 @@ -2723,15 +2775,15 @@ LINE 8 0 10 -116.02325267042652 +294.5376234885881 20 -365.50000000000017 +383.0047902727206 30 0.0 11 -96.02325267042652 +294.5376234885881 21 -365.50000000000017 +365.50000000000006 31 0.0 0 @@ -2741,35 +2793,33 @@ LINE 8 0 10 -96.02325267042654 +242.0232526704266 20 -399.5000000000001 +383.00479027272064 30 0.0 11 -116.02325267042654 +294.5376234885881 21 -399.5000000000001 +383.0047902727206 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -96.02325267042654 +242.02325267042656 20 -399.5000000000001 +365.5000000000001 30 0.0 11 -96.02325267042652 +242.0232526704266 21 -365.50000000000017 +383.00479027272064 31 0.0 0 @@ -2779,15 +2829,15 @@ LINE 8 0 10 -86.02325267042654 +108.4550708522446 20 -399.5000000000001 +143.25 30 0.0 11 -96.02325267042654 +96.86416176133552 21 -399.5000000000001 +143.25 31 0.0 0 @@ -2797,15 +2847,15 @@ LINE 8 0 10 -86.02325267042652 +96.86416176133552 20 -365.50000000000017 +143.25 30 0.0 11 -86.02325267042654 +96.86416176133552 21 -399.5000000000001 +142.75000000000003 31 0.0 0 @@ -2815,75 +2865,69 @@ LINE 8 0 10 -96.02325267042652 +96.86416176133552 20 -365.50000000000017 +142.75000000000003 30 0.0 11 -86.02325267042652 +108.4550708522446 21 -365.50000000000017 +142.75000000000003 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -86.0232526704264 +108.4550708522446 20 -295.50000000000017 +142.75000000000003 30 0.0 11 -86.02325267042649 +108.4550708522446 21 -365.5000000000002 +143.25 31 0.0 0 LINE - 6 -DOTTED 62 -3 +5 8 0 10 -86.02325267042649 +136.18234357951735 20 -365.5000000000003 +143.25 30 0.0 11 -33.508881852264885 +124.59143448860826 21 -365.5000000000003 +143.25 31 0.0 0 LINE - 6 -DOTTED 62 -3 +5 8 0 10 -86.0232526704264 +124.59143448860826 20 -295.5000000000002 +143.25 30 0.0 11 -33.508881852264885 +124.59143448860826 21 -365.5000000000003 +142.75000000000003 31 0.0 0 @@ -2893,15 +2937,15 @@ LINE 8 0 10 -86.0232526704265 +124.59143448860826 20 -383.00479027272075 +142.75000000000003 30 0.0 11 -86.02325267042649 +136.18234357951735 21 -365.5000000000003 +142.75000000000003 31 0.0 0 @@ -2911,339 +2955,15 @@ LINE 8 0 10 -33.5088818522649 - 20 -383.00479027272087 - 30 -0.0 - 11 -86.0232526704265 - 21 -383.00479027272075 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -33.508881852264885 - 20 -365.5000000000003 - 30 -0.0 - 11 -33.5088818522649 - 21 -383.00479027272087 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -86.0232526704264 - 20 -295.50000000000017 - 30 -0.0 - 11 -18.81810499652724 - 21 -315.08234220233675 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -18.81810499652724 - 20 -315.08234220233675 - 30 -0.0 - 11 -33.508881852264885 - 21 -365.5000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -4.127328140789602 - 20 -264.6646844046731 - 30 -0.0 - 11 -18.81810499652724 - 21 -315.08234220233675 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -2.8421709430404014e-14 - 20 -250.50000000000028 - 30 -0.0 - 11 -4.127328140789602 - 21 -264.6646844046731 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -2.8421709430404014e-14 - 20 -250.50000000000028 - 30 -0.0 - 11 -86.02325267042642 - 21 -295.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -86.02325267042637 - 20 -250.50000000000017 - 30 -0.0 - 11 -86.02325267042642 - 21 -295.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -86.0232526704263 - 20 -205.50000000000017 - 30 -0.0 - 11 -86.02325267042636 - 21 -250.5000000000002 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -1.4210854715202007e-14 - 20 -250.5000000000003 - 30 -0.0 - 11 -86.0232526704263 - 21 -205.50000000000014 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -18.818104996527044 - 20 -185.91765779766385 - 30 -0.0 - 11 -86.02325267042629 - 21 -205.50000000000014 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -4.127328140789545 - 20 -236.33531559532744 - 30 -0.0 - 11 -0.0 - 21 -250.5000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -18.818104996527044 - 20 -185.91765779766385 - 30 -0.0 - 11 -4.127328140789545 - 21 -236.33531559532744 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -33.50888185226453 - 20 -135.50000000000023 - 30 -0.0 - 11 -18.818104996527044 - 21 -185.91765779766385 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -3 - 8 -0 - 10 -33.50888185226453 - 20 -135.50000000000023 - 30 -0.0 - 11 -86.02325267042629 - 21 -205.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -1 - 8 -0 - 10 -86.02325267042616 - 20 -135.5000000000001 - 30 -0.0 - 11 -86.02325267042632 - 21 -205.50000000000017 - 31 -0.0 - 0 -LINE - 6 -DOTTED - 62 -3 - 8 -0 - 10 -33.508881852264544 - 20 -135.50000000000023 - 30 -0.0 - 11 -86.02325267042616 - 21 -135.5000000000001 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -33.50888185226451 +136.18234357951735 20 -117.9952097272797 +142.75000000000003 30 0.0 11 -33.50888185226454 +136.18234357951735 21 -135.50000000000023 +143.25 31 0.0 0 @@ -3253,15 +2973,15 @@ LINE 8 0 10 -86.02325267042612 +163.27325267042642 20 -117.9952097272796 +124.41666666666669 30 0.0 11 -33.50888185226451 +163.27325267042642 21 -117.9952097272797 +112.58333333333334 31 0.0 0 @@ -3271,15 +2991,15 @@ LINE 8 0 10 -86.02325267042615 +163.27325267042642 20 -135.5000000000001 +112.58333333333334 30 0.0 11 -86.02325267042612 +163.77325267042644 21 -117.9952097272796 +112.58333333333334 31 0.0 0 @@ -3289,15 +3009,15 @@ LINE 8 0 10 -307.5376234885882 +163.77325267042644 20 -383.0047902727206 +112.58333333333334 30 0.0 11 -307.53762348858817 +163.77325267042644 21 -365.50000000000006 +124.41666666666669 31 0.0 0 @@ -3307,15 +3027,15 @@ LINE 8 0 10 -255.02325267042661 +163.77325267042644 20 -383.00479027272064 +124.41666666666669 30 0.0 11 -307.5376234885882 +163.27325267042642 21 -383.0047902727206 +124.41666666666669 31 0.0 0 @@ -3325,15 +3045,15 @@ LINE 8 0 10 -255.0232526704266 +163.02325267042642 20 -365.5000000000001 +16.750000000000004 30 0.0 11 -255.02325267042661 +165.52325267042642 21 -383.00479027272064 +16.750000000000004 31 0.0 0 @@ -3343,15 +3063,15 @@ LINE 8 0 10 -232.5914344886083 +165.52325267042642 20 -127.75000000000001 +16.750000000000004 30 0.0 11 -244.18234357951738 +163.02325267042642 21 -127.75000000000001 +19.250000000000004 31 0.0 0 @@ -3361,15 +3081,15 @@ LINE 8 0 10 -244.18234357951738 +163.02325267042642 20 -127.75000000000001 +19.250000000000004 30 0.0 11 -244.18234357951738 +155.02325267042644 21 -128.25000000000003 +19.250000000000004 31 0.0 0 @@ -3379,15 +3099,15 @@ LINE 8 0 10 -244.18234357951738 +155.02325267042644 20 -128.25000000000003 +19.250000000000004 30 0.0 11 -232.5914344886083 +152.52325267042644 21 -128.25000000000003 +16.750000000000004 31 0.0 0 @@ -3397,15 +3117,15 @@ LINE 8 0 10 -232.5914344886083 +152.52325267042644 20 -128.25000000000003 +16.750000000000004 30 0.0 11 -232.5914344886083 +155.02325267042644 21 -127.75000000000001 +16.750000000000004 31 0.0 0 @@ -3415,15 +3135,15 @@ LINE 8 0 10 -204.86416176133557 +128.02325267042644 20 -127.75000000000001 +112.50000000000001 30 0.0 11 -216.45507085224466 +132.02325267042644 21 -127.75000000000001 +112.50000000000001 31 0.0 0 @@ -3433,15 +3153,15 @@ LINE 8 0 10 -216.45507085224466 +132.02325267042644 20 -127.75000000000001 +112.50000000000001 30 0.0 11 -216.45507085224466 +132.02325267042644 21 -128.25000000000003 +124.50000000000001 31 0.0 0 @@ -3451,15 +3171,15 @@ LINE 8 0 10 -216.45507085224466 +132.02325267042644 20 -128.25000000000003 +124.50000000000001 30 0.0 11 -204.86416176133557 +128.02325267042644 21 -128.25000000000003 +124.50000000000001 31 0.0 0 @@ -3469,15 +3189,15 @@ LINE 8 0 10 -204.86416176133557 +128.02325267042644 20 -128.25000000000003 +124.50000000000001 30 0.0 11 -204.86416176133557 +128.02325267042644 21 -127.75000000000001 +112.50000000000001 31 0.0 0 @@ -3487,15 +3207,15 @@ LINE 8 0 10 -176.27325267042647 +140.02325267042644 20 -124.41666666666669 +114.00000000000001 30 0.0 11 -176.27325267042647 +144.02325267042644 21 -112.58333333333334 +114.00000000000001 31 0.0 0 @@ -3505,15 +3225,15 @@ LINE 8 0 10 -176.27325267042647 +144.02325267042644 20 -112.58333333333334 +114.00000000000001 30 0.0 11 -176.77325267042644 +144.02325267042644 21 -112.58333333333334 +123.00000000000001 31 0.0 0 @@ -3523,15 +3243,15 @@ LINE 8 0 10 -176.77325267042644 +144.02325267042644 20 -112.58333333333334 +123.00000000000001 30 0.0 11 -176.77325267042644 +140.02325267042644 21 -124.41666666666669 +123.00000000000001 31 0.0 0 @@ -3541,15 +3261,15 @@ LINE 8 0 10 -176.77325267042644 +140.02325267042644 20 -124.41666666666669 +123.00000000000001 30 0.0 11 -176.27325267042647 +140.02325267042644 21 -124.41666666666669 +114.00000000000001 31 0.0 0 @@ -3559,15 +3279,15 @@ LINE 8 0 10 -176.02325267042647 +103.52325267042643 20 -16.750000000000004 +112.50000000000001 30 0.0 11 -178.52325267042647 +126.52325267042643 21 -16.750000000000004 +112.50000000000001 31 0.0 0 @@ -3577,15 +3297,15 @@ LINE 8 0 10 -178.52325267042647 +126.52325267042643 20 -16.750000000000004 +112.50000000000001 30 0.0 11 -176.02325267042647 +126.52325267042643 21 -19.250000000000004 +124.50000000000001 31 0.0 0 @@ -3595,15 +3315,15 @@ LINE 8 0 10 -176.02325267042647 +126.52325267042643 20 -19.250000000000004 +124.50000000000001 30 0.0 11 -168.02325267042644 +103.52325267042643 21 -19.250000000000004 +124.50000000000001 31 0.0 0 @@ -3613,15 +3333,15 @@ LINE 8 0 10 -168.02325267042644 +103.52325267042643 20 -19.250000000000004 +124.50000000000001 30 0.0 11 -165.52325267042644 +103.52325267042643 21 -16.750000000000004 +112.50000000000001 31 0.0 0 @@ -3631,15 +3351,15 @@ LINE 8 0 10 -165.52325267042644 +98.02325267042643 20 -16.750000000000004 +112.50000000000001 30 0.0 11 -168.02325267042644 +102.02325267042643 21 -16.750000000000004 +112.50000000000001 31 0.0 0 @@ -3649,15 +3369,15 @@ LINE 8 0 10 -141.02325267042647 +102.02325267042643 20 112.50000000000001 30 0.0 11 -145.02325267042644 +102.02325267042643 21 -112.50000000000001 +124.50000000000001 31 0.0 0 @@ -3667,13 +3387,13 @@ LINE 8 0 10 -145.02325267042644 +102.02325267042643 20 -112.50000000000001 +124.50000000000001 30 0.0 11 -145.02325267042644 +98.02325267042643 21 124.50000000000001 31 @@ -3685,15 +3405,15 @@ LINE 8 0 10 -145.02325267042644 +98.02325267042643 20 124.50000000000001 30 0.0 11 -141.02325267042647 +98.02325267042643 21 -124.50000000000001 +112.50000000000001 31 0.0 0 @@ -3703,15 +3423,15 @@ LINE 8 0 10 -141.02325267042647 +75.52325267042642 20 -124.50000000000001 +112.83333333333336 30 0.0 11 -141.02325267042647 +80.52325267042643 21 -112.50000000000001 +112.83333333333336 31 0.0 0 @@ -3721,15 +3441,15 @@ LINE 8 0 10 -153.02325267042647 +80.52325267042643 20 -114.00000000000001 +112.83333333333336 30 0.0 11 -157.02325267042647 +80.52325267042643 21 -114.00000000000001 +124.16666666666669 31 0.0 0 @@ -3739,15 +3459,15 @@ LINE 8 0 10 -157.02325267042647 +80.52325267042643 20 -114.00000000000001 +124.16666666666669 30 0.0 11 -157.02325267042647 +75.52325267042642 21 -123.00000000000001 +124.16666666666669 31 0.0 0 @@ -3757,15 +3477,15 @@ LINE 8 0 10 -157.02325267042647 +199.02325267042644 20 -123.00000000000001 +80.86137800081471 30 0.0 11 -153.02325267042647 +210.02325267042644 21 -123.00000000000001 +80.86137800081471 31 0.0 0 @@ -3775,15 +3495,15 @@ LINE 8 0 10 -153.02325267042647 +210.02325267042644 20 -123.00000000000001 +80.86137800081471 30 0.0 11 -153.02325267042647 +210.02325267042644 21 -114.00000000000001 +93.86137800081471 31 0.0 0 @@ -3793,15 +3513,15 @@ LINE 8 0 10 -116.52325267042646 +210.02325267042644 20 -112.50000000000001 +93.86137800081471 30 0.0 11 -139.52325267042647 +199.02325267042644 21 -112.50000000000001 +93.86137800081471 31 0.0 0 @@ -3811,15 +3531,15 @@ LINE 8 0 10 -139.52325267042647 +199.02325267042644 20 -112.50000000000001 +93.86137800081471 30 0.0 11 -139.52325267042647 +199.02325267042644 21 -124.50000000000001 +80.86137800081471 31 0.0 0 @@ -3829,15 +3549,15 @@ LINE 8 0 10 -139.52325267042647 +230.52325267042644 20 -124.50000000000001 +82.36137800081471 30 0.0 11 -116.52325267042646 +236.52325267042644 21 -124.50000000000001 +82.36137800081471 31 0.0 0 @@ -3847,15 +3567,15 @@ LINE 8 0 10 -116.52325267042646 +236.52325267042644 20 -124.50000000000001 +82.36137800081471 30 0.0 11 -116.52325267042646 +236.52325267042644 21 -112.50000000000001 +92.36137800081471 31 0.0 0 @@ -3865,15 +3585,15 @@ LINE 8 0 10 -111.02325267042646 +236.52325267042644 20 -112.50000000000001 +92.36137800081471 30 0.0 11 -115.02325267042646 +230.52325267042644 21 -112.50000000000001 +92.36137800081471 31 0.0 0 @@ -3883,15 +3603,15 @@ LINE 8 0 10 -115.02325267042646 +230.52325267042644 20 -112.50000000000001 +92.36137800081471 30 0.0 11 -115.02325267042646 +230.52325267042644 21 -124.50000000000001 +82.36137800081471 31 0.0 0 @@ -3901,15 +3621,15 @@ LINE 8 0 10 -115.02325267042646 +230.93234357951735 20 -124.50000000000001 +31.722756001629396 30 0.0 11 -111.02325267042646 +230.93234357951735 21 -124.50000000000001 +36.7227560016294 31 0.0 0 @@ -3919,15 +3639,15 @@ LINE 8 0 10 -111.02325267042646 +230.93234357951735 20 -124.50000000000001 +36.7227560016294 30 0.0 11 -111.02325267042646 +219.84143448860826 21 -112.50000000000001 +36.7227560016294 31 0.0 0 @@ -3937,15 +3657,15 @@ LINE 8 0 10 -88.52325267042646 +219.84143448860826 20 -112.83333333333336 +36.7227560016294 30 0.0 11 -93.52325267042646 +219.84143448860826 21 -112.83333333333336 +31.722756001629396 31 0.0 0 @@ -3955,15 +3675,15 @@ LINE 8 0 10 -93.52325267042646 +203.20507085224463 20 -112.83333333333336 +31.722756001629396 30 0.0 11 -93.52325267042646 +203.20507085224463 21 -124.16666666666669 +36.7227560016294 31 0.0 0 @@ -3973,15 +3693,15 @@ LINE 8 0 10 -93.52325267042646 +203.20507085224463 20 -124.16666666666669 +36.7227560016294 30 0.0 11 -88.52325267042646 +192.11416176133554 21 -124.16666666666669 +36.7227560016294 31 0.0 0 @@ -3991,15 +3711,15 @@ LINE 8 0 10 -212.02325267042647 +192.11416176133554 20 -80.86137800081471 +36.7227560016294 30 0.0 11 -223.02325267042647 +192.11416176133554 21 -80.86137800081471 +31.722756001629396 31 0.0 0 @@ -4009,15 +3729,15 @@ LINE 8 0 10 -223.02325267042647 +249.52325267042644 20 -80.86137800081471 +91.36137800081471 30 0.0 11 -223.02325267042647 +244.52325267042644 21 -93.86137800081471 +91.36137800081471 31 0.0 0 @@ -4027,15 +3747,15 @@ LINE 8 0 10 -223.02325267042647 +244.52325267042644 20 -93.86137800081471 +91.36137800081471 30 0.0 11 -212.02325267042647 +244.52325267042644 21 -93.86137800081471 +83.36137800081471 31 0.0 0 @@ -4045,15 +3765,15 @@ LINE 8 0 10 -212.02325267042647 +244.52325267042644 20 -93.86137800081471 +83.36137800081471 30 0.0 11 -212.02325267042647 +249.52325267042644 21 -80.86137800081471 +83.36137800081471 31 0.0 0 @@ -4063,15 +3783,15 @@ LINE 8 0 10 -243.52325267042647 +173.52325267042644 20 -82.36137800081471 +83.36137800081471 30 0.0 11 -249.52325267042647 +178.52325267042644 21 -82.36137800081471 +83.36137800081471 31 0.0 0 @@ -4081,15 +3801,15 @@ LINE 8 0 10 -249.52325267042647 +178.52325267042644 20 -82.36137800081471 +83.36137800081471 30 0.0 11 -249.52325267042647 +178.52325267042644 21 -92.36137800081471 +91.36137800081471 31 0.0 0 @@ -4099,15 +3819,15 @@ LINE 8 0 10 -249.52325267042647 +178.52325267042644 20 -92.36137800081471 +91.36137800081471 30 0.0 11 -243.52325267042647 +173.52325267042644 21 -92.36137800081471 +91.36137800081471 31 0.0 0 @@ -4117,15 +3837,15 @@ LINE 8 0 10 -243.52325267042647 +277.03283321586747 20 -92.36137800081471 +122.37140729545962 30 0.0 11 -243.52325267042647 +277.03283321586747 21 -82.36137800081471 +131.12380243181985 31 0.0 0 @@ -4135,15 +3855,15 @@ LINE 8 0 10 -243.93234357951738 +277.03283321586747 20 -31.722756001629396 +131.12380243181985 30 0.0 11 -243.93234357951738 +259.52804294314694 21 -36.7227560016294 +131.12380243181988 31 0.0 0 @@ -4153,15 +3873,15 @@ LINE 8 0 10 -243.93234357951738 +259.52804294314694 20 -36.7227560016294 +131.12380243181988 30 0.0 11 -232.8414344886083 +259.52804294314694 21 -36.7227560016294 +122.37140729545962 31 0.0 0 @@ -4171,15 +3891,15 @@ LINE 8 0 10 -232.8414344886083 +306.2477556839554 20 -36.7227560016294 +223.5120791976936 30 0.0 11 -232.8414344886083 +301.21095619250235 21 -31.722756001629396 +206.22615649603978 31 0.0 0 @@ -4189,15 +3909,15 @@ LINE 8 0 10 -216.20507085224466 +301.21095619250235 20 -31.722756001629396 +206.22615649603978 30 0.0 11 -216.20507085224466 +301.6909929616017 21 -36.7227560016294 +206.08628262316594 31 0.0 0 @@ -4207,15 +3927,15 @@ LINE 8 0 10 -216.20507085224466 +301.6909929616017 20 -36.7227560016294 +206.08628262316594 30 0.0 11 -205.11416176133554 +306.7277924530547 21 -36.7227560016294 +223.37220532481973 31 0.0 0 @@ -4225,15 +3945,15 @@ LINE 8 0 10 -205.11416176133554 +306.7277924530547 20 -36.7227560016294 +223.37220532481973 30 0.0 11 -205.11416176133554 +306.2477556839554 21 -31.722756001629396 +223.5120791976936 31 0.0 0 @@ -4243,15 +3963,15 @@ LINE 8 0 10 -262.52325267042653 +301.2109561925024 20 -91.36137800081471 +294.77384350396034 30 0.0 11 -257.52325267042653 +306.2477556839554 21 -91.36137800081471 +277.4879208023065 31 0.0 0 @@ -4261,15 +3981,15 @@ LINE 8 0 10 -257.52325267042653 +306.2477556839554 20 -91.36137800081471 +277.4879208023065 30 0.0 11 -257.52325267042653 +306.72779245305475 21 -83.36137800081471 +277.6277946751803 31 0.0 0 @@ -4279,15 +3999,15 @@ LINE 8 0 10 -257.52325267042653 +306.72779245305475 20 -83.36137800081471 +277.6277946751803 30 0.0 11 -262.52325267042653 +301.6909929616017 21 -83.36137800081471 +294.91371737683414 31 0.0 0 @@ -4297,15 +4017,15 @@ LINE 8 0 10 -186.52325267042647 +301.6909929616017 20 -83.36137800081471 +294.91371737683414 30 0.0 11 -191.52325267042647 +301.2109561925024 21 -83.36137800081471 +294.77384350396034 31 0.0 0 @@ -4315,15 +4035,15 @@ LINE 8 0 10 -191.52325267042647 +51.01367212498543 20 -83.36137800081471 +378.6285927045407 30 0.0 11 -191.52325267042647 +51.013672124985426 21 -91.36137800081471 +369.87619756818043 31 0.0 0 @@ -4333,15 +4053,15 @@ LINE 8 0 10 -191.52325267042647 +51.013672124985426 20 -91.36137800081471 +369.87619756818043 30 0.0 11 -186.52325267042647 +68.51846239770595 21 -91.36137800081471 +369.87619756818043 31 0.0 0 @@ -4351,15 +4071,15 @@ LINE 8 0 10 -290.0328332158675 +68.51846239770595 20 -122.37140729545962 +369.87619756818043 30 0.0 11 -290.0328332158675 +68.51846239770595 21 -131.12380243181985 +378.6285927045407 31 0.0 0 @@ -4369,15 +4089,15 @@ LINE 8 0 10 -290.0328332158675 +21.798749656897446 20 -131.12380243181985 +277.4879208023067 30 0.0 11 -272.52804294314694 +26.83554914835048 21 -131.12380243181988 +294.7738435039605 31 0.0 0 @@ -4387,15 +4107,15 @@ LINE 8 0 10 -272.52804294314694 +26.83554914835048 20 -131.12380243181988 +294.7738435039605 30 0.0 11 -272.52804294314694 +26.3555123792512 21 -122.37140729545962 +294.9137173768343 31 0.0 0 @@ -4405,15 +4125,15 @@ LINE 8 0 10 -319.2477556839554 +26.3555123792512 20 -223.5120791976936 +294.9137173768343 30 0.0 11 -314.2109561925024 +21.318712887798156 21 -206.22615649603978 +277.62779467518055 31 0.0 0 @@ -4423,15 +4143,15 @@ LINE 8 0 10 -314.2109561925024 +21.318712887798156 20 -206.22615649603978 +277.62779467518055 30 0.0 11 -314.69099296160164 +21.798749656897446 21 -206.08628262316594 +277.4879208023067 31 0.0 0 @@ -4441,15 +4161,15 @@ LINE 8 0 10 -314.69099296160164 +26.835549148350342 20 -206.08628262316594 +206.22615649604003 30 0.0 11 -319.72779245305475 +21.798749656897346 21 -223.37220532481973 +223.51207919769385 31 0.0 0 @@ -4459,15 +4179,15 @@ LINE 8 0 10 -319.72779245305475 +21.798749656897346 20 -223.37220532481973 +223.51207919769385 30 0.0 11 -319.2477556839554 +21.31871288779806 21 -223.5120791976936 +223.37220532482002 31 0.0 0 @@ -4477,15 +4197,15 @@ LINE 8 0 10 -314.21095619250247 +21.31871288779806 20 -294.77384350396034 +223.37220532482002 30 0.0 11 -319.24775568395546 +26.355512379251053 21 -277.4879208023065 +206.08628262316617 31 0.0 0 @@ -4495,15 +4215,15 @@ LINE 8 0 10 -319.24775568395546 +26.355512379251053 20 -277.4879208023065 +206.08628262316617 30 0.0 11 -319.72779245305475 +26.835549148350342 21 -277.6277946751803 +206.22615649604003 31 0.0 0 @@ -4513,15 +4233,15 @@ LINE 8 0 10 -319.72779245305475 +68.51846239770559 20 -277.6277946751803 +122.37140729545976 30 0.0 11 -314.69099296160164 +68.51846239770562 21 -294.91371737683414 +131.12380243182005 31 0.0 0 @@ -4531,15 +4251,15 @@ LINE 8 0 10 -314.69099296160164 +68.51846239770562 20 -294.91371737683414 +131.12380243182005 30 0.0 11 -314.21095619250247 +51.01367212498507 21 -294.77384350396034 +131.12380243182008 31 0.0 0 @@ -4549,15 +4269,15 @@ LINE 8 0 10 -216.45507085224477 +51.01367212498507 20 -373.25000000000017 +131.12380243182008 30 0.0 11 -204.86416176133565 +51.01367212498506 21 -373.25000000000017 +122.3714072954598 31 0.0 0 @@ -4567,15 +4287,15 @@ LINE 8 0 10 -204.86416176133565 +259.52804294314706 20 -373.25000000000017 +378.6285927045405 30 0.0 11 -204.86416176133565 +259.52804294314706 21 -372.7500000000001 +369.87619756818015 31 0.0 0 @@ -4585,15 +4305,15 @@ LINE 8 0 10 -204.86416176133565 +259.52804294314706 20 -372.7500000000001 +369.87619756818015 30 0.0 11 -216.45507085224477 +277.0328332158676 21 -372.7500000000001 +369.87619756818015 31 0.0 0 @@ -4603,15 +4323,15 @@ LINE 8 0 10 -216.45507085224477 +277.0328332158676 20 -372.7500000000001 +369.87619756818015 30 0.0 11 -216.45507085224477 +277.0328332158676 21 -373.25000000000017 +378.6285927045405 31 0.0 0 @@ -4621,15 +4341,15 @@ LINE 8 0 10 -244.1823435795175 +488.3550614105757 20 -373.25000000000006 +105.00000000000001 30 0.0 11 -232.5914344886084 +426.7007833757142 21 -373.25000000000017 +105.00000000000001 31 0.0 0 @@ -4639,33 +4359,35 @@ LINE 8 0 10 -232.5914344886084 +426.7007833757142 20 -373.25000000000017 +166.0 30 0.0 11 -232.5914344886084 +488.3550614105757 21 -372.7500000000001 +166.0 31 0.0 0 LINE + 6 +DOTTED 62 -5 +3 8 0 10 -232.5914344886084 +426.7007833757142 20 -372.7500000000001 +166.0 30 0.0 11 -244.1823435795175 +426.7007833757142 21 -372.75000000000006 +105.00000000000001 31 0.0 0 @@ -4675,15 +4397,15 @@ LINE 8 0 10 -244.1823435795175 +498.3550614105757 20 -372.75000000000006 +105.00000000000001 30 0.0 11 -244.1823435795175 +488.3550614105757 21 -373.25000000000006 +105.00000000000001 31 0.0 0 @@ -4693,15 +4415,15 @@ LINE 8 0 10 -232.5914344886084 +498.3550614105757 20 -357.75000000000017 +166.0 30 0.0 11 -244.1823435795175 +498.3550614105757 21 -357.7500000000001 +105.00000000000001 31 0.0 0 @@ -4711,15 +4433,15 @@ LINE 8 0 10 -244.1823435795175 +488.3550614105757 20 -357.7500000000001 +166.0 30 0.0 11 -244.1823435795175 +498.3550614105757 21 -358.2500000000001 +166.0 31 0.0 0 @@ -4729,51 +4451,55 @@ LINE 8 0 10 -244.1823435795175 +399.7007833757142 20 -358.2500000000001 +166.0 30 0.0 11 -232.5914344886084 +426.7007833757142 21 -358.25000000000017 +166.0 31 0.0 0 LINE + 6 +DOTTED 62 -5 +3 8 0 10 -232.5914344886084 +399.7007833757142 20 -358.25000000000017 +105.00000000000001 30 0.0 11 -232.5914344886084 +399.7007833757142 21 -357.75000000000017 +166.0 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -204.86416176133562 +426.7007833757142 20 -357.75000000000017 +105.00000000000001 30 0.0 11 -216.45507085224475 +399.7007833757142 21 -357.75000000000017 +105.00000000000001 31 0.0 0 @@ -4783,15 +4509,15 @@ LINE 8 0 10 -216.45507085224475 +338.0465053408528 20 -357.75000000000017 +166.0 30 0.0 11 -216.45507085224475 +399.7007833757142 21 -358.25000000000017 +166.0 31 0.0 0 @@ -4801,15 +4527,15 @@ LINE 8 0 10 -216.45507085224475 +338.0465053408528 20 -358.25000000000017 +105.00000000000001 30 0.0 11 -204.86416176133562 +338.0465053408528 21 -358.25000000000017 +166.0 31 0.0 0 @@ -4819,15 +4545,15 @@ LINE 8 0 10 -204.86416176133562 +399.7007833757142 20 -358.25000000000017 +105.00000000000001 30 0.0 11 -204.86416176133562 +338.0465053408528 21 -357.75000000000017 +105.00000000000001 31 0.0 0 @@ -4837,15 +4563,15 @@ LINE 8 0 10 -176.27325267042653 +426.7007833757142 20 -388.4166666666668 +105.00000000000001 30 0.0 11 -176.27325267042653 +426.7007833757142 21 -376.5833333333335 +88.00000000000001 31 0.0 0 @@ -4855,33 +4581,35 @@ LINE 8 0 10 -176.27325267042653 +399.7007833757142 20 -376.5833333333335 +88.00000000000001 30 0.0 11 -176.77325267042653 +399.7007833757142 21 -376.5833333333335 +105.00000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -176.77325267042653 +426.7007833757142 20 -376.5833333333335 +88.00000000000001 30 0.0 11 -176.77325267042653 +399.7007833757142 21 -388.4166666666668 +88.00000000000001 31 0.0 0 @@ -4891,15 +4619,15 @@ LINE 8 0 10 -176.77325267042653 +426.7007833757142 20 -388.4166666666668 +88.00000000000001 30 0.0 11 -176.27325267042653 +426.7007833757142 21 -388.4166666666668 +27.000000000000004 31 0.0 0 @@ -4909,33 +4637,35 @@ LINE 8 0 10 -167.77325267042664 +399.7007833757142 20 -476.50000000000017 +27.000000000000004 30 0.0 11 -176.27325267042661 +399.7007833757142 21 -476.50000000000017 +88.00000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -176.27325267042661 +426.7007833757142 20 -476.50000000000017 +27.000000000000004 30 0.0 11 -176.27325267042661 +399.7007833757142 21 -477.00000000000017 +27.000000000000004 31 0.0 0 @@ -4945,15 +4675,15 @@ LINE 8 0 10 -176.27325267042661 +426.7007833757142 20 -477.00000000000017 +27.000000000000004 30 0.0 11 -167.77325267042664 +426.7007833757142 21 -477.00000000000017 +10.000000000000002 31 0.0 0 @@ -4963,33 +4693,35 @@ LINE 8 0 10 -167.77325267042664 +399.7007833757142 20 -477.00000000000017 +10.000000000000002 30 0.0 11 -167.77325267042664 +399.7007833757142 21 -476.50000000000017 +27.000000000000004 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -141.02325267042656 +399.7007833757142 20 -376.50000000000017 +10.000000000000002 30 0.0 11 -145.02325267042653 +426.7007833757142 21 -376.50000000000017 +10.000000000000002 31 0.0 0 @@ -4999,15 +4731,15 @@ LINE 8 0 10 -145.02325267042653 +399.7007833757142 20 -376.50000000000017 +0.0 30 0.0 11 -145.02325267042653 +399.7007833757142 21 -388.50000000000017 +10.000000000000002 31 0.0 0 @@ -5017,15 +4749,15 @@ LINE 8 0 10 -145.02325267042653 +426.7007833757142 20 -388.50000000000017 +0.0 30 0.0 11 -141.02325267042656 +399.7007833757142 21 -388.50000000000017 +0.0 31 0.0 0 @@ -5035,15 +4767,15 @@ LINE 8 0 10 -141.02325267042656 +426.7007833757142 20 -388.50000000000017 +10.000000000000002 30 0.0 11 -141.02325267042656 +426.7007833757142 21 -376.50000000000017 +0.0 31 0.0 0 @@ -5053,15 +4785,15 @@ LINE 8 0 10 -153.02325267042656 +495.8550614105757 20 -378.00000000000017 +154.90909090909093 30 0.0 11 -157.02325267042656 +490.8550614105757 21 -378.00000000000017 +154.90909090909093 31 0.0 0 @@ -5071,15 +4803,15 @@ LINE 8 0 10 -157.02325267042656 +490.8550614105757 20 -378.00000000000017 +154.90909090909093 30 0.0 11 -157.02325267042656 +490.8550614105757 21 -387.00000000000017 +143.8181818181818 31 0.0 0 @@ -5089,15 +4821,15 @@ LINE 8 0 10 -157.02325267042656 +490.8550614105757 20 -387.00000000000017 +143.8181818181818 30 0.0 11 -153.02325267042656 +495.8550614105757 21 -387.00000000000017 +143.8181818181818 31 0.0 0 @@ -5107,15 +4839,15 @@ LINE 8 0 10 -153.02325267042656 +495.8550614105757 20 -387.00000000000017 +127.1818181818182 30 0.0 11 -153.02325267042656 +490.8550614105757 21 -378.00000000000017 +127.1818181818182 31 0.0 0 @@ -5125,15 +4857,15 @@ LINE 8 0 10 -116.52325267042653 +490.8550614105757 20 -376.50000000000017 +127.1818181818182 30 0.0 11 -139.52325267042656 +490.8550614105757 21 -376.50000000000017 +116.09090909090911 31 0.0 0 @@ -5143,15 +4875,15 @@ LINE 8 0 10 -139.52325267042656 +490.8550614105757 20 -376.50000000000017 +116.09090909090911 30 0.0 11 -139.52325267042656 +495.8550614105757 21 -388.50000000000017 +116.09090909090911 31 0.0 0 @@ -5161,15 +4893,15 @@ LINE 8 0 10 -139.52325267042656 +422.2007833757142 20 -388.50000000000017 +102.50000000000001 30 0.0 11 -116.52325267042654 +422.2007833757142 21 -388.50000000000017 +108.50000000000001 31 0.0 0 @@ -5179,15 +4911,15 @@ LINE 8 0 10 -116.52325267042654 +422.2007833757142 20 -388.50000000000017 +108.50000000000001 30 0.0 11 -116.52325267042653 +404.2007833757142 21 -376.50000000000017 +108.50000000000001 31 0.0 0 @@ -5197,15 +4929,15 @@ LINE 8 0 10 -111.02325267042653 +404.2007833757142 20 -376.50000000000017 +108.50000000000001 30 0.0 11 -115.02325267042653 +404.2007833757142 21 -376.50000000000017 +102.50000000000001 31 0.0 0 @@ -5215,15 +4947,15 @@ LINE 8 0 10 -115.02325267042653 +404.2007833757142 20 -376.50000000000017 +102.50000000000001 30 0.0 11 -115.02325267042653 +422.2007833757142 21 -388.50000000000017 +102.50000000000001 31 0.0 0 @@ -5233,15 +4965,15 @@ LINE 8 0 10 -115.02325267042653 +408.4507833757142 20 -388.50000000000017 +158.25000000000003 30 0.0 11 -111.02325267042654 +417.9507833757142 21 -388.50000000000017 +158.25000000000003 31 0.0 0 @@ -5251,15 +4983,15 @@ LINE 8 0 10 -111.02325267042654 +417.9507833757142 20 -388.50000000000017 +158.25000000000003 30 0.0 11 -111.02325267042653 +417.9507833757142 21 -376.50000000000017 +158.75000000000003 31 0.0 0 @@ -5269,15 +5001,15 @@ LINE 8 0 10 -88.52325267042652 +417.9507833757142 20 -376.8333333333335 +158.75000000000003 30 0.0 11 -93.5232526704265 +408.4507833757142 21 -376.8333333333335 +158.75000000000003 31 0.0 0 @@ -5287,15 +5019,15 @@ LINE 8 0 10 -93.5232526704265 +408.4507833757142 20 -376.8333333333335 +158.75000000000003 30 0.0 11 -93.52325267042652 +408.4507833757142 21 -388.16666666666686 +158.25000000000003 31 0.0 0 @@ -5305,15 +5037,15 @@ LINE 8 0 10 -93.52325267042652 +417.7007833757142 20 -388.16666666666686 +2.5000000000000004 30 0.0 11 -88.52325267042653 +417.7007833757142 21 -388.16666666666686 +7.500000000000001 31 0.0 0 @@ -5323,15 +5055,15 @@ LINE 8 0 10 -51.01367212498543 +417.7007833757142 20 -378.6285927045407 +7.500000000000001 30 0.0 11 -51.013672124985426 +408.7007833757142 21 -369.87619756818043 +7.500000000000001 31 0.0 0 @@ -5341,15 +5073,15 @@ LINE 8 0 10 -51.013672124985426 +408.7007833757142 20 -369.87619756818043 +7.500000000000001 30 0.0 11 -68.51846239770595 +408.7007833757142 21 -369.87619756818043 +2.5000000000000004 31 0.0 0 @@ -5359,33 +5091,35 @@ LINE 8 0 10 -68.51846239770595 +578.3550614105758 20 -369.87619756818043 +123.50000000000001 30 0.0 11 -68.51846239770595 +542.3550614105758 21 -378.6285927045407 +123.50000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +3 8 0 10 -21.798749656897446 +578.3550614105758 20 -277.4879208023067 +123.50000000000001 30 0.0 11 -26.83554914835048 +578.3550614105758 21 -294.7738435039605 +147.5 31 0.0 0 @@ -5395,15 +5129,15 @@ LINE 8 0 10 -26.83554914835048 +542.3550614105758 20 -294.7738435039605 +147.5 30 0.0 11 -26.3555123792512 +578.3550614105758 21 -294.9137173768343 +147.5 31 0.0 0 @@ -5413,15 +5147,15 @@ LINE 8 0 10 -26.3555123792512 +578.3550614105758 20 -294.9137173768343 +147.5 30 0.0 11 -21.318712887798156 +623.3550614105758 21 -277.62779467518055 +147.5 31 0.0 0 @@ -5431,15 +5165,15 @@ LINE 8 0 10 -21.318712887798156 +623.3550614105758 20 -277.62779467518055 +123.50000000000001 30 0.0 11 -21.798749656897446 +578.3550614105758 21 -277.4879208023067 +123.50000000000001 31 0.0 0 @@ -5449,15 +5183,15 @@ LINE 8 0 10 -26.835549148350342 +623.3550614105758 20 -206.22615649604003 +147.5 30 0.0 11 -21.798749656897346 +623.3550614105758 21 -223.51207919769385 +123.50000000000001 31 0.0 0 @@ -5467,33 +5201,35 @@ LINE 8 0 10 -21.798749656897346 +542.3550614105758 20 -223.51207919769385 +123.50000000000001 30 0.0 11 -21.31871288779806 +508.35506141057573 21 -223.37220532482002 +123.50000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -21.31871288779806 +508.35506141057573 20 -223.37220532482002 +147.5 30 0.0 11 -26.355512379251053 +542.3550614105758 21 -206.08628262316617 +147.5 31 0.0 0 @@ -5503,15 +5239,15 @@ LINE 8 0 10 -26.355512379251053 +508.35506141057573 20 -206.08628262316617 +113.50000000000001 30 0.0 11 -26.835549148350342 +508.35506141057573 21 -206.22615649604003 +52.50000000000001 31 0.0 0 @@ -5521,15 +5257,15 @@ LINE 8 0 10 -68.51846239770559 +508.35506141057573 20 -122.37140729545976 +123.50000000000001 30 0.0 11 -68.51846239770562 +508.35506141057573 21 -131.12380243182005 +113.50000000000001 31 0.0 0 @@ -5539,15 +5275,15 @@ LINE 8 0 10 -68.51846239770562 +508.35506141057573 20 -131.12380243182005 +221.50000000000003 30 0.0 11 -51.01367212498507 +508.35506141057573 21 -131.12380243182008 +147.5 31 0.0 0 @@ -5557,15 +5293,15 @@ LINE 8 0 10 -51.01367212498507 +508.35506141057573 20 -131.12380243182008 +221.50000000000003 30 0.0 11 -51.01367212498506 +508.35506141057573 21 -122.3714072954598 +221.50000000000003 31 0.0 0 @@ -5575,15 +5311,15 @@ LINE 8 0 10 -272.52804294314706 +508.35506141057573 20 -378.6285927045405 +147.5 30 0.0 11 -272.52804294314706 +508.35506141057573 21 -369.87619756818015 +221.50000000000003 31 0.0 0 @@ -5593,15 +5329,15 @@ LINE 8 0 10 -272.52804294314706 +508.35506141057573 20 -369.87619756818015 +123.50000000000001 30 0.0 11 -290.03283321586764 +508.35506141057573 21 -369.87619756818015 +147.5 31 0.0 0 @@ -5611,15 +5347,15 @@ LINE 8 0 10 -290.03283321586764 +508.35506141057573 20 -369.87619756818015 +113.50000000000001 30 0.0 11 -290.03283321586764 +508.35506141057573 21 -378.6285927045405 +123.50000000000001 31 0.0 0 @@ -5629,15 +5365,15 @@ LINE 8 0 10 -511.3550614105758 +508.35506141057573 20 -105.00000000000001 +52.50000000000001 30 0.0 11 -449.7007833757143 +508.35506141057573 21 -105.00000000000001 +113.50000000000001 31 0.0 0 @@ -5647,35 +5383,33 @@ LINE 8 0 10 -449.7007833757143 +508.35506141057573 20 -166.0 +52.50000000000001 30 0.0 11 -511.3550614105758 +508.35506141057573 21 -166.0 +52.50000000000001 31 0.0 0 LINE - 6 -DOTTED 62 -3 +5 8 0 10 -449.7007833757143 +508.35506141057573 20 -166.0 +147.5 30 0.0 11 -449.7007833757143 +508.35506141057573 21 -105.00000000000001 +167.50000000000003 31 0.0 0 @@ -5685,33 +5419,35 @@ LINE 8 0 10 -521.3550614105757 +542.3550614105758 20 -105.00000000000001 +167.50000000000003 30 0.0 11 -511.3550614105758 +542.3550614105758 21 -105.00000000000001 +147.5 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -521.3550614105757 +508.35506141057573 20 -166.0 +167.50000000000003 30 0.0 11 -521.3550614105757 +542.3550614105758 21 -105.00000000000001 +167.50000000000003 31 0.0 0 @@ -5721,15 +5457,15 @@ LINE 8 0 10 -511.3550614105758 +508.35506141057573 20 -166.0 +167.50000000000003 30 0.0 11 -521.3550614105757 +508.35506141057573 21 -166.0 +191.50000000000003 31 0.0 0 @@ -5739,15 +5475,15 @@ LINE 8 0 10 -422.7007833757143 +542.3550614105758 20 -166.0 +191.50000000000003 30 0.0 11 -449.7007833757143 +542.3550614105758 21 -166.0 +167.50000000000003 31 0.0 0 @@ -5755,39 +5491,37 @@ LINE 6 DOTTED 62 -3 +1 8 0 10 -422.7007833757143 +508.35506141057573 20 -105.00000000000001 +191.50000000000003 30 0.0 11 -422.7007833757143 +542.3550614105758 21 -166.0 +191.50000000000003 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -449.7007833757143 +508.35506141057573 20 -105.00000000000001 +191.50000000000003 30 0.0 11 -422.7007833757143 +508.35506141057573 21 -105.00000000000001 +211.5 31 0.0 0 @@ -5797,33 +5531,35 @@ LINE 8 0 10 -361.0465053408529 +542.3550614105758 20 -166.0 +211.5 30 0.0 11 -422.7007833757143 +542.3550614105758 21 -166.0 +191.50000000000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -422.7007833757143 +542.3550614105758 20 -105.00000000000001 +211.5 30 0.0 11 -361.0465053408529 +508.35506141057573 21 -105.00000000000001 +211.5 31 0.0 0 @@ -5833,15 +5569,15 @@ LINE 8 0 10 -351.0465053408529 +542.3550614105758 20 -166.0 +221.50000000000003 30 0.0 11 -361.0465053408529 +542.3550614105758 21 -166.0 +211.5 31 0.0 0 @@ -5851,15 +5587,15 @@ LINE 8 0 10 -351.0465053408529 +508.35506141057573 20 -105.00000000000001 +221.50000000000003 30 0.0 11 -351.0465053408529 +542.3550614105758 21 -166.0 +221.50000000000003 31 0.0 0 @@ -5869,15 +5605,15 @@ LINE 8 0 10 -361.0465053408529 +508.35506141057573 20 -105.00000000000001 +211.5 30 0.0 11 -351.0465053408529 +508.35506141057573 21 -105.00000000000001 +221.50000000000003 31 0.0 0 @@ -5887,15 +5623,15 @@ LINE 8 0 10 -449.7007833757143 +619.3550614105757 20 -105.00000000000001 +139.75000000000003 30 0.0 11 -449.7007833757143 +619.3550614105757 21 -88.00000000000001 +131.25 31 0.0 0 @@ -5905,35 +5641,33 @@ LINE 8 0 10 -422.7007833757143 +619.3550614105757 20 -88.00000000000001 +131.25 30 0.0 11 -422.7007833757143 +619.8550614105757 21 -105.00000000000001 +131.25 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -449.7007833757143 +619.8550614105757 20 -88.00000000000001 +131.25 30 0.0 11 -422.7007833757143 +619.8550614105757 21 -88.00000000000001 +139.75000000000003 31 0.0 0 @@ -5943,15 +5677,15 @@ LINE 8 0 10 -449.7007833757143 +619.8550614105757 20 -88.00000000000001 +139.75000000000003 30 0.0 11 -449.7007833757143 +619.3550614105757 21 -27.000000000000004 +139.75000000000003 31 0.0 0 @@ -5961,35 +5695,33 @@ LINE 8 0 10 -422.7007833757143 +531.2717280772423 20 -27.000000000000004 +131.25 30 0.0 11 -422.7007833757143 +519.4383947439092 21 -88.00000000000001 +131.25 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -449.7007833757143 +519.4383947439092 20 -27.000000000000004 +131.25 30 0.0 11 -422.7007833757143 +519.4383947439092 21 -27.000000000000004 +130.75000000000003 31 0.0 0 @@ -5999,15 +5731,15 @@ LINE 8 0 10 -449.7007833757143 +519.4383947439092 20 -27.000000000000004 +130.75000000000003 30 0.0 11 -449.7007833757143 +531.2717280772423 21 -10.000000000000002 +130.75000000000003 31 0.0 0 @@ -6017,35 +5749,33 @@ LINE 8 0 10 -422.7007833757143 +531.2717280772423 20 -10.000000000000002 +130.75000000000003 30 0.0 11 -422.7007833757143 +531.2717280772423 21 -27.000000000000004 +131.25 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -422.7007833757143 +500.60506141057573 20 -10.000000000000002 +74.93181818181819 30 0.0 11 -449.7007833757143 +500.60506141057573 21 -10.000000000000002 +63.3409090909091 31 0.0 0 @@ -6055,15 +5785,15 @@ LINE 8 0 10 -422.7007833757143 +500.60506141057573 20 -0.0 +63.3409090909091 30 0.0 11 -422.7007833757143 +501.10506141057573 21 -10.000000000000002 +63.3409090909091 31 0.0 0 @@ -6073,15 +5803,15 @@ LINE 8 0 10 -449.7007833757143 +501.10506141057573 20 -0.0 +63.3409090909091 30 0.0 11 -422.7007833757143 +501.10506141057573 21 -0.0 +74.93181818181819 31 0.0 0 @@ -6091,15 +5821,15 @@ LINE 8 0 10 -449.7007833757143 +501.10506141057573 20 -10.000000000000002 +74.93181818181819 30 0.0 11 -449.7007833757143 +500.60506141057573 21 -0.0 +74.93181818181819 31 0.0 0 @@ -6109,15 +5839,15 @@ LINE 8 0 10 -518.8550614105758 +500.60506141057573 20 -154.90909090909093 +102.65909090909092 30 0.0 11 -513.8550614105758 +500.60506141057573 21 -154.90909090909093 +91.06818181818183 31 0.0 0 @@ -6127,15 +5857,15 @@ LINE 8 0 10 -513.8550614105758 +500.60506141057573 20 -154.90909090909093 +91.06818181818183 30 0.0 11 -513.8550614105758 +501.10506141057573 21 -143.8181818181818 +91.06818181818183 31 0.0 0 @@ -6145,15 +5875,15 @@ LINE 8 0 10 -513.8550614105758 +501.10506141057573 20 -143.8181818181818 +91.06818181818183 30 0.0 11 -518.8550614105758 +501.10506141057573 21 -143.8181818181818 +102.65909090909092 31 0.0 0 @@ -6163,15 +5893,15 @@ LINE 8 0 10 -518.8550614105758 +501.10506141057573 20 -127.1818181818182 +102.65909090909092 30 0.0 11 -513.8550614105758 +500.60506141057573 21 -127.1818181818182 +102.65909090909092 31 0.0 0 @@ -6181,15 +5911,15 @@ LINE 8 0 10 -513.8550614105758 +519.3550614105758 20 -127.1818181818182 +166.50000000000003 30 0.0 11 -513.8550614105758 +519.3550614105758 21 -116.09090909090911 +162.50000000000003 31 0.0 0 @@ -6199,15 +5929,15 @@ LINE 8 0 10 -513.8550614105758 +519.3550614105758 20 -116.09090909090911 +162.50000000000003 30 0.0 11 -518.8550614105758 +531.3550614105757 21 -116.09090909090911 +162.50000000000003 31 0.0 0 @@ -6217,15 +5947,15 @@ LINE 8 0 10 -445.2007833757143 +531.3550614105757 20 -102.50000000000001 +162.50000000000003 30 0.0 11 -445.2007833757143 +531.3550614105757 21 -108.50000000000001 +166.50000000000003 31 0.0 0 @@ -6235,15 +5965,15 @@ LINE 8 0 10 -445.2007833757143 +531.3550614105757 20 -108.50000000000001 +166.50000000000003 30 0.0 11 -427.2007833757143 +519.3550614105758 21 -108.50000000000001 +166.50000000000003 31 0.0 0 @@ -6253,15 +5983,15 @@ LINE 8 0 10 -427.2007833757143 +520.8550614105757 20 -108.50000000000001 +154.5 30 0.0 11 -427.2007833757143 +520.8550614105757 21 -102.50000000000001 +150.5 31 0.0 0 @@ -6271,15 +6001,15 @@ LINE 8 0 10 -427.2007833757143 +520.8550614105757 20 -102.50000000000001 +150.5 30 0.0 11 -445.2007833757143 +529.8550614105758 21 -102.50000000000001 +150.5 31 0.0 0 @@ -6289,15 +6019,15 @@ LINE 8 0 10 -431.4507833757143 +529.8550614105758 20 -158.25000000000003 +150.5 30 0.0 11 -440.9507833757143 +529.8550614105758 21 -158.25000000000003 +154.5 31 0.0 0 @@ -6307,15 +6037,15 @@ LINE 8 0 10 -440.9507833757143 +529.8550614105758 20 -158.25000000000003 +154.5 30 0.0 11 -440.9507833757143 +520.8550614105757 21 -158.75000000000003 +154.5 31 0.0 0 @@ -6325,15 +6055,15 @@ LINE 8 0 10 -440.9507833757143 +519.3550614105758 20 -158.75000000000003 +191.0 30 0.0 11 -431.4507833757143 +519.3550614105758 21 -158.75000000000003 +168.0 31 0.0 0 @@ -6343,15 +6073,15 @@ LINE 8 0 10 -431.4507833757143 +519.3550614105758 20 -158.75000000000003 +168.0 30 0.0 11 -431.4507833757143 +531.3550614105757 21 -158.25000000000003 +168.0 31 0.0 0 @@ -6361,15 +6091,15 @@ LINE 8 0 10 -353.54650534085283 +531.3550614105757 20 -116.09090909090911 +168.0 30 0.0 11 -358.54650534085283 +531.3550614105757 21 -116.09090909090911 +191.0 31 0.0 0 @@ -6379,15 +6109,15 @@ LINE 8 0 10 -358.54650534085283 +531.3550614105757 20 -116.09090909090911 +191.0 30 0.0 11 -358.54650534085283 +519.3550614105758 21 -127.18181818181822 +191.0 31 0.0 0 @@ -6397,15 +6127,15 @@ LINE 8 0 10 -358.54650534085283 +519.3550614105758 20 -127.18181818181822 +196.50000000000003 30 0.0 11 -353.54650534085283 +519.3550614105758 21 -127.18181818181822 +192.50000000000003 31 0.0 0 @@ -6415,15 +6145,15 @@ LINE 8 0 10 -353.54650534085283 +519.3550614105758 20 -143.81818181818184 +192.50000000000003 30 0.0 11 -358.54650534085283 +531.3550614105757 21 -143.81818181818184 +192.50000000000003 31 0.0 0 @@ -6433,15 +6163,15 @@ LINE 8 0 10 -358.54650534085283 +531.3550614105757 20 -143.81818181818184 +192.50000000000003 30 0.0 11 -358.54650534085283 +531.3550614105757 21 -154.90909090909093 +196.50000000000003 31 0.0 0 @@ -6451,15 +6181,15 @@ LINE 8 0 10 -358.54650534085283 +531.3550614105757 20 -154.90909090909093 +196.50000000000003 30 0.0 11 -353.54650534085283 +519.3550614105758 21 -154.90909090909093 +196.50000000000003 31 0.0 0 @@ -6469,15 +6199,15 @@ LINE 8 0 10 -440.7007833757143 +519.6883947439092 20 -2.5000000000000004 +219.00000000000003 30 0.0 11 -440.7007833757143 +519.6883947439092 21 -7.500000000000001 +214.0 31 0.0 0 @@ -6487,15 +6217,15 @@ LINE 8 0 10 -440.7007833757143 +519.6883947439092 20 -7.500000000000001 +214.0 30 0.0 11 -431.7007833757143 +531.0217280772423 21 -7.500000000000001 +214.0 31 0.0 0 @@ -6505,15 +6235,15 @@ LINE 8 0 10 -431.7007833757143 +531.0217280772423 20 -7.500000000000001 +214.0 30 0.0 11 -431.7007833757143 +531.0217280772423 21 -2.5000000000000004 +219.00000000000003 31 0.0 0 @@ -6525,13 +6255,13 @@ DOTTED 8 0 10 -564.3550614105757 +666.3550614105757 20 123.50000000000001 30 0.0 11 -625.3550614105758 +727.3550614105758 21 123.50000000000001 31 @@ -6545,13 +6275,13 @@ DOTTED 8 0 10 -625.3550614105758 +727.3550614105758 20 123.50000000000001 30 0.0 11 -625.3550614105758 +727.3550614105758 21 147.5 31 @@ -6565,13 +6295,13 @@ DOTTED 8 0 10 -625.3550614105758 +727.3550614105758 20 147.5 30 0.0 11 -564.3550614105757 +666.3550614105757 21 147.5 31 @@ -6585,13 +6315,13 @@ DOTTED 8 0 10 -564.3550614105757 +666.3550614105757 20 147.5 30 0.0 11 -564.3550614105757 +666.3550614105757 21 123.50000000000001 31 @@ -6603,13 +6333,13 @@ LINE 8 0 10 -564.3550614105757 +666.3550614105757 20 116.50000000000001 30 0.0 11 -564.3550614105757 +666.3550614105757 21 123.50000000000001 31 @@ -6621,13 +6351,13 @@ LINE 8 0 10 -624.3550614105758 +726.3550614105758 20 116.50000000000001 30 0.0 11 -564.3550614105757 +666.3550614105757 21 116.50000000000001 31 @@ -6639,13 +6369,13 @@ LINE 8 0 10 -624.3550614105758 +726.3550614105758 20 123.50000000000001 30 0.0 11 -624.3550614105758 +726.3550614105758 21 116.50000000000001 31 @@ -6657,13 +6387,13 @@ LINE 8 0 10 -632.3550614105758 +734.3550614105758 20 123.50000000000001 30 0.0 11 -625.3550614105758 +727.3550614105758 21 123.50000000000001 31 @@ -6675,13 +6405,13 @@ LINE 8 0 10 -632.3550614105758 +734.3550614105758 20 147.5 30 0.0 11 -632.3550614105758 +734.3550614105758 21 123.50000000000001 31 @@ -6693,13 +6423,13 @@ LINE 8 0 10 -625.3550614105758 +727.3550614105758 20 147.5 30 0.0 11 -632.3550614105758 +734.3550614105758 21 147.5 31 @@ -6713,13 +6443,13 @@ DOTTED 8 0 10 -625.3550614105758 +727.3550614105758 20 147.5 30 0.0 11 -625.3550614105758 +727.3550614105758 21 208.50000000000003 31 @@ -6731,13 +6461,13 @@ LINE 8 0 10 -565.3550614105757 +667.3550614105757 20 208.50000000000003 30 0.0 11 -625.3550614105758 +727.3550614105758 21 208.50000000000003 31 @@ -6751,13 +6481,13 @@ DOTTED 8 0 10 -565.3550614105757 +667.3550614105757 20 147.5 30 0.0 11 -565.3550614105757 +667.3550614105757 21 208.50000000000003 31 @@ -6769,13 +6499,13 @@ LINE 8 0 10 -649.3550614105757 +751.3550614105758 20 147.5 30 0.0 11 -625.3550614105758 +727.3550614105758 21 147.5 31 @@ -6789,13 +6519,13 @@ DOTTED 8 0 10 -649.3550614105757 +751.3550614105758 20 147.5 30 0.0 11 -649.3550614105757 +751.3550614105758 21 208.50000000000003 31 @@ -6807,13 +6537,13 @@ LINE 8 0 10 -625.3550614105758 +727.3550614105758 20 208.50000000000003 30 0.0 11 -649.3550614105757 +751.3550614105758 21 208.50000000000003 31 @@ -6825,13 +6555,13 @@ LINE 8 0 10 -709.3550614105758 +811.3550614105757 20 147.5 30 0.0 11 -649.3550614105757 +751.3550614105758 21 147.5 31 @@ -6843,13 +6573,13 @@ LINE 8 0 10 -709.3550614105758 +811.3550614105757 20 208.50000000000003 30 0.0 11 -709.3550614105758 +811.3550614105757 21 147.5 31 @@ -6861,13 +6591,13 @@ LINE 8 0 10 -649.3550614105757 +751.3550614105758 20 208.50000000000003 30 0.0 11 -709.3550614105758 +811.3550614105757 21 208.50000000000003 31 @@ -6879,13 +6609,13 @@ LINE 8 0 10 -565.3550614105757 +667.3550614105757 20 147.5 30 0.0 11 -541.3550614105758 +643.3550614105758 21 147.5 31 @@ -6897,13 +6627,13 @@ LINE 8 0 10 -541.3550614105758 +643.3550614105758 20 208.50000000000003 30 0.0 11 -565.3550614105757 +667.3550614105757 21 208.50000000000003 31 @@ -6917,13 +6647,13 @@ DOTTED 8 0 10 -541.3550614105758 +643.3550614105758 20 208.50000000000003 30 0.0 11 -541.3550614105758 +643.3550614105758 21 147.5 31 @@ -6935,13 +6665,13 @@ LINE 8 0 10 -531.3550614105757 +633.3550614105758 20 208.50000000000003 30 0.0 11 -541.3550614105758 +643.3550614105758 21 208.50000000000003 31 @@ -6953,13 +6683,13 @@ LINE 8 0 10 -531.3550614105757 +633.3550614105758 20 147.5 30 0.0 11 -531.3550614105757 +633.3550614105758 21 208.50000000000003 31 @@ -6971,13 +6701,13 @@ LINE 8 0 10 -541.3550614105758 +643.3550614105758 20 147.5 30 0.0 11 -531.3550614105757 +633.3550614105758 21 147.5 31 @@ -6989,13 +6719,13 @@ LINE 8 0 10 -557.3550614105757 +659.3550614105758 20 147.5 30 0.0 11 -564.3550614105757 +666.3550614105757 21 147.5 31 @@ -7007,13 +6737,13 @@ LINE 8 0 10 -557.3550614105757 +659.3550614105758 20 123.50000000000001 30 0.0 11 -557.3550614105757 +659.3550614105758 21 147.5 31 @@ -7025,13 +6755,13 @@ LINE 8 0 10 -564.3550614105757 +666.3550614105757 20 123.50000000000001 30 0.0 11 -557.3550614105757 +659.3550614105758 21 123.50000000000001 31 @@ -7043,13 +6773,13 @@ LINE 8 0 10 -613.4459705014848 +715.4459705014848 20 118.25000000000001 30 0.0 11 -616.9459705014849 +718.9459705014849 21 118.25000000000001 31 @@ -7061,13 +6791,13 @@ LINE 8 0 10 -616.9459705014849 +718.9459705014849 20 118.25000000000001 30 0.0 11 -613.4459705014848 +715.4459705014848 21 121.75000000000001 31 @@ -7079,13 +6809,13 @@ LINE 8 0 10 -613.4459705014848 +715.4459705014848 20 121.75000000000001 30 0.0 11 -602.5368795923939 +704.5368795923939 21 121.75000000000001 31 @@ -7097,13 +6827,13 @@ LINE 8 0 10 -602.5368795923939 +704.5368795923939 20 121.75000000000001 30 0.0 11 -599.0368795923939 +701.0368795923939 21 118.25000000000001 31 @@ -7115,13 +6845,13 @@ LINE 8 0 10 -599.0368795923939 +701.0368795923939 20 118.25000000000001 30 0.0 11 -602.5368795923939 +704.5368795923939 21 118.25000000000001 31 @@ -7133,13 +6863,13 @@ LINE 8 0 10 -586.1732432287575 +688.1732432287577 20 118.25000000000001 30 0.0 11 -589.6732432287577 +691.6732432287577 21 118.25000000000001 31 @@ -7151,13 +6881,13 @@ LINE 8 0 10 -589.6732432287577 +691.6732432287577 20 118.25000000000001 30 0.0 11 -586.1732432287575 +688.1732432287577 21 121.75000000000001 31 @@ -7169,13 +6899,13 @@ LINE 8 0 10 -586.1732432287575 +688.1732432287577 20 121.75000000000001 30 0.0 11 -575.2641523196667 +677.2641523196667 21 121.75000000000001 31 @@ -7187,13 +6917,13 @@ LINE 8 0 10 -575.2641523196667 +677.2641523196667 20 121.75000000000001 30 0.0 11 -571.7641523196666 +673.7641523196667 21 118.25000000000001 31 @@ -7205,13 +6935,13 @@ LINE 8 0 10 -571.7641523196666 +673.7641523196667 20 118.25000000000001 30 0.0 11 -575.2641523196667 +677.2641523196667 21 118.25000000000001 31 @@ -7223,13 +6953,13 @@ LINE 8 0 10 -630.6050614105758 +732.6050614105758 20 139.50000000000003 30 0.0 11 -627.1050614105758 +729.1050614105758 21 139.50000000000003 31 @@ -7241,13 +6971,13 @@ LINE 8 0 10 -627.1050614105758 +729.1050614105758 20 139.50000000000003 30 0.0 11 -627.1050614105758 +729.1050614105758 21 131.50000000000003 31 @@ -7259,13 +6989,13 @@ LINE 8 0 10 -627.1050614105758 +729.1050614105758 20 131.50000000000003 30 0.0 11 -630.6050614105758 +732.6050614105758 21 131.50000000000003 31 @@ -7277,13 +7007,13 @@ LINE 8 0 10 -572.8550614105758 +674.8550614105757 20 199.00000000000003 30 0.0 11 -572.8550614105758 +674.8550614105757 21 181.00000000000003 31 @@ -7295,13 +7025,13 @@ LINE 8 0 10 -572.8550614105758 +674.8550614105757 20 181.00000000000003 30 0.0 11 -607.8550614105758 +709.8550614105758 21 181.00000000000003 31 @@ -7313,13 +7043,13 @@ LINE 8 0 10 -607.8550614105758 +709.8550614105758 20 181.00000000000003 30 0.0 11 -607.8550614105758 +709.8550614105758 21 199.00000000000003 31 @@ -7331,13 +7061,13 @@ LINE 8 0 10 -607.8550614105758 +709.8550614105758 20 199.00000000000003 30 0.0 11 -572.8550614105758 +674.8550614105757 21 199.00000000000003 31 @@ -7349,13 +7079,13 @@ LINE 8 0 10 -625.8550614105758 +727.8550614105758 20 160.75000000000003 30 0.0 11 -625.8550614105758 +727.8550614105758 21 157.75000000000003 31 @@ -7367,13 +7097,13 @@ LINE 8 0 10 -625.8550614105758 +727.8550614105758 20 157.75000000000003 30 0.0 11 -628.8550614105757 +730.8550614105757 21 157.75000000000003 31 @@ -7385,13 +7115,13 @@ LINE 8 0 10 -628.8550614105757 +730.8550614105757 20 157.75000000000003 30 0.0 11 -628.8550614105757 +730.8550614105757 21 160.75000000000003 31 @@ -7403,13 +7133,13 @@ LINE 8 0 10 -628.8550614105757 +730.8550614105757 20 160.75000000000003 30 0.0 11 -625.8550614105758 +727.8550614105758 21 160.75000000000003 31 @@ -7421,13 +7151,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 159.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 158.75000000000003 31 @@ -7439,13 +7169,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 158.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 158.75000000000003 31 @@ -7457,13 +7187,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 158.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 159.75000000000003 31 @@ -7475,13 +7205,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 159.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 159.75000000000003 31 @@ -7493,13 +7223,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 162.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 161.25 31 @@ -7511,13 +7241,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 161.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 161.25 31 @@ -7529,13 +7259,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 161.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 162.25000000000003 31 @@ -7547,13 +7277,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 162.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 162.25000000000003 31 @@ -7565,13 +7295,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 162.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 161.25 31 @@ -7583,13 +7313,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 161.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 161.25 31 @@ -7601,13 +7331,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 161.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 162.25000000000003 31 @@ -7619,13 +7349,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 162.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 162.25000000000003 31 @@ -7637,13 +7367,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 164.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 163.75 31 @@ -7655,13 +7385,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 163.75 30 0.0 11 -627.8550614105758 +729.8550614105757 21 163.75 31 @@ -7673,13 +7403,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 163.75 30 0.0 11 -627.8550614105758 +729.8550614105757 21 164.75000000000003 31 @@ -7691,13 +7421,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 164.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 164.75000000000003 31 @@ -7709,13 +7439,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 164.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 163.75 31 @@ -7727,13 +7457,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 163.75 30 0.0 11 -647.8550614105757 +749.8550614105758 21 163.75 31 @@ -7745,13 +7475,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 163.75 30 0.0 11 -647.8550614105757 +749.8550614105758 21 164.75000000000003 31 @@ -7763,13 +7493,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 164.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 164.75000000000003 31 @@ -7781,13 +7511,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 167.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 166.25 31 @@ -7799,13 +7529,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 166.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 166.25 31 @@ -7817,13 +7547,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 166.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 167.25000000000003 31 @@ -7835,13 +7565,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 167.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 167.25000000000003 31 @@ -7853,13 +7583,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 167.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 166.25 31 @@ -7871,13 +7601,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 166.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 166.25 31 @@ -7889,13 +7619,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 166.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 167.25000000000003 31 @@ -7907,13 +7637,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 167.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 167.25000000000003 31 @@ -7925,13 +7655,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 169.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 168.75000000000003 31 @@ -7943,13 +7673,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 168.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 168.75000000000003 31 @@ -7961,13 +7691,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 168.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 169.75000000000003 31 @@ -7979,13 +7709,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 169.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 169.75000000000003 31 @@ -7997,13 +7727,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 169.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 168.75000000000003 31 @@ -8015,13 +7745,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 168.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 168.75000000000003 31 @@ -8033,13 +7763,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 168.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 169.75000000000003 31 @@ -8051,13 +7781,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 169.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 169.75000000000003 31 @@ -8069,13 +7799,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 172.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 171.25000000000003 31 @@ -8087,13 +7817,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 171.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 171.25000000000003 31 @@ -8105,13 +7835,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 171.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 172.25000000000003 31 @@ -8123,13 +7853,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 172.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 172.25000000000003 31 @@ -8141,13 +7871,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 172.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 171.25000000000003 31 @@ -8159,13 +7889,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 171.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 171.25000000000003 31 @@ -8177,13 +7907,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 171.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 172.25000000000003 31 @@ -8195,13 +7925,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 172.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 172.25000000000003 31 @@ -8213,13 +7943,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 174.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 173.75000000000003 31 @@ -8231,13 +7961,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 173.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 173.75000000000003 31 @@ -8249,13 +7979,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 173.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 174.75000000000003 31 @@ -8267,13 +7997,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 174.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 174.75000000000003 31 @@ -8285,13 +8015,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 174.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 173.75000000000003 31 @@ -8303,13 +8033,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 173.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 173.75000000000003 31 @@ -8321,13 +8051,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 173.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 174.75000000000003 31 @@ -8339,13 +8069,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 174.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 174.75000000000003 31 @@ -8357,13 +8087,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 177.25 30 0.0 11 -626.8550614105758 +728.8550614105757 21 176.25000000000003 31 @@ -8375,13 +8105,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 176.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 176.25000000000003 31 @@ -8393,13 +8123,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 176.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 177.25 31 @@ -8411,13 +8141,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 177.25 30 0.0 11 -626.8550614105758 +728.8550614105757 21 177.25 31 @@ -8429,13 +8159,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 177.25 30 0.0 11 -646.8550614105757 +748.8550614105757 21 176.25000000000003 31 @@ -8447,13 +8177,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 176.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 176.25000000000003 31 @@ -8465,13 +8195,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 176.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 177.25 31 @@ -8483,13 +8213,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 177.25 30 0.0 11 -646.8550614105757 +748.8550614105757 21 177.25 31 @@ -8501,13 +8231,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 179.75 30 0.0 11 -626.8550614105758 +728.8550614105757 21 178.75000000000003 31 @@ -8519,13 +8249,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 178.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 178.75000000000003 31 @@ -8537,13 +8267,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 178.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 179.75 31 @@ -8555,13 +8285,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 179.75 30 0.0 11 -626.8550614105758 +728.8550614105757 21 179.75 31 @@ -8573,13 +8303,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 179.75 30 0.0 11 -646.8550614105757 +748.8550614105757 21 178.75000000000003 31 @@ -8591,13 +8321,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 178.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 178.75000000000003 31 @@ -8609,13 +8339,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 178.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 179.75 31 @@ -8627,13 +8357,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 179.75 30 0.0 11 -646.8550614105757 +748.8550614105757 21 179.75 31 @@ -8645,13 +8375,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 182.25 30 0.0 11 -626.8550614105758 +728.8550614105757 21 181.25000000000003 31 @@ -8663,13 +8393,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 181.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 181.25000000000003 31 @@ -8681,13 +8411,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 181.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 182.25 31 @@ -8699,13 +8429,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 182.25 30 0.0 11 -626.8550614105758 +728.8550614105757 21 182.25 31 @@ -8717,13 +8447,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 182.25 30 0.0 11 -646.8550614105757 +748.8550614105757 21 181.25000000000003 31 @@ -8735,13 +8465,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 181.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 181.25000000000003 31 @@ -8753,13 +8483,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 181.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 182.25 31 @@ -8771,13 +8501,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 182.25 30 0.0 11 -646.8550614105757 +748.8550614105757 21 182.25 31 @@ -8789,13 +8519,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 184.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 183.75000000000003 31 @@ -8807,13 +8537,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 183.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 183.75000000000003 31 @@ -8825,13 +8555,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 183.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 184.75000000000003 31 @@ -8843,13 +8573,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 184.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 184.75000000000003 31 @@ -8861,13 +8591,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 184.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 183.75000000000003 31 @@ -8879,13 +8609,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 183.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 183.75000000000003 31 @@ -8897,13 +8627,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 183.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 184.75000000000003 31 @@ -8915,13 +8645,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 184.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 184.75000000000003 31 @@ -8933,13 +8663,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 187.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 186.25000000000003 31 @@ -8951,13 +8681,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 186.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 186.25000000000003 31 @@ -8969,13 +8699,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 186.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 187.25000000000003 31 @@ -8987,13 +8717,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 187.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 187.25000000000003 31 @@ -9005,13 +8735,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 187.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 186.25000000000003 31 @@ -9023,13 +8753,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 186.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 186.25000000000003 31 @@ -9041,13 +8771,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 186.25000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 187.25000000000003 31 @@ -9059,13 +8789,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 187.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 187.25000000000003 31 @@ -9077,13 +8807,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 189.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 188.75 31 @@ -9095,13 +8825,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 188.75 30 0.0 11 -627.8550614105758 +729.8550614105757 21 188.75 31 @@ -9113,13 +8843,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 188.75 30 0.0 11 -627.8550614105758 +729.8550614105757 21 189.75000000000003 31 @@ -9131,13 +8861,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 189.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 189.75000000000003 31 @@ -9149,13 +8879,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 189.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 188.75 31 @@ -9167,13 +8897,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 188.75 30 0.0 11 -647.8550614105757 +749.8550614105758 21 188.75 31 @@ -9185,13 +8915,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 188.75 30 0.0 11 -647.8550614105757 +749.8550614105758 21 189.75000000000003 31 @@ -9203,13 +8933,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 189.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 189.75000000000003 31 @@ -9221,13 +8951,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 192.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 191.25 31 @@ -9239,13 +8969,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 191.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 191.25 31 @@ -9257,13 +8987,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 191.25 30 0.0 11 -627.8550614105758 +729.8550614105757 21 192.25000000000003 31 @@ -9275,13 +9005,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 192.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 192.25000000000003 31 @@ -9293,13 +9023,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 192.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 191.25 31 @@ -9311,13 +9041,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 191.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 191.25 31 @@ -9329,13 +9059,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 191.25 30 0.0 11 -647.8550614105757 +749.8550614105758 21 192.25000000000003 31 @@ -9347,13 +9077,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 192.25000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 192.25000000000003 31 @@ -9365,13 +9095,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 194.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 193.75000000000003 31 @@ -9383,13 +9113,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 193.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 193.75000000000003 31 @@ -9401,13 +9131,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 193.75000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 194.75000000000003 31 @@ -9419,13 +9149,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 194.75000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 194.75000000000003 31 @@ -9437,13 +9167,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 194.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 193.75000000000003 31 @@ -9455,13 +9185,13 @@ LINE 8 0 10 -646.8550614105757 +748.8550614105757 20 193.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 193.75000000000003 31 @@ -9473,13 +9203,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 193.75000000000003 30 0.0 11 -647.8550614105757 +749.8550614105758 21 194.75000000000003 31 @@ -9491,13 +9221,13 @@ LINE 8 0 10 -647.8550614105757 +749.8550614105758 20 194.75000000000003 30 0.0 11 -646.8550614105757 +748.8550614105757 21 194.75000000000003 31 @@ -9509,13 +9239,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 197.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 196.25000000000003 31 @@ -9527,13 +9257,13 @@ LINE 8 0 10 -626.8550614105758 +728.8550614105757 20 196.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 196.25000000000003 31 @@ -9545,13 +9275,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 196.25000000000003 30 0.0 11 -627.8550614105758 +729.8550614105757 21 197.25000000000003 31 @@ -9563,13 +9293,13 @@ LINE 8 0 10 -627.8550614105758 +729.8550614105757 20 197.25000000000003 30 0.0 11 -626.8550614105758 +728.8550614105757 21 197.25000000000003 31 @@ -9581,13 +9311,13 @@ LINE 8 0 10 -645.8550614105758 +747.8550614105757 20 198.25000000000003 30 0.0 11 -645.8550614105758 +747.8550614105757 21 195.25000000000003 31 @@ -9599,13 +9329,13 @@ LINE 8 0 10 -645.8550614105758 +747.8550614105757 20 195.25000000000003 30 0.0 11 -648.8550614105757 +750.8550614105758 21 195.25000000000003 31 @@ -9617,13 +9347,13 @@ LINE 8 0 10 -648.8550614105757 +750.8550614105758 20 195.25000000000003 30 0.0 11 -648.8550614105757 +750.8550614105758 21 198.25000000000003 31 @@ -9635,13 +9365,13 @@ LINE 8 0 10 -648.8550614105757 +750.8550614105758 20 198.25000000000003 30 0.0 11 -645.8550614105758 +747.8550614105757 21 198.25000000000003 31 @@ -9653,13 +9383,13 @@ LINE 8 0 10 -641.6050614105758 +743.6050614105757 20 155.25000000000003 30 0.0 11 -633.1050614105757 +735.1050614105757 21 155.25000000000003 31 @@ -9671,13 +9401,13 @@ LINE 8 0 10 -633.1050614105757 +735.1050614105757 20 155.25000000000003 30 0.0 11 -633.1050614105757 +735.1050614105757 21 154.75 31 @@ -9689,13 +9419,13 @@ LINE 8 0 10 -633.1050614105757 +735.1050614105757 20 154.75 30 0.0 11 -641.6050614105758 +743.6050614105757 21 154.75 31 @@ -9707,13 +9437,13 @@ LINE 8 0 10 -641.6050614105758 +743.6050614105757 20 154.75 30 0.0 11 -641.6050614105758 +743.6050614105757 21 155.25000000000003 31 @@ -9725,13 +9455,13 @@ LINE 8 0 10 -633.1050614105757 +735.1050614105757 20 203.00000000000003 30 0.0 11 -641.6050614105758 +743.6050614105757 21 203.00000000000003 31 @@ -9743,13 +9473,13 @@ LINE 8 0 10 -641.6050614105758 +743.6050614105757 20 203.00000000000003 30 0.0 11 -641.6050614105758 +743.6050614105757 21 203.50000000000003 31 @@ -9761,13 +9491,13 @@ LINE 8 0 10 -641.6050614105758 +743.6050614105757 20 203.50000000000003 30 0.0 11 -633.1050614105757 +735.1050614105757 21 203.50000000000003 31 @@ -9779,13 +9509,13 @@ LINE 8 0 10 -633.1050614105757 +735.1050614105757 20 203.50000000000003 30 0.0 11 -633.1050614105757 +735.1050614105757 21 203.00000000000003 31 @@ -9797,13 +9527,13 @@ LINE 8 0 10 -664.3550614105758 +766.3550614105757 20 198.50000000000003 30 0.0 11 -664.3550614105758 +766.3550614105757 21 185.50000000000003 31 @@ -9815,13 +9545,13 @@ LINE 8 0 10 -664.3550614105758 +766.3550614105757 20 185.50000000000003 30 0.0 11 -694.3550614105757 +796.3550614105758 21 185.50000000000003 31 @@ -9833,13 +9563,13 @@ LINE 8 0 10 -694.3550614105757 +796.3550614105758 20 185.50000000000003 30 0.0 11 -694.3550614105757 +796.3550614105758 21 198.50000000000003 31 @@ -9851,13 +9581,13 @@ LINE 8 0 10 -694.3550614105757 +796.3550614105758 20 198.50000000000003 30 0.0 11 -664.3550614105758 +766.3550614105757 21 198.50000000000003 31 @@ -9869,13 +9599,13 @@ LINE 8 0 10 -671.4232432287575 +773.4232432287574 20 153.00000000000003 30 0.0 11 -660.0141523196667 +762.0141523196667 21 153.00000000000003 31 @@ -9887,13 +9617,13 @@ LINE 8 0 10 -660.0141523196667 +762.0141523196667 20 153.00000000000003 30 0.0 11 -660.0141523196667 +762.0141523196667 21 152.5 31 @@ -9905,13 +9635,13 @@ LINE 8 0 10 -660.0141523196667 +762.0141523196667 20 152.5 30 0.0 11 -671.4232432287575 +773.4232432287574 21 152.5 31 @@ -9923,13 +9653,13 @@ LINE 8 0 10 -671.4232432287575 +773.4232432287574 20 152.5 30 0.0 11 -671.4232432287575 +773.4232432287574 21 153.00000000000003 31 @@ -9941,13 +9671,13 @@ LINE 8 0 10 -698.6959705014849 +800.6959705014848 20 153.00000000000003 30 0.0 11 -687.2868795923938 +789.2868795923939 21 153.00000000000003 31 @@ -9959,13 +9689,13 @@ LINE 8 0 10 -687.2868795923938 +789.2868795923939 20 153.00000000000003 30 0.0 11 -687.2868795923938 +789.2868795923939 21 152.5 31 @@ -9977,13 +9707,13 @@ LINE 8 0 10 -687.2868795923938 +789.2868795923939 20 152.5 30 0.0 11 -698.6959705014849 +800.6959705014848 21 152.5 31 @@ -9995,13 +9725,13 @@ LINE 8 0 10 -698.6959705014849 +800.6959705014848 20 152.5 30 0.0 11 -698.6959705014849 +800.6959705014848 21 153.00000000000003 31 @@ -10013,13 +9743,13 @@ LINE 8 0 10 -701.6050614105758 +803.6050614105758 20 169.93181818181822 30 0.0 11 -701.6050614105758 +803.6050614105758 21 158.3409090909091 31 @@ -10031,13 +9761,13 @@ LINE 8 0 10 -701.6050614105758 +803.6050614105758 20 158.3409090909091 30 0.0 11 -702.1050614105758 +804.1050614105758 21 158.3409090909091 31 @@ -10049,13 +9779,13 @@ LINE 8 0 10 -702.1050614105758 +804.1050614105758 20 158.3409090909091 30 0.0 11 -702.1050614105758 +804.1050614105758 21 169.93181818181822 31 @@ -10067,13 +9797,13 @@ LINE 8 0 10 -702.1050614105758 +804.1050614105758 20 169.93181818181822 30 0.0 11 -701.6050614105758 +803.6050614105758 21 169.93181818181822 31 @@ -10085,13 +9815,13 @@ LINE 8 0 10 -701.6050614105758 +803.6050614105758 20 197.65909090909093 30 0.0 11 -701.6050614105758 +803.6050614105758 21 186.06818181818184 31 @@ -10103,13 +9833,13 @@ LINE 8 0 10 -701.6050614105758 +803.6050614105758 20 186.06818181818184 30 0.0 11 -702.1050614105758 +804.1050614105758 21 186.06818181818184 31 @@ -10121,13 +9851,13 @@ LINE 8 0 10 -702.1050614105758 +804.1050614105758 20 186.06818181818184 30 0.0 11 -702.1050614105758 +804.1050614105758 21 197.65909090909093 31 @@ -10139,13 +9869,13 @@ LINE 8 0 10 -702.1050614105758 +804.1050614105758 20 197.65909090909093 30 0.0 11 -701.6050614105758 +803.6050614105758 21 197.65909090909093 31 @@ -10157,13 +9887,13 @@ LINE 8 0 10 -541.8550614105758 +643.8550614105758 20 160.75000000000003 30 0.0 11 -541.8550614105758 +643.8550614105758 21 157.75000000000003 31 @@ -10175,13 +9905,13 @@ LINE 8 0 10 -541.8550614105758 +643.8550614105758 20 157.75000000000003 30 0.0 11 -544.8550614105758 +646.8550614105757 21 157.75000000000003 31 @@ -10193,13 +9923,13 @@ LINE 8 0 10 -544.8550614105758 +646.8550614105757 20 157.75000000000003 30 0.0 11 -544.8550614105758 +646.8550614105757 21 160.75000000000003 31 @@ -10211,13 +9941,13 @@ LINE 8 0 10 -544.8550614105758 +646.8550614105757 20 160.75000000000003 30 0.0 11 -541.8550614105758 +643.8550614105758 21 160.75000000000003 31 @@ -10229,13 +9959,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 159.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 158.75000000000003 31 @@ -10247,13 +9977,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 158.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 158.75000000000003 31 @@ -10265,13 +9995,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 158.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 159.75000000000003 31 @@ -10283,13 +10013,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 159.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 159.75000000000003 31 @@ -10301,13 +10031,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 162.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 161.25 31 @@ -10319,13 +10049,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 161.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 161.25 31 @@ -10337,13 +10067,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 161.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 162.25000000000003 31 @@ -10355,13 +10085,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 162.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 162.25000000000003 31 @@ -10373,13 +10103,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 162.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 161.25 31 @@ -10391,13 +10121,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 161.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 161.25 31 @@ -10409,13 +10139,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 161.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 162.25000000000003 31 @@ -10427,13 +10157,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 162.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 162.25000000000003 31 @@ -10445,13 +10175,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 164.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 163.75 31 @@ -10463,13 +10193,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 163.75 30 0.0 11 -543.8550614105758 +645.8550614105758 21 163.75 31 @@ -10481,13 +10211,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 163.75 30 0.0 11 -543.8550614105758 +645.8550614105758 21 164.75000000000003 31 @@ -10499,13 +10229,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 164.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 164.75000000000003 31 @@ -10517,13 +10247,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 164.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 163.75 31 @@ -10535,13 +10265,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 163.75 30 0.0 11 -563.8550614105758 +665.8550614105757 21 163.75 31 @@ -10553,13 +10283,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 163.75 30 0.0 11 -563.8550614105758 +665.8550614105757 21 164.75000000000003 31 @@ -10571,13 +10301,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 164.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 164.75000000000003 31 @@ -10589,13 +10319,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 167.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 166.25 31 @@ -10607,13 +10337,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 166.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 166.25 31 @@ -10625,13 +10355,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 166.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 167.25000000000003 31 @@ -10643,13 +10373,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 167.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 167.25000000000003 31 @@ -10661,13 +10391,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 167.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 166.25 31 @@ -10679,13 +10409,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 166.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 166.25 31 @@ -10697,13 +10427,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 166.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 167.25000000000003 31 @@ -10715,13 +10445,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 167.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 167.25000000000003 31 @@ -10733,13 +10463,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 169.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 168.75000000000003 31 @@ -10751,13 +10481,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 168.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 168.75000000000003 31 @@ -10769,13 +10499,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 168.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 169.75000000000003 31 @@ -10787,13 +10517,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 169.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 169.75000000000003 31 @@ -10805,13 +10535,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 169.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 168.75000000000003 31 @@ -10823,13 +10553,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 168.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 168.75000000000003 31 @@ -10841,13 +10571,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 168.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 169.75000000000003 31 @@ -10859,13 +10589,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 169.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 169.75000000000003 31 @@ -10877,13 +10607,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 172.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 171.25000000000003 31 @@ -10895,13 +10625,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 171.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 171.25000000000003 31 @@ -10913,13 +10643,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 171.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 172.25000000000003 31 @@ -10931,13 +10661,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 172.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 172.25000000000003 31 @@ -10949,13 +10679,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 172.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 171.25000000000003 31 @@ -10967,13 +10697,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 171.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 171.25000000000003 31 @@ -10985,13 +10715,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 171.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 172.25000000000003 31 @@ -11003,13 +10733,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 172.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 172.25000000000003 31 @@ -11021,13 +10751,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 174.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 173.75000000000003 31 @@ -11039,13 +10769,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 173.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 173.75000000000003 31 @@ -11057,13 +10787,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 173.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 174.75000000000003 31 @@ -11075,13 +10805,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 174.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 174.75000000000003 31 @@ -11093,13 +10823,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 174.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 173.75000000000003 31 @@ -11111,13 +10841,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 173.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 173.75000000000003 31 @@ -11129,13 +10859,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 173.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 174.75000000000003 31 @@ -11147,13 +10877,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 174.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 174.75000000000003 31 @@ -11165,13 +10895,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 177.25 30 0.0 11 -542.8550614105758 +644.8550614105758 21 176.25000000000003 31 @@ -11183,13 +10913,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 176.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 176.25000000000003 31 @@ -11201,13 +10931,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 176.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 177.25 31 @@ -11219,13 +10949,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 177.25 30 0.0 11 -542.8550614105758 +644.8550614105758 21 177.25 31 @@ -11237,13 +10967,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 177.25 30 0.0 11 -562.8550614105758 +664.8550614105757 21 176.25000000000003 31 @@ -11255,13 +10985,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 176.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 176.25000000000003 31 @@ -11273,13 +11003,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 176.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 177.25 31 @@ -11291,13 +11021,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 177.25 30 0.0 11 -562.8550614105758 +664.8550614105757 21 177.25 31 @@ -11309,13 +11039,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 179.75 30 0.0 11 -542.8550614105758 +644.8550614105758 21 178.75000000000003 31 @@ -11327,13 +11057,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 178.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 178.75000000000003 31 @@ -11345,13 +11075,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 178.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 179.75 31 @@ -11363,13 +11093,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 179.75 30 0.0 11 -542.8550614105758 +644.8550614105758 21 179.75 31 @@ -11381,13 +11111,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 179.75 30 0.0 11 -562.8550614105758 +664.8550614105757 21 178.75000000000003 31 @@ -11399,13 +11129,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 178.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 178.75000000000003 31 @@ -11417,13 +11147,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 178.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 179.75 31 @@ -11435,13 +11165,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 179.75 30 0.0 11 -562.8550614105758 +664.8550614105757 21 179.75 31 @@ -11453,13 +11183,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 182.25 30 0.0 11 -542.8550614105758 +644.8550614105758 21 181.25000000000003 31 @@ -11471,13 +11201,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 181.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 181.25000000000003 31 @@ -11489,13 +11219,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 181.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 182.25 31 @@ -11507,13 +11237,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 182.25 30 0.0 11 -542.8550614105758 +644.8550614105758 21 182.25 31 @@ -11525,13 +11255,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 182.25 30 0.0 11 -562.8550614105758 +664.8550614105757 21 181.25000000000003 31 @@ -11543,13 +11273,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 181.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 181.25000000000003 31 @@ -11561,13 +11291,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 181.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 182.25 31 @@ -11579,13 +11309,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 182.25 30 0.0 11 -562.8550614105758 +664.8550614105757 21 182.25 31 @@ -11597,13 +11327,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 184.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 183.75000000000003 31 @@ -11615,13 +11345,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 183.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 183.75000000000003 31 @@ -11633,13 +11363,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 183.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 184.75000000000003 31 @@ -11651,13 +11381,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 184.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 184.75000000000003 31 @@ -11669,13 +11399,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 184.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 183.75000000000003 31 @@ -11687,13 +11417,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 183.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 183.75000000000003 31 @@ -11705,13 +11435,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 183.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 184.75000000000003 31 @@ -11723,13 +11453,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 184.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 184.75000000000003 31 @@ -11741,13 +11471,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 187.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 186.25000000000003 31 @@ -11759,13 +11489,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 186.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 186.25000000000003 31 @@ -11777,13 +11507,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 186.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 187.25000000000003 31 @@ -11795,13 +11525,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 187.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 187.25000000000003 31 @@ -11813,13 +11543,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 187.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 186.25000000000003 31 @@ -11831,13 +11561,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 186.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 186.25000000000003 31 @@ -11849,13 +11579,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 186.25000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 187.25000000000003 31 @@ -11867,13 +11597,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 187.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 187.25000000000003 31 @@ -11885,13 +11615,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 189.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 188.75 31 @@ -11903,13 +11633,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 188.75 30 0.0 11 -543.8550614105758 +645.8550614105758 21 188.75 31 @@ -11921,13 +11651,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 188.75 30 0.0 11 -543.8550614105758 +645.8550614105758 21 189.75000000000003 31 @@ -11939,13 +11669,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 189.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 189.75000000000003 31 @@ -11957,13 +11687,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 189.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 188.75 31 @@ -11975,13 +11705,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 188.75 30 0.0 11 -563.8550614105758 +665.8550614105757 21 188.75 31 @@ -11993,13 +11723,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 188.75 30 0.0 11 -563.8550614105758 +665.8550614105757 21 189.75000000000003 31 @@ -12011,13 +11741,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 189.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 189.75000000000003 31 @@ -12029,13 +11759,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 192.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 191.25 31 @@ -12047,13 +11777,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 191.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 191.25 31 @@ -12065,13 +11795,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 191.25 30 0.0 11 -543.8550614105758 +645.8550614105758 21 192.25000000000003 31 @@ -12083,13 +11813,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 192.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 192.25000000000003 31 @@ -12101,13 +11831,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 192.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 191.25 31 @@ -12119,13 +11849,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 191.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 191.25 31 @@ -12137,13 +11867,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 191.25 30 0.0 11 -563.8550614105758 +665.8550614105757 21 192.25000000000003 31 @@ -12155,13 +11885,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 192.25000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 192.25000000000003 31 @@ -12173,13 +11903,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 194.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 193.75000000000003 31 @@ -12191,13 +11921,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 193.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 193.75000000000003 31 @@ -12209,13 +11939,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 193.75000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 194.75000000000003 31 @@ -12227,13 +11957,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 194.75000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 194.75000000000003 31 @@ -12245,13 +11975,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 194.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 193.75000000000003 31 @@ -12263,13 +11993,13 @@ LINE 8 0 10 -562.8550614105758 +664.8550614105757 20 193.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 193.75000000000003 31 @@ -12281,13 +12011,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 193.75000000000003 30 0.0 11 -563.8550614105758 +665.8550614105757 21 194.75000000000003 31 @@ -12299,13 +12029,13 @@ LINE 8 0 10 -563.8550614105758 +665.8550614105757 20 194.75000000000003 30 0.0 11 -562.8550614105758 +664.8550614105757 21 194.75000000000003 31 @@ -12317,13 +12047,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 197.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 196.25000000000003 31 @@ -12335,13 +12065,13 @@ LINE 8 0 10 -542.8550614105758 +644.8550614105758 20 196.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 196.25000000000003 31 @@ -12353,13 +12083,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 196.25000000000003 30 0.0 11 -543.8550614105758 +645.8550614105758 21 197.25000000000003 31 @@ -12371,13 +12101,13 @@ LINE 8 0 10 -543.8550614105758 +645.8550614105758 20 197.25000000000003 30 0.0 11 -542.8550614105758 +644.8550614105758 21 197.25000000000003 31 @@ -12389,13 +12119,13 @@ LINE 8 0 10 -561.8550614105758 +663.8550614105758 20 198.25000000000003 30 0.0 11 -561.8550614105758 +663.8550614105758 21 195.25000000000003 31 @@ -12407,13 +12137,13 @@ LINE 8 0 10 -561.8550614105758 +663.8550614105758 20 195.25000000000003 30 0.0 11 -564.8550614105757 +666.8550614105757 21 195.25000000000003 31 @@ -12425,13 +12155,13 @@ LINE 8 0 10 -564.8550614105757 +666.8550614105757 20 195.25000000000003 30 0.0 11 -564.8550614105757 +666.8550614105757 21 198.25000000000003 31 @@ -12443,13 +12173,13 @@ LINE 8 0 10 -564.8550614105757 +666.8550614105757 20 198.25000000000003 30 0.0 11 -561.8550614105758 +663.8550614105758 21 198.25000000000003 31 @@ -12461,13 +12191,13 @@ LINE 8 0 10 -557.6050614105758 +659.6050614105758 20 155.25000000000003 30 0.0 11 -549.1050614105758 +651.1050614105757 21 155.25000000000003 31 @@ -12479,13 +12209,13 @@ LINE 8 0 10 -549.1050614105758 +651.1050614105757 20 155.25000000000003 30 0.0 11 -549.1050614105758 +651.1050614105757 21 154.75 31 @@ -12497,13 +12227,13 @@ LINE 8 0 10 -549.1050614105758 +651.1050614105757 20 154.75 30 0.0 11 -557.6050614105758 +659.6050614105758 21 154.75 31 @@ -12515,13 +12245,13 @@ LINE 8 0 10 -557.6050614105758 +659.6050614105758 20 154.75 30 0.0 11 -557.6050614105758 +659.6050614105758 21 155.25000000000003 31 @@ -12533,13 +12263,13 @@ LINE 8 0 10 -549.1050614105758 +651.1050614105757 20 203.00000000000003 30 0.0 11 -557.6050614105758 +659.6050614105758 21 203.00000000000003 31 @@ -12551,13 +12281,13 @@ LINE 8 0 10 -557.6050614105758 +659.6050614105758 20 203.00000000000003 30 0.0 11 -557.6050614105758 +659.6050614105758 21 203.50000000000003 31 @@ -12569,13 +12299,13 @@ LINE 8 0 10 -557.6050614105758 +659.6050614105758 20 203.50000000000003 30 0.0 11 -549.1050614105758 +651.1050614105757 21 203.50000000000003 31 @@ -12587,13 +12317,13 @@ LINE 8 0 10 -549.1050614105758 +651.1050614105757 20 203.50000000000003 30 0.0 11 -549.1050614105758 +651.1050614105757 21 203.00000000000003 31 @@ -12605,13 +12335,13 @@ LINE 8 0 10 -533.8550614105758 +635.8550614105758 20 158.59090909090912 30 0.0 11 -538.8550614105758 +640.8550614105758 21 158.59090909090912 31 @@ -12623,13 +12353,13 @@ LINE 8 0 10 -538.8550614105758 +640.8550614105758 20 158.59090909090912 30 0.0 11 -538.8550614105758 +640.8550614105758 21 169.68181818181822 31 @@ -12641,13 +12371,13 @@ LINE 8 0 10 -538.8550614105758 +640.8550614105758 20 169.68181818181822 30 0.0 11 -533.8550614105758 +635.8550614105758 21 169.68181818181822 31 @@ -12659,13 +12389,13 @@ LINE 8 0 10 -533.8550614105758 +635.8550614105758 20 186.31818181818184 30 0.0 11 -538.8550614105758 +640.8550614105758 21 186.31818181818184 31 @@ -12677,13 +12407,13 @@ LINE 8 0 10 -538.8550614105758 +640.8550614105758 20 186.31818181818184 30 0.0 11 -538.8550614105758 +640.8550614105758 21 197.40909090909093 31 @@ -12695,13 +12425,13 @@ LINE 8 0 10 -538.8550614105758 +640.8550614105758 20 197.40909090909093 30 0.0 11 -533.8550614105758 +635.8550614105758 21 197.40909090909093 31 @@ -12713,13 +12443,13 @@ LINE 8 0 10 -559.1050614105758 +661.1050614105757 20 131.50000000000003 30 0.0 11 -562.6050614105757 +664.6050614105758 21 131.50000000000003 31 @@ -12731,13 +12461,13 @@ LINE 8 0 10 -562.6050614105757 +664.6050614105758 20 131.50000000000003 30 0.0 11 -562.6050614105757 +664.6050614105758 21 139.50000000000003 31 @@ -12749,13 +12479,13 @@ LINE 8 0 10 -562.6050614105757 +664.6050614105758 20 139.50000000000003 30 0.0 11 -559.1050614105758 +661.1050614105757 21 139.50000000000003 31 diff --git a/rocolib/output/BoatWithServoStackBattery/tree.png b/rocolib/output/BoatWithServoStackBattery/tree.png index b899517047f47d32124706d638943eaf6320f38f..c527b9e3e99071c16c3eabb2f831b142b117d4f8 100644 Binary files a/rocolib/output/BoatWithServoStackBattery/tree.png and b/rocolib/output/BoatWithServoStackBattery/tree.png differ diff --git a/rocolib/output/ServoStackMount/graph-anim.svg b/rocolib/output/ServoStackMount/graph-anim.svg index 348e573eb97ae1669832d01249ca2f2231dcc183..a6fcaf67b1601c1fcd76ba5f0796927c42d3d5e9 100644 --- a/rocolib/output/ServoStackMount/graph-anim.svg +++ b/rocolib/output/ServoStackMount/graph-anim.svg @@ -14,7 +14,10 @@ <line stroke="#000000" x1="0.0" x2="0.0" y1="74.0" y2="0.0"/> <line stroke="#000000" x1="0.0" x2="0.0" y1="108.00000000000001" y2="98.00000000000001"/> <line stroke="#000000" x1="0.0" x2="0.0" y1="169.00000000000003" y2="169.00000000000003"/> - <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="169.00000000000003"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="108.00000000000001" y2="169.00000000000003"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="98.00000000000001" y2="108.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="74.0"/> <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="0.0"/> <line opacity="0.25" stroke="#0000ff" x1="36.138621999185304" x2="36.138621999185304" y1="108.00000000000001" y2="169.00000000000003"/> <line stroke="#000000" x1="0.0" x2="36.138621999185304" y1="169.00000000000003" y2="169.00000000000003"/> @@ -104,7 +107,10 @@ <line stroke="#000000" x1="130.0" x2="130.0" y1="74.0" y2="64.00000000000001"/> <line stroke="#000000" x1="130.0" x2="130.0" y1="172.00000000000003" y2="98.00000000000001"/> <line stroke="#000000" x1="130.0" x2="130.0" y1="172.00000000000003" y2="172.00000000000003"/> - <line stroke="#000000" x1="130.0" x2="130.0" y1="3.0000000000000004" y2="172.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="98.00000000000001" y2="172.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="64.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="3.0000000000000004" y2="64.00000000000001"/> <line stroke="#000000" x1="130.0" x2="130.0" y1="3.0000000000000004" y2="3.0000000000000004"/> <line stroke="#000000" x1="130.0" x2="130.0" y1="98.00000000000001" y2="118.00000000000001"/> <line stroke="#000000" x1="164.0" x2="164.0" y1="118.00000000000001" y2="98.00000000000001"/> diff --git a/rocolib/output/ServoStackMount/graph-autofold-default.dxf b/rocolib/output/ServoStackMount/graph-autofold-default.dxf index 138411e35f07f4533afaf447c6765d378bb152f2..c33406669c582785ebd1a6956a906494423e1c12 100644 --- a/rocolib/output/ServoStackMount/graph-autofold-default.dxf +++ b/rocolib/output/ServoStackMount/graph-autofold-default.dxf @@ -1223,7 +1223,7 @@ cut 10 0.0 20 -0.0 +108.00000000000001 30 0.0 11 @@ -1241,6 +1241,60 @@ cut 10 0.0 20 +98.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 0.0 30 0.0 @@ -2859,7 +2913,7 @@ cut 10 130.0 20 -3.0000000000000004 +98.00000000000001 30 0.0 11 @@ -2877,6 +2931,60 @@ cut 10 130.0 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +64.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +3.0000000000000004 + 30 +0.0 + 11 +130.0 + 21 +64.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 3.0000000000000004 30 0.0 diff --git a/rocolib/output/ServoStackMount/graph-autofold-graph.dxf b/rocolib/output/ServoStackMount/graph-autofold-graph.dxf index 1a7f73324d990f2b4a814ef5b11661f64e819185..02e34ec4ee9a4586ada2e428de64af233c20db73 100644 --- a/rocolib/output/ServoStackMount/graph-autofold-graph.dxf +++ b/rocolib/output/ServoStackMount/graph-autofold-graph.dxf @@ -1183,7 +1183,7 @@ LINE 10 0.0 20 -0.0 +108.00000000000001 30 0.0 11 @@ -1201,6 +1201,60 @@ LINE 10 0.0 20 +98.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 0.0 30 0.0 @@ -2819,7 +2873,7 @@ LINE 10 130.0 20 -3.0000000000000004 +98.00000000000001 30 0.0 11 @@ -2837,6 +2891,60 @@ LINE 10 130.0 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +64.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +3.0000000000000004 + 30 +0.0 + 11 +130.0 + 21 +64.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 3.0000000000000004 30 0.0 diff --git a/rocolib/output/ServoStackMount/graph-lasercutter.svg b/rocolib/output/ServoStackMount/graph-lasercutter.svg index 755cd98b8de0532c7a50c443ec33447ed78cd01d..1fbf0ec89105e4a595f49c9ffe8b99ff8ac38349 100644 --- a/rocolib/output/ServoStackMount/graph-lasercutter.svg +++ b/rocolib/output/ServoStackMount/graph-lasercutter.svg @@ -14,7 +14,10 @@ <line stroke="#000000" x1="0.0" x2="0.0" y1="74.0" y2="0.0"/> <line stroke="#000000" x1="0.0" x2="0.0" y1="108.00000000000001" y2="98.00000000000001"/> <line stroke="#000000" x1="0.0" x2="0.0" y1="169.00000000000003" y2="169.00000000000003"/> - <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="169.00000000000003"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="108.00000000000001" y2="169.00000000000003"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="98.00000000000001" y2="108.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="74.0"/> <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="0.0"/> <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="36.138621999185304" x2="36.138621999185304" y1="108.00000000000001" y2="169.00000000000003"/> <line stroke="#000000" x1="0.0" x2="36.138621999185304" y1="169.00000000000003" y2="169.00000000000003"/> @@ -104,7 +107,10 @@ <line stroke="#000000" x1="130.0" x2="130.0" y1="74.0" y2="64.00000000000001"/> <line stroke="#000000" x1="130.0" x2="130.0" y1="172.00000000000003" y2="98.00000000000001"/> <line stroke="#000000" x1="130.0" x2="130.0" y1="172.00000000000003" y2="172.00000000000003"/> - <line stroke="#000000" x1="130.0" x2="130.0" y1="3.0000000000000004" y2="172.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="98.00000000000001" y2="172.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="64.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="3.0000000000000004" y2="64.00000000000001"/> <line stroke="#000000" x1="130.0" x2="130.0" y1="3.0000000000000004" y2="3.0000000000000004"/> <line stroke="#000000" x1="130.0" x2="130.0" y1="98.00000000000001" y2="118.00000000000001"/> <line stroke="#000000" x1="164.0" x2="164.0" y1="118.00000000000001" y2="98.00000000000001"/> diff --git a/rocolib/output/ServoStackMount/graph-silhouette.dxf b/rocolib/output/ServoStackMount/graph-silhouette.dxf index ecd7846eca5f29fb3c7a6c9e99a8daaf41833bbe..a2bf537f34b823f2a5892cabe40142e4dea80901 100644 --- a/rocolib/output/ServoStackMount/graph-silhouette.dxf +++ b/rocolib/output/ServoStackMount/graph-silhouette.dxf @@ -1183,7 +1183,7 @@ LINE 10 0.0 20 -0.0 +108.00000000000001 30 0.0 11 @@ -1201,6 +1201,60 @@ LINE 10 0.0 20 +98.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 0.0 30 0.0 @@ -2819,7 +2873,7 @@ LINE 10 130.0 20 -3.0000000000000004 +98.00000000000001 30 0.0 11 @@ -2837,6 +2891,60 @@ LINE 10 130.0 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +64.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +3.0000000000000004 + 30 +0.0 + 11 +130.0 + 21 +64.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 3.0000000000000004 30 0.0