diff --git a/rocolib/builders/boat/BatteryStackHolder.py b/rocolib/builders/boat/BatteryStackHolderBuilder.py similarity index 100% rename from rocolib/builders/boat/BatteryStackHolder.py rename to rocolib/builders/boat/BatteryStackHolderBuilder.py diff --git a/rocolib/builders/boat/BoatWithServoMountAndStack.py b/rocolib/builders/boat/BoatWithServoMountAndStack.py deleted file mode 100644 index 974a3189aab33f084123ae641b3069803e953b65..0000000000000000000000000000000000000000 --- a/rocolib/builders/boat/BoatWithServoMountAndStack.py +++ /dev/null @@ -1,25 +0,0 @@ -from rocolib.api.components.Component import Component -from rocolib.api.Function import Function - -c = Component() - -c.addSubcomponent("boatwithservo", "BoatWithServoMount", inherit=True, prefix=None) -c.inheritAllInterfaces("boatwithservo") -c.addSubcomponent("espStack", "StackMount", inherit=True) -c.inheritAllInterfaces("espStack") -c.addSubcomponent("batterystackmount", "BatteryStackMount") -c.inheritAllInterfaces("batterystackmount") - -c.addSubcomponent("topPortSplit", "SplitEdge") -c.addConstraint(("topPortSplit", "toplength"), ("topDistance"), "(x,)") -c.addConstraint(("topPortSplit", "botlength"), ("topDistance", "espStack.stack.length"), "(x[1], x[0] - x[1])") #but the value of the new component's boat.length parameter is completely disconnected from the value of the boat component's boat.length parameter -c.addConnection(("topPortSplit", "topedge0"), ("boatwithservo", "topPort")) #both face the same direction -c.addConnection(("topPortSplit", "botedge0"), ("espStack", "leftArmInterface"), angle=45) - -c.addSubcomponent("topStarSplit", "SplitEdge") -c.addConstraint(("topStarSplit", "toplength"), ("topDistance"), "(x,)") -c.addConstraint(("topStarSplit", "botlength"), ("topDistance", "espStack.stack.length"), "(x[0]-x[1], x[1])") #but the value of the new component's boat.length parameter is completely disconnected from the value of the boat component's boat.length parameter -c.addConnection(("topStarSplit", "topedge0"), ("boatwithservo", "topStar")) #both face the same direction -c.addConnection(("topStarSplit", "botedge1"), ("espStack", "rightArmInterface"), tabWidth=10) - -c.toLibrary("BoatWithServoMountAndStack") diff --git a/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py b/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py new file mode 100644 index 0000000000000000000000000000000000000000..f5ade31f68a9c3f8298c85a1687d881f07f10ee0 --- /dev/null +++ b/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py @@ -0,0 +1,12 @@ +from rocolib.api.components.Component import Component +from rocolib.api.Function import Function + +c = Component() + +c.addSubcomponent("boat", "BoatBase", inherit=True, prefix=None) +c.inheritAllInterfaces("boat") + +c.addSubcomponent("servostackbattery", "ServoStackBatteryMount") +# c.inheritAllInterfaces("servostackbattery") + +c.toLibrary("BoatWithServoStackBattery") diff --git a/rocolib/builders/boat/HouseboatWithServoMountAndStack.py b/rocolib/builders/boat/HouseboatWithServoMountAndStackBuilder.py similarity index 94% rename from rocolib/builders/boat/HouseboatWithServoMountAndStack.py rename to rocolib/builders/boat/HouseboatWithServoMountAndStackBuilder.py index 9f4a97f124a9b439b002b84bcf469b6bc4aab068..50b47595478542affcb46c95933adbc7a2d13834 100644 --- a/rocolib/builders/boat/HouseboatWithServoMountAndStack.py +++ b/rocolib/builders/boat/HouseboatWithServoMountAndStackBuilder.py @@ -5,7 +5,7 @@ c = Component() c.addSubcomponent("houseboat", "Tug", inherit=True) c.inheritAllInterfaces("houseboat") -c.addSubcomponent("servosandstack", "ServoMountAndStack", inherit=True) +c.addSubcomponent("servostackbattery", "ServoStackBatteryMount", inherit=True) c.inheritAllInterfaces("servosandstack") # c.addSubcomponent("topPortSplit", "SplitEdge") diff --git a/rocolib/builders/boat/ServoStackBatteryMount.py b/rocolib/builders/boat/ServoStackBatteryMountBuilder.py similarity index 100% rename from rocolib/builders/boat/ServoStackBatteryMount.py rename to rocolib/builders/boat/ServoStackBatteryMountBuilder.py diff --git a/rocolib/library/BoatWithServoStackBattery.yaml b/rocolib/library/BoatWithServoStackBattery.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e2e495b288057e55bd205dddbb5f3ad610b2ed3a --- /dev/null +++ b/rocolib/library/BoatWithServoStackBattery.yaml @@ -0,0 +1,59 @@ +connections: {} +interfaces: + boat.portedge: + interface: portedge + subcomponent: boat + boat.staredge: + interface: staredge + subcomponent: boat +parameters: + boat.depth: + defaultValue: 20 + spec: + minValue: 0 + units: mm + valueType: (float, int) + boat.length: + defaultValue: 100 + spec: + minValue: 0 + units: mm + valueType: (float, int) + boat.width: + defaultValue: 50 + spec: + minValue: 0 + units: mm + valueType: (float, int) + bow.point: + defaultValue: 50 + spec: + minValue: 0 + units: mm + valueType: (float, int) + stern.point: + defaultValue: 50 + spec: + minValue: 0 + units: mm + valueType: (float, int) +source: ../builders/boat/BoatWithServoStackBatteryBuilder.py +subcomponents: + boat: + classname: BoatBase + kwargs: {} + parameters: + boat.depth: + parameter: boat.depth + boat.length: + parameter: boat.length + boat.width: + parameter: boat.width + bow.point: + parameter: bow.point + stern.point: + parameter: stern.point + servostackbattery: + classname: ServoStackBatteryMount + kwargs: {} + parameters: {} diff --git a/rocolib/library/ServoStackBatteryMount.yaml b/rocolib/library/ServoStackBatteryMount.yaml index 74ae443db92b86d10a06961a4b04c2fe8fdd80ef..691c397df3ae4c7a8cc3290e3e441ab74097bef8 100644 --- a/rocolib/library/ServoStackBatteryMount.yaml +++ b/rocolib/library/ServoStackBatteryMount.yaml @@ -2697,7 +2697,7 @@ parameters: minValue: 0 units: mm valueType: (float, int) -source: ../builders/boat/ServoStackBatteryMount.py +source: ../builders/boat/ServoStackBatteryMountBuilder.py subcomponents: batterystackmount: classname: BatteryStackMount diff --git a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg new file mode 100644 index 0000000000000000000000000000000000000000..641cf119a706dd51b7adf10f01d5273f24384a17 --- /dev/null +++ b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg @@ -0,0 +1,634 @@ +<?xml version="1.0" encoding="utf-8" ?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="254.160204mm" version="1.1" viewBox="0.000000 0.000000 873.466804 254.160204" width="873.466804mm"> + <defs/> + <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="0.0" x2="228.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="140.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="60.00000000000001" x2="0.0" y1="140.30855600000004" y2="140.30855600000004"/> + <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="150.30855600000004" y2="140.30855600000004"/> + <line stroke="#000000" x1="133.00000000000003" x2="60.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="167.00000000000003" x2="157.0" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="157.0" x2="157.0" y1="150.30855600000004" y2="116.30855600000002"/> + <line opacity="0.5" stroke="#0000ff" x1="133.00000000000003" x2="133.00000000000003" y1="116.30855600000002" y2="150.30855600000004"/> + <line stroke="#000000" x1="133.00000000000003" x2="133.00000000000003" y1="80.30855600000002" y2="116.30855600000002"/> + <line opacity="0.5" stroke="#ff0000" x1="133.00000000000003" x2="157.0" y1="80.30855600000002" y2="80.30855600000002"/> + <line stroke="#000000" x1="157.0" x2="157.0" y1="116.30855600000002" y2="80.30855600000002"/> + <line stroke="#000000" x1="157.0" x2="157.0" y1="80.30855600000002" y2="35.30855600000002"/> + <line stroke="#000000" x1="133.00000000000003" x2="133.00000000000003" y1="35.30855600000002" y2="80.30855600000002"/> + <line stroke="#000000" x1="133.00000000000003" x2="133.00000000000003" y1="30.308556000000017" y2="35.30855600000002"/> + <line stroke="#000000" x1="157.0" x2="133.00000000000003" y1="30.308556000000017" y2="30.308556000000017"/> + <line stroke="#000000" x1="157.0" x2="157.0" y1="35.30855600000002" y2="30.308556000000017"/> + <line stroke="#000000" x1="133.00000000000003" x2="113.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/> + <line stroke="#000000" x1="113.00000000000001" x2="133.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/> + <line opacity="0.5" stroke="#0000ff" x1="113.00000000000001" x2="113.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/> + <line stroke="#000000" x1="113.00000000000001" x2="89.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/> + <line stroke="#000000" x1="89.00000000000001" x2="113.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/> + <line opacity="0.5" stroke="#0000ff" x1="89.00000000000001" x2="89.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/> + <line stroke="#000000" x1="89.00000000000001" x2="69.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/> + <line stroke="#000000" x1="69.00000000000001" x2="89.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/> + <line opacity="0.5" stroke="#0000ff" x1="69.00000000000001" x2="69.00000000000001" y1="150.30855600000004" y2="116.30855600000002"/> + <line stroke="#000000" x1="59.00000000000001" x2="69.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="59.00000000000001" x2="59.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/> + <line stroke="#000000" x1="69.00000000000001" x2="59.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/> + <line opacity="0.25" stroke="#0000ff" x1="167.00000000000003" x2="228.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/> + <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="150.30855600000004" y2="114.16993400081472"/> + <line stroke="#000000" x1="167.00000000000003" x2="167.00000000000003" y1="114.16993400081472" y2="150.30855600000004"/> + <line opacity="0.25" stroke="#0000ff" x1="228.00000000000003" x2="167.00000000000003" y1="90.16993400081472" y2="90.16993400081472"/> + <line opacity="0.5" stroke="#0000ff" x1="228.00000000000003" x2="228.00000000000003" y1="90.16993400081472" y2="114.16993400081472"/> + <line stroke="#000000" x1="167.00000000000003" x2="167.00000000000003" y1="54.03131200162941" y2="90.16993400081473"/> + <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="90.16993400081473" y2="54.03131200162941"/> + <line stroke="#000000" x1="167.00000000000003" x2="167.00000000000003" y1="44.03131200162941" y2="54.03131200162941"/> + <line stroke="#000000" x1="228.00000000000003" x2="167.00000000000003" y1="44.03131200162941" y2="44.03131200162941"/> + <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="54.03131200162941" y2="44.03131200162941"/> + <line stroke="#000000" x1="238.00000000000003" x2="228.00000000000003" y1="90.16993400081472" y2="90.16993400081472"/> + <line stroke="#000000" x1="238.00000000000003" x2="238.00000000000003" y1="114.16993400081472" y2="90.16993400081472"/> + <line stroke="#000000" x1="228.00000000000003" x2="238.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/> + <line stroke="#000000" x1="157.0" x2="167.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/> + <line stroke="#000000" x1="157.0" x2="157.0" y1="90.16993400081472" y2="114.16993400081472"/> + <line stroke="#000000" x1="167.00000000000003" x2="157.0" y1="90.16993400081472" y2="90.16993400081472"/> + <line stroke="#888888" x1="40.00000000000001" x2="45.0" y1="142.80855600000004" y2="142.80855600000004"/> + <line stroke="#888888" x1="45.0" x2="40.00000000000001" y1="142.80855600000004" y2="147.80855600000004"/> + <line stroke="#888888" x1="40.00000000000001" x2="20.000000000000004" y1="147.80855600000004" y2="147.80855600000004"/> + <line stroke="#888888" x1="20.000000000000004" x2="15.000000000000002" y1="147.80855600000004" y2="142.80855600000004"/> + <line stroke="#888888" x1="15.000000000000002" x2="20.000000000000004" y1="142.80855600000004" y2="142.80855600000004"/> + <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="139.2252226666667" y2="127.39188933333337"/> + <line stroke="#888888" x1="149.25000000000003" x2="149.75" y1="127.39188933333337" y2="127.39188933333337"/> + <line stroke="#888888" x1="149.75" x2="149.75" y1="127.39188933333337" y2="139.2252226666667"/> + <line stroke="#888888" x1="149.75" x2="149.25000000000003" y1="139.2252226666667" y2="139.2252226666667"/> + <line stroke="#888888" x1="149.00000000000003" x2="151.50000000000003" y1="31.558556000000014" y2="31.558556000000014"/> + <line stroke="#888888" x1="151.50000000000003" x2="149.00000000000003" y1="31.558556000000014" y2="34.05855600000001"/> + <line stroke="#888888" x1="149.00000000000003" x2="141.0" y1="34.05855600000001" y2="34.05855600000001"/> + <line stroke="#888888" x1="141.0" x2="138.5" y1="34.05855600000001" y2="31.558556000000014"/> + <line stroke="#888888" x1="138.5" x2="141.0" y1="31.558556000000014" y2="31.558556000000014"/> + <line stroke="#888888" x1="114.00000000000001" x2="118.00000000000001" y1="127.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="118.00000000000001" x2="118.00000000000001" y1="127.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="118.00000000000001" x2="114.00000000000001" y1="139.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="114.00000000000001" x2="114.00000000000001" y1="139.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="126.00000000000001" x2="130.0" y1="128.808556" y2="128.808556"/> + <line stroke="#888888" x1="130.0" x2="130.0" y1="128.808556" y2="137.808556"/> + <line stroke="#888888" x1="130.0" x2="126.00000000000001" y1="137.808556" y2="137.808556"/> + <line stroke="#888888" x1="126.00000000000001" x2="126.00000000000001" y1="137.808556" y2="128.808556"/> + <line stroke="#888888" x1="89.50000000000001" x2="112.50000000000001" y1="127.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="112.50000000000001" x2="112.50000000000001" y1="127.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="112.50000000000001" x2="89.50000000000001" y1="139.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="89.50000000000001" x2="89.50000000000001" y1="139.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="84.0" x2="88.00000000000001" y1="127.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="88.00000000000001" x2="88.00000000000001" y1="127.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="88.00000000000001" x2="84.0" y1="139.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="84.0" x2="84.0" y1="139.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="61.50000000000001" x2="66.50000000000001" y1="127.64188933333337" y2="127.64188933333337"/> + <line stroke="#888888" x1="66.50000000000001" x2="66.50000000000001" y1="127.64188933333337" y2="138.9752226666667"/> + <line stroke="#888888" x1="66.50000000000001" x2="61.50000000000001" y1="138.9752226666667" y2="138.9752226666667"/> + <line stroke="#888888" x1="185.00000000000003" x2="196.00000000000003" y1="95.66993400081472" y2="95.66993400081472"/> + <line stroke="#888888" x1="196.00000000000003" x2="196.00000000000003" y1="95.66993400081472" y2="108.66993400081472"/> + <line stroke="#888888" x1="196.00000000000003" x2="185.00000000000003" y1="108.66993400081472" y2="108.66993400081472"/> + <line stroke="#888888" x1="185.00000000000003" x2="185.00000000000003" y1="108.66993400081472" y2="95.66993400081472"/> + <line stroke="#888888" x1="216.50000000000003" x2="222.50000000000003" y1="97.16993400081472" y2="97.16993400081472"/> + <line stroke="#888888" x1="222.50000000000003" x2="222.50000000000003" y1="97.16993400081472" y2="107.16993400081472"/> + <line stroke="#888888" x1="222.50000000000003" x2="216.50000000000003" y1="107.16993400081472" y2="107.16993400081472"/> + <line stroke="#888888" x1="216.50000000000003" x2="216.50000000000003" y1="107.16993400081472" y2="97.16993400081472"/> + <line stroke="#888888" x1="216.90909090909093" x2="216.90909090909093" y1="46.5313120016294" y2="51.53131200162941"/> + <line stroke="#888888" x1="216.90909090909093" x2="205.81818181818184" y1="51.53131200162941" y2="51.53131200162941"/> + <line stroke="#888888" x1="205.81818181818184" x2="205.81818181818184" y1="51.53131200162941" y2="46.5313120016294"/> + <line stroke="#888888" x1="189.18181818181822" x2="189.18181818181822" y1="46.5313120016294" y2="51.53131200162941"/> + <line stroke="#888888" x1="189.18181818181822" x2="178.09090909090912" y1="51.53131200162941" y2="51.53131200162941"/> + <line stroke="#888888" x1="178.09090909090912" x2="178.09090909090912" y1="51.53131200162941" y2="46.5313120016294"/> + <line stroke="#888888" x1="235.50000000000003" x2="230.50000000000003" y1="106.16993400081472" y2="106.16993400081472"/> + <line stroke="#888888" x1="230.50000000000003" x2="230.50000000000003" y1="106.16993400081472" y2="98.16993400081472"/> + <line stroke="#888888" x1="230.50000000000003" x2="235.50000000000003" y1="98.16993400081472" y2="98.16993400081472"/> + <line stroke="#888888" x1="159.5" x2="164.50000000000003" y1="98.16993400081472" y2="98.16993400081472"/> + <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="98.16993400081472" y2="106.16993400081472"/> + <line stroke="#888888" x1="164.50000000000003" x2="159.5" y1="106.16993400081472" y2="106.16993400081472"/> + <line stroke="#000000" x1="476.00000000000006" x2="476.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="248.00000000000006" x2="476.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="248.00000000000006" x2="248.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="309.0" x2="248.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="319.0" x2="309.0" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="416.00000000000006" x2="343.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="248.00000000000006" x2="248.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="319.0" x2="319.0" y1="116.30855600000002" y2="150.30855600000004"/> + <line opacity="0.5" stroke="#0000ff" x1="343.00000000000006" x2="343.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/> + <line stroke="#000000" x1="319.0" x2="319.0" y1="80.30855600000002" y2="116.30855600000002"/> + <line opacity="0.5" stroke="#ff0000" x1="319.0" x2="343.00000000000006" y1="80.30855600000002" y2="80.30855600000002"/> + <line stroke="#000000" x1="343.00000000000006" x2="343.00000000000006" y1="116.30855600000002" y2="80.30855600000002"/> + <line stroke="#000000" x1="343.00000000000006" x2="343.00000000000006" y1="80.30855600000002" y2="35.30855600000002"/> + <line stroke="#000000" x1="319.0" x2="319.0" y1="35.30855600000002" y2="80.30855600000002"/> + <line stroke="#000000" x1="343.00000000000006" x2="319.0" y1="35.30855600000002" y2="35.30855600000002"/> + <line stroke="#000000" x1="343.00000000000006" x2="363.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="363.00000000000006" x2="343.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/> + <line opacity="0.5" stroke="#0000ff" x1="363.00000000000006" x2="363.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/> + <line stroke="#000000" x1="363.00000000000006" x2="387.0" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="387.0" x2="363.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/> + <line opacity="0.5" stroke="#0000ff" x1="387.0" x2="387.0" y1="150.30855600000004" y2="116.30855600000002"/> + <line stroke="#000000" x1="387.0" x2="407.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="407.00000000000006" x2="387.0" y1="116.30855600000002" y2="116.30855600000002"/> + <line opacity="0.5" stroke="#0000ff" x1="407.00000000000006" x2="407.00000000000006" y1="116.30855600000002" y2="150.30855600000004"/> + <line stroke="#000000" x1="417.00000000000006" x2="407.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/> + <line stroke="#000000" x1="417.00000000000006" x2="417.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/> + <line stroke="#000000" x1="407.00000000000006" x2="417.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="476.00000000000006" x2="476.00000000000006" y1="150.30855600000004" y2="88.65427796513858"/> + <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="88.65427796513858" y2="150.30855600000004"/> + <line opacity="0.25" stroke="#ff0000" x1="416.00000000000006" x2="476.00000000000006" y1="88.65427796513858" y2="88.65427796513858"/> + <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="61.65427796513857" y2="88.65427796513858"/> + <line opacity="0.25" stroke="#ff0000" x1="476.00000000000006" x2="416.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/> + <line opacity="0.5" stroke="#0000ff" x1="476.00000000000006" x2="476.00000000000006" y1="88.65427796513858" y2="61.65427796513857"/> + <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="-6.972288701945219e-08" y2="61.65427796513857"/> + <line stroke="#000000" x1="476.00000000000006" x2="416.00000000000006" y1="-6.972288701945219e-08" y2="-6.972288701945219e-08"/> + <line stroke="#000000" x1="476.00000000000006" x2="476.00000000000006" y1="61.65427796513857" y2="-6.972288701945219e-08"/> + <line stroke="#000000" x1="476.00000000000006" x2="493.00000000000006" y1="88.65427796513858" y2="88.65427796513858"/> + <line stroke="#000000" x1="493.00000000000006" x2="476.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/> + <line opacity="0.5" stroke="#0000ff" x1="493.00000000000006" x2="493.00000000000006" y1="88.65427796513858" y2="61.65427796513857"/> + <line stroke="#000000" x1="493.00000000000006" x2="553.0000000000001" y1="88.65427796513858" y2="88.65427796513858"/> + <line stroke="#000000" x1="553.0000000000001" x2="493.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/> + <line opacity="0.5" stroke="#0000ff" x1="553.0000000000001" x2="553.0000000000001" y1="88.65427796513858" y2="61.65427796513857"/> + <line stroke="#000000" x1="553.0000000000001" x2="570.0000000000001" y1="88.65427796513858" y2="88.65427796513858"/> + <line stroke="#000000" x1="570.0000000000001" x2="553.0000000000001" y1="61.65427796513857" y2="61.65427796513857"/> + <line opacity="0.5" stroke="#0000ff" x1="570.0000000000001" x2="570.0000000000001" y1="61.65427796513857" y2="88.65427796513858"/> + <line stroke="#000000" x1="580.0000000000001" x2="570.0000000000001" y1="61.65427796513857" y2="61.65427796513857"/> + <line stroke="#000000" x1="580.0000000000001" x2="580.0000000000001" y1="88.65427796513858" y2="61.65427796513857"/> + <line stroke="#000000" x1="570.0000000000001" x2="580.0000000000001" y1="88.65427796513858" y2="88.65427796513858"/> + <line stroke="#888888" x1="270.43181818181824" x2="258.8409090909091" y1="158.058556" y2="158.058556"/> + <line stroke="#888888" x1="258.8409090909091" x2="258.8409090909091" y1="158.058556" y2="157.55855600000004"/> + <line stroke="#888888" x1="258.8409090909091" x2="270.43181818181824" y1="157.55855600000004" y2="157.55855600000004"/> + <line stroke="#888888" x1="270.43181818181824" x2="270.43181818181824" y1="157.55855600000004" y2="158.058556"/> + <line stroke="#888888" x1="298.159090909091" x2="286.56818181818187" y1="158.058556" y2="158.058556"/> + <line stroke="#888888" x1="286.56818181818187" x2="286.56818181818187" y1="158.058556" y2="157.55855600000004"/> + <line stroke="#888888" x1="286.56818181818187" x2="298.159090909091" y1="157.55855600000004" y2="157.55855600000004"/> + <line stroke="#888888" x1="298.159090909091" x2="298.159090909091" y1="157.55855600000004" y2="158.058556"/> + <line stroke="#888888" x1="326.75000000000006" x2="326.75000000000006" y1="127.39188933333335" y2="139.2252226666667"/> + <line stroke="#888888" x1="326.75000000000006" x2="326.25000000000006" y1="139.2252226666667" y2="139.2252226666667"/> + <line stroke="#888888" x1="326.25000000000006" x2="326.25000000000006" y1="139.2252226666667" y2="127.39188933333335"/> + <line stroke="#888888" x1="326.25000000000006" x2="326.75000000000006" y1="127.39188933333335" y2="127.39188933333335"/> + <line stroke="#888888" x1="335.25000000000006" x2="326.75000000000006" y1="39.30855600000002" y2="39.30855600000002"/> + <line stroke="#888888" x1="326.75000000000006" x2="326.75000000000006" y1="39.30855600000002" y2="38.80855600000002"/> + <line stroke="#888888" x1="326.75000000000006" x2="335.25000000000006" y1="38.80855600000002" y2="38.80855600000002"/> + <line stroke="#888888" x1="335.25000000000006" x2="335.25000000000006" y1="38.80855600000002" y2="39.30855600000002"/> + <line stroke="#888888" x1="362.00000000000006" x2="358.00000000000006" y1="139.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="358.00000000000006" x2="358.00000000000006" y1="139.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="358.00000000000006" x2="362.00000000000006" y1="127.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="362.00000000000006" x2="362.00000000000006" y1="127.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="350.0" x2="346.0" y1="137.808556" y2="137.808556"/> + <line stroke="#888888" x1="346.0" x2="346.0" y1="137.808556" y2="128.808556"/> + <line stroke="#888888" x1="346.0" x2="350.0" y1="128.808556" y2="128.808556"/> + <line stroke="#888888" x1="350.0" x2="350.0" y1="128.808556" y2="137.808556"/> + <line stroke="#888888" x1="386.5" x2="363.5" y1="139.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="363.5" x2="363.5" y1="139.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="363.5" x2="386.5" y1="127.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="386.5" x2="386.5" y1="127.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="392.00000000000006" x2="388.00000000000006" y1="139.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="388.00000000000006" x2="388.00000000000006" y1="139.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="388.00000000000006" x2="392.00000000000006" y1="127.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="392.00000000000006" x2="392.00000000000006" y1="127.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="414.50000000000006" x2="409.5" y1="138.9752226666667" y2="138.9752226666667"/> + <line stroke="#888888" x1="409.5" x2="409.5" y1="138.9752226666667" y2="127.64188933333335"/> + <line stroke="#888888" x1="409.5" x2="414.50000000000006" y1="127.64188933333335" y2="127.64188933333335"/> + <line stroke="#888888" x1="475.50000000000006" x2="472.50000000000006" y1="84.15427796513858" y2="84.15427796513858"/> + <line stroke="#888888" x1="472.50000000000006" x2="472.50000000000006" y1="84.15427796513858" y2="66.15427796513858"/> + <line stroke="#888888" x1="472.50000000000006" x2="475.50000000000006" y1="66.15427796513858" y2="66.15427796513858"/> + <line stroke="#888888" x1="475.50000000000006" x2="475.50000000000006" y1="66.15427796513858" y2="84.15427796513858"/> + <line stroke="#888888" x1="423.75000000000006" x2="423.75000000000006" y1="70.40427796513856" y2="79.90427796513858"/> + <line stroke="#888888" x1="423.75000000000006" x2="423.25" y1="79.90427796513858" y2="79.90427796513858"/> + <line stroke="#888888" x1="423.25" x2="423.25" y1="79.90427796513858" y2="70.40427796513856"/> + <line stroke="#888888" x1="423.25" x2="423.75000000000006" y1="70.40427796513856" y2="70.40427796513856"/> + <line stroke="#888888" x1="456.25000000000006" x2="435.75000000000006" y1="7.749999930277114" y2="7.749999930277114"/> + <line stroke="#888888" x1="435.75000000000006" x2="435.75000000000006" y1="7.749999930277114" y2="7.249999930277114"/> + <line stroke="#888888" x1="435.75000000000006" x2="456.25000000000006" y1="7.249999930277114" y2="7.249999930277114"/> + <line stroke="#888888" x1="456.25000000000006" x2="456.25000000000006" y1="7.249999930277114" y2="7.749999930277114"/> + <line stroke="#888888" x1="479.00000000000006" x2="476.00000000000006" y1="84.15427796513858" y2="84.15427796513858"/> + <line stroke="#888888" x1="476.00000000000006" x2="476.00000000000006" y1="84.15427796513858" y2="66.15427796513858"/> + <line stroke="#888888" x1="476.00000000000006" x2="479.00000000000006" y1="66.15427796513858" y2="66.15427796513858"/> + <line stroke="#888888" x1="479.00000000000006" x2="479.00000000000006" y1="66.15427796513858" y2="84.15427796513858"/> + <line stroke="#888888" x1="577.5000000000001" x2="572.5" y1="79.65427796513858" y2="79.65427796513858"/> + <line stroke="#888888" x1="572.5" x2="572.5" y1="79.65427796513858" y2="70.65427796513858"/> + <line stroke="#888888" x1="572.5" x2="577.5000000000001" y1="70.65427796513858" y2="70.65427796513858"/> + <line opacity="0.5" stroke="#0000ff" x1="623.0000000000001" x2="684.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/> + <line opacity="0.5" stroke="#0000ff" x1="684.0000000000001" x2="684.0000000000001" y1="138.30855600000004" y2="162.308556"/> + <line opacity="0.5" stroke="#0000ff" x1="684.0000000000001" x2="623.0000000000001" y1="162.308556" y2="162.308556"/> + <line opacity="0.5" stroke="#0000ff" x1="623.0000000000001" x2="623.0000000000001" y1="162.308556" y2="138.30855600000004"/> + <line stroke="#000000" x1="623.0000000000001" x2="623.0000000000001" y1="131.30855600000004" y2="138.30855600000004"/> + <line stroke="#000000" x1="683.0" x2="623.0000000000001" y1="131.30855600000004" y2="131.30855600000004"/> + <line stroke="#000000" x1="683.0" x2="683.0" y1="138.30855600000004" y2="131.30855600000004"/> + <line stroke="#000000" x1="691.0" x2="684.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/> + <line stroke="#000000" x1="691.0" x2="691.0" y1="162.308556" y2="138.30855600000004"/> + <line stroke="#000000" x1="684.0000000000001" x2="691.0" y1="162.308556" y2="162.308556"/> + <line opacity="0.5" stroke="#0000ff" x1="684.0000000000001" x2="684.0000000000001" y1="162.308556" y2="223.30855600000004"/> + <line stroke="#000000" x1="624.0000000000001" x2="684.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/> + <line opacity="0.5" stroke="#0000ff" x1="624.0000000000001" x2="624.0000000000001" y1="162.308556" y2="223.30855600000004"/> + <line stroke="#000000" x1="708.0000000000001" x2="684.0000000000001" y1="162.308556" y2="162.308556"/> + <line opacity="0.5" stroke="#0000ff" x1="708.0000000000001" x2="708.0000000000001" y1="162.308556" y2="223.30855600000004"/> + <line stroke="#000000" x1="684.0000000000001" x2="708.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/> + <line stroke="#000000" x1="768.0000000000001" x2="708.0000000000001" y1="162.308556" y2="162.308556"/> + <line stroke="#000000" x1="768.0000000000001" x2="768.0000000000001" y1="223.30855600000004" y2="162.308556"/> + <line stroke="#000000" x1="708.0000000000001" x2="768.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/> + <line stroke="#000000" x1="624.0000000000001" x2="600.0" y1="162.308556" y2="162.308556"/> + <line stroke="#000000" x1="600.0" x2="624.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/> + <line opacity="0.5" stroke="#0000ff" x1="600.0" x2="600.0" y1="223.30855600000004" y2="162.308556"/> + <line stroke="#000000" x1="590.0" x2="600.0" y1="223.30855600000004" y2="223.30855600000004"/> + <line stroke="#000000" x1="590.0" x2="590.0" y1="162.308556" y2="223.30855600000004"/> + <line stroke="#000000" x1="600.0" x2="590.0" y1="162.308556" y2="162.308556"/> + <line stroke="#000000" x1="616.0000000000001" x2="623.0000000000001" y1="162.308556" y2="162.308556"/> + <line stroke="#000000" x1="616.0000000000001" x2="616.0000000000001" y1="138.30855600000004" y2="162.308556"/> + <line stroke="#000000" x1="623.0000000000001" x2="616.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/> + <line stroke="#888888" x1="672.0909090909092" x2="675.5909090909091" y1="133.058556" y2="133.058556"/> + <line stroke="#888888" x1="675.5909090909091" x2="672.0909090909092" y1="133.058556" y2="136.55855600000004"/> + <line stroke="#888888" x1="672.0909090909092" x2="661.1818181818181" y1="136.55855600000004" y2="136.55855600000004"/> + <line stroke="#888888" x1="661.1818181818181" x2="657.6818181818184" y1="136.55855600000004" y2="133.058556"/> + <line stroke="#888888" x1="657.6818181818184" x2="661.1818181818181" y1="133.058556" y2="133.058556"/> + <line stroke="#888888" x1="644.818181818182" x2="648.3181818181819" y1="133.058556" y2="133.058556"/> + <line stroke="#888888" x1="648.3181818181819" x2="644.818181818182" y1="133.058556" y2="136.55855600000004"/> + <line stroke="#888888" x1="644.818181818182" x2="633.9090909090909" y1="136.55855600000004" y2="136.55855600000004"/> + <line stroke="#888888" x1="633.9090909090909" x2="630.409090909091" y1="136.55855600000004" y2="133.058556"/> + <line stroke="#888888" x1="630.409090909091" x2="633.9090909090909" y1="133.058556" y2="133.058556"/> + <line stroke="#888888" x1="689.2500000000001" x2="685.75" y1="154.30855600000004" y2="154.30855600000004"/> + <line stroke="#888888" x1="685.75" x2="685.75" y1="154.30855600000004" y2="146.308556"/> + <line stroke="#888888" x1="685.75" x2="689.2500000000001" y1="146.308556" y2="146.308556"/> + <line stroke="#888888" x1="631.5000000000001" x2="631.5000000000001" y1="213.80855600000004" y2="195.80855600000004"/> + <line stroke="#888888" x1="631.5000000000001" x2="666.5000000000001" y1="195.80855600000004" y2="195.80855600000004"/> + <line stroke="#888888" x1="666.5000000000001" x2="666.5000000000001" y1="195.80855600000004" y2="213.80855600000004"/> + <line stroke="#888888" x1="666.5000000000001" x2="631.5000000000001" y1="213.80855600000004" y2="213.80855600000004"/> + <line stroke="#888888" x1="684.5000000000001" x2="684.5000000000001" y1="175.55855600000004" y2="172.55855600000004"/> + <line stroke="#888888" x1="684.5000000000001" x2="687.5000000000001" y1="172.55855600000004" y2="172.55855600000004"/> + <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="172.55855600000004" y2="175.55855600000004"/> + <line stroke="#888888" x1="687.5000000000001" x2="684.5000000000001" y1="175.55855600000004" y2="175.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="174.55855600000004" y2="173.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="173.55855600000004" y2="173.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="173.55855600000004" y2="174.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="174.55855600000004" y2="174.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="177.05855600000004" y2="176.058556"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="176.058556" y2="176.058556"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="176.058556" y2="177.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="177.05855600000004" y2="176.058556"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="176.058556" y2="176.058556"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="176.058556" y2="177.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="179.55855600000004" y2="178.558556"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="178.558556" y2="178.558556"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="178.558556" y2="179.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="179.55855600000004" y2="178.558556"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="178.558556" y2="178.558556"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="178.558556" y2="179.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="182.05855600000004" y2="181.058556"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="181.058556" y2="181.058556"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="181.058556" y2="182.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="182.05855600000004" y2="181.058556"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="181.058556" y2="181.058556"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="181.058556" y2="182.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="192.058556" y2="191.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="191.05855600000004" y2="192.058556"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="192.058556" y2="192.058556"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="192.058556" y2="191.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="191.05855600000004" y2="192.058556"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="192.058556" y2="192.058556"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="194.558556" y2="193.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="193.55855600000004" y2="194.558556"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="194.558556" y2="194.558556"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="194.558556" y2="193.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="193.55855600000004" y2="194.558556"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="194.558556" y2="194.558556"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="202.05855600000004" y2="201.058556"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="201.058556" y2="201.058556"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="201.058556" y2="202.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="202.05855600000004" y2="201.058556"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="201.058556" y2="201.058556"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="201.058556" y2="202.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="204.55855600000004" y2="203.558556"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="203.558556" y2="203.558556"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="203.558556" y2="204.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="204.55855600000004" y2="203.558556"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="203.558556" y2="203.558556"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="203.558556" y2="204.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="212.05855600000004" y2="211.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="211.05855600000004" y2="211.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="211.05855600000004" y2="212.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="212.05855600000004" y2="212.05855600000004"/> + <line stroke="#888888" x1="704.5000000000001" x2="704.5000000000001" y1="213.05855600000004" y2="210.05855600000004"/> + <line stroke="#888888" x1="704.5000000000001" x2="707.5000000000001" y1="210.05855600000004" y2="210.05855600000004"/> + <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="210.05855600000004" y2="213.05855600000004"/> + <line stroke="#888888" x1="707.5000000000001" x2="704.5000000000001" y1="213.05855600000004" y2="213.05855600000004"/> + <line stroke="#888888" x1="700.2500000000001" x2="691.7500000000001" y1="170.05855600000004" y2="170.05855600000004"/> + <line stroke="#888888" x1="691.7500000000001" x2="691.7500000000001" y1="170.05855600000004" y2="169.558556"/> + <line stroke="#888888" x1="691.7500000000001" x2="700.2500000000001" y1="169.558556" y2="169.558556"/> + <line stroke="#888888" x1="700.2500000000001" x2="700.2500000000001" y1="169.558556" y2="170.05855600000004"/> + <line stroke="#888888" x1="691.7500000000001" x2="700.2500000000001" y1="217.80855600000004" y2="217.80855600000004"/> + <line stroke="#888888" x1="700.2500000000001" x2="700.2500000000001" y1="217.80855600000004" y2="218.30855600000004"/> + <line stroke="#888888" x1="700.2500000000001" x2="691.7500000000001" y1="218.30855600000004" y2="218.30855600000004"/> + <line stroke="#888888" x1="691.7500000000001" x2="691.7500000000001" y1="218.30855600000004" y2="217.80855600000004"/> + <line stroke="#888888" x1="723.0000000000001" x2="723.0000000000001" y1="213.30855600000004" y2="200.30855600000004"/> + <line stroke="#888888" x1="723.0000000000001" x2="753.0000000000001" y1="200.30855600000004" y2="200.30855600000004"/> + <line stroke="#888888" x1="753.0000000000001" x2="753.0000000000001" y1="200.30855600000004" y2="213.30855600000004"/> + <line stroke="#888888" x1="753.0000000000001" x2="723.0000000000001" y1="213.30855600000004" y2="213.30855600000004"/> + <line stroke="#888888" x1="730.0681818181819" x2="718.659090909091" y1="167.80855600000004" y2="167.80855600000004"/> + <line stroke="#888888" x1="718.659090909091" x2="718.659090909091" y1="167.80855600000004" y2="167.308556"/> + <line stroke="#888888" x1="718.659090909091" x2="730.0681818181819" y1="167.308556" y2="167.308556"/> + <line stroke="#888888" x1="730.0681818181819" x2="730.0681818181819" y1="167.308556" y2="167.80855600000004"/> + <line stroke="#888888" x1="757.3409090909092" x2="745.9318181818182" y1="167.80855600000004" y2="167.80855600000004"/> + <line stroke="#888888" x1="745.9318181818182" x2="745.9318181818182" y1="167.80855600000004" y2="167.308556"/> + <line stroke="#888888" x1="745.9318181818182" x2="757.3409090909092" y1="167.308556" y2="167.308556"/> + <line stroke="#888888" x1="757.3409090909092" x2="757.3409090909092" y1="167.308556" y2="167.80855600000004"/> + <line stroke="#888888" x1="760.25" x2="760.25" y1="184.74037418181823" y2="173.14946509090913"/> + <line stroke="#888888" x1="760.25" x2="760.75" y1="173.14946509090913" y2="173.14946509090913"/> + <line stroke="#888888" x1="760.75" x2="760.75" y1="173.14946509090913" y2="184.74037418181823"/> + <line stroke="#888888" x1="760.75" x2="760.25" y1="184.74037418181823" y2="184.74037418181823"/> + <line stroke="#888888" x1="760.25" x2="760.25" y1="212.46764690909094" y2="200.87673781818185"/> + <line stroke="#888888" x1="760.25" x2="760.75" y1="200.87673781818185" y2="200.87673781818185"/> + <line stroke="#888888" x1="760.75" x2="760.75" y1="200.87673781818185" y2="212.46764690909094"/> + <line stroke="#888888" x1="760.75" x2="760.25" y1="212.46764690909094" y2="212.46764690909094"/> + <line stroke="#888888" x1="600.5" x2="600.5" y1="175.55855600000004" y2="172.55855600000004"/> + <line stroke="#888888" x1="600.5" x2="603.5000000000001" y1="172.55855600000004" y2="172.55855600000004"/> + <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="172.55855600000004" y2="175.55855600000004"/> + <line stroke="#888888" x1="603.5000000000001" x2="600.5" y1="175.55855600000004" y2="175.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="174.55855600000004" y2="173.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="173.55855600000004" y2="173.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="173.55855600000004" y2="174.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="174.55855600000004" y2="174.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="177.05855600000004" y2="176.058556"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="176.058556" y2="176.058556"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="176.058556" y2="177.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="177.05855600000004" y2="177.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="177.05855600000004" y2="176.058556"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="176.058556" y2="176.058556"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="176.058556" y2="177.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="179.55855600000004" y2="178.558556"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="178.558556" y2="178.558556"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="178.558556" y2="179.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="179.55855600000004" y2="179.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="179.55855600000004" y2="178.558556"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="178.558556" y2="178.558556"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="178.558556" y2="179.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="182.05855600000004" y2="181.058556"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="181.058556" y2="181.058556"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="181.058556" y2="182.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="182.05855600000004" y2="182.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="182.05855600000004" y2="181.058556"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="181.058556" y2="181.058556"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="181.058556" y2="182.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="184.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="184.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="187.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="187.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="189.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="189.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="192.058556" y2="191.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="191.05855600000004" y2="192.058556"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="192.058556" y2="192.058556"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="192.058556" y2="191.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="191.05855600000004" y2="192.058556"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="192.058556" y2="192.058556"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="194.558556" y2="193.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="193.55855600000004" y2="194.558556"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="194.558556" y2="194.558556"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="194.558556" y2="193.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="193.55855600000004" y2="194.558556"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="194.558556" y2="194.558556"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="197.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="197.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="199.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="199.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="202.05855600000004" y2="201.058556"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="201.058556" y2="201.058556"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="201.058556" y2="202.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="202.05855600000004" y2="202.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="202.05855600000004" y2="201.058556"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="201.058556" y2="201.058556"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="201.058556" y2="202.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="204.55855600000004" y2="203.558556"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="203.558556" y2="203.558556"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="203.558556" y2="204.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="204.55855600000004" y2="204.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="204.55855600000004" y2="203.558556"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="203.558556" y2="203.558556"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="203.558556" y2="204.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="207.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="207.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="209.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="209.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="212.05855600000004" y2="211.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="211.05855600000004" y2="211.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="211.05855600000004" y2="212.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="212.05855600000004" y2="212.05855600000004"/> + <line stroke="#888888" x1="620.5000000000001" x2="620.5000000000001" y1="213.05855600000004" y2="210.05855600000004"/> + <line stroke="#888888" x1="620.5000000000001" x2="623.5000000000001" y1="210.05855600000004" y2="210.05855600000004"/> + <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="210.05855600000004" y2="213.05855600000004"/> + <line stroke="#888888" x1="623.5000000000001" x2="620.5000000000001" y1="213.05855600000004" y2="213.05855600000004"/> + <line stroke="#888888" x1="616.2500000000001" x2="607.7500000000001" y1="170.05855600000004" y2="170.05855600000004"/> + <line stroke="#888888" x1="607.7500000000001" x2="607.7500000000001" y1="170.05855600000004" y2="169.558556"/> + <line stroke="#888888" x1="607.7500000000001" x2="616.2500000000001" y1="169.558556" y2="169.558556"/> + <line stroke="#888888" x1="616.2500000000001" x2="616.2500000000001" y1="169.558556" y2="170.05855600000004"/> + <line stroke="#888888" x1="607.7500000000001" x2="616.2500000000001" y1="217.80855600000004" y2="217.80855600000004"/> + <line stroke="#888888" x1="616.2500000000001" x2="616.2500000000001" y1="217.80855600000004" y2="218.30855600000004"/> + <line stroke="#888888" x1="616.2500000000001" x2="607.7500000000001" y1="218.30855600000004" y2="218.30855600000004"/> + <line stroke="#888888" x1="607.7500000000001" x2="607.7500000000001" y1="218.30855600000004" y2="217.80855600000004"/> + <line stroke="#888888" x1="592.5" x2="597.5000000000001" y1="173.39946509090913" y2="173.39946509090913"/> + <line stroke="#888888" x1="597.5000000000001" x2="597.5000000000001" y1="173.39946509090913" y2="184.49037418181823"/> + <line stroke="#888888" x1="597.5000000000001" x2="592.5" y1="184.49037418181823" y2="184.49037418181823"/> + <line stroke="#888888" x1="592.5" x2="597.5000000000001" y1="201.12673781818185" y2="201.12673781818185"/> + <line stroke="#888888" x1="597.5000000000001" x2="597.5000000000001" y1="201.12673781818185" y2="212.21764690909094"/> + <line stroke="#888888" x1="597.5000000000001" x2="592.5" y1="212.21764690909094" y2="212.21764690909094"/> + <line stroke="#888888" x1="617.7500000000001" x2="621.2500000000001" y1="146.308556" y2="146.308556"/> + <line stroke="#888888" x1="621.2500000000001" x2="621.2500000000001" y1="146.308556" y2="154.30855600000004"/> + <line stroke="#888888" x1="621.2500000000001" x2="617.7500000000001" y1="154.30855600000004" y2="154.30855600000004"/> + <line opacity="0.5" stroke="#0000ff" x1="850.733401821533" x2="850.733401821533" y1="100.30855600000002" y2="200.30855600000004"/> + <line opacity="0.5" stroke="#0000ff" x1="800.7334018215329" x2="800.7334018215329" y1="100.30855600000002" y2="200.30855600000004"/> + <line opacity="0.12111894159084342" stroke="#0000ff" x1="825.733401821533" x2="800.7334018215329" y1="100.30855600000002" y2="100.30855600000002"/> + <line opacity="0.12111894159084342" stroke="#0000ff" x1="850.733401821533" x2="825.733401821533" y1="100.30855600000002" y2="100.30855600000002"/> + <line opacity="0.4468854644851019" stroke="#0000ff" x1="825.733401821533" x2="800.7334018215329" y1="46.45690792865498" y2="100.30855600000002"/> + <line stroke="#000000" x1="792.2466086902074" x2="786.4900052558701" y1="80.42847270018157" y2="86.2684116177914"/> + <line stroke="#000000" x1="825.733401821533" x2="792.2466086902074" y1="46.456907928654964" y2="80.42847270018157"/> + <line opacity="1.0" stroke="#0000ff" x1="800.7334018215329" x2="786.4900052558701" y1="100.30855600000002" y2="86.2684116177914"/> + <line opacity="1.0" stroke="#ff0000" x1="800.7334018215329" x2="780.733401821533" y1="100.30855600000002" y2="92.10835053540121"/> + <line stroke="#000000" x1="786.4900052558701" x2="780.733401821533" y1="86.2684116177914" y2="92.10835053540121"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="780.733401821533" x2="780.733401821533" y1="100.30855600000002" y2="92.10835053540121"/> + <line opacity="0.1475836176504332" stroke="#0000ff" x1="800.7334018215329" x2="780.733401821533" y1="100.30855600000002" y2="100.30855600000002"/> + <line stroke="#000000" x1="778.0000000000001" x2="780.733401821533" y1="100.30855600000002" y2="100.30855600000002"/> + <line stroke="#000000" x1="778.0000000000001" x2="778.0000000000001" y1="92.10835053540121" y2="100.30855600000002"/> + <line stroke="#000000" x1="780.733401821533" x2="778.0000000000001" y1="92.10835053540121" y2="92.10835053540121"/> + <line stroke="#000000" x1="780.733401821533" x2="780.733401821533" y1="100.30855600000002" y2="200.30855600000004"/> + <line opacity="0.1475836176504332" stroke="#0000ff" x1="780.733401821533" x2="800.7334018215329" y1="200.30855600000004" y2="200.30855600000004"/> + <line opacity="1.0" stroke="#ff0000" x1="780.733401821533" x2="800.7334018215329" y1="208.50876146459882" y2="200.30855600000004"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="780.733401821533" x2="780.733401821533" y1="208.50876146459882" y2="200.30855600000004"/> + <line stroke="#000000" x1="780.733401821533" x2="786.4900052558701" y1="208.50876146459882" y2="214.34870038220865"/> + <line opacity="1.0" stroke="#0000ff" x1="786.4900052558701" x2="800.7334018215329" y1="214.34870038220865" y2="200.30855600000004"/> + <line opacity="0.4468854644851019" stroke="#0000ff" x1="825.733401821533" x2="800.7334018215329" y1="254.16020407134508" y2="200.30855600000004"/> + <line stroke="#000000" x1="792.2466086902074" x2="825.733401821533" y1="220.18863929981848" y2="254.16020407134508"/> + <line stroke="#000000" x1="786.4900052558701" x2="792.2466086902074" y1="214.34870038220865" y2="220.18863929981848"/> + <line opacity="0.12111894159084342" stroke="#0000ff" x1="800.7334018215329" x2="825.733401821533" y1="200.30855600000004" y2="200.30855600000004"/> + <line opacity="0.12111894159084342" stroke="#0000ff" x1="825.733401821533" x2="850.733401821533" y1="200.30855600000004" y2="200.308556"/> + <line opacity="0.4468854644851019" stroke="#0000ff" x1="825.733401821533" x2="850.733401821533" y1="254.16020407134508" y2="200.308556"/> + <line stroke="#000000" x1="859.2201949528585" x2="864.9767983871958" y1="220.18863929981845" y2="214.34870038220865"/> + <line stroke="#000000" x1="825.733401821533" x2="859.2201949528585" y1="254.16020407134508" y2="220.18863929981845"/> + <line opacity="1.0" stroke="#0000ff" x1="850.733401821533" x2="864.9767983871958" y1="200.30855600000004" y2="214.34870038220865"/> + <line opacity="1.0" stroke="#ff0000" x1="850.733401821533" x2="870.733401821533" y1="200.308556" y2="208.5087614645988"/> + <line stroke="#000000" x1="864.9767983871958" x2="870.733401821533" y1="214.34870038220865" y2="208.5087614645988"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="870.733401821533" x2="870.733401821533" y1="200.308556" y2="208.5087614645988"/> + <line opacity="0.1475836176504332" stroke="#0000ff" x1="850.733401821533" x2="870.733401821533" y1="200.308556" y2="200.308556"/> + <line stroke="#000000" x1="873.4668036430659" x2="870.733401821533" y1="200.30855599999998" y2="200.30855599999998"/> + <line stroke="#000000" x1="873.4668036430659" x2="873.4668036430659" y1="208.5087614645988" y2="200.30855599999998"/> + <line stroke="#000000" x1="870.733401821533" x2="873.4668036430659" y1="208.5087614645988" y2="208.5087614645988"/> + <line stroke="#000000" x1="870.733401821533" x2="870.733401821533" y1="200.308556" y2="100.30855600000002"/> + <line opacity="0.1475836176504332" stroke="#0000ff" x1="870.733401821533" x2="850.733401821533" y1="100.30855600000002" y2="100.30855600000002"/> + <line opacity="1.0" stroke="#ff0000" x1="870.7334018215329" x2="850.733401821533" y1="92.10835053540121" y2="100.30855600000002"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="870.7334018215329" x2="870.7334018215329" y1="92.10835053540121" y2="100.30855600000002"/> + <line stroke="#000000" x1="870.7334018215329" x2="864.9767983871958" y1="92.10835053540121" y2="86.2684116177914"/> + <line opacity="1.0" stroke="#0000ff" x1="864.9767983871958" x2="850.733401821533" y1="86.2684116177914" y2="100.30855600000002"/> + <line opacity="0.4468854644851019" stroke="#0000ff" x1="825.7334018215329" x2="850.733401821533" y1="46.45690792865502" y2="100.30855600000004"/> + <line stroke="#000000" x1="859.2201949528585" x2="825.7334018215329" y1="80.42847270018159" y2="46.45690792865502"/> + <line stroke="#000000" x1="864.9767983871958" x2="859.2201949528585" y1="86.26841161779141" y2="80.42847270018159"/> + <line stroke="#000000" x1="873.4668036430659" x2="870.733401821533" y1="92.10835053540121" y2="92.10835053540121"/> + <line stroke="#000000" x1="873.4668036430659" x2="873.4668036430659" y1="100.30855600000002" y2="92.10835053540121"/> + <line stroke="#000000" x1="870.733401821533" x2="873.4668036430659" y1="100.30855600000002" y2="100.30855600000002"/> + <line stroke="#000000" x1="778.0000000000001" x2="780.733401821533" y1="208.50876146459882" y2="208.50876146459882"/> + <line stroke="#000000" x1="778.0000000000001" x2="778.0000000000001" y1="200.30855600000004" y2="208.50876146459882"/> + <line stroke="#000000" x1="780.733401821533" x2="778.0000000000001" y1="200.30855600000004" y2="200.30855600000004"/> + <line stroke="#888888" x1="792.1412698700124" x2="789.8713984490114" y1="83.81172921234263" y2="86.11446043235414"/> + <line stroke="#888888" x1="789.8713984490114" x2="789.5153135348698" y1="86.11446043235414" y2="85.76345682279894"/> + <line stroke="#888888" x1="789.5153135348698" x2="791.7851849558709" y1="85.76345682279894" y2="83.46072560278743"/> + <line stroke="#888888" x1="791.7851849558709" x2="792.1412698700124" y1="83.46072560278743" y2="83.81172921234263"/> + <line stroke="#888888" x1="778.6833504553833" x2="780.0500513661498" y1="94.84175235693415" y2="94.84175235693415"/> + <line stroke="#888888" x1="780.0500513661498" x2="780.0500513661498" y1="94.84175235693415" y2="97.57515417846707"/> + <line stroke="#888888" x1="780.0500513661498" x2="778.6833504553833" y1="97.57515417846707" y2="97.57515417846707"/> + <line stroke="#888888" x1="789.8713984490114" x2="792.1412698700124" y1="214.50265156764593" y2="216.8053827876574"/> + <line stroke="#888888" x1="792.1412698700124" x2="791.7851849558709" y1="216.8053827876574" y2="217.15638639721263"/> + <line stroke="#888888" x1="791.7851849558709" x2="789.5153135348698" y1="217.15638639721263" y2="214.85365517720115"/> + <line stroke="#888888" x1="789.5153135348698" x2="789.8713984490114" y1="214.85365517720115" y2="214.50265156764593"/> + <line stroke="#888888" x1="859.3255337730535" x2="861.5954051940545" y1="216.8053827876574" y2="214.50265156764587"/> + <line stroke="#888888" x1="861.5954051940545" x2="861.951490108196" y1="214.50265156764587" y2="214.8536551772011"/> + <line stroke="#888888" x1="861.951490108196" x2="859.681618687195" y1="214.8536551772011" y2="217.1563863972126"/> + <line stroke="#888888" x1="859.681618687195" x2="859.3255337730535" y1="217.1563863972126" y2="216.8053827876574"/> + <line stroke="#888888" x1="872.7834531876827" x2="871.4167522769161" y1="205.77535964306585" y2="205.77535964306585"/> + <line stroke="#888888" x1="871.4167522769161" x2="871.4167522769161" y1="205.77535964306585" y2="203.04195782153292"/> + <line stroke="#888888" x1="871.4167522769161" x2="872.7834531876827" y1="203.04195782153292" y2="203.04195782153292"/> + <line stroke="#888888" x1="861.5954051940544" x2="859.3255337730535" y1="86.11446043235415" y2="83.81172921234264"/> + <line stroke="#888888" x1="859.3255337730535" x2="859.681618687195" y1="83.81172921234264" y2="83.46072560278743"/> + <line stroke="#888888" x1="859.681618687195" x2="861.951490108196" y1="83.46072560278743" y2="85.76345682279894"/> + <line stroke="#888888" x1="861.951490108196" x2="861.5954051940544" y1="85.76345682279894" y2="86.11446043235415"/> + <line stroke="#888888" x1="872.7834531876827" x2="871.4167522769161" y1="97.57515417846707" y2="97.57515417846707"/> + <line stroke="#888888" x1="871.4167522769161" x2="871.4167522769161" y1="97.57515417846707" y2="94.84175235693415"/> + <line stroke="#888888" x1="871.4167522769161" x2="872.7834531876827" y1="94.84175235693415" y2="94.84175235693415"/> + <line stroke="#888888" x1="778.6833504553833" x2="780.0500513661498" y1="203.04195782153298" y2="203.04195782153298"/> + <line stroke="#888888" x1="780.0500513661498" x2="780.0500513661498" y1="203.04195782153298" y2="205.7753596430659"/> + <line stroke="#888888" x1="780.0500513661498" x2="778.6833504553833" y1="205.7753596430659" y2="205.7753596430659"/> +</svg> diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf new file mode 100644 index 0000000000000000000000000000000000000000..26964202af3cb3a49ae266f210e93e1f6690b8fa --- /dev/null +++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf @@ -0,0 +1,12498 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +16 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +LAYER + 2 +0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +45 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-45 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +21.801409486351815 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +80.43938360731835 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +180 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-180 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-174 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +26.565051177077976 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +cut + 10 +228.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +228.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +228.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +0.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +140.30855600000004 + 30 +0.0 + 11 +0.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +60.00000000000001 + 20 +140.30855600000004 + 30 +0.0 + 11 +0.0 + 21 +140.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +60.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +60.00000000000001 + 21 +140.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +133.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +60.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +167.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +157.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +228.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +228.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +60.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +60.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +157.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +157.0 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +133.00000000000003 + 20 +116.30855600000002 + 30 +0.0 + 11 +133.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +133.00000000000003 + 20 +80.30855600000002 + 30 +0.0 + 11 +133.00000000000003 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-90 + 10 +133.00000000000003 + 20 +80.30855600000002 + 30 +0.0 + 11 +157.0 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +157.0 + 20 +116.30855600000002 + 30 +0.0 + 11 +157.0 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +157.0 + 20 +80.30855600000002 + 30 +0.0 + 11 +157.0 + 21 +35.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +133.00000000000003 + 20 +35.30855600000002 + 30 +0.0 + 11 +133.00000000000003 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +133.00000000000003 + 20 +30.308556000000017 + 30 +0.0 + 11 +133.00000000000003 + 21 +35.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +157.0 + 20 +30.308556000000017 + 30 +0.0 + 11 +133.00000000000003 + 21 +30.308556000000017 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +157.0 + 20 +35.30855600000002 + 30 +0.0 + 11 +157.0 + 21 +30.308556000000017 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +133.00000000000003 + 20 +116.30855600000002 + 30 +0.0 + 11 +113.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +113.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +133.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +113.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +113.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +113.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +89.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +89.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +113.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +89.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +89.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +89.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +69.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +69.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +89.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +69.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +69.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +59.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +69.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +59.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +59.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +69.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +59.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +45 + 10 +167.00000000000003 + 20 +114.16993400081472 + 30 +0.0 + 11 +228.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +228.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +228.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +167.00000000000003 + 20 +114.16993400081472 + 30 +0.0 + 11 +167.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +45 + 10 +228.00000000000003 + 20 +90.16993400081472 + 30 +0.0 + 11 +167.00000000000003 + 21 +90.16993400081472 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +228.00000000000003 + 20 +90.16993400081472 + 30 +0.0 + 11 +228.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +167.00000000000003 + 20 +54.03131200162941 + 30 +0.0 + 11 +167.00000000000003 + 21 +90.16993400081473 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +228.00000000000003 + 20 +90.16993400081473 + 30 +0.0 + 11 +228.00000000000003 + 21 +54.03131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +167.00000000000003 + 20 +44.03131200162941 + 30 +0.0 + 11 +167.00000000000003 + 21 +54.03131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +228.00000000000003 + 20 +44.03131200162941 + 30 +0.0 + 11 +167.00000000000003 + 21 +44.03131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +228.00000000000003 + 20 +54.03131200162941 + 30 +0.0 + 11 +228.00000000000003 + 21 +44.03131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +238.00000000000003 + 20 +90.16993400081472 + 30 +0.0 + 11 +228.00000000000003 + 21 +90.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +238.00000000000003 + 20 +114.16993400081472 + 30 +0.0 + 11 +238.00000000000003 + 21 +90.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +228.00000000000003 + 20 +114.16993400081472 + 30 +0.0 + 11 +238.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +157.0 + 20 +114.16993400081472 + 30 +0.0 + 11 +167.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +157.0 + 20 +90.16993400081472 + 30 +0.0 + 11 +157.0 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +167.00000000000003 + 20 +90.16993400081472 + 30 +0.0 + 11 +157.0 + 21 +90.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +40.00000000000001 + 20 +142.80855600000004 + 30 +0.0 + 11 +45.0 + 21 +142.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +45.0 + 20 +142.80855600000004 + 30 +0.0 + 11 +40.00000000000001 + 21 +147.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +40.00000000000001 + 20 +147.80855600000004 + 30 +0.0 + 11 +20.000000000000004 + 21 +147.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +20.000000000000004 + 20 +147.80855600000004 + 30 +0.0 + 11 +15.000000000000002 + 21 +142.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +15.000000000000002 + 20 +142.80855600000004 + 30 +0.0 + 11 +20.000000000000004 + 21 +142.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.25000000000003 + 20 +139.2252226666667 + 30 +0.0 + 11 +149.25000000000003 + 21 +127.39188933333337 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.25000000000003 + 20 +127.39188933333337 + 30 +0.0 + 11 +149.75 + 21 +127.39188933333337 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.75 + 20 +127.39188933333337 + 30 +0.0 + 11 +149.75 + 21 +139.2252226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.75 + 20 +139.2252226666667 + 30 +0.0 + 11 +149.25000000000003 + 21 +139.2252226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.00000000000003 + 20 +31.558556000000014 + 30 +0.0 + 11 +151.50000000000003 + 21 +31.558556000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +151.50000000000003 + 20 +31.558556000000014 + 30 +0.0 + 11 +149.00000000000003 + 21 +34.05855600000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.00000000000003 + 20 +34.05855600000001 + 30 +0.0 + 11 +141.0 + 21 +34.05855600000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +34.05855600000001 + 30 +0.0 + 11 +138.5 + 21 +31.558556000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +138.5 + 20 +31.558556000000014 + 30 +0.0 + 11 +141.0 + 21 +31.558556000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +114.00000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +118.00000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +118.00000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +118.00000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +118.00000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +114.00000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +114.00000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +114.00000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +126.00000000000001 + 20 +128.808556 + 30 +0.0 + 11 +130.0 + 21 +128.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +128.808556 + 30 +0.0 + 11 +130.0 + 21 +137.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +137.808556 + 30 +0.0 + 11 +126.00000000000001 + 21 +137.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +126.00000000000001 + 20 +137.808556 + 30 +0.0 + 11 +126.00000000000001 + 21 +128.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +89.50000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +112.50000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +112.50000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +112.50000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +112.50000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +89.50000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +89.50000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +89.50000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +84.0 + 20 +127.30855600000004 + 30 +0.0 + 11 +88.00000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +88.00000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +88.00000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +88.00000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +84.0 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +84.0 + 20 +139.30855600000004 + 30 +0.0 + 11 +84.0 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +61.50000000000001 + 20 +127.64188933333337 + 30 +0.0 + 11 +66.50000000000001 + 21 +127.64188933333337 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +66.50000000000001 + 20 +127.64188933333337 + 30 +0.0 + 11 +66.50000000000001 + 21 +138.9752226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +66.50000000000001 + 20 +138.9752226666667 + 30 +0.0 + 11 +61.50000000000001 + 21 +138.9752226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +185.00000000000003 + 20 +95.66993400081472 + 30 +0.0 + 11 +196.00000000000003 + 21 +95.66993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +196.00000000000003 + 20 +95.66993400081472 + 30 +0.0 + 11 +196.00000000000003 + 21 +108.66993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +196.00000000000003 + 20 +108.66993400081472 + 30 +0.0 + 11 +185.00000000000003 + 21 +108.66993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +185.00000000000003 + 20 +108.66993400081472 + 30 +0.0 + 11 +185.00000000000003 + 21 +95.66993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +216.50000000000003 + 20 +97.16993400081472 + 30 +0.0 + 11 +222.50000000000003 + 21 +97.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +222.50000000000003 + 20 +97.16993400081472 + 30 +0.0 + 11 +222.50000000000003 + 21 +107.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +222.50000000000003 + 20 +107.16993400081472 + 30 +0.0 + 11 +216.50000000000003 + 21 +107.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +216.50000000000003 + 20 +107.16993400081472 + 30 +0.0 + 11 +216.50000000000003 + 21 +97.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +216.90909090909093 + 20 +46.5313120016294 + 30 +0.0 + 11 +216.90909090909093 + 21 +51.53131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +216.90909090909093 + 20 +51.53131200162941 + 30 +0.0 + 11 +205.81818181818184 + 21 +51.53131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +205.81818181818184 + 20 +51.53131200162941 + 30 +0.0 + 11 +205.81818181818184 + 21 +46.5313120016294 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +189.18181818181822 + 20 +46.5313120016294 + 30 +0.0 + 11 +189.18181818181822 + 21 +51.53131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +189.18181818181822 + 20 +51.53131200162941 + 30 +0.0 + 11 +178.09090909090912 + 21 +51.53131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +178.09090909090912 + 20 +51.53131200162941 + 30 +0.0 + 11 +178.09090909090912 + 21 +46.5313120016294 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +235.50000000000003 + 20 +106.16993400081472 + 30 +0.0 + 11 +230.50000000000003 + 21 +106.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +230.50000000000003 + 20 +106.16993400081472 + 30 +0.0 + 11 +230.50000000000003 + 21 +98.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +230.50000000000003 + 20 +98.16993400081472 + 30 +0.0 + 11 +235.50000000000003 + 21 +98.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +159.5 + 20 +98.16993400081472 + 30 +0.0 + 11 +164.50000000000003 + 21 +98.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.50000000000003 + 20 +98.16993400081472 + 30 +0.0 + 11 +164.50000000000003 + 21 +106.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.50000000000003 + 20 +106.16993400081472 + 30 +0.0 + 11 +159.5 + 21 +106.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +476.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +476.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +248.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +476.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +248.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +248.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +309.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +248.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +319.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +309.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +416.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +343.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +416.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +416.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +248.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +248.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +319.0 + 20 +116.30855600000002 + 30 +0.0 + 11 +319.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +343.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +343.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +319.0 + 20 +80.30855600000002 + 30 +0.0 + 11 +319.0 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-90 + 10 +319.0 + 20 +80.30855600000002 + 30 +0.0 + 11 +343.00000000000006 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +343.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +343.00000000000006 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +343.00000000000006 + 20 +80.30855600000002 + 30 +0.0 + 11 +343.00000000000006 + 21 +35.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +319.0 + 20 +35.30855600000002 + 30 +0.0 + 11 +319.0 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +343.00000000000006 + 20 +35.30855600000002 + 30 +0.0 + 11 +319.0 + 21 +35.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +343.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +363.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +363.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +343.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +363.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +363.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +363.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +387.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +387.0 + 20 +116.30855600000002 + 30 +0.0 + 11 +363.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +387.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +387.0 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +387.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +407.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +407.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +387.0 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +407.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +407.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +417.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +407.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +417.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +417.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +407.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +417.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +476.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +476.00000000000006 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +416.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +416.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-45 + 10 +416.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +476.00000000000006 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +416.00000000000006 + 20 +61.65427796513857 + 30 +0.0 + 11 +416.00000000000006 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-45 + 10 +476.00000000000006 + 20 +61.65427796513857 + 30 +0.0 + 11 +416.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +476.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +476.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +416.00000000000006 + 20 +-6.972288701945219e-08 + 30 +0.0 + 11 +416.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +476.00000000000006 + 20 +-6.972288701945219e-08 + 30 +0.0 + 11 +416.00000000000006 + 21 +-6.972288701945219e-08 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +476.00000000000006 + 20 +61.65427796513857 + 30 +0.0 + 11 +476.00000000000006 + 21 +-6.972288701945219e-08 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +476.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +493.00000000000006 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +493.00000000000006 + 20 +61.65427796513857 + 30 +0.0 + 11 +476.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +493.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +493.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +493.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +553.0000000000001 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +553.0000000000001 + 20 +61.65427796513857 + 30 +0.0 + 11 +493.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +553.0000000000001 + 20 +88.65427796513858 + 30 +0.0 + 11 +553.0000000000001 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +553.0000000000001 + 20 +88.65427796513858 + 30 +0.0 + 11 +570.0000000000001 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +570.0000000000001 + 20 +61.65427796513857 + 30 +0.0 + 11 +553.0000000000001 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +570.0000000000001 + 20 +61.65427796513857 + 30 +0.0 + 11 +570.0000000000001 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +580.0000000000001 + 20 +61.65427796513857 + 30 +0.0 + 11 +570.0000000000001 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +580.0000000000001 + 20 +88.65427796513858 + 30 +0.0 + 11 +580.0000000000001 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +570.0000000000001 + 20 +88.65427796513858 + 30 +0.0 + 11 +580.0000000000001 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +270.43181818181824 + 20 +158.058556 + 30 +0.0 + 11 +258.8409090909091 + 21 +158.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +258.8409090909091 + 20 +158.058556 + 30 +0.0 + 11 +258.8409090909091 + 21 +157.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +258.8409090909091 + 20 +157.55855600000004 + 30 +0.0 + 11 +270.43181818181824 + 21 +157.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +270.43181818181824 + 20 +157.55855600000004 + 30 +0.0 + 11 +270.43181818181824 + 21 +158.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +298.159090909091 + 20 +158.058556 + 30 +0.0 + 11 +286.56818181818187 + 21 +158.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.56818181818187 + 20 +158.058556 + 30 +0.0 + 11 +286.56818181818187 + 21 +157.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.56818181818187 + 20 +157.55855600000004 + 30 +0.0 + 11 +298.159090909091 + 21 +157.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +298.159090909091 + 20 +157.55855600000004 + 30 +0.0 + 11 +298.159090909091 + 21 +158.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +326.75000000000006 + 20 +127.39188933333335 + 30 +0.0 + 11 +326.75000000000006 + 21 +139.2252226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +326.75000000000006 + 20 +139.2252226666667 + 30 +0.0 + 11 +326.25000000000006 + 21 +139.2252226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +326.25000000000006 + 20 +139.2252226666667 + 30 +0.0 + 11 +326.25000000000006 + 21 +127.39188933333335 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +326.25000000000006 + 20 +127.39188933333335 + 30 +0.0 + 11 +326.75000000000006 + 21 +127.39188933333335 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +335.25000000000006 + 20 +39.30855600000002 + 30 +0.0 + 11 +326.75000000000006 + 21 +39.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +326.75000000000006 + 20 +39.30855600000002 + 30 +0.0 + 11 +326.75000000000006 + 21 +38.80855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +326.75000000000006 + 20 +38.80855600000002 + 30 +0.0 + 11 +335.25000000000006 + 21 +38.80855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +335.25000000000006 + 20 +38.80855600000002 + 30 +0.0 + 11 +335.25000000000006 + 21 +39.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +362.00000000000006 + 20 +139.30855600000004 + 30 +0.0 + 11 +358.00000000000006 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +358.00000000000006 + 20 +139.30855600000004 + 30 +0.0 + 11 +358.00000000000006 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +358.00000000000006 + 20 +127.30855600000004 + 30 +0.0 + 11 +362.00000000000006 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +362.00000000000006 + 20 +127.30855600000004 + 30 +0.0 + 11 +362.00000000000006 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.0 + 20 +137.808556 + 30 +0.0 + 11 +346.0 + 21 +137.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +346.0 + 20 +137.808556 + 30 +0.0 + 11 +346.0 + 21 +128.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +346.0 + 20 +128.808556 + 30 +0.0 + 11 +350.0 + 21 +128.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.0 + 20 +128.808556 + 30 +0.0 + 11 +350.0 + 21 +137.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +386.5 + 20 +139.30855600000004 + 30 +0.0 + 11 +363.5 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +363.5 + 20 +139.30855600000004 + 30 +0.0 + 11 +363.5 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +363.5 + 20 +127.30855600000004 + 30 +0.0 + 11 +386.5 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +386.5 + 20 +127.30855600000004 + 30 +0.0 + 11 +386.5 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +392.00000000000006 + 20 +139.30855600000004 + 30 +0.0 + 11 +388.00000000000006 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +388.00000000000006 + 20 +139.30855600000004 + 30 +0.0 + 11 +388.00000000000006 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +388.00000000000006 + 20 +127.30855600000004 + 30 +0.0 + 11 +392.00000000000006 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +392.00000000000006 + 20 +127.30855600000004 + 30 +0.0 + 11 +392.00000000000006 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +414.50000000000006 + 20 +138.9752226666667 + 30 +0.0 + 11 +409.5 + 21 +138.9752226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +409.5 + 20 +138.9752226666667 + 30 +0.0 + 11 +409.5 + 21 +127.64188933333335 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +409.5 + 20 +127.64188933333335 + 30 +0.0 + 11 +414.50000000000006 + 21 +127.64188933333335 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +475.50000000000006 + 20 +84.15427796513858 + 30 +0.0 + 11 +472.50000000000006 + 21 +84.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +472.50000000000006 + 20 +84.15427796513858 + 30 +0.0 + 11 +472.50000000000006 + 21 +66.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +472.50000000000006 + 20 +66.15427796513858 + 30 +0.0 + 11 +475.50000000000006 + 21 +66.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +475.50000000000006 + 20 +66.15427796513858 + 30 +0.0 + 11 +475.50000000000006 + 21 +84.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +423.75000000000006 + 20 +70.40427796513856 + 30 +0.0 + 11 +423.75000000000006 + 21 +79.90427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +423.75000000000006 + 20 +79.90427796513858 + 30 +0.0 + 11 +423.25 + 21 +79.90427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +423.25 + 20 +79.90427796513858 + 30 +0.0 + 11 +423.25 + 21 +70.40427796513856 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +423.25 + 20 +70.40427796513856 + 30 +0.0 + 11 +423.75000000000006 + 21 +70.40427796513856 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +456.25000000000006 + 20 +7.749999930277114 + 30 +0.0 + 11 +435.75000000000006 + 21 +7.749999930277114 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +435.75000000000006 + 20 +7.749999930277114 + 30 +0.0 + 11 +435.75000000000006 + 21 +7.249999930277114 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +435.75000000000006 + 20 +7.249999930277114 + 30 +0.0 + 11 +456.25000000000006 + 21 +7.249999930277114 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +456.25000000000006 + 20 +7.249999930277114 + 30 +0.0 + 11 +456.25000000000006 + 21 +7.749999930277114 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.00000000000006 + 20 +84.15427796513858 + 30 +0.0 + 11 +476.00000000000006 + 21 +84.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +476.00000000000006 + 20 +84.15427796513858 + 30 +0.0 + 11 +476.00000000000006 + 21 +66.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +476.00000000000006 + 20 +66.15427796513858 + 30 +0.0 + 11 +479.00000000000006 + 21 +66.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.00000000000006 + 20 +66.15427796513858 + 30 +0.0 + 11 +479.00000000000006 + 21 +84.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +577.5000000000001 + 20 +79.65427796513858 + 30 +0.0 + 11 +572.5 + 21 +79.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +572.5 + 20 +79.65427796513858 + 30 +0.0 + 11 +572.5 + 21 +70.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +572.5 + 20 +70.65427796513858 + 30 +0.0 + 11 +577.5000000000001 + 21 +70.65427796513858 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +623.0000000000001 + 20 +138.30855600000004 + 30 +0.0 + 11 +684.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +684.0000000000001 + 20 +138.30855600000004 + 30 +0.0 + 11 +684.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +684.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +623.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +623.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +623.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +623.0000000000001 + 20 +131.30855600000004 + 30 +0.0 + 11 +623.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +683.0 + 20 +131.30855600000004 + 30 +0.0 + 11 +623.0000000000001 + 21 +131.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +683.0 + 20 +138.30855600000004 + 30 +0.0 + 11 +683.0 + 21 +131.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +691.0 + 20 +138.30855600000004 + 30 +0.0 + 11 +684.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +691.0 + 20 +162.308556 + 30 +0.0 + 11 +691.0 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +684.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +691.0 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +684.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +684.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +624.0000000000001 + 20 +223.30855600000004 + 30 +0.0 + 11 +684.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +624.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +624.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +708.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +684.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +708.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +708.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +684.0000000000001 + 20 +223.30855600000004 + 30 +0.0 + 11 +708.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +768.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +708.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +768.0000000000001 + 20 +223.30855600000004 + 30 +0.0 + 11 +768.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +708.0000000000001 + 20 +223.30855600000004 + 30 +0.0 + 11 +768.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +624.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +600.0 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +600.0 + 20 +223.30855600000004 + 30 +0.0 + 11 +624.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +600.0 + 20 +223.30855600000004 + 30 +0.0 + 11 +600.0 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +590.0 + 20 +223.30855600000004 + 30 +0.0 + 11 +600.0 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +590.0 + 20 +162.308556 + 30 +0.0 + 11 +590.0 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +600.0 + 20 +162.308556 + 30 +0.0 + 11 +590.0 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +616.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +623.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +616.0000000000001 + 20 +138.30855600000004 + 30 +0.0 + 11 +616.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +623.0000000000001 + 20 +138.30855600000004 + 30 +0.0 + 11 +616.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +672.0909090909092 + 20 +133.058556 + 30 +0.0 + 11 +675.5909090909091 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +675.5909090909091 + 20 +133.058556 + 30 +0.0 + 11 +672.0909090909092 + 21 +136.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +672.0909090909092 + 20 +136.55855600000004 + 30 +0.0 + 11 +661.1818181818181 + 21 +136.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +661.1818181818181 + 20 +136.55855600000004 + 30 +0.0 + 11 +657.6818181818184 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +657.6818181818184 + 20 +133.058556 + 30 +0.0 + 11 +661.1818181818181 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +644.818181818182 + 20 +133.058556 + 30 +0.0 + 11 +648.3181818181819 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +648.3181818181819 + 20 +133.058556 + 30 +0.0 + 11 +644.818181818182 + 21 +136.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +644.818181818182 + 20 +136.55855600000004 + 30 +0.0 + 11 +633.9090909090909 + 21 +136.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +633.9090909090909 + 20 +136.55855600000004 + 30 +0.0 + 11 +630.409090909091 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +630.409090909091 + 20 +133.058556 + 30 +0.0 + 11 +633.9090909090909 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +689.2500000000001 + 20 +154.30855600000004 + 30 +0.0 + 11 +685.75 + 21 +154.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.75 + 20 +154.30855600000004 + 30 +0.0 + 11 +685.75 + 21 +146.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.75 + 20 +146.308556 + 30 +0.0 + 11 +689.2500000000001 + 21 +146.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +631.5000000000001 + 20 +213.80855600000004 + 30 +0.0 + 11 +631.5000000000001 + 21 +195.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +631.5000000000001 + 20 +195.80855600000004 + 30 +0.0 + 11 +666.5000000000001 + 21 +195.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +666.5000000000001 + 20 +195.80855600000004 + 30 +0.0 + 11 +666.5000000000001 + 21 +213.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +666.5000000000001 + 20 +213.80855600000004 + 30 +0.0 + 11 +631.5000000000001 + 21 +213.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +684.5000000000001 + 20 +175.55855600000004 + 30 +0.0 + 11 +684.5000000000001 + 21 +172.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +684.5000000000001 + 20 +172.55855600000004 + 30 +0.0 + 11 +687.5000000000001 + 21 +172.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +687.5000000000001 + 20 +172.55855600000004 + 30 +0.0 + 11 +687.5000000000001 + 21 +175.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +687.5000000000001 + 20 +175.55855600000004 + 30 +0.0 + 11 +684.5000000000001 + 21 +175.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +174.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +173.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +173.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +173.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +173.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +174.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +174.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +174.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +686.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +686.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +706.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +706.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +685.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +685.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +705.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +705.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +685.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +685.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +705.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +705.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +686.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +686.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +706.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +706.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +705.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +212.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +211.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +685.5000000000001 + 20 +211.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +211.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +211.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +212.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +686.5000000000001 + 20 +212.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +212.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +704.5000000000001 + 20 +213.05855600000004 + 30 +0.0 + 11 +704.5000000000001 + 21 +210.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +704.5000000000001 + 20 +210.05855600000004 + 30 +0.0 + 11 +707.5000000000001 + 21 +210.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +707.5000000000001 + 20 +210.05855600000004 + 30 +0.0 + 11 +707.5000000000001 + 21 +213.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +707.5000000000001 + 20 +213.05855600000004 + 30 +0.0 + 11 +704.5000000000001 + 21 +213.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +700.2500000000001 + 20 +170.05855600000004 + 30 +0.0 + 11 +691.7500000000001 + 21 +170.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +691.7500000000001 + 20 +170.05855600000004 + 30 +0.0 + 11 +691.7500000000001 + 21 +169.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +691.7500000000001 + 20 +169.558556 + 30 +0.0 + 11 +700.2500000000001 + 21 +169.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +700.2500000000001 + 20 +169.558556 + 30 +0.0 + 11 +700.2500000000001 + 21 +170.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +691.7500000000001 + 20 +217.80855600000004 + 30 +0.0 + 11 +700.2500000000001 + 21 +217.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +700.2500000000001 + 20 +217.80855600000004 + 30 +0.0 + 11 +700.2500000000001 + 21 +218.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +700.2500000000001 + 20 +218.30855600000004 + 30 +0.0 + 11 +691.7500000000001 + 21 +218.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +691.7500000000001 + 20 +218.30855600000004 + 30 +0.0 + 11 +691.7500000000001 + 21 +217.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +723.0000000000001 + 20 +213.30855600000004 + 30 +0.0 + 11 +723.0000000000001 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +723.0000000000001 + 20 +200.30855600000004 + 30 +0.0 + 11 +753.0000000000001 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +753.0000000000001 + 20 +200.30855600000004 + 30 +0.0 + 11 +753.0000000000001 + 21 +213.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +753.0000000000001 + 20 +213.30855600000004 + 30 +0.0 + 11 +723.0000000000001 + 21 +213.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +730.0681818181819 + 20 +167.80855600000004 + 30 +0.0 + 11 +718.659090909091 + 21 +167.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +718.659090909091 + 20 +167.80855600000004 + 30 +0.0 + 11 +718.659090909091 + 21 +167.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +718.659090909091 + 20 +167.308556 + 30 +0.0 + 11 +730.0681818181819 + 21 +167.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +730.0681818181819 + 20 +167.308556 + 30 +0.0 + 11 +730.0681818181819 + 21 +167.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +757.3409090909092 + 20 +167.80855600000004 + 30 +0.0 + 11 +745.9318181818182 + 21 +167.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +745.9318181818182 + 20 +167.80855600000004 + 30 +0.0 + 11 +745.9318181818182 + 21 +167.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +745.9318181818182 + 20 +167.308556 + 30 +0.0 + 11 +757.3409090909092 + 21 +167.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +757.3409090909092 + 20 +167.308556 + 30 +0.0 + 11 +757.3409090909092 + 21 +167.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +760.25 + 20 +184.74037418181823 + 30 +0.0 + 11 +760.25 + 21 +173.14946509090913 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +760.25 + 20 +173.14946509090913 + 30 +0.0 + 11 +760.75 + 21 +173.14946509090913 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +760.75 + 20 +173.14946509090913 + 30 +0.0 + 11 +760.75 + 21 +184.74037418181823 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +760.75 + 20 +184.74037418181823 + 30 +0.0 + 11 +760.25 + 21 +184.74037418181823 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +760.25 + 20 +212.46764690909094 + 30 +0.0 + 11 +760.25 + 21 +200.87673781818185 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +760.25 + 20 +200.87673781818185 + 30 +0.0 + 11 +760.75 + 21 +200.87673781818185 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +760.75 + 20 +200.87673781818185 + 30 +0.0 + 11 +760.75 + 21 +212.46764690909094 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +760.75 + 20 +212.46764690909094 + 30 +0.0 + 11 +760.25 + 21 +212.46764690909094 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +600.5 + 20 +175.55855600000004 + 30 +0.0 + 11 +600.5 + 21 +172.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +600.5 + 20 +172.55855600000004 + 30 +0.0 + 11 +603.5000000000001 + 21 +172.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +603.5000000000001 + 20 +172.55855600000004 + 30 +0.0 + 11 +603.5000000000001 + 21 +175.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +603.5000000000001 + 20 +175.55855600000004 + 30 +0.0 + 11 +600.5 + 21 +175.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +174.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +173.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +173.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +173.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +173.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +174.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +174.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +174.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +177.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +176.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +179.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +178.558556 + 30 +0.0 + 11 +602.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +602.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +622.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +622.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +182.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +181.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +184.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +183.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +187.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +186.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +189.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +188.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +192.058556 + 30 +0.0 + 11 +601.5 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +191.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +601.5 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +621.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +621.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +194.558556 + 30 +0.0 + 11 +601.5 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +193.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +601.5 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +621.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +621.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +197.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +196.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +199.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +198.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +202.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +201.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +204.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +203.558556 + 30 +0.0 + 11 +602.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +602.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +622.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +622.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +207.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +206.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +209.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +208.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +622.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +212.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +211.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +601.5 + 20 +211.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +211.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +211.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +212.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +602.5000000000001 + 20 +212.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +212.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +620.5000000000001 + 20 +213.05855600000004 + 30 +0.0 + 11 +620.5000000000001 + 21 +210.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +620.5000000000001 + 20 +210.05855600000004 + 30 +0.0 + 11 +623.5000000000001 + 21 +210.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +623.5000000000001 + 20 +210.05855600000004 + 30 +0.0 + 11 +623.5000000000001 + 21 +213.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +623.5000000000001 + 20 +213.05855600000004 + 30 +0.0 + 11 +620.5000000000001 + 21 +213.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +616.2500000000001 + 20 +170.05855600000004 + 30 +0.0 + 11 +607.7500000000001 + 21 +170.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +607.7500000000001 + 20 +170.05855600000004 + 30 +0.0 + 11 +607.7500000000001 + 21 +169.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +607.7500000000001 + 20 +169.558556 + 30 +0.0 + 11 +616.2500000000001 + 21 +169.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +616.2500000000001 + 20 +169.558556 + 30 +0.0 + 11 +616.2500000000001 + 21 +170.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +607.7500000000001 + 20 +217.80855600000004 + 30 +0.0 + 11 +616.2500000000001 + 21 +217.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +616.2500000000001 + 20 +217.80855600000004 + 30 +0.0 + 11 +616.2500000000001 + 21 +218.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +616.2500000000001 + 20 +218.30855600000004 + 30 +0.0 + 11 +607.7500000000001 + 21 +218.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +607.7500000000001 + 20 +218.30855600000004 + 30 +0.0 + 11 +607.7500000000001 + 21 +217.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +592.5 + 20 +173.39946509090913 + 30 +0.0 + 11 +597.5000000000001 + 21 +173.39946509090913 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +597.5000000000001 + 20 +173.39946509090913 + 30 +0.0 + 11 +597.5000000000001 + 21 +184.49037418181823 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +597.5000000000001 + 20 +184.49037418181823 + 30 +0.0 + 11 +592.5 + 21 +184.49037418181823 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +592.5 + 20 +201.12673781818185 + 30 +0.0 + 11 +597.5000000000001 + 21 +201.12673781818185 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +597.5000000000001 + 20 +201.12673781818185 + 30 +0.0 + 11 +597.5000000000001 + 21 +212.21764690909094 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +597.5000000000001 + 20 +212.21764690909094 + 30 +0.0 + 11 +592.5 + 21 +212.21764690909094 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +617.7500000000001 + 20 +146.308556 + 30 +0.0 + 11 +621.2500000000001 + 21 +146.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.2500000000001 + 20 +146.308556 + 30 +0.0 + 11 +621.2500000000001 + 21 +154.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +621.2500000000001 + 20 +154.30855600000004 + 30 +0.0 + 11 +617.7500000000001 + 21 +154.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +850.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +850.733401821533 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +800.7334018215329 + 20 +100.30855600000002 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +21.801409486351815 + 10 +825.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +800.7334018215329 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +21.801409486351815 + 10 +850.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +825.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +80.43938360731835 + 10 +825.733401821533 + 20 +46.45690792865498 + 30 +0.0 + 11 +800.7334018215329 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +792.2466086902074 + 20 +80.42847270018157 + 30 +0.0 + 11 +786.4900052558701 + 21 +86.2684116177914 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +825.733401821533 + 20 +46.456907928654964 + 30 +0.0 + 11 +792.2466086902074 + 21 +80.42847270018157 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +800.7334018215329 + 20 +100.30855600000002 + 30 +0.0 + 11 +786.4900052558701 + 21 +86.2684116177914 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +800.7334018215329 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +786.4900052558701 + 20 +86.2684116177914 + 30 +0.0 + 11 +780.733401821533 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +780.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +26.565051177077976 + 10 +800.7334018215329 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +778.0000000000001 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +778.0000000000001 + 20 +92.10835053540121 + 30 +0.0 + 11 +778.0000000000001 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +780.733401821533 + 20 +92.10835053540121 + 30 +0.0 + 11 +778.0000000000001 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +780.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +26.565051177077976 + 10 +780.733401821533 + 20 +200.30855600000004 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +780.733401821533 + 20 +208.50876146459882 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +780.733401821533 + 20 +208.50876146459882 + 30 +0.0 + 11 +780.733401821533 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +780.733401821533 + 20 +208.50876146459882 + 30 +0.0 + 11 +786.4900052558701 + 21 +214.34870038220865 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +786.4900052558701 + 20 +214.34870038220865 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +80.43938360731835 + 10 +825.733401821533 + 20 +254.16020407134508 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +792.2466086902074 + 20 +220.18863929981848 + 30 +0.0 + 11 +825.733401821533 + 21 +254.16020407134508 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +786.4900052558701 + 20 +214.34870038220865 + 30 +0.0 + 11 +792.2466086902074 + 21 +220.18863929981848 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +21.801409486351815 + 10 +800.7334018215329 + 20 +200.30855600000004 + 30 +0.0 + 11 +825.733401821533 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +21.801409486351815 + 10 +825.733401821533 + 20 +200.30855600000004 + 30 +0.0 + 11 +850.733401821533 + 21 +200.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +80.43938360731835 + 10 +825.733401821533 + 20 +254.16020407134508 + 30 +0.0 + 11 +850.733401821533 + 21 +200.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +859.2201949528585 + 20 +220.18863929981845 + 30 +0.0 + 11 +864.9767983871958 + 21 +214.34870038220865 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +825.733401821533 + 20 +254.16020407134508 + 30 +0.0 + 11 +859.2201949528585 + 21 +220.18863929981845 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +850.733401821533 + 20 +200.30855600000004 + 30 +0.0 + 11 +864.9767983871958 + 21 +214.34870038220865 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +850.733401821533 + 20 +200.308556 + 30 +0.0 + 11 +870.733401821533 + 21 +208.5087614645988 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +864.9767983871958 + 20 +214.34870038220865 + 30 +0.0 + 11 +870.733401821533 + 21 +208.5087614645988 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +870.733401821533 + 20 +200.308556 + 30 +0.0 + 11 +870.733401821533 + 21 +208.5087614645988 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +26.565051177077976 + 10 +850.733401821533 + 20 +200.308556 + 30 +0.0 + 11 +870.733401821533 + 21 +200.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +873.4668036430659 + 20 +200.30855599999998 + 30 +0.0 + 11 +870.733401821533 + 21 +200.30855599999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +873.4668036430659 + 20 +208.5087614645988 + 30 +0.0 + 11 +873.4668036430659 + 21 +200.30855599999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +870.733401821533 + 20 +208.5087614645988 + 30 +0.0 + 11 +873.4668036430659 + 21 +208.5087614645988 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +870.733401821533 + 20 +200.308556 + 30 +0.0 + 11 +870.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +26.565051177077976 + 10 +870.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +850.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +870.7334018215329 + 20 +92.10835053540121 + 30 +0.0 + 11 +850.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +870.7334018215329 + 20 +92.10835053540121 + 30 +0.0 + 11 +870.7334018215329 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +870.7334018215329 + 20 +92.10835053540121 + 30 +0.0 + 11 +864.9767983871958 + 21 +86.2684116177914 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +864.9767983871958 + 20 +86.2684116177914 + 30 +0.0 + 11 +850.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +80.43938360731835 + 10 +825.7334018215329 + 20 +46.45690792865502 + 30 +0.0 + 11 +850.733401821533 + 21 +100.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +859.2201949528585 + 20 +80.42847270018159 + 30 +0.0 + 11 +825.7334018215329 + 21 +46.45690792865502 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +864.9767983871958 + 20 +86.26841161779141 + 30 +0.0 + 11 +859.2201949528585 + 21 +80.42847270018159 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +873.4668036430659 + 20 +92.10835053540121 + 30 +0.0 + 11 +870.733401821533 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +873.4668036430659 + 20 +100.30855600000002 + 30 +0.0 + 11 +873.4668036430659 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +870.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +873.4668036430659 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +778.0000000000001 + 20 +208.50876146459882 + 30 +0.0 + 11 +780.733401821533 + 21 +208.50876146459882 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +778.0000000000001 + 20 +200.30855600000004 + 30 +0.0 + 11 +778.0000000000001 + 21 +208.50876146459882 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +780.733401821533 + 20 +200.30855600000004 + 30 +0.0 + 11 +778.0000000000001 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +792.1412698700124 + 20 +83.81172921234263 + 30 +0.0 + 11 +789.8713984490114 + 21 +86.11446043235414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +789.8713984490114 + 20 +86.11446043235414 + 30 +0.0 + 11 +789.5153135348698 + 21 +85.76345682279894 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +789.5153135348698 + 20 +85.76345682279894 + 30 +0.0 + 11 +791.7851849558709 + 21 +83.46072560278743 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +791.7851849558709 + 20 +83.46072560278743 + 30 +0.0 + 11 +792.1412698700124 + 21 +83.81172921234263 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +778.6833504553833 + 20 +94.84175235693415 + 30 +0.0 + 11 +780.0500513661498 + 21 +94.84175235693415 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +780.0500513661498 + 20 +94.84175235693415 + 30 +0.0 + 11 +780.0500513661498 + 21 +97.57515417846707 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +780.0500513661498 + 20 +97.57515417846707 + 30 +0.0 + 11 +778.6833504553833 + 21 +97.57515417846707 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +789.8713984490114 + 20 +214.50265156764593 + 30 +0.0 + 11 +792.1412698700124 + 21 +216.8053827876574 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +792.1412698700124 + 20 +216.8053827876574 + 30 +0.0 + 11 +791.7851849558709 + 21 +217.15638639721263 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +791.7851849558709 + 20 +217.15638639721263 + 30 +0.0 + 11 +789.5153135348698 + 21 +214.85365517720115 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +789.5153135348698 + 20 +214.85365517720115 + 30 +0.0 + 11 +789.8713984490114 + 21 +214.50265156764593 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +859.3255337730535 + 20 +216.8053827876574 + 30 +0.0 + 11 +861.5954051940545 + 21 +214.50265156764587 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +861.5954051940545 + 20 +214.50265156764587 + 30 +0.0 + 11 +861.951490108196 + 21 +214.8536551772011 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +861.951490108196 + 20 +214.8536551772011 + 30 +0.0 + 11 +859.681618687195 + 21 +217.1563863972126 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +859.681618687195 + 20 +217.1563863972126 + 30 +0.0 + 11 +859.3255337730535 + 21 +216.8053827876574 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +872.7834531876827 + 20 +205.77535964306585 + 30 +0.0 + 11 +871.4167522769161 + 21 +205.77535964306585 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +871.4167522769161 + 20 +205.77535964306585 + 30 +0.0 + 11 +871.4167522769161 + 21 +203.04195782153292 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +871.4167522769161 + 20 +203.04195782153292 + 30 +0.0 + 11 +872.7834531876827 + 21 +203.04195782153292 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +861.5954051940544 + 20 +86.11446043235415 + 30 +0.0 + 11 +859.3255337730535 + 21 +83.81172921234264 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +859.3255337730535 + 20 +83.81172921234264 + 30 +0.0 + 11 +859.681618687195 + 21 +83.46072560278743 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +859.681618687195 + 20 +83.46072560278743 + 30 +0.0 + 11 +861.951490108196 + 21 +85.76345682279894 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +861.951490108196 + 20 +85.76345682279894 + 30 +0.0 + 11 +861.5954051940544 + 21 +86.11446043235415 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +872.7834531876827 + 20 +97.57515417846707 + 30 +0.0 + 11 +871.4167522769161 + 21 +97.57515417846707 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +871.4167522769161 + 20 +97.57515417846707 + 30 +0.0 + 11 +871.4167522769161 + 21 +94.84175235693415 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +871.4167522769161 + 20 +94.84175235693415 + 30 +0.0 + 11 +872.7834531876827 + 21 +94.84175235693415 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +778.6833504553833 + 20 +203.04195782153298 + 30 +0.0 + 11 +780.0500513661498 + 21 +203.04195782153298 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +780.0500513661498 + 20 +203.04195782153298 + 30 +0.0 + 11 +780.0500513661498 + 21 +205.7753596430659 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +780.0500513661498 + 20 +205.7753596430659 + 30 +0.0 + 11 +778.6833504553833 + 21 +205.7753596430659 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf new file mode 100644 index 0000000000000000000000000000000000000000..28676372b9ddfb0abcf15b448390ba010a040c45 --- /dev/null +++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf @@ -0,0 +1,12388 @@ + 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 +228.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +228.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +228.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +0.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +140.30855600000004 + 30 +0.0 + 11 +0.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +140.30855600000004 + 30 +0.0 + 11 +0.0 + 21 +140.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +60.00000000000001 + 21 +140.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +133.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +60.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +167.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +157.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +228.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +60.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +157.0 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +133.00000000000003 + 20 +116.30855600000002 + 30 +0.0 + 11 +133.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +133.00000000000003 + 20 +80.30855600000002 + 30 +0.0 + 11 +133.00000000000003 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +133.00000000000003 + 20 +80.30855600000002 + 30 +0.0 + 11 +157.0 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +116.30855600000002 + 30 +0.0 + 11 +157.0 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +80.30855600000002 + 30 +0.0 + 11 +157.0 + 21 +35.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +133.00000000000003 + 20 +35.30855600000002 + 30 +0.0 + 11 +133.00000000000003 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +133.00000000000003 + 20 +30.308556000000017 + 30 +0.0 + 11 +133.00000000000003 + 21 +35.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +30.308556000000017 + 30 +0.0 + 11 +133.00000000000003 + 21 +30.308556000000017 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +35.30855600000002 + 30 +0.0 + 11 +157.0 + 21 +30.308556000000017 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +133.00000000000003 + 20 +116.30855600000002 + 30 +0.0 + 11 +113.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +133.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +113.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +113.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +89.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +89.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +113.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +89.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +89.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +89.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +69.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +69.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +89.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +69.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +69.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +59.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +69.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +59.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +59.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +69.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +59.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +167.00000000000003 + 20 +114.16993400081472 + 30 +0.0 + 11 +228.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +228.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +167.00000000000003 + 20 +114.16993400081472 + 30 +0.0 + 11 +167.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +228.00000000000003 + 20 +90.16993400081472 + 30 +0.0 + 11 +167.00000000000003 + 21 +90.16993400081472 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +228.00000000000003 + 20 +90.16993400081472 + 30 +0.0 + 11 +228.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +167.00000000000003 + 20 +54.03131200162941 + 30 +0.0 + 11 +167.00000000000003 + 21 +90.16993400081473 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.00000000000003 + 20 +90.16993400081473 + 30 +0.0 + 11 +228.00000000000003 + 21 +54.03131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +167.00000000000003 + 20 +44.03131200162941 + 30 +0.0 + 11 +167.00000000000003 + 21 +54.03131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.00000000000003 + 20 +44.03131200162941 + 30 +0.0 + 11 +167.00000000000003 + 21 +44.03131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.00000000000003 + 20 +54.03131200162941 + 30 +0.0 + 11 +228.00000000000003 + 21 +44.03131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +238.00000000000003 + 20 +90.16993400081472 + 30 +0.0 + 11 +228.00000000000003 + 21 +90.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +238.00000000000003 + 20 +114.16993400081472 + 30 +0.0 + 11 +238.00000000000003 + 21 +90.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.00000000000003 + 20 +114.16993400081472 + 30 +0.0 + 11 +238.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +114.16993400081472 + 30 +0.0 + 11 +167.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +90.16993400081472 + 30 +0.0 + 11 +157.0 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +167.00000000000003 + 20 +90.16993400081472 + 30 +0.0 + 11 +157.0 + 21 +90.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.00000000000001 + 20 +142.80855600000004 + 30 +0.0 + 11 +45.0 + 21 +142.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +45.0 + 20 +142.80855600000004 + 30 +0.0 + 11 +40.00000000000001 + 21 +147.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.00000000000001 + 20 +147.80855600000004 + 30 +0.0 + 11 +20.000000000000004 + 21 +147.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +20.000000000000004 + 20 +147.80855600000004 + 30 +0.0 + 11 +15.000000000000002 + 21 +142.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +15.000000000000002 + 20 +142.80855600000004 + 30 +0.0 + 11 +20.000000000000004 + 21 +142.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.25000000000003 + 20 +139.2252226666667 + 30 +0.0 + 11 +149.25000000000003 + 21 +127.39188933333337 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.25000000000003 + 20 +127.39188933333337 + 30 +0.0 + 11 +149.75 + 21 +127.39188933333337 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.75 + 20 +127.39188933333337 + 30 +0.0 + 11 +149.75 + 21 +139.2252226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.75 + 20 +139.2252226666667 + 30 +0.0 + 11 +149.25000000000003 + 21 +139.2252226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.00000000000003 + 20 +31.558556000000014 + 30 +0.0 + 11 +151.50000000000003 + 21 +31.558556000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +151.50000000000003 + 20 +31.558556000000014 + 30 +0.0 + 11 +149.00000000000003 + 21 +34.05855600000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.00000000000003 + 20 +34.05855600000001 + 30 +0.0 + 11 +141.0 + 21 +34.05855600000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +34.05855600000001 + 30 +0.0 + 11 +138.5 + 21 +31.558556000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +138.5 + 20 +31.558556000000014 + 30 +0.0 + 11 +141.0 + 21 +31.558556000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +114.00000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +118.00000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.00000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +118.00000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.00000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +114.00000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +114.00000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +114.00000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +126.00000000000001 + 20 +128.808556 + 30 +0.0 + 11 +130.0 + 21 +128.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +128.808556 + 30 +0.0 + 11 +130.0 + 21 +137.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +137.808556 + 30 +0.0 + 11 +126.00000000000001 + 21 +137.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +126.00000000000001 + 20 +137.808556 + 30 +0.0 + 11 +126.00000000000001 + 21 +128.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +89.50000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +112.50000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +112.50000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +112.50000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +112.50000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +89.50000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +89.50000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +89.50000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +84.0 + 20 +127.30855600000004 + 30 +0.0 + 11 +88.00000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.00000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +88.00000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.00000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +84.0 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +84.0 + 20 +139.30855600000004 + 30 +0.0 + 11 +84.0 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.50000000000001 + 20 +127.64188933333337 + 30 +0.0 + 11 +66.50000000000001 + 21 +127.64188933333337 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.50000000000001 + 20 +127.64188933333337 + 30 +0.0 + 11 +66.50000000000001 + 21 +138.9752226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.50000000000001 + 20 +138.9752226666667 + 30 +0.0 + 11 +61.50000000000001 + 21 +138.9752226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +185.00000000000003 + 20 +95.66993400081472 + 30 +0.0 + 11 +196.00000000000003 + 21 +95.66993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +196.00000000000003 + 20 +95.66993400081472 + 30 +0.0 + 11 +196.00000000000003 + 21 +108.66993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +196.00000000000003 + 20 +108.66993400081472 + 30 +0.0 + 11 +185.00000000000003 + 21 +108.66993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +185.00000000000003 + 20 +108.66993400081472 + 30 +0.0 + 11 +185.00000000000003 + 21 +95.66993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +216.50000000000003 + 20 +97.16993400081472 + 30 +0.0 + 11 +222.50000000000003 + 21 +97.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +222.50000000000003 + 20 +97.16993400081472 + 30 +0.0 + 11 +222.50000000000003 + 21 +107.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +222.50000000000003 + 20 +107.16993400081472 + 30 +0.0 + 11 +216.50000000000003 + 21 +107.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +216.50000000000003 + 20 +107.16993400081472 + 30 +0.0 + 11 +216.50000000000003 + 21 +97.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +216.90909090909093 + 20 +46.5313120016294 + 30 +0.0 + 11 +216.90909090909093 + 21 +51.53131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +216.90909090909093 + 20 +51.53131200162941 + 30 +0.0 + 11 +205.81818181818184 + 21 +51.53131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +205.81818181818184 + 20 +51.53131200162941 + 30 +0.0 + 11 +205.81818181818184 + 21 +46.5313120016294 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +189.18181818181822 + 20 +46.5313120016294 + 30 +0.0 + 11 +189.18181818181822 + 21 +51.53131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +189.18181818181822 + 20 +51.53131200162941 + 30 +0.0 + 11 +178.09090909090912 + 21 +51.53131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +178.09090909090912 + 20 +51.53131200162941 + 30 +0.0 + 11 +178.09090909090912 + 21 +46.5313120016294 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +235.50000000000003 + 20 +106.16993400081472 + 30 +0.0 + 11 +230.50000000000003 + 21 +106.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.50000000000003 + 20 +106.16993400081472 + 30 +0.0 + 11 +230.50000000000003 + 21 +98.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.50000000000003 + 20 +98.16993400081472 + 30 +0.0 + 11 +235.50000000000003 + 21 +98.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +159.5 + 20 +98.16993400081472 + 30 +0.0 + 11 +164.50000000000003 + 21 +98.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.50000000000003 + 20 +98.16993400081472 + 30 +0.0 + 11 +164.50000000000003 + 21 +106.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.50000000000003 + 20 +106.16993400081472 + 30 +0.0 + 11 +159.5 + 21 +106.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +476.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +248.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +476.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +248.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +248.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +309.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +248.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +319.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +309.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +416.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +343.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +416.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +416.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +248.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +248.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +319.0 + 20 +116.30855600000002 + 30 +0.0 + 11 +319.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +343.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +343.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +319.0 + 20 +80.30855600000002 + 30 +0.0 + 11 +319.0 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +319.0 + 20 +80.30855600000002 + 30 +0.0 + 11 +343.00000000000006 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +343.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +343.00000000000006 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +343.00000000000006 + 20 +80.30855600000002 + 30 +0.0 + 11 +343.00000000000006 + 21 +35.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +319.0 + 20 +35.30855600000002 + 30 +0.0 + 11 +319.0 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +343.00000000000006 + 20 +35.30855600000002 + 30 +0.0 + 11 +319.0 + 21 +35.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +343.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +363.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +363.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +343.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +363.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +363.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +363.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +387.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +387.0 + 20 +116.30855600000002 + 30 +0.0 + 11 +363.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +387.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +387.0 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +387.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +407.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +407.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +387.0 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +407.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +407.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +417.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +407.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +417.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +417.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +407.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +417.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +476.00000000000006 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +416.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +416.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +416.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +476.00000000000006 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +416.00000000000006 + 20 +61.65427796513857 + 30 +0.0 + 11 +416.00000000000006 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +476.00000000000006 + 20 +61.65427796513857 + 30 +0.0 + 11 +416.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +476.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +476.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +416.00000000000006 + 20 +-6.972288701945219e-08 + 30 +0.0 + 11 +416.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +-6.972288701945219e-08 + 30 +0.0 + 11 +416.00000000000006 + 21 +-6.972288701945219e-08 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +61.65427796513857 + 30 +0.0 + 11 +476.00000000000006 + 21 +-6.972288701945219e-08 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +493.00000000000006 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +493.00000000000006 + 20 +61.65427796513857 + 30 +0.0 + 11 +476.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +493.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +493.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +493.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +553.0000000000001 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +553.0000000000001 + 20 +61.65427796513857 + 30 +0.0 + 11 +493.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +553.0000000000001 + 20 +88.65427796513858 + 30 +0.0 + 11 +553.0000000000001 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +553.0000000000001 + 20 +88.65427796513858 + 30 +0.0 + 11 +570.0000000000001 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +570.0000000000001 + 20 +61.65427796513857 + 30 +0.0 + 11 +553.0000000000001 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +570.0000000000001 + 20 +61.65427796513857 + 30 +0.0 + 11 +570.0000000000001 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +580.0000000000001 + 20 +61.65427796513857 + 30 +0.0 + 11 +570.0000000000001 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +580.0000000000001 + 20 +88.65427796513858 + 30 +0.0 + 11 +580.0000000000001 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +570.0000000000001 + 20 +88.65427796513858 + 30 +0.0 + 11 +580.0000000000001 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +270.43181818181824 + 20 +158.058556 + 30 +0.0 + 11 +258.8409090909091 + 21 +158.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +258.8409090909091 + 20 +158.058556 + 30 +0.0 + 11 +258.8409090909091 + 21 +157.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +258.8409090909091 + 20 +157.55855600000004 + 30 +0.0 + 11 +270.43181818181824 + 21 +157.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +270.43181818181824 + 20 +157.55855600000004 + 30 +0.0 + 11 +270.43181818181824 + 21 +158.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +298.159090909091 + 20 +158.058556 + 30 +0.0 + 11 +286.56818181818187 + 21 +158.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.56818181818187 + 20 +158.058556 + 30 +0.0 + 11 +286.56818181818187 + 21 +157.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.56818181818187 + 20 +157.55855600000004 + 30 +0.0 + 11 +298.159090909091 + 21 +157.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +298.159090909091 + 20 +157.55855600000004 + 30 +0.0 + 11 +298.159090909091 + 21 +158.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.75000000000006 + 20 +127.39188933333335 + 30 +0.0 + 11 +326.75000000000006 + 21 +139.2252226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.75000000000006 + 20 +139.2252226666667 + 30 +0.0 + 11 +326.25000000000006 + 21 +139.2252226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.25000000000006 + 20 +139.2252226666667 + 30 +0.0 + 11 +326.25000000000006 + 21 +127.39188933333335 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.25000000000006 + 20 +127.39188933333335 + 30 +0.0 + 11 +326.75000000000006 + 21 +127.39188933333335 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +335.25000000000006 + 20 +39.30855600000002 + 30 +0.0 + 11 +326.75000000000006 + 21 +39.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.75000000000006 + 20 +39.30855600000002 + 30 +0.0 + 11 +326.75000000000006 + 21 +38.80855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.75000000000006 + 20 +38.80855600000002 + 30 +0.0 + 11 +335.25000000000006 + 21 +38.80855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +335.25000000000006 + 20 +38.80855600000002 + 30 +0.0 + 11 +335.25000000000006 + 21 +39.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +362.00000000000006 + 20 +139.30855600000004 + 30 +0.0 + 11 +358.00000000000006 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +358.00000000000006 + 20 +139.30855600000004 + 30 +0.0 + 11 +358.00000000000006 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +358.00000000000006 + 20 +127.30855600000004 + 30 +0.0 + 11 +362.00000000000006 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +362.00000000000006 + 20 +127.30855600000004 + 30 +0.0 + 11 +362.00000000000006 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.0 + 20 +137.808556 + 30 +0.0 + 11 +346.0 + 21 +137.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +346.0 + 20 +137.808556 + 30 +0.0 + 11 +346.0 + 21 +128.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +346.0 + 20 +128.808556 + 30 +0.0 + 11 +350.0 + 21 +128.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.0 + 20 +128.808556 + 30 +0.0 + 11 +350.0 + 21 +137.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +386.5 + 20 +139.30855600000004 + 30 +0.0 + 11 +363.5 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +363.5 + 20 +139.30855600000004 + 30 +0.0 + 11 +363.5 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +363.5 + 20 +127.30855600000004 + 30 +0.0 + 11 +386.5 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +386.5 + 20 +127.30855600000004 + 30 +0.0 + 11 +386.5 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +392.00000000000006 + 20 +139.30855600000004 + 30 +0.0 + 11 +388.00000000000006 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +388.00000000000006 + 20 +139.30855600000004 + 30 +0.0 + 11 +388.00000000000006 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +388.00000000000006 + 20 +127.30855600000004 + 30 +0.0 + 11 +392.00000000000006 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +392.00000000000006 + 20 +127.30855600000004 + 30 +0.0 + 11 +392.00000000000006 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +414.50000000000006 + 20 +138.9752226666667 + 30 +0.0 + 11 +409.5 + 21 +138.9752226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +409.5 + 20 +138.9752226666667 + 30 +0.0 + 11 +409.5 + 21 +127.64188933333335 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +409.5 + 20 +127.64188933333335 + 30 +0.0 + 11 +414.50000000000006 + 21 +127.64188933333335 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +475.50000000000006 + 20 +84.15427796513858 + 30 +0.0 + 11 +472.50000000000006 + 21 +84.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +472.50000000000006 + 20 +84.15427796513858 + 30 +0.0 + 11 +472.50000000000006 + 21 +66.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +472.50000000000006 + 20 +66.15427796513858 + 30 +0.0 + 11 +475.50000000000006 + 21 +66.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +475.50000000000006 + 20 +66.15427796513858 + 30 +0.0 + 11 +475.50000000000006 + 21 +84.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.75000000000006 + 20 +70.40427796513856 + 30 +0.0 + 11 +423.75000000000006 + 21 +79.90427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.75000000000006 + 20 +79.90427796513858 + 30 +0.0 + 11 +423.25 + 21 +79.90427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.25 + 20 +79.90427796513858 + 30 +0.0 + 11 +423.25 + 21 +70.40427796513856 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.25 + 20 +70.40427796513856 + 30 +0.0 + 11 +423.75000000000006 + 21 +70.40427796513856 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +456.25000000000006 + 20 +7.749999930277114 + 30 +0.0 + 11 +435.75000000000006 + 21 +7.749999930277114 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +435.75000000000006 + 20 +7.749999930277114 + 30 +0.0 + 11 +435.75000000000006 + 21 +7.249999930277114 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +435.75000000000006 + 20 +7.249999930277114 + 30 +0.0 + 11 +456.25000000000006 + 21 +7.249999930277114 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +456.25000000000006 + 20 +7.249999930277114 + 30 +0.0 + 11 +456.25000000000006 + 21 +7.749999930277114 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.00000000000006 + 20 +84.15427796513858 + 30 +0.0 + 11 +476.00000000000006 + 21 +84.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +84.15427796513858 + 30 +0.0 + 11 +476.00000000000006 + 21 +66.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +66.15427796513858 + 30 +0.0 + 11 +479.00000000000006 + 21 +66.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.00000000000006 + 20 +66.15427796513858 + 30 +0.0 + 11 +479.00000000000006 + 21 +84.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +577.5000000000001 + 20 +79.65427796513858 + 30 +0.0 + 11 +572.5 + 21 +79.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +572.5 + 20 +79.65427796513858 + 30 +0.0 + 11 +572.5 + 21 +70.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +572.5 + 20 +70.65427796513858 + 30 +0.0 + 11 +577.5000000000001 + 21 +70.65427796513858 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +623.0000000000001 + 20 +138.30855600000004 + 30 +0.0 + 11 +684.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +684.0000000000001 + 20 +138.30855600000004 + 30 +0.0 + 11 +684.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +684.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +623.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +623.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +623.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +623.0000000000001 + 20 +131.30855600000004 + 30 +0.0 + 11 +623.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +683.0 + 20 +131.30855600000004 + 30 +0.0 + 11 +623.0000000000001 + 21 +131.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +683.0 + 20 +138.30855600000004 + 30 +0.0 + 11 +683.0 + 21 +131.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +691.0 + 20 +138.30855600000004 + 30 +0.0 + 11 +684.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +691.0 + 20 +162.308556 + 30 +0.0 + 11 +691.0 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +684.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +691.0 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +684.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +684.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +624.0000000000001 + 20 +223.30855600000004 + 30 +0.0 + 11 +684.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +624.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +624.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +708.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +684.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +708.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +708.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +684.0000000000001 + 20 +223.30855600000004 + 30 +0.0 + 11 +708.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +768.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +708.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +768.0000000000001 + 20 +223.30855600000004 + 30 +0.0 + 11 +768.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +708.0000000000001 + 20 +223.30855600000004 + 30 +0.0 + 11 +768.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +624.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +600.0 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +600.0 + 20 +223.30855600000004 + 30 +0.0 + 11 +624.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +600.0 + 20 +223.30855600000004 + 30 +0.0 + 11 +600.0 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +590.0 + 20 +223.30855600000004 + 30 +0.0 + 11 +600.0 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +590.0 + 20 +162.308556 + 30 +0.0 + 11 +590.0 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +600.0 + 20 +162.308556 + 30 +0.0 + 11 +590.0 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +616.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +623.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +616.0000000000001 + 20 +138.30855600000004 + 30 +0.0 + 11 +616.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +623.0000000000001 + 20 +138.30855600000004 + 30 +0.0 + 11 +616.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +672.0909090909092 + 20 +133.058556 + 30 +0.0 + 11 +675.5909090909091 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +675.5909090909091 + 20 +133.058556 + 30 +0.0 + 11 +672.0909090909092 + 21 +136.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +672.0909090909092 + 20 +136.55855600000004 + 30 +0.0 + 11 +661.1818181818181 + 21 +136.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +661.1818181818181 + 20 +136.55855600000004 + 30 +0.0 + 11 +657.6818181818184 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +657.6818181818184 + 20 +133.058556 + 30 +0.0 + 11 +661.1818181818181 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +644.818181818182 + 20 +133.058556 + 30 +0.0 + 11 +648.3181818181819 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +648.3181818181819 + 20 +133.058556 + 30 +0.0 + 11 +644.818181818182 + 21 +136.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +644.818181818182 + 20 +136.55855600000004 + 30 +0.0 + 11 +633.9090909090909 + 21 +136.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +633.9090909090909 + 20 +136.55855600000004 + 30 +0.0 + 11 +630.409090909091 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +630.409090909091 + 20 +133.058556 + 30 +0.0 + 11 +633.9090909090909 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +689.2500000000001 + 20 +154.30855600000004 + 30 +0.0 + 11 +685.75 + 21 +154.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.75 + 20 +154.30855600000004 + 30 +0.0 + 11 +685.75 + 21 +146.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.75 + 20 +146.308556 + 30 +0.0 + 11 +689.2500000000001 + 21 +146.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +631.5000000000001 + 20 +213.80855600000004 + 30 +0.0 + 11 +631.5000000000001 + 21 +195.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +631.5000000000001 + 20 +195.80855600000004 + 30 +0.0 + 11 +666.5000000000001 + 21 +195.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +666.5000000000001 + 20 +195.80855600000004 + 30 +0.0 + 11 +666.5000000000001 + 21 +213.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +666.5000000000001 + 20 +213.80855600000004 + 30 +0.0 + 11 +631.5000000000001 + 21 +213.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +684.5000000000001 + 20 +175.55855600000004 + 30 +0.0 + 11 +684.5000000000001 + 21 +172.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +684.5000000000001 + 20 +172.55855600000004 + 30 +0.0 + 11 +687.5000000000001 + 21 +172.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +687.5000000000001 + 20 +172.55855600000004 + 30 +0.0 + 11 +687.5000000000001 + 21 +175.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +687.5000000000001 + 20 +175.55855600000004 + 30 +0.0 + 11 +684.5000000000001 + 21 +175.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +174.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +173.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +173.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +173.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +173.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +174.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +174.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +174.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +686.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +686.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +706.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +706.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +685.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +685.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +705.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +705.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +685.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +685.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +705.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +705.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +686.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +686.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +706.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +706.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +212.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +211.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +211.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +211.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +211.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +212.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +212.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +212.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +704.5000000000001 + 20 +213.05855600000004 + 30 +0.0 + 11 +704.5000000000001 + 21 +210.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +704.5000000000001 + 20 +210.05855600000004 + 30 +0.0 + 11 +707.5000000000001 + 21 +210.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +707.5000000000001 + 20 +210.05855600000004 + 30 +0.0 + 11 +707.5000000000001 + 21 +213.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +707.5000000000001 + 20 +213.05855600000004 + 30 +0.0 + 11 +704.5000000000001 + 21 +213.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +700.2500000000001 + 20 +170.05855600000004 + 30 +0.0 + 11 +691.7500000000001 + 21 +170.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +691.7500000000001 + 20 +170.05855600000004 + 30 +0.0 + 11 +691.7500000000001 + 21 +169.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +691.7500000000001 + 20 +169.558556 + 30 +0.0 + 11 +700.2500000000001 + 21 +169.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +700.2500000000001 + 20 +169.558556 + 30 +0.0 + 11 +700.2500000000001 + 21 +170.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +691.7500000000001 + 20 +217.80855600000004 + 30 +0.0 + 11 +700.2500000000001 + 21 +217.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +700.2500000000001 + 20 +217.80855600000004 + 30 +0.0 + 11 +700.2500000000001 + 21 +218.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +700.2500000000001 + 20 +218.30855600000004 + 30 +0.0 + 11 +691.7500000000001 + 21 +218.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +691.7500000000001 + 20 +218.30855600000004 + 30 +0.0 + 11 +691.7500000000001 + 21 +217.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +723.0000000000001 + 20 +213.30855600000004 + 30 +0.0 + 11 +723.0000000000001 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +723.0000000000001 + 20 +200.30855600000004 + 30 +0.0 + 11 +753.0000000000001 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +753.0000000000001 + 20 +200.30855600000004 + 30 +0.0 + 11 +753.0000000000001 + 21 +213.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +753.0000000000001 + 20 +213.30855600000004 + 30 +0.0 + 11 +723.0000000000001 + 21 +213.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +730.0681818181819 + 20 +167.80855600000004 + 30 +0.0 + 11 +718.659090909091 + 21 +167.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +718.659090909091 + 20 +167.80855600000004 + 30 +0.0 + 11 +718.659090909091 + 21 +167.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +718.659090909091 + 20 +167.308556 + 30 +0.0 + 11 +730.0681818181819 + 21 +167.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +730.0681818181819 + 20 +167.308556 + 30 +0.0 + 11 +730.0681818181819 + 21 +167.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +757.3409090909092 + 20 +167.80855600000004 + 30 +0.0 + 11 +745.9318181818182 + 21 +167.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +745.9318181818182 + 20 +167.80855600000004 + 30 +0.0 + 11 +745.9318181818182 + 21 +167.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +745.9318181818182 + 20 +167.308556 + 30 +0.0 + 11 +757.3409090909092 + 21 +167.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +757.3409090909092 + 20 +167.308556 + 30 +0.0 + 11 +757.3409090909092 + 21 +167.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.25 + 20 +184.74037418181823 + 30 +0.0 + 11 +760.25 + 21 +173.14946509090913 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.25 + 20 +173.14946509090913 + 30 +0.0 + 11 +760.75 + 21 +173.14946509090913 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.75 + 20 +173.14946509090913 + 30 +0.0 + 11 +760.75 + 21 +184.74037418181823 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.75 + 20 +184.74037418181823 + 30 +0.0 + 11 +760.25 + 21 +184.74037418181823 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.25 + 20 +212.46764690909094 + 30 +0.0 + 11 +760.25 + 21 +200.87673781818185 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.25 + 20 +200.87673781818185 + 30 +0.0 + 11 +760.75 + 21 +200.87673781818185 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.75 + 20 +200.87673781818185 + 30 +0.0 + 11 +760.75 + 21 +212.46764690909094 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.75 + 20 +212.46764690909094 + 30 +0.0 + 11 +760.25 + 21 +212.46764690909094 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +600.5 + 20 +175.55855600000004 + 30 +0.0 + 11 +600.5 + 21 +172.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +600.5 + 20 +172.55855600000004 + 30 +0.0 + 11 +603.5000000000001 + 21 +172.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +603.5000000000001 + 20 +172.55855600000004 + 30 +0.0 + 11 +603.5000000000001 + 21 +175.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +603.5000000000001 + 20 +175.55855600000004 + 30 +0.0 + 11 +600.5 + 21 +175.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +174.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +173.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +173.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +173.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +173.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +174.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +174.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +174.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +177.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +176.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +179.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +178.558556 + 30 +0.0 + 11 +602.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +602.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +622.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +622.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +182.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +181.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +184.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +183.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +187.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +186.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +189.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +188.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +192.058556 + 30 +0.0 + 11 +601.5 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +191.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +601.5 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +621.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +621.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +194.558556 + 30 +0.0 + 11 +601.5 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +193.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +601.5 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +621.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +621.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +197.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +196.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +199.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +198.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +202.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +201.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +204.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +203.558556 + 30 +0.0 + 11 +602.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +602.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +622.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +622.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +207.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +206.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +209.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +208.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +212.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +211.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +211.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +211.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +211.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +212.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +212.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +212.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +620.5000000000001 + 20 +213.05855600000004 + 30 +0.0 + 11 +620.5000000000001 + 21 +210.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +620.5000000000001 + 20 +210.05855600000004 + 30 +0.0 + 11 +623.5000000000001 + 21 +210.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +623.5000000000001 + 20 +210.05855600000004 + 30 +0.0 + 11 +623.5000000000001 + 21 +213.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +623.5000000000001 + 20 +213.05855600000004 + 30 +0.0 + 11 +620.5000000000001 + 21 +213.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +616.2500000000001 + 20 +170.05855600000004 + 30 +0.0 + 11 +607.7500000000001 + 21 +170.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.7500000000001 + 20 +170.05855600000004 + 30 +0.0 + 11 +607.7500000000001 + 21 +169.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.7500000000001 + 20 +169.558556 + 30 +0.0 + 11 +616.2500000000001 + 21 +169.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +616.2500000000001 + 20 +169.558556 + 30 +0.0 + 11 +616.2500000000001 + 21 +170.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.7500000000001 + 20 +217.80855600000004 + 30 +0.0 + 11 +616.2500000000001 + 21 +217.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +616.2500000000001 + 20 +217.80855600000004 + 30 +0.0 + 11 +616.2500000000001 + 21 +218.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +616.2500000000001 + 20 +218.30855600000004 + 30 +0.0 + 11 +607.7500000000001 + 21 +218.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.7500000000001 + 20 +218.30855600000004 + 30 +0.0 + 11 +607.7500000000001 + 21 +217.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +592.5 + 20 +173.39946509090913 + 30 +0.0 + 11 +597.5000000000001 + 21 +173.39946509090913 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +597.5000000000001 + 20 +173.39946509090913 + 30 +0.0 + 11 +597.5000000000001 + 21 +184.49037418181823 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +597.5000000000001 + 20 +184.49037418181823 + 30 +0.0 + 11 +592.5 + 21 +184.49037418181823 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +592.5 + 20 +201.12673781818185 + 30 +0.0 + 11 +597.5000000000001 + 21 +201.12673781818185 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +597.5000000000001 + 20 +201.12673781818185 + 30 +0.0 + 11 +597.5000000000001 + 21 +212.21764690909094 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +597.5000000000001 + 20 +212.21764690909094 + 30 +0.0 + 11 +592.5 + 21 +212.21764690909094 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +617.7500000000001 + 20 +146.308556 + 30 +0.0 + 11 +621.2500000000001 + 21 +146.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.2500000000001 + 20 +146.308556 + 30 +0.0 + 11 +621.2500000000001 + 21 +154.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.2500000000001 + 20 +154.30855600000004 + 30 +0.0 + 11 +617.7500000000001 + 21 +154.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +850.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +850.733401821533 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +800.7334018215329 + 20 +100.30855600000002 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +825.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +800.7334018215329 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +850.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +825.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +825.733401821533 + 20 +46.45690792865498 + 30 +0.0 + 11 +800.7334018215329 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +792.2466086902074 + 20 +80.42847270018157 + 30 +0.0 + 11 +786.4900052558701 + 21 +86.2684116177914 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +825.733401821533 + 20 +46.456907928654964 + 30 +0.0 + 11 +792.2466086902074 + 21 +80.42847270018157 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +800.7334018215329 + 20 +100.30855600000002 + 30 +0.0 + 11 +786.4900052558701 + 21 +86.2684116177914 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +800.7334018215329 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +786.4900052558701 + 20 +86.2684116177914 + 30 +0.0 + 11 +780.733401821533 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +780.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +800.7334018215329 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +778.0000000000001 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +778.0000000000001 + 20 +92.10835053540121 + 30 +0.0 + 11 +778.0000000000001 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.733401821533 + 20 +92.10835053540121 + 30 +0.0 + 11 +778.0000000000001 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +780.733401821533 + 20 +200.30855600000004 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +780.733401821533 + 20 +208.50876146459882 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +780.733401821533 + 20 +208.50876146459882 + 30 +0.0 + 11 +780.733401821533 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.733401821533 + 20 +208.50876146459882 + 30 +0.0 + 11 +786.4900052558701 + 21 +214.34870038220865 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +786.4900052558701 + 20 +214.34870038220865 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +825.733401821533 + 20 +254.16020407134508 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +792.2466086902074 + 20 +220.18863929981848 + 30 +0.0 + 11 +825.733401821533 + 21 +254.16020407134508 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +786.4900052558701 + 20 +214.34870038220865 + 30 +0.0 + 11 +792.2466086902074 + 21 +220.18863929981848 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +800.7334018215329 + 20 +200.30855600000004 + 30 +0.0 + 11 +825.733401821533 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +825.733401821533 + 20 +200.30855600000004 + 30 +0.0 + 11 +850.733401821533 + 21 +200.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +825.733401821533 + 20 +254.16020407134508 + 30 +0.0 + 11 +850.733401821533 + 21 +200.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +859.2201949528585 + 20 +220.18863929981845 + 30 +0.0 + 11 +864.9767983871958 + 21 +214.34870038220865 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +825.733401821533 + 20 +254.16020407134508 + 30 +0.0 + 11 +859.2201949528585 + 21 +220.18863929981845 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +850.733401821533 + 20 +200.30855600000004 + 30 +0.0 + 11 +864.9767983871958 + 21 +214.34870038220865 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +850.733401821533 + 20 +200.308556 + 30 +0.0 + 11 +870.733401821533 + 21 +208.5087614645988 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +864.9767983871958 + 20 +214.34870038220865 + 30 +0.0 + 11 +870.733401821533 + 21 +208.5087614645988 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +870.733401821533 + 20 +200.308556 + 30 +0.0 + 11 +870.733401821533 + 21 +208.5087614645988 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +850.733401821533 + 20 +200.308556 + 30 +0.0 + 11 +870.733401821533 + 21 +200.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +873.4668036430659 + 20 +200.30855599999998 + 30 +0.0 + 11 +870.733401821533 + 21 +200.30855599999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +873.4668036430659 + 20 +208.5087614645988 + 30 +0.0 + 11 +873.4668036430659 + 21 +200.30855599999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +870.733401821533 + 20 +208.5087614645988 + 30 +0.0 + 11 +873.4668036430659 + 21 +208.5087614645988 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +870.733401821533 + 20 +200.308556 + 30 +0.0 + 11 +870.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +870.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +850.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +870.7334018215329 + 20 +92.10835053540121 + 30 +0.0 + 11 +850.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +870.7334018215329 + 20 +92.10835053540121 + 30 +0.0 + 11 +870.7334018215329 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +870.7334018215329 + 20 +92.10835053540121 + 30 +0.0 + 11 +864.9767983871958 + 21 +86.2684116177914 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +864.9767983871958 + 20 +86.2684116177914 + 30 +0.0 + 11 +850.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +825.7334018215329 + 20 +46.45690792865502 + 30 +0.0 + 11 +850.733401821533 + 21 +100.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +859.2201949528585 + 20 +80.42847270018159 + 30 +0.0 + 11 +825.7334018215329 + 21 +46.45690792865502 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +864.9767983871958 + 20 +86.26841161779141 + 30 +0.0 + 11 +859.2201949528585 + 21 +80.42847270018159 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +873.4668036430659 + 20 +92.10835053540121 + 30 +0.0 + 11 +870.733401821533 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +873.4668036430659 + 20 +100.30855600000002 + 30 +0.0 + 11 +873.4668036430659 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +870.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +873.4668036430659 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +778.0000000000001 + 20 +208.50876146459882 + 30 +0.0 + 11 +780.733401821533 + 21 +208.50876146459882 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +778.0000000000001 + 20 +200.30855600000004 + 30 +0.0 + 11 +778.0000000000001 + 21 +208.50876146459882 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.733401821533 + 20 +200.30855600000004 + 30 +0.0 + 11 +778.0000000000001 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +792.1412698700124 + 20 +83.81172921234263 + 30 +0.0 + 11 +789.8713984490114 + 21 +86.11446043235414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +789.8713984490114 + 20 +86.11446043235414 + 30 +0.0 + 11 +789.5153135348698 + 21 +85.76345682279894 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +789.5153135348698 + 20 +85.76345682279894 + 30 +0.0 + 11 +791.7851849558709 + 21 +83.46072560278743 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +791.7851849558709 + 20 +83.46072560278743 + 30 +0.0 + 11 +792.1412698700124 + 21 +83.81172921234263 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +778.6833504553833 + 20 +94.84175235693415 + 30 +0.0 + 11 +780.0500513661498 + 21 +94.84175235693415 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.0500513661498 + 20 +94.84175235693415 + 30 +0.0 + 11 +780.0500513661498 + 21 +97.57515417846707 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.0500513661498 + 20 +97.57515417846707 + 30 +0.0 + 11 +778.6833504553833 + 21 +97.57515417846707 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +789.8713984490114 + 20 +214.50265156764593 + 30 +0.0 + 11 +792.1412698700124 + 21 +216.8053827876574 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +792.1412698700124 + 20 +216.8053827876574 + 30 +0.0 + 11 +791.7851849558709 + 21 +217.15638639721263 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +791.7851849558709 + 20 +217.15638639721263 + 30 +0.0 + 11 +789.5153135348698 + 21 +214.85365517720115 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +789.5153135348698 + 20 +214.85365517720115 + 30 +0.0 + 11 +789.8713984490114 + 21 +214.50265156764593 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +859.3255337730535 + 20 +216.8053827876574 + 30 +0.0 + 11 +861.5954051940545 + 21 +214.50265156764587 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +861.5954051940545 + 20 +214.50265156764587 + 30 +0.0 + 11 +861.951490108196 + 21 +214.8536551772011 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +861.951490108196 + 20 +214.8536551772011 + 30 +0.0 + 11 +859.681618687195 + 21 +217.1563863972126 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +859.681618687195 + 20 +217.1563863972126 + 30 +0.0 + 11 +859.3255337730535 + 21 +216.8053827876574 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +872.7834531876827 + 20 +205.77535964306585 + 30 +0.0 + 11 +871.4167522769161 + 21 +205.77535964306585 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +871.4167522769161 + 20 +205.77535964306585 + 30 +0.0 + 11 +871.4167522769161 + 21 +203.04195782153292 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +871.4167522769161 + 20 +203.04195782153292 + 30 +0.0 + 11 +872.7834531876827 + 21 +203.04195782153292 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +861.5954051940544 + 20 +86.11446043235415 + 30 +0.0 + 11 +859.3255337730535 + 21 +83.81172921234264 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +859.3255337730535 + 20 +83.81172921234264 + 30 +0.0 + 11 +859.681618687195 + 21 +83.46072560278743 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +859.681618687195 + 20 +83.46072560278743 + 30 +0.0 + 11 +861.951490108196 + 21 +85.76345682279894 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +861.951490108196 + 20 +85.76345682279894 + 30 +0.0 + 11 +861.5954051940544 + 21 +86.11446043235415 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +872.7834531876827 + 20 +97.57515417846707 + 30 +0.0 + 11 +871.4167522769161 + 21 +97.57515417846707 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +871.4167522769161 + 20 +97.57515417846707 + 30 +0.0 + 11 +871.4167522769161 + 21 +94.84175235693415 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +871.4167522769161 + 20 +94.84175235693415 + 30 +0.0 + 11 +872.7834531876827 + 21 +94.84175235693415 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +778.6833504553833 + 20 +203.04195782153298 + 30 +0.0 + 11 +780.0500513661498 + 21 +203.04195782153298 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.0500513661498 + 20 +203.04195782153298 + 30 +0.0 + 11 +780.0500513661498 + 21 +205.7753596430659 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.0500513661498 + 20 +205.7753596430659 + 30 +0.0 + 11 +778.6833504553833 + 21 +205.7753596430659 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg new file mode 100644 index 0000000000000000000000000000000000000000..f0bd6d27a98c2275d4f0f8126a7ef2cf6b3159b5 --- /dev/null +++ b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg @@ -0,0 +1,634 @@ +<?xml version="1.0" encoding="utf-8" ?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="254.160204mm" version="1.1" viewBox="0.000000 0.000000 873.466804 254.160204" width="873.466804mm"> + <defs/> + <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="0.0" x2="228.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="140.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="60.00000000000001" x2="0.0" y1="140.30855600000004" y2="140.30855600000004"/> + <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="150.30855600000004" y2="140.30855600000004"/> + <line stroke="#000000" x1="133.00000000000003" x2="60.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="167.00000000000003" x2="157.0" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="157.0" x2="157.0" y1="150.30855600000004" y2="116.30855600000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="133.00000000000003" x2="133.00000000000003" y1="116.30855600000002" y2="150.30855600000004"/> + <line stroke="#000000" x1="133.00000000000003" x2="133.00000000000003" y1="80.30855600000002" y2="116.30855600000002"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="133.00000000000003" x2="157.0" y1="80.30855600000002" y2="80.30855600000002"/> + <line stroke="#000000" x1="157.0" x2="157.0" y1="116.30855600000002" y2="80.30855600000002"/> + <line stroke="#000000" x1="157.0" x2="157.0" y1="80.30855600000002" y2="35.30855600000002"/> + <line stroke="#000000" x1="133.00000000000003" x2="133.00000000000003" y1="35.30855600000002" y2="80.30855600000002"/> + <line stroke="#000000" x1="133.00000000000003" x2="133.00000000000003" y1="30.308556000000017" y2="35.30855600000002"/> + <line stroke="#000000" x1="157.0" x2="133.00000000000003" y1="30.308556000000017" y2="30.308556000000017"/> + <line stroke="#000000" x1="157.0" x2="157.0" y1="35.30855600000002" y2="30.308556000000017"/> + <line stroke="#000000" x1="133.00000000000003" x2="113.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/> + <line stroke="#000000" x1="113.00000000000001" x2="133.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="113.00000000000001" x2="113.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/> + <line stroke="#000000" x1="113.00000000000001" x2="89.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/> + <line stroke="#000000" x1="89.00000000000001" x2="113.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="89.00000000000001" x2="89.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/> + <line stroke="#000000" x1="89.00000000000001" x2="69.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/> + <line stroke="#000000" x1="69.00000000000001" x2="89.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="69.00000000000001" x2="69.00000000000001" y1="150.30855600000004" y2="116.30855600000002"/> + <line stroke="#000000" x1="59.00000000000001" x2="69.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="59.00000000000001" x2="59.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/> + <line stroke="#000000" x1="69.00000000000001" x2="59.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="167.00000000000003" x2="228.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/> + <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="150.30855600000004" y2="114.16993400081472"/> + <line stroke="#000000" x1="167.00000000000003" x2="167.00000000000003" y1="114.16993400081472" y2="150.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="228.00000000000003" x2="167.00000000000003" y1="90.16993400081472" y2="90.16993400081472"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="228.00000000000003" x2="228.00000000000003" y1="90.16993400081472" y2="114.16993400081472"/> + <line stroke="#000000" x1="167.00000000000003" x2="167.00000000000003" y1="54.03131200162941" y2="90.16993400081473"/> + <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="90.16993400081473" y2="54.03131200162941"/> + <line stroke="#000000" x1="167.00000000000003" x2="167.00000000000003" y1="44.03131200162941" y2="54.03131200162941"/> + <line stroke="#000000" x1="228.00000000000003" x2="167.00000000000003" y1="44.03131200162941" y2="44.03131200162941"/> + <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="54.03131200162941" y2="44.03131200162941"/> + <line stroke="#000000" x1="238.00000000000003" x2="228.00000000000003" y1="90.16993400081472" y2="90.16993400081472"/> + <line stroke="#000000" x1="238.00000000000003" x2="238.00000000000003" y1="114.16993400081472" y2="90.16993400081472"/> + <line stroke="#000000" x1="228.00000000000003" x2="238.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/> + <line stroke="#000000" x1="157.0" x2="167.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/> + <line stroke="#000000" x1="157.0" x2="157.0" y1="90.16993400081472" y2="114.16993400081472"/> + <line stroke="#000000" x1="167.00000000000003" x2="157.0" y1="90.16993400081472" y2="90.16993400081472"/> + <line stroke="#888888" x1="40.00000000000001" x2="45.0" y1="142.80855600000004" y2="142.80855600000004"/> + <line stroke="#888888" x1="45.0" x2="40.00000000000001" y1="142.80855600000004" y2="147.80855600000004"/> + <line stroke="#888888" x1="40.00000000000001" x2="20.000000000000004" y1="147.80855600000004" y2="147.80855600000004"/> + <line stroke="#888888" x1="20.000000000000004" x2="15.000000000000002" y1="147.80855600000004" y2="142.80855600000004"/> + <line stroke="#888888" x1="15.000000000000002" x2="20.000000000000004" y1="142.80855600000004" y2="142.80855600000004"/> + <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="139.2252226666667" y2="127.39188933333337"/> + <line stroke="#888888" x1="149.25000000000003" x2="149.75" y1="127.39188933333337" y2="127.39188933333337"/> + <line stroke="#888888" x1="149.75" x2="149.75" y1="127.39188933333337" y2="139.2252226666667"/> + <line stroke="#888888" x1="149.75" x2="149.25000000000003" y1="139.2252226666667" y2="139.2252226666667"/> + <line stroke="#888888" x1="149.00000000000003" x2="151.50000000000003" y1="31.558556000000014" y2="31.558556000000014"/> + <line stroke="#888888" x1="151.50000000000003" x2="149.00000000000003" y1="31.558556000000014" y2="34.05855600000001"/> + <line stroke="#888888" x1="149.00000000000003" x2="141.0" y1="34.05855600000001" y2="34.05855600000001"/> + <line stroke="#888888" x1="141.0" x2="138.5" y1="34.05855600000001" y2="31.558556000000014"/> + <line stroke="#888888" x1="138.5" x2="141.0" y1="31.558556000000014" y2="31.558556000000014"/> + <line stroke="#888888" x1="114.00000000000001" x2="118.00000000000001" y1="127.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="118.00000000000001" x2="118.00000000000001" y1="127.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="118.00000000000001" x2="114.00000000000001" y1="139.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="114.00000000000001" x2="114.00000000000001" y1="139.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="126.00000000000001" x2="130.0" y1="128.808556" y2="128.808556"/> + <line stroke="#888888" x1="130.0" x2="130.0" y1="128.808556" y2="137.808556"/> + <line stroke="#888888" x1="130.0" x2="126.00000000000001" y1="137.808556" y2="137.808556"/> + <line stroke="#888888" x1="126.00000000000001" x2="126.00000000000001" y1="137.808556" y2="128.808556"/> + <line stroke="#888888" x1="89.50000000000001" x2="112.50000000000001" y1="127.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="112.50000000000001" x2="112.50000000000001" y1="127.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="112.50000000000001" x2="89.50000000000001" y1="139.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="89.50000000000001" x2="89.50000000000001" y1="139.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="84.0" x2="88.00000000000001" y1="127.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="88.00000000000001" x2="88.00000000000001" y1="127.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="88.00000000000001" x2="84.0" y1="139.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="84.0" x2="84.0" y1="139.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="61.50000000000001" x2="66.50000000000001" y1="127.64188933333337" y2="127.64188933333337"/> + <line stroke="#888888" x1="66.50000000000001" x2="66.50000000000001" y1="127.64188933333337" y2="138.9752226666667"/> + <line stroke="#888888" x1="66.50000000000001" x2="61.50000000000001" y1="138.9752226666667" y2="138.9752226666667"/> + <line stroke="#888888" x1="185.00000000000003" x2="196.00000000000003" y1="95.66993400081472" y2="95.66993400081472"/> + <line stroke="#888888" x1="196.00000000000003" x2="196.00000000000003" y1="95.66993400081472" y2="108.66993400081472"/> + <line stroke="#888888" x1="196.00000000000003" x2="185.00000000000003" y1="108.66993400081472" y2="108.66993400081472"/> + <line stroke="#888888" x1="185.00000000000003" x2="185.00000000000003" y1="108.66993400081472" y2="95.66993400081472"/> + <line stroke="#888888" x1="216.50000000000003" x2="222.50000000000003" y1="97.16993400081472" y2="97.16993400081472"/> + <line stroke="#888888" x1="222.50000000000003" x2="222.50000000000003" y1="97.16993400081472" y2="107.16993400081472"/> + <line stroke="#888888" x1="222.50000000000003" x2="216.50000000000003" y1="107.16993400081472" y2="107.16993400081472"/> + <line stroke="#888888" x1="216.50000000000003" x2="216.50000000000003" y1="107.16993400081472" y2="97.16993400081472"/> + <line stroke="#888888" x1="216.90909090909093" x2="216.90909090909093" y1="46.5313120016294" y2="51.53131200162941"/> + <line stroke="#888888" x1="216.90909090909093" x2="205.81818181818184" y1="51.53131200162941" y2="51.53131200162941"/> + <line stroke="#888888" x1="205.81818181818184" x2="205.81818181818184" y1="51.53131200162941" y2="46.5313120016294"/> + <line stroke="#888888" x1="189.18181818181822" x2="189.18181818181822" y1="46.5313120016294" y2="51.53131200162941"/> + <line stroke="#888888" x1="189.18181818181822" x2="178.09090909090912" y1="51.53131200162941" y2="51.53131200162941"/> + <line stroke="#888888" x1="178.09090909090912" x2="178.09090909090912" y1="51.53131200162941" y2="46.5313120016294"/> + <line stroke="#888888" x1="235.50000000000003" x2="230.50000000000003" y1="106.16993400081472" y2="106.16993400081472"/> + <line stroke="#888888" x1="230.50000000000003" x2="230.50000000000003" y1="106.16993400081472" y2="98.16993400081472"/> + <line stroke="#888888" x1="230.50000000000003" x2="235.50000000000003" y1="98.16993400081472" y2="98.16993400081472"/> + <line stroke="#888888" x1="159.5" x2="164.50000000000003" y1="98.16993400081472" y2="98.16993400081472"/> + <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="98.16993400081472" y2="106.16993400081472"/> + <line stroke="#888888" x1="164.50000000000003" x2="159.5" y1="106.16993400081472" y2="106.16993400081472"/> + <line stroke="#000000" x1="476.00000000000006" x2="476.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="248.00000000000006" x2="476.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="248.00000000000006" x2="248.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="309.0" x2="248.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="319.0" x2="309.0" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="416.00000000000006" x2="343.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="248.00000000000006" x2="248.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="319.0" x2="319.0" y1="116.30855600000002" y2="150.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="343.00000000000006" x2="343.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/> + <line stroke="#000000" x1="319.0" x2="319.0" y1="80.30855600000002" y2="116.30855600000002"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="319.0" x2="343.00000000000006" y1="80.30855600000002" y2="80.30855600000002"/> + <line stroke="#000000" x1="343.00000000000006" x2="343.00000000000006" y1="116.30855600000002" y2="80.30855600000002"/> + <line stroke="#000000" x1="343.00000000000006" x2="343.00000000000006" y1="80.30855600000002" y2="35.30855600000002"/> + <line stroke="#000000" x1="319.0" x2="319.0" y1="35.30855600000002" y2="80.30855600000002"/> + <line stroke="#000000" x1="343.00000000000006" x2="319.0" y1="35.30855600000002" y2="35.30855600000002"/> + <line stroke="#000000" x1="343.00000000000006" x2="363.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="363.00000000000006" x2="343.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="363.00000000000006" x2="363.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/> + <line stroke="#000000" x1="363.00000000000006" x2="387.0" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="387.0" x2="363.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="387.0" x2="387.0" y1="150.30855600000004" y2="116.30855600000002"/> + <line stroke="#000000" x1="387.0" x2="407.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="407.00000000000006" x2="387.0" y1="116.30855600000002" y2="116.30855600000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="407.00000000000006" x2="407.00000000000006" y1="116.30855600000002" y2="150.30855600000004"/> + <line stroke="#000000" x1="417.00000000000006" x2="407.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/> + <line stroke="#000000" x1="417.00000000000006" x2="417.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/> + <line stroke="#000000" x1="407.00000000000006" x2="417.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/> + <line stroke="#000000" x1="476.00000000000006" x2="476.00000000000006" y1="150.30855600000004" y2="88.65427796513858"/> + <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="88.65427796513858" y2="150.30855600000004"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="416.00000000000006" x2="476.00000000000006" y1="88.65427796513858" y2="88.65427796513858"/> + <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="61.65427796513857" y2="88.65427796513858"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="476.00000000000006" x2="416.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="476.00000000000006" x2="476.00000000000006" y1="88.65427796513858" y2="61.65427796513857"/> + <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="-6.972288701945219e-08" y2="61.65427796513857"/> + <line stroke="#000000" x1="476.00000000000006" x2="416.00000000000006" y1="-6.972288701945219e-08" y2="-6.972288701945219e-08"/> + <line stroke="#000000" x1="476.00000000000006" x2="476.00000000000006" y1="61.65427796513857" y2="-6.972288701945219e-08"/> + <line stroke="#000000" x1="476.00000000000006" x2="493.00000000000006" y1="88.65427796513858" y2="88.65427796513858"/> + <line stroke="#000000" x1="493.00000000000006" x2="476.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="493.00000000000006" x2="493.00000000000006" y1="88.65427796513858" y2="61.65427796513857"/> + <line stroke="#000000" x1="493.00000000000006" x2="553.0000000000001" y1="88.65427796513858" y2="88.65427796513858"/> + <line stroke="#000000" x1="553.0000000000001" x2="493.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="553.0000000000001" x2="553.0000000000001" y1="88.65427796513858" y2="61.65427796513857"/> + <line stroke="#000000" x1="553.0000000000001" x2="570.0000000000001" y1="88.65427796513858" y2="88.65427796513858"/> + <line stroke="#000000" x1="570.0000000000001" x2="553.0000000000001" y1="61.65427796513857" y2="61.65427796513857"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="570.0000000000001" x2="570.0000000000001" y1="61.65427796513857" y2="88.65427796513858"/> + <line stroke="#000000" x1="580.0000000000001" x2="570.0000000000001" y1="61.65427796513857" y2="61.65427796513857"/> + <line stroke="#000000" x1="580.0000000000001" x2="580.0000000000001" y1="88.65427796513858" y2="61.65427796513857"/> + <line stroke="#000000" x1="570.0000000000001" x2="580.0000000000001" y1="88.65427796513858" y2="88.65427796513858"/> + <line stroke="#888888" x1="270.43181818181824" x2="258.8409090909091" y1="158.058556" y2="158.058556"/> + <line stroke="#888888" x1="258.8409090909091" x2="258.8409090909091" y1="158.058556" y2="157.55855600000004"/> + <line stroke="#888888" x1="258.8409090909091" x2="270.43181818181824" y1="157.55855600000004" y2="157.55855600000004"/> + <line stroke="#888888" x1="270.43181818181824" x2="270.43181818181824" y1="157.55855600000004" y2="158.058556"/> + <line stroke="#888888" x1="298.159090909091" x2="286.56818181818187" y1="158.058556" y2="158.058556"/> + <line stroke="#888888" x1="286.56818181818187" x2="286.56818181818187" y1="158.058556" y2="157.55855600000004"/> + <line stroke="#888888" x1="286.56818181818187" x2="298.159090909091" y1="157.55855600000004" y2="157.55855600000004"/> + <line stroke="#888888" x1="298.159090909091" x2="298.159090909091" y1="157.55855600000004" y2="158.058556"/> + <line stroke="#888888" x1="326.75000000000006" x2="326.75000000000006" y1="127.39188933333335" y2="139.2252226666667"/> + <line stroke="#888888" x1="326.75000000000006" x2="326.25000000000006" y1="139.2252226666667" y2="139.2252226666667"/> + <line stroke="#888888" x1="326.25000000000006" x2="326.25000000000006" y1="139.2252226666667" y2="127.39188933333335"/> + <line stroke="#888888" x1="326.25000000000006" x2="326.75000000000006" y1="127.39188933333335" y2="127.39188933333335"/> + <line stroke="#888888" x1="335.25000000000006" x2="326.75000000000006" y1="39.30855600000002" y2="39.30855600000002"/> + <line stroke="#888888" x1="326.75000000000006" x2="326.75000000000006" y1="39.30855600000002" y2="38.80855600000002"/> + <line stroke="#888888" x1="326.75000000000006" x2="335.25000000000006" y1="38.80855600000002" y2="38.80855600000002"/> + <line stroke="#888888" x1="335.25000000000006" x2="335.25000000000006" y1="38.80855600000002" y2="39.30855600000002"/> + <line stroke="#888888" x1="362.00000000000006" x2="358.00000000000006" y1="139.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="358.00000000000006" x2="358.00000000000006" y1="139.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="358.00000000000006" x2="362.00000000000006" y1="127.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="362.00000000000006" x2="362.00000000000006" y1="127.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="350.0" x2="346.0" y1="137.808556" y2="137.808556"/> + <line stroke="#888888" x1="346.0" x2="346.0" y1="137.808556" y2="128.808556"/> + <line stroke="#888888" x1="346.0" x2="350.0" y1="128.808556" y2="128.808556"/> + <line stroke="#888888" x1="350.0" x2="350.0" y1="128.808556" y2="137.808556"/> + <line stroke="#888888" x1="386.5" x2="363.5" y1="139.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="363.5" x2="363.5" y1="139.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="363.5" x2="386.5" y1="127.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="386.5" x2="386.5" y1="127.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="392.00000000000006" x2="388.00000000000006" y1="139.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="388.00000000000006" x2="388.00000000000006" y1="139.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="388.00000000000006" x2="392.00000000000006" y1="127.30855600000004" y2="127.30855600000004"/> + <line stroke="#888888" x1="392.00000000000006" x2="392.00000000000006" y1="127.30855600000004" y2="139.30855600000004"/> + <line stroke="#888888" x1="414.50000000000006" x2="409.5" y1="138.9752226666667" y2="138.9752226666667"/> + <line stroke="#888888" x1="409.5" x2="409.5" y1="138.9752226666667" y2="127.64188933333335"/> + <line stroke="#888888" x1="409.5" x2="414.50000000000006" y1="127.64188933333335" y2="127.64188933333335"/> + <line stroke="#888888" x1="475.50000000000006" x2="472.50000000000006" y1="84.15427796513858" y2="84.15427796513858"/> + <line stroke="#888888" x1="472.50000000000006" x2="472.50000000000006" y1="84.15427796513858" y2="66.15427796513858"/> + <line stroke="#888888" x1="472.50000000000006" x2="475.50000000000006" y1="66.15427796513858" y2="66.15427796513858"/> + <line stroke="#888888" x1="475.50000000000006" x2="475.50000000000006" y1="66.15427796513858" y2="84.15427796513858"/> + <line stroke="#888888" x1="423.75000000000006" x2="423.75000000000006" y1="70.40427796513856" y2="79.90427796513858"/> + <line stroke="#888888" x1="423.75000000000006" x2="423.25" y1="79.90427796513858" y2="79.90427796513858"/> + <line stroke="#888888" x1="423.25" x2="423.25" y1="79.90427796513858" y2="70.40427796513856"/> + <line stroke="#888888" x1="423.25" x2="423.75000000000006" y1="70.40427796513856" y2="70.40427796513856"/> + <line stroke="#888888" x1="456.25000000000006" x2="435.75000000000006" y1="7.749999930277114" y2="7.749999930277114"/> + <line stroke="#888888" x1="435.75000000000006" x2="435.75000000000006" y1="7.749999930277114" y2="7.249999930277114"/> + <line stroke="#888888" x1="435.75000000000006" x2="456.25000000000006" y1="7.249999930277114" y2="7.249999930277114"/> + <line stroke="#888888" x1="456.25000000000006" x2="456.25000000000006" y1="7.249999930277114" y2="7.749999930277114"/> + <line stroke="#888888" x1="479.00000000000006" x2="476.00000000000006" y1="84.15427796513858" y2="84.15427796513858"/> + <line stroke="#888888" x1="476.00000000000006" x2="476.00000000000006" y1="84.15427796513858" y2="66.15427796513858"/> + <line stroke="#888888" x1="476.00000000000006" x2="479.00000000000006" y1="66.15427796513858" y2="66.15427796513858"/> + <line stroke="#888888" x1="479.00000000000006" x2="479.00000000000006" y1="66.15427796513858" y2="84.15427796513858"/> + <line stroke="#888888" x1="577.5000000000001" x2="572.5" y1="79.65427796513858" y2="79.65427796513858"/> + <line stroke="#888888" x1="572.5" x2="572.5" y1="79.65427796513858" y2="70.65427796513858"/> + <line stroke="#888888" x1="572.5" x2="577.5000000000001" y1="70.65427796513858" y2="70.65427796513858"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="623.0000000000001" x2="684.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="684.0000000000001" x2="684.0000000000001" y1="138.30855600000004" y2="162.308556"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="684.0000000000001" x2="623.0000000000001" y1="162.308556" y2="162.308556"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="623.0000000000001" x2="623.0000000000001" y1="162.308556" y2="138.30855600000004"/> + <line stroke="#000000" x1="623.0000000000001" x2="623.0000000000001" y1="131.30855600000004" y2="138.30855600000004"/> + <line stroke="#000000" x1="683.0" x2="623.0000000000001" y1="131.30855600000004" y2="131.30855600000004"/> + <line stroke="#000000" x1="683.0" x2="683.0" y1="138.30855600000004" y2="131.30855600000004"/> + <line stroke="#000000" x1="691.0" x2="684.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/> + <line stroke="#000000" x1="691.0" x2="691.0" y1="162.308556" y2="138.30855600000004"/> + <line stroke="#000000" x1="684.0000000000001" x2="691.0" y1="162.308556" y2="162.308556"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="684.0000000000001" x2="684.0000000000001" y1="162.308556" y2="223.30855600000004"/> + <line stroke="#000000" x1="624.0000000000001" x2="684.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="624.0000000000001" x2="624.0000000000001" y1="162.308556" y2="223.30855600000004"/> + <line stroke="#000000" x1="708.0000000000001" x2="684.0000000000001" y1="162.308556" y2="162.308556"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="708.0000000000001" x2="708.0000000000001" y1="162.308556" y2="223.30855600000004"/> + <line stroke="#000000" x1="684.0000000000001" x2="708.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/> + <line stroke="#000000" x1="768.0000000000001" x2="708.0000000000001" y1="162.308556" y2="162.308556"/> + <line stroke="#000000" x1="768.0000000000001" x2="768.0000000000001" y1="223.30855600000004" y2="162.308556"/> + <line stroke="#000000" x1="708.0000000000001" x2="768.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/> + <line stroke="#000000" x1="624.0000000000001" x2="600.0" y1="162.308556" y2="162.308556"/> + <line stroke="#000000" x1="600.0" x2="624.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="600.0" x2="600.0" y1="223.30855600000004" y2="162.308556"/> + <line stroke="#000000" x1="590.0" x2="600.0" y1="223.30855600000004" y2="223.30855600000004"/> + <line stroke="#000000" x1="590.0" x2="590.0" y1="162.308556" y2="223.30855600000004"/> + <line stroke="#000000" x1="600.0" x2="590.0" y1="162.308556" y2="162.308556"/> + <line stroke="#000000" x1="616.0000000000001" x2="623.0000000000001" y1="162.308556" y2="162.308556"/> + <line stroke="#000000" x1="616.0000000000001" x2="616.0000000000001" y1="138.30855600000004" y2="162.308556"/> + <line stroke="#000000" x1="623.0000000000001" x2="616.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/> + <line stroke="#888888" x1="672.0909090909092" x2="675.5909090909091" y1="133.058556" y2="133.058556"/> + <line stroke="#888888" x1="675.5909090909091" x2="672.0909090909092" y1="133.058556" y2="136.55855600000004"/> + <line stroke="#888888" x1="672.0909090909092" x2="661.1818181818181" y1="136.55855600000004" y2="136.55855600000004"/> + <line stroke="#888888" x1="661.1818181818181" x2="657.6818181818184" y1="136.55855600000004" y2="133.058556"/> + <line stroke="#888888" x1="657.6818181818184" x2="661.1818181818181" y1="133.058556" y2="133.058556"/> + <line stroke="#888888" x1="644.818181818182" x2="648.3181818181819" y1="133.058556" y2="133.058556"/> + <line stroke="#888888" x1="648.3181818181819" x2="644.818181818182" y1="133.058556" y2="136.55855600000004"/> + <line stroke="#888888" x1="644.818181818182" x2="633.9090909090909" y1="136.55855600000004" y2="136.55855600000004"/> + <line stroke="#888888" x1="633.9090909090909" x2="630.409090909091" y1="136.55855600000004" y2="133.058556"/> + <line stroke="#888888" x1="630.409090909091" x2="633.9090909090909" y1="133.058556" y2="133.058556"/> + <line stroke="#888888" x1="689.2500000000001" x2="685.75" y1="154.30855600000004" y2="154.30855600000004"/> + <line stroke="#888888" x1="685.75" x2="685.75" y1="154.30855600000004" y2="146.308556"/> + <line stroke="#888888" x1="685.75" x2="689.2500000000001" y1="146.308556" y2="146.308556"/> + <line stroke="#888888" x1="631.5000000000001" x2="631.5000000000001" y1="213.80855600000004" y2="195.80855600000004"/> + <line stroke="#888888" x1="631.5000000000001" x2="666.5000000000001" y1="195.80855600000004" y2="195.80855600000004"/> + <line stroke="#888888" x1="666.5000000000001" x2="666.5000000000001" y1="195.80855600000004" y2="213.80855600000004"/> + <line stroke="#888888" x1="666.5000000000001" x2="631.5000000000001" y1="213.80855600000004" y2="213.80855600000004"/> + <line stroke="#888888" x1="684.5000000000001" x2="684.5000000000001" y1="175.55855600000004" y2="172.55855600000004"/> + <line stroke="#888888" x1="684.5000000000001" x2="687.5000000000001" y1="172.55855600000004" y2="172.55855600000004"/> + <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="172.55855600000004" y2="175.55855600000004"/> + <line stroke="#888888" x1="687.5000000000001" x2="684.5000000000001" y1="175.55855600000004" y2="175.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="174.55855600000004" y2="173.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="173.55855600000004" y2="173.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="173.55855600000004" y2="174.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="174.55855600000004" y2="174.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="177.05855600000004" y2="176.058556"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="176.058556" y2="176.058556"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="176.058556" y2="177.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="177.05855600000004" y2="176.058556"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="176.058556" y2="176.058556"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="176.058556" y2="177.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="179.55855600000004" y2="178.558556"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="178.558556" y2="178.558556"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="178.558556" y2="179.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="179.55855600000004" y2="178.558556"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="178.558556" y2="178.558556"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="178.558556" y2="179.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="182.05855600000004" y2="181.058556"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="181.058556" y2="181.058556"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="181.058556" y2="182.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="182.05855600000004" y2="181.058556"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="181.058556" y2="181.058556"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="181.058556" y2="182.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="192.058556" y2="191.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="191.05855600000004" y2="192.058556"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="192.058556" y2="192.058556"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="192.058556" y2="191.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="191.05855600000004" y2="192.058556"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="192.058556" y2="192.058556"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="194.558556" y2="193.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="193.55855600000004" y2="194.558556"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="194.558556" y2="194.558556"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="194.558556" y2="193.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="193.55855600000004" y2="194.558556"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="194.558556" y2="194.558556"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="202.05855600000004" y2="201.058556"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="201.058556" y2="201.058556"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="201.058556" y2="202.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="202.05855600000004" y2="201.058556"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="201.058556" y2="201.058556"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="201.058556" y2="202.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="204.55855600000004" y2="203.558556"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="203.558556" y2="203.558556"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="203.558556" y2="204.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="204.55855600000004" y2="203.558556"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="203.558556" y2="203.558556"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="203.558556" y2="204.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="212.05855600000004" y2="211.05855600000004"/> + <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="211.05855600000004" y2="211.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="211.05855600000004" y2="212.05855600000004"/> + <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="212.05855600000004" y2="212.05855600000004"/> + <line stroke="#888888" x1="704.5000000000001" x2="704.5000000000001" y1="213.05855600000004" y2="210.05855600000004"/> + <line stroke="#888888" x1="704.5000000000001" x2="707.5000000000001" y1="210.05855600000004" y2="210.05855600000004"/> + <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="210.05855600000004" y2="213.05855600000004"/> + <line stroke="#888888" x1="707.5000000000001" x2="704.5000000000001" y1="213.05855600000004" y2="213.05855600000004"/> + <line stroke="#888888" x1="700.2500000000001" x2="691.7500000000001" y1="170.05855600000004" y2="170.05855600000004"/> + <line stroke="#888888" x1="691.7500000000001" x2="691.7500000000001" y1="170.05855600000004" y2="169.558556"/> + <line stroke="#888888" x1="691.7500000000001" x2="700.2500000000001" y1="169.558556" y2="169.558556"/> + <line stroke="#888888" x1="700.2500000000001" x2="700.2500000000001" y1="169.558556" y2="170.05855600000004"/> + <line stroke="#888888" x1="691.7500000000001" x2="700.2500000000001" y1="217.80855600000004" y2="217.80855600000004"/> + <line stroke="#888888" x1="700.2500000000001" x2="700.2500000000001" y1="217.80855600000004" y2="218.30855600000004"/> + <line stroke="#888888" x1="700.2500000000001" x2="691.7500000000001" y1="218.30855600000004" y2="218.30855600000004"/> + <line stroke="#888888" x1="691.7500000000001" x2="691.7500000000001" y1="218.30855600000004" y2="217.80855600000004"/> + <line stroke="#888888" x1="723.0000000000001" x2="723.0000000000001" y1="213.30855600000004" y2="200.30855600000004"/> + <line stroke="#888888" x1="723.0000000000001" x2="753.0000000000001" y1="200.30855600000004" y2="200.30855600000004"/> + <line stroke="#888888" x1="753.0000000000001" x2="753.0000000000001" y1="200.30855600000004" y2="213.30855600000004"/> + <line stroke="#888888" x1="753.0000000000001" x2="723.0000000000001" y1="213.30855600000004" y2="213.30855600000004"/> + <line stroke="#888888" x1="730.0681818181819" x2="718.659090909091" y1="167.80855600000004" y2="167.80855600000004"/> + <line stroke="#888888" x1="718.659090909091" x2="718.659090909091" y1="167.80855600000004" y2="167.308556"/> + <line stroke="#888888" x1="718.659090909091" x2="730.0681818181819" y1="167.308556" y2="167.308556"/> + <line stroke="#888888" x1="730.0681818181819" x2="730.0681818181819" y1="167.308556" y2="167.80855600000004"/> + <line stroke="#888888" x1="757.3409090909092" x2="745.9318181818182" y1="167.80855600000004" y2="167.80855600000004"/> + <line stroke="#888888" x1="745.9318181818182" x2="745.9318181818182" y1="167.80855600000004" y2="167.308556"/> + <line stroke="#888888" x1="745.9318181818182" x2="757.3409090909092" y1="167.308556" y2="167.308556"/> + <line stroke="#888888" x1="757.3409090909092" x2="757.3409090909092" y1="167.308556" y2="167.80855600000004"/> + <line stroke="#888888" x1="760.25" x2="760.25" y1="184.74037418181823" y2="173.14946509090913"/> + <line stroke="#888888" x1="760.25" x2="760.75" y1="173.14946509090913" y2="173.14946509090913"/> + <line stroke="#888888" x1="760.75" x2="760.75" y1="173.14946509090913" y2="184.74037418181823"/> + <line stroke="#888888" x1="760.75" x2="760.25" y1="184.74037418181823" y2="184.74037418181823"/> + <line stroke="#888888" x1="760.25" x2="760.25" y1="212.46764690909094" y2="200.87673781818185"/> + <line stroke="#888888" x1="760.25" x2="760.75" y1="200.87673781818185" y2="200.87673781818185"/> + <line stroke="#888888" x1="760.75" x2="760.75" y1="200.87673781818185" y2="212.46764690909094"/> + <line stroke="#888888" x1="760.75" x2="760.25" y1="212.46764690909094" y2="212.46764690909094"/> + <line stroke="#888888" x1="600.5" x2="600.5" y1="175.55855600000004" y2="172.55855600000004"/> + <line stroke="#888888" x1="600.5" x2="603.5000000000001" y1="172.55855600000004" y2="172.55855600000004"/> + <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="172.55855600000004" y2="175.55855600000004"/> + <line stroke="#888888" x1="603.5000000000001" x2="600.5" y1="175.55855600000004" y2="175.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="174.55855600000004" y2="173.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="173.55855600000004" y2="173.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="173.55855600000004" y2="174.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="174.55855600000004" y2="174.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="177.05855600000004" y2="176.058556"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="176.058556" y2="176.058556"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="176.058556" y2="177.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="177.05855600000004" y2="177.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="177.05855600000004" y2="176.058556"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="176.058556" y2="176.058556"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="176.058556" y2="177.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="179.55855600000004" y2="178.558556"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="178.558556" y2="178.558556"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="178.558556" y2="179.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="179.55855600000004" y2="179.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="179.55855600000004" y2="178.558556"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="178.558556" y2="178.558556"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="178.558556" y2="179.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="182.05855600000004" y2="181.058556"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="181.058556" y2="181.058556"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="181.058556" y2="182.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="182.05855600000004" y2="182.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="182.05855600000004" y2="181.058556"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="181.058556" y2="181.058556"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="181.058556" y2="182.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="184.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="184.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="187.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="187.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="189.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="189.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="192.058556" y2="191.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="191.05855600000004" y2="192.058556"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="192.058556" y2="192.058556"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="192.058556" y2="191.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="191.05855600000004" y2="192.058556"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="192.058556" y2="192.058556"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="194.558556" y2="193.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="193.55855600000004" y2="194.558556"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="194.558556" y2="194.558556"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="194.558556" y2="193.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="193.55855600000004" y2="194.558556"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="194.558556" y2="194.558556"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="197.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="197.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="199.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="199.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="202.05855600000004" y2="201.058556"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="201.058556" y2="201.058556"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="201.058556" y2="202.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="202.05855600000004" y2="202.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="202.05855600000004" y2="201.058556"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="201.058556" y2="201.058556"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="201.058556" y2="202.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="204.55855600000004" y2="203.558556"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="203.558556" y2="203.558556"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="203.558556" y2="204.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="204.55855600000004" y2="204.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="204.55855600000004" y2="203.558556"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="203.558556" y2="203.558556"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="203.558556" y2="204.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="207.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="207.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="209.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="209.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/> + <line stroke="#888888" x1="601.5" x2="601.5" y1="212.05855600000004" y2="211.05855600000004"/> + <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="211.05855600000004" y2="211.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="211.05855600000004" y2="212.05855600000004"/> + <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="212.05855600000004" y2="212.05855600000004"/> + <line stroke="#888888" x1="620.5000000000001" x2="620.5000000000001" y1="213.05855600000004" y2="210.05855600000004"/> + <line stroke="#888888" x1="620.5000000000001" x2="623.5000000000001" y1="210.05855600000004" y2="210.05855600000004"/> + <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="210.05855600000004" y2="213.05855600000004"/> + <line stroke="#888888" x1="623.5000000000001" x2="620.5000000000001" y1="213.05855600000004" y2="213.05855600000004"/> + <line stroke="#888888" x1="616.2500000000001" x2="607.7500000000001" y1="170.05855600000004" y2="170.05855600000004"/> + <line stroke="#888888" x1="607.7500000000001" x2="607.7500000000001" y1="170.05855600000004" y2="169.558556"/> + <line stroke="#888888" x1="607.7500000000001" x2="616.2500000000001" y1="169.558556" y2="169.558556"/> + <line stroke="#888888" x1="616.2500000000001" x2="616.2500000000001" y1="169.558556" y2="170.05855600000004"/> + <line stroke="#888888" x1="607.7500000000001" x2="616.2500000000001" y1="217.80855600000004" y2="217.80855600000004"/> + <line stroke="#888888" x1="616.2500000000001" x2="616.2500000000001" y1="217.80855600000004" y2="218.30855600000004"/> + <line stroke="#888888" x1="616.2500000000001" x2="607.7500000000001" y1="218.30855600000004" y2="218.30855600000004"/> + <line stroke="#888888" x1="607.7500000000001" x2="607.7500000000001" y1="218.30855600000004" y2="217.80855600000004"/> + <line stroke="#888888" x1="592.5" x2="597.5000000000001" y1="173.39946509090913" y2="173.39946509090913"/> + <line stroke="#888888" x1="597.5000000000001" x2="597.5000000000001" y1="173.39946509090913" y2="184.49037418181823"/> + <line stroke="#888888" x1="597.5000000000001" x2="592.5" y1="184.49037418181823" y2="184.49037418181823"/> + <line stroke="#888888" x1="592.5" x2="597.5000000000001" y1="201.12673781818185" y2="201.12673781818185"/> + <line stroke="#888888" x1="597.5000000000001" x2="597.5000000000001" y1="201.12673781818185" y2="212.21764690909094"/> + <line stroke="#888888" x1="597.5000000000001" x2="592.5" y1="212.21764690909094" y2="212.21764690909094"/> + <line stroke="#888888" x1="617.7500000000001" x2="621.2500000000001" y1="146.308556" y2="146.308556"/> + <line stroke="#888888" x1="621.2500000000001" x2="621.2500000000001" y1="146.308556" y2="154.30855600000004"/> + <line stroke="#888888" x1="621.2500000000001" x2="617.7500000000001" y1="154.30855600000004" y2="154.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="850.733401821533" x2="850.733401821533" y1="100.30855600000002" y2="200.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="800.7334018215329" x2="800.7334018215329" y1="100.30855600000002" y2="200.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="825.733401821533" x2="800.7334018215329" y1="100.30855600000002" y2="100.30855600000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="850.733401821533" x2="825.733401821533" y1="100.30855600000002" y2="100.30855600000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="825.733401821533" x2="800.7334018215329" y1="46.45690792865498" y2="100.30855600000002"/> + <line stroke="#000000" x1="792.2466086902074" x2="786.4900052558701" y1="80.42847270018157" y2="86.2684116177914"/> + <line stroke="#000000" x1="825.733401821533" x2="792.2466086902074" y1="46.456907928654964" y2="80.42847270018157"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="800.7334018215329" x2="786.4900052558701" y1="100.30855600000002" y2="86.2684116177914"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="800.7334018215329" x2="780.733401821533" y1="100.30855600000002" y2="92.10835053540121"/> + <line stroke="#000000" x1="786.4900052558701" x2="780.733401821533" y1="86.2684116177914" y2="92.10835053540121"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="780.733401821533" x2="780.733401821533" y1="100.30855600000002" y2="92.10835053540121"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="800.7334018215329" x2="780.733401821533" y1="100.30855600000002" y2="100.30855600000002"/> + <line stroke="#000000" x1="778.0000000000001" x2="780.733401821533" y1="100.30855600000002" y2="100.30855600000002"/> + <line stroke="#000000" x1="778.0000000000001" x2="778.0000000000001" y1="92.10835053540121" y2="100.30855600000002"/> + <line stroke="#000000" x1="780.733401821533" x2="778.0000000000001" y1="92.10835053540121" y2="92.10835053540121"/> + <line stroke="#000000" x1="780.733401821533" x2="780.733401821533" y1="100.30855600000002" y2="200.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="780.733401821533" x2="800.7334018215329" y1="200.30855600000004" y2="200.30855600000004"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="780.733401821533" x2="800.7334018215329" y1="208.50876146459882" y2="200.30855600000004"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="780.733401821533" x2="780.733401821533" y1="208.50876146459882" y2="200.30855600000004"/> + <line stroke="#000000" x1="780.733401821533" x2="786.4900052558701" y1="208.50876146459882" y2="214.34870038220865"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="786.4900052558701" x2="800.7334018215329" y1="214.34870038220865" y2="200.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="825.733401821533" x2="800.7334018215329" y1="254.16020407134508" y2="200.30855600000004"/> + <line stroke="#000000" x1="792.2466086902074" x2="825.733401821533" y1="220.18863929981848" y2="254.16020407134508"/> + <line stroke="#000000" x1="786.4900052558701" x2="792.2466086902074" y1="214.34870038220865" y2="220.18863929981848"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="800.7334018215329" x2="825.733401821533" y1="200.30855600000004" y2="200.30855600000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="825.733401821533" x2="850.733401821533" y1="200.30855600000004" y2="200.308556"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="825.733401821533" x2="850.733401821533" y1="254.16020407134508" y2="200.308556"/> + <line stroke="#000000" x1="859.2201949528585" x2="864.9767983871958" y1="220.18863929981845" y2="214.34870038220865"/> + <line stroke="#000000" x1="825.733401821533" x2="859.2201949528585" y1="254.16020407134508" y2="220.18863929981845"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="850.733401821533" x2="864.9767983871958" y1="200.30855600000004" y2="214.34870038220865"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="850.733401821533" x2="870.733401821533" y1="200.308556" y2="208.5087614645988"/> + <line stroke="#000000" x1="864.9767983871958" x2="870.733401821533" y1="214.34870038220865" y2="208.5087614645988"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="870.733401821533" x2="870.733401821533" y1="200.308556" y2="208.5087614645988"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="850.733401821533" x2="870.733401821533" y1="200.308556" y2="200.308556"/> + <line stroke="#000000" x1="873.4668036430659" x2="870.733401821533" y1="200.30855599999998" y2="200.30855599999998"/> + <line stroke="#000000" x1="873.4668036430659" x2="873.4668036430659" y1="208.5087614645988" y2="200.30855599999998"/> + <line stroke="#000000" x1="870.733401821533" x2="873.4668036430659" y1="208.5087614645988" y2="208.5087614645988"/> + <line stroke="#000000" x1="870.733401821533" x2="870.733401821533" y1="200.308556" y2="100.30855600000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="870.733401821533" x2="850.733401821533" y1="100.30855600000002" y2="100.30855600000002"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="870.7334018215329" x2="850.733401821533" y1="92.10835053540121" y2="100.30855600000002"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="870.7334018215329" x2="870.7334018215329" y1="92.10835053540121" y2="100.30855600000002"/> + <line stroke="#000000" x1="870.7334018215329" x2="864.9767983871958" y1="92.10835053540121" y2="86.2684116177914"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="864.9767983871958" x2="850.733401821533" y1="86.2684116177914" y2="100.30855600000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="825.7334018215329" x2="850.733401821533" y1="46.45690792865502" y2="100.30855600000004"/> + <line stroke="#000000" x1="859.2201949528585" x2="825.7334018215329" y1="80.42847270018159" y2="46.45690792865502"/> + <line stroke="#000000" x1="864.9767983871958" x2="859.2201949528585" y1="86.26841161779141" y2="80.42847270018159"/> + <line stroke="#000000" x1="873.4668036430659" x2="870.733401821533" y1="92.10835053540121" y2="92.10835053540121"/> + <line stroke="#000000" x1="873.4668036430659" x2="873.4668036430659" y1="100.30855600000002" y2="92.10835053540121"/> + <line stroke="#000000" x1="870.733401821533" x2="873.4668036430659" y1="100.30855600000002" y2="100.30855600000002"/> + <line stroke="#000000" x1="778.0000000000001" x2="780.733401821533" y1="208.50876146459882" y2="208.50876146459882"/> + <line stroke="#000000" x1="778.0000000000001" x2="778.0000000000001" y1="200.30855600000004" y2="208.50876146459882"/> + <line stroke="#000000" x1="780.733401821533" x2="778.0000000000001" y1="200.30855600000004" y2="200.30855600000004"/> + <line stroke="#888888" x1="792.1412698700124" x2="789.8713984490114" y1="83.81172921234263" y2="86.11446043235414"/> + <line stroke="#888888" x1="789.8713984490114" x2="789.5153135348698" y1="86.11446043235414" y2="85.76345682279894"/> + <line stroke="#888888" x1="789.5153135348698" x2="791.7851849558709" y1="85.76345682279894" y2="83.46072560278743"/> + <line stroke="#888888" x1="791.7851849558709" x2="792.1412698700124" y1="83.46072560278743" y2="83.81172921234263"/> + <line stroke="#888888" x1="778.6833504553833" x2="780.0500513661498" y1="94.84175235693415" y2="94.84175235693415"/> + <line stroke="#888888" x1="780.0500513661498" x2="780.0500513661498" y1="94.84175235693415" y2="97.57515417846707"/> + <line stroke="#888888" x1="780.0500513661498" x2="778.6833504553833" y1="97.57515417846707" y2="97.57515417846707"/> + <line stroke="#888888" x1="789.8713984490114" x2="792.1412698700124" y1="214.50265156764593" y2="216.8053827876574"/> + <line stroke="#888888" x1="792.1412698700124" x2="791.7851849558709" y1="216.8053827876574" y2="217.15638639721263"/> + <line stroke="#888888" x1="791.7851849558709" x2="789.5153135348698" y1="217.15638639721263" y2="214.85365517720115"/> + <line stroke="#888888" x1="789.5153135348698" x2="789.8713984490114" y1="214.85365517720115" y2="214.50265156764593"/> + <line stroke="#888888" x1="859.3255337730535" x2="861.5954051940545" y1="216.8053827876574" y2="214.50265156764587"/> + <line stroke="#888888" x1="861.5954051940545" x2="861.951490108196" y1="214.50265156764587" y2="214.8536551772011"/> + <line stroke="#888888" x1="861.951490108196" x2="859.681618687195" y1="214.8536551772011" y2="217.1563863972126"/> + <line stroke="#888888" x1="859.681618687195" x2="859.3255337730535" y1="217.1563863972126" y2="216.8053827876574"/> + <line stroke="#888888" x1="872.7834531876827" x2="871.4167522769161" y1="205.77535964306585" y2="205.77535964306585"/> + <line stroke="#888888" x1="871.4167522769161" x2="871.4167522769161" y1="205.77535964306585" y2="203.04195782153292"/> + <line stroke="#888888" x1="871.4167522769161" x2="872.7834531876827" y1="203.04195782153292" y2="203.04195782153292"/> + <line stroke="#888888" x1="861.5954051940544" x2="859.3255337730535" y1="86.11446043235415" y2="83.81172921234264"/> + <line stroke="#888888" x1="859.3255337730535" x2="859.681618687195" y1="83.81172921234264" y2="83.46072560278743"/> + <line stroke="#888888" x1="859.681618687195" x2="861.951490108196" y1="83.46072560278743" y2="85.76345682279894"/> + <line stroke="#888888" x1="861.951490108196" x2="861.5954051940544" y1="85.76345682279894" y2="86.11446043235415"/> + <line stroke="#888888" x1="872.7834531876827" x2="871.4167522769161" y1="97.57515417846707" y2="97.57515417846707"/> + <line stroke="#888888" x1="871.4167522769161" x2="871.4167522769161" y1="97.57515417846707" y2="94.84175235693415"/> + <line stroke="#888888" x1="871.4167522769161" x2="872.7834531876827" y1="94.84175235693415" y2="94.84175235693415"/> + <line stroke="#888888" x1="778.6833504553833" x2="780.0500513661498" y1="203.04195782153298" y2="203.04195782153298"/> + <line stroke="#888888" x1="780.0500513661498" x2="780.0500513661498" y1="203.04195782153298" y2="205.7753596430659"/> + <line stroke="#888888" x1="780.0500513661498" x2="778.6833504553833" y1="205.7753596430659" y2="205.7753596430659"/> +</svg> diff --git a/rocolib/output/BoatWithServoStackBattery/graph-model.png b/rocolib/output/BoatWithServoStackBattery/graph-model.png new file mode 100644 index 0000000000000000000000000000000000000000..32ae3a27d2a14a5902e81df50fdaf26034f4fc6a Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..58ad33b6514144985063f9baf19b77fc2e1fd804 --- /dev/null +++ b/rocolib/output/BoatWithServoStackBattery/graph-model.stl @@ -0,0 +1,4034 @@ +solid python +facet normal 0 0 0 +outer loop +vertex 0.1680 -0.0617 0.0000 +vertex 0.2280 -0.0617 0.0000 +vertex 0.2280 0.0000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 0.0000 0.0000 +vertex 0.1680 0.0000 0.0000 +vertex 0.1680 -0.0617 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0807 0.0191 +vertex 0.1680 -0.0807 0.0191 +vertex 0.1680 -0.0807 0.0807 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1680 -0.0807 0.0807 +vertex 0.2280 -0.0807 0.0807 +vertex 0.2280 -0.0807 0.0191 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1680 -0.0807 0.0191 +vertex 0.1680 -0.0617 -0.0000 +vertex 0.1680 -0.0737 -0.0120 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1680 -0.0737 -0.0120 +vertex 0.1680 -0.0928 0.0071 +vertex 0.1680 -0.0807 0.0191 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1680 -0.0928 0.0071 +vertex 0.1680 -0.0737 -0.0120 +vertex 0.2280 -0.0737 -0.0120 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0737 -0.0120 +vertex 0.2280 -0.0928 0.0071 +vertex 0.1680 -0.0928 0.0071 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0737 -0.0120 +vertex 0.2280 -0.0670 0.0011 +vertex 0.2280 -0.0797 0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0670 0.0011 +vertex 0.2280 -0.0737 -0.0120 +vertex 0.2280 -0.0617 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0928 0.0071 +vertex 0.2280 -0.0797 0.0138 +vertex 0.2280 -0.0807 0.0191 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0797 0.0138 +vertex 0.2280 -0.0928 0.0071 +vertex 0.2280 -0.0737 -0.0120 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0617 0.0000 +vertex 0.2280 -0.0648 0.0032 +vertex 0.2280 -0.0670 0.0011 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0776 0.0159 +vertex 0.2280 -0.0807 0.0191 +vertex 0.2280 -0.0797 0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0617 0.0000 +vertex 0.2275 -0.0648 0.0032 +vertex 0.2275 -0.0776 0.0159 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2275 -0.0648 0.0032 +vertex 0.2280 -0.0617 0.0000 +vertex 0.2245 -0.0648 0.0032 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0807 0.0191 +vertex 0.2275 -0.0776 0.0159 +vertex 0.2245 -0.0776 0.0159 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2275 -0.0776 0.0159 +vertex 0.2280 -0.0807 0.0191 +vertex 0.2280 -0.0617 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2245 -0.0648 0.0032 +vertex 0.1680 -0.0617 0.0000 +vertex 0.1680 -0.0807 0.0191 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1680 -0.0617 0.0000 +vertex 0.2245 -0.0648 0.0032 +vertex 0.2280 -0.0617 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2245 -0.0776 0.0159 +vertex 0.1680 -0.0807 0.0191 +vertex 0.2280 -0.0807 0.0191 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1680 -0.0807 0.0191 +vertex 0.2245 -0.0776 0.0159 +vertex 0.2245 -0.0648 0.0032 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 -0.0340 0.0000 +vertex 0.1330 -0.0340 0.0000 +vertex 0.1330 -0.0700 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0700 0.0000 +vertex 0.1570 -0.0700 0.0000 +vertex 0.1570 -0.0340 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0340 0.0000 +vertex 0.0710 -0.0340 0.0000 +vertex 0.0710 -0.0700 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 -0.0700 0.0000 +vertex 0.0950 -0.0700 0.0000 +vertex 0.0950 -0.0340 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0700 0.0450 +vertex 0.1570 -0.0700 0.0450 +vertex 0.1570 -0.0700 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 -0.0700 0.0000 +vertex 0.1330 -0.0700 0.0000 +vertex 0.1330 -0.0700 0.0450 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 -0.0340 -0.0000 +vertex 0.1570 -0.0230 -0.0150 +vertex 0.1570 -0.0110 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 -0.0230 -0.0150 +vertex 0.1570 -0.0340 -0.0000 +vertex 0.1570 -0.0340 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 0.0000 -0.0000 +vertex 0.1570 -0.0110 -0.0150 +vertex 0.1570 0.0000 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 -0.0110 -0.0150 +vertex 0.1570 0.0000 -0.0000 +vertex 0.1570 -0.0340 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 -0.0230 -0.0190 +vertex 0.1570 -0.0340 -0.0200 +vertex 0.1570 0.0000 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 -0.0340 -0.0200 +vertex 0.1570 -0.0230 -0.0190 +vertex 0.1570 -0.0230 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 -0.0110 -0.0190 +vertex 0.1570 0.0000 -0.0200 +vertex 0.1570 -0.0110 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 0.0000 -0.0200 +vertex 0.1570 -0.0110 -0.0190 +vertex 0.1570 -0.0230 -0.0190 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 -0.0340 -0.0200 +vertex 0.1565 -0.0230 -0.0200 +vertex 0.1565 -0.0110 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1565 -0.0230 -0.0200 +vertex 0.1570 -0.0340 -0.0200 +vertex 0.1330 -0.0340 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 0.0000 -0.0200 +vertex 0.1565 -0.0110 -0.0200 +vertex 0.1335 -0.0110 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1565 -0.0110 -0.0200 +vertex 0.1570 0.0000 -0.0200 +vertex 0.1570 -0.0340 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1335 -0.0230 -0.0200 +vertex 0.1330 -0.0340 -0.0200 +vertex 0.1330 0.0000 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0340 -0.0200 +vertex 0.1335 -0.0230 -0.0200 +vertex 0.1565 -0.0230 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1335 -0.0110 -0.0200 +vertex 0.1330 0.0000 -0.0200 +vertex 0.1570 0.0000 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 0.0000 -0.0200 +vertex 0.1335 -0.0110 -0.0200 +vertex 0.1335 -0.0230 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0340 -0.0200 +vertex 0.1330 -0.0230 -0.0150 +vertex 0.1330 -0.0230 -0.0190 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0230 -0.0150 +vertex 0.1330 -0.0340 -0.0200 +vertex 0.1330 -0.0340 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0340 -0.0200 +vertex 0.1330 -0.0230 -0.0190 +vertex 0.1330 -0.0110 -0.0190 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 0.0000 -0.0200 +vertex 0.1330 -0.0110 -0.0190 +vertex 0.1330 -0.0110 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0110 -0.0190 +vertex 0.1330 0.0000 -0.0200 +vertex 0.1330 -0.0340 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 0.0000 -0.0200 +vertex 0.1330 -0.0110 -0.0150 +vertex 0.1330 0.0000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0230 -0.0150 +vertex 0.1330 -0.0215 -0.0070 +vertex 0.1330 -0.0110 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0215 -0.0070 +vertex 0.1330 -0.0340 0.0000 +vertex 0.1330 -0.0215 -0.0030 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0340 0.0000 +vertex 0.1330 -0.0215 -0.0070 +vertex 0.1330 -0.0230 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0215 -0.0030 +vertex 0.1330 -0.0340 0.0000 +vertex 0.1330 0.0000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0125 -0.0070 +vertex 0.1330 -0.0125 -0.0030 +vertex 0.1330 0.0000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 0.0000 0.0000 +vertex 0.1330 -0.0125 -0.0030 +vertex 0.1330 -0.0215 -0.0030 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0125 -0.0070 +vertex 0.1330 0.0000 0.0000 +vertex 0.1330 -0.0110 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0215 -0.0070 +vertex 0.1330 -0.0125 -0.0070 +vertex 0.1330 -0.0110 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 0.0000 0.0000 +vertex 0.1330 -0.0340 0.0000 +vertex 0.1570 -0.0340 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 -0.0340 0.0000 +vertex 0.1570 0.0000 0.0000 +vertex 0.1330 0.0000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 0.0000 -0.0000 +vertex 0.0710 -0.0110 -0.0150 +vertex 0.0710 -0.0230 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 -0.0110 -0.0150 +vertex 0.0710 0.0000 -0.0000 +vertex 0.0710 0.0000 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 -0.0340 -0.0000 +vertex 0.0710 -0.0230 -0.0150 +vertex 0.0710 -0.0340 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 -0.0230 -0.0150 +vertex 0.0710 -0.0340 -0.0000 +vertex 0.0710 0.0000 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 -0.0110 -0.0190 +vertex 0.0710 0.0000 -0.0200 +vertex 0.0710 -0.0340 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 0.0000 -0.0200 +vertex 0.0710 -0.0110 -0.0190 +vertex 0.0710 -0.0110 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 -0.0230 -0.0190 +vertex 0.0710 -0.0340 -0.0200 +vertex 0.0710 -0.0230 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 -0.0340 -0.0200 +vertex 0.0710 -0.0230 -0.0190 +vertex 0.0710 -0.0110 -0.0190 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 0.0000 -0.0200 +vertex 0.0715 -0.0110 -0.0200 +vertex 0.0715 -0.0230 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0715 -0.0110 -0.0200 +vertex 0.0710 0.0000 -0.0200 +vertex 0.0950 0.0000 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 -0.0340 -0.0200 +vertex 0.0715 -0.0230 -0.0200 +vertex 0.0945 -0.0230 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0715 -0.0230 -0.0200 +vertex 0.0710 -0.0340 -0.0200 +vertex 0.0710 0.0000 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0945 -0.0110 -0.0200 +vertex 0.0950 0.0000 -0.0200 +vertex 0.0950 -0.0340 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 0.0000 -0.0200 +vertex 0.0945 -0.0110 -0.0200 +vertex 0.0715 -0.0110 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0945 -0.0230 -0.0200 +vertex 0.0950 -0.0340 -0.0200 +vertex 0.0710 -0.0340 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0340 -0.0200 +vertex 0.0945 -0.0230 -0.0200 +vertex 0.0945 -0.0110 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 0.0000 -0.0200 +vertex 0.0950 -0.0110 -0.0150 +vertex 0.0950 -0.0110 -0.0190 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0110 -0.0150 +vertex 0.0950 0.0000 -0.0200 +vertex 0.0950 0.0000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 0.0000 -0.0200 +vertex 0.0950 -0.0110 -0.0190 +vertex 0.0950 -0.0230 -0.0190 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0340 -0.0200 +vertex 0.0950 -0.0230 -0.0190 +vertex 0.0950 -0.0230 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0230 -0.0190 +vertex 0.0950 -0.0340 -0.0200 +vertex 0.0950 0.0000 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0340 -0.0200 +vertex 0.0950 -0.0230 -0.0150 +vertex 0.0950 -0.0340 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0110 -0.0150 +vertex 0.0950 -0.0125 -0.0070 +vertex 0.0950 -0.0230 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0125 -0.0070 +vertex 0.0950 0.0000 0.0000 +vertex 0.0950 -0.0125 -0.0030 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 0.0000 0.0000 +vertex 0.0950 -0.0125 -0.0070 +vertex 0.0950 -0.0110 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0125 -0.0030 +vertex 0.0950 0.0000 0.0000 +vertex 0.0950 -0.0340 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0215 -0.0070 +vertex 0.0950 -0.0215 -0.0030 +vertex 0.0950 -0.0340 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0340 0.0000 +vertex 0.0950 -0.0215 -0.0030 +vertex 0.0950 -0.0125 -0.0030 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0215 -0.0070 +vertex 0.0950 -0.0340 0.0000 +vertex 0.0950 -0.0230 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0125 -0.0070 +vertex 0.0950 -0.0215 -0.0070 +vertex 0.0950 -0.0230 -0.0150 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0340 0.0000 +vertex 0.0950 0.0000 0.0000 +vertex 0.0710 0.0000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 0.0000 0.0000 +vertex 0.0710 -0.0340 0.0000 +vertex 0.0950 -0.0340 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 -0.0700 0.0450 +vertex 0.0950 -0.0700 0.0450 +vertex 0.0950 -0.0700 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0950 -0.0700 0.0000 +vertex 0.0710 -0.0700 0.0000 +vertex 0.0710 -0.0700 0.0450 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 0.0120 0.0000 +vertex -0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 0.0120 0.0000 +vertex -0.0305 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1670 0.0000 0.0000 +vertex 0.1670 -0.0361 0.0000 +vertex 0.2280 -0.0361 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0361 0.0000 +vertex 0.2280 0.0000 0.0000 +vertex 0.1670 0.0000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0531 -0.0531 +vertex 0.2280 -0.0531 -0.0170 +vertex 0.1670 -0.0531 -0.0170 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1670 -0.0531 -0.0170 +vertex 0.1670 -0.0531 -0.0531 +vertex 0.2280 -0.0531 -0.0531 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1670 -0.0531 -0.0170 +vertex 0.1960 -0.0492 -0.0131 +vertex 0.1850 -0.0492 -0.0131 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1960 -0.0492 -0.0131 +vertex 0.1670 -0.0531 -0.0170 +vertex 0.2280 -0.0531 -0.0170 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1670 -0.0531 -0.0170 +vertex 0.1850 -0.0492 -0.0131 +vertex 0.1850 -0.0400 -0.0039 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1670 -0.0361 0.0000 +vertex 0.1850 -0.0400 -0.0039 +vertex 0.1960 -0.0400 -0.0039 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1850 -0.0400 -0.0039 +vertex 0.1670 -0.0361 0.0000 +vertex 0.1670 -0.0531 -0.0170 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1670 -0.0361 0.0000 +vertex 0.1960 -0.0400 -0.0039 +vertex 0.2280 -0.0361 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1960 -0.0492 -0.0131 +vertex 0.2165 -0.0482 -0.0120 +vertex 0.1960 -0.0400 -0.0039 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2165 -0.0482 -0.0120 +vertex 0.2280 -0.0531 -0.0170 +vertex 0.2225 -0.0482 -0.0120 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0531 -0.0170 +vertex 0.2165 -0.0482 -0.0120 +vertex 0.1960 -0.0492 -0.0131 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2225 -0.0482 -0.0120 +vertex 0.2280 -0.0531 -0.0170 +vertex 0.2280 -0.0361 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2165 -0.0411 -0.0049 +vertex 0.2225 -0.0411 -0.0049 +vertex 0.2280 -0.0361 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0361 0.0000 +vertex 0.2225 -0.0411 -0.0049 +vertex 0.2225 -0.0482 -0.0120 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2165 -0.0411 -0.0049 +vertex 0.2280 -0.0361 0.0000 +vertex 0.1960 -0.0400 -0.0039 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2165 -0.0482 -0.0120 +vertex 0.2165 -0.0411 -0.0049 +vertex 0.1960 -0.0400 -0.0039 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0115 -0.0103 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0138 +vertex -0.0295 -0.0105 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0103 +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0085 -0.0103 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0148 +vertex -0.0295 -0.0105 -0.0163 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0163 +vertex -0.0295 -0.0105 -0.0148 +vertex -0.0295 -0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0173 +vertex -0.0295 -0.0105 -0.0187 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0187 +vertex -0.0295 -0.0105 -0.0173 +vertex -0.0295 -0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0163 +vertex -0.0295 -0.0105 -0.0173 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0187 +vertex -0.0295 -0.0105 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0198 +vertex -0.0295 -0.0105 -0.0213 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0213 +vertex -0.0295 -0.0105 -0.0198 +vertex -0.0295 -0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0222 +vertex -0.0295 -0.0105 -0.0238 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0238 +vertex -0.0295 -0.0105 -0.0222 +vertex -0.0295 -0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0213 +vertex -0.0295 -0.0105 -0.0222 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0248 +vertex -0.0295 -0.0105 -0.0262 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0262 +vertex -0.0295 -0.0105 -0.0248 +vertex -0.0295 -0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0272 +vertex -0.0295 -0.0105 -0.0288 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0288 +vertex -0.0295 -0.0105 -0.0272 +vertex -0.0295 -0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0262 +vertex -0.0295 -0.0105 -0.0272 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0238 +vertex -0.0295 -0.0105 -0.0248 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0288 +vertex -0.0295 -0.0105 -0.0298 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0163 +vertex -0.0295 -0.0105 -0.0163 +vertex -0.0295 -0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0148 +vertex -0.0295 -0.0095 -0.0138 +vertex -0.0295 -0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0187 +vertex -0.0295 -0.0105 -0.0187 +vertex -0.0295 -0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0173 +vertex -0.0295 -0.0095 -0.0163 +vertex -0.0295 -0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0148 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 -0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0173 +vertex -0.0295 0.0095 -0.0173 +vertex -0.0295 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 -0.0085 -0.0103 +vertex -0.0295 0.0095 -0.0112 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0213 +vertex -0.0295 -0.0105 -0.0213 +vertex -0.0295 -0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0187 +vertex -0.0295 -0.0095 -0.0198 +vertex -0.0295 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0198 +vertex -0.0295 0.0095 -0.0198 +vertex -0.0295 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0138 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0138 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0238 +vertex -0.0295 -0.0105 -0.0238 +vertex -0.0295 -0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0213 +vertex -0.0295 -0.0095 -0.0222 +vertex -0.0295 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0248 +vertex -0.0295 -0.0095 -0.0262 +vertex -0.0295 -0.0105 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0238 +vertex -0.0295 -0.0095 -0.0222 +vertex -0.0295 0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0248 +vertex -0.0295 -0.0095 -0.0262 +vertex -0.0295 -0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0272 +vertex -0.0295 -0.0095 -0.0288 +vertex -0.0295 -0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0288 +vertex -0.0295 -0.0095 -0.0298 +vertex -0.0295 -0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0272 +vertex -0.0295 -0.0095 -0.0262 +vertex -0.0295 0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0288 +vertex -0.0295 -0.0105 -0.0288 +vertex -0.0295 -0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0248 +vertex -0.0295 -0.0095 -0.0238 +vertex -0.0295 0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0298 +vertex -0.0295 -0.0095 -0.0298 +vertex -0.0295 -0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0298 +vertex -0.0295 0.0095 -0.0298 +vertex -0.0295 -0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 -0.0085 -0.0103 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0298 +vertex -0.0295 -0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0338 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0348 +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0323 +vertex -0.0295 -0.0095 -0.0323 +vertex -0.0295 -0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0348 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0362 +vertex -0.0295 -0.0105 -0.0372 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0387 +vertex -0.0295 -0.0105 -0.0398 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0372 +vertex -0.0295 -0.0095 -0.0372 +vertex -0.0295 -0.0105 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0372 +vertex -0.0295 -0.0105 -0.0387 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0348 +vertex -0.0295 -0.0095 -0.0348 +vertex -0.0295 -0.0105 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0348 +vertex -0.0295 -0.0105 -0.0362 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0413 +vertex -0.0295 -0.0105 -0.0423 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0105 -0.0438 +vertex -0.0295 -0.0105 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0438 +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0105 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0423 +vertex -0.0295 -0.0095 -0.0423 +vertex -0.0295 -0.0105 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0413 +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0105 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0447 +vertex -0.0295 -0.0105 -0.0462 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0462 +vertex -0.0295 -0.0105 -0.0447 +vertex -0.0295 -0.0095 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0473 +vertex -0.0295 -0.0105 -0.0488 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0488 +vertex -0.0295 -0.0105 -0.0473 +vertex -0.0295 -0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0462 +vertex -0.0295 -0.0105 -0.0473 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0105 -0.0488 +vertex -0.0295 -0.0105 -0.0498 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0398 +vertex -0.0295 -0.0095 -0.0398 +vertex -0.0295 -0.0105 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0323 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0338 +vertex -0.0295 -0.0105 -0.0338 +vertex -0.0295 -0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0312 +vertex -0.0295 -0.0095 -0.0323 +vertex -0.0295 -0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0362 +vertex -0.0295 -0.0105 -0.0362 +vertex -0.0295 -0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0338 +vertex -0.0295 -0.0095 -0.0348 +vertex -0.0295 -0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0338 +vertex -0.0295 -0.0095 -0.0323 +vertex -0.0295 0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0387 +vertex -0.0295 -0.0105 -0.0387 +vertex -0.0295 -0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0362 +vertex -0.0295 -0.0095 -0.0372 +vertex -0.0295 -0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0413 +vertex -0.0295 -0.0105 -0.0413 +vertex -0.0295 -0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0387 +vertex -0.0295 -0.0095 -0.0398 +vertex -0.0295 -0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0387 +vertex -0.0295 -0.0095 -0.0372 +vertex -0.0295 0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0362 +vertex -0.0295 -0.0095 -0.0348 +vertex -0.0295 0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 -0.0105 -0.0438 +vertex -0.0295 -0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0413 +vertex -0.0295 -0.0095 -0.0423 +vertex -0.0295 -0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0447 +vertex -0.0295 -0.0095 -0.0462 +vertex -0.0295 -0.0105 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 -0.0095 -0.0423 +vertex -0.0295 0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 -0.0095 -0.0462 +vertex -0.0295 -0.0095 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 -0.0095 -0.0488 +vertex -0.0295 -0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 -0.0095 -0.0498 +vertex -0.0295 -0.0095 -0.0488 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0473 +vertex -0.0295 -0.0095 -0.0462 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0488 +vertex -0.0295 -0.0105 -0.0488 +vertex -0.0295 -0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0447 +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0498 +vertex -0.0295 -0.0095 -0.0498 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0413 +vertex -0.0295 -0.0095 -0.0398 +vertex -0.0295 0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0312 +vertex -0.0295 -0.0105 -0.0298 +vertex -0.0295 -0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0095 -0.0498 +vertex -0.0295 0.0085 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0173 +vertex -0.0295 -0.0095 -0.0173 +vertex -0.0295 -0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0138 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0123 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0163 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0123 +vertex -0.0295 0.0105 -0.0123 +vertex -0.0295 0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0148 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0187 +vertex -0.0295 -0.0095 -0.0187 +vertex -0.0295 0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0213 +vertex -0.0295 -0.0095 -0.0213 +vertex -0.0295 0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0173 +vertex -0.0295 0.0105 -0.0173 +vertex -0.0295 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0198 +vertex -0.0295 -0.0095 -0.0198 +vertex -0.0295 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0148 +vertex -0.0295 0.0105 -0.0148 +vertex -0.0295 0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0173 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0238 +vertex -0.0295 -0.0095 -0.0238 +vertex -0.0295 0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0262 +vertex -0.0295 -0.0095 -0.0262 +vertex -0.0295 0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0222 +vertex -0.0295 0.0105 -0.0222 +vertex -0.0295 0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0248 +vertex -0.0295 -0.0095 -0.0248 +vertex -0.0295 0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0288 +vertex -0.0295 -0.0095 -0.0288 +vertex -0.0295 0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0312 +vertex -0.0295 -0.0095 -0.0312 +vertex -0.0295 0.0095 -0.0298 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0272 +vertex -0.0295 0.0105 -0.0272 +vertex -0.0295 0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0298 +vertex -0.0295 -0.0095 -0.0298 +vertex -0.0295 0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0248 +vertex -0.0295 0.0105 -0.0248 +vertex -0.0295 0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0272 +vertex -0.0295 -0.0095 -0.0272 +vertex -0.0295 0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0198 +vertex -0.0295 0.0105 -0.0198 +vertex -0.0295 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0222 +vertex -0.0295 -0.0095 -0.0222 +vertex -0.0295 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0123 +vertex -0.0295 0.0105 -0.0112 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0148 +vertex -0.0295 0.0105 -0.0138 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0123 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0123 +vertex -0.0295 0.0105 -0.0138 +vertex -0.0295 0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0163 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0163 +vertex -0.0295 0.0105 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0173 +vertex -0.0295 0.0105 -0.0187 +vertex -0.0295 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0187 +vertex -0.0295 0.0105 -0.0173 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0198 +vertex -0.0295 0.0105 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0112 +vertex -0.0295 0.0095 -0.0112 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0148 +vertex -0.0295 0.0105 -0.0163 +vertex -0.0295 0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0198 +vertex -0.0295 0.0105 -0.0213 +vertex -0.0295 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0213 +vertex -0.0295 0.0105 -0.0198 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0222 +vertex -0.0295 0.0105 -0.0238 +vertex -0.0295 0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0238 +vertex -0.0295 0.0105 -0.0222 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0213 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0248 +vertex -0.0295 0.0105 -0.0262 +vertex -0.0295 0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0262 +vertex -0.0295 0.0105 -0.0248 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0272 +vertex -0.0295 0.0105 -0.0288 +vertex -0.0295 0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0288 +vertex -0.0295 0.0105 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0298 +vertex -0.0295 0.0105 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0272 +vertex -0.0295 0.0105 -0.0262 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0238 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0112 +vertex -0.0295 -0.0085 -0.0103 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0298 +vertex -0.0295 0.0105 -0.0298 +vertex -0.0295 0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0338 +vertex -0.0295 -0.0095 -0.0338 +vertex -0.0295 0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0362 +vertex -0.0295 -0.0095 -0.0362 +vertex -0.0295 0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0323 +vertex -0.0295 0.0105 -0.0323 +vertex -0.0295 0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0348 +vertex -0.0295 -0.0095 -0.0348 +vertex -0.0295 0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0387 +vertex -0.0295 -0.0095 -0.0387 +vertex -0.0295 0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0413 +vertex -0.0295 -0.0095 -0.0413 +vertex -0.0295 0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0372 +vertex -0.0295 0.0105 -0.0372 +vertex -0.0295 0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0398 +vertex -0.0295 -0.0095 -0.0398 +vertex -0.0295 0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0348 +vertex -0.0295 0.0105 -0.0348 +vertex -0.0295 0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0372 +vertex -0.0295 -0.0095 -0.0372 +vertex -0.0295 0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0438 +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 0.0085 -0.0508 +vertex -0.0295 -0.0095 -0.0498 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 0.0095 -0.0438 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0423 +vertex -0.0295 0.0095 -0.0413 +vertex -0.0295 0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0438 +vertex -0.0295 0.0095 -0.0447 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0462 +vertex -0.0295 0.0095 -0.0473 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0447 +vertex -0.0295 0.0105 -0.0447 +vertex -0.0295 0.0095 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0447 +vertex -0.0295 0.0095 -0.0462 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0423 +vertex -0.0295 0.0105 -0.0423 +vertex -0.0295 0.0095 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0473 +vertex -0.0295 0.0105 -0.0473 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0398 +vertex -0.0295 0.0105 -0.0398 +vertex -0.0295 0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0323 +vertex -0.0295 0.0095 -0.0312 +vertex -0.0295 0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0323 +vertex -0.0295 0.0105 -0.0312 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0348 +vertex -0.0295 0.0105 -0.0338 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0323 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0323 +vertex -0.0295 0.0105 -0.0338 +vertex -0.0295 0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0372 +vertex -0.0295 0.0105 -0.0362 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0398 +vertex -0.0295 0.0105 -0.0387 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0372 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0372 +vertex -0.0295 0.0105 -0.0387 +vertex -0.0295 0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0348 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0348 +vertex -0.0295 0.0105 -0.0362 +vertex -0.0295 0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0423 +vertex -0.0295 0.0105 -0.0413 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0447 +vertex -0.0295 0.0105 -0.0438 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0423 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0423 +vertex -0.0295 0.0105 -0.0438 +vertex -0.0295 0.0095 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0473 +vertex -0.0295 0.0105 -0.0462 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0120 -0.0610 +vertex -0.0295 0.0115 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 -0.0610 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 -0.0610 +vertex -0.0295 0.0085 -0.0508 +vertex -0.0295 0.0115 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0462 +vertex -0.0295 0.0105 -0.0447 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0413 +vertex -0.0295 0.0105 -0.0398 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0447 +vertex -0.0295 0.0105 -0.0462 +vertex -0.0295 0.0095 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0312 +vertex -0.0295 0.0105 -0.0298 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0398 +vertex -0.0295 0.0105 -0.0413 +vertex -0.0295 0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0312 +vertex -0.0295 0.0095 -0.0298 +vertex -0.0295 0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0508 +vertex -0.0295 0.0120 -0.0610 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0123 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0112 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 0.0000 +vertex -0.0220 0.0120 -0.0335 +vertex -0.0295 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0220 0.0120 -0.0335 +vertex -0.0295 0.0120 0.0000 +vertex 0.0130 0.0120 -0.0335 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 -0.0610 +vertex -0.0220 0.0120 -0.0515 +vertex 0.0130 0.0120 -0.0515 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0220 0.0120 -0.0515 +vertex -0.0295 0.0120 -0.0610 +vertex -0.0220 0.0120 -0.0335 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0130 0.0120 -0.0335 +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 0.0000 +vertex 0.0130 0.0120 -0.0335 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0130 0.0120 -0.0515 +vertex 0.0305 0.0120 -0.0610 +vertex -0.0295 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0610 +vertex 0.0130 0.0120 -0.0515 +vertex 0.0130 0.0120 -0.0335 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 0.0115 -0.0103 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0138 +vertex 0.0305 0.0105 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0103 +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 0.0085 -0.0103 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0148 +vertex 0.0305 0.0105 -0.0163 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0163 +vertex 0.0305 0.0105 -0.0148 +vertex 0.0305 0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0173 +vertex 0.0305 0.0105 -0.0187 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0187 +vertex 0.0305 0.0105 -0.0173 +vertex 0.0305 0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0163 +vertex 0.0305 0.0105 -0.0173 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0187 +vertex 0.0305 0.0105 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0198 +vertex 0.0305 0.0105 -0.0213 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0213 +vertex 0.0305 0.0105 -0.0198 +vertex 0.0305 0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0222 +vertex 0.0305 0.0105 -0.0238 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0238 +vertex 0.0305 0.0105 -0.0222 +vertex 0.0305 0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0213 +vertex 0.0305 0.0105 -0.0222 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0248 +vertex 0.0305 0.0105 -0.0262 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0262 +vertex 0.0305 0.0105 -0.0248 +vertex 0.0305 0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0272 +vertex 0.0305 0.0105 -0.0288 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0288 +vertex 0.0305 0.0105 -0.0272 +vertex 0.0305 0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0262 +vertex 0.0305 0.0105 -0.0272 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0238 +vertex 0.0305 0.0105 -0.0248 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0288 +vertex 0.0305 0.0105 -0.0298 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0163 +vertex 0.0305 0.0105 -0.0163 +vertex 0.0305 0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0148 +vertex 0.0305 0.0095 -0.0138 +vertex 0.0305 0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0187 +vertex 0.0305 0.0105 -0.0187 +vertex 0.0305 0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0173 +vertex 0.0305 0.0095 -0.0163 +vertex 0.0305 0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0148 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0173 +vertex 0.0305 -0.0095 -0.0173 +vertex 0.0305 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 0.0085 -0.0103 +vertex 0.0305 -0.0095 -0.0112 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0213 +vertex 0.0305 0.0105 -0.0213 +vertex 0.0305 0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0187 +vertex 0.0305 0.0095 -0.0198 +vertex 0.0305 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0198 +vertex 0.0305 -0.0095 -0.0198 +vertex 0.0305 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0138 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0138 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0238 +vertex 0.0305 0.0105 -0.0238 +vertex 0.0305 0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0213 +vertex 0.0305 0.0095 -0.0222 +vertex 0.0305 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0248 +vertex 0.0305 0.0095 -0.0262 +vertex 0.0305 0.0105 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0238 +vertex 0.0305 0.0095 -0.0222 +vertex 0.0305 -0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0248 +vertex 0.0305 0.0095 -0.0262 +vertex 0.0305 0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0272 +vertex 0.0305 0.0095 -0.0288 +vertex 0.0305 0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0288 +vertex 0.0305 0.0095 -0.0298 +vertex 0.0305 0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0272 +vertex 0.0305 0.0095 -0.0262 +vertex 0.0305 -0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0288 +vertex 0.0305 0.0105 -0.0288 +vertex 0.0305 0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0248 +vertex 0.0305 0.0095 -0.0238 +vertex 0.0305 -0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0298 +vertex 0.0305 0.0095 -0.0298 +vertex 0.0305 0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0298 +vertex 0.0305 -0.0095 -0.0298 +vertex 0.0305 0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 0.0085 -0.0103 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0298 +vertex 0.0305 0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0338 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0348 +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0323 +vertex 0.0305 0.0095 -0.0323 +vertex 0.0305 0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0348 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0362 +vertex 0.0305 0.0105 -0.0372 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0387 +vertex 0.0305 0.0105 -0.0398 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0372 +vertex 0.0305 0.0095 -0.0372 +vertex 0.0305 0.0105 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0372 +vertex 0.0305 0.0105 -0.0387 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0348 +vertex 0.0305 0.0095 -0.0348 +vertex 0.0305 0.0105 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0348 +vertex 0.0305 0.0105 -0.0362 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0413 +vertex 0.0305 0.0105 -0.0423 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0105 -0.0438 +vertex 0.0305 0.0105 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0438 +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0105 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0423 +vertex 0.0305 0.0095 -0.0423 +vertex 0.0305 0.0105 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0413 +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0105 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0447 +vertex 0.0305 0.0105 -0.0462 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0462 +vertex 0.0305 0.0105 -0.0447 +vertex 0.0305 0.0095 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0473 +vertex 0.0305 0.0105 -0.0488 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0488 +vertex 0.0305 0.0105 -0.0473 +vertex 0.0305 0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0462 +vertex 0.0305 0.0105 -0.0473 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0105 -0.0488 +vertex 0.0305 0.0105 -0.0498 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0398 +vertex 0.0305 0.0095 -0.0398 +vertex 0.0305 0.0105 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0323 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0338 +vertex 0.0305 0.0105 -0.0338 +vertex 0.0305 0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0312 +vertex 0.0305 0.0095 -0.0323 +vertex 0.0305 0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0362 +vertex 0.0305 0.0105 -0.0362 +vertex 0.0305 0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0338 +vertex 0.0305 0.0095 -0.0348 +vertex 0.0305 0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0338 +vertex 0.0305 0.0095 -0.0323 +vertex 0.0305 -0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0387 +vertex 0.0305 0.0105 -0.0387 +vertex 0.0305 0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0362 +vertex 0.0305 0.0095 -0.0372 +vertex 0.0305 0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0413 +vertex 0.0305 0.0105 -0.0413 +vertex 0.0305 0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0387 +vertex 0.0305 0.0095 -0.0398 +vertex 0.0305 0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0387 +vertex 0.0305 0.0095 -0.0372 +vertex 0.0305 -0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0362 +vertex 0.0305 0.0095 -0.0348 +vertex 0.0305 -0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 0.0105 -0.0438 +vertex 0.0305 0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0413 +vertex 0.0305 0.0095 -0.0423 +vertex 0.0305 0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0447 +vertex 0.0305 0.0095 -0.0462 +vertex 0.0305 0.0105 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 0.0095 -0.0423 +vertex 0.0305 -0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 0.0095 -0.0462 +vertex 0.0305 0.0095 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 0.0095 -0.0488 +vertex 0.0305 0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 0.0095 -0.0498 +vertex 0.0305 0.0095 -0.0488 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0473 +vertex 0.0305 0.0095 -0.0462 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0488 +vertex 0.0305 0.0105 -0.0488 +vertex 0.0305 0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0447 +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0498 +vertex 0.0305 0.0095 -0.0498 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0413 +vertex 0.0305 0.0095 -0.0398 +vertex 0.0305 -0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0312 +vertex 0.0305 0.0105 -0.0298 +vertex 0.0305 0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0095 -0.0498 +vertex 0.0305 -0.0085 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0173 +vertex 0.0305 0.0095 -0.0173 +vertex 0.0305 0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0138 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0123 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0163 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0123 +vertex 0.0305 -0.0105 -0.0123 +vertex 0.0305 -0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0148 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0187 +vertex 0.0305 0.0095 -0.0187 +vertex 0.0305 -0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0213 +vertex 0.0305 0.0095 -0.0213 +vertex 0.0305 -0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0173 +vertex 0.0305 -0.0105 -0.0173 +vertex 0.0305 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0198 +vertex 0.0305 0.0095 -0.0198 +vertex 0.0305 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0148 +vertex 0.0305 -0.0105 -0.0148 +vertex 0.0305 -0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0173 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0238 +vertex 0.0305 0.0095 -0.0238 +vertex 0.0305 -0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0262 +vertex 0.0305 0.0095 -0.0262 +vertex 0.0305 -0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0222 +vertex 0.0305 -0.0105 -0.0222 +vertex 0.0305 -0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0248 +vertex 0.0305 0.0095 -0.0248 +vertex 0.0305 -0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0288 +vertex 0.0305 0.0095 -0.0288 +vertex 0.0305 -0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0312 +vertex 0.0305 0.0095 -0.0312 +vertex 0.0305 -0.0095 -0.0298 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0272 +vertex 0.0305 -0.0105 -0.0272 +vertex 0.0305 -0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0298 +vertex 0.0305 0.0095 -0.0298 +vertex 0.0305 -0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0248 +vertex 0.0305 -0.0105 -0.0248 +vertex 0.0305 -0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0272 +vertex 0.0305 0.0095 -0.0272 +vertex 0.0305 -0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0198 +vertex 0.0305 -0.0105 -0.0198 +vertex 0.0305 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0222 +vertex 0.0305 0.0095 -0.0222 +vertex 0.0305 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0123 +vertex 0.0305 -0.0105 -0.0112 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0148 +vertex 0.0305 -0.0105 -0.0138 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0123 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0123 +vertex 0.0305 -0.0105 -0.0138 +vertex 0.0305 -0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0163 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0163 +vertex 0.0305 -0.0105 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0173 +vertex 0.0305 -0.0105 -0.0187 +vertex 0.0305 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0187 +vertex 0.0305 -0.0105 -0.0173 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0198 +vertex 0.0305 -0.0105 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0112 +vertex 0.0305 -0.0095 -0.0112 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0148 +vertex 0.0305 -0.0105 -0.0163 +vertex 0.0305 -0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0198 +vertex 0.0305 -0.0105 -0.0213 +vertex 0.0305 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0213 +vertex 0.0305 -0.0105 -0.0198 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0222 +vertex 0.0305 -0.0105 -0.0238 +vertex 0.0305 -0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0238 +vertex 0.0305 -0.0105 -0.0222 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0213 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0248 +vertex 0.0305 -0.0105 -0.0262 +vertex 0.0305 -0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0262 +vertex 0.0305 -0.0105 -0.0248 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0272 +vertex 0.0305 -0.0105 -0.0288 +vertex 0.0305 -0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0288 +vertex 0.0305 -0.0105 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0298 +vertex 0.0305 -0.0105 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0272 +vertex 0.0305 -0.0105 -0.0262 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0238 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0112 +vertex 0.0305 0.0085 -0.0103 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0298 +vertex 0.0305 -0.0105 -0.0298 +vertex 0.0305 -0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0338 +vertex 0.0305 0.0095 -0.0338 +vertex 0.0305 -0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0362 +vertex 0.0305 0.0095 -0.0362 +vertex 0.0305 -0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0323 +vertex 0.0305 -0.0105 -0.0323 +vertex 0.0305 -0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0348 +vertex 0.0305 0.0095 -0.0348 +vertex 0.0305 -0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0387 +vertex 0.0305 0.0095 -0.0387 +vertex 0.0305 -0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0413 +vertex 0.0305 0.0095 -0.0413 +vertex 0.0305 -0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0372 +vertex 0.0305 -0.0105 -0.0372 +vertex 0.0305 -0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0398 +vertex 0.0305 0.0095 -0.0398 +vertex 0.0305 -0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0348 +vertex 0.0305 -0.0105 -0.0348 +vertex 0.0305 -0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0372 +vertex 0.0305 0.0095 -0.0372 +vertex 0.0305 -0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0438 +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 -0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 -0.0085 -0.0508 +vertex 0.0305 0.0095 -0.0498 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 -0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 -0.0095 -0.0438 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0423 +vertex 0.0305 -0.0095 -0.0413 +vertex 0.0305 -0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0438 +vertex 0.0305 -0.0095 -0.0447 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0462 +vertex 0.0305 -0.0095 -0.0473 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0447 +vertex 0.0305 -0.0105 -0.0447 +vertex 0.0305 -0.0095 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0447 +vertex 0.0305 -0.0095 -0.0462 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0423 +vertex 0.0305 -0.0105 -0.0423 +vertex 0.0305 -0.0095 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0473 +vertex 0.0305 -0.0105 -0.0473 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0398 +vertex 0.0305 -0.0105 -0.0398 +vertex 0.0305 -0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0323 +vertex 0.0305 -0.0095 -0.0312 +vertex 0.0305 -0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0323 +vertex 0.0305 -0.0105 -0.0312 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0348 +vertex 0.0305 -0.0105 -0.0338 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0323 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0323 +vertex 0.0305 -0.0105 -0.0338 +vertex 0.0305 -0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0372 +vertex 0.0305 -0.0105 -0.0362 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0398 +vertex 0.0305 -0.0105 -0.0387 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0372 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0372 +vertex 0.0305 -0.0105 -0.0387 +vertex 0.0305 -0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0348 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0348 +vertex 0.0305 -0.0105 -0.0362 +vertex 0.0305 -0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0423 +vertex 0.0305 -0.0105 -0.0413 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0447 +vertex 0.0305 -0.0105 -0.0438 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0423 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0423 +vertex 0.0305 -0.0105 -0.0438 +vertex 0.0305 -0.0095 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0473 +vertex 0.0305 -0.0105 -0.0462 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0305 -0.0115 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0305 -0.0085 -0.0508 +vertex 0.0305 -0.0115 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0462 +vertex 0.0305 -0.0105 -0.0447 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0413 +vertex 0.0305 -0.0105 -0.0398 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0447 +vertex 0.0305 -0.0105 -0.0462 +vertex 0.0305 -0.0095 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0312 +vertex 0.0305 -0.0105 -0.0298 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0398 +vertex 0.0305 -0.0105 -0.0413 +vertex 0.0305 -0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0312 +vertex 0.0305 -0.0095 -0.0298 +vertex 0.0305 -0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0508 +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0123 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0112 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0155 -0.0120 -0.0380 +vertex 0.0305 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0155 -0.0120 -0.0380 +vertex 0.0305 -0.0120 0.0000 +vertex -0.0295 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0155 -0.0120 -0.0510 +vertex -0.0145 -0.0120 -0.0510 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0155 -0.0120 -0.0510 +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0155 -0.0120 -0.0380 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0145 -0.0120 -0.0380 +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 0.0000 +vertex -0.0145 -0.0120 -0.0380 +vertex 0.0155 -0.0120 -0.0380 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0145 -0.0120 -0.0510 +vertex -0.0295 -0.0120 -0.0610 +vertex 0.0305 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0145 -0.0120 -0.0510 +vertex -0.0145 -0.0120 -0.0380 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 0.0000 +vertex -0.0250 -0.0500 0.0000 +vertex 0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 0.0000 +vertex 0.0250 0.0500 0.0000 +vertex -0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 -0.0200 +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 0.0000 +vertex -0.0250 0.0500 0.0000 +vertex -0.0250 0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 0.0000 +vertex 0.0250 -0.0500 0.0000 +vertex 0.0250 -0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0250 0.0500 -0.0200 +vertex 0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 0.0000 +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0213 -0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0213 -0.0573 -0.0200 +vertex 0.0000 -0.1000 -0.0200 +vertex -0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0000 -0.0500 0.0000 +vertex -0.0250 -0.0500 0.0000 +vertex -0.0000 -0.1000 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0000 -0.0500 0.0000 +vertex 0.0000 -0.1000 -0.0200 +vertex 0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0213 -0.0573 -0.0200 +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 0.0000 +vertex 0.0000 -0.1000 -0.0200 +vertex 0.0213 -0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0250 -0.0500 0.0000 +vertex -0.0213 -0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0213 -0.0573 -0.0200 +vertex -0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0213 -0.0573 -0.0200 +vertex 0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0250 -0.0500 0.0000 +vertex 0.0213 -0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 0.0000 +vertex 0.0250 0.0500 -0.0200 +vertex 0.0213 0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0213 0.0573 -0.0200 +vertex -0.0000 0.1000 -0.0200 +vertex 0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0000 0.0500 0.0000 +vertex 0.0250 0.0500 0.0000 +vertex -0.0000 0.1000 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0000 0.0500 0.0000 +vertex -0.0000 0.1000 -0.0200 +vertex -0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0213 0.0573 -0.0200 +vertex -0.0250 0.0500 -0.0200 +vertex -0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 0.0000 +vertex -0.0000 0.1000 -0.0200 +vertex -0.0213 0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 -0.0200 +vertex 0.0250 0.0500 0.0000 +vertex 0.0213 0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 -0.0200 +vertex 0.0213 0.0573 -0.0200 +vertex 0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 -0.0200 +vertex -0.0213 0.0573 -0.0200 +vertex -0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 -0.0200 +vertex -0.0250 0.0500 0.0000 +vertex -0.0213 0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0600 -0.0100 0.0000 +vertex 0.0600 0.0000 0.0000 +vertex 0.0000 0.0000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0000 0.0000 0.0000 +vertex 0.0000 -0.0100 0.0000 +vertex 0.0600 -0.0100 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1780 -0.0617 -0.0000 +vertex 0.1680 -0.0617 -0.0000 +vertex 0.1680 -0.0807 0.0191 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1680 -0.0807 0.0191 +vertex 0.1780 -0.0807 0.0191 +vertex 0.1780 -0.0617 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1470 -0.0340 -0.0000 +vertex 0.1570 -0.0340 -0.0000 +vertex 0.1570 0.0000 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 0.0000 -0.0000 +vertex 0.1470 0.0000 -0.0000 +vertex 0.1470 -0.0340 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0810 0.0000 -0.0000 +vertex 0.0710 0.0000 -0.0000 +vertex 0.0710 -0.0340 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0710 -0.0340 -0.0000 +vertex 0.0810 -0.0340 -0.0000 +vertex 0.0810 0.0000 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 -0.0700 0.0500 +vertex 0.1570 -0.0700 0.0450 +vertex 0.1330 -0.0700 0.0450 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1330 -0.0700 0.0450 +vertex 0.1330 -0.0700 0.0500 +vertex 0.1570 -0.0700 0.0500 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1570 -0.0531 -0.0170 +vertex 0.1670 -0.0531 -0.0170 +vertex 0.1670 -0.0361 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1670 -0.0361 0.0000 +vertex 0.1570 -0.0361 0.0000 +vertex 0.1570 -0.0531 -0.0170 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0070 +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0120 -0.0070 +vertex 0.0305 0.0120 -0.0070 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0291 -0.0071 +vertex 0.2280 -0.0361 0.0000 +vertex 0.2280 -0.0531 -0.0170 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0531 -0.0170 +vertex 0.2280 -0.0460 -0.0240 +vertex 0.2280 -0.0291 -0.0071 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 -0.0120 -0.0070 +vertex -0.0305 -0.0120 0.0000 +vertex -0.0305 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 0.0120 0.0000 +vertex -0.0305 0.0120 -0.0070 +vertex -0.0305 -0.0120 -0.0070 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0295 -0.0120 -0.0070 +vertex 0.0295 -0.0120 0.0000 +vertex -0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 -0.0120 0.0000 +vertex -0.0305 -0.0120 -0.0070 +vertex 0.0295 -0.0120 -0.0070 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0195 -0.0120 -0.0000 +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0195 -0.0120 -0.0610 +vertex -0.0195 -0.0120 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.2280 -0.0531 -0.0631 +vertex 0.2280 -0.0531 -0.0531 +vertex 0.1670 -0.0531 -0.0531 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1670 -0.0531 -0.0531 +vertex 0.1670 -0.0531 -0.0631 +vertex 0.2280 -0.0531 -0.0631 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0216 -0.0575 -0.0173 +vertex -0.0213 -0.0573 -0.0200 +vertex -0.0250 -0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0253 -0.0501 -0.0173 +vertex -0.0216 -0.0575 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0253 -0.0501 -0.0173 +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0213 -0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0213 -0.0573 -0.0200 +vertex 0.0216 -0.0575 -0.0173 +vertex 0.0253 -0.0501 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0216 0.0575 -0.0173 +vertex 0.0213 0.0573 -0.0200 +vertex 0.0250 0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 -0.0200 +vertex 0.0253 0.0501 -0.0173 +vertex 0.0216 0.0575 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0253 0.0501 -0.0173 +vertex -0.0250 0.0500 -0.0200 +vertex -0.0213 0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0213 0.0573 -0.0200 +vertex -0.0216 0.0575 -0.0173 +vertex -0.0253 0.0501 -0.0173 +endloop +endfacet +endsolid python diff --git a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf new file mode 100644 index 0000000000000000000000000000000000000000..5d79951aded7ba6258eeccd255f7263a8e10ada7 --- /dev/null +++ b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf @@ -0,0 +1,12388 @@ + 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 +228.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +228.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +228.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +0.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +140.30855600000004 + 30 +0.0 + 11 +0.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +140.30855600000004 + 30 +0.0 + 11 +0.0 + 21 +140.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +60.00000000000001 + 21 +140.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +133.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +60.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +167.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +157.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +228.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +60.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +157.0 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +133.00000000000003 + 20 +116.30855600000002 + 30 +0.0 + 11 +133.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +133.00000000000003 + 20 +80.30855600000002 + 30 +0.0 + 11 +133.00000000000003 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +133.00000000000003 + 20 +80.30855600000002 + 30 +0.0 + 11 +157.0 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +116.30855600000002 + 30 +0.0 + 11 +157.0 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +80.30855600000002 + 30 +0.0 + 11 +157.0 + 21 +35.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +133.00000000000003 + 20 +35.30855600000002 + 30 +0.0 + 11 +133.00000000000003 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +133.00000000000003 + 20 +30.308556000000017 + 30 +0.0 + 11 +133.00000000000003 + 21 +35.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +30.308556000000017 + 30 +0.0 + 11 +133.00000000000003 + 21 +30.308556000000017 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +35.30855600000002 + 30 +0.0 + 11 +157.0 + 21 +30.308556000000017 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +133.00000000000003 + 20 +116.30855600000002 + 30 +0.0 + 11 +113.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +133.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +113.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +113.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +89.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +89.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +113.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +89.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +89.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +89.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +69.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +69.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +89.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +69.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +69.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +59.00000000000001 + 20 +150.30855600000004 + 30 +0.0 + 11 +69.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +59.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +59.00000000000001 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +69.00000000000001 + 20 +116.30855600000002 + 30 +0.0 + 11 +59.00000000000001 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +167.00000000000003 + 20 +114.16993400081472 + 30 +0.0 + 11 +228.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.00000000000003 + 20 +150.30855600000004 + 30 +0.0 + 11 +228.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +167.00000000000003 + 20 +114.16993400081472 + 30 +0.0 + 11 +167.00000000000003 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +228.00000000000003 + 20 +90.16993400081472 + 30 +0.0 + 11 +167.00000000000003 + 21 +90.16993400081472 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +228.00000000000003 + 20 +90.16993400081472 + 30 +0.0 + 11 +228.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +167.00000000000003 + 20 +54.03131200162941 + 30 +0.0 + 11 +167.00000000000003 + 21 +90.16993400081473 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.00000000000003 + 20 +90.16993400081473 + 30 +0.0 + 11 +228.00000000000003 + 21 +54.03131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +167.00000000000003 + 20 +44.03131200162941 + 30 +0.0 + 11 +167.00000000000003 + 21 +54.03131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.00000000000003 + 20 +44.03131200162941 + 30 +0.0 + 11 +167.00000000000003 + 21 +44.03131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.00000000000003 + 20 +54.03131200162941 + 30 +0.0 + 11 +228.00000000000003 + 21 +44.03131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +238.00000000000003 + 20 +90.16993400081472 + 30 +0.0 + 11 +228.00000000000003 + 21 +90.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +238.00000000000003 + 20 +114.16993400081472 + 30 +0.0 + 11 +238.00000000000003 + 21 +90.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.00000000000003 + 20 +114.16993400081472 + 30 +0.0 + 11 +238.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +114.16993400081472 + 30 +0.0 + 11 +167.00000000000003 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +90.16993400081472 + 30 +0.0 + 11 +157.0 + 21 +114.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +167.00000000000003 + 20 +90.16993400081472 + 30 +0.0 + 11 +157.0 + 21 +90.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.00000000000001 + 20 +142.80855600000004 + 30 +0.0 + 11 +45.0 + 21 +142.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +45.0 + 20 +142.80855600000004 + 30 +0.0 + 11 +40.00000000000001 + 21 +147.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.00000000000001 + 20 +147.80855600000004 + 30 +0.0 + 11 +20.000000000000004 + 21 +147.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +20.000000000000004 + 20 +147.80855600000004 + 30 +0.0 + 11 +15.000000000000002 + 21 +142.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +15.000000000000002 + 20 +142.80855600000004 + 30 +0.0 + 11 +20.000000000000004 + 21 +142.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.25000000000003 + 20 +139.2252226666667 + 30 +0.0 + 11 +149.25000000000003 + 21 +127.39188933333337 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.25000000000003 + 20 +127.39188933333337 + 30 +0.0 + 11 +149.75 + 21 +127.39188933333337 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.75 + 20 +127.39188933333337 + 30 +0.0 + 11 +149.75 + 21 +139.2252226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.75 + 20 +139.2252226666667 + 30 +0.0 + 11 +149.25000000000003 + 21 +139.2252226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.00000000000003 + 20 +31.558556000000014 + 30 +0.0 + 11 +151.50000000000003 + 21 +31.558556000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +151.50000000000003 + 20 +31.558556000000014 + 30 +0.0 + 11 +149.00000000000003 + 21 +34.05855600000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.00000000000003 + 20 +34.05855600000001 + 30 +0.0 + 11 +141.0 + 21 +34.05855600000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +34.05855600000001 + 30 +0.0 + 11 +138.5 + 21 +31.558556000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +138.5 + 20 +31.558556000000014 + 30 +0.0 + 11 +141.0 + 21 +31.558556000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +114.00000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +118.00000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.00000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +118.00000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.00000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +114.00000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +114.00000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +114.00000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +126.00000000000001 + 20 +128.808556 + 30 +0.0 + 11 +130.0 + 21 +128.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +128.808556 + 30 +0.0 + 11 +130.0 + 21 +137.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +137.808556 + 30 +0.0 + 11 +126.00000000000001 + 21 +137.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +126.00000000000001 + 20 +137.808556 + 30 +0.0 + 11 +126.00000000000001 + 21 +128.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +89.50000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +112.50000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +112.50000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +112.50000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +112.50000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +89.50000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +89.50000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +89.50000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +84.0 + 20 +127.30855600000004 + 30 +0.0 + 11 +88.00000000000001 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.00000000000001 + 20 +127.30855600000004 + 30 +0.0 + 11 +88.00000000000001 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.00000000000001 + 20 +139.30855600000004 + 30 +0.0 + 11 +84.0 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +84.0 + 20 +139.30855600000004 + 30 +0.0 + 11 +84.0 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.50000000000001 + 20 +127.64188933333337 + 30 +0.0 + 11 +66.50000000000001 + 21 +127.64188933333337 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.50000000000001 + 20 +127.64188933333337 + 30 +0.0 + 11 +66.50000000000001 + 21 +138.9752226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.50000000000001 + 20 +138.9752226666667 + 30 +0.0 + 11 +61.50000000000001 + 21 +138.9752226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +185.00000000000003 + 20 +95.66993400081472 + 30 +0.0 + 11 +196.00000000000003 + 21 +95.66993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +196.00000000000003 + 20 +95.66993400081472 + 30 +0.0 + 11 +196.00000000000003 + 21 +108.66993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +196.00000000000003 + 20 +108.66993400081472 + 30 +0.0 + 11 +185.00000000000003 + 21 +108.66993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +185.00000000000003 + 20 +108.66993400081472 + 30 +0.0 + 11 +185.00000000000003 + 21 +95.66993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +216.50000000000003 + 20 +97.16993400081472 + 30 +0.0 + 11 +222.50000000000003 + 21 +97.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +222.50000000000003 + 20 +97.16993400081472 + 30 +0.0 + 11 +222.50000000000003 + 21 +107.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +222.50000000000003 + 20 +107.16993400081472 + 30 +0.0 + 11 +216.50000000000003 + 21 +107.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +216.50000000000003 + 20 +107.16993400081472 + 30 +0.0 + 11 +216.50000000000003 + 21 +97.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +216.90909090909093 + 20 +46.5313120016294 + 30 +0.0 + 11 +216.90909090909093 + 21 +51.53131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +216.90909090909093 + 20 +51.53131200162941 + 30 +0.0 + 11 +205.81818181818184 + 21 +51.53131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +205.81818181818184 + 20 +51.53131200162941 + 30 +0.0 + 11 +205.81818181818184 + 21 +46.5313120016294 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +189.18181818181822 + 20 +46.5313120016294 + 30 +0.0 + 11 +189.18181818181822 + 21 +51.53131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +189.18181818181822 + 20 +51.53131200162941 + 30 +0.0 + 11 +178.09090909090912 + 21 +51.53131200162941 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +178.09090909090912 + 20 +51.53131200162941 + 30 +0.0 + 11 +178.09090909090912 + 21 +46.5313120016294 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +235.50000000000003 + 20 +106.16993400081472 + 30 +0.0 + 11 +230.50000000000003 + 21 +106.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.50000000000003 + 20 +106.16993400081472 + 30 +0.0 + 11 +230.50000000000003 + 21 +98.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.50000000000003 + 20 +98.16993400081472 + 30 +0.0 + 11 +235.50000000000003 + 21 +98.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +159.5 + 20 +98.16993400081472 + 30 +0.0 + 11 +164.50000000000003 + 21 +98.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.50000000000003 + 20 +98.16993400081472 + 30 +0.0 + 11 +164.50000000000003 + 21 +106.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.50000000000003 + 20 +106.16993400081472 + 30 +0.0 + 11 +159.5 + 21 +106.16993400081472 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +476.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +248.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +476.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +248.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +248.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +309.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +248.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +319.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +309.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +416.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +343.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +416.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +416.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +248.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +248.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +319.0 + 20 +116.30855600000002 + 30 +0.0 + 11 +319.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +343.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +343.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +319.0 + 20 +80.30855600000002 + 30 +0.0 + 11 +319.0 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +319.0 + 20 +80.30855600000002 + 30 +0.0 + 11 +343.00000000000006 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +343.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +343.00000000000006 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +343.00000000000006 + 20 +80.30855600000002 + 30 +0.0 + 11 +343.00000000000006 + 21 +35.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +319.0 + 20 +35.30855600000002 + 30 +0.0 + 11 +319.0 + 21 +80.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +343.00000000000006 + 20 +35.30855600000002 + 30 +0.0 + 11 +319.0 + 21 +35.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +343.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +363.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +363.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +343.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +363.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +363.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +363.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +387.0 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +387.0 + 20 +116.30855600000002 + 30 +0.0 + 11 +363.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +387.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +387.0 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +387.0 + 20 +150.30855600000004 + 30 +0.0 + 11 +407.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +407.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +387.0 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +407.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +407.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +417.00000000000006 + 20 +116.30855600000002 + 30 +0.0 + 11 +407.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +417.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +417.00000000000006 + 21 +116.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +407.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +417.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +150.30855600000004 + 30 +0.0 + 11 +476.00000000000006 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +416.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +416.00000000000006 + 21 +150.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +416.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +476.00000000000006 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +416.00000000000006 + 20 +61.65427796513857 + 30 +0.0 + 11 +416.00000000000006 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +476.00000000000006 + 20 +61.65427796513857 + 30 +0.0 + 11 +416.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +476.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +476.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +416.00000000000006 + 20 +-6.972288701945219e-08 + 30 +0.0 + 11 +416.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +-6.972288701945219e-08 + 30 +0.0 + 11 +416.00000000000006 + 21 +-6.972288701945219e-08 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +61.65427796513857 + 30 +0.0 + 11 +476.00000000000006 + 21 +-6.972288701945219e-08 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +493.00000000000006 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +493.00000000000006 + 20 +61.65427796513857 + 30 +0.0 + 11 +476.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +493.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +493.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +493.00000000000006 + 20 +88.65427796513858 + 30 +0.0 + 11 +553.0000000000001 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +553.0000000000001 + 20 +61.65427796513857 + 30 +0.0 + 11 +493.00000000000006 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +553.0000000000001 + 20 +88.65427796513858 + 30 +0.0 + 11 +553.0000000000001 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +553.0000000000001 + 20 +88.65427796513858 + 30 +0.0 + 11 +570.0000000000001 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +570.0000000000001 + 20 +61.65427796513857 + 30 +0.0 + 11 +553.0000000000001 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +570.0000000000001 + 20 +61.65427796513857 + 30 +0.0 + 11 +570.0000000000001 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +580.0000000000001 + 20 +61.65427796513857 + 30 +0.0 + 11 +570.0000000000001 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +580.0000000000001 + 20 +88.65427796513858 + 30 +0.0 + 11 +580.0000000000001 + 21 +61.65427796513857 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +570.0000000000001 + 20 +88.65427796513858 + 30 +0.0 + 11 +580.0000000000001 + 21 +88.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +270.43181818181824 + 20 +158.058556 + 30 +0.0 + 11 +258.8409090909091 + 21 +158.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +258.8409090909091 + 20 +158.058556 + 30 +0.0 + 11 +258.8409090909091 + 21 +157.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +258.8409090909091 + 20 +157.55855600000004 + 30 +0.0 + 11 +270.43181818181824 + 21 +157.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +270.43181818181824 + 20 +157.55855600000004 + 30 +0.0 + 11 +270.43181818181824 + 21 +158.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +298.159090909091 + 20 +158.058556 + 30 +0.0 + 11 +286.56818181818187 + 21 +158.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.56818181818187 + 20 +158.058556 + 30 +0.0 + 11 +286.56818181818187 + 21 +157.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.56818181818187 + 20 +157.55855600000004 + 30 +0.0 + 11 +298.159090909091 + 21 +157.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +298.159090909091 + 20 +157.55855600000004 + 30 +0.0 + 11 +298.159090909091 + 21 +158.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.75000000000006 + 20 +127.39188933333335 + 30 +0.0 + 11 +326.75000000000006 + 21 +139.2252226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.75000000000006 + 20 +139.2252226666667 + 30 +0.0 + 11 +326.25000000000006 + 21 +139.2252226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.25000000000006 + 20 +139.2252226666667 + 30 +0.0 + 11 +326.25000000000006 + 21 +127.39188933333335 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.25000000000006 + 20 +127.39188933333335 + 30 +0.0 + 11 +326.75000000000006 + 21 +127.39188933333335 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +335.25000000000006 + 20 +39.30855600000002 + 30 +0.0 + 11 +326.75000000000006 + 21 +39.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.75000000000006 + 20 +39.30855600000002 + 30 +0.0 + 11 +326.75000000000006 + 21 +38.80855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.75000000000006 + 20 +38.80855600000002 + 30 +0.0 + 11 +335.25000000000006 + 21 +38.80855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +335.25000000000006 + 20 +38.80855600000002 + 30 +0.0 + 11 +335.25000000000006 + 21 +39.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +362.00000000000006 + 20 +139.30855600000004 + 30 +0.0 + 11 +358.00000000000006 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +358.00000000000006 + 20 +139.30855600000004 + 30 +0.0 + 11 +358.00000000000006 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +358.00000000000006 + 20 +127.30855600000004 + 30 +0.0 + 11 +362.00000000000006 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +362.00000000000006 + 20 +127.30855600000004 + 30 +0.0 + 11 +362.00000000000006 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.0 + 20 +137.808556 + 30 +0.0 + 11 +346.0 + 21 +137.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +346.0 + 20 +137.808556 + 30 +0.0 + 11 +346.0 + 21 +128.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +346.0 + 20 +128.808556 + 30 +0.0 + 11 +350.0 + 21 +128.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.0 + 20 +128.808556 + 30 +0.0 + 11 +350.0 + 21 +137.808556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +386.5 + 20 +139.30855600000004 + 30 +0.0 + 11 +363.5 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +363.5 + 20 +139.30855600000004 + 30 +0.0 + 11 +363.5 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +363.5 + 20 +127.30855600000004 + 30 +0.0 + 11 +386.5 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +386.5 + 20 +127.30855600000004 + 30 +0.0 + 11 +386.5 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +392.00000000000006 + 20 +139.30855600000004 + 30 +0.0 + 11 +388.00000000000006 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +388.00000000000006 + 20 +139.30855600000004 + 30 +0.0 + 11 +388.00000000000006 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +388.00000000000006 + 20 +127.30855600000004 + 30 +0.0 + 11 +392.00000000000006 + 21 +127.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +392.00000000000006 + 20 +127.30855600000004 + 30 +0.0 + 11 +392.00000000000006 + 21 +139.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +414.50000000000006 + 20 +138.9752226666667 + 30 +0.0 + 11 +409.5 + 21 +138.9752226666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +409.5 + 20 +138.9752226666667 + 30 +0.0 + 11 +409.5 + 21 +127.64188933333335 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +409.5 + 20 +127.64188933333335 + 30 +0.0 + 11 +414.50000000000006 + 21 +127.64188933333335 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +475.50000000000006 + 20 +84.15427796513858 + 30 +0.0 + 11 +472.50000000000006 + 21 +84.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +472.50000000000006 + 20 +84.15427796513858 + 30 +0.0 + 11 +472.50000000000006 + 21 +66.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +472.50000000000006 + 20 +66.15427796513858 + 30 +0.0 + 11 +475.50000000000006 + 21 +66.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +475.50000000000006 + 20 +66.15427796513858 + 30 +0.0 + 11 +475.50000000000006 + 21 +84.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.75000000000006 + 20 +70.40427796513856 + 30 +0.0 + 11 +423.75000000000006 + 21 +79.90427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.75000000000006 + 20 +79.90427796513858 + 30 +0.0 + 11 +423.25 + 21 +79.90427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.25 + 20 +79.90427796513858 + 30 +0.0 + 11 +423.25 + 21 +70.40427796513856 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.25 + 20 +70.40427796513856 + 30 +0.0 + 11 +423.75000000000006 + 21 +70.40427796513856 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +456.25000000000006 + 20 +7.749999930277114 + 30 +0.0 + 11 +435.75000000000006 + 21 +7.749999930277114 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +435.75000000000006 + 20 +7.749999930277114 + 30 +0.0 + 11 +435.75000000000006 + 21 +7.249999930277114 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +435.75000000000006 + 20 +7.249999930277114 + 30 +0.0 + 11 +456.25000000000006 + 21 +7.249999930277114 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +456.25000000000006 + 20 +7.249999930277114 + 30 +0.0 + 11 +456.25000000000006 + 21 +7.749999930277114 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.00000000000006 + 20 +84.15427796513858 + 30 +0.0 + 11 +476.00000000000006 + 21 +84.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +84.15427796513858 + 30 +0.0 + 11 +476.00000000000006 + 21 +66.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.00000000000006 + 20 +66.15427796513858 + 30 +0.0 + 11 +479.00000000000006 + 21 +66.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.00000000000006 + 20 +66.15427796513858 + 30 +0.0 + 11 +479.00000000000006 + 21 +84.15427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +577.5000000000001 + 20 +79.65427796513858 + 30 +0.0 + 11 +572.5 + 21 +79.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +572.5 + 20 +79.65427796513858 + 30 +0.0 + 11 +572.5 + 21 +70.65427796513858 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +572.5 + 20 +70.65427796513858 + 30 +0.0 + 11 +577.5000000000001 + 21 +70.65427796513858 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +623.0000000000001 + 20 +138.30855600000004 + 30 +0.0 + 11 +684.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +684.0000000000001 + 20 +138.30855600000004 + 30 +0.0 + 11 +684.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +684.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +623.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +623.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +623.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +623.0000000000001 + 20 +131.30855600000004 + 30 +0.0 + 11 +623.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +683.0 + 20 +131.30855600000004 + 30 +0.0 + 11 +623.0000000000001 + 21 +131.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +683.0 + 20 +138.30855600000004 + 30 +0.0 + 11 +683.0 + 21 +131.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +691.0 + 20 +138.30855600000004 + 30 +0.0 + 11 +684.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +691.0 + 20 +162.308556 + 30 +0.0 + 11 +691.0 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +684.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +691.0 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +684.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +684.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +624.0000000000001 + 20 +223.30855600000004 + 30 +0.0 + 11 +684.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +624.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +624.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +708.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +684.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +708.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +708.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +684.0000000000001 + 20 +223.30855600000004 + 30 +0.0 + 11 +708.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +768.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +708.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +768.0000000000001 + 20 +223.30855600000004 + 30 +0.0 + 11 +768.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +708.0000000000001 + 20 +223.30855600000004 + 30 +0.0 + 11 +768.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +624.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +600.0 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +600.0 + 20 +223.30855600000004 + 30 +0.0 + 11 +624.0000000000001 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +600.0 + 20 +223.30855600000004 + 30 +0.0 + 11 +600.0 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +590.0 + 20 +223.30855600000004 + 30 +0.0 + 11 +600.0 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +590.0 + 20 +162.308556 + 30 +0.0 + 11 +590.0 + 21 +223.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +600.0 + 20 +162.308556 + 30 +0.0 + 11 +590.0 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +616.0000000000001 + 20 +162.308556 + 30 +0.0 + 11 +623.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +616.0000000000001 + 20 +138.30855600000004 + 30 +0.0 + 11 +616.0000000000001 + 21 +162.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +623.0000000000001 + 20 +138.30855600000004 + 30 +0.0 + 11 +616.0000000000001 + 21 +138.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +672.0909090909092 + 20 +133.058556 + 30 +0.0 + 11 +675.5909090909091 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +675.5909090909091 + 20 +133.058556 + 30 +0.0 + 11 +672.0909090909092 + 21 +136.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +672.0909090909092 + 20 +136.55855600000004 + 30 +0.0 + 11 +661.1818181818181 + 21 +136.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +661.1818181818181 + 20 +136.55855600000004 + 30 +0.0 + 11 +657.6818181818184 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +657.6818181818184 + 20 +133.058556 + 30 +0.0 + 11 +661.1818181818181 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +644.818181818182 + 20 +133.058556 + 30 +0.0 + 11 +648.3181818181819 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +648.3181818181819 + 20 +133.058556 + 30 +0.0 + 11 +644.818181818182 + 21 +136.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +644.818181818182 + 20 +136.55855600000004 + 30 +0.0 + 11 +633.9090909090909 + 21 +136.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +633.9090909090909 + 20 +136.55855600000004 + 30 +0.0 + 11 +630.409090909091 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +630.409090909091 + 20 +133.058556 + 30 +0.0 + 11 +633.9090909090909 + 21 +133.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +689.2500000000001 + 20 +154.30855600000004 + 30 +0.0 + 11 +685.75 + 21 +154.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.75 + 20 +154.30855600000004 + 30 +0.0 + 11 +685.75 + 21 +146.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.75 + 20 +146.308556 + 30 +0.0 + 11 +689.2500000000001 + 21 +146.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +631.5000000000001 + 20 +213.80855600000004 + 30 +0.0 + 11 +631.5000000000001 + 21 +195.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +631.5000000000001 + 20 +195.80855600000004 + 30 +0.0 + 11 +666.5000000000001 + 21 +195.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +666.5000000000001 + 20 +195.80855600000004 + 30 +0.0 + 11 +666.5000000000001 + 21 +213.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +666.5000000000001 + 20 +213.80855600000004 + 30 +0.0 + 11 +631.5000000000001 + 21 +213.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +684.5000000000001 + 20 +175.55855600000004 + 30 +0.0 + 11 +684.5000000000001 + 21 +172.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +684.5000000000001 + 20 +172.55855600000004 + 30 +0.0 + 11 +687.5000000000001 + 21 +172.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +687.5000000000001 + 20 +172.55855600000004 + 30 +0.0 + 11 +687.5000000000001 + 21 +175.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +687.5000000000001 + 20 +175.55855600000004 + 30 +0.0 + 11 +684.5000000000001 + 21 +175.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +174.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +173.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +173.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +173.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +173.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +174.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +174.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +174.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +686.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +686.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +706.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +706.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +685.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +685.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +705.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +705.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +685.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +685.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +705.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +705.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +686.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +706.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +686.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +686.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +706.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +706.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +705.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +706.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +705.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +212.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +211.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +685.5000000000001 + 20 +211.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +211.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +211.05855600000004 + 30 +0.0 + 11 +686.5000000000001 + 21 +212.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +686.5000000000001 + 20 +212.05855600000004 + 30 +0.0 + 11 +685.5000000000001 + 21 +212.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +704.5000000000001 + 20 +213.05855600000004 + 30 +0.0 + 11 +704.5000000000001 + 21 +210.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +704.5000000000001 + 20 +210.05855600000004 + 30 +0.0 + 11 +707.5000000000001 + 21 +210.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +707.5000000000001 + 20 +210.05855600000004 + 30 +0.0 + 11 +707.5000000000001 + 21 +213.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +707.5000000000001 + 20 +213.05855600000004 + 30 +0.0 + 11 +704.5000000000001 + 21 +213.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +700.2500000000001 + 20 +170.05855600000004 + 30 +0.0 + 11 +691.7500000000001 + 21 +170.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +691.7500000000001 + 20 +170.05855600000004 + 30 +0.0 + 11 +691.7500000000001 + 21 +169.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +691.7500000000001 + 20 +169.558556 + 30 +0.0 + 11 +700.2500000000001 + 21 +169.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +700.2500000000001 + 20 +169.558556 + 30 +0.0 + 11 +700.2500000000001 + 21 +170.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +691.7500000000001 + 20 +217.80855600000004 + 30 +0.0 + 11 +700.2500000000001 + 21 +217.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +700.2500000000001 + 20 +217.80855600000004 + 30 +0.0 + 11 +700.2500000000001 + 21 +218.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +700.2500000000001 + 20 +218.30855600000004 + 30 +0.0 + 11 +691.7500000000001 + 21 +218.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +691.7500000000001 + 20 +218.30855600000004 + 30 +0.0 + 11 +691.7500000000001 + 21 +217.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +723.0000000000001 + 20 +213.30855600000004 + 30 +0.0 + 11 +723.0000000000001 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +723.0000000000001 + 20 +200.30855600000004 + 30 +0.0 + 11 +753.0000000000001 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +753.0000000000001 + 20 +200.30855600000004 + 30 +0.0 + 11 +753.0000000000001 + 21 +213.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +753.0000000000001 + 20 +213.30855600000004 + 30 +0.0 + 11 +723.0000000000001 + 21 +213.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +730.0681818181819 + 20 +167.80855600000004 + 30 +0.0 + 11 +718.659090909091 + 21 +167.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +718.659090909091 + 20 +167.80855600000004 + 30 +0.0 + 11 +718.659090909091 + 21 +167.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +718.659090909091 + 20 +167.308556 + 30 +0.0 + 11 +730.0681818181819 + 21 +167.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +730.0681818181819 + 20 +167.308556 + 30 +0.0 + 11 +730.0681818181819 + 21 +167.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +757.3409090909092 + 20 +167.80855600000004 + 30 +0.0 + 11 +745.9318181818182 + 21 +167.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +745.9318181818182 + 20 +167.80855600000004 + 30 +0.0 + 11 +745.9318181818182 + 21 +167.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +745.9318181818182 + 20 +167.308556 + 30 +0.0 + 11 +757.3409090909092 + 21 +167.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +757.3409090909092 + 20 +167.308556 + 30 +0.0 + 11 +757.3409090909092 + 21 +167.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.25 + 20 +184.74037418181823 + 30 +0.0 + 11 +760.25 + 21 +173.14946509090913 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.25 + 20 +173.14946509090913 + 30 +0.0 + 11 +760.75 + 21 +173.14946509090913 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.75 + 20 +173.14946509090913 + 30 +0.0 + 11 +760.75 + 21 +184.74037418181823 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.75 + 20 +184.74037418181823 + 30 +0.0 + 11 +760.25 + 21 +184.74037418181823 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.25 + 20 +212.46764690909094 + 30 +0.0 + 11 +760.25 + 21 +200.87673781818185 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.25 + 20 +200.87673781818185 + 30 +0.0 + 11 +760.75 + 21 +200.87673781818185 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.75 + 20 +200.87673781818185 + 30 +0.0 + 11 +760.75 + 21 +212.46764690909094 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +760.75 + 20 +212.46764690909094 + 30 +0.0 + 11 +760.25 + 21 +212.46764690909094 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +600.5 + 20 +175.55855600000004 + 30 +0.0 + 11 +600.5 + 21 +172.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +600.5 + 20 +172.55855600000004 + 30 +0.0 + 11 +603.5000000000001 + 21 +172.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +603.5000000000001 + 20 +172.55855600000004 + 30 +0.0 + 11 +603.5000000000001 + 21 +175.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +603.5000000000001 + 20 +175.55855600000004 + 30 +0.0 + 11 +600.5 + 21 +175.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +174.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +173.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +173.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +173.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +173.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +174.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +174.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +174.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +177.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +176.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +176.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +176.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +177.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +177.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +179.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +178.558556 + 30 +0.0 + 11 +602.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +602.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +622.5000000000001 + 21 +178.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +178.558556 + 30 +0.0 + 11 +622.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +179.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +179.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +182.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +181.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +181.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +181.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +182.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +182.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +184.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +183.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +183.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +183.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +184.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +184.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +187.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +186.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +186.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +186.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +187.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +187.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +189.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +188.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +188.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +188.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +189.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +189.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +192.058556 + 30 +0.0 + 11 +601.5 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +191.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +601.5 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +621.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +191.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +191.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +192.058556 + 30 +0.0 + 11 +621.5000000000001 + 21 +192.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +194.558556 + 30 +0.0 + 11 +601.5 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +193.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +601.5 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +621.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +193.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +193.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +194.558556 + 30 +0.0 + 11 +621.5000000000001 + 21 +194.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +197.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +196.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +196.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +196.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +197.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +197.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +199.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +198.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +198.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +198.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +199.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +199.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +202.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +201.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +602.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +201.058556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +201.058556 + 30 +0.0 + 11 +622.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +202.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +202.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +204.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +203.558556 + 30 +0.0 + 11 +602.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +602.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +622.5000000000001 + 21 +203.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +203.558556 + 30 +0.0 + 11 +622.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +204.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +204.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +207.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +206.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +206.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +206.05855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +207.05855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +207.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +209.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +208.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +601.5 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +208.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +208.55855600000004 + 30 +0.0 + 11 +622.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +622.5000000000001 + 20 +209.55855600000004 + 30 +0.0 + 11 +621.5000000000001 + 21 +209.55855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +212.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +211.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +601.5 + 20 +211.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +211.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +211.05855600000004 + 30 +0.0 + 11 +602.5000000000001 + 21 +212.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +602.5000000000001 + 20 +212.05855600000004 + 30 +0.0 + 11 +601.5 + 21 +212.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +620.5000000000001 + 20 +213.05855600000004 + 30 +0.0 + 11 +620.5000000000001 + 21 +210.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +620.5000000000001 + 20 +210.05855600000004 + 30 +0.0 + 11 +623.5000000000001 + 21 +210.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +623.5000000000001 + 20 +210.05855600000004 + 30 +0.0 + 11 +623.5000000000001 + 21 +213.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +623.5000000000001 + 20 +213.05855600000004 + 30 +0.0 + 11 +620.5000000000001 + 21 +213.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +616.2500000000001 + 20 +170.05855600000004 + 30 +0.0 + 11 +607.7500000000001 + 21 +170.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.7500000000001 + 20 +170.05855600000004 + 30 +0.0 + 11 +607.7500000000001 + 21 +169.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.7500000000001 + 20 +169.558556 + 30 +0.0 + 11 +616.2500000000001 + 21 +169.558556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +616.2500000000001 + 20 +169.558556 + 30 +0.0 + 11 +616.2500000000001 + 21 +170.05855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.7500000000001 + 20 +217.80855600000004 + 30 +0.0 + 11 +616.2500000000001 + 21 +217.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +616.2500000000001 + 20 +217.80855600000004 + 30 +0.0 + 11 +616.2500000000001 + 21 +218.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +616.2500000000001 + 20 +218.30855600000004 + 30 +0.0 + 11 +607.7500000000001 + 21 +218.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.7500000000001 + 20 +218.30855600000004 + 30 +0.0 + 11 +607.7500000000001 + 21 +217.80855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +592.5 + 20 +173.39946509090913 + 30 +0.0 + 11 +597.5000000000001 + 21 +173.39946509090913 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +597.5000000000001 + 20 +173.39946509090913 + 30 +0.0 + 11 +597.5000000000001 + 21 +184.49037418181823 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +597.5000000000001 + 20 +184.49037418181823 + 30 +0.0 + 11 +592.5 + 21 +184.49037418181823 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +592.5 + 20 +201.12673781818185 + 30 +0.0 + 11 +597.5000000000001 + 21 +201.12673781818185 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +597.5000000000001 + 20 +201.12673781818185 + 30 +0.0 + 11 +597.5000000000001 + 21 +212.21764690909094 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +597.5000000000001 + 20 +212.21764690909094 + 30 +0.0 + 11 +592.5 + 21 +212.21764690909094 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +617.7500000000001 + 20 +146.308556 + 30 +0.0 + 11 +621.2500000000001 + 21 +146.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.2500000000001 + 20 +146.308556 + 30 +0.0 + 11 +621.2500000000001 + 21 +154.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +621.2500000000001 + 20 +154.30855600000004 + 30 +0.0 + 11 +617.7500000000001 + 21 +154.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +850.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +850.733401821533 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +800.7334018215329 + 20 +100.30855600000002 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +825.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +800.7334018215329 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +850.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +825.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +825.733401821533 + 20 +46.45690792865498 + 30 +0.0 + 11 +800.7334018215329 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +792.2466086902074 + 20 +80.42847270018157 + 30 +0.0 + 11 +786.4900052558701 + 21 +86.2684116177914 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +825.733401821533 + 20 +46.456907928654964 + 30 +0.0 + 11 +792.2466086902074 + 21 +80.42847270018157 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +800.7334018215329 + 20 +100.30855600000002 + 30 +0.0 + 11 +786.4900052558701 + 21 +86.2684116177914 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +800.7334018215329 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +786.4900052558701 + 20 +86.2684116177914 + 30 +0.0 + 11 +780.733401821533 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +780.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +800.7334018215329 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +778.0000000000001 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +778.0000000000001 + 20 +92.10835053540121 + 30 +0.0 + 11 +778.0000000000001 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.733401821533 + 20 +92.10835053540121 + 30 +0.0 + 11 +778.0000000000001 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +780.733401821533 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +780.733401821533 + 20 +200.30855600000004 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +780.733401821533 + 20 +208.50876146459882 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +780.733401821533 + 20 +208.50876146459882 + 30 +0.0 + 11 +780.733401821533 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.733401821533 + 20 +208.50876146459882 + 30 +0.0 + 11 +786.4900052558701 + 21 +214.34870038220865 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +786.4900052558701 + 20 +214.34870038220865 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +825.733401821533 + 20 +254.16020407134508 + 30 +0.0 + 11 +800.7334018215329 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +792.2466086902074 + 20 +220.18863929981848 + 30 +0.0 + 11 +825.733401821533 + 21 +254.16020407134508 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +786.4900052558701 + 20 +214.34870038220865 + 30 +0.0 + 11 +792.2466086902074 + 21 +220.18863929981848 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +800.7334018215329 + 20 +200.30855600000004 + 30 +0.0 + 11 +825.733401821533 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +825.733401821533 + 20 +200.30855600000004 + 30 +0.0 + 11 +850.733401821533 + 21 +200.308556 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +825.733401821533 + 20 +254.16020407134508 + 30 +0.0 + 11 +850.733401821533 + 21 +200.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +859.2201949528585 + 20 +220.18863929981845 + 30 +0.0 + 11 +864.9767983871958 + 21 +214.34870038220865 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +825.733401821533 + 20 +254.16020407134508 + 30 +0.0 + 11 +859.2201949528585 + 21 +220.18863929981845 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +850.733401821533 + 20 +200.30855600000004 + 30 +0.0 + 11 +864.9767983871958 + 21 +214.34870038220865 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +850.733401821533 + 20 +200.308556 + 30 +0.0 + 11 +870.733401821533 + 21 +208.5087614645988 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +864.9767983871958 + 20 +214.34870038220865 + 30 +0.0 + 11 +870.733401821533 + 21 +208.5087614645988 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +870.733401821533 + 20 +200.308556 + 30 +0.0 + 11 +870.733401821533 + 21 +208.5087614645988 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +850.733401821533 + 20 +200.308556 + 30 +0.0 + 11 +870.733401821533 + 21 +200.308556 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +873.4668036430659 + 20 +200.30855599999998 + 30 +0.0 + 11 +870.733401821533 + 21 +200.30855599999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +873.4668036430659 + 20 +208.5087614645988 + 30 +0.0 + 11 +873.4668036430659 + 21 +200.30855599999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +870.733401821533 + 20 +208.5087614645988 + 30 +0.0 + 11 +873.4668036430659 + 21 +208.5087614645988 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +870.733401821533 + 20 +200.308556 + 30 +0.0 + 11 +870.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +870.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +850.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +870.7334018215329 + 20 +92.10835053540121 + 30 +0.0 + 11 +850.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +870.7334018215329 + 20 +92.10835053540121 + 30 +0.0 + 11 +870.7334018215329 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +870.7334018215329 + 20 +92.10835053540121 + 30 +0.0 + 11 +864.9767983871958 + 21 +86.2684116177914 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +864.9767983871958 + 20 +86.2684116177914 + 30 +0.0 + 11 +850.733401821533 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +825.7334018215329 + 20 +46.45690792865502 + 30 +0.0 + 11 +850.733401821533 + 21 +100.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +859.2201949528585 + 20 +80.42847270018159 + 30 +0.0 + 11 +825.7334018215329 + 21 +46.45690792865502 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +864.9767983871958 + 20 +86.26841161779141 + 30 +0.0 + 11 +859.2201949528585 + 21 +80.42847270018159 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +873.4668036430659 + 20 +92.10835053540121 + 30 +0.0 + 11 +870.733401821533 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +873.4668036430659 + 20 +100.30855600000002 + 30 +0.0 + 11 +873.4668036430659 + 21 +92.10835053540121 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +870.733401821533 + 20 +100.30855600000002 + 30 +0.0 + 11 +873.4668036430659 + 21 +100.30855600000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +778.0000000000001 + 20 +208.50876146459882 + 30 +0.0 + 11 +780.733401821533 + 21 +208.50876146459882 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +778.0000000000001 + 20 +200.30855600000004 + 30 +0.0 + 11 +778.0000000000001 + 21 +208.50876146459882 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.733401821533 + 20 +200.30855600000004 + 30 +0.0 + 11 +778.0000000000001 + 21 +200.30855600000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +792.1412698700124 + 20 +83.81172921234263 + 30 +0.0 + 11 +789.8713984490114 + 21 +86.11446043235414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +789.8713984490114 + 20 +86.11446043235414 + 30 +0.0 + 11 +789.5153135348698 + 21 +85.76345682279894 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +789.5153135348698 + 20 +85.76345682279894 + 30 +0.0 + 11 +791.7851849558709 + 21 +83.46072560278743 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +791.7851849558709 + 20 +83.46072560278743 + 30 +0.0 + 11 +792.1412698700124 + 21 +83.81172921234263 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +778.6833504553833 + 20 +94.84175235693415 + 30 +0.0 + 11 +780.0500513661498 + 21 +94.84175235693415 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.0500513661498 + 20 +94.84175235693415 + 30 +0.0 + 11 +780.0500513661498 + 21 +97.57515417846707 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.0500513661498 + 20 +97.57515417846707 + 30 +0.0 + 11 +778.6833504553833 + 21 +97.57515417846707 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +789.8713984490114 + 20 +214.50265156764593 + 30 +0.0 + 11 +792.1412698700124 + 21 +216.8053827876574 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +792.1412698700124 + 20 +216.8053827876574 + 30 +0.0 + 11 +791.7851849558709 + 21 +217.15638639721263 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +791.7851849558709 + 20 +217.15638639721263 + 30 +0.0 + 11 +789.5153135348698 + 21 +214.85365517720115 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +789.5153135348698 + 20 +214.85365517720115 + 30 +0.0 + 11 +789.8713984490114 + 21 +214.50265156764593 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +859.3255337730535 + 20 +216.8053827876574 + 30 +0.0 + 11 +861.5954051940545 + 21 +214.50265156764587 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +861.5954051940545 + 20 +214.50265156764587 + 30 +0.0 + 11 +861.951490108196 + 21 +214.8536551772011 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +861.951490108196 + 20 +214.8536551772011 + 30 +0.0 + 11 +859.681618687195 + 21 +217.1563863972126 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +859.681618687195 + 20 +217.1563863972126 + 30 +0.0 + 11 +859.3255337730535 + 21 +216.8053827876574 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +872.7834531876827 + 20 +205.77535964306585 + 30 +0.0 + 11 +871.4167522769161 + 21 +205.77535964306585 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +871.4167522769161 + 20 +205.77535964306585 + 30 +0.0 + 11 +871.4167522769161 + 21 +203.04195782153292 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +871.4167522769161 + 20 +203.04195782153292 + 30 +0.0 + 11 +872.7834531876827 + 21 +203.04195782153292 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +861.5954051940544 + 20 +86.11446043235415 + 30 +0.0 + 11 +859.3255337730535 + 21 +83.81172921234264 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +859.3255337730535 + 20 +83.81172921234264 + 30 +0.0 + 11 +859.681618687195 + 21 +83.46072560278743 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +859.681618687195 + 20 +83.46072560278743 + 30 +0.0 + 11 +861.951490108196 + 21 +85.76345682279894 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +861.951490108196 + 20 +85.76345682279894 + 30 +0.0 + 11 +861.5954051940544 + 21 +86.11446043235415 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +872.7834531876827 + 20 +97.57515417846707 + 30 +0.0 + 11 +871.4167522769161 + 21 +97.57515417846707 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +871.4167522769161 + 20 +97.57515417846707 + 30 +0.0 + 11 +871.4167522769161 + 21 +94.84175235693415 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +871.4167522769161 + 20 +94.84175235693415 + 30 +0.0 + 11 +872.7834531876827 + 21 +94.84175235693415 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +778.6833504553833 + 20 +203.04195782153298 + 30 +0.0 + 11 +780.0500513661498 + 21 +203.04195782153298 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.0500513661498 + 20 +203.04195782153298 + 30 +0.0 + 11 +780.0500513661498 + 21 +205.7753596430659 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +780.0500513661498 + 20 +205.7753596430659 + 30 +0.0 + 11 +778.6833504553833 + 21 +205.7753596430659 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BoatWithServoStackBattery/tree.png b/rocolib/output/BoatWithServoStackBattery/tree.png new file mode 100644 index 0000000000000000000000000000000000000000..c721c3e07badc5055fe700c424da10de2d5b9124 Binary files /dev/null and b/rocolib/output/BoatWithServoStackBattery/tree.png differ