diff --git a/README.md b/README.md index f0b672d0200feef89e18f7ce3ca2d3bb78077843..921c779caad30cf8837e6736d3a76accf2ee757a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,150 @@ -## ENGINEERING JOURNAL ### Jingyan Ling +### 09/04/2019 + +- Paper Outlines + +#### An Accessible way to rapidly build foldable robots from automatic electromechanical design + +#### I. Introduction (1) +- 1. Robot functionality highly depends on electrical component it carries +- 2. Personalized robot needs technical experience +- 3. Work based on previous work of RoCo mechanical design +- 4. Bullet points of contributions +#### II. Related Work (1-2) +- 1. Roco mechanical design for foldable robot +- 2. Freerouting software for auto-router +#### III. Design Strategies (2-5) +- A. Design as a PCB +- B. Mechanical drawing processing +- C. Circuit pattern +- D. Fabrication +#### IV. Result (5-6) +- Pipeline of the system +- Show results through each step in the pipeline +- State time and cost +#### V. Conclusion (6) +- A. Contributions + - Accessible + - Fast +- B. Future Work + - Stability + - Durability + +#### *Contribution A (Design as a PCB)* +`What` +- An integrated method to do PCB design from simple user input + +`How` +- building `dsnwritter` python library + - module, footprint lib, wiring options... + +`Solves issue` +- 1. Experience of using PCB design software (KiCAD/EAGLE) is needed for typical PCB design; Causal user need time to learn software. +- 2. Manually routing takes long time and requires technical experience + +`Why solving this issue` +- 1. Electrical design is necessary for building a robot +- 2. Having circuit on the surface of foldable robot instead of doing external wires makes it more accessible + +`For` +- Accessible and fast + +`Approve` +- exported file (.dsn) can be viewed in Auto-router software directly (fig) +- input table vs. output (fig) +- Auto-router can read the file generated and proceed auto-routing (fig) + + +#### *Contribution B (Mechanical Drawing processing)* +`What` +- A module can take arbitrary 2D-mechanical design for automatic electrical design + +`How` +- mechanical drawing pre-processing + - line stroked to path + - polylines provides continuous closed shape for lines + +`Solves issue` +- Extra effort is needed for a complex CAD drawing to be recognized as electrical board outlines (provide example fig) + +`Why solving this issue` +- Specific type and style of CAD drawings are required to use open-source auto-routing software +- Learning specification and drawing software would waste time and effort of causal users + +`For` +- Accessible + +`Approve` +- Show different line properties in inkscape between mechanical design and after pre-processing (fig) +- Such shape can be viewed in Auto-router and routing treat drawings as obstacles properly (fig) + + +#### *Contribution C (Circuit Pattern)* +`What` +- A module generates fabrication file for materials based on electromechanical design + +`How` +- Fabrication drawing post-process + - parse wiring information + - parallel traces/ isolation boundaries/ pin insertion + +`Solves issue` +- Design of patterns of wiring is required based on material of foldable robot for proper electrical performance. It would need technical experience. + +`Why solving this issue` +- Patterns are necessary to ensure there is no short or open circuit for circuit on the surface of robot +- Change design of such pattern can consume a lot effort + +`Approve` +- different circuit pattern can be output for materials (fig: direct wire vs parallel traces) +- pic of direct wire fabrication by using conductive pen on paper +- pic of showing isolation well for parallel trace pattern +- pic of showing pin insertion pattern can conducts well + +`For` +- Accessible + +#### *Contribution D (Fabrication)* +`What` +- Foldable robot with functional electrical components on surface + - A. Fabrication + - B. Result + +`How` +- Describe fabrication process (pic/reference/experiment) + +`Solves Issue` +- 1. A. Traditional printable circuit requires more cost/equipment/time (depends on reference search) +- 2. B. Traditional PCB can not be folded to a robot +- 3. B. Traditional PCB does not have arbitrary shape/holes inside + +`Why solving this issue` +- Traditional robot and PCB making takes a long time, special equipment and technical experience. While most of soft PCB are simple routing instead of taking complex mechanical design + +`Approve` +- circuit can work properly on folded surface (fig) +- circuit can go around holes and working properly (fig) +- pic of a foldable robot with circuit working +- Time it takes to do the whole robot +- Price of copper + plastic paper + +`For` +- Low cost & Fast + + +### until 09/03/2019 + +- Testing on physical prototype +- Fabrication process +-  +- Result from cutter +-  +- Test before fully folding the robot +-  +- Appearance after fully folded +-  + ### 08/29/2019 - Fixing issues: diff --git a/journal_media/fab_process.png b/journal_media/fab_process.png new file mode 100644 index 0000000000000000000000000000000000000000..326f380425a1f9251d6a6611181fc3313cf84b7b Binary files /dev/null and b/journal_media/fab_process.png differ diff --git a/journal_media/fab_result.png b/journal_media/fab_result.png new file mode 100644 index 0000000000000000000000000000000000000000..ddfde7ec5a9e6175563bc81ba3735785d56bbaa1 Binary files /dev/null and b/journal_media/fab_result.png differ diff --git a/journal_media/fully_folded_paperbot.png b/journal_media/fully_folded_paperbot.png new file mode 100644 index 0000000000000000000000000000000000000000..e1ee1e0522a4d5b97bc292b7bb66567fe7314ce7 Binary files /dev/null and b/journal_media/fully_folded_paperbot.png differ diff --git a/journal_media/test_before_fullyfold.png b/journal_media/test_before_fullyfold.png new file mode 100644 index 0000000000000000000000000000000000000000..e748722a2f3ae3064c18fc74bbbad5e48c5ceb13 Binary files /dev/null and b/journal_media/test_before_fullyfold.png differ diff --git a/paperbot_ee_autoroute/__pycache__/ee_dwg_processing.cpython-36.pyc b/paperbot_ee_autoroute/__pycache__/ee_dwg_processing.cpython-36.pyc index 3d43167da4585a17a461834bab5c1a6db3b45ecf..058732466b642aecb108a625ef66d28b2f1bfc7d 100644 Binary files a/paperbot_ee_autoroute/__pycache__/ee_dwg_processing.cpython-36.pyc and b/paperbot_ee_autoroute/__pycache__/ee_dwg_processing.cpython-36.pyc differ diff --git a/paperbot_ee_autoroute/__pycache__/roco_dsn.cpython-36.pyc b/paperbot_ee_autoroute/__pycache__/roco_dsn.cpython-36.pyc index a3f0c1ef1ed617fef3a154ecb786a5c434bc3843..5677f205ab7bef2ec963a26035c40e27cc7ab640 100644 Binary files a/paperbot_ee_autoroute/__pycache__/roco_dsn.cpython-36.pyc and b/paperbot_ee_autoroute/__pycache__/roco_dsn.cpython-36.pyc differ diff --git a/paperbot_ee_autoroute/cut_test.svg b/paperbot_ee_autoroute/cut_test.svg new file mode 100644 index 0000000000000000000000000000000000000000..ec73052e4c32ab4b274e8335d184142db09ee46e --- /dev/null +++ b/paperbot_ee_autoroute/cut_test.svg @@ -0,0 +1,5043 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="793.700787402" + height="1122.51968504" + version="1.1" + id="svg2282" + sodipodi:docname="cut_test.svg" + inkscape:version="0.92.4 (unknown)"> + <metadata + id="metadata2286"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1025" + id="namedview2284" + showgrid="false" + inkscape:zoom="3.3638609" + inkscape:cx="143.3423" + inkscape:cy="1114.7026" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="g498" /> + <desc + id="desc2">/home/jingyan/Documents/summer_intern_lemur/roco_electrical/paperbot_ee_autoroute/dwg_w_circuit.dxf - scale = 1.000000, origin = (0.000000, 0.000000), method = manual</desc> + <defs + id="defs14"> + <marker + id="DistanceX" + orient="auto" + refX="0.0" + refY="0.0" + style="overflow:visible"> + <path + d="M 3,-3 L -3,3 M 0,-5 L 0,5" + style="stroke:#000000; stroke-width:0.5" + id="path4" /> + </marker> + <pattern + height="8" + id="Hatch" + patternUnits="userSpaceOnUse" + width="8" + x="0" + y="0"> + <path + d="M8 4 l-4,4" + linecap="square" + stroke="#000000" + stroke-width="0.25" + id="path7" /> + <path + d="M6 2 l-4,4" + linecap="square" + stroke="#000000" + stroke-width="0.25" + id="path9" /> + <path + d="M4 0 l-4,4" + linecap="square" + stroke="#000000" + stroke-width="0.25" + id="path11" /> + </pattern> + </defs> + <g + inkscape:groupmode="layer" + inkscape:label="VIEWPORTS" + id="g16" /> + <g + inkscape:groupmode="layer" + inkscape:label="TABLEGRID" + id="g18" /> + <g + inkscape:groupmode="layer" + inkscape:label="TABLECONTENT" + id="g20" /> + <g + inkscape:groupmode="layer" + inkscape:label="DIMENSIONS" + id="g22" /> + <g + inkscape:groupmode="layer" + inkscape:label="TABLEBACKGROUND" + id="g24" /> + <g + inkscape:groupmode="layer" + inkscape:label="Cut" + id="g498" + style="display:inline"> + <path + d="m 266.35458,3.7662407 v 0" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path30" + inkscape:connector-curvature="0" /> + <path + d="m 36.641431,235.56978 -2.3386,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path310" + inkscape:connector-curvature="0" /> + <path + d="m 36.641431,237.90836 -2.3386,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path312" + inkscape:connector-curvature="0" /> + <path + d="m 45.641451,235.56978 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path314" + inkscape:connector-curvature="0" /> + <path + d="m 45.641451,237.90836 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path316" + inkscape:connector-curvature="0" /> + <path + d="m 54.641471,235.56978 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path318" + inkscape:connector-curvature="0" /> + <path + d="m 54.641471,237.90836 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path320" + inkscape:connector-curvature="0" /> + <path + d="m 63.641491,235.56978 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path322" + inkscape:connector-curvature="0" /> + <path + d="m 63.641491,237.90836 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path324" + inkscape:connector-curvature="0" /> + <path + d="m 72.641521,235.56978 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path326" + inkscape:connector-curvature="0" /> + <path + d="m 72.641521,237.90836 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path328" + inkscape:connector-curvature="0" /> + <path + d="m 81.641531,235.56978 -2.33858,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path330" + inkscape:connector-curvature="0" /> + <path + d="m 81.641531,237.90836 -2.33858,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path332" + inkscape:connector-curvature="0" /> + <path + d="m 90.641551,235.56978 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path334" + inkscape:connector-curvature="0" /> + <path + d="m 90.641551,237.90836 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path336" + inkscape:connector-curvature="0" /> + <path + d="m 99.641581,235.56978 -2.3386,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path338" + inkscape:connector-curvature="0" /> + <path + d="m 99.641581,237.90836 -2.3386,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path340" + inkscape:connector-curvature="0" /> + <path + d="m 108.6416,235.56978 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path342" + inkscape:connector-curvature="0" /> + <path + d="m 108.6416,237.90836 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path344" + inkscape:connector-curvature="0" /> + <path + d="m 117.64162,235.56978 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path346" + inkscape:connector-curvature="0" /> + <path + d="m 117.64162,237.90836 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path348" + inkscape:connector-curvature="0" /> + <path + d="m 179.11815,11.224921 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path350" + inkscape:connector-curvature="0" /> + <path + d="m 179.11815,13.563501 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path352" + inkscape:connector-curvature="0" /> + <path + d="m 170.11813,11.224921 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path354" + inkscape:connector-curvature="0" /> + <path + d="m 170.11813,13.563501 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path356" + inkscape:connector-curvature="0" /> + <path + d="m 161.1181,11.224921 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path358" + inkscape:connector-curvature="0" /> + <path + d="m 161.1181,13.563501 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path360" + inkscape:connector-curvature="0" /> + <path + d="m 152.11808,11.224921 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path362" + inkscape:connector-curvature="0" /> + <path + d="m 152.11808,13.563501 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path364" + inkscape:connector-curvature="0" /> + <path + d="m 143.11806,11.224921 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path366" + inkscape:connector-curvature="0" /> + <path + d="m 143.11806,13.563501 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path368" + inkscape:connector-curvature="0" /> + <path + d="m 134.11804,11.224921 -2.3386,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path370" + inkscape:connector-curvature="0" /> + <path + d="m 134.11804,13.563501 -2.3386,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path372" + inkscape:connector-curvature="0" /> + <path + d="m 125.11801,11.224921 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path374" + inkscape:connector-curvature="0" /> + <path + d="m 125.11801,13.563501 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path376" + inkscape:connector-curvature="0" /> + <path + d="m 116.11799,11.224921 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path378" + inkscape:connector-curvature="0" /> + <path + d="m 116.11799,13.563501 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path380" + inkscape:connector-curvature="0" /> + <path + d="m 107.11797,11.224921 -2.33858,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path382" + inkscape:connector-curvature="0" /> + <path + d="m 107.11797,13.563501 -2.33858,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path384" + inkscape:connector-curvature="0" /> + <path + d="m 98.117951,11.224921 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path386" + inkscape:connector-curvature="0" /> + <path + d="m 98.117951,13.563501 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path388" + inkscape:connector-curvature="0" /> + <path + d="m 89.117931,11.224921 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path390" + inkscape:connector-curvature="0" /> + <path + d="m 89.117931,13.563501 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path392" + inkscape:connector-curvature="0" /> + <path + d="m 80.117911,11.224921 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path394" + inkscape:connector-curvature="0" /> + <path + d="m 80.117911,13.563501 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path396" + inkscape:connector-curvature="0" /> + <path + d="m 71.117891,11.224921 -2.3386,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path398" + inkscape:connector-curvature="0" /> + <path + d="m 71.117891,13.563501 -2.3386,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path400" + inkscape:connector-curvature="0" /> + <path + d="m 62.117861,11.224921 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path402" + inkscape:connector-curvature="0" /> + <path + d="m 62.117861,13.563501 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path404" + inkscape:connector-curvature="0" /> + <path + d="m 53.117841,11.224921 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path406" + inkscape:connector-curvature="0" /> + <path + d="m 53.117841,13.563501 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path408" + inkscape:connector-curvature="0" /> + <path + d="m 53.117841,94.475061 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path410" + inkscape:connector-curvature="0" /> + <path + d="m 53.117841,96.813631 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path412" + inkscape:connector-curvature="0" /> + <path + d="m 62.117861,94.475061 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path414" + inkscape:connector-curvature="0" /> + <path + d="m 62.117861,96.813631 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path416" + inkscape:connector-curvature="0" /> + <path + d="m 71.117891,94.475061 -2.3386,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path418" + inkscape:connector-curvature="0" /> + <path + d="m 71.117891,96.813631 -2.3386,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path420" + inkscape:connector-curvature="0" /> + <path + d="m 80.117911,94.475061 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path422" + inkscape:connector-curvature="0" /> + <path + d="m 80.117911,96.813631 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path424" + inkscape:connector-curvature="0" /> + <path + d="m 89.117931,94.475061 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path426" + inkscape:connector-curvature="0" /> + <path + d="m 89.117931,96.813631 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path428" + inkscape:connector-curvature="0" /> + <path + d="m 98.117951,94.475061 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path430" + inkscape:connector-curvature="0" /> + <path + d="m 98.117951,96.813631 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path432" + inkscape:connector-curvature="0" /> + <path + d="m 107.11797,94.475061 -2.33858,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path434" + inkscape:connector-curvature="0" /> + <path + d="m 107.11797,96.813631 -2.33858,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path436" + inkscape:connector-curvature="0" /> + <path + d="m 116.11799,94.475061 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path438" + inkscape:connector-curvature="0" /> + <path + d="m 116.11799,96.813631 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path440" + inkscape:connector-curvature="0" /> + <path + d="m 125.11801,94.475061 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path442" + inkscape:connector-curvature="0" /> + <path + d="m 125.11801,96.813631 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path444" + inkscape:connector-curvature="0" /> + <path + d="m 134.11804,94.475061 -2.3386,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path446" + inkscape:connector-curvature="0" /> + <path + d="m 134.11804,96.813631 -2.3386,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path448" + inkscape:connector-curvature="0" /> + <path + d="m 143.11806,94.475061 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path450" + inkscape:connector-curvature="0" /> + <path + d="m 143.11806,96.813631 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path452" + inkscape:connector-curvature="0" /> + <path + d="m 152.11808,94.475061 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path454" + inkscape:connector-curvature="0" /> + <path + d="m 152.11808,96.813631 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path456" + inkscape:connector-curvature="0" /> + <path + d="m 161.1181,94.475061 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path458" + inkscape:connector-curvature="0" /> + <path + d="m 161.1181,96.813631 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path460" + inkscape:connector-curvature="0" /> + <path + d="m 170.11813,94.475061 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path462" + inkscape:connector-curvature="0" /> + <path + d="m 170.11813,96.813631 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path464" + inkscape:connector-curvature="0" /> + <path + d="m 179.11815,94.475061 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path466" + inkscape:connector-curvature="0" /> + <path + d="m 179.11815,96.813631 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path468" + inkscape:connector-curvature="0" /> + <path + d="m 162.85433,173.52637 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path470" + inkscape:connector-curvature="0" /> + <path + d="m 162.85433,175.86495 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path472" + inkscape:connector-curvature="0" /> + <path + d="m 171.85435,173.52637 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path474" + inkscape:connector-curvature="0" /> + <path + d="m 171.85435,175.86495 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path476" + inkscape:connector-curvature="0" /> + <path + d="m 180.85438,173.52637 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path478" + inkscape:connector-curvature="0" /> + <path + d="m 180.85438,175.86495 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path480" + inkscape:connector-curvature="0" /> + <path + d="m 242.72066,31.404091 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path482" + inkscape:connector-curvature="0" /> + <path + d="m 242.72066,33.742671 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path484" + inkscape:connector-curvature="0" /> + <path + d="m 242.72066,44.904111 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path486" + inkscape:connector-curvature="0" /> + <path + d="m 242.72066,47.242691 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path488" + inkscape:connector-curvature="0" /> + <path + d="m 225.00409,40.404111 -2.33859,2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path490" + inkscape:connector-curvature="0" /> + <path + d="m 225.00409,42.742681 -2.33859,-2.33857" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path492" + inkscape:connector-curvature="0" /> + <path + d="m 225.00409,26.904081 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path494" + inkscape:connector-curvature="0" /> + <path + d="m 225.00409,29.242661 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750191" + id="path496" + inkscape:connector-curvature="0" /> + </g> + <g + inkscape:groupmode="layer" + inkscape:label="Fold" + id="g546" + style="display:none"> + <path + d="M 185.72281,555.00943 V 420.36354" + style="fill:none;stroke:#00ff00;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path500" + inkscape:connector-curvature="0" /> + <path + d="M 118.39982,420.36354 V 129.81188" + style="fill:none;stroke:#ff0000;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path502" + inkscape:connector-curvature="0" /> + <path + d="M 118.39982,129.81188 H 330.99876" + style="fill:none;stroke:#ff0000;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path504" + inkscape:connector-curvature="0" /> + <path + d="M 54.620127,129.81188 V 420.36354" + style="fill:none;stroke:#ff0000;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path506" + inkscape:connector-curvature="0" /> + <path + d="M 118.39982,767.60821 V 902.25412" + style="fill:none;stroke:#00ff00;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path508" + inkscape:connector-curvature="0" /> + <path + d="M 72.336711,767.60821 H 118.39982" + style="fill:none;stroke:#00ff00;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path510" + inkscape:connector-curvature="0" /> + <path + d="M 72.336711,767.60821 V 902.25412" + style="fill:none;stroke:#00ff00;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path512" + inkscape:connector-curvature="0" /> + <path + d="M 185.72281,767.60821 V 902.25412" + style="fill:none;stroke:#00ff00;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path514" + inkscape:connector-curvature="0" /> + <path + d="M 72.336711,420.36354 V 555.00943" + style="fill:none;stroke:#00ff00;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path516" + inkscape:connector-curvature="0" /> + <path + d="M 118.39982,555.00943 V 420.36354" + style="fill:none;stroke:#00ff00;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path518" + inkscape:connector-curvature="0" /> + <path + d="M 274.3057,767.60821 V 555.00943" + style="fill:none;stroke:#ff0000;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path520" + inkscape:connector-curvature="0" /> + <path + d="M 231.78591,555.00943 V 420.36354" + style="fill:none;stroke:#00ff00;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path522" + inkscape:connector-curvature="0" /> + <path + d="M 320.36881,767.60821 V 555.00943" + style="fill:none;stroke:#ff0000;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path524" + inkscape:connector-curvature="0" /> + <path + d="M 231.78591,902.25412 V 767.60821" + style="fill:none;stroke:#00ff00;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path526" + inkscape:connector-curvature="0" /> + <path + d="m 203.43939,65.677923 h 42.51979" + style="fill:none;stroke:#ff0000;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path528" + inkscape:connector-curvature="0" /> + <path + d="M 330.99876,129.45756 260.13244,17.843198" + style="fill:none;stroke:#00ff00;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path532" + inkscape:connector-curvature="0" /> + <path + d="M 72.336711,555.00943 V 767.60821" + style="fill:none;stroke:#ff0000;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path534" + inkscape:connector-curvature="0" /> + <path + d="M 118.39982,767.60821 V 555.00943" + style="fill:none;stroke:#ff0000;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path536" + inkscape:connector-curvature="0" /> + <path + d="M 394.77844,420.36354 V 129.81188" + style="fill:none;stroke:#ff0000;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path538" + inkscape:connector-curvature="0" /> + <path + d="M 189.26612,17.843198 118.39982,129.45756" + style="fill:none;stroke:#00ff00;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path540" + inkscape:connector-curvature="0" /> + <path + d="M 118.39982,555.00943 H 72.336711" + style="fill:none;stroke:#00ff00;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path542" + inkscape:connector-curvature="0" /> + <path + d="M 185.72281,420.36354 H 118.39982" + style="fill:none;stroke:#ff0000;stroke-width:0.93750191;stroke-dasharray:0.46875096, 3.54328851" + id="path544" + inkscape:connector-curvature="0" /> + </g> + <g + inkscape:groupmode="layer" + inkscape:label="Circuit_Cut" + id="g1752" + style="display:inline"> + <path + d="m 39.015441,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path548" + inkscape:connector-curvature="0" /> + <path + d="m 39.015441,240.28237 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path550" + inkscape:connector-curvature="0" /> + <path + d="m 31.928821,240.28237 v -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path552" + inkscape:connector-curvature="0" /> + <path + d="M 39.015441,233.19575 V 222.62646" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path554" + inkscape:connector-curvature="0" /> + <path + d="M 31.928821,233.19575 V 219.69108" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path556" + inkscape:connector-curvature="0" /> + <path + d="m 39.015441,222.62646 15.12039,-15.12038" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path558" + inkscape:connector-curvature="0" /> + <path + d="M 31.928821,219.69108 47.049201,204.5707" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path560" + inkscape:connector-curvature="0" /> + <path + d="m 54.135831,207.50608 v -39.6717" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path562" + inkscape:connector-curvature="0" /> + <path + d="M 54.135831,160.74777 V 98.872921" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path564" + inkscape:connector-curvature="0" /> + <path + d="M 47.049201,204.5707 V 96.894521" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path566" + inkscape:connector-curvature="0" /> + <path + d="m 53.945241,99.187661 h 1.54662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path568" + inkscape:connector-curvature="0" /> + <path + d="m 55.491861,99.187661 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path570" + inkscape:connector-curvature="0" /> + <path + d="m 55.491861,92.101031 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path572" + inkscape:connector-curvature="0" /> + <path + d="m 48.405231,92.101031 v 2.55412" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path574" + inkscape:connector-curvature="0" /> + <path + d="m 54.135831,98.872921 -0.19059,0.31474" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path576" + inkscape:connector-curvature="0" /> + <path + d="m 47.049201,96.894521 1.35603,-2.23937" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path578" + inkscape:connector-curvature="0" /> + <path + d="m 174.22837,171.15234 v 7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path580" + inkscape:connector-curvature="0" /> + <path + d="m 174.22837,178.23898 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path582" + inkscape:connector-curvature="0" /> + <path + d="m 167.14175,178.23898 v -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path584" + inkscape:connector-curvature="0" /> + <path + d="m 174.22837,171.15234 v -1.57291" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path586" + inkscape:connector-curvature="0" /> + <path + d="m 167.14175,171.15234 v 1.36245" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path588" + inkscape:connector-curvature="0" /> + <path + d="m 167.14175,172.51479 -4.68042,-4.68041" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path590" + inkscape:connector-curvature="0" /> + <path + d="m 174.22837,169.57943 -8.83166,-8.83166" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path592" + inkscape:connector-curvature="0" /> + <path + d="M 162.46133,167.83438 H 54.135831" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path594" + inkscape:connector-curvature="0" /> + <path + d="M 165.39671,160.74777 H 54.135831" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path596" + inkscape:connector-curvature="0" /> + <path + d="m 165.00738,178.23898 h 0.22097" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path598" + inkscape:connector-curvature="0" /> + <path + d="m 165.22835,178.23898 v -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path600" + inkscape:connector-curvature="0" /> + <path + d="m 165.22835,171.15234 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path602" + inkscape:connector-curvature="0" /> + <path + d="m 158.14172,171.15234 v 3.42928" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path604" + inkscape:connector-curvature="0" /> + <path + d="m 158.14172,174.58162 -0.4193,6.50724" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path606" + inkscape:connector-curvature="0" /> + <path + d="m 157.26577,188.17548 v 0" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path608" + inkscape:connector-curvature="0" /> + <path + d="m 165.00738,178.23898 -0.18364,2.84988" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path610" + inkscape:connector-curvature="0" /> + <path + d="M 157.26577,188.17548 H 188.1083" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path612" + inkscape:connector-curvature="0" /> + <path + d="m 164.82374,181.08886 h 20.34918" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path614" + inkscape:connector-curvature="0" /> + <path + d="m 188.1083,188.17548 56.98639,-56.98634" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path616" + inkscape:connector-curvature="0" /> + <path + d="m 185.17292,181.08886 52.83513,-52.8351" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path618" + inkscape:connector-curvature="0" /> + <path + d="M 245.09469,131.18914 V 47.596991" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path620" + inkscape:connector-curvature="0" /> + <path + d="M 238.00805,128.25376 V 44.549811" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path622" + inkscape:connector-curvature="0" /> + <path + d="m 245.09469,47.596991 9.81215,-9.30013" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path624" + inkscape:connector-curvature="0" /> + <path + d="m 238.00805,44.549811 9.81216,-9.30014" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path626" + inkscape:connector-curvature="0" /> + <path + d="M 254.90684,38.296861 V 27.075181" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path628" + inkscape:connector-curvature="0" /> + <path + d="m 247.82021,35.249671 v -5.23912" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path630" + inkscape:connector-curvature="0" /> + <path + d="m 247.82021,30.010551 -8.42712,-8.42711" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path632" + inkscape:connector-curvature="0" /> + <path + d="M 254.90684,27.075181 242.32847,14.496811" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path634" + inkscape:connector-curvature="0" /> + <path + d="M 239.39309,21.583441 H 194.02635" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path636" + inkscape:connector-curvature="0" /> + <path + d="M 242.32847,14.496811 H 191.09096" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path638" + inkscape:connector-curvature="0" /> + <path + d="m 194.02635,21.583441 -66.53432,66.53425" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path640" + inkscape:connector-curvature="0" /> + <path + d="m 191.09096,14.496811 -70.68556,70.6855" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path642" + inkscape:connector-curvature="0" /> + <path + d="m 127.49203,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path644" + inkscape:connector-curvature="0" /> + <path + d="M 127.49203,99.187661 H 120.4054" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path646" + inkscape:connector-curvature="0" /> + <path + d="m 120.4054,99.187661 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path648" + inkscape:connector-curvature="0" /> + <path + d="m 127.49203,88.117691 v 3.98334" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path650" + inkscape:connector-curvature="0" /> + <path + d="m 120.4054,85.182311 v 6.91872" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path652" + inkscape:connector-curvature="0" /> + <path + d="M 157.72242,181.08886 H 86.117051" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path654" + inkscape:connector-curvature="0" /> + <path + d="M 157.26577,188.17548 H 89.052421" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path656" + inkscape:connector-curvature="0" /> + <path + d="m 89.052421,188.17548 -41.03695,41.03694" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path658" + inkscape:connector-curvature="0" /> + <path + d="m 86.117051,181.08886 -45.18821,45.18817" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path660" + inkscape:connector-curvature="0" /> + <path + d="m 48.015471,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path662" + inkscape:connector-curvature="0" /> + <path + d="m 48.015471,240.28237 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path664" + inkscape:connector-curvature="0" /> + <path + d="m 40.928841,240.28237 v -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path666" + inkscape:connector-curvature="0" /> + <path + d="m 48.015471,229.21242 v 3.98333" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path668" + inkscape:connector-curvature="0" /> + <path + d="m 40.928841,226.27703 v 6.91872" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path670" + inkscape:connector-curvature="0" /> + <path + d="m 183.22839,177.10704 v 1.13194" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path672" + inkscape:connector-curvature="0" /> + <path + d="m 183.22839,178.23898 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path674" + inkscape:connector-curvature="0" /> + <path + d="m 176.14177,178.23898 v -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path676" + inkscape:connector-curvature="0" /> + <path + d="m 176.14177,171.15234 h 2.86975" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path678" + inkscape:connector-curvature="0" /> + <path + d="m 183.22839,177.10704 5.25367,-2.07222" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path680" + inkscape:connector-curvature="0" /> + <path + d="m 179.01152,171.15234 5.50063,-2.16963" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path682" + inkscape:connector-curvature="0" /> + <path + d="m 188.48206,175.03482 38.89605,-38.89604" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path684" + inkscape:connector-curvature="0" /> + <path + d="m 184.51215,168.98271 35.77933,-35.77929" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path686" + inkscape:connector-curvature="0" /> + <path + d="m 227.37811,45.116711 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path688" + inkscape:connector-curvature="0" /> + <path + d="m 227.37811,38.030081 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path690" + inkscape:connector-curvature="0" /> + <path + d="m 220.29148,38.030081 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path692" + inkscape:connector-curvature="0" /> + <path + d="M 227.37811,136.13878 V 45.116711" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path694" + inkscape:connector-curvature="0" /> + <path + d="M 220.29148,133.20342 V 45.116711" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path696" + inkscape:connector-curvature="0" /> + <path + d="m 227.37811,31.616681 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path698" + inkscape:connector-curvature="0" /> + <path + d="m 220.29148,31.616681 v -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path700" + inkscape:connector-curvature="0" /> + <path + d="m 220.29148,24.530061 h 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path702" + inkscape:connector-curvature="0" /> + <path + d="m 227.37811,24.530061 v 0" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path704" + inkscape:connector-curvature="0" /> + <path + d="m 227.37811,31.616681 h 8.20557" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path706" + inkscape:connector-curvature="0" /> + <path + d="m 227.37811,24.530061 h 11.14094" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path708" + inkscape:connector-curvature="0" /> + <path + d="m 238.00805,34.041071 v 2.07562" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path710" + inkscape:connector-curvature="0" /> + <path + d="m 238.00805,36.116691 h 7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path712" + inkscape:connector-curvature="0" /> + <path + d="m 245.09469,36.116691 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path714" + inkscape:connector-curvature="0" /> + <path + d="m 245.09469,29.030061 h -2.07563" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path716" + inkscape:connector-curvature="0" /> + <path + d="m 235.58368,31.616681 2.42437,2.42439" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path718" + inkscape:connector-curvature="0" /> + <path + d="m 238.51905,24.530061 4.50001,4.5" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path720" + inkscape:connector-curvature="0" /> + <path + d="m 57.015491,240.28237 v -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path722" + inkscape:connector-curvature="0" /> + <path + d="m 57.015491,233.19575 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path724" + inkscape:connector-curvature="0" /> + <path + d="m 49.928861,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path726" + inkscape:connector-curvature="0" /> + <path + d="m 57.015491,240.28237 v 3.28258" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path728" + inkscape:connector-curvature="0" /> + <path + d="m 49.928861,240.28237 v 0.34721" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path730" + inkscape:connector-curvature="0" /> + <path + d="m 57.015491,243.56495 -6.66457,6.66457" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path732" + inkscape:connector-curvature="0" /> + <path + d="m 49.928861,240.62958 -2.51332,2.51332" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path734" + inkscape:connector-curvature="0" /> + <path + d="M 50.350921,250.22952 H 30.082341" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path736" + inkscape:connector-curvature="0" /> + <path + d="M 47.415541,243.1429 H 33.017721" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path738" + inkscape:connector-curvature="0" /> + <path + d="m 30.082341,250.22952 -8.11131,-8.1113" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path740" + inkscape:connector-curvature="0" /> + <path + d="m 33.017721,243.1429 -3.96005,-3.96006" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path742" + inkscape:connector-curvature="0" /> + <path + d="M 29.057671,239.18284 V 109.48741" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path744" + inkscape:connector-curvature="0" /> + <path + d="M 21.971031,242.11822 V 106.55204" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path746" + inkscape:connector-curvature="0" /> + <path + d="M 29.057671,109.48741 49.231231,89.313871" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path748" + inkscape:connector-curvature="0" /> + <path + d="M 21.971031,106.55204 46.295851,82.227241" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path750" + inkscape:connector-curvature="0" /> + <path + d="M 49.231231,89.313871 H 101.82748" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path752" + inkscape:connector-curvature="0" /> + <path + d="M 46.295851,82.227241 H 108.31098" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path754" + inkscape:connector-curvature="0" /> + <path + d="m 102.40536,95.801841 v 3.38582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path756" + inkscape:connector-curvature="0" /> + <path + d="m 102.40536,99.187661 h 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path758" + inkscape:connector-curvature="0" /> + <path + d="m 109.49199,99.187661 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path760" + inkscape:connector-curvature="0" /> + <path + d="m 109.49199,92.101031 h -0.30157" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path762" + inkscape:connector-curvature="0" /> + <path + d="m 101.82748,89.313871 0.57788,6.48797" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path764" + inkscape:connector-curvature="0" /> + <path + d="m 108.31098,82.227241 0.87944,9.87379" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path766" + inkscape:connector-curvature="0" /> + <path + d="m 118.49202,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path768" + inkscape:connector-curvature="0" /> + <path + d="m 118.49202,99.187661 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path770" + inkscape:connector-curvature="0" /> + <path + d="m 111.40538,99.187661 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path772" + inkscape:connector-curvature="0" /> + <path + d="M 118.49202,92.101031 V 81.639361" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path774" + inkscape:connector-curvature="0" /> + <path + d="m 111.40538,92.101031 v -7.5263" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path776" + inkscape:connector-curvature="0" /> + <path + d="m 111.40538,84.574731 -4.20702,-4.20703" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path778" + inkscape:connector-curvature="0" /> + <path + d="m 118.49202,81.639361 -8.35828,-8.35828" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path780" + inkscape:connector-curvature="0" /> + <path + d="M 107.19836,80.367701 H 45.453691" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path782" + inkscape:connector-curvature="0" /> + <path + d="M 110.13374,73.281081 H 42.518321" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path784" + inkscape:connector-curvature="0" /> + <path + d="M 45.453691,80.367701 20.161111,105.66028" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path786" + inkscape:connector-curvature="0" /> + <path + d="M 42.518321,73.281081 13.074481,102.7249" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path788" + inkscape:connector-curvature="0" /> + <path + d="M 20.161111,105.66028 V 242.98623" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path790" + inkscape:connector-curvature="0" /> + <path + d="M 13.074481,102.7249 V 245.92161" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path792" + inkscape:connector-curvature="0" /> + <path + d="m 13.074481,245.92161 13.36852,13.36852" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path794" + inkscape:connector-curvature="0" /> + <path + d="m 20.161111,242.98623 9.21727,9.21727" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path796" + inkscape:connector-curvature="0" /> + <path + d="m 26.443001,259.29013 h 27.63194" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path798" + inkscape:connector-curvature="0" /> + <path + d="m 29.378381,252.2035 h 21.76118" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path800" + inkscape:connector-curvature="0" /> + <path + d="m 54.074941,259.29013 11.94057,-11.94057" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path802" + inkscape:connector-curvature="0" /> + <path + d="m 51.139561,252.2035 7.78933,-7.78931" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path804" + inkscape:connector-curvature="0" /> + <path + d="m 66.015511,240.28237 v -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path806" + inkscape:connector-curvature="0" /> + <path + d="m 66.015511,233.19575 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path808" + inkscape:connector-curvature="0" /> + <path + d="m 58.928891,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path810" + inkscape:connector-curvature="0" /> + <path + d="m 66.015511,247.34956 v -7.06719" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path812" + inkscape:connector-curvature="0" /> + <path + d="m 58.928891,244.41419 v -4.13182" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path814" + inkscape:connector-curvature="0" /> + <path + d="m 38.129611,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path816" + inkscape:connector-curvature="0" /> + <path + d="m 38.129611,239.39655 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path818" + inkscape:connector-curvature="0" /> + <path + d="m 32.814641,239.39655 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path820" + inkscape:connector-curvature="0" /> + <path + d="M 38.129611,234.08158 V 222.25954" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path822" + inkscape:connector-curvature="0" /> + <path + d="M 32.814641,234.08158 V 220.058" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path824" + inkscape:connector-curvature="0" /> + <path + d="m 38.129611,222.25954 15.1204,-15.12039" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path826" + inkscape:connector-curvature="0" /> + <path + d="m 32.814641,220.058 15.12039,-15.12038" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path828" + inkscape:connector-curvature="0" /> + <path + d="M 53.250011,207.13915 V 166.94856" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path830" + inkscape:connector-curvature="0" /> + <path + d="M 53.250011,161.63359 V 98.625621" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path832" + inkscape:connector-curvature="0" /> + <path + d="M 47.935031,204.93762 V 97.141821" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path834" + inkscape:connector-curvature="0" /> + <path + d="m 53.446071,98.301841 h 1.15997" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path836" + inkscape:connector-curvature="0" /> + <path + d="m 54.606041,98.301841 v -5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path838" + inkscape:connector-curvature="0" /> + <path + d="m 54.606041,92.986851 h -5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path840" + inkscape:connector-curvature="0" /> + <path + d="m 49.291051,92.986851 v 1.9156" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path842" + inkscape:connector-curvature="0" /> + <path + d="m 53.250011,98.625621 0.19606,-0.32378" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path844" + inkscape:connector-curvature="0" /> + <path + d="m 47.935031,97.141821 1.35602,-2.23937" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path846" + inkscape:connector-curvature="0" /> + <path + d="m 173.34254,172.03817 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path848" + inkscape:connector-curvature="0" /> + <path + d="m 173.34254,177.35314 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path850" + inkscape:connector-curvature="0" /> + <path + d="m 168.02757,177.35314 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path852" + inkscape:connector-curvature="0" /> + <path + d="m 173.34254,172.03817 v -2.09183" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path854" + inkscape:connector-curvature="0" /> + <path + d="m 168.02757,172.03817 v 0.10971" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path856" + inkscape:connector-curvature="0" /> + <path + d="m 168.02757,172.14788 -5.19932,-5.19932" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path858" + inkscape:connector-curvature="0" /> + <path + d="m 173.34254,169.94634 -8.31275,-8.31275" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path860" + inkscape:connector-curvature="0" /> + <path + d="M 162.82825,166.94856 H 53.250011" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path862" + inkscape:connector-curvature="0" /> + <path + d="M 165.02979,161.63359 H 53.250011" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path864" + inkscape:connector-curvature="0" /> + <path + d="m 164.17679,177.35314 0.16573,-5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path866" + inkscape:connector-curvature="0" /> + <path + d="m 164.34252,172.03817 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path868" + inkscape:connector-curvature="0" /> + <path + d="m 159.02755,172.03817 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path870" + inkscape:connector-curvature="0" /> + <path + d="M 159.02755,177.35314 H 158.8508" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path872" + inkscape:connector-curvature="0" /> + <path + d="m 158.8508,177.35314 -0.2978,4.62154" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path874" + inkscape:connector-curvature="0" /> + <path + d="m 158.21052,187.28965 v 0" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path876" + inkscape:connector-curvature="0" /> + <path + d="m 164.17679,177.35314 -0.29779,4.62154" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path878" + inkscape:connector-curvature="0" /> + <path + d="m 158.21052,187.28965 h 29.53086" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path880" + inkscape:connector-curvature="0" /> + <path + d="m 163.879,181.97468 h 21.66085" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path882" + inkscape:connector-curvature="0" /> + <path + d="m 187.74138,187.28965 56.46748,-56.46744" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path884" + inkscape:connector-curvature="0" /> + <path + d="m 185.53985,181.97468 53.35404,-53.354" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path886" + inkscape:connector-curvature="0" /> + <path + d="M 244.20886,130.82221 V 47.216091" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path888" + inkscape:connector-curvature="0" /> + <path + d="M 238.89389,128.62068 V 44.930711" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path890" + inkscape:connector-curvature="0" /> + <path + d="m 244.20886,47.216091 9.81215,-9.30012" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path892" + inkscape:connector-curvature="0" /> + <path + d="m 238.89389,44.930711 9.81215,-9.30014" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path894" + inkscape:connector-curvature="0" /> + <path + d="M 254.02101,37.915971 V 27.442091" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path896" + inkscape:connector-curvature="0" /> + <path + d="m 248.70604,35.630571 v -5.98694" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path898" + inkscape:connector-curvature="0" /> + <path + d="m 248.70604,29.643631 -8.94603,-8.94602" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path900" + inkscape:connector-curvature="0" /> + <path + d="M 254.02101,27.442091 241.96156,15.382641" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path902" + inkscape:connector-curvature="0" /> + <path + d="M 239.76001,20.697611 H 193.65942" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path904" + inkscape:connector-curvature="0" /> + <path + d="M 241.96156,15.382641 H 191.45789" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path906" + inkscape:connector-curvature="0" /> + <path + d="m 193.65942,20.697611 -67.05321,67.05316" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path908" + inkscape:connector-curvature="0" /> + <path + d="m 191.45789,15.382641 -70.16665,70.1666" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path910" + inkscape:connector-curvature="0" /> + <path + d="m 126.60621,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path912" + inkscape:connector-curvature="0" /> + <path + d="m 126.60621,98.301841 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path914" + inkscape:connector-curvature="0" /> + <path + d="m 121.29124,98.301841 v -5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path916" + inkscape:connector-curvature="0" /> + <path + d="m 126.60621,87.750771 v 5.23608" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path918" + inkscape:connector-curvature="0" /> + <path + d="m 121.29124,85.549241 v 7.43761" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path920" + inkscape:connector-curvature="0" /> + <path + d="M 158.553,181.97468 H 86.483971" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path922" + inkscape:connector-curvature="0" /> + <path + d="M 158.21052,187.28965 H 88.685501" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path924" + inkscape:connector-curvature="0" /> + <path + d="m 88.685501,187.28965 -41.55587,41.55583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path926" + inkscape:connector-curvature="0" /> + <path + d="m 86.483971,181.97468 -44.66931,44.66928" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path928" + inkscape:connector-curvature="0" /> + <path + d="m 47.129631,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path930" + inkscape:connector-curvature="0" /> + <path + d="m 47.129631,239.39655 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path932" + inkscape:connector-curvature="0" /> + <path + d="m 41.814661,239.39655 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path934" + inkscape:connector-curvature="0" /> + <path + d="m 47.129631,228.84548 v 5.2361" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path936" + inkscape:connector-curvature="0" /> + <path + d="m 41.814661,226.64396 v 7.43762" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path938" + inkscape:connector-curvature="0" /> + <path + d="m 182.34256,176.50419 v 0.84895" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path940" + inkscape:connector-curvature="0" /> + <path + d="m 182.34256,177.35314 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path942" + inkscape:connector-curvature="0" /> + <path + d="m 177.02759,177.35314 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path944" + inkscape:connector-curvature="0" /> + <path + d="m 177.02759,172.03817 h 2.15233" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path946" + inkscape:connector-curvature="0" /> + <path + d="m 182.34256,176.50419 5.64325,-2.22589" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path948" + inkscape:connector-curvature="0" /> + <path + d="m 179.17992,172.03817 5.82847,-2.29894" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path950" + inkscape:connector-curvature="0" /> + <path + d="m 187.98581,174.2783 38.50647,-38.50643" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path952" + inkscape:connector-curvature="0" /> + <path + d="m 185.00839,169.73923 36.16891,-36.1689" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path954" + inkscape:connector-curvature="0" /> + <path + d="m 226.49228,44.230881 v -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path956" + inkscape:connector-curvature="0" /> + <path + d="M 226.49228,38.915901 H 221.1773" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path958" + inkscape:connector-curvature="0" /> + <path + d="m 221.1773,38.915901 v 5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path960" + inkscape:connector-curvature="0" /> + <path + d="M 226.49228,135.77187 V 44.230881" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path962" + inkscape:connector-curvature="0" /> + <path + d="M 221.1773,133.57033 V 44.230881" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path964" + inkscape:connector-curvature="0" /> + <path + d="M 226.49228,30.730861 H 221.1773" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path966" + inkscape:connector-curvature="0" /> + <path + d="m 221.1773,30.730861 v -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path968" + inkscape:connector-curvature="0" /> + <path + d="m 221.1773,25.415881 h 5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path970" + inkscape:connector-curvature="0" /> + <path + d="m 226.49228,25.415881 v 0" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path972" + inkscape:connector-curvature="0" /> + <path + d="m 226.49228,30.730861 h 9.45832" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path974" + inkscape:connector-curvature="0" /> + <path + d="m 226.49228,25.415881 h 11.65985" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path976" + inkscape:connector-curvature="0" /> + <path + d="m 238.89389,33.674141 v 1.55673" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path978" + inkscape:connector-curvature="0" /> + <path + d="m 238.89389,35.230871 h 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path980" + inkscape:connector-curvature="0" /> + <path + d="m 244.20886,35.230871 v -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path982" + inkscape:connector-curvature="0" /> + <path + d="m 244.20886,29.915891 h -1.55672" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path984" + inkscape:connector-curvature="0" /> + <path + d="m 235.9506,30.730861 2.94329,2.94328" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path986" + inkscape:connector-curvature="0" /> + <path + d="m 238.15213,25.415881 4.50001,4.50001" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path988" + inkscape:connector-curvature="0" /> + <path + d="m 56.129661,239.39655 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path990" + inkscape:connector-curvature="0" /> + <path + d="m 56.129661,234.08158 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path992" + inkscape:connector-curvature="0" /> + <path + d="m 50.814691,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path994" + inkscape:connector-curvature="0" /> + <path + d="m 56.129661,239.39655 v 3.80148" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path996" + inkscape:connector-curvature="0" /> + <path + d="m 50.814691,239.39655 v 1.59995" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path998" + inkscape:connector-curvature="0" /> + <path + d="m 56.129661,243.19803 -6.14567,6.14566" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1000" + inkscape:connector-curvature="0" /> + <path + d="m 50.814691,240.9965 -3.03223,3.03223" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1002" + inkscape:connector-curvature="0" /> + <path + d="M 49.983991,249.34369 H 30.449271" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1004" + inkscape:connector-curvature="0" /> + <path + d="M 47.782461,244.02873 H 32.650791" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1006" + inkscape:connector-curvature="0" /> + <path + d="m 30.449271,249.34369 -7.59241,-7.59239" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1008" + inkscape:connector-curvature="0" /> + <path + d="m 32.650791,244.02873 -4.47895,-4.47896" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1010" + inkscape:connector-curvature="0" /> + <path + d="M 28.171841,239.54977 V 109.12049" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1012" + inkscape:connector-curvature="0" /> + <path + d="M 22.856861,241.7513 V 106.91895" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1014" + inkscape:connector-curvature="0" /> + <path + d="M 28.171841,109.12049 48.864301,88.428031" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1016" + inkscape:connector-curvature="0" /> + <path + d="M 22.856861,106.91895 46.662771,83.113061" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1018" + inkscape:connector-curvature="0" /> + <path + d="M 48.864301,88.428031 H 102.63792" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1020" + inkscape:connector-curvature="0" /> + <path + d="M 46.662771,83.113061 H 107.50053" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1022" + inkscape:connector-curvature="0" /> + <path + d="m 103.29119,95.762461 v 2.53938" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1024" + inkscape:connector-curvature="0" /> + <path + d="m 103.29119,98.301841 h 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1026" + inkscape:connector-curvature="0" /> + <path + d="m 108.60616,98.301841 v -5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1028" + inkscape:connector-curvature="0" /> + <path + d="m 108.60616,92.986851 h -0.22617" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1030" + inkscape:connector-curvature="0" /> + <path + d="m 102.63792,88.428031 0.65327,7.33443" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1032" + inkscape:connector-curvature="0" /> + <path + d="m 107.50053,83.113061 0.87946,9.87379" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1034" + inkscape:connector-curvature="0" /> + <path + d="m 117.60618,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1036" + inkscape:connector-curvature="0" /> + <path + d="m 117.60618,98.301841 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1038" + inkscape:connector-curvature="0" /> + <path + d="m 112.29121,98.301841 v -5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1040" + inkscape:connector-curvature="0" /> + <path + d="M 117.60618,92.986851 V 82.006281" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1042" + inkscape:connector-curvature="0" /> + <path + d="m 112.29121,92.986851 v -8.77904" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1044" + inkscape:connector-curvature="0" /> + <path + d="m 112.29121,84.207811 -4.72593,-4.72593" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1046" + inkscape:connector-curvature="0" /> + <path + d="m 117.60618,82.006281 -7.83936,-7.83937" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1048" + inkscape:connector-curvature="0" /> + <path + d="M 107.56528,79.481881 H 45.086771" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1050" + inkscape:connector-curvature="0" /> + <path + d="M 109.76682,74.166911 H 42.885241" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1052" + inkscape:connector-curvature="0" /> + <path + d="M 45.086771,79.481881 19.275281,105.29336" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1054" + inkscape:connector-curvature="0" /> + <path + d="M 42.885241,74.166911 13.960301,103.09182" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1056" + inkscape:connector-curvature="0" /> + <path + d="M 19.275281,105.29336 V 243.35315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1058" + inkscape:connector-curvature="0" /> + <path + d="M 13.960301,103.09182 V 245.55468" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1060" + inkscape:connector-curvature="0" /> + <path + d="m 13.960301,245.55468 12.84962,12.84962" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1062" + inkscape:connector-curvature="0" /> + <path + d="m 19.275281,243.35315 9.73618,9.73618" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1064" + inkscape:connector-curvature="0" /> + <path + d="m 26.809921,258.4043 h 26.8981" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1066" + inkscape:connector-curvature="0" /> + <path + d="m 29.011461,253.08933 h 22.49502" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1068" + inkscape:connector-curvature="0" /> + <path + d="m 53.708021,258.4043 11.42166,-11.42166" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1070" + inkscape:connector-curvature="0" /> + <path + d="m 51.506481,253.08933 8.30823,-8.30822" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1072" + inkscape:connector-curvature="0" /> + <path + d="m 65.129681,239.39655 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1074" + inkscape:connector-curvature="0" /> + <path + d="m 65.129681,234.08158 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1076" + inkscape:connector-curvature="0" /> + <path + d="m 59.814711,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1078" + inkscape:connector-curvature="0" /> + <path + d="m 65.129681,246.98264 v -7.58609" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1080" + inkscape:connector-curvature="0" /> + <path + d="m 59.814711,244.78111 v -5.38456" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1082" + inkscape:connector-curvature="0" /> + <path + d="m 39.015441,240.28237 -0.88583,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1084" + inkscape:connector-curvature="0" /> + <path + d="m 55.491861,92.101031 -0.88582,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1086" + inkscape:connector-curvature="0" /> + <path + d="m 174.22837,178.23898 -0.88583,-0.88584" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1088" + inkscape:connector-curvature="0" /> + <path + d="m 165.22835,171.15234 -0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1090" + inkscape:connector-curvature="0" /> + <path + d="m 127.49203,99.187661 -0.88582,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1092" + inkscape:connector-curvature="0" /> + <path + d="m 48.015471,240.28237 -0.88584,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1094" + inkscape:connector-curvature="0" /> + <path + d="m 176.14177,178.23898 0.88582,-0.88584" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1096" + inkscape:connector-curvature="0" /> + <path + d="m 227.37811,38.030081 -0.88583,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1098" + inkscape:connector-curvature="0" /> + <path + d="m 220.29148,31.616681 0.88582,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1100" + inkscape:connector-curvature="0" /> + <path + d="m 245.09469,36.116691 -0.88583,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1102" + inkscape:connector-curvature="0" /> + <path + d="m 57.015491,233.19575 -0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1104" + inkscape:connector-curvature="0" /> + <path + d="m 109.49199,99.187661 -0.88583,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1106" + inkscape:connector-curvature="0" /> + <path + d="m 118.49202,99.187661 -0.88584,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1108" + inkscape:connector-curvature="0" /> + <path + d="m 66.015511,233.19575 -0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1110" + inkscape:connector-curvature="0" /> + <path + d="m 75.015531,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1112" + inkscape:connector-curvature="0" /> + <path + d="m 75.015531,240.28237 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1114" + inkscape:connector-curvature="0" /> + <path + d="m 67.928911,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1116" + inkscape:connector-curvature="0" /> + <path + d="m 75.015531,233.19575 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1118" + inkscape:connector-curvature="0" /> + <path + d="m 74.129701,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1120" + inkscape:connector-curvature="0" /> + <path + d="m 74.129701,239.39655 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1122" + inkscape:connector-curvature="0" /> + <path + d="m 68.814731,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1124" + inkscape:connector-curvature="0" /> + <path + d="m 74.129701,234.08158 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1126" + inkscape:connector-curvature="0" /> + <path + d="m 75.015531,240.28237 -0.88583,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1128" + inkscape:connector-curvature="0" /> + <path + d="m 67.928911,233.19575 0.88582,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1130" + inkscape:connector-curvature="0" /> + <path + d="m 84.015561,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1132" + inkscape:connector-curvature="0" /> + <path + d="m 84.015561,240.28237 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1134" + inkscape:connector-curvature="0" /> + <path + d="m 76.928921,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1136" + inkscape:connector-curvature="0" /> + <path + d="m 84.015561,233.19575 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1138" + inkscape:connector-curvature="0" /> + <path + d="m 83.129721,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1140" + inkscape:connector-curvature="0" /> + <path + d="m 83.129721,239.39655 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1142" + inkscape:connector-curvature="0" /> + <path + d="m 77.814751,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1144" + inkscape:connector-curvature="0" /> + <path + d="m 83.129721,234.08158 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1146" + inkscape:connector-curvature="0" /> + <path + d="m 84.015561,240.28237 -0.88584,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1148" + inkscape:connector-curvature="0" /> + <path + d="m 76.928921,233.19575 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1150" + inkscape:connector-curvature="0" /> + <path + d="m 93.015581,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1152" + inkscape:connector-curvature="0" /> + <path + d="m 93.015581,240.28237 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1154" + inkscape:connector-curvature="0" /> + <path + d="m 85.928941,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1156" + inkscape:connector-curvature="0" /> + <path + d="m 93.015581,233.19575 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1158" + inkscape:connector-curvature="0" /> + <path + d="m 92.129751,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1160" + inkscape:connector-curvature="0" /> + <path + d="m 92.129751,239.39655 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1162" + inkscape:connector-curvature="0" /> + <path + d="m 86.814781,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1164" + inkscape:connector-curvature="0" /> + <path + d="m 92.129751,234.08158 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1166" + inkscape:connector-curvature="0" /> + <path + d="m 93.015581,240.28237 -0.88583,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1168" + inkscape:connector-curvature="0" /> + <path + d="m 85.928941,233.19575 0.88584,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1170" + inkscape:connector-curvature="0" /> + <path + d="m 102.01559,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1172" + inkscape:connector-curvature="0" /> + <path + d="M 102.01559,240.28237 H 94.928971" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1174" + inkscape:connector-curvature="0" /> + <path + d="m 94.928971,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1176" + inkscape:connector-curvature="0" /> + <path + d="M 102.01559,233.19575 H 94.928971" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1178" + inkscape:connector-curvature="0" /> + <path + d="m 101.12977,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1180" + inkscape:connector-curvature="0" /> + <path + d="M 101.12977,239.39655 H 95.814801" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1182" + inkscape:connector-curvature="0" /> + <path + d="m 95.814801,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1184" + inkscape:connector-curvature="0" /> + <path + d="M 101.12977,234.08158 H 95.814801" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1186" + inkscape:connector-curvature="0" /> + <path + d="m 102.01559,240.28237 -0.88582,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1188" + inkscape:connector-curvature="0" /> + <path + d="m 94.928971,233.19575 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1190" + inkscape:connector-curvature="0" /> + <path + d="m 111.01562,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1192" + inkscape:connector-curvature="0" /> + <path + d="m 111.01562,240.28237 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1194" + inkscape:connector-curvature="0" /> + <path + d="m 103.92899,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1196" + inkscape:connector-curvature="0" /> + <path + d="m 111.01562,233.19575 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1198" + inkscape:connector-curvature="0" /> + <path + d="m 110.12979,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1200" + inkscape:connector-curvature="0" /> + <path + d="m 110.12979,239.39655 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1202" + inkscape:connector-curvature="0" /> + <path + d="m 104.81482,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1204" + inkscape:connector-curvature="0" /> + <path + d="m 110.12979,234.08158 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1206" + inkscape:connector-curvature="0" /> + <path + d="m 111.01562,240.28237 -0.88583,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1208" + inkscape:connector-curvature="0" /> + <path + d="m 103.92899,233.19575 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1210" + inkscape:connector-curvature="0" /> + <path + d="m 120.01564,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1212" + inkscape:connector-curvature="0" /> + <path + d="m 120.01564,240.28237 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1214" + inkscape:connector-curvature="0" /> + <path + d="m 112.92901,233.19575 v 7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1216" + inkscape:connector-curvature="0" /> + <path + d="m 120.01564,233.19575 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1218" + inkscape:connector-curvature="0" /> + <path + d="m 119.12982,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1220" + inkscape:connector-curvature="0" /> + <path + d="m 119.12982,239.39655 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1222" + inkscape:connector-curvature="0" /> + <path + d="m 113.81484,234.08158 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1224" + inkscape:connector-curvature="0" /> + <path + d="m 119.12982,234.08158 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1226" + inkscape:connector-curvature="0" /> + <path + d="m 120.01564,240.28237 -0.88582,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1228" + inkscape:connector-curvature="0" /> + <path + d="m 112.92901,233.19575 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1230" + inkscape:connector-curvature="0" /> + <path + d="M 181.49217,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1232" + inkscape:connector-curvature="0" /> + <path + d="m 181.49217,15.937531 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1234" + inkscape:connector-curvature="0" /> + <path + d="M 174.40554,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1236" + inkscape:connector-curvature="0" /> + <path + d="m 181.49217,8.8508907 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1238" + inkscape:connector-curvature="0" /> + <path + d="M 180.60633,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1240" + inkscape:connector-curvature="0" /> + <path + d="m 180.60633,15.051701 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1242" + inkscape:connector-curvature="0" /> + <path + d="M 175.29136,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1244" + inkscape:connector-curvature="0" /> + <path + d="m 180.60633,9.7367207 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1246" + inkscape:connector-curvature="0" /> + <path + d="m 181.49217,15.937531 -0.88584,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1248" + inkscape:connector-curvature="0" /> + <path + d="m 174.40554,8.8508907 0.88582,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1250" + inkscape:connector-curvature="0" /> + <path + d="M 172.49214,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1252" + inkscape:connector-curvature="0" /> + <path + d="m 172.49214,15.937531 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1254" + inkscape:connector-curvature="0" /> + <path + d="M 165.40552,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1256" + inkscape:connector-curvature="0" /> + <path + d="m 172.49214,8.8508907 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1258" + inkscape:connector-curvature="0" /> + <path + d="M 171.60632,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1260" + inkscape:connector-curvature="0" /> + <path + d="m 171.60632,15.051701 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1262" + inkscape:connector-curvature="0" /> + <path + d="M 166.29134,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1264" + inkscape:connector-curvature="0" /> + <path + d="m 171.60632,9.7367207 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1266" + inkscape:connector-curvature="0" /> + <path + d="m 172.49214,15.937531 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1268" + inkscape:connector-curvature="0" /> + <path + d="m 165.40552,8.8508907 0.88582,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1270" + inkscape:connector-curvature="0" /> + <path + d="M 163.49212,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1272" + inkscape:connector-curvature="0" /> + <path + d="M 163.49212,15.937531 H 156.4055" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1274" + inkscape:connector-curvature="0" /> + <path + d="M 156.4055,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1276" + inkscape:connector-curvature="0" /> + <path + d="M 163.49212,8.8508907 H 156.4055" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1278" + inkscape:connector-curvature="0" /> + <path + d="M 162.6063,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1280" + inkscape:connector-curvature="0" /> + <path + d="m 162.6063,15.051701 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1282" + inkscape:connector-curvature="0" /> + <path + d="M 157.29132,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1284" + inkscape:connector-curvature="0" /> + <path + d="m 162.6063,9.7367207 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1286" + inkscape:connector-curvature="0" /> + <path + d="m 163.49212,15.937531 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1288" + inkscape:connector-curvature="0" /> + <path + d="m 156.4055,8.8508907 0.88582,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1290" + inkscape:connector-curvature="0" /> + <path + d="M 154.4921,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1292" + inkscape:connector-curvature="0" /> + <path + d="m 154.4921,15.937531 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1294" + inkscape:connector-curvature="0" /> + <path + d="M 147.40547,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1296" + inkscape:connector-curvature="0" /> + <path + d="m 154.4921,8.8508907 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1298" + inkscape:connector-curvature="0" /> + <path + d="M 153.60628,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1300" + inkscape:connector-curvature="0" /> + <path + d="M 153.60628,15.051701 H 148.2913" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1302" + inkscape:connector-curvature="0" /> + <path + d="M 148.2913,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1304" + inkscape:connector-curvature="0" /> + <path + d="M 153.60628,9.7367207 H 148.2913" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1306" + inkscape:connector-curvature="0" /> + <path + d="m 154.4921,15.937531 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1308" + inkscape:connector-curvature="0" /> + <path + d="m 147.40547,8.8508907 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1310" + inkscape:connector-curvature="0" /> + <path + d="M 145.49208,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1312" + inkscape:connector-curvature="0" /> + <path + d="m 145.49208,15.937531 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1314" + inkscape:connector-curvature="0" /> + <path + d="M 138.40545,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1316" + inkscape:connector-curvature="0" /> + <path + d="m 145.49208,8.8508907 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1318" + inkscape:connector-curvature="0" /> + <path + d="M 144.60625,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1320" + inkscape:connector-curvature="0" /> + <path + d="m 144.60625,15.051701 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1322" + inkscape:connector-curvature="0" /> + <path + d="M 139.29128,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1324" + inkscape:connector-curvature="0" /> + <path + d="m 144.60625,9.7367207 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1326" + inkscape:connector-curvature="0" /> + <path + d="m 145.49208,15.937531 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1328" + inkscape:connector-curvature="0" /> + <path + d="m 138.40545,8.8508907 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1330" + inkscape:connector-curvature="0" /> + <path + d="M 136.49205,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1332" + inkscape:connector-curvature="0" /> + <path + d="m 136.49205,15.937531 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1334" + inkscape:connector-curvature="0" /> + <path + d="M 129.40543,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1336" + inkscape:connector-curvature="0" /> + <path + d="m 136.49205,8.8508907 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1338" + inkscape:connector-curvature="0" /> + <path + d="M 135.60623,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1340" + inkscape:connector-curvature="0" /> + <path + d="m 135.60623,15.051701 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1342" + inkscape:connector-curvature="0" /> + <path + d="M 130.29126,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1344" + inkscape:connector-curvature="0" /> + <path + d="m 135.60623,9.7367207 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1346" + inkscape:connector-curvature="0" /> + <path + d="m 136.49205,15.937531 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1348" + inkscape:connector-curvature="0" /> + <path + d="m 129.40543,8.8508907 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1350" + inkscape:connector-curvature="0" /> + <path + d="M 127.49203,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1352" + inkscape:connector-curvature="0" /> + <path + d="M 127.49203,15.937531 H 120.4054" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1354" + inkscape:connector-curvature="0" /> + <path + d="M 120.4054,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1356" + inkscape:connector-curvature="0" /> + <path + d="M 127.49203,8.8508907 H 120.4054" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1358" + inkscape:connector-curvature="0" /> + <path + d="M 126.60621,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1360" + inkscape:connector-curvature="0" /> + <path + d="m 126.60621,15.051701 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1362" + inkscape:connector-curvature="0" /> + <path + d="M 121.29124,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1364" + inkscape:connector-curvature="0" /> + <path + d="m 126.60621,9.7367207 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1366" + inkscape:connector-curvature="0" /> + <path + d="m 127.49203,15.937531 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1368" + inkscape:connector-curvature="0" /> + <path + d="m 120.4054,8.8508907 0.88584,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1370" + inkscape:connector-curvature="0" /> + <path + d="M 118.49202,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1372" + inkscape:connector-curvature="0" /> + <path + d="m 118.49202,15.937531 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1374" + inkscape:connector-curvature="0" /> + <path + d="M 111.40538,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1376" + inkscape:connector-curvature="0" /> + <path + d="m 118.49202,8.8508907 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1378" + inkscape:connector-curvature="0" /> + <path + d="M 117.60618,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1380" + inkscape:connector-curvature="0" /> + <path + d="m 117.60618,15.051701 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1382" + inkscape:connector-curvature="0" /> + <path + d="M 112.29121,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1384" + inkscape:connector-curvature="0" /> + <path + d="m 117.60618,9.7367207 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1386" + inkscape:connector-curvature="0" /> + <path + d="m 118.49202,15.937531 -0.88584,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1388" + inkscape:connector-curvature="0" /> + <path + d="m 111.40538,8.8508907 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1390" + inkscape:connector-curvature="0" /> + <path + d="M 109.49199,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1392" + inkscape:connector-curvature="0" /> + <path + d="m 109.49199,15.937531 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1394" + inkscape:connector-curvature="0" /> + <path + d="M 102.40536,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1396" + inkscape:connector-curvature="0" /> + <path + d="m 109.49199,8.8508907 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1398" + inkscape:connector-curvature="0" /> + <path + d="M 108.60616,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1400" + inkscape:connector-curvature="0" /> + <path + d="m 108.60616,15.051701 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1402" + inkscape:connector-curvature="0" /> + <path + d="M 103.29119,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1404" + inkscape:connector-curvature="0" /> + <path + d="m 108.60616,9.7367207 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1406" + inkscape:connector-curvature="0" /> + <path + d="m 109.49199,15.937531 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1408" + inkscape:connector-curvature="0" /> + <path + d="m 102.40536,8.8508907 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1410" + inkscape:connector-curvature="0" /> + <path + d="M 100.49197,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1412" + inkscape:connector-curvature="0" /> + <path + d="M 100.49197,15.937531 H 93.405351" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1414" + inkscape:connector-curvature="0" /> + <path + d="M 93.405351,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1416" + inkscape:connector-curvature="0" /> + <path + d="M 100.49197,8.8508907 H 93.405351" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1418" + inkscape:connector-curvature="0" /> + <path + d="M 99.606141,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1420" + inkscape:connector-curvature="0" /> + <path + d="m 99.606141,15.051701 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1422" + inkscape:connector-curvature="0" /> + <path + d="M 94.291171,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1424" + inkscape:connector-curvature="0" /> + <path + d="m 99.606141,9.7367207 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1426" + inkscape:connector-curvature="0" /> + <path + d="m 100.49197,15.937531 -0.885829,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1428" + inkscape:connector-curvature="0" /> + <path + d="m 93.405351,8.8508907 0.88582,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1430" + inkscape:connector-curvature="0" /> + <path + d="M 91.491951,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1432" + inkscape:connector-curvature="0" /> + <path + d="m 91.491951,15.937531 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1434" + inkscape:connector-curvature="0" /> + <path + d="M 84.405321,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1436" + inkscape:connector-curvature="0" /> + <path + d="m 91.491951,8.8508907 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1438" + inkscape:connector-curvature="0" /> + <path + d="M 90.606121,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1440" + inkscape:connector-curvature="0" /> + <path + d="m 90.606121,15.051701 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1442" + inkscape:connector-curvature="0" /> + <path + d="M 85.291151,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1444" + inkscape:connector-curvature="0" /> + <path + d="m 90.606121,9.7367207 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1446" + inkscape:connector-curvature="0" /> + <path + d="m 91.491951,15.937531 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1448" + inkscape:connector-curvature="0" /> + <path + d="m 84.405321,8.8508907 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1450" + inkscape:connector-curvature="0" /> + <path + d="M 82.491931,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1452" + inkscape:connector-curvature="0" /> + <path + d="m 82.491931,15.937531 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1454" + inkscape:connector-curvature="0" /> + <path + d="M 75.405301,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1456" + inkscape:connector-curvature="0" /> + <path + d="m 82.491931,8.8508907 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1458" + inkscape:connector-curvature="0" /> + <path + d="M 81.606091,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1460" + inkscape:connector-curvature="0" /> + <path + d="m 81.606091,15.051701 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1462" + inkscape:connector-curvature="0" /> + <path + d="M 76.291121,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1464" + inkscape:connector-curvature="0" /> + <path + d="m 81.606091,9.7367207 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1466" + inkscape:connector-curvature="0" /> + <path + d="m 82.491931,15.937531 -0.88584,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1468" + inkscape:connector-curvature="0" /> + <path + d="m 75.405301,8.8508907 0.88582,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1470" + inkscape:connector-curvature="0" /> + <path + d="M 73.491901,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1472" + inkscape:connector-curvature="0" /> + <path + d="m 73.491901,15.937531 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1474" + inkscape:connector-curvature="0" /> + <path + d="M 66.405281,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1476" + inkscape:connector-curvature="0" /> + <path + d="m 73.491901,8.8508907 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1478" + inkscape:connector-curvature="0" /> + <path + d="M 72.606071,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1480" + inkscape:connector-curvature="0" /> + <path + d="m 72.606071,15.051701 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1482" + inkscape:connector-curvature="0" /> + <path + d="M 67.291101,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1484" + inkscape:connector-curvature="0" /> + <path + d="m 72.606071,9.7367207 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1486" + inkscape:connector-curvature="0" /> + <path + d="m 73.491901,15.937531 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1488" + inkscape:connector-curvature="0" /> + <path + d="m 66.405281,8.8508907 0.88582,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1490" + inkscape:connector-curvature="0" /> + <path + d="M 64.491881,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1492" + inkscape:connector-curvature="0" /> + <path + d="m 64.491881,15.937531 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1494" + inkscape:connector-curvature="0" /> + <path + d="M 57.405251,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1496" + inkscape:connector-curvature="0" /> + <path + d="m 64.491881,8.8508907 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1498" + inkscape:connector-curvature="0" /> + <path + d="M 63.606051,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1500" + inkscape:connector-curvature="0" /> + <path + d="m 63.606051,15.051701 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1502" + inkscape:connector-curvature="0" /> + <path + d="M 58.291081,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1504" + inkscape:connector-curvature="0" /> + <path + d="m 63.606051,9.7367207 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1506" + inkscape:connector-curvature="0" /> + <path + d="m 64.491881,15.937531 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1508" + inkscape:connector-curvature="0" /> + <path + d="m 57.405251,8.8508907 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1510" + inkscape:connector-curvature="0" /> + <path + d="M 55.491861,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1512" + inkscape:connector-curvature="0" /> + <path + d="m 55.491861,15.937531 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1514" + inkscape:connector-curvature="0" /> + <path + d="M 48.405231,8.8508907 V 15.937531" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1516" + inkscape:connector-curvature="0" /> + <path + d="m 55.491861,8.8508907 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1518" + inkscape:connector-curvature="0" /> + <path + d="M 54.606041,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1520" + inkscape:connector-curvature="0" /> + <path + d="m 54.606041,15.051701 h -5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1522" + inkscape:connector-curvature="0" /> + <path + d="M 49.291051,9.7367207 V 15.051701" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1524" + inkscape:connector-curvature="0" /> + <path + d="m 54.606041,9.7367207 h -5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1526" + inkscape:connector-curvature="0" /> + <path + d="m 55.491861,15.937531 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1528" + inkscape:connector-curvature="0" /> + <path + d="m 48.405231,8.8508907 0.88582,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1530" + inkscape:connector-curvature="0" /> + <path + d="m 64.491881,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1532" + inkscape:connector-curvature="0" /> + <path + d="m 64.491881,99.187661 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1534" + inkscape:connector-curvature="0" /> + <path + d="m 57.405251,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1536" + inkscape:connector-curvature="0" /> + <path + d="m 64.491881,92.101031 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1538" + inkscape:connector-curvature="0" /> + <path + d="m 63.606051,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1540" + inkscape:connector-curvature="0" /> + <path + d="m 63.606051,98.301841 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1542" + inkscape:connector-curvature="0" /> + <path + d="m 58.291081,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1544" + inkscape:connector-curvature="0" /> + <path + d="m 63.606051,92.986851 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1546" + inkscape:connector-curvature="0" /> + <path + d="m 64.491881,99.187661 -0.88583,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1548" + inkscape:connector-curvature="0" /> + <path + d="m 57.405251,92.101031 0.88583,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1550" + inkscape:connector-curvature="0" /> + <path + d="m 73.491901,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1552" + inkscape:connector-curvature="0" /> + <path + d="m 73.491901,99.187661 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1554" + inkscape:connector-curvature="0" /> + <path + d="m 66.405281,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1556" + inkscape:connector-curvature="0" /> + <path + d="m 73.491901,92.101031 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1558" + inkscape:connector-curvature="0" /> + <path + d="m 72.606071,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1560" + inkscape:connector-curvature="0" /> + <path + d="m 72.606071,98.301841 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1562" + inkscape:connector-curvature="0" /> + <path + d="m 67.291101,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1564" + inkscape:connector-curvature="0" /> + <path + d="m 72.606071,92.986851 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1566" + inkscape:connector-curvature="0" /> + <path + d="m 73.491901,99.187661 -0.88583,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1568" + inkscape:connector-curvature="0" /> + <path + d="m 66.405281,92.101031 0.88582,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1570" + inkscape:connector-curvature="0" /> + <path + d="m 82.491931,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1572" + inkscape:connector-curvature="0" /> + <path + d="m 82.491931,99.187661 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1574" + inkscape:connector-curvature="0" /> + <path + d="m 75.405301,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1576" + inkscape:connector-curvature="0" /> + <path + d="m 82.491931,92.101031 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1578" + inkscape:connector-curvature="0" /> + <path + d="m 81.606091,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1580" + inkscape:connector-curvature="0" /> + <path + d="m 81.606091,98.301841 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1582" + inkscape:connector-curvature="0" /> + <path + d="m 76.291121,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1584" + inkscape:connector-curvature="0" /> + <path + d="m 81.606091,92.986851 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1586" + inkscape:connector-curvature="0" /> + <path + d="m 82.491931,99.187661 -0.88584,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1588" + inkscape:connector-curvature="0" /> + <path + d="m 75.405301,92.101031 0.88582,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1590" + inkscape:connector-curvature="0" /> + <path + d="m 91.491951,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1592" + inkscape:connector-curvature="0" /> + <path + d="m 91.491951,99.187661 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1594" + inkscape:connector-curvature="0" /> + <path + d="m 84.405321,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1596" + inkscape:connector-curvature="0" /> + <path + d="m 91.491951,92.101031 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1598" + inkscape:connector-curvature="0" /> + <path + d="m 90.606121,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1600" + inkscape:connector-curvature="0" /> + <path + d="m 90.606121,98.301841 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1602" + inkscape:connector-curvature="0" /> + <path + d="m 85.291151,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1604" + inkscape:connector-curvature="0" /> + <path + d="m 90.606121,92.986851 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1606" + inkscape:connector-curvature="0" /> + <path + d="m 91.491951,99.187661 -0.88583,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1608" + inkscape:connector-curvature="0" /> + <path + d="m 84.405321,92.101031 0.88583,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1610" + inkscape:connector-curvature="0" /> + <path + d="m 100.49197,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1612" + inkscape:connector-curvature="0" /> + <path + d="M 100.49197,99.187661 H 93.405351" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1614" + inkscape:connector-curvature="0" /> + <path + d="m 93.405351,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1616" + inkscape:connector-curvature="0" /> + <path + d="M 100.49197,92.101031 H 93.405351" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1618" + inkscape:connector-curvature="0" /> + <path + d="m 99.606141,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1620" + inkscape:connector-curvature="0" /> + <path + d="m 99.606141,98.301841 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1622" + inkscape:connector-curvature="0" /> + <path + d="m 94.291171,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1624" + inkscape:connector-curvature="0" /> + <path + d="m 99.606141,92.986851 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1626" + inkscape:connector-curvature="0" /> + <path + d="m 100.49197,99.187661 -0.885829,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1628" + inkscape:connector-curvature="0" /> + <path + d="m 93.405351,92.101031 0.88582,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1630" + inkscape:connector-curvature="0" /> + <path + d="m 136.49205,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1632" + inkscape:connector-curvature="0" /> + <path + d="m 136.49205,99.187661 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1634" + inkscape:connector-curvature="0" /> + <path + d="m 129.40543,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1636" + inkscape:connector-curvature="0" /> + <path + d="m 136.49205,92.101031 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1638" + inkscape:connector-curvature="0" /> + <path + d="m 135.60623,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1640" + inkscape:connector-curvature="0" /> + <path + d="m 135.60623,98.301841 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1642" + inkscape:connector-curvature="0" /> + <path + d="m 130.29126,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1644" + inkscape:connector-curvature="0" /> + <path + d="m 135.60623,92.986851 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1646" + inkscape:connector-curvature="0" /> + <path + d="m 136.49205,99.187661 -0.88582,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1648" + inkscape:connector-curvature="0" /> + <path + d="m 129.40543,92.101031 0.88583,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1650" + inkscape:connector-curvature="0" /> + <path + d="m 145.49208,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1652" + inkscape:connector-curvature="0" /> + <path + d="m 145.49208,99.187661 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1654" + inkscape:connector-curvature="0" /> + <path + d="m 138.40545,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1656" + inkscape:connector-curvature="0" /> + <path + d="m 145.49208,92.101031 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1658" + inkscape:connector-curvature="0" /> + <path + d="m 144.60625,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1660" + inkscape:connector-curvature="0" /> + <path + d="m 144.60625,98.301841 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1662" + inkscape:connector-curvature="0" /> + <path + d="m 139.29128,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1664" + inkscape:connector-curvature="0" /> + <path + d="m 144.60625,92.986851 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1666" + inkscape:connector-curvature="0" /> + <path + d="m 145.49208,99.187661 -0.88583,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1668" + inkscape:connector-curvature="0" /> + <path + d="m 138.40545,92.101031 0.88583,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1670" + inkscape:connector-curvature="0" /> + <path + d="m 154.4921,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1672" + inkscape:connector-curvature="0" /> + <path + d="m 154.4921,99.187661 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1674" + inkscape:connector-curvature="0" /> + <path + d="m 147.40547,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1676" + inkscape:connector-curvature="0" /> + <path + d="m 154.4921,92.101031 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1678" + inkscape:connector-curvature="0" /> + <path + d="m 153.60628,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1680" + inkscape:connector-curvature="0" /> + <path + d="M 153.60628,98.301841 H 148.2913" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1682" + inkscape:connector-curvature="0" /> + <path + d="m 148.2913,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1684" + inkscape:connector-curvature="0" /> + <path + d="M 153.60628,92.986851 H 148.2913" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1686" + inkscape:connector-curvature="0" /> + <path + d="m 154.4921,99.187661 -0.88582,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1688" + inkscape:connector-curvature="0" /> + <path + d="m 147.40547,92.101031 0.88583,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1690" + inkscape:connector-curvature="0" /> + <path + d="m 163.49212,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1692" + inkscape:connector-curvature="0" /> + <path + d="M 163.49212,99.187661 H 156.4055" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1694" + inkscape:connector-curvature="0" /> + <path + d="m 156.4055,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1696" + inkscape:connector-curvature="0" /> + <path + d="M 163.49212,92.101031 H 156.4055" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1698" + inkscape:connector-curvature="0" /> + <path + d="m 162.6063,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1700" + inkscape:connector-curvature="0" /> + <path + d="m 162.6063,98.301841 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1702" + inkscape:connector-curvature="0" /> + <path + d="m 157.29132,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1704" + inkscape:connector-curvature="0" /> + <path + d="m 162.6063,92.986851 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1706" + inkscape:connector-curvature="0" /> + <path + d="m 163.49212,99.187661 -0.88582,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1708" + inkscape:connector-curvature="0" /> + <path + d="m 156.4055,92.101031 0.88582,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1710" + inkscape:connector-curvature="0" /> + <path + d="m 172.49214,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1712" + inkscape:connector-curvature="0" /> + <path + d="m 172.49214,99.187661 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1714" + inkscape:connector-curvature="0" /> + <path + d="m 165.40552,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1716" + inkscape:connector-curvature="0" /> + <path + d="m 172.49214,92.101031 h -7.08662" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1718" + inkscape:connector-curvature="0" /> + <path + d="m 171.60632,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1720" + inkscape:connector-curvature="0" /> + <path + d="m 171.60632,98.301841 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1722" + inkscape:connector-curvature="0" /> + <path + d="m 166.29134,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1724" + inkscape:connector-curvature="0" /> + <path + d="m 171.60632,92.986851 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1726" + inkscape:connector-curvature="0" /> + <path + d="m 172.49214,99.187661 -0.88582,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1728" + inkscape:connector-curvature="0" /> + <path + d="m 165.40552,92.101031 0.88582,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1730" + inkscape:connector-curvature="0" /> + <path + d="m 181.49217,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1732" + inkscape:connector-curvature="0" /> + <path + d="m 181.49217,99.187661 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1734" + inkscape:connector-curvature="0" /> + <path + d="m 174.40554,92.101031 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1736" + inkscape:connector-curvature="0" /> + <path + d="m 181.49217,92.101031 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1738" + inkscape:connector-curvature="0" /> + <path + d="m 180.60633,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1740" + inkscape:connector-curvature="0" /> + <path + d="m 180.60633,98.301841 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1742" + inkscape:connector-curvature="0" /> + <path + d="m 175.29136,92.986851 v 5.31499" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1744" + inkscape:connector-curvature="0" /> + <path + d="m 180.60633,92.986851 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1746" + inkscape:connector-curvature="0" /> + <path + d="m 181.49217,99.187661 -0.88584,-0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1748" + inkscape:connector-curvature="0" /> + <path + d="m 174.40554,92.101031 0.88582,0.88582" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1750" + inkscape:connector-curvature="0" /> + </g> + <g + inkscape:groupmode="layer" + inkscape:label="Circuit_Etc" + id="g2278" + style="display:inline"> + <path + d="m 38.572531,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1754" + inkscape:connector-curvature="0" /> + <path + d="m 38.572531,239.83946 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1756" + inkscape:connector-curvature="0" /> + <path + d="m 32.371731,239.83946 v -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1758" + inkscape:connector-curvature="0" /> + <path + d="M 38.572531,233.63867 V 222.44299" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1760" + inkscape:connector-curvature="0" /> + <path + d="M 32.371731,233.63867 V 219.87454" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1762" + inkscape:connector-curvature="0" /> + <path + d="m 38.572531,222.44299 15.12039,-15.12038" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1764" + inkscape:connector-curvature="0" /> + <path + d="m 32.371731,219.87454 15.12039,-15.12038" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1766" + inkscape:connector-curvature="0" /> + <path + d="M 53.692921,207.32261 V 167.39147" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1768" + inkscape:connector-curvature="0" /> + <path + d="M 53.692921,161.19067 V 98.749271" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1770" + inkscape:connector-curvature="0" /> + <path + d="M 47.492121,204.75416 V 97.018181" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1772" + inkscape:connector-curvature="0" /> + <path + d="m 53.695661,98.744751 h 1.35329" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1774" + inkscape:connector-curvature="0" /> + <path + d="m 55.048951,98.744751 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1776" + inkscape:connector-curvature="0" /> + <path + d="m 55.048951,92.543951 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1778" + inkscape:connector-curvature="0" /> + <path + d="m 48.848141,92.543951 v 2.23485" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1780" + inkscape:connector-curvature="0" /> + <path + d="m 53.692921,98.749271 0.003,-0.005" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1782" + inkscape:connector-curvature="0" /> + <path + d="m 47.492121,97.018181 1.35602,-2.23938" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1784" + inkscape:connector-curvature="0" /> + <path + d="m 173.78546,171.59526 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1786" + inkscape:connector-curvature="0" /> + <path + d="m 173.78546,177.79606 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1788" + inkscape:connector-curvature="0" /> + <path + d="m 167.58466,177.79606 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1790" + inkscape:connector-curvature="0" /> + <path + d="m 173.78546,171.59526 v -1.83238" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1792" + inkscape:connector-curvature="0" /> + <path + d="m 167.58466,171.59526 v 0.73607" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1794" + inkscape:connector-curvature="0" /> + <path + d="m 167.58466,172.33133 -4.93987,-4.93986" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1796" + inkscape:connector-curvature="0" /> + <path + d="m 173.78546,169.76288 -8.57221,-8.57221" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1798" + inkscape:connector-curvature="0" /> + <path + d="M 162.64479,167.39147 H 53.692921" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1800" + inkscape:connector-curvature="0" /> + <path + d="M 165.21325,161.19067 H 53.692921" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1802" + inkscape:connector-curvature="0" /> + <path + d="m 164.59209,177.79606 h 0.19335" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1804" + inkscape:connector-curvature="0" /> + <path + d="m 164.78544,177.79606 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1806" + inkscape:connector-curvature="0" /> + <path + d="m 164.78544,171.59526 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1808" + inkscape:connector-curvature="0" /> + <path + d="m 158.58463,171.59526 v 3.00061" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1810" + inkscape:connector-curvature="0" /> + <path + d="m 158.58463,174.59587 -0.44692,6.9359" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1812" + inkscape:connector-curvature="0" /> + <path + d="m 157.73815,187.73258 v 0" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1814" + inkscape:connector-curvature="0" /> + <path + d="m 164.59209,177.79606 -0.24071,3.73571" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1816" + inkscape:connector-curvature="0" /> + <path + d="m 157.73815,187.73258 h 30.18669" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1818" + inkscape:connector-curvature="0" /> + <path + d="m 164.35138,181.53177 h 21.00501" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1820" + inkscape:connector-curvature="0" /> + <path + d="m 187.92484,187.73258 56.72693,-56.7269" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1822" + inkscape:connector-curvature="0" /> + <path + d="m 185.35639,181.53177 53.09459,-53.09455" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1824" + inkscape:connector-curvature="0" /> + <path + d="M 244.65177,131.00568 V 47.406551" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1826" + inkscape:connector-curvature="0" /> + <path + d="M 238.45098,128.43722 V 44.740251" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1828" + inkscape:connector-curvature="0" /> + <path + d="m 244.65177,47.406551 9.81215,-9.30014" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1830" + inkscape:connector-curvature="0" /> + <path + d="m 238.45098,44.740251 9.81215,-9.30012" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1832" + inkscape:connector-curvature="0" /> + <path + d="M 254.46392,38.106411 V 27.258631" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1834" + inkscape:connector-curvature="0" /> + <path + d="m 248.26313,35.440131 v -5.61304" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1836" + inkscape:connector-curvature="0" /> + <path + d="m 248.26313,29.827091 -8.68658,-8.68657" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1838" + inkscape:connector-curvature="0" /> + <path + d="M 254.46392,27.258631 242.14501,14.939721" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1840" + inkscape:connector-curvature="0" /> + <path + d="M 239.57655,21.140521 H 193.84289" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1842" + inkscape:connector-curvature="0" /> + <path + d="M 242.14501,14.939721 H 191.27443" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1844" + inkscape:connector-curvature="0" /> + <path + d="m 193.84289,21.140521 -66.79377,66.79371" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1846" + inkscape:connector-curvature="0" /> + <path + d="m 191.27443,14.939721 -70.4261,70.42606" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1848" + inkscape:connector-curvature="0" /> + <path + d="m 127.04912,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1850" + inkscape:connector-curvature="0" /> + <path + d="m 127.04912,98.744751 h -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1852" + inkscape:connector-curvature="0" /> + <path + d="m 120.84833,98.744751 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1854" + inkscape:connector-curvature="0" /> + <path + d="m 127.04912,87.934231 v 4.60972" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1856" + inkscape:connector-curvature="0" /> + <path + d="m 120.84833,85.365781 v 7.17817" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1858" + inkscape:connector-curvature="0" /> + <path + d="M 158.13771,181.53177 H 86.300511" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1860" + inkscape:connector-curvature="0" /> + <path + d="M 157.73815,187.73258 H 88.868961" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1862" + inkscape:connector-curvature="0" /> + <path + d="m 88.868961,187.73258 -41.29641,41.29636" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1864" + inkscape:connector-curvature="0" /> + <path + d="m 86.300511,181.53177 -44.92876,44.92872" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1866" + inkscape:connector-curvature="0" /> + <path + d="m 47.572551,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1868" + inkscape:connector-curvature="0" /> + <path + d="m 47.572551,239.83946 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1870" + inkscape:connector-curvature="0" /> + <path + d="m 41.371751,239.83946 v -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1872" + inkscape:connector-curvature="0" /> + <path + d="m 47.572551,229.02894 v 4.60973" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1874" + inkscape:connector-curvature="0" /> + <path + d="m 41.371751,226.46049 v 7.17818" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1876" + inkscape:connector-curvature="0" /> + <path + d="m 182.78548,176.80561 v 0.99045" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1878" + inkscape:connector-curvature="0" /> + <path + d="m 182.78548,177.79606 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1880" + inkscape:connector-curvature="0" /> + <path + d="m 176.58468,177.79606 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1882" + inkscape:connector-curvature="0" /> + <path + d="m 176.58468,171.59526 h 2.51105" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1884" + inkscape:connector-curvature="0" /> + <path + d="m 182.78548,176.80561 5.44845,-2.14904" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1886" + inkscape:connector-curvature="0" /> + <path + d="m 179.09573,171.59526 5.66454,-2.23429" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1888" + inkscape:connector-curvature="0" /> + <path + d="M 188.23393,174.65657 226.9352,135.95533" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1890" + inkscape:connector-curvature="0" /> + <path + d="m 184.76027,169.36097 35.97412,-35.97409" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1892" + inkscape:connector-curvature="0" /> + <path + d="m 226.9352,44.673791 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1894" + inkscape:connector-curvature="0" /> + <path + d="m 226.9352,38.472991 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1896" + inkscape:connector-curvature="0" /> + <path + d="m 220.73439,38.472991 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1898" + inkscape:connector-curvature="0" /> + <path + d="M 226.9352,135.95533 V 44.673791" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1900" + inkscape:connector-curvature="0" /> + <path + d="M 220.73439,133.38688 V 44.673791" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1902" + inkscape:connector-curvature="0" /> + <path + d="m 226.9352,31.173771 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1904" + inkscape:connector-curvature="0" /> + <path + d="m 220.73439,31.173771 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1906" + inkscape:connector-curvature="0" /> + <path + d="m 220.73439,24.972971 h 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1908" + inkscape:connector-curvature="0" /> + <path + d="m 226.9352,24.972971 v 0" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1910" + inkscape:connector-curvature="0" /> + <path + d="m 226.9352,31.173771 h 8.83194" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1912" + inkscape:connector-curvature="0" /> + <path + d="m 226.9352,24.972971 h 11.40039" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1914" + inkscape:connector-curvature="0" /> + <path + d="m 238.45098,33.857601 v 1.81618" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1916" + inkscape:connector-curvature="0" /> + <path + d="m 238.45098,35.673781 h 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1918" + inkscape:connector-curvature="0" /> + <path + d="m 244.65177,35.673781 v -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1920" + inkscape:connector-curvature="0" /> + <path + d="M 244.65177,29.472971 H 242.8356" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1922" + inkscape:connector-curvature="0" /> + <path + d="m 235.76714,31.173771 2.68384,2.68383" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1924" + inkscape:connector-curvature="0" /> + <path + d="m 238.33559,24.972971 4.50001,4.5" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1926" + inkscape:connector-curvature="0" /> + <path + d="m 56.572581,239.83946 v -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1928" + inkscape:connector-curvature="0" /> + <path + d="m 56.572581,233.63867 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1930" + inkscape:connector-curvature="0" /> + <path + d="m 50.371771,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1932" + inkscape:connector-curvature="0" /> + <path + d="m 56.572581,239.83946 v 3.54204" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1934" + inkscape:connector-curvature="0" /> + <path + d="m 50.371771,239.83946 v 0.97358" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1936" + inkscape:connector-curvature="0" /> + <path + d="m 56.572581,243.3815 -6.40512,6.40511" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1938" + inkscape:connector-curvature="0" /> + <path + d="m 50.371771,240.81304 -2.77277,2.77277" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1940" + inkscape:connector-curvature="0" /> + <path + d="M 50.167461,249.78661 H 30.265811" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1942" + inkscape:connector-curvature="0" /> + <path + d="M 47.599001,243.58581 H 32.834261" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1944" + inkscape:connector-curvature="0" /> + <path + d="m 30.265811,249.78661 -7.85187,-7.85185" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1946" + inkscape:connector-curvature="0" /> + <path + d="m 32.834261,243.58581 -4.21951,-4.21951" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1948" + inkscape:connector-curvature="0" /> + <path + d="M 28.614751,239.3663 V 109.30395" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1950" + inkscape:connector-curvature="0" /> + <path + d="M 22.413941,241.93476 V 106.7355" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1952" + inkscape:connector-curvature="0" /> + <path + d="M 28.614751,109.30395 49.047771,88.870961" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1954" + inkscape:connector-curvature="0" /> + <path + d="M 22.413941,106.7355 46.479311,82.670151" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1956" + inkscape:connector-curvature="0" /> + <path + d="M 49.047771,88.870961 H 102.23271" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1958" + inkscape:connector-curvature="0" /> + <path + d="M 46.479311,82.670151 H 107.90575" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1960" + inkscape:connector-curvature="0" /> + <path + d="m 102.84828,95.782151 v 2.9626" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1962" + inkscape:connector-curvature="0" /> + <path + d="m 102.84828,98.744751 h 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1964" + inkscape:connector-curvature="0" /> + <path + d="m 109.04907,98.744751 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1966" + inkscape:connector-curvature="0" /> + <path + d="m 109.04907,92.543951 h -0.26386" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1968" + inkscape:connector-curvature="0" /> + <path + d="m 102.23271,88.870961 0.61557,6.91119" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1970" + inkscape:connector-curvature="0" /> + <path + d="m 107.90575,82.670151 0.87946,9.8738" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1972" + inkscape:connector-curvature="0" /> + <path + d="m 118.0491,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1974" + inkscape:connector-curvature="0" /> + <path + d="m 118.0491,98.744751 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1976" + inkscape:connector-curvature="0" /> + <path + d="m 111.8483,98.744751 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1978" + inkscape:connector-curvature="0" /> + <path + d="M 118.0491,92.543951 V 81.822811" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1980" + inkscape:connector-curvature="0" /> + <path + d="m 111.8483,92.543951 v -8.15267" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1982" + inkscape:connector-curvature="0" /> + <path + d="m 111.8483,84.391281 -4.46648,-4.46649" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1984" + inkscape:connector-curvature="0" /> + <path + d="m 118.0491,81.822811 -8.09882,-8.09882" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1986" + inkscape:connector-curvature="0" /> + <path + d="M 107.38182,79.924791 H 45.270231" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1988" + inkscape:connector-curvature="0" /> + <path + d="M 109.95028,73.723991 H 42.701781" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1990" + inkscape:connector-curvature="0" /> + <path + d="M 45.270231,79.924791 19.718201,105.47681" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1992" + inkscape:connector-curvature="0" /> + <path + d="M 42.701781,73.723991 13.517391,102.90836" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1994" + inkscape:connector-curvature="0" /> + <path + d="M 19.718201,105.47681 V 243.16969" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1996" + inkscape:connector-curvature="0" /> + <path + d="M 13.517391,102.90836 V 245.73815" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path1998" + inkscape:connector-curvature="0" /> + <path + d="m 13.517391,245.73815 13.10907,13.10906" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2000" + inkscape:connector-curvature="0" /> + <path + d="m 19.718201,243.16969 9.47672,9.47673" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2002" + inkscape:connector-curvature="0" /> + <path + d="m 26.626461,258.84721 h 27.26502" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2004" + inkscape:connector-curvature="0" /> + <path + d="m 29.194921,252.64642 h 22.1281" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2006" + inkscape:connector-curvature="0" /> + <path + d="M 53.891481,258.84721 65.572591,247.1661" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2008" + inkscape:connector-curvature="0" /> + <path + d="m 51.323021,252.64642 8.04878,-8.04877" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2010" + inkscape:connector-curvature="0" /> + <path + d="m 65.572591,239.83946 v -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2012" + inkscape:connector-curvature="0" /> + <path + d="m 65.572591,233.63867 h -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2014" + inkscape:connector-curvature="0" /> + <path + d="m 59.371801,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2016" + inkscape:connector-curvature="0" /> + <path + d="m 65.572591,247.1661 v -7.32664" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2018" + inkscape:connector-curvature="0" /> + <path + d="m 59.371801,244.59765 v -4.75819" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2020" + inkscape:connector-curvature="0" /> + <path + d="m 74.572611,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2022" + inkscape:connector-curvature="0" /> + <path + d="m 74.572611,239.83946 h -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2024" + inkscape:connector-curvature="0" /> + <path + d="m 68.371821,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2026" + inkscape:connector-curvature="0" /> + <path + d="m 74.572611,233.63867 h -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2028" + inkscape:connector-curvature="0" /> + <path + d="m 83.572641,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2030" + inkscape:connector-curvature="0" /> + <path + d="m 83.572641,239.83946 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2032" + inkscape:connector-curvature="0" /> + <path + d="m 77.371841,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2034" + inkscape:connector-curvature="0" /> + <path + d="m 83.572641,233.63867 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2036" + inkscape:connector-curvature="0" /> + <path + d="m 92.572661,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2038" + inkscape:connector-curvature="0" /> + <path + d="m 92.572661,239.83946 h -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2040" + inkscape:connector-curvature="0" /> + <path + d="m 86.371871,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2042" + inkscape:connector-curvature="0" /> + <path + d="m 92.572661,233.63867 h -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2044" + inkscape:connector-curvature="0" /> + <path + d="m 101.57268,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2046" + inkscape:connector-curvature="0" /> + <path + d="M 101.57268,239.83946 H 95.371891" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2048" + inkscape:connector-curvature="0" /> + <path + d="m 95.371891,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2050" + inkscape:connector-curvature="0" /> + <path + d="M 101.57268,233.63867 H 95.371891" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2052" + inkscape:connector-curvature="0" /> + <path + d="m 110.5727,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2054" + inkscape:connector-curvature="0" /> + <path + d="m 110.5727,239.83946 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2056" + inkscape:connector-curvature="0" /> + <path + d="m 104.3719,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2058" + inkscape:connector-curvature="0" /> + <path + d="m 110.5727,233.63867 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2060" + inkscape:connector-curvature="0" /> + <path + d="m 119.57273,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2062" + inkscape:connector-curvature="0" /> + <path + d="m 119.57273,239.83946 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2064" + inkscape:connector-curvature="0" /> + <path + d="m 113.37192,233.63867 v 6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2066" + inkscape:connector-curvature="0" /> + <path + d="m 119.57273,233.63867 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2068" + inkscape:connector-curvature="0" /> + <path + d="M 181.04926,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2070" + inkscape:connector-curvature="0" /> + <path + d="m 181.04926,15.494611 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2072" + inkscape:connector-curvature="0" /> + <path + d="M 174.84845,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2074" + inkscape:connector-curvature="0" /> + <path + d="m 181.04926,9.2938107 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2076" + inkscape:connector-curvature="0" /> + <path + d="M 172.04923,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2078" + inkscape:connector-curvature="0" /> + <path + d="m 172.04923,15.494611 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2080" + inkscape:connector-curvature="0" /> + <path + d="M 165.84843,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2082" + inkscape:connector-curvature="0" /> + <path + d="m 172.04923,9.2938107 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2084" + inkscape:connector-curvature="0" /> + <path + d="M 163.04921,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2086" + inkscape:connector-curvature="0" /> + <path + d="m 163.04921,15.494611 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2088" + inkscape:connector-curvature="0" /> + <path + d="M 156.84841,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2090" + inkscape:connector-curvature="0" /> + <path + d="m 163.04921,9.2938107 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2092" + inkscape:connector-curvature="0" /> + <path + d="M 154.04919,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2094" + inkscape:connector-curvature="0" /> + <path + d="m 154.04919,15.494611 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2096" + inkscape:connector-curvature="0" /> + <path + d="M 147.84838,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2098" + inkscape:connector-curvature="0" /> + <path + d="m 154.04919,9.2938107 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2100" + inkscape:connector-curvature="0" /> + <path + d="M 145.04916,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2102" + inkscape:connector-curvature="0" /> + <path + d="m 145.04916,15.494611 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2104" + inkscape:connector-curvature="0" /> + <path + d="M 138.84836,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2106" + inkscape:connector-curvature="0" /> + <path + d="m 145.04916,9.2938107 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2108" + inkscape:connector-curvature="0" /> + <path + d="M 136.04914,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2110" + inkscape:connector-curvature="0" /> + <path + d="m 136.04914,15.494611 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2112" + inkscape:connector-curvature="0" /> + <path + d="M 129.84834,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2114" + inkscape:connector-curvature="0" /> + <path + d="m 136.04914,9.2938107 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2116" + inkscape:connector-curvature="0" /> + <path + d="M 127.04912,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2118" + inkscape:connector-curvature="0" /> + <path + d="m 127.04912,15.494611 h -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2120" + inkscape:connector-curvature="0" /> + <path + d="M 120.84833,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2122" + inkscape:connector-curvature="0" /> + <path + d="m 127.04912,9.2938107 h -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2124" + inkscape:connector-curvature="0" /> + <path + d="M 118.0491,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2126" + inkscape:connector-curvature="0" /> + <path + d="m 118.0491,15.494611 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2128" + inkscape:connector-curvature="0" /> + <path + d="M 111.8483,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2130" + inkscape:connector-curvature="0" /> + <path + d="m 118.0491,9.2938107 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2132" + inkscape:connector-curvature="0" /> + <path + d="M 109.04907,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2134" + inkscape:connector-curvature="0" /> + <path + d="m 109.04907,15.494611 h -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2136" + inkscape:connector-curvature="0" /> + <path + d="M 102.84828,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2138" + inkscape:connector-curvature="0" /> + <path + d="m 109.04907,9.2938107 h -6.20079" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2140" + inkscape:connector-curvature="0" /> + <path + d="M 100.04905,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2142" + inkscape:connector-curvature="0" /> + <path + d="M 100.04905,15.494611 H 93.848261" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2144" + inkscape:connector-curvature="0" /> + <path + d="M 93.848261,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2146" + inkscape:connector-curvature="0" /> + <path + d="M 100.04905,9.2938107 H 93.848261" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2148" + inkscape:connector-curvature="0" /> + <path + d="M 91.049031,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2150" + inkscape:connector-curvature="0" /> + <path + d="m 91.049031,15.494611 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2152" + inkscape:connector-curvature="0" /> + <path + d="M 84.848231,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2154" + inkscape:connector-curvature="0" /> + <path + d="m 91.049031,9.2938107 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2156" + inkscape:connector-curvature="0" /> + <path + d="M 82.049011,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2158" + inkscape:connector-curvature="0" /> + <path + d="m 82.049011,15.494611 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2160" + inkscape:connector-curvature="0" /> + <path + d="M 75.848211,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2162" + inkscape:connector-curvature="0" /> + <path + d="m 82.049011,9.2938107 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2164" + inkscape:connector-curvature="0" /> + <path + d="M 73.048991,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2166" + inkscape:connector-curvature="0" /> + <path + d="m 73.048991,15.494611 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2168" + inkscape:connector-curvature="0" /> + <path + d="M 66.848191,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2170" + inkscape:connector-curvature="0" /> + <path + d="m 73.048991,9.2938107 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2172" + inkscape:connector-curvature="0" /> + <path + d="M 64.048971,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2174" + inkscape:connector-curvature="0" /> + <path + d="m 64.048971,15.494611 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2176" + inkscape:connector-curvature="0" /> + <path + d="M 57.848171,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2178" + inkscape:connector-curvature="0" /> + <path + d="m 64.048971,9.2938107 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2180" + inkscape:connector-curvature="0" /> + <path + d="M 55.048951,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2182" + inkscape:connector-curvature="0" /> + <path + d="m 55.048951,15.494611 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2184" + inkscape:connector-curvature="0" /> + <path + d="M 48.848141,9.2938107 V 15.494611" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2186" + inkscape:connector-curvature="0" /> + <path + d="m 55.048951,9.2938107 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2188" + inkscape:connector-curvature="0" /> + <path + d="m 64.048971,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2190" + inkscape:connector-curvature="0" /> + <path + d="m 64.048971,98.744751 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2192" + inkscape:connector-curvature="0" /> + <path + d="m 57.848171,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2194" + inkscape:connector-curvature="0" /> + <path + d="m 64.048971,92.543951 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2196" + inkscape:connector-curvature="0" /> + <path + d="m 73.048991,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2198" + inkscape:connector-curvature="0" /> + <path + d="m 73.048991,98.744751 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2200" + inkscape:connector-curvature="0" /> + <path + d="m 66.848191,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2202" + inkscape:connector-curvature="0" /> + <path + d="m 73.048991,92.543951 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2204" + inkscape:connector-curvature="0" /> + <path + d="m 82.049011,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2206" + inkscape:connector-curvature="0" /> + <path + d="m 82.049011,98.744751 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2208" + inkscape:connector-curvature="0" /> + <path + d="m 75.848211,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2210" + inkscape:connector-curvature="0" /> + <path + d="m 82.049011,92.543951 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2212" + inkscape:connector-curvature="0" /> + <path + d="m 91.049031,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2214" + inkscape:connector-curvature="0" /> + <path + d="m 91.049031,98.744751 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2216" + inkscape:connector-curvature="0" /> + <path + d="m 84.848231,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2218" + inkscape:connector-curvature="0" /> + <path + d="m 91.049031,92.543951 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2220" + inkscape:connector-curvature="0" /> + <path + d="m 100.04905,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2222" + inkscape:connector-curvature="0" /> + <path + d="M 100.04905,98.744751 H 93.848261" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2224" + inkscape:connector-curvature="0" /> + <path + d="m 93.848261,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2226" + inkscape:connector-curvature="0" /> + <path + d="M 100.04905,92.543951 H 93.848261" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2228" + inkscape:connector-curvature="0" /> + <path + d="m 136.04914,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2230" + inkscape:connector-curvature="0" /> + <path + d="m 136.04914,98.744751 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2232" + inkscape:connector-curvature="0" /> + <path + d="m 129.84834,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2234" + inkscape:connector-curvature="0" /> + <path + d="m 136.04914,92.543951 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2236" + inkscape:connector-curvature="0" /> + <path + d="m 145.04916,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2238" + inkscape:connector-curvature="0" /> + <path + d="m 145.04916,98.744751 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2240" + inkscape:connector-curvature="0" /> + <path + d="m 138.84836,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2242" + inkscape:connector-curvature="0" /> + <path + d="m 145.04916,92.543951 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2244" + inkscape:connector-curvature="0" /> + <path + d="m 154.04919,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2246" + inkscape:connector-curvature="0" /> + <path + d="m 154.04919,98.744751 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2248" + inkscape:connector-curvature="0" /> + <path + d="m 147.84838,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2250" + inkscape:connector-curvature="0" /> + <path + d="m 154.04919,92.543951 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2252" + inkscape:connector-curvature="0" /> + <path + d="m 163.04921,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2254" + inkscape:connector-curvature="0" /> + <path + d="m 163.04921,98.744751 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2256" + inkscape:connector-curvature="0" /> + <path + d="m 156.84841,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2258" + inkscape:connector-curvature="0" /> + <path + d="m 163.04921,92.543951 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2260" + inkscape:connector-curvature="0" /> + <path + d="m 172.04923,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2262" + inkscape:connector-curvature="0" /> + <path + d="m 172.04923,98.744751 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2264" + inkscape:connector-curvature="0" /> + <path + d="m 165.84843,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2266" + inkscape:connector-curvature="0" /> + <path + d="m 172.04923,92.543951 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2268" + inkscape:connector-curvature="0" /> + <path + d="m 181.04926,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2270" + inkscape:connector-curvature="0" /> + <path + d="m 181.04926,98.744751 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2272" + inkscape:connector-curvature="0" /> + <path + d="m 174.84845,92.543951 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2274" + inkscape:connector-curvature="0" /> + <path + d="m 181.04926,92.543951 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750191;stroke-dasharray:3.54328851, 0.7086577, 0.46875096, 0.7086577" + id="path2276" + inkscape:connector-curvature="0" /> + </g> + <g + inkscape:groupmode="layer" + inkscape:label="0" + id="g2280" /> +</svg> diff --git a/paperbot_ee_autoroute/drawing.svg b/paperbot_ee_autoroute/drawing.svg index 494d9e39675e5d108d8d0296ad36d7085a25cef1..17e007bcd250557795ad50ff1bc5ebb47a1bff88 100644 --- a/paperbot_ee_autoroute/drawing.svg +++ b/paperbot_ee_autoroute/drawing.svg @@ -7,14 +7,14 @@ xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="210mm" - height="297mm" + width="793.700787402" + height="1122.51968504" version="1.1" - id="svg2298" + id="svg2262" sodipodi:docname="drawing.svg" inkscape:version="0.92.4 (unknown)"> <metadata - id="metadata2302"> + id="metadata2266"> <rdf:RDF> <cc:Work rdf:about=""> @@ -36,18 +36,15 @@ inkscape:pageshadow="2" inkscape:window-width="1920" inkscape:window-height="1025" - id="namedview2300" + id="namedview2264" showgrid="false" - inkscape:document-units="mm" - units="mm" - inkscape:zoom="6.7277216" - inkscape:cx="107.70058" - inkscape:cy="1068.3729" + inkscape:zoom="2.3786089" + inkscape:cx="330.72133" + inkscape:cy="271.87059" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="1" - inkscape:current-layer="g498" - fit-margin-top="-0.1" /> + inkscape:current-layer="g498" /> <desc id="desc2">/home/jingyan/Documents/summer_intern_lemur/roco_electrical/paperbot_ee_autoroute/dwg_w_circuit.dxf - scale = 1.000000, origin = (0.000000, 0.000000), method = manual</desc> <defs @@ -55,14 +52,13 @@ <marker id="DistanceX" orient="auto" - refX="0" - refY="0" + refX="0.0" + refY="0.0" style="overflow:visible"> <path - d="M 3,-3 -3,3 M 0,-5 V 5" - style="stroke:#000000;stroke-width:0.5" - id="path4" - inkscape:connector-curvature="0" /> + d="M 3,-3 L -3,3 M 0,-5 L 0,5" + style="stroke:#000000; stroke-width:0.5" + id="path4" /> </marker> <pattern height="8" @@ -117,4405 +113,5581 @@ id="g498" style="display:inline"> <path - d="M 7.2935834,9.7603114 V 38.107201" - style="fill:none;stroke:#0000ff;stroke-width:0.93751431" + d="m 184.04116,415.31816 h 46.06311" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path26" + inkscape:connector-curvature="0" /> + <path + d="M 230.10427,549.96416 H 184.04116" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path28" + inkscape:connector-curvature="0" /> + <path + d="m 393.09679,124.76622 v 0" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path30" + inkscape:connector-curvature="0" /> + <path + d="m 393.09679,124.76622 h 85.03958" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path32" + inkscape:connector-curvature="0" /> + <path + d="m 520.65616,124.76622 h 85.03958" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path34" + inkscape:connector-curvature="0" /> + <path + d="m 605.69574,124.76622 v 0" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path36" + inkscape:connector-curvature="0" /> + <path + d="m 215.93101,76.577122 h 14.17326" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path38" + inkscape:connector-curvature="0" /> + <path + d="M 230.10427,108.46702 H 215.93101" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path40" + inkscape:connector-curvature="0" /> + <path + d="M 230.10427,76.577122 V 108.46702" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path42" + inkscape:connector-curvature="0" /> + <path + d="m 35.221901,549.96416 h 35.43316" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path44" + inkscape:connector-curvature="0" /> + <path + d="M 70.655061,762.5631 H 35.221901" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path46" + inkscape:connector-curvature="0" /> + <path + d="m 578.23504,231.30733 h 1.77166" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path48" + inkscape:connector-curvature="0" /> + <path + d="m 578.23504,176.70805 v 54.59928" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path50" + inkscape:connector-curvature="0" /> + <path + d="m 580.0067,176.70805 h -1.77166" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path52" + inkscape:connector-curvature="0" /> + <path + d="M 580.0067,231.30733 V 176.70805" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path54" + inkscape:connector-curvature="0" /> + <path + d="m 578.23504,363.37637 h 1.77166" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path56" + inkscape:connector-curvature="0" /> + <path + d="m 578.23504,308.77709 v 54.59928" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path58" + inkscape:connector-curvature="0" /> + <path + d="m 580.0067,308.77709 h -1.77166" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path60" + inkscape:connector-curvature="0" /> + <path + d="M 580.0067,363.37637 V 308.77709" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path62" + inkscape:connector-curvature="0" /> + <path + d="M 3.3320616,897.2091 V 762.5631" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path64" + inkscape:connector-curvature="0" /> + <path + d="M 116.71816,897.2091 H 70.655061" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path66" + inkscape:connector-curvature="0" /> + <path + d="m 184.04116,762.5631 h 46.06311" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path68" + inkscape:connector-curvature="0" /> + <path + d="M 3.3320616,762.5631 H 70.655061" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path70" + inkscape:connector-curvature="0" /> + <path + d="M 70.655061,897.2091 H 3.3320616" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path72" + inkscape:connector-curvature="0" /> + <path + d="m 184.04116,897.2091 h -67.323" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path74" + inkscape:connector-curvature="0" /> + <path + d="m 116.71816,762.5631 h 67.323" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path76" + inkscape:connector-curvature="0" /> + <path + d="M 373.74675,397.60158 V 316.10531" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path78" + inkscape:connector-curvature="0" /> + <path + d="m 330.95058,397.60158 h 42.79617" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path80" + inkscape:connector-curvature="0" /> + <path + d="m 330.95058,316.10531 v 81.49627" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path82" + inkscape:connector-curvature="0" /> + <path + d="M 373.74675,316.10531 H 330.95058" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path84" + inkscape:connector-curvature="0" /> + <path + d="m 447.13236,692.58261 h 1.77166" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path86" + inkscape:connector-curvature="0" /> + <path + d="m 447.13236,619.94464 v 72.63797" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path88" + inkscape:connector-curvature="0" /> + <path + d="m 448.90402,619.94464 h -1.77166" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path90" + inkscape:connector-curvature="0" /> + <path + d="M 448.90402,692.58261 V 619.94464" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path92" + inkscape:connector-curvature="0" /> + <path + d="m 72.288531,316.10531 v 81.49627" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path94" + inkscape:connector-curvature="0" /> + <path + d="m 271.73823,459.31433 h -1.77166" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path96" + inkscape:connector-curvature="0" /> + <path + d="M 271.73823,505.96798 V 459.31433" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path98" + inkscape:connector-curvature="0" /> + <path + d="m 269.96657,505.96798 h 1.77166" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path100" + inkscape:connector-curvature="0" /> + <path + d="m 269.96657,459.31433 v 46.65365" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path102" + inkscape:connector-curvature="0" /> + <path + d="M 474.59306,549.96416 V 762.5631" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path104" + inkscape:connector-curvature="0" /> + <path + d="M 44.080191,230.4215 V 177.59388" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path106" + inkscape:connector-curvature="0" /> + <path + d="M 26.363611,248.13808 44.080191,230.4215" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path108" + inkscape:connector-curvature="0" /> + <path + d="M 44.080191,177.59388 26.363611,159.8773" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path110" + inkscape:connector-curvature="0" /> + <path + d="m 26.363611,230.4215 v 17.71658" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path112" + inkscape:connector-curvature="0" /> + <path + d="m 44.080191,442.48358 v 17.71658" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path114" + inkscape:connector-curvature="0" /> + <path + d="M 61.796771,460.20016 44.080191,442.48358" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path116" + inkscape:connector-curvature="0" /> + <path + d="m 44.080191,522.79873 17.71658,-17.71657" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path118" + inkscape:connector-curvature="0" /> + <path + d="m 44.080191,505.08216 v 17.71657" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path120" + inkscape:connector-curvature="0" /> + <path + d="m 61.796771,505.08216 v -44.882" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path122" + inkscape:connector-curvature="0" /> + <path + d="M 605.69574,124.76622 V 415.31816" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path124" + inkscape:connector-curvature="0" /> + <path + d="M 72.288531,397.60158 H 115.0847" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path126" + inkscape:connector-curvature="0" /> + <path + d="M 115.0847,316.10531 H 72.288531" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path128" + inkscape:connector-curvature="0" /> + <path + d="m 230.10427,762.5631 h 35.43316" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path130" + inkscape:connector-curvature="0" /> + <path + d="M 319.57299,278.01467 V 249.66814" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" id="path132" inkscape:connector-curvature="0" /> <path - d="M 102.96434,38.107201 V 9.7603114" - style="fill:none;stroke:#0000ff;stroke-width:0.93751431" - id="path136" + d="M 265.53743,897.2091 H 230.10427" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path134" + inkscape:connector-curvature="0" /> + <path + d="m 223.90347,249.66814 v 28.34653" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path136" + inkscape:connector-curvature="0" /> + <path + d="m 35.221901,549.96416 v -134.646" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path138" + inkscape:connector-curvature="0" /> + <path + d="M 74.198381,193.86092 V 161.97108" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path140" + inkscape:connector-curvature="0" /> + <path + d="m 60.025111,193.86092 h 14.17327" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path142" + inkscape:connector-curvature="0" /> + <path + d="m 60.025111,161.97108 v 31.88984" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path144" + inkscape:connector-curvature="0" /> + <path + d="M 74.198381,161.97108 H 60.025111" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path146" + inkscape:connector-curvature="0" /> + <path + d="M 35.221901,762.5631 V 549.96416" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path148" + inkscape:connector-curvature="0" /> + <path + d="m 184.04116,549.96416 h -67.323" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path150" + inkscape:connector-curvature="0" /> + <path + d="m 318.68716,762.5631 h -46.0631" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path152" + inkscape:connector-curvature="0" /> + <path + d="m 272.62406,549.96416 h 46.0631" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path154" + inkscape:connector-curvature="0" /> + <path + d="M 244.27753,60.632222 V 124.41192" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path156" + inkscape:connector-curvature="0" /> + <path + d="M 201.75774,124.41192 V 60.632222" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path158" + inkscape:connector-curvature="0" /> + <path + d="M 115.0847,397.60158 V 316.10531" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path160" + inkscape:connector-curvature="0" /> + <path + d="m 29.021101,853.2129 h 1.77166" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path162" + inkscape:connector-curvature="0" /> + <path + d="m 29.021101,806.5593 v 46.6536" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path164" + inkscape:connector-curvature="0" /> + <path + d="m 30.792761,806.5593 h -1.77166" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path166" + inkscape:connector-curvature="0" /> + <path + d="M 30.792761,853.2129 V 806.5593" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path168" + inkscape:connector-curvature="0" /> + <path + d="M 115.0847,514.531 V 433.03473" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path170" + inkscape:connector-curvature="0" /> + <path + d="m 297.42727,549.96416 h -67.323" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path172" + inkscape:connector-curvature="0" /> + <path + d="m 230.10427,415.31816 h 67.323" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path174" + inkscape:connector-curvature="0" /> + <path + d="m 329.31711,124.41192 v 0.3543" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path176" + inkscape:connector-curvature="0" /> + <path + d="m 116.71816,124.76622 v -0.3543" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path178" + inkscape:connector-curvature="0" /> + <path + d="m 201.75774,124.41192 h 42.51979" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path180" + inkscape:connector-curvature="0" /> + <path + d="m 318.68716,549.96416 h 155.9059" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path182" + inkscape:connector-curvature="0" /> + <path + d="M 61.796771,620.83047 44.080191,603.11389" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path184" + inkscape:connector-curvature="0" /> + <path + d="m 44.080191,603.11389 v 17.71658" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path186" + inkscape:connector-curvature="0" /> + <path + d="m 44.080191,709.41336 17.71658,-17.71657" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path188" + inkscape:connector-curvature="0" /> + <path + d="M 61.796771,691.69679 V 620.83047" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path190" + inkscape:connector-curvature="0" /> + <path + d="m 44.080191,691.69679 v 17.71657" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path192" + inkscape:connector-curvature="0" /> + <path + d="M 17.505321,415.31816 V 124.76622" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path194" + inkscape:connector-curvature="0" /> + <path + d="m 72.288531,797.9963 v 81.4962" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path196" + inkscape:connector-curvature="0" /> + <path + d="M 115.0847,797.9963 H 72.288531" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path198" + inkscape:connector-curvature="0" /> + <path + d="M 115.0847,879.4925 V 797.9963" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path200" + inkscape:connector-curvature="0" /> + <path + d="M 72.288531,879.4925 H 115.0847" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path202" + inkscape:connector-curvature="0" /> + <path + d="m 238.96256,807.4451 v 44.882" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path204" + inkscape:connector-curvature="0" /> + <path + d="M 256.67914,807.4451 V 789.7285" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path206" + inkscape:connector-curvature="0" /> + <path + d="m 256.67914,789.7285 -17.71658,17.7166" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path208" + inkscape:connector-curvature="0" /> + <path + d="m 491.42381,139.82536 h 1.77165" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path210" + inkscape:connector-curvature="0" /> + <path + d="m 491.42381,173.48686 v -33.6615" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path212" + inkscape:connector-curvature="0" /> + <path + d="m 493.19546,173.48686 h -1.77165" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path214" + inkscape:connector-curvature="0" /> + <path + d="m 493.19546,139.82536 v 33.6615" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path216" + inkscape:connector-curvature="0" /> + <path + d="M 393.09679,415.31816 H 329.31711" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path218" + inkscape:connector-curvature="0" /> + <path + d="m 329.31711,124.76622 h 63.77968" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path220" + inkscape:connector-curvature="0" /> + <path + d="M 52.938481,124.76622 H 116.71816" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path222" + inkscape:connector-curvature="0" /> + <path + d="M 116.71816,415.31816 H 52.938481" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path224" + inkscape:connector-curvature="0" /> + <path + d="M 329.31711,12.797522 V 124.41192" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path226" + inkscape:connector-curvature="0" /> + <path + d="m 258.45079,12.797522 h 70.86632" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path228" + inkscape:connector-curvature="0" /> + <path + d="M 244.27753,124.41192 H 201.75774" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path230" + inkscape:connector-curvature="0" /> + <path + d="m 119.37565,657.14946 v 95.66952" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path232" + inkscape:connector-curvature="0" /> + <path + d="m 119.37565,752.81898 h 28.34653" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path234" + inkscape:connector-curvature="0" /> + <path + d="M 147.72218,752.81898 V 657.14946" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path236" + inkscape:connector-curvature="0" /> + <path + d="M 147.72218,657.14946 H 119.37565" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path238" + inkscape:connector-curvature="0" /> + <path + d="m 187.58448,12.797522 h 70.86631" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path240" + inkscape:connector-curvature="0" /> + <path + d="M 244.27753,124.41192 V 60.632222" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path242" + inkscape:connector-curvature="0" /> + <path + d="M 201.75774,60.632222 V 124.41192" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path244" + inkscape:connector-curvature="0" /> + <path + d="M 52.938481,415.31816 H 17.505321" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path246" + inkscape:connector-curvature="0" /> + <path + d="m 17.505321,124.76622 h 35.43316" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path248" + inkscape:connector-curvature="0" /> + <path + d="m 297.42727,415.31816 v 134.646" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path250" + inkscape:connector-curvature="0" /> + <path + d="M 272.62406,762.5631 H 116.71816" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path252" + inkscape:connector-curvature="0" /> + <path + d="m 116.71816,549.96416 h 155.9059" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path254" + inkscape:connector-curvature="0" /> + <path + d="m 223.90347,278.01467 h 95.66952" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path256" + inkscape:connector-curvature="0" /> + <path + d="M 605.69574,415.31816 H 393.09679" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path258" + inkscape:connector-curvature="0" /> + <path + d="M 319.57299,249.66814 H 223.90347" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path260" + inkscape:connector-curvature="0" /> + <path + d="m 35.221901,415.31816 h 35.43316" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path262" + inkscape:connector-curvature="0" /> + <path + d="M 70.655061,549.96416 H 35.221901" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path264" + inkscape:connector-curvature="0" /> + <path + d="m 265.53743,762.5631 v 134.646" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path266" + inkscape:connector-curvature="0" /> + <path + d="m 478.13637,124.76622 h 42.51979" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path268" + inkscape:connector-curvature="0" /> + <path + d="M 72.288531,433.03473 V 514.531" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path270" + inkscape:connector-curvature="0" /> + <path + d="M 115.0847,433.03473 H 72.288531" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path272" + inkscape:connector-curvature="0" /> + <path + d="M 230.10427,897.2091 H 184.04116" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path274" + inkscape:connector-curvature="0" /> + <path + d="M 72.288531,514.531 H 115.0847" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path276" + inkscape:connector-curvature="0" /> + <path + d="m 116.71816,12.797522 h 70.86632" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path278" + inkscape:connector-curvature="0" /> + <path + d="M 116.71816,124.41192 V 12.797522" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path280" + inkscape:connector-curvature="0" /> + <path + d="M 474.59306,762.5631 H 318.68716" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path282" + inkscape:connector-curvature="0" /> + <path + d="m 26.363611,159.8773 v 17.71658" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path284" + inkscape:connector-curvature="0" /> + <path + d="m 26.363611,362.49054 v 17.71658" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path286" + inkscape:connector-curvature="0" /> + <path + d="M 44.080191,362.49054 V 309.66292" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path288" + inkscape:connector-curvature="0" /> + <path + d="m 26.363611,380.20712 17.71658,-17.71658" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path290" + inkscape:connector-curvature="0" /> + <path + d="m 26.363611,291.94634 v 17.71658" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path292" + inkscape:connector-curvature="0" /> + <path + d="M 44.080191,309.66292 26.363611,291.94634" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path294" + inkscape:connector-curvature="0" /> + <path + d="m 238.96256,852.3271 17.71658,17.7166" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path296" + inkscape:connector-curvature="0" /> + <path + d="M 256.67914,870.0437 V 852.3271" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path298" + inkscape:connector-curvature="0" /> + <path + d="M 70.655061,415.31816 H 116.71816" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path300" + inkscape:connector-curvature="0" /> + <path + d="m 116.71816,415.31816 v 0" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path302" + inkscape:connector-curvature="0" /> + <path + d="m 329.31711,415.31816 v 0" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path304" + inkscape:connector-curvature="0" /> + <path + d="M 261.99411,415.31816 H 184.04116" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path306" + inkscape:connector-curvature="0" /> + <path + d="m 329.31711,415.31816 h -67.323" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path308" + inkscape:connector-curvature="0" /> + <path + d="m 163.38363,356.56998 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path310" + inkscape:connector-curvature="0" /> + <path + d="m 163.38363,358.90857 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path312" + inkscape:connector-curvature="0" /> + <path + d="m 172.38366,356.56998 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path314" + inkscape:connector-curvature="0" /> + <path + d="m 172.38366,358.90857 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path316" + inkscape:connector-curvature="0" /> + <path + d="m 181.38368,356.56998 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path318" + inkscape:connector-curvature="0" /> + <path + d="m 181.38368,358.90857 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path320" + inkscape:connector-curvature="0" /> + <path + d="m 190.3837,356.56998 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path322" + inkscape:connector-curvature="0" /> + <path + d="m 190.3837,358.90857 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path324" + inkscape:connector-curvature="0" /> + <path + d="m 199.38372,356.56998 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path326" + inkscape:connector-curvature="0" /> + <path + d="m 199.38372,358.90857 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path328" + inkscape:connector-curvature="0" /> + <path + d="m 208.38374,356.56998 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path330" + inkscape:connector-curvature="0" /> + <path + d="m 208.38374,358.90857 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path332" + inkscape:connector-curvature="0" /> + <path + d="m 217.38377,356.56998 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path334" inkscape:connector-curvature="0" /> <path - d="M 102.96434,9.7603114 H 7.2935834" - style="fill:none;stroke:#0000ff;stroke-width:0.93751431" - id="path256" + d="m 217.38377,358.90857 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path336" inkscape:connector-curvature="0" /> <path - d="M 7.2935834,38.107201 H 102.96434" - style="fill:none;stroke:#0000ff;stroke-width:0.93751431" - id="path260" + d="m 226.38379,356.56998 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path338" + inkscape:connector-curvature="0" /> + <path + d="m 226.38379,358.90857 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path340" + inkscape:connector-curvature="0" /> + <path + d="m 235.38381,356.56998 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path342" + inkscape:connector-curvature="0" /> + <path + d="m 235.38381,358.90857 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path344" + inkscape:connector-curvature="0" /> + <path + d="m 244.38383,356.56998 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path346" + inkscape:connector-curvature="0" /> + <path + d="m 244.38383,358.90857 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path348" + inkscape:connector-curvature="0" /> + <path + d="m 305.86036,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path350" + inkscape:connector-curvature="0" /> + <path + d="m 305.86036,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path352" + inkscape:connector-curvature="0" /> + <path + d="m 296.86034,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path354" + inkscape:connector-curvature="0" /> + <path + d="m 296.86034,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path356" + inkscape:connector-curvature="0" /> + <path + d="m 287.86032,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path358" + inkscape:connector-curvature="0" /> + <path + d="m 287.86032,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path360" + inkscape:connector-curvature="0" /> + <path + d="m 278.86029,132.22492 -2.33858,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path362" + inkscape:connector-curvature="0" /> + <path + d="m 278.86029,134.56352 -2.33858,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path364" + inkscape:connector-curvature="0" /> + <path + d="m 269.86027,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path366" + inkscape:connector-curvature="0" /> + <path + d="m 269.86027,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path368" + inkscape:connector-curvature="0" /> + <path + d="m 260.86025,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path370" + inkscape:connector-curvature="0" /> + <path + d="m 260.86025,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path372" + inkscape:connector-curvature="0" /> + <path + d="m 251.86023,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path374" + inkscape:connector-curvature="0" /> + <path + d="m 251.86023,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path376" + inkscape:connector-curvature="0" /> + <path + d="m 242.86021,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path378" + inkscape:connector-curvature="0" /> + <path + d="m 242.86021,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path380" + inkscape:connector-curvature="0" /> + <path + d="m 233.86018,132.22492 -2.33858,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path382" + inkscape:connector-curvature="0" /> + <path + d="m 233.86018,134.56352 -2.33858,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path384" + inkscape:connector-curvature="0" /> + <path + d="m 224.86016,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path386" + inkscape:connector-curvature="0" /> + <path + d="m 224.86016,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path388" + inkscape:connector-curvature="0" /> + <path + d="m 215.86014,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path390" + inkscape:connector-curvature="0" /> + <path + d="m 215.86014,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path392" + inkscape:connector-curvature="0" /> + <path + d="m 206.86012,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path394" + inkscape:connector-curvature="0" /> + <path + d="m 206.86012,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path396" + inkscape:connector-curvature="0" /> + <path + d="m 197.8601,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path398" + inkscape:connector-curvature="0" /> + <path + d="m 197.8601,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path400" + inkscape:connector-curvature="0" /> + <path + d="m 188.86007,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path402" + inkscape:connector-curvature="0" /> + <path + d="m 188.86007,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path404" + inkscape:connector-curvature="0" /> + <path + d="m 179.86005,132.22492 -2.33859,2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path406" + inkscape:connector-curvature="0" /> + <path + d="m 179.86005,134.56352 -2.33859,-2.3386" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path408" + inkscape:connector-curvature="0" /> + <path + d="m 179.86005,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path410" + inkscape:connector-curvature="0" /> + <path + d="m 179.86005,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path412" + inkscape:connector-curvature="0" /> + <path + d="m 188.86007,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path414" + inkscape:connector-curvature="0" /> + <path + d="m 188.86007,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path416" + inkscape:connector-curvature="0" /> + <path + d="m 197.8601,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path418" + inkscape:connector-curvature="0" /> + <path + d="m 197.8601,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path420" + inkscape:connector-curvature="0" /> + <path + d="m 206.86012,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path422" + inkscape:connector-curvature="0" /> + <path + d="m 206.86012,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path424" + inkscape:connector-curvature="0" /> + <path + d="m 215.86014,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path426" + inkscape:connector-curvature="0" /> + <path + d="m 215.86014,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path428" + inkscape:connector-curvature="0" /> + <path + d="m 224.86016,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path430" + inkscape:connector-curvature="0" /> + <path + d="m 224.86016,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path432" + inkscape:connector-curvature="0" /> + <path + d="m 233.86018,215.47515 -2.33858,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path434" + inkscape:connector-curvature="0" /> + <path + d="m 233.86018,217.81374 -2.33858,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path436" + inkscape:connector-curvature="0" /> + <path + d="m 242.86021,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path438" + inkscape:connector-curvature="0" /> + <path + d="m 242.86021,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path440" + inkscape:connector-curvature="0" /> + <path + d="m 251.86023,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path442" + inkscape:connector-curvature="0" /> + <path + d="m 251.86023,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path444" + inkscape:connector-curvature="0" /> + <path + d="m 260.86025,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path446" + inkscape:connector-curvature="0" /> + <path + d="m 260.86025,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path448" + inkscape:connector-curvature="0" /> + <path + d="m 269.86027,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path450" + inkscape:connector-curvature="0" /> + <path + d="m 269.86027,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path452" + inkscape:connector-curvature="0" /> + <path + d="m 278.86029,215.47515 -2.33858,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path454" + inkscape:connector-curvature="0" /> + <path + d="m 278.86029,217.81374 -2.33858,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path456" + inkscape:connector-curvature="0" /> + <path + d="m 287.86032,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path458" + inkscape:connector-curvature="0" /> + <path + d="m 287.86032,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path460" + inkscape:connector-curvature="0" /> + <path + d="m 296.86034,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path462" + inkscape:connector-curvature="0" /> + <path + d="m 296.86034,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path464" + inkscape:connector-curvature="0" /> + <path + d="m 305.86036,215.47515 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path466" + inkscape:connector-curvature="0" /> + <path + d="m 305.86036,217.81374 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path468" + inkscape:connector-curvature="0" /> + <path + d="m 289.59654,294.52652 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path470" + inkscape:connector-curvature="0" /> + <path + d="m 289.59654,296.86511 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path472" + inkscape:connector-curvature="0" /> + <path + d="m 298.59656,294.52652 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path474" + inkscape:connector-curvature="0" /> + <path + d="m 298.59656,296.86511 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path476" + inkscape:connector-curvature="0" /> + <path + d="m 307.59658,294.52652 -2.33858,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path478" + inkscape:connector-curvature="0" /> + <path + d="M 307.59658,296.86511 305.258,294.52652" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path480" + inkscape:connector-curvature="0" /> + <path + d="m 369.46288,152.40413 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path482" + inkscape:connector-curvature="0" /> + <path + d="m 369.46288,154.74272 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path484" + inkscape:connector-curvature="0" /> + <path + d="m 369.46288,165.90416 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path486" + inkscape:connector-curvature="0" /> + <path + d="m 369.46288,168.24275 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path488" + inkscape:connector-curvature="0" /> + <path + d="m 351.7463,161.40415 -2.33859,2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path490" + inkscape:connector-curvature="0" /> + <path + d="m 351.7463,163.74274 -2.33859,-2.33859" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path492" + inkscape:connector-curvature="0" /> + <path + d="m 351.7463,147.90412 -2.33859,2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path494" + inkscape:connector-curvature="0" /> + <path + d="m 351.7463,150.2427 -2.33859,-2.33858" + style="fill:none;stroke:#0000ff;stroke-width:0.93750226" + id="path496" inkscape:connector-curvature="0" /> </g> <g inkscape:groupmode="layer" inkscape:label="Fold" id="g546" - style="display:inline" /> + style="display:inline"> + <path + d="m 184.04116,549.96416 v -134.646" + style="fill:none;stroke:#00ff00;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path500" + inkscape:connector-curvature="0" /> + <path + d="M 116.71816,415.31816 V 124.76622" + style="fill:none;stroke:#ff0000;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path502" + inkscape:connector-curvature="0" /> + <path + d="M 52.938481,124.76622 V 415.31816" + style="fill:none;stroke:#ff0000;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path506" + inkscape:connector-curvature="0" /> + <path + d="m 116.71816,762.5631 v 134.646" + style="fill:none;stroke:#00ff00;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path508" + inkscape:connector-curvature="0" /> + <path + d="M 70.655061,762.5631 H 116.71816" + style="fill:none;stroke:#00ff00;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path510" + inkscape:connector-curvature="0" /> + <path + d="m 70.655061,762.5631 v 134.646" + style="fill:none;stroke:#00ff00;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path512" + inkscape:connector-curvature="0" /> + <path + d="m 184.04116,762.5631 v 134.646" + style="fill:none;stroke:#00ff00;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path514" + inkscape:connector-curvature="0" /> + <path + d="m 70.655061,415.31816 v 134.646" + style="fill:none;stroke:#00ff00;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path516" + inkscape:connector-curvature="0" /> + <path + d="m 116.71816,549.96416 v -134.646" + style="fill:none;stroke:#00ff00;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path518" + inkscape:connector-curvature="0" /> + <path + d="M 272.62406,762.5631 V 549.96416" + style="fill:none;stroke:#ff0000;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path520" + inkscape:connector-curvature="0" /> + <path + d="m 230.10427,549.96416 v -134.646" + style="fill:none;stroke:#00ff00;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path522" + inkscape:connector-curvature="0" /> + <path + d="M 318.68716,762.5631 V 549.96416" + style="fill:none;stroke:#ff0000;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path524" + inkscape:connector-curvature="0" /> + <path + d="M 230.10427,897.2091 V 762.5631" + style="fill:none;stroke:#00ff00;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path526" + inkscape:connector-curvature="0" /> + <path + d="m 201.75774,60.632222 h 42.51979" + style="fill:none;stroke:#ff0000;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path528" + inkscape:connector-curvature="0" /> + <path + d="M 329.31711,124.41192 258.45079,12.797522" + style="fill:none;stroke:#00ff00;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path532" + inkscape:connector-curvature="0" /> + <path + d="M 70.655061,549.96416 V 762.5631" + style="fill:none;stroke:#ff0000;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path534" + inkscape:connector-curvature="0" /> + <path + d="M 116.71816,762.5631 V 549.96416" + style="fill:none;stroke:#ff0000;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path536" + inkscape:connector-curvature="0" /> + <path + d="M 393.09679,415.31816 V 124.76622" + style="fill:none;stroke:#ff0000;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path538" + inkscape:connector-curvature="0" /> + <path + d="M 187.58448,12.797522 116.71816,124.41192" + style="fill:none;stroke:#00ff00;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path540" + inkscape:connector-curvature="0" /> + <path + d="M 116.71816,549.96416 H 70.655061" + style="fill:none;stroke:#00ff00;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path542" + inkscape:connector-curvature="0" /> + <path + d="m 184.04116,415.31816 h -67.323" + style="fill:none;stroke:#ff0000;stroke-width:0.93750226;stroke-dasharray:0.46875115, 3.54328992" + id="path544" + inkscape:connector-curvature="0" /> + </g> <g inkscape:groupmode="layer" inkscape:label="Circuit_Cut" - id="g1762" + id="g1738" style="display:none"> <path - d="M 490.67011,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 165.75765,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path548" inkscape:connector-curvature="0" /> <path - d="m 490.67011,97.981869 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 165.75765,361.28259 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path550" inkscape:connector-curvature="0" /> <path - d="m 498.22917,97.981869 v 7.559061" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 158.67102,361.28259 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path552" inkscape:connector-curvature="0" /> <path - d="m 490.67011,105.54093 v 19.79333" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 165.75765,354.19596 v -4.62929" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path554" inkscape:connector-curvature="0" /> <path - d="m 498.22917,105.54093 v 22.92439" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 158.67102,354.19596 v -7.56467" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path556" inkscape:connector-curvature="0" /> <path - d="m 490.67011,125.33426 -55.20455,55.20455" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 165.75765,349.56667 14.85642,-14.85642" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path558" inkscape:connector-curvature="0" /> <path - d="m 430.1205,185.88387 3e-5,-3e-5" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 158.67102,346.63129 14.85642,-14.85642" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path560" inkscape:connector-curvature="0" /> <path - d="m 498.22917,128.46532 -57.41855,57.41855" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 180.61407,334.71025 V 288.82993" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path562" inkscape:connector-curvature="0" /> <path - d="m 440.81062,185.88387 39.84374,39.8441" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 180.61407,281.7433 V 219.97464" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path564" inkscape:connector-curvature="0" /> <path - d="m 430.12053,185.88384 42.97478,42.97517" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 173.52744,331.77487 V 217.59527" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path566" inkscape:connector-curvature="0" /> <path - d="m 473.09531,248.48266 v 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 180.45278,220.18776 h 1.78129" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path568" inkscape:connector-curvature="0" /> <path - d="m 473.09531,256.04171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 182.23407,220.18776 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path570" inkscape:connector-curvature="0" /> <path - d="m 480.65436,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 182.23407,213.10113 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path572" inkscape:connector-curvature="0" /> <path - d="m 473.09531,228.85901 v 19.62365" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 175.14744,213.10113 v 2.35363" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path574" inkscape:connector-curvature="0" /> <path - d="m 480.65436,225.72797 v 22.75469" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 180.61407,219.97464 -0.16129,0.21312" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path576" inkscape:connector-curvature="0" /> <path - d="m 346.44334,164.1614 v 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 173.52744,217.59527 1.62,-2.14051" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path578" inkscape:connector-curvature="0" /> <path - d="m 346.44334,171.72045 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 300.97058,292.1525 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path580" inkscape:connector-curvature="0" /> <path - d="M 354.0024,171.72045 V 164.1614" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 300.97058,299.23913 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path582" inkscape:connector-curvature="0" /> <path - d="m 346.44334,164.1614 v -1.70991" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 293.88395,299.23913 V 292.1525" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path584" inkscape:connector-curvature="0" /> <path - d="m 354.0024,164.1614 v 1.42115" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 300.97058,292.1525 v -1.57293" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path586" inkscape:connector-curvature="0" /> <path - d="m 346.44334,162.45149 7.95472,-7.95472" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 293.88395,292.1525 v 1.36245" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path588" inkscape:connector-curvature="0" /> <path - d="m 354.0024,165.58255 3.52672,-3.52673" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 293.88395,293.51495 -4.68502,-4.68502" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path590" inkscape:connector-curvature="0" /> <path - d="m 354.39806,154.49677 h 55.0251" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 300.97058,290.57957 -8.83627,-8.83627" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path592" inkscape:connector-curvature="0" /> <path - d="m 357.52912,162.05582 h 48.763" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 289.19893,288.82993 H 180.61407" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path594" inkscape:connector-curvature="0" /> <path - d="m 409.42316,154.49677 26.0424,26.04204" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 292.13431,281.7433 H 180.61407" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path596" inkscape:connector-curvature="0" /> <path - d="m 406.29212,162.05582 23.82838,23.82805" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 174.75768,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path598" inkscape:connector-curvature="0" /> <path - d="M 481.07011,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 174.75768,361.28259 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path600" inkscape:connector-curvature="0" /> <path - d="m 481.07011,97.981869 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 167.67104,361.28259 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path602" inkscape:connector-curvature="0" /> <path - d="m 488.62917,97.981869 v 7.559061" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 174.75768,354.19596 v -1.02184" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path604" inkscape:connector-curvature="0" /> <path - d="m 481.07011,105.54093 v 2.93928" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 167.67104,354.19596 v -3.95722" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path606" inkscape:connector-curvature="0" /> <path - d="m 488.62917,105.54093 v 6.07034" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 174.75768,353.17412 53.48737,-53.48738" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path608" inkscape:connector-curvature="0" /> <path - d="m 481.07011,108.48021 -2.87514,2.87514" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 167.67104,350.23874 225.28788,292.6219" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path610" inkscape:connector-curvature="0" /> <path - d="m 488.62917,111.61127 -7.30313,7.30313" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 228.24505,299.68674 55.41808,-0.41208" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path612" inkscape:connector-curvature="0" /> <path - d="M 478.19497,111.35535 H 385.13696" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 225.28788,292.6219 67.90348,-0.50492" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path614" inkscape:connector-curvature="0" /> <path - d="M 481.32604,118.9144 H 388.26802" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 293.19136,292.11698 -1.9142,6.42197" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path616" inkscape:connector-curvature="0" /> <path - d="m 385.13696,111.35535 -51.89302,51.89302" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 283.66313,299.27466 -0.384,1.28827" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path618" inkscape:connector-curvature="0" /> <path - d="m 388.26802,118.9144 -45.43208,45.43209" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 283.27913,300.56293 8.68182,8.68182" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path620" inkscape:connector-curvature="0" /> <path - d="m 342.83594,164.34649 5.44271,8.73111" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 291.27716,298.53895 3.61917,3.61917" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path622" inkscape:connector-curvature="0" /> <path - d="m 333.24394,163.24837 -0.27686,-0.44412" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 291.96095,309.24475 h 22.70283" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path624" inkscape:connector-curvature="0" /> <path - d="m 332.96708,162.80425 -8.81385,-1.49988" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 294.89633,302.15812 H 311.7284" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path626" inkscape:connector-curvature="0" /> <path - d="m 348.27865,173.0776 -21.54256,-3.66598" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 314.66378,309.24475 371.8369,252.07162" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path628" inkscape:connector-curvature="0" /> <path - d="m 324.15323,161.30437 -53.30044,53.30044" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 311.7284,302.15812 53.02187,-53.02188" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path630" inkscape:connector-curvature="0" /> <path - d="m 326.73609,169.41162 -48.32425,48.32425" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 371.8369,252.07162 V 168.59705" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path632" inkscape:connector-curvature="0" /> <path - d="m 270.85279,214.60481 v 88.90856" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 364.75027,249.13624 V 165.54986" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path634" inkscape:connector-curvature="0" /> <path - d="m 278.41184,217.73587 v 89.02631" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 371.8369,168.59705 9.81215,-9.30014" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path636" inkscape:connector-curvature="0" /> <path - d="m 270.85279,303.51337 -10.48668,9.9462" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 364.75027,165.54986 9.81215,-9.30014" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path638" inkscape:connector-curvature="0" /> <path - d="m 278.41184,306.76218 -10.48667,9.94621" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 381.64905,159.29691 v -11.2217" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path640" inkscape:connector-curvature="0" /> <path - d="m 260.36611,313.45957 v 12.05785" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 374.56242,156.24972 v -5.23913" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path642" inkscape:connector-curvature="0" /> <path - d="m 267.92517,316.70839 v 5.67796" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 374.56242,151.01059 -8.42712,-8.42712" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path644" inkscape:connector-curvature="0" /> <path - d="m 267.92517,322.38635 8.874,8.87401" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 381.64905,148.07521 369.07068,135.49684" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path646" inkscape:connector-curvature="0" /> <path - d="m 260.36611,325.51742 13.302,13.30199" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 366.1353,142.58347 H 320.76855" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path648" inkscape:connector-curvature="0" /> <path - d="m 276.79917,331.26036 h 48.52639" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 369.07068,135.49684 h -51.2375" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path650" inkscape:connector-curvature="0" /> <path - d="m 273.66811,338.81941 h 54.78851" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 320.76855,142.58347 -66.5343,66.53431" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path652" inkscape:connector-curvature="0" /> <path - d="m 325.32556,331.26036 70.96975,-70.96975" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 317.83318,135.49684 247.14762,206.1824" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path654" inkscape:connector-curvature="0" /> <path - d="m 328.45662,338.81941 75.39774,-75.39774" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 254.23425,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path656" inkscape:connector-curvature="0" /> <path - d="m 396.29531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 254.23425,220.18776 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path658" inkscape:connector-curvature="0" /> <path - d="m 396.29531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 247.14762,220.18776 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path660" inkscape:connector-curvature="0" /> <path - d="m 403.85436,248.48266 v 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 254.23425,209.11778 v 3.98335" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path662" inkscape:connector-curvature="0" /> <path - d="m 396.29531,260.29061 v -4.2489" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 247.14762,206.1824 v 6.91873" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path664" inkscape:connector-curvature="0" /> <path - d="m 403.85436,263.42167 v -7.37996" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 354.12032,166.11676 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path666" inkscape:connector-curvature="0" /> <path - d="m 289.75043,306.15825 v 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 354.12032,159.03013 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path668" inkscape:connector-curvature="0" /> <path - d="m 289.75043,313.7173 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.03369,159.03013 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path670" inkscape:connector-curvature="0" /> <path - d="m 297.30948,313.7173 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 354.12032,166.11676 v 90.91728" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path672" inkscape:connector-curvature="0" /> <path - d="m 289.75043,306.15825 v -96.985" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.03369,166.11676 v 87.9819" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path674" inkscape:connector-curvature="0" /> <path - d="M 297.30948,306.15825 V 212.30431" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 354.12032,257.03404 310.214,300.94035" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path676" inkscape:connector-curvature="0" /> <path - d="m 289.75043,209.17325 34.42728,-34.42729" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 347.03369,254.09866 308.45445,292.6779" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path678" inkscape:connector-curvature="0" /> <path - d="m 297.30948,212.30431 29.9993,-29.99929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 305.77198,299.23913 h -2.88801" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path680" inkscape:connector-curvature="0" /> <path - d="m 324.17771,174.74596 h 28.78035" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 302.88397,299.23913 V 292.1525" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path682" inkscape:connector-curvature="0" /> <path - d="m 327.30878,182.30502 h 28.78034" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 302.88397,292.1525 h 7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path684" inkscape:connector-curvature="0" /> <path - d="m 352.95806,174.74596 3.62053,-3.62052" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 309.97061,292.1525 v 1.10606" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path686" inkscape:connector-curvature="0" /> <path - d="m 356.08912,182.30502 8.65916,-8.65916" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 310.214,300.94035 -4.44202,-1.70122" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path688" inkscape:connector-curvature="0" /> <path - d="M 363.60239,167.58668 V 164.1614" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 308.45445,292.6779 1.51616,0.58066" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path690" inkscape:connector-curvature="0" /> <path - d="m 363.60239,164.1614 h -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 354.12032,152.61673 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path692" inkscape:connector-curvature="0" /> <path - d="m 356.04334,164.1614 v 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.03369,152.61673 v -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path694" inkscape:connector-curvature="0" /> <path - d="m 356.04334,171.72045 h 0.64777" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.03369,145.53009 h 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path696" inkscape:connector-curvature="0" /> <path - d="m 364.74828,173.64586 -1.14589,-6.05918" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 354.12032,145.53009 v 0" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path698" inkscape:connector-curvature="0" /> <path - d="m 356.57859,171.12544 0.11252,0.59501" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 354.12032,152.61673 h 8.20556" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path700" inkscape:connector-curvature="0" /> <path - d="m 289.75043,320.55825 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 354.12032,145.53009 h 11.14094" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path702" inkscape:connector-curvature="0" /> <path - d="m 297.30948,320.55825 v 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 364.75027,155.04111 v 2.07563" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path704" inkscape:connector-curvature="0" /> <path - d="m 297.30948,328.1173 h -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 364.75027,157.11674 h 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path706" inkscape:connector-curvature="0" /> <path - d="m 289.75043,328.1173 v 0" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 371.8369,157.11674 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path708" inkscape:connector-curvature="0" /> <path - d="m 289.75043,320.55825 h -8.75258" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 371.8369,150.03011 h -2.07563" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path710" inkscape:connector-curvature="0" /> <path - d="M 289.75043,328.1173 H 277.86678" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 362.32588,152.61673 2.42439,2.42438" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path712" inkscape:connector-curvature="0" /> <path - d="m 278.41184,317.97224 v -2.21399" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 365.26126,145.53009 4.50001,4.50002" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path714" inkscape:connector-curvature="0" /> <path - d="m 278.41184,315.75825 h -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 183.7577,361.28259 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path716" inkscape:connector-curvature="0" /> <path - d="m 270.85279,315.75825 v 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 183.7577,354.19596 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path718" inkscape:connector-curvature="0" /> <path - d="m 270.85279,323.3173 h 2.21399" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 176.67107,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path720" inkscape:connector-curvature="0" /> <path - d="m 280.99785,320.55825 -2.58601,-2.58601" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 183.7577,361.28259 v 3.28258" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path722" inkscape:connector-curvature="0" /> <path - d="m 277.86678,328.1173 -4.8,-4.8" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 176.67107,361.28259 v 0.3472" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path724" inkscape:connector-curvature="0" /> <path - d="m 415.49531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 183.7577,364.56517 -6.66458,6.66457" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path726" inkscape:connector-curvature="0" /> <path - d="m 415.49531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 176.67107,361.62979 -2.51333,2.51332" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path728" inkscape:connector-curvature="0" /> <path - d="m 423.05436,248.48266 v 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 177.09312,371.22974 H 156.82455" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path730" inkscape:connector-curvature="0" /> <path - d="m 415.49531,256.04171 v 2.99835" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 174.15774,364.14311 H 159.75993" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path732" inkscape:connector-curvature="0" /> <path - d="M 423.05436,256.04171 V 255.909" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 156.82455,371.22974 -8.11131,-8.11131" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path734" inkscape:connector-curvature="0" /> <path - d="m 423.05436,255.909 3.09133,3.09133" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 159.75993,364.14311 -3.96006,-3.96006" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path736" inkscape:connector-curvature="0" /> <path - d="m 415.49531,259.04006 7.51932,7.51932" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 155.79987,360.18305 V 230.48752" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path738" inkscape:connector-curvature="0" /> <path - d="m 426.14569,259.00033 h 53.43146" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 148.71324,363.11843 V 227.55214" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path740" inkscape:connector-curvature="0" /> <path - d="m 423.01463,266.55938 h 59.69358" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 155.79987,230.48752 20.17357,-20.17357" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path742" inkscape:connector-curvature="0" /> <path - d="M 479.57715,259.00033 501.1103,237.46717" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 148.71324,227.55214 24.32482,-24.32482" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path744" inkscape:connector-curvature="0" /> <path - d="m 482.70821,266.55938 25.96115,-25.96114" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 175.97344,210.31395 h 52.59625" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path746" inkscape:connector-curvature="0" /> <path - d="M 501.1103,237.46717 V 99.002389" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 173.03806,203.22732 h 62.01512" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path748" inkscape:connector-curvature="0" /> <path - d="M 508.66936,240.59824 V 95.871329" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 229.14757,216.80193 v 3.38583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path750" inkscape:connector-curvature="0" /> <path - d="m 508.66936,95.871329 -8.32965,-8.32965" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 229.14757,220.18776 h 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path752" inkscape:connector-curvature="0" /> <path - d="m 501.1103,99.002389 -3.90166,-3.90165" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.2342,220.18776 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path754" inkscape:connector-curvature="0" /> <path - d="M 500.33971,87.541679 H 478.37904" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.2342,213.10113 h -0.30157" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path756" inkscape:connector-curvature="0" /> <path - d="M 497.20864,95.100739 H 481.5101" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 228.56969,210.31395 0.57788,6.48798" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path758" inkscape:connector-curvature="0" /> <path - d="m 478.37904,87.541679 -6.90893,6.90893" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 235.05318,203.22732 0.87945,9.87381" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path760" inkscape:connector-curvature="0" /> <path - d="m 481.5101,95.100739 -2.48093,2.48093" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 192.75772,361.28259 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path762" inkscape:connector-curvature="0" /> <path - d="m 471.47011,97.981869 v 7.559061" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 192.75772,354.19596 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path764" inkscape:connector-curvature="0" /> <path - d="m 471.47011,105.54093 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 185.67109,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path766" inkscape:connector-curvature="0" /> <path - d="M 479.02917,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 192.75772,361.28259 v 8.19326" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path768" inkscape:connector-curvature="0" /> <path - d="m 471.47011,94.450609 v 3.53126" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 185.67109,361.28259 v 5.25788" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path770" inkscape:connector-curvature="0" /> <path - d="m 479.02917,97.581669 v 0.4002" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 192.75772,369.47585 182.08247,380.1511" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path772" inkscape:connector-curvature="0" /> <path - d="m 461.87011,97.981869 v 7.559061" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 185.67109,366.54047 -6.524,6.524" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path774" inkscape:connector-curvature="0" /> <path - d="m 461.87011,105.54093 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 182.08247,380.1511 H 153.07076" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path776" inkscape:connector-curvature="0" /> <path - d="M 469.42917,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 179.14709,373.06447 H 156.00614" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path778" inkscape:connector-curvature="0" /> <path - d="m 461.87011,97.981869 v -7.45063" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 153.07076,380.1511 139.83405,366.91439" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path780" inkscape:connector-curvature="0" /> <path - d="m 469.42917,97.981869 v -4.31957" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 156.00614,373.06447 -9.08546,-9.08546" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path782" inkscape:connector-curvature="0" /> <path - d="m 461.87011,90.531239 12.74187,-12.74187" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 146.92068,363.97901 V 226.67172" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path784" inkscape:connector-curvature="0" /> <path - d="m 469.42917,93.662299 8.31387,-8.31388" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 139.83405,366.91439 V 223.73634" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path786" inkscape:connector-curvature="0" /> <path - d="m 474.61198,77.789369 h 29.33831" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 146.92068,226.67172 25.35389,-25.35389" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path788" inkscape:connector-curvature="0" /> <path - d="m 477.74304,85.348419 h 23.07619" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 139.83405,223.73634 169.33919,194.2312" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path790" inkscape:connector-curvature="0" /> <path - d="m 503.95029,77.789369 14.28278,14.28278" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 172.27457,201.31783 h 61.74785" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path792" inkscape:connector-curvature="0" /> <path - d="m 500.81923,85.348419 9.85479,9.85479" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 169.33919,194.2312 H 236.9578" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path794" inkscape:connector-curvature="0" /> <path - d="M 510.67402,95.203209 V 241.31662" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 234.02242,201.31783 4.12518,4.12518" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path796" inkscape:connector-curvature="0" /> <path - d="M 518.23307,92.072149 V 244.44768" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.9578,194.2312 8.27643,8.27643" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path798" inkscape:connector-curvature="0" /> <path - d="m 510.67402,241.31662 -27.35174,27.35174" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 245.23423,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path800" inkscape:connector-curvature="0" /> <path - d="m 518.23307,244.44768 -31.77973,31.77973" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 245.23423,220.18776 H 238.1476" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path802" inkscape:connector-curvature="0" /> <path - d="M 483.32228,268.66836 H 421.83212" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 238.1476,220.18776 v -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path804" inkscape:connector-curvature="0" /> <path - d="M 486.45334,276.22741 H 418.70105" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 245.23423,202.50763 v 10.5935" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path806" inkscape:connector-curvature="0" /> <path - d="m 421.83212,268.66836 -8.37776,-8.37775" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 238.1476,205.44301 v 7.65812" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path808" inkscape:connector-curvature="0" /> <path - d="M 418.70105,276.22741 405.89531,263.42167" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 164.87183,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path810" inkscape:connector-curvature="0" /> <path - d="m 405.89531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 164.87183,360.39676 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path812" inkscape:connector-curvature="0" /> <path - d="m 405.89531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 159.55685,360.39676 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path814" inkscape:connector-curvature="0" /> <path - d="m 413.45436,248.48266 v 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 164.87183,355.08179 v -5.88205" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path816" inkscape:connector-curvature="0" /> <path - d="m 405.89531,263.42167 v -7.37996" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 159.55685,355.08179 v -8.08358" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path818" inkscape:connector-curvature="0" /> <path - d="m 413.45436,260.29061 v -4.2489" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 164.87183,349.19974 14.85641,-14.85641" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path820" inkscape:connector-curvature="0" /> <path - d="M 491.61499,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 159.55685,346.99821 14.85642,-14.85642" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path822" inkscape:connector-curvature="0" /> <path - d="m 491.61499,98.926749 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 179.72824,334.34333 V 287.9441" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path824" inkscape:connector-curvature="0" /> <path - d="m 497.28428,98.926749 v 5.669291" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 179.72824,282.62913 V 219.67722" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path826" inkscape:connector-curvature="0" /> <path - d="m 491.61499,104.59604 v 21.1296" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 174.41327,332.14179 V 217.89269" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path828" inkscape:connector-curvature="0" /> <path - d="m 497.28428,104.59604 v 23.4779" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 180.01227,219.30193 h 1.33597" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path830" inkscape:connector-curvature="0" /> <path - d="m 491.61499,125.72564 -56.14943,56.14943" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 181.34824,219.30193 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path832" inkscape:connector-curvature="0" /> <path - d="m 431.45677,185.88387 2e-5,-3e-5" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 181.34824,213.98696 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path834" inkscape:connector-curvature="0" /> <path - d="m 497.28428,128.07394 -57.80992,57.80992" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 176.03327,213.98696 v 1.76522" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path836" inkscape:connector-curvature="0" /> <path - d="m 439.47436,185.88386 40.23512,40.23549" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 179.72824,219.67722 0.28403,-0.37529" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path838" inkscape:connector-curvature="0" /> <path - d="m 431.45679,185.88384 42.5834,42.58379" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 174.41327,217.89269 1.62,-2.14051" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path840" inkscape:connector-curvature="0" /> <path - d="m 474.04019,249.42754 v 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 300.08475,293.03833 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path842" inkscape:connector-curvature="0" /> <path - d="m 474.04019,255.09683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 300.08475,298.3533 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path844" inkscape:connector-curvature="0" /> <path - d="m 479.70948,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 294.76978,298.3533 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path846" inkscape:connector-curvature="0" /> <path - d="m 474.04019,228.46763 v 20.95991" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 300.08475,293.03833 V 290.9465" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path848" inkscape:connector-curvature="0" /> <path - d="m 479.70948,226.11935 v 23.30819" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 294.76978,293.03833 v 0.1097" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path850" inkscape:connector-curvature="0" /> <path - d="m 347.38822,165.10628 v 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 294.76978,293.14803 -5.20393,-5.20393" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path852" inkscape:connector-curvature="0" /> <path - d="m 347.38822,170.77557 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 300.08475,290.9465 -8.31736,-8.31737" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path854" inkscape:connector-curvature="0" /> <path - d="m 353.05751,170.77557 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 289.56585,287.9441 H 179.72824" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path856" inkscape:connector-curvature="0" /> <path - d="m 347.38822,165.10628 v -2.26341" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 291.76739,282.62913 H 179.72824" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path858" inkscape:connector-curvature="0" /> <path - d="m 353.05751,165.10628 v 0.0849" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 173.87185,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path860" inkscape:connector-curvature="0" /> <path - d="m 347.38822,162.84287 7.40122,-7.40122" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 173.87185,360.39676 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path862" inkscape:connector-curvature="0" /> <path - d="m 353.05751,165.19117 4.08023,-4.08023" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 168.55687,360.39676 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path864" inkscape:connector-curvature="0" /> <path - d="m 354.78944,155.44165 h 54.24234" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 173.87185,355.08179 v -2.2746" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path866" inkscape:connector-curvature="0" /> <path - d="M 357.13774,161.11094 H 406.6835" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 168.55687,355.08179 v -4.47613" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path868" inkscape:connector-curvature="0" /> <path - d="m 409.03178,155.44165 26.43378,26.43342" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 173.87185,352.80719 227.8754,298.80364" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path870" inkscape:connector-curvature="0" /> <path - d="m 406.6835,161.11094 24.77327,24.77293" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 168.55687,350.60566 57.10066,-57.10065" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path872" inkscape:connector-curvature="0" /> <path - d="M 482.01499,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 227.8754,298.80364 56.97876,-0.42369" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path874" inkscape:connector-curvature="0" /> <path - d="m 482.01499,98.926749 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 225.65753,293.50501 66.3428,-0.49332" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path876" inkscape:connector-curvature="0" /> <path - d="m 487.68428,98.926749 v 5.669291" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 292.00033,293.01169 -1.72292,5.78026" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path878" inkscape:connector-curvature="0" /> <path - d="m 482.01499,104.59604 v 4.27555" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 284.85416,298.37995 -0.57527,1.92999" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path880" inkscape:connector-curvature="0" /> <path - d="m 487.68428,104.59604 v 6.62385" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 284.27889,300.30994 8.04898,8.04898" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path882" inkscape:connector-curvature="0" /> <path - d="m 482.01499,108.87159 -3.42863,3.42864" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 290.27741,298.79195 4.25199,4.25199" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path884" inkscape:connector-curvature="0" /> <path - d="m 487.68428,111.21989 -6.74963,6.74963" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 292.32787,308.35892 h 21.96898" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path886" inkscape:connector-curvature="0" /> <path - d="M 478.58636,112.30023 H 385.52834" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 294.5294,303.04394 h 17.56592" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path888" inkscape:connector-curvature="0" /> <path - d="M 480.93465,117.96952 H 387.87664" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 314.29685,308.35892 370.95107,251.7047" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path890" inkscape:connector-curvature="0" /> <path - d="m 385.52834,112.30023 -51.0854,51.08541" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 312.09532,303.04394 365.6361,249.50317" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path892" inkscape:connector-curvature="0" /> <path - d="m 387.87664,117.96952 -46.2397,46.2397" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 370.95107,251.7047 V 168.21615" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path894" inkscape:connector-curvature="0" /> <path - d="m 341.63694,164.20922 4.72776,7.58421" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 365.6361,249.50317 V 165.93076" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path896" inkscape:connector-curvature="0" /> <path - d="m 334.44294,163.38564 0.43809,0.70278" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 370.95107,168.21615 9.81215,-9.30014" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path898" inkscape:connector-curvature="0" /> <path - d="m 334.88103,164.08842 -10.40494,-1.77065" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 365.6361,165.93076 9.81215,-9.30014" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path900" inkscape:connector-curvature="0" /> <path - d="m 346.3647,171.79343 -19.95146,-3.39521" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 380.76322,158.91601 V 148.44213" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path902" inkscape:connector-curvature="0" /> <path - d="m 324.47609,162.31777 -52.67842,52.67842" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 375.44825,156.63062 v -5.98695" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path904" inkscape:connector-curvature="0" /> <path - d="m 326.41324,168.39822 -48.94628,48.94627" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 375.44825,150.64367 -8.94603,-8.94603" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path906" inkscape:connector-curvature="0" /> <path - d="m 271.79767,214.99619 v 88.92328" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 380.76322,148.44213 368.70376,136.38267" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path908" inkscape:connector-curvature="0" /> <path - d="m 277.46696,217.34449 v 89.01159" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 366.50222,141.69764 H 320.40163" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path910" inkscape:connector-curvature="0" /> <path - d="m 271.79767,303.91947 -10.48668,9.9462" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 368.70376,136.38267 H 318.2001" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path912" inkscape:connector-curvature="0" /> <path - d="m 277.46696,306.35608 -10.48668,9.9462" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 320.40163,141.69764 -67.05321,67.05322" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path914" inkscape:connector-curvature="0" /> <path - d="m 261.31099,313.86567 v 11.26036" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 318.2001,136.38267 -70.16665,70.16665" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path916" inkscape:connector-curvature="0" /> <path - d="m 266.98028,316.30228 v 6.47546" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 253.34842,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path918" inkscape:connector-curvature="0" /> <path - d="m 266.98028,322.77774 9.42751,9.4275" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 253.34842,219.30193 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path920" inkscape:connector-curvature="0" /> <path - d="m 261.31099,325.12603 12.7485,12.7485" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 248.03345,219.30193 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path922" inkscape:connector-curvature="0" /> <path - d="m 276.40779,332.20524 h 49.30915" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 253.34842,208.75086 v 5.2361" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path924" inkscape:connector-curvature="0" /> <path - d="m 274.05949,337.87453 h 54.00575" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 248.03345,206.54932 v 7.43764" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path926" inkscape:connector-curvature="0" /> <path - d="m 325.71694,332.20524 71.52325,-71.52325" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.23449,165.23093 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path928" inkscape:connector-curvature="0" /> <path - d="m 328.06524,337.87453 74.84424,-74.84424" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.23449,159.91596 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path930" inkscape:connector-curvature="0" /> <path - d="m 397.24019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.91952,159.91596 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path932" inkscape:connector-curvature="0" /> <path - d="m 397.24019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.23449,165.23093 v 91.43619" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path934" inkscape:connector-curvature="0" /> <path - d="m 402.90948,249.42754 v 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.91952,165.23093 v 89.23465" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path936" inkscape:connector-curvature="0" /> <path - d="m 397.24019,260.68199 v -5.58516" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.23449,256.66712 -43.24043,43.24043" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path938" inkscape:connector-curvature="0" /> <path - d="m 402.90948,263.03029 v -7.93346" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 347.91952,254.46558 308.67439,293.7107" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path940" inkscape:connector-curvature="0" /> <path - d="m 290.69531,307.10313 v 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 305.93581,298.3533 H 303.7698" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path942" inkscape:connector-curvature="0" /> <path - d="m 290.69531,312.77242 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 303.7698,298.3533 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path944" inkscape:connector-curvature="0" /> <path - d="m 296.3646,312.77242 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 303.7698,293.03833 h 5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path946" inkscape:connector-curvature="0" /> <path - d="m 290.69531,307.10313 v -97.5385" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 309.08478,293.03833 v 0.82954" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path948" inkscape:connector-curvature="0" /> <path - d="m 296.3646,307.10313 v -95.1902" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 309.99406,299.90755 -4.05825,-1.55425" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path950" inkscape:connector-curvature="0" /> <path - d="M 290.69531,209.56463 324.5691,175.69085" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 308.67439,293.7107 0.41039,0.15717" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path952" inkscape:connector-curvature="0" /> <path - d="m 296.3646,211.91293 30.55279,-30.55279" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.23449,151.7309 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path954" inkscape:connector-curvature="0" /> <path - d="m 324.5691,175.69085 h 28.78034" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.91952,151.7309 v -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path956" inkscape:connector-curvature="0" /> <path - d="m 326.91739,181.36014 h 28.78035" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.91952,146.41592 h 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path958" inkscape:connector-curvature="0" /> <path - d="m 353.34944,175.69085 4.25036,-4.25036" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.23449,146.41592 v 0" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path960" inkscape:connector-curvature="0" /> <path - d="m 355.69774,181.36014 8.02933,-8.02933" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.23449,151.7309 h 9.45832" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path962" inkscape:connector-curvature="0" /> <path - d="m 362.65751,167.67524 v -2.56896" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.23449,146.41592 h 11.65985" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path964" inkscape:connector-curvature="0" /> <path - d="m 362.65751,165.10628 h -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 365.6361,154.67419 v 1.55672" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path966" inkscape:connector-curvature="0" /> <path - d="m 356.98822,165.10628 v 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 365.6361,156.23091 h 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path968" inkscape:connector-curvature="0" /> <path - d="m 356.98822,170.77557 h 0.48583" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 370.95107,156.23091 v -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path970" inkscape:connector-curvature="0" /> <path - d="m 363.72707,173.33081 -1.06956,-5.65557" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 370.95107,150.91593 h -1.55672" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path972" inkscape:connector-curvature="0" /> <path - d="m 357.5998,171.44049 -0.12575,-0.66492" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 362.69281,151.7309 2.94329,2.94329" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path974" inkscape:connector-curvature="0" /> <path - d="m 290.69531,321.50313 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 364.89434,146.41592 4.50001,4.50001" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path976" inkscape:connector-curvature="0" /> <path - d="m 296.3646,321.50313 v 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 182.87187,360.39676 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path978" inkscape:connector-curvature="0" /> <path - d="m 296.3646,327.17242 h -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 182.87187,355.08179 H 177.5569" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path980" inkscape:connector-curvature="0" /> <path - d="m 290.69531,327.17242 v 0" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 177.5569,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path982" inkscape:connector-curvature="0" /> <path - d="M 290.69531,321.50313 H 280.60646" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 182.87187,360.39676 v 3.80148" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path984" inkscape:connector-curvature="0" /> <path - d="M 290.69531,327.17242 H 278.25817" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 177.5569,360.39676 v 1.59995" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path986" inkscape:connector-curvature="0" /> <path - d="m 277.46696,318.36363 v -1.6605" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 182.87187,364.19824 -6.14567,6.14567" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path988" inkscape:connector-curvature="0" /> <path - d="m 277.46696,316.70313 h -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 177.5569,361.99671 -3.03223,3.03223" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path990" inkscape:connector-curvature="0" /> <path - d="m 271.79767,316.70313 v 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 176.7262,370.34391 H 157.19148" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path992" inkscape:connector-curvature="0" /> <path - d="m 271.79767,322.37242 h 1.6605" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 174.52467,365.02894 H 159.39301" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path994" inkscape:connector-curvature="0" /> <path - d="m 280.60646,321.50313 -3.1395,-3.1395" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 157.19148,370.34391 -7.59241,-7.5924" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path996" inkscape:connector-curvature="0" /> <path - d="m 278.25817,327.17242 -4.8,-4.8" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 159.39301,365.02894 -4.47896,-4.47897" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path998" inkscape:connector-curvature="0" /> <path - d="m 416.44019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 154.91405,360.54997 V 230.12059" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1000" inkscape:connector-curvature="0" /> <path - d="m 416.44019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 149.59907,362.75151 V 227.91906" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1002" inkscape:connector-curvature="0" /> <path - d="m 422.10948,249.42754 v 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 154.91405,230.12059 20.69246,-20.69246" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1004" inkscape:connector-curvature="0" /> <path - d="m 416.44019,255.09683 v 3.55185" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 149.59907,227.91906 23.80591,-23.80591" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1006" inkscape:connector-curvature="0" /> <path - d="m 422.10948,255.09683 v 1.20355" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 175.60651,209.42813 h 53.77362" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1008" inkscape:connector-curvature="0" /> <path - d="m 422.10948,256.30038 3.64483,3.64483" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 173.40498,204.11315 h 60.83777" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1010" inkscape:connector-curvature="0" /> <path - d="m 416.44019,258.64868 6.96582,6.96582" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 230.0334,216.76256 v 2.53937" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1012" inkscape:connector-curvature="0" /> <path - d="m 425.75431,259.94521 h 54.21422" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 230.0334,219.30193 h 5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1014" inkscape:connector-curvature="0" /> <path - d="m 423.40601,265.6145 h 58.91082" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 235.34838,219.30193 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1016" inkscape:connector-curvature="0" /> <path - d="m 479.96853,259.94521 22.08665,-22.08665" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 235.34838,213.98696 H 235.1222" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1018" inkscape:connector-curvature="0" /> <path - d="m 482.31683,265.6145 25.40764,-25.40765" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 229.38013,209.42813 0.65327,7.33443" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1020" inkscape:connector-curvature="0" /> <path - d="M 502.05518,237.85856 V 98.611009" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 234.24275,204.11315 0.87945,9.87381" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1022" inkscape:connector-curvature="0" /> <path - d="M 507.72447,240.20685 V 96.262709" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 191.87189,360.39676 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1024" inkscape:connector-curvature="0" /> <path - d="m 507.72447,96.262709 -7.77615,-7.77615" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 191.87189,355.08179 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1026" inkscape:connector-curvature="0" /> <path - d="m 502.05518,98.611009 -4.45515,-4.45516" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 186.55692,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1028" inkscape:connector-curvature="0" /> <path - d="m 499.94832,88.486559 h -21.1779" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 191.87189,360.39676 v 8.71217" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1030" inkscape:connector-curvature="0" /> <path - d="M 497.60003,94.155849 H 481.11872" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 186.55692,360.39676 v 6.51063" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1032" inkscape:connector-curvature="0" /> <path - d="m 478.77042,88.486559 -6.35543,6.35543" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 191.87189,369.10893 -10.15635,10.15634" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1034" inkscape:connector-curvature="0" /> <path - d="m 481.11872,94.155849 -3.03444,3.03444" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 186.55692,366.90739 -7.04291,7.04291" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1036" inkscape:connector-curvature="0" /> <path - d="m 472.41499,98.926749 v 5.669291" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 181.71554,379.26527 H 153.43769" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1038" inkscape:connector-curvature="0" /> <path - d="m 472.41499,104.59604 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 179.51401,373.9503 H 155.63922" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1040" inkscape:connector-curvature="0" /> <path - d="M 478.08428,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 153.43769,379.26527 140.71988,366.54746" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1042" inkscape:connector-curvature="0" /> <path - d="m 472.41499,94.841989 v 4.08476" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 155.63922,373.9503 -9.60437,-9.60437" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1044" inkscape:connector-curvature="0" /> <path - d="m 478.08428,97.190289 v 1.73646" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 146.03485,364.34593 V 226.3048" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1046" inkscape:connector-curvature="0" /> <path - d="m 462.81499,98.926749 v 5.669291" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 140.71988,366.54746 V 224.10326" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1048" inkscape:connector-curvature="0" /> <path - d="m 462.81499,104.59604 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 146.03485,226.3048 25.8728,-25.8728" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1050" inkscape:connector-curvature="0" /> <path - d="M 468.48428,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 140.71988,224.10326 28.98623,-28.98623" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1052" inkscape:connector-curvature="0" /> <path - d="m 462.81499,98.926749 v -8.00413" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 171.90765,200.432 h 62.48169" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1054" inkscape:connector-curvature="0" /> <path - d="m 468.48428,98.926749 v -5.65583" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 169.70611,195.11703 h 66.88477" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1056" inkscape:connector-curvature="0" /> <path - d="m 462.81499,90.922619 12.18838,-12.18837" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 234.38934,200.432 4.64408,4.64408" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1058" inkscape:connector-curvature="0" /> <path - d="m 468.48428,93.270919 8.86738,-8.86738" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.59088,195.11703 7.75752,7.75752" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1060" inkscape:connector-curvature="0" /> <path - d="m 475.00337,78.734249 h 28.55554" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 244.3484,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1062" inkscape:connector-curvature="0" /> <path - d="m 477.35166,84.403539 h 23.85895" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 244.3484,219.30193 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1064" inkscape:connector-curvature="0" /> <path - d="m 503.55891,78.734249 13.72928,13.72928" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 239.03342,219.30193 v -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1066" inkscape:connector-curvature="0" /> <path - d="m 501.21061,84.403539 10.40829,10.40829" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 244.3484,202.87455 v 11.11241" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1068" inkscape:connector-curvature="0" /> <path - d="M 511.6189,94.811829 V 241.708" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 239.03342,205.07608 v 8.91088" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1070" inkscape:connector-curvature="0" /> <path - d="M 517.28819,92.463529 V 244.0563" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 165.75765,361.28259 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1072" inkscape:connector-curvature="0" /> <path - d="m 511.6189,241.708 -27.90524,27.90524" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 182.23407,213.10113 -0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1074" inkscape:connector-curvature="0" /> <path - d="m 517.28819,244.0563 -31.22623,31.22623" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 300.97058,299.23913 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1076" inkscape:connector-curvature="0" /> <path - d="M 483.71366,269.61324 H 421.44073" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 174.75768,361.28259 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1078" inkscape:connector-curvature="0" /> <path - d="M 486.06196,275.28253 H 419.09243" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 254.23425,220.18776 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1080" inkscape:connector-curvature="0" /> <path - d="m 421.44073,269.61324 -8.93125,-8.93125" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 354.12032,159.03013 -0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1082" inkscape:connector-curvature="0" /> <path - d="M 419.09243,275.28253 406.84019,263.03029" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 302.88397,292.1525 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1084" inkscape:connector-curvature="0" /> <path - d="m 406.84019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.03369,152.61673 0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1086" inkscape:connector-curvature="0" /> <path - d="m 406.84019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 371.8369,157.11674 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1088" inkscape:connector-curvature="0" /> <path - d="m 412.50948,249.42754 v 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 183.7577,354.19596 -0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1090" inkscape:connector-curvature="0" /> <path - d="m 406.84019,263.03029 v -7.93346" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.2342,220.18776 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1092" inkscape:connector-curvature="0" /> <path - d="m 412.50948,260.68199 v -5.58516" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 192.75772,354.19596 -0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1094" inkscape:connector-curvature="0" /> <path - d="m 490.67011,97.981869 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 245.23423,220.18776 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1096" inkscape:connector-curvature="0" /> <path - d="m 473.09531,256.04171 0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 201.75774,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1098" inkscape:connector-curvature="0" /> <path - d="m 346.44334,171.72045 0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 201.75774,361.28259 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1100" inkscape:connector-curvature="0" /> <path - d="m 481.07011,97.981869 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 194.67111,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1102" inkscape:connector-curvature="0" /> <path - d="m 396.29531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 201.75774,354.19596 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1104" inkscape:connector-curvature="0" /> <path - d="m 289.75043,313.7173 0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 200.87191,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1106" inkscape:connector-curvature="0" /> <path - d="m 356.04334,164.1614 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 200.87191,360.39676 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1108" inkscape:connector-curvature="0" /> <path - d="m 297.30948,320.55825 -0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 195.55694,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1110" inkscape:connector-curvature="0" /> <path - d="m 270.85279,315.75825 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 200.87191,355.08179 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1112" inkscape:connector-curvature="0" /> <path - d="m 415.49531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 201.75774,361.28259 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1114" inkscape:connector-curvature="0" /> <path - d="m 471.47011,105.54093 0.94488,-0.94489" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 194.67111,354.19596 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1116" inkscape:connector-curvature="0" /> <path - d="m 461.87011,105.54093 0.94488,-0.94489" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 210.75776,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1118" inkscape:connector-curvature="0" /> <path - d="m 405.89531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 210.75776,361.28259 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1120" inkscape:connector-curvature="0" /> <path - d="M 452.27011,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 203.67113,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1122" inkscape:connector-curvature="0" /> <path - d="m 452.27011,97.981869 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 210.75776,354.19596 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1124" inkscape:connector-curvature="0" /> <path - d="M 459.82917,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 209.87194,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1126" inkscape:connector-curvature="0" /> <path - d="m 452.27011,105.54093 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 209.87194,360.39676 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1128" inkscape:connector-curvature="0" /> <path - d="M 453.21499,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 204.55696,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1130" inkscape:connector-curvature="0" /> <path - d="m 453.21499,98.926749 h 5.6693" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 209.87194,355.08179 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1132" inkscape:connector-curvature="0" /> <path - d="M 458.88429,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 210.75776,361.28259 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1134" inkscape:connector-curvature="0" /> <path - d="m 453.21499,104.59604 h 5.6693" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 203.67113,354.19596 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1136" inkscape:connector-curvature="0" /> <path - d="m 452.27011,97.981869 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 219.75779,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1138" inkscape:connector-curvature="0" /> <path - d="m 459.82917,105.54093 -0.94488,-0.94489" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 219.75779,361.28259 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1140" inkscape:connector-curvature="0" /> <path - d="M 442.67011,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 212.67115,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1142" inkscape:connector-curvature="0" /> <path - d="m 442.67011,97.981869 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 219.75779,354.19596 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1144" inkscape:connector-curvature="0" /> <path - d="M 450.22917,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 218.87196,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1146" inkscape:connector-curvature="0" /> <path - d="m 442.67011,105.54093 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 218.87196,360.39676 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1148" inkscape:connector-curvature="0" /> <path - d="M 443.61499,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 213.55698,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1150" inkscape:connector-curvature="0" /> <path - d="m 443.61499,98.926749 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 218.87196,355.08179 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1152" inkscape:connector-curvature="0" /> <path - d="M 449.28428,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 219.75779,361.28259 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1154" inkscape:connector-curvature="0" /> <path - d="m 443.61499,104.59604 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 212.67115,354.19596 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1156" inkscape:connector-curvature="0" /> <path - d="m 442.67011,97.981869 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 228.75781,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1158" inkscape:connector-curvature="0" /> <path - d="m 450.22917,105.54093 -0.94489,-0.94489" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 228.75781,361.28259 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1160" inkscape:connector-curvature="0" /> <path - d="M 433.07011,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 221.67118,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1162" inkscape:connector-curvature="0" /> <path - d="m 433.07011,97.981869 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 228.75781,354.19596 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1164" inkscape:connector-curvature="0" /> <path - d="M 440.62917,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 227.87198,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1166" inkscape:connector-curvature="0" /> <path - d="m 433.07011,105.54093 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 227.87198,360.39676 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1168" inkscape:connector-curvature="0" /> <path - d="M 434.01499,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 222.55701,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1170" inkscape:connector-curvature="0" /> <path - d="m 434.01499,98.926749 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 227.87198,355.08179 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1172" inkscape:connector-curvature="0" /> <path - d="M 439.68428,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 228.75781,361.28259 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1174" inkscape:connector-curvature="0" /> <path - d="m 434.01499,104.59604 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 221.67118,354.19596 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1176" inkscape:connector-curvature="0" /> <path - d="m 433.07011,97.981869 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 237.75783,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1178" inkscape:connector-curvature="0" /> <path - d="m 440.62917,105.54093 -0.94489,-0.94489" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 237.75783,361.28259 H 230.6712" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1180" inkscape:connector-curvature="0" /> <path - d="M 423.47011,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 230.6712,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1182" inkscape:connector-curvature="0" /> <path - d="m 423.47011,97.981869 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 237.75783,354.19596 H 230.6712" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1184" inkscape:connector-curvature="0" /> <path - d="M 431.02917,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.872,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1186" inkscape:connector-curvature="0" /> <path - d="m 423.47011,105.54093 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.872,360.39676 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1188" inkscape:connector-curvature="0" /> <path - d="M 424.41499,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 231.55703,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1190" inkscape:connector-curvature="0" /> <path - d="m 424.41499,98.926749 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.872,355.08179 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1192" inkscape:connector-curvature="0" /> <path - d="M 430.08428,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 237.75783,361.28259 236.872,360.39676" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1194" inkscape:connector-curvature="0" /> <path - d="m 424.41499,104.59604 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 230.6712,354.19596 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1196" inkscape:connector-curvature="0" /> <path - d="m 423.47011,97.981869 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 246.75785,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1198" inkscape:connector-curvature="0" /> <path - d="m 431.02917,105.54093 -0.94489,-0.94489" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 246.75785,361.28259 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1200" inkscape:connector-curvature="0" /> <path - d="M 413.87011,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 239.67122,354.19596 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1202" inkscape:connector-curvature="0" /> <path - d="m 413.87011,97.981869 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 246.75785,354.19596 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1204" inkscape:connector-curvature="0" /> <path - d="M 421.42917,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 245.87202,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1206" inkscape:connector-curvature="0" /> <path - d="m 413.87011,105.54093 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 245.87202,360.39676 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1208" inkscape:connector-curvature="0" /> <path - d="M 414.81499,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 240.55705,355.08179 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1210" inkscape:connector-curvature="0" /> <path - d="m 414.81499,98.926749 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 245.87202,355.08179 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1212" inkscape:connector-curvature="0" /> <path - d="M 420.48428,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 246.75785,361.28259 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1214" inkscape:connector-curvature="0" /> <path - d="m 414.81499,104.59604 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 239.67122,354.19596 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1216" inkscape:connector-curvature="0" /> <path - d="m 413.87011,97.981869 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 308.23438,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1218" inkscape:connector-curvature="0" /> <path - d="m 421.42917,105.54093 -0.94489,-0.94489" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 308.23438,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1220" inkscape:connector-curvature="0" /> <path - d="M 404.27011,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 301.14775,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1222" inkscape:connector-curvature="0" /> <path - d="m 404.27011,97.981869 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 308.23438,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1224" inkscape:connector-curvature="0" /> <path - d="M 411.82917,105.54093 V 97.981869" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 307.34855,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1226" inkscape:connector-curvature="0" /> <path - d="m 404.27011,105.54093 h 7.55906" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 307.34855,136.05172 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1228" inkscape:connector-curvature="0" /> <path - d="M 405.21499,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 302.03358,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1230" inkscape:connector-curvature="0" /> <path - d="m 405.21499,98.926749 h 5.6693" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 307.34855,130.73672 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1232" inkscape:connector-curvature="0" /> <path - d="M 410.88429,104.59604 V 98.926749" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 308.23438,136.93755 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1234" inkscape:connector-curvature="0" /> <path - d="m 405.21499,104.59604 h 5.6693" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 301.14775,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1236" inkscape:connector-curvature="0" /> <path - d="m 404.27011,97.981869 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 299.23436,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1238" inkscape:connector-curvature="0" /> <path - d="m 411.82917,105.54093 -0.94488,-0.94489" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 299.23436,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1240" inkscape:connector-curvature="0" /> <path - d="m 338.69531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 292.14773,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1242" inkscape:connector-curvature="0" /> <path - d="m 338.69531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 299.23436,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1244" inkscape:connector-curvature="0" /> <path - d="m 346.25436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 298.34853,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1246" inkscape:connector-curvature="0" /> <path - d="m 338.69531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 298.34853,136.05172 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1248" inkscape:connector-curvature="0" /> <path - d="m 339.64019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 293.03356,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1250" inkscape:connector-curvature="0" /> <path - d="m 339.64019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 298.34853,130.73672 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1252" inkscape:connector-curvature="0" /> <path - d="m 345.30948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 299.23436,136.93755 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1254" inkscape:connector-curvature="0" /> <path - d="m 339.64019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 292.14773,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1256" inkscape:connector-curvature="0" /> <path - d="m 338.69531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 290.23434,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1258" inkscape:connector-curvature="0" /> <path - d="m 346.25436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 290.23434,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1260" inkscape:connector-curvature="0" /> <path - d="m 348.29531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 283.14771,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1262" inkscape:connector-curvature="0" /> <path - d="m 348.29531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 290.23434,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1264" inkscape:connector-curvature="0" /> <path - d="m 355.85436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 289.34851,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1266" inkscape:connector-curvature="0" /> <path - d="m 348.29531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 289.34851,136.05172 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1268" inkscape:connector-curvature="0" /> <path - d="m 349.24019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 284.03353,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1270" inkscape:connector-curvature="0" /> <path - d="m 349.24019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 289.34851,130.73672 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1272" inkscape:connector-curvature="0" /> <path - d="m 354.90948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 290.23434,136.93755 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1274" inkscape:connector-curvature="0" /> <path - d="m 349.24019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 283.14771,129.85092 0.88582,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1276" inkscape:connector-curvature="0" /> <path - d="m 348.29531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 281.23431,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1278" inkscape:connector-curvature="0" /> <path - d="m 355.85436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 281.23431,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1280" inkscape:connector-curvature="0" /> <path - d="m 357.89531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 274.14768,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1282" inkscape:connector-curvature="0" /> <path - d="m 357.89531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 281.23431,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1284" inkscape:connector-curvature="0" /> <path - d="m 365.45436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 280.34849,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1286" inkscape:connector-curvature="0" /> <path - d="m 357.89531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 280.34849,136.05172 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1288" inkscape:connector-curvature="0" /> <path - d="m 358.84019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 275.03351,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1290" inkscape:connector-curvature="0" /> <path - d="m 358.84019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 280.34849,130.73672 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1292" inkscape:connector-curvature="0" /> <path - d="m 364.50948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 281.23431,136.93755 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1294" inkscape:connector-curvature="0" /> <path - d="m 358.84019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 274.14768,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1296" inkscape:connector-curvature="0" /> <path - d="m 357.89531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 272.23429,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1298" inkscape:connector-curvature="0" /> <path - d="m 365.45436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 272.23429,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1300" inkscape:connector-curvature="0" /> <path - d="m 367.49531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 265.14766,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1302" inkscape:connector-curvature="0" /> <path - d="m 367.49531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 272.23429,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1304" inkscape:connector-curvature="0" /> <path - d="m 375.05436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 271.34846,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1306" inkscape:connector-curvature="0" /> <path - d="m 367.49531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 271.34846,136.05172 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1308" inkscape:connector-curvature="0" /> <path - d="m 368.44019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 266.03349,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1310" inkscape:connector-curvature="0" /> <path - d="m 368.44019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 271.34846,130.73672 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1312" inkscape:connector-curvature="0" /> <path - d="m 374.10948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 272.23429,136.93755 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1314" inkscape:connector-curvature="0" /> <path - d="m 368.44019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 265.14766,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1316" inkscape:connector-curvature="0" /> <path - d="m 367.49531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 263.23427,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1318" inkscape:connector-curvature="0" /> <path - d="m 375.05436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 263.23427,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1320" inkscape:connector-curvature="0" /> <path - d="m 377.09531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 256.14764,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1322" inkscape:connector-curvature="0" /> <path - d="m 377.09531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 263.23427,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1324" inkscape:connector-curvature="0" /> <path - d="m 384.65436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 262.34844,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1326" inkscape:connector-curvature="0" /> <path - d="m 377.09531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 262.34844,136.05172 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1328" inkscape:connector-curvature="0" /> <path - d="m 378.04019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 257.03347,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1330" inkscape:connector-curvature="0" /> <path - d="m 378.04019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 262.34844,130.73672 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1332" inkscape:connector-curvature="0" /> <path - d="m 383.70948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 263.23427,136.93755 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1334" inkscape:connector-curvature="0" /> <path - d="m 378.04019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 256.14764,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1336" inkscape:connector-curvature="0" /> <path - d="m 377.09531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 254.23425,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1338" inkscape:connector-curvature="0" /> <path - d="m 384.65436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 254.23425,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1340" inkscape:connector-curvature="0" /> <path - d="m 386.69531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 247.14762,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1342" inkscape:connector-curvature="0" /> <path - d="m 386.69531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 254.23425,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1344" inkscape:connector-curvature="0" /> <path - d="m 394.25436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 253.34842,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1346" inkscape:connector-curvature="0" /> <path - d="m 386.69531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 253.34842,136.05172 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1348" inkscape:connector-curvature="0" /> <path - d="m 387.64019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 248.03345,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1350" inkscape:connector-curvature="0" /> <path - d="m 387.64019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 253.34842,130.73672 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1352" inkscape:connector-curvature="0" /> <path - d="m 393.30948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 254.23425,136.93755 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1354" inkscape:connector-curvature="0" /> <path - d="m 387.64019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 247.14762,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1356" inkscape:connector-curvature="0" /> <path - d="m 386.69531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 245.23423,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1358" inkscape:connector-curvature="0" /> <path - d="m 394.25436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 245.23423,136.93755 H 238.1476" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1360" inkscape:connector-curvature="0" /> <path - d="m 396.29531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 238.1476,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1362" inkscape:connector-curvature="0" /> <path - d="m 396.29531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 245.23423,129.85092 H 238.1476" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1364" inkscape:connector-curvature="0" /> <path - d="m 403.85436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 244.3484,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1366" inkscape:connector-curvature="0" /> <path - d="m 396.29531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 244.3484,136.05172 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1368" inkscape:connector-curvature="0" /> <path - d="m 397.24019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 239.03342,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1370" inkscape:connector-curvature="0" /> <path - d="m 397.24019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 244.3484,130.73672 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1372" inkscape:connector-curvature="0" /> <path - d="m 402.90948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 245.23423,136.93755 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1374" inkscape:connector-curvature="0" /> <path - d="m 397.24019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 238.1476,129.85092 0.88582,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1376" inkscape:connector-curvature="0" /> <path - d="m 396.29531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.2342,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1378" inkscape:connector-curvature="0" /> <path - d="m 403.85436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.2342,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1380" inkscape:connector-curvature="0" /> <path - d="m 405.89531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 229.14757,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1382" inkscape:connector-curvature="0" /> <path - d="m 405.89531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.2342,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1384" inkscape:connector-curvature="0" /> <path - d="m 413.45436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 235.34838,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1386" inkscape:connector-curvature="0" /> <path - d="m 405.89531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 235.34838,136.05172 H 230.0334" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1388" inkscape:connector-curvature="0" /> <path - d="m 406.84019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 230.0334,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1390" inkscape:connector-curvature="0" /> <path - d="m 406.84019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 235.34838,130.73672 H 230.0334" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1392" inkscape:connector-curvature="0" /> <path - d="m 412.50948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.2342,136.93755 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1394" inkscape:connector-curvature="0" /> <path - d="m 406.84019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 229.14757,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1396" inkscape:connector-curvature="0" /> <path - d="m 405.89531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 227.23418,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1398" inkscape:connector-curvature="0" /> <path - d="m 413.45436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 227.23418,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1400" inkscape:connector-curvature="0" /> <path - d="m 415.49531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 220.14755,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1402" inkscape:connector-curvature="0" /> <path - d="m 415.49531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 227.23418,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1404" inkscape:connector-curvature="0" /> <path - d="m 423.05436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 226.34835,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1406" inkscape:connector-curvature="0" /> <path - d="m 415.49531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 226.34835,136.05172 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1408" inkscape:connector-curvature="0" /> <path - d="m 416.44019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 221.03338,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1410" inkscape:connector-curvature="0" /> <path - d="m 416.44019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 226.34835,130.73672 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1412" inkscape:connector-curvature="0" /> <path - d="m 422.10948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 227.23418,136.93755 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1414" inkscape:connector-curvature="0" /> <path - d="m 416.44019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 220.14755,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1416" inkscape:connector-curvature="0" /> <path - d="m 415.49531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 218.23416,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1418" inkscape:connector-curvature="0" /> <path - d="m 423.05436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 218.23416,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1420" inkscape:connector-curvature="0" /> <path - d="m 425.09531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 211.14753,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1422" inkscape:connector-curvature="0" /> <path - d="m 425.09531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 218.23416,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1424" inkscape:connector-curvature="0" /> <path - d="m 432.65436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 217.34833,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1426" inkscape:connector-curvature="0" /> <path - d="m 425.09531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 217.34833,136.05172 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1428" inkscape:connector-curvature="0" /> <path - d="m 426.04019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 212.03336,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1430" inkscape:connector-curvature="0" /> <path - d="m 426.04019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 217.34833,130.73672 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1432" inkscape:connector-curvature="0" /> <path - d="m 431.70948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 218.23416,136.93755 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1434" inkscape:connector-curvature="0" /> <path - d="m 426.04019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 211.14753,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1436" inkscape:connector-curvature="0" /> <path - d="m 425.09531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 209.23414,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1438" inkscape:connector-curvature="0" /> <path - d="m 432.65436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 209.23414,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1440" inkscape:connector-curvature="0" /> <path - d="m 434.69531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 202.14751,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1442" inkscape:connector-curvature="0" /> <path - d="m 434.69531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 209.23414,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1444" inkscape:connector-curvature="0" /> <path - d="m 442.25436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 208.34831,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1446" inkscape:connector-curvature="0" /> <path - d="m 434.69531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 208.34831,136.05172 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1448" inkscape:connector-curvature="0" /> <path - d="m 435.64019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 203.03334,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1450" inkscape:connector-curvature="0" /> <path - d="m 435.64019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 208.34831,130.73672 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1452" inkscape:connector-curvature="0" /> <path - d="m 441.30948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 209.23414,136.93755 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1454" inkscape:connector-curvature="0" /> <path - d="m 435.64019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 202.14751,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1456" inkscape:connector-curvature="0" /> <path - d="m 434.69531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 200.23412,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1458" inkscape:connector-curvature="0" /> <path - d="m 442.25436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 200.23412,136.93755 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1460" inkscape:connector-curvature="0" /> <path - d="m 444.29531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 193.14748,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1462" inkscape:connector-curvature="0" /> <path - d="m 444.29531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 200.23412,129.85092 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1464" inkscape:connector-curvature="0" /> <path - d="m 451.85436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 199.34829,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1466" inkscape:connector-curvature="0" /> <path - d="m 444.29531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 199.34829,136.05172 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1468" inkscape:connector-curvature="0" /> <path - d="m 445.24019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 194.03331,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1470" inkscape:connector-curvature="0" /> <path - d="m 445.24019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 199.34829,130.73672 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1472" inkscape:connector-curvature="0" /> <path - d="m 450.90948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 200.23412,136.93755 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1474" inkscape:connector-curvature="0" /> <path - d="m 445.24019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 193.14748,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1476" inkscape:connector-curvature="0" /> <path - d="m 444.29531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 191.23409,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1478" inkscape:connector-curvature="0" /> <path - d="m 451.85436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 191.23409,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1480" inkscape:connector-curvature="0" /> <path - d="m 453.89531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 184.14746,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1482" inkscape:connector-curvature="0" /> <path - d="m 453.89531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 191.23409,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1484" inkscape:connector-curvature="0" /> <path - d="m 461.45436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 190.34827,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1486" inkscape:connector-curvature="0" /> <path - d="m 453.89531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 190.34827,136.05172 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1488" inkscape:connector-curvature="0" /> <path - d="m 454.84019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 185.03329,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1490" inkscape:connector-curvature="0" /> <path - d="m 454.84019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 190.34827,130.73672 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1492" inkscape:connector-curvature="0" /> <path - d="m 460.50948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 191.23409,136.93755 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1494" inkscape:connector-curvature="0" /> <path - d="m 454.84019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 184.14746,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1496" inkscape:connector-curvature="0" /> <path - d="m 453.89531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 182.23407,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1498" inkscape:connector-curvature="0" /> <path - d="m 461.45436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 182.23407,136.93755 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1500" inkscape:connector-curvature="0" /> <path - d="m 463.49531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 175.14744,129.85092 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1502" inkscape:connector-curvature="0" /> <path - d="m 463.49531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 182.23407,129.85092 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1504" inkscape:connector-curvature="0" /> <path - d="m 471.05436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 181.34824,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1506" inkscape:connector-curvature="0" /> <path - d="m 463.49531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 181.34824,136.05172 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1508" inkscape:connector-curvature="0" /> <path - d="m 464.44019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 176.03327,130.73672 v 5.315" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1510" inkscape:connector-curvature="0" /> <path - d="m 464.44019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 181.34824,130.73672 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1512" inkscape:connector-curvature="0" /> <path - d="m 470.10948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 182.23407,136.93755 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1514" inkscape:connector-curvature="0" /> <path - d="m 464.44019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 175.14744,129.85092 0.88583,0.8858" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1516" inkscape:connector-curvature="0" /> <path - d="m 463.49531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 191.23409,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1518" inkscape:connector-curvature="0" /> <path - d="m 471.05436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 191.23409,220.18776 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1520" inkscape:connector-curvature="0" /> <path - d="m 473.09531,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 184.14746,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1522" inkscape:connector-curvature="0" /> <path - d="m 473.09531,337.28266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 191.23409,213.10113 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1524" inkscape:connector-curvature="0" /> <path - d="m 480.65436,344.84171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 190.34827,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1526" inkscape:connector-curvature="0" /> <path - d="m 473.09531,344.84171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 190.34827,219.30193 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1528" inkscape:connector-curvature="0" /> <path - d="m 474.04019,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 185.03329,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1530" inkscape:connector-curvature="0" /> <path - d="m 474.04019,338.22754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 190.34827,213.98696 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1532" inkscape:connector-curvature="0" /> <path - d="m 479.70948,343.89683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 191.23409,220.18776 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1534" inkscape:connector-curvature="0" /> <path - d="m 474.04019,343.89683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 184.14746,213.10113 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1536" inkscape:connector-curvature="0" /> <path - d="m 473.09531,337.28266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 200.23412,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1538" inkscape:connector-curvature="0" /> <path - d="m 480.65436,344.84171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 200.23412,220.18776 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1540" inkscape:connector-curvature="0" /> <path - d="m 463.49531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 193.14748,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1542" inkscape:connector-curvature="0" /> <path - d="m 463.49531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 200.23412,213.10113 h -7.08664" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1544" inkscape:connector-curvature="0" /> <path - d="m 471.05436,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 199.34829,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1546" inkscape:connector-curvature="0" /> <path - d="m 463.49531,256.04171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 199.34829,219.30193 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1548" inkscape:connector-curvature="0" /> <path - d="m 464.44019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 194.03331,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1550" inkscape:connector-curvature="0" /> <path - d="m 464.44019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 199.34829,213.98696 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1552" inkscape:connector-curvature="0" /> <path - d="m 470.10948,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 200.23412,220.18776 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1554" inkscape:connector-curvature="0" /> <path - d="m 464.44019,255.09683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 193.14748,213.10113 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1556" inkscape:connector-curvature="0" /> <path - d="m 463.49531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 209.23414,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1558" inkscape:connector-curvature="0" /> <path - d="m 471.05436,256.04171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 209.23414,220.18776 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1560" inkscape:connector-curvature="0" /> <path - d="m 453.89531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 202.14751,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1562" inkscape:connector-curvature="0" /> <path - d="m 453.89531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 209.23414,213.10113 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1564" inkscape:connector-curvature="0" /> <path - d="m 461.45436,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 208.34831,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1566" inkscape:connector-curvature="0" /> <path - d="m 453.89531,256.04171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 208.34831,219.30193 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1568" inkscape:connector-curvature="0" /> <path - d="m 454.84019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 203.03334,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1570" inkscape:connector-curvature="0" /> <path - d="m 454.84019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 208.34831,213.98696 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1572" inkscape:connector-curvature="0" /> <path - d="m 460.50948,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 209.23414,220.18776 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1574" inkscape:connector-curvature="0" /> <path - d="m 454.84019,255.09683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 202.14751,213.10113 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1576" inkscape:connector-curvature="0" /> <path - d="m 453.89531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 218.23416,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1578" inkscape:connector-curvature="0" /> <path - d="m 461.45436,256.04171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 218.23416,220.18776 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1580" inkscape:connector-curvature="0" /> <path - d="m 444.29531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 211.14753,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1582" inkscape:connector-curvature="0" /> <path - d="m 444.29531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 218.23416,213.10113 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1584" inkscape:connector-curvature="0" /> <path - d="m 451.85436,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 217.34833,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1586" inkscape:connector-curvature="0" /> <path - d="m 444.29531,256.04171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 217.34833,219.30193 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1588" inkscape:connector-curvature="0" /> <path - d="m 445.24019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 212.03336,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1590" inkscape:connector-curvature="0" /> <path - d="m 445.24019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 217.34833,213.98696 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1592" inkscape:connector-curvature="0" /> <path - d="m 450.90948,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 218.23416,220.18776 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1594" inkscape:connector-curvature="0" /> <path - d="m 445.24019,255.09683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 211.14753,213.10113 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1596" inkscape:connector-curvature="0" /> <path - d="m 444.29531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 227.23418,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1598" inkscape:connector-curvature="0" /> <path - d="m 451.85436,256.04171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 227.23418,220.18776 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1600" inkscape:connector-curvature="0" /> <path - d="m 434.69531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 220.14755,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1602" inkscape:connector-curvature="0" /> <path - d="m 434.69531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 227.23418,213.10113 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1604" inkscape:connector-curvature="0" /> <path - d="m 442.25436,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 226.34835,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1606" inkscape:connector-curvature="0" /> <path - d="m 434.69531,256.04171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 226.34835,219.30193 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1608" inkscape:connector-curvature="0" /> <path - d="m 435.64019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 221.03338,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1610" inkscape:connector-curvature="0" /> <path - d="m 435.64019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 226.34835,213.98696 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1612" inkscape:connector-curvature="0" /> <path - d="m 441.30948,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 227.23418,220.18776 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1614" inkscape:connector-curvature="0" /> <path - d="m 435.64019,255.09683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 220.14755,213.10113 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1616" inkscape:connector-curvature="0" /> <path - d="m 434.69531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 263.23427,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1618" inkscape:connector-curvature="0" /> <path - d="m 442.25436,256.04171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 263.23427,220.18776 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1620" inkscape:connector-curvature="0" /> <path - d="m 425.09531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 256.14764,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1622" inkscape:connector-curvature="0" /> <path - d="m 425.09531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 263.23427,213.10113 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1624" inkscape:connector-curvature="0" /> <path - d="m 432.65436,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 262.34844,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1626" inkscape:connector-curvature="0" /> <path - d="m 425.09531,256.04171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 262.34844,219.30193 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1628" inkscape:connector-curvature="0" /> <path - d="m 426.04019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 257.03347,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1630" inkscape:connector-curvature="0" /> <path - d="m 426.04019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 262.34844,213.98696 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1632" inkscape:connector-curvature="0" /> <path - d="m 431.70948,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 263.23427,220.18776 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1634" inkscape:connector-curvature="0" /> <path - d="m 426.04019,255.09683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 256.14764,213.10113 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1636" inkscape:connector-curvature="0" /> <path - d="m 425.09531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 272.23429,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1638" inkscape:connector-curvature="0" /> <path - d="m 432.65436,256.04171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 272.23429,220.18776 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1640" inkscape:connector-curvature="0" /> <path - d="m 386.69531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 265.14766,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1642" inkscape:connector-curvature="0" /> <path - d="m 386.69531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 272.23429,213.10113 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1644" inkscape:connector-curvature="0" /> <path - d="m 394.25436,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 271.34846,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1646" inkscape:connector-curvature="0" /> <path - d="m 386.69531,256.04171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 271.34846,219.30193 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1648" inkscape:connector-curvature="0" /> <path - d="m 387.64019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 266.03349,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1650" inkscape:connector-curvature="0" /> <path - d="m 387.64019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 271.34846,213.98696 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1652" inkscape:connector-curvature="0" /> <path - d="m 393.30948,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 272.23429,220.18776 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1654" inkscape:connector-curvature="0" /> <path - d="m 387.64019,255.09683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 265.14766,213.10113 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1656" inkscape:connector-curvature="0" /> <path - d="m 386.69531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 281.23431,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1658" inkscape:connector-curvature="0" /> <path - d="m 394.25436,256.04171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 281.23431,220.18776 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1660" inkscape:connector-curvature="0" /> <path - d="m 377.09531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 274.14768,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1662" inkscape:connector-curvature="0" /> <path - d="m 377.09531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 281.23431,213.10113 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1664" inkscape:connector-curvature="0" /> <path - d="m 384.65436,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 280.34849,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1666" inkscape:connector-curvature="0" /> <path - d="m 377.09531,256.04171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 280.34849,219.30193 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1668" inkscape:connector-curvature="0" /> <path - d="m 378.04019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 275.03351,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1670" inkscape:connector-curvature="0" /> <path - d="m 378.04019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 280.34849,213.98696 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1672" inkscape:connector-curvature="0" /> <path - d="m 383.70948,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 281.23431,220.18776 -0.88582,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1674" inkscape:connector-curvature="0" /> <path - d="m 378.04019,255.09683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 274.14768,213.10113 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1676" inkscape:connector-curvature="0" /> <path - d="m 377.09531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 290.23434,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1678" inkscape:connector-curvature="0" /> <path - d="m 384.65436,256.04171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 290.23434,220.18776 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1680" inkscape:connector-curvature="0" /> <path - d="m 367.49531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 283.14771,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1682" inkscape:connector-curvature="0" /> <path - d="m 367.49531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 290.23434,213.10113 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1684" inkscape:connector-curvature="0" /> <path - d="m 375.05436,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 289.34851,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1686" inkscape:connector-curvature="0" /> <path - d="m 367.49531,256.04171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 289.34851,219.30193 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1688" inkscape:connector-curvature="0" /> <path - d="m 368.44019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 284.03353,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1690" inkscape:connector-curvature="0" /> <path - d="m 368.44019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 289.34851,213.98696 h -5.31498" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1692" inkscape:connector-curvature="0" /> <path - d="m 374.10948,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 290.23434,220.18776 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1694" inkscape:connector-curvature="0" /> <path - d="m 368.44019,255.09683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 283.14771,213.10113 0.88582,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1696" inkscape:connector-curvature="0" /> <path - d="m 367.49531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 299.23436,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1698" inkscape:connector-curvature="0" /> <path - d="m 375.05436,256.04171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 299.23436,220.18776 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1700" inkscape:connector-curvature="0" /> <path - d="m 357.89531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 292.14773,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1702" inkscape:connector-curvature="0" /> <path - d="m 357.89531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 299.23436,213.10113 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1704" inkscape:connector-curvature="0" /> <path - d="m 365.45436,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 298.34853,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1706" inkscape:connector-curvature="0" /> <path - d="m 357.89531,256.04171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 298.34853,219.30193 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1708" inkscape:connector-curvature="0" /> <path - d="m 358.84019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 293.03356,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1710" inkscape:connector-curvature="0" /> <path - d="m 358.84019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 298.34853,213.98696 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1712" inkscape:connector-curvature="0" /> <path - d="m 364.50948,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 299.23436,220.18776 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1714" inkscape:connector-curvature="0" /> <path - d="m 358.84019,255.09683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 292.14773,213.10113 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1716" inkscape:connector-curvature="0" /> <path - d="m 357.89531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 308.23438,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1718" inkscape:connector-curvature="0" /> <path - d="m 365.45436,256.04171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 308.23438,220.18776 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1720" inkscape:connector-curvature="0" /> <path - d="m 348.29531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 301.14775,213.10113 v 7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1722" inkscape:connector-curvature="0" /> <path - d="m 348.29531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 308.23438,213.10113 h -7.08663" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1724" inkscape:connector-curvature="0" /> <path - d="m 355.85436,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 307.34855,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1726" inkscape:connector-curvature="0" /> <path - d="m 348.29531,256.04171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 307.34855,219.30193 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1728" inkscape:connector-curvature="0" /> <path - d="m 349.24019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 302.03358,213.98696 v 5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1730" inkscape:connector-curvature="0" /> <path - d="m 349.24019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 307.34855,213.98696 h -5.31497" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1732" inkscape:connector-curvature="0" /> <path - d="m 354.90948,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 308.23438,220.18776 -0.88583,-0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1734" inkscape:connector-curvature="0" /> <path - d="m 349.24019,255.09683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 301.14775,213.10113 0.88583,0.88583" + style="fill:none;stroke:#ff00ff;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1736" inkscape:connector-curvature="0" /> + </g> + <g + inkscape:groupmode="layer" + inkscape:label="Circuit_Etc" + id="g2258" + style="display:none"> <path - d="m 348.29531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path1738" - inkscape:connector-curvature="0" /> - <path - d="m 355.85436,256.04171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 165.31474,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1740" inkscape:connector-curvature="0" /> <path - d="m 338.69531,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 165.31474,360.83968 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1742" inkscape:connector-curvature="0" /> <path - d="m 338.69531,248.48266 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 159.11394,360.83968 v -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1744" inkscape:connector-curvature="0" /> <path - d="m 346.25436,256.04171 v -7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 165.31474,354.63887 V 349.3832" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1746" inkscape:connector-curvature="0" /> <path - d="m 338.69531,256.04171 h 7.55905" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 159.11394,354.63887 v -7.82412" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1748" inkscape:connector-curvature="0" /> <path - d="m 339.64019,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 165.31474,349.3832 14.85641,-14.85641" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1750" inkscape:connector-curvature="0" /> <path - d="m 339.64019,249.42754 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 159.11394,346.81475 14.85641,-14.85642" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1752" inkscape:connector-curvature="0" /> <path - d="m 345.30948,255.09683 v -5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 180.17115,334.52679 V 288.38702" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1754" inkscape:connector-curvature="0" /> <path - d="m 339.64019,255.09683 h 5.66929" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 180.17115,282.18622 V 219.82593" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1756" inkscape:connector-curvature="0" /> <path - d="m 338.69531,248.48266 0.94488,0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 173.97035,331.95833 V 217.74398" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1758" inkscape:connector-curvature="0" /> <path - d="m 346.25436,256.04171 -0.94488,-0.94488" - style="fill:none;stroke:#ff00ff;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 180.23253,219.74484 h 1.55863" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1760" inkscape:connector-curvature="0" /> - </g> - <g - inkscape:groupmode="layer" - inkscape:label="Circuit_Etc" - id="g2294" - style="display:none"> <path - d="M 491.14255,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 181.79116,219.74484 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" + id="path1762" + inkscape:connector-curvature="0" /> + <path + d="m 181.79116,213.54404 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1764" inkscape:connector-curvature="0" /> <path - d="m 491.14255,98.454309 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 175.59036,213.54404 v 2.05943" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1766" inkscape:connector-curvature="0" /> <path - d="m 497.75673,98.454309 v 6.614171" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 180.17115,219.82593 0.0614,-0.0811" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1768" inkscape:connector-curvature="0" /> <path - d="m 491.14255,105.06848 v 20.46147" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 173.97035,217.74398 1.62001,-2.14051" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1770" inkscape:connector-curvature="0" /> <path - d="m 497.75673,105.06848 v 23.20115" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 300.52767,292.59542 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1772" inkscape:connector-curvature="0" /> <path - d="m 491.14255,125.52995 -55.67699,55.67699" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 300.52767,298.79622 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1774" inkscape:connector-curvature="0" /> <path - d="m 430.78863,185.88387 3e-5,-3e-5" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 294.32687,298.79622 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1776" inkscape:connector-curvature="0" /> <path - d="m 497.75673,128.26963 -57.61424,57.61424" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 300.52767,292.59542 v -1.83238" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1778" inkscape:connector-curvature="0" /> <path - d="m 440.14249,185.88387 40.03943,40.03979" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 294.32687,292.59542 v 0.73607" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1780" inkscape:connector-curvature="0" /> <path - d="m 430.78866,185.88384 42.77909,42.77948" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 294.32687,293.33149 -4.94448,-4.94447" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1782" inkscape:connector-curvature="0" /> <path - d="m 473.56775,248.9551 v 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 300.52767,290.76304 -8.57682,-8.57682" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1784" inkscape:connector-curvature="0" /> <path - d="m 473.56775,255.56927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 289.38239,288.38702 H 180.17115" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1786" inkscape:connector-curvature="0" /> <path - d="M 480.18192,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 291.95085,282.18622 H 180.17115" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1788" inkscape:connector-curvature="0" /> <path - d="M 473.56775,228.66332 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 174.31476,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1790" inkscape:connector-curvature="0" /> <path - d="M 480.18192,225.92366 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 174.31476,360.83968 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1792" inkscape:connector-curvature="0" /> <path - d="m 346.91578,164.63384 v 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 168.11396,360.83968 v -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1794" inkscape:connector-curvature="0" /> <path - d="m 346.91578,171.24801 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 174.31476,354.63887 v -1.64822" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1796" inkscape:connector-curvature="0" /> <path - d="m 353.52995,171.24801 v -6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 168.11396,354.63887 V 350.4222" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1798" inkscape:connector-curvature="0" /> <path - d="m 346.91578,164.63384 v -1.98666" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 174.31476,352.99065 53.74547,-53.74546" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1800" inkscape:connector-curvature="0" /> <path - d="m 353.52995,164.63384 v 0.75302" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 168.11396,350.4222 225.4727,293.06345" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1802" inkscape:connector-curvature="0" /> <path - d="m 346.91578,162.64718 7.67797,-7.67797" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 228.06023,299.24519 56.19842,-0.41789" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1804" inkscape:connector-curvature="0" /> <path - d="m 353.52995,165.38686 3.80348,-3.80348" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 225.4727,293.06345 67.12315,-0.49912" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1806" inkscape:connector-curvature="0" /> <path - d="m 354.59375,154.96921 h 54.63372" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 292.59585,292.56433 -1.81856,6.10112" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1808" inkscape:connector-curvature="0" /> <path - d="m 357.33343,161.58338 h 49.15438" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 284.25865,298.8273 -0.47964,1.60914" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1810" inkscape:connector-curvature="0" /> <path - d="m 409.22747,154.96921 26.23809,26.23773" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 283.77901,300.43644 8.3654,8.36539" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1812" inkscape:connector-curvature="0" /> <path - d="m 406.48781,161.58338 24.30082,24.30049" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 290.77729,298.66545 3.93557,3.93558" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1814" inkscape:connector-curvature="0" /> <path - d="M 481.54255,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 292.14441,308.80183 h 22.3359" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1816" inkscape:connector-curvature="0" /> <path - d="m 481.54255,98.454309 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 294.71286,302.60103 h 17.199" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1818" inkscape:connector-curvature="0" /> <path - d="m 488.15673,98.454309 v 6.614171" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 314.48031,308.80183 56.91367,-56.91367" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1820" inkscape:connector-curvature="0" /> <path - d="m 481.54255,105.06848 v 3.60742" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 311.91186,302.60103 53.28132,-53.28132" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1822" inkscape:connector-curvature="0" /> <path - d="m 488.15673,105.06848 v 6.3471" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 371.39398,251.88816 V 168.4066" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1824" inkscape:connector-curvature="0" /> <path - d="m 481.54255,108.6759 -3.15189,3.15189" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 365.19318,249.31971 v -83.5794" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1826" inkscape:connector-curvature="0" /> <path - d="m 488.15673,111.41558 -7.02638,7.02638" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 371.39398,168.4066 9.81215,-9.30014" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1828" inkscape:connector-curvature="0" /> <path - d="M 478.39066,111.82779 H 385.33265" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 365.19318,165.74031 9.81215,-9.30014" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1830" inkscape:connector-curvature="0" /> <path - d="M 481.13035,118.44196 H 388.07233" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 381.20613,159.10646 V 148.25867" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1832" inkscape:connector-curvature="0" /> <path - d="M 385.33265,111.82779 333.84344,163.317" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 375.00533,156.44017 v -5.61304" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1834" inkscape:connector-curvature="0" /> <path - d="m 388.07233,118.44196 -45.83589,45.83589" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 375.00533,150.82713 -8.68657,-8.68657" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1836" inkscape:connector-curvature="0" /> <path - d="m 342.23644,164.27785 5.08524,8.15766" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 381.20613,148.25867 368.88722,135.93976" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1838" inkscape:connector-curvature="0" /> <path - d="m 333.84344,163.317 0.0806,0.12933" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 366.31876,142.14056 H 320.58509" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1840" inkscape:connector-curvature="0" /> <path - d="m 333.92406,163.44633 -9.6094,-1.63526" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 368.88722,135.93976 H 318.01664" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1842" inkscape:connector-curvature="0" /> <path - d="m 347.32168,172.43551 -20.74702,-3.53059" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 320.58509,142.14056 -66.79376,66.79376" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1844" inkscape:connector-curvature="0" /> <path - d="M 324.31466,161.81107 271.32523,214.8005" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 318.01664,135.93976 -70.42611,70.4261" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1846" inkscape:connector-curvature="0" /> <path - d="M 326.57466,168.90492 277.9394,217.54018" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 253.79133,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1848" inkscape:connector-curvature="0" /> <path - d="m 271.32523,214.8005 v 88.91592" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 253.79133,219.74484 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1850" inkscape:connector-curvature="0" /> <path - d="m 277.9394,217.54018 v 89.01895" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 247.59053,219.74484 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1852" inkscape:connector-curvature="0" /> <path - d="m 271.32523,303.71642 -10.48668,9.9462" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 253.79133,208.93432 v 4.60972" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1854" inkscape:connector-curvature="0" /> <path - d="m 277.9394,306.55913 -10.48667,9.9462" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 247.59053,206.36586 v 7.17818" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1856" inkscape:connector-curvature="0" /> <path - d="m 260.83855,313.66262 v 11.65911" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.67741,165.67384 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1858" inkscape:connector-curvature="0" /> <path - d="m 267.45273,316.50533 v 6.07671" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 353.67741,159.47304 H 347.4766" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1860" inkscape:connector-curvature="0" /> <path - d="m 267.45273,322.58204 9.15075,9.15076" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.4766,159.47304 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1862" inkscape:connector-curvature="0" /> <path - d="m 260.83855,325.32173 13.02525,13.02524" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.67741,165.67384 v 91.17674" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1864" inkscape:connector-curvature="0" /> <path - d="m 276.60348,331.7328 h 48.91777" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.4766,165.67384 v 88.60828" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1866" inkscape:connector-curvature="0" /> <path - d="m 273.8638,338.34697 h 54.39713" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.67741,256.85058 -43.57338,43.57337" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1868" inkscape:connector-curvature="0" /> <path - d="m 325.52125,331.7328 71.2465,-71.2465" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 347.4766,254.28212 308.56442,293.1943" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1870" inkscape:connector-curvature="0" /> <path - d="m 328.26093,338.34697 75.12099,-75.12099" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 305.85389,298.79622 h -2.527" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1872" inkscape:connector-curvature="0" /> <path - d="M 396.76775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 303.32689,298.79622 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1874" inkscape:connector-curvature="0" /> <path - d="m 396.76775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 303.32689,292.59542 h 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1876" inkscape:connector-curvature="0" /> <path - d="m 403.38192,248.9551 v 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 309.52769,292.59542 v 0.9678" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1878" inkscape:connector-curvature="0" /> <path - d="m 396.76775,260.4863 v -4.91703" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 310.10403,300.42395 -4.25014,-1.62773" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1880" inkscape:connector-curvature="0" /> <path - d="m 403.38192,263.22598 v -7.65671" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 308.56442,293.1943 0.96327,0.36892" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1882" inkscape:connector-curvature="0" /> <path - d="m 290.22287,306.63069 v 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 353.67741,152.17381 H 347.4766" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1884" inkscape:connector-curvature="0" /> <path - d="m 290.22287,313.24486 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.4766,152.17381 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1886" inkscape:connector-curvature="0" /> <path - d="m 296.83704,313.24486 v -6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 347.4766,145.97301 h 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1888" inkscape:connector-curvature="0" /> <path - d="M 290.22287,306.63069 V 209.36894" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.67741,145.97301 v 0" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1890" inkscape:connector-curvature="0" /> <path - d="M 296.83704,306.63069 V 212.10862" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 353.67741,152.17381 h 8.83193" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1892" inkscape:connector-curvature="0" /> <path - d="M 290.22287,209.36894 324.3734,175.2184" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 353.67741,145.97301 H 365.0778" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1894" inkscape:connector-curvature="0" /> <path - d="m 296.83704,212.10862 30.27605,-30.27604" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 365.19318,154.85765 v 1.81617" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1896" inkscape:connector-curvature="0" /> <path - d="m 324.3734,175.2184 h 28.78035" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 365.19318,156.67382 h 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1898" inkscape:connector-curvature="0" /> <path - d="m 327.11309,181.83258 h 28.78034" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 371.39398,156.67382 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1900" inkscape:connector-curvature="0" /> <path - d="m 353.15375,175.2184 3.93544,-3.93544" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 371.39398,150.47302 h -1.81617" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1902" inkscape:connector-curvature="0" /> <path - d="m 355.89343,181.83258 8.34424,-8.34425" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 362.50934,152.17381 2.68384,2.68384" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1904" inkscape:connector-curvature="0" /> <path - d="m 363.12995,167.63096 v -2.99712" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 365.0778,145.97301 4.50001,4.50001" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1906" inkscape:connector-curvature="0" /> <path - d="m 363.12995,164.63384 h -6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 183.31478,360.83968 v -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1908" inkscape:connector-curvature="0" /> <path - d="m 356.51578,164.63384 v 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 183.31478,354.63887 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1910" inkscape:connector-curvature="0" /> <path - d="m 356.51578,171.24801 h 0.5668" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 177.11398,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1912" inkscape:connector-curvature="0" /> <path - d="m 364.23767,173.48833 -1.10772,-5.85737" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 183.31478,360.83968 v 3.54203" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1914" inkscape:connector-curvature="0" /> <path - d="m 357.08919,171.28296 -0.007,-0.0349" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 177.11398,360.83968 v 0.97357" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1916" inkscape:connector-curvature="0" /> <path - d="m 290.22287,321.03069 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 183.31478,364.38171 -6.40512,6.40512" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1918" inkscape:connector-curvature="0" /> <path - d="m 296.83704,321.03069 v 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 177.11398,361.81325 -2.77277,2.77277" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1920" inkscape:connector-curvature="0" /> <path - d="m 296.83704,327.64486 h -6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 176.90966,370.78683 H 157.00801" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1922" inkscape:connector-curvature="0" /> <path - d="m 290.22287,327.64486 v 0" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 174.34121,364.58602 H 159.57647" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1924" inkscape:connector-curvature="0" /> <path - d="m 290.22287,321.03069 h -9.42071" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 157.00801,370.78683 -7.85185,-7.85186" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1926" inkscape:connector-curvature="0" /> <path - d="M 290.22287,327.64486 H 278.06248" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 159.57647,364.58602 -4.21951,-4.21951" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1928" inkscape:connector-curvature="0" /> <path - d="m 277.9394,318.16793 v -1.93724" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 155.35696,360.36651 V 230.30405" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1930" inkscape:connector-curvature="0" /> <path - d="m 277.9394,316.23069 h -6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 149.15616,362.93497 V 227.7356" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1932" inkscape:connector-curvature="0" /> <path - d="m 271.32523,316.23069 v 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 155.35696,230.30405 20.43301,-20.43301" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1934" inkscape:connector-curvature="0" /> <path - d="m 271.32523,322.84486 h 1.93725" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 149.15616,227.7356 24.06536,-24.06536" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1936" inkscape:connector-curvature="0" /> <path - d="m 280.80216,321.03069 -2.86276,-2.86276" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 175.78997,209.87104 h 53.18494" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1938" inkscape:connector-curvature="0" /> <path - d="m 278.06248,327.64486 -4.8,-4.8" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 173.22152,203.67024 h 61.42644" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1940" inkscape:connector-curvature="0" /> <path - d="M 415.96775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 229.59049,216.78224 v 2.9626" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1942" inkscape:connector-curvature="0" /> <path - d="m 415.96775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 229.59049,219.74484 h 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1944" inkscape:connector-curvature="0" /> <path - d="m 422.58192,248.9551 v 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 235.79129,219.74484 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1946" inkscape:connector-curvature="0" /> <path - d="m 415.96775,255.56927 v 3.2751" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 235.79129,213.54404 h -0.26388" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1948" inkscape:connector-curvature="0" /> <path - d="m 422.58192,255.56927 v 0.53542" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 228.97491,209.87104 0.61558,6.9112" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1950" inkscape:connector-curvature="0" /> <path - d="m 422.58192,256.10469 3.36808,3.36808" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 234.64796,203.67024 0.87945,9.8738" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1952" inkscape:connector-curvature="0" /> <path - d="m 415.96775,258.84437 7.24257,7.24257" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 192.31481,360.83968 v -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1954" inkscape:connector-curvature="0" /> <path - d="m 425.95,259.47277 h 53.82284" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 192.31481,354.63887 H 186.114" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1956" inkscape:connector-curvature="0" /> <path - d="m 423.21032,266.08694 h 59.3022" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 186.114,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1958" inkscape:connector-curvature="0" /> <path - d="m 479.77284,259.47277 21.8099,-21.80991" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 192.31481,360.83968 v 8.45271" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1960" inkscape:connector-curvature="0" /> <path - d="m 482.51252,266.08694 25.68439,-25.6844" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 186.114,360.83968 v 5.88425" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1962" inkscape:connector-curvature="0" /> <path - d="M 501.58274,237.66286 V 98.806699" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 192.31481,369.29239 -10.4158,10.4158" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1964" inkscape:connector-curvature="0" /> <path - d="M 508.19691,240.40254 V 96.067019" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 186.114,366.72393 -6.78345,6.78345" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1966" inkscape:connector-curvature="0" /> <path - d="m 508.19691,96.067019 -8.0529,-8.0529" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 181.89901,379.70819 H 153.25423" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1968" inkscape:connector-curvature="0" /> <path - d="m 501.58274,98.806699 -4.17841,-4.17841" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 179.33055,373.50738 H 155.82268" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1970" inkscape:connector-curvature="0" /> <path - d="M 500.14401,88.014119 H 478.57473" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 153.25423,379.70819 140.27696,366.73092" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1972" inkscape:connector-curvature="0" /> <path - d="M 497.40433,94.628289 H 481.31441" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 155.82268,373.50738 -9.34492,-9.34491" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1974" inkscape:connector-curvature="0" /> <path - d="m 478.57473,88.014119 -6.63218,6.63218" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 146.47776,364.16247 V 226.48826" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1976" inkscape:connector-curvature="0" /> <path - d="m 481.31441,94.628289 -2.75768,2.75769" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="M 140.27696,366.73092 V 223.9198" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1978" inkscape:connector-curvature="0" /> <path - d="m 471.94255,98.454309 v 6.614171" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 146.47776,226.48826 25.61335,-25.61335" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1980" inkscape:connector-curvature="0" /> <path - d="m 471.94255,105.06848 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 140.27696,223.9198 29.24569,-29.24569" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1982" inkscape:connector-curvature="0" /> <path - d="M 478.55673,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 172.09111,200.87491 h 62.11477" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1984" inkscape:connector-curvature="0" /> <path - d="m 471.94255,94.646299 v 3.80801" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 169.52265,194.67411 h 67.25169" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1986" inkscape:connector-curvature="0" /> <path - d="m 478.55673,97.385979 v 1.06833" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 234.20588,200.87491 4.38463,4.38463" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1988" inkscape:connector-curvature="0" /> <path - d="m 462.34255,98.454309 v 6.614171" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 236.77434,194.67411 8.01697,8.01698" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1990" inkscape:connector-curvature="0" /> <path - d="m 462.34255,105.06848 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 244.79131,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1992" inkscape:connector-curvature="0" /> <path - d="M 468.95673,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 244.79131,219.74484 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1994" inkscape:connector-curvature="0" /> <path - d="m 462.34255,98.454309 v -7.72738" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 238.59051,219.74484 v -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1996" inkscape:connector-curvature="0" /> <path - d="m 468.95673,98.454309 v -4.9877" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 244.79131,202.69109 v 10.85295" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path1998" inkscape:connector-curvature="0" /> <path - d="m 462.34255,90.726929 12.46512,-12.46512" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 238.59051,205.25954 v 8.2845" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2000" inkscape:connector-curvature="0" /> <path - d="m 468.95673,93.466609 8.59062,-8.59063" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 201.31483,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2002" inkscape:connector-curvature="0" /> <path - d="M 474.80767,78.261809 H 503.7546" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 201.31483,360.83968 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2004" inkscape:connector-curvature="0" /> <path - d="m 477.54735,84.875979 h 23.46757" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 195.11403,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2006" inkscape:connector-curvature="0" /> <path - d="m 503.7546,78.261809 14.00603,14.00603" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 201.31483,354.63887 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2008" inkscape:connector-curvature="0" /> <path - d="m 501.01492,84.875979 10.13154,10.13154" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 210.31485,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2010" inkscape:connector-curvature="0" /> <path - d="M 511.14646,95.007519 V 241.51231" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 210.31485,360.83968 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2012" inkscape:connector-curvature="0" /> <path - d="M 517.76063,92.267839 V 244.25199" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 204.11405,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2014" inkscape:connector-curvature="0" /> <path - d="M 511.14646,241.51231 483.51797,269.1408" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 210.31485,354.63887 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2016" inkscape:connector-curvature="0" /> <path - d="m 517.76063,244.25199 -31.50298,31.50298" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 219.31487,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2018" inkscape:connector-curvature="0" /> <path - d="M 483.51797,269.1408 H 421.63642" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 219.31487,360.83968 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2020" inkscape:connector-curvature="0" /> <path - d="M 486.25765,275.75497 H 418.89674" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 213.11407,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2022" inkscape:connector-curvature="0" /> <path - d="m 421.63642,269.1408 -8.6545,-8.6545" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 219.31487,354.63887 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2024" inkscape:connector-curvature="0" /> <path - d="M 418.89674,275.75497 406.36775,263.22598" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 228.31489,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2026" inkscape:connector-curvature="0" /> <path - d="M 406.36775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 228.31489,360.83968 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2028" inkscape:connector-curvature="0" /> <path - d="m 406.36775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 222.11409,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2030" inkscape:connector-curvature="0" /> <path - d="m 412.98192,248.9551 v 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 228.31489,354.63887 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2032" inkscape:connector-curvature="0" /> <path - d="m 406.36775,263.22598 v -7.65671" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 237.31492,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2034" inkscape:connector-curvature="0" /> <path - d="m 412.98192,260.4863 v -4.91703" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 237.31492,360.83968 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2036" inkscape:connector-curvature="0" /> <path - d="M 452.74255,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 231.11411,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2038" inkscape:connector-curvature="0" /> <path - d="m 452.74255,98.454309 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 237.31492,354.63887 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2040" inkscape:connector-curvature="0" /> <path - d="M 459.35673,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 246.31494,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2042" inkscape:connector-curvature="0" /> <path - d="m 452.74255,105.06848 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 246.31494,360.83968 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2044" inkscape:connector-curvature="0" /> <path - d="M 443.14255,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 240.11414,354.63887 v 6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2046" inkscape:connector-curvature="0" /> <path - d="m 443.14255,98.454309 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 246.31494,354.63887 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2048" inkscape:connector-curvature="0" /> <path - d="M 449.75673,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 307.79147,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2050" inkscape:connector-curvature="0" /> <path - d="m 443.14255,105.06848 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 307.79147,136.49464 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2052" inkscape:connector-curvature="0" /> <path - d="M 433.54255,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 301.59066,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2054" inkscape:connector-curvature="0" /> <path - d="m 433.54255,98.454309 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 307.79147,130.29382 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2056" inkscape:connector-curvature="0" /> <path - d="M 440.15673,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 298.79144,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2058" inkscape:connector-curvature="0" /> <path - d="m 433.54255,105.06848 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 298.79144,136.49464 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2060" inkscape:connector-curvature="0" /> <path - d="M 423.94255,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 292.59064,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2062" inkscape:connector-curvature="0" /> <path - d="m 423.94255,98.454309 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 298.79144,130.29382 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2064" inkscape:connector-curvature="0" /> <path - d="M 430.55673,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 289.79142,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2066" inkscape:connector-curvature="0" /> <path - d="m 423.94255,105.06848 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 289.79142,136.49464 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2068" inkscape:connector-curvature="0" /> <path - d="M 414.34255,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 283.59062,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2070" inkscape:connector-curvature="0" /> <path - d="m 414.34255,98.454309 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 289.79142,130.29382 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2072" inkscape:connector-curvature="0" /> <path - d="M 420.95673,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 280.7914,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2074" inkscape:connector-curvature="0" /> <path - d="m 414.34255,105.06848 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 280.7914,136.49464 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2076" inkscape:connector-curvature="0" /> <path - d="M 404.74255,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 274.5906,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2078" inkscape:connector-curvature="0" /> <path - d="m 404.74255,98.454309 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 280.7914,130.29382 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2080" inkscape:connector-curvature="0" /> <path - d="M 411.35673,105.06848 V 98.454309" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 271.79138,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2082" inkscape:connector-curvature="0" /> <path - d="m 404.74255,105.06848 h 6.61418" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 271.79138,136.49464 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2084" inkscape:connector-curvature="0" /> <path - d="M 339.16775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 265.59058,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2086" inkscape:connector-curvature="0" /> <path - d="m 339.16775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 271.79138,130.29382 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2088" inkscape:connector-curvature="0" /> <path - d="M 345.78192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 262.79136,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2090" inkscape:connector-curvature="0" /> <path - d="m 339.16775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 262.79136,136.49464 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2092" inkscape:connector-curvature="0" /> <path - d="M 348.76775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 256.59055,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2094" inkscape:connector-curvature="0" /> <path - d="m 348.76775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 262.79136,130.29382 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2096" inkscape:connector-curvature="0" /> <path - d="M 355.38192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 253.79133,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2098" inkscape:connector-curvature="0" /> <path - d="m 348.76775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 253.79133,136.49464 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2100" inkscape:connector-curvature="0" /> <path - d="M 358.36775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 247.59053,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2102" inkscape:connector-curvature="0" /> <path - d="m 358.36775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 253.79133,130.29382 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2104" inkscape:connector-curvature="0" /> <path - d="M 364.98192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 244.79131,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2106" inkscape:connector-curvature="0" /> <path - d="m 358.36775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 244.79131,136.49464 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2108" inkscape:connector-curvature="0" /> <path - d="M 367.96775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 238.59051,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2110" inkscape:connector-curvature="0" /> <path - d="m 367.96775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 244.79131,130.29382 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2112" inkscape:connector-curvature="0" /> <path - d="M 374.58192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 235.79129,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2114" inkscape:connector-curvature="0" /> <path - d="m 367.96775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 235.79129,136.49464 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2116" inkscape:connector-curvature="0" /> <path - d="M 377.56775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 229.59049,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2118" inkscape:connector-curvature="0" /> <path - d="m 377.56775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 235.79129,130.29382 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2120" inkscape:connector-curvature="0" /> <path - d="M 384.18192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 226.79127,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2122" inkscape:connector-curvature="0" /> <path - d="m 377.56775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 226.79127,136.49464 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2124" inkscape:connector-curvature="0" /> <path - d="M 387.16775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 220.59047,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2126" inkscape:connector-curvature="0" /> <path - d="m 387.16775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 226.79127,130.29382 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2128" inkscape:connector-curvature="0" /> <path - d="M 393.78192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 217.79125,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2130" inkscape:connector-curvature="0" /> <path - d="m 387.16775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 217.79125,136.49464 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2132" inkscape:connector-curvature="0" /> <path - d="M 396.76775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 211.59044,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2134" inkscape:connector-curvature="0" /> <path - d="m 396.76775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 217.79125,130.29382 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2136" inkscape:connector-curvature="0" /> <path - d="M 403.38192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 208.79122,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2138" inkscape:connector-curvature="0" /> <path - d="m 396.76775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 208.79122,136.49464 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2140" inkscape:connector-curvature="0" /> <path - d="M 406.36775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 202.59042,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2142" inkscape:connector-curvature="0" /> <path - d="m 406.36775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 208.79122,130.29382 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2144" inkscape:connector-curvature="0" /> <path - d="M 412.98192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 199.7912,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2146" inkscape:connector-curvature="0" /> <path - d="m 406.36775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 199.7912,136.49464 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2148" inkscape:connector-curvature="0" /> <path - d="M 415.96775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 193.5904,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2150" inkscape:connector-curvature="0" /> <path - d="m 415.96775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 199.7912,130.29382 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2152" inkscape:connector-curvature="0" /> <path - d="M 422.58192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 190.79118,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2154" inkscape:connector-curvature="0" /> <path - d="m 415.96775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 190.79118,136.49464 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2156" inkscape:connector-curvature="0" /> <path - d="M 425.56775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 184.59038,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2158" inkscape:connector-curvature="0" /> <path - d="m 425.56775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 190.79118,130.29382 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2160" inkscape:connector-curvature="0" /> <path - d="M 432.18192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 181.79116,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2162" inkscape:connector-curvature="0" /> <path - d="m 425.56775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 181.79116,136.49464 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2164" inkscape:connector-curvature="0" /> <path - d="M 435.16775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 175.59036,130.29382 v 6.20082" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2166" inkscape:connector-curvature="0" /> <path - d="m 435.16775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 181.79116,130.29382 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2168" inkscape:connector-curvature="0" /> <path - d="M 441.78192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 190.79118,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2170" inkscape:connector-curvature="0" /> <path - d="m 435.16775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 190.79118,219.74484 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2172" inkscape:connector-curvature="0" /> <path - d="M 444.76775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 184.59038,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2174" inkscape:connector-curvature="0" /> <path - d="m 444.76775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 190.79118,213.54404 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2176" inkscape:connector-curvature="0" /> <path - d="M 451.38192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 199.7912,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2178" inkscape:connector-curvature="0" /> <path - d="m 444.76775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 199.7912,219.74484 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2180" inkscape:connector-curvature="0" /> <path - d="M 454.36775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 193.5904,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2182" inkscape:connector-curvature="0" /> <path - d="m 454.36775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 199.7912,213.54404 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2184" inkscape:connector-curvature="0" /> <path - d="M 460.98192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 208.79122,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2186" inkscape:connector-curvature="0" /> <path - d="m 454.36775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 208.79122,219.74484 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2188" inkscape:connector-curvature="0" /> <path - d="M 463.96775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 202.59042,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2190" inkscape:connector-curvature="0" /> <path - d="m 463.96775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 208.79122,213.54404 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2192" inkscape:connector-curvature="0" /> <path - d="M 470.58192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 217.79125,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2194" inkscape:connector-curvature="0" /> <path - d="m 463.96775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 217.79125,219.74484 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2196" inkscape:connector-curvature="0" /> <path - d="M 473.56775,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 211.59044,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2198" inkscape:connector-curvature="0" /> <path - d="m 473.56775,337.7551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 217.79125,213.54404 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2200" inkscape:connector-curvature="0" /> <path - d="M 480.18192,344.36927 V 337.7551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 226.79127,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2202" inkscape:connector-curvature="0" /> <path - d="m 473.56775,344.36927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 226.79127,219.74484 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2204" inkscape:connector-curvature="0" /> <path - d="M 463.96775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 220.59047,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2206" inkscape:connector-curvature="0" /> <path - d="m 463.96775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 226.79127,213.54404 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2208" inkscape:connector-curvature="0" /> <path - d="M 470.58192,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 262.79136,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2210" inkscape:connector-curvature="0" /> <path - d="m 463.96775,255.56927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 262.79136,219.74484 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2212" inkscape:connector-curvature="0" /> <path - d="M 454.36775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 256.59055,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2214" inkscape:connector-curvature="0" /> <path - d="m 454.36775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 262.79136,213.54404 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2216" inkscape:connector-curvature="0" /> <path - d="M 460.98192,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 271.79138,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2218" inkscape:connector-curvature="0" /> <path - d="m 454.36775,255.56927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 271.79138,219.74484 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2220" inkscape:connector-curvature="0" /> <path - d="M 444.76775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 265.59058,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2222" inkscape:connector-curvature="0" /> <path - d="m 444.76775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 271.79138,213.54404 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2224" inkscape:connector-curvature="0" /> <path - d="M 451.38192,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 280.7914,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2226" inkscape:connector-curvature="0" /> <path - d="m 444.76775,255.56927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 280.7914,219.74484 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2228" inkscape:connector-curvature="0" /> <path - d="M 435.16775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 274.5906,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2230" inkscape:connector-curvature="0" /> <path - d="m 435.16775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 280.7914,213.54404 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2232" inkscape:connector-curvature="0" /> <path - d="M 441.78192,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 289.79142,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2234" inkscape:connector-curvature="0" /> <path - d="m 435.16775,255.56927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 289.79142,219.74484 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2236" inkscape:connector-curvature="0" /> <path - d="M 425.56775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 283.59062,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2238" inkscape:connector-curvature="0" /> <path - d="m 425.56775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 289.79142,213.54404 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2240" inkscape:connector-curvature="0" /> <path - d="M 432.18192,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 298.79144,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2242" inkscape:connector-curvature="0" /> <path - d="m 425.56775,255.56927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 298.79144,219.74484 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2244" inkscape:connector-curvature="0" /> <path - d="M 387.16775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 292.59064,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2246" inkscape:connector-curvature="0" /> <path - d="m 387.16775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 298.79144,213.54404 h -6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2248" inkscape:connector-curvature="0" /> <path - d="M 393.78192,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 307.79147,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2250" inkscape:connector-curvature="0" /> <path - d="m 387.16775,255.56927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 307.79147,219.74484 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2252" inkscape:connector-curvature="0" /> <path - d="M 377.56775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 301.59066,213.54404 v 6.2008" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2254" inkscape:connector-curvature="0" /> <path - d="m 377.56775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" + d="m 307.79147,213.54404 h -6.20081" + style="fill:none;stroke:#414141;stroke-width:0.93750226;stroke-dasharray:3.54328992, 0.70865798, 0.46875115, 0.70865798" id="path2256" inkscape:connector-curvature="0" /> - <path - d="M 384.18192,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2258" - inkscape:connector-curvature="0" /> - <path - d="m 377.56775,255.56927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2260" - inkscape:connector-curvature="0" /> - <path - d="M 367.96775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2262" - inkscape:connector-curvature="0" /> - <path - d="m 367.96775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2264" - inkscape:connector-curvature="0" /> - <path - d="M 374.58192,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2266" - inkscape:connector-curvature="0" /> - <path - d="m 367.96775,255.56927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2268" - inkscape:connector-curvature="0" /> - <path - d="M 358.36775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2270" - inkscape:connector-curvature="0" /> - <path - d="m 358.36775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2272" - inkscape:connector-curvature="0" /> - <path - d="M 364.98192,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2274" - inkscape:connector-curvature="0" /> - <path - d="m 358.36775,255.56927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2276" - inkscape:connector-curvature="0" /> - <path - d="M 348.76775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2278" - inkscape:connector-curvature="0" /> - <path - d="m 348.76775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2280" - inkscape:connector-curvature="0" /> - <path - d="M 355.38192,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2282" - inkscape:connector-curvature="0" /> - <path - d="m 348.76775,255.56927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2284" - inkscape:connector-curvature="0" /> - <path - d="M 339.16775,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2286" - inkscape:connector-curvature="0" /> - <path - d="m 339.16775,248.9551 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2288" - inkscape:connector-curvature="0" /> - <path - d="M 345.78192,255.56927 V 248.9551" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2290" - inkscape:connector-curvature="0" /> - <path - d="m 339.16775,255.56927 h 6.61417" - style="fill:none;stroke:#414141;stroke-dasharray:3.7795, 0.7559, 0.5, 0.7559" - id="path2292" - inkscape:connector-curvature="0" /> </g> <g inkscape:groupmode="layer" inkscape:label="0" - id="g2296" /> + id="g2260" /> </svg> diff --git a/paperbot_ee_autoroute/dwg_w_circuit.dxf b/paperbot_ee_autoroute/dwg_w_circuit.dxf index 03ac0ed0122c67a3801be2f25eaa53f6aba0c9f8..f62d1d6909e9479ee7862d37e1fef388c306f781 100644 --- a/paperbot_ee_autoroute/dwg_w_circuit.dxf +++ b/paperbot_ee_autoroute/dwg_w_circuit.dxf @@ -53,11 +53,11 @@ $HANDLING 9 $TDUPDATE 40 -2458725.647025463 +2458726.6791319447 9 $HANDSEED 5 -690 +688 9 $DWGCODEPAGE 3 @@ -5625,11 +5625,11 @@ LINE 8 Cut 10 -84.13 +89.21000000000001 20 79.51 11 -84.78999999999999 +89.87 21 80.17 67 @@ -5641,11 +5641,11 @@ LINE 8 Cut 10 -84.13 +89.21000000000001 20 80.17 11 -84.78999999999999 +89.87 21 79.51 67 @@ -5689,11 +5689,11 @@ LINE 8 Cut 10 -89.21000000000001 +84.13 20 79.51 11 -89.87 +84.78999999999999 21 80.17 67 @@ -5705,11 +5705,11 @@ LINE 8 Cut 10 -89.21000000000001 +84.13 20 80.17 11 -89.87 +84.78999999999999 21 79.51 67 @@ -5909,7 +5909,7 @@ Circuit_Cut 11 124.16 21 -91.11301356237308 +93.3671135623731 6 DASHDOT 67 @@ -5927,7 +5927,7 @@ Circuit_Cut 11 126.16 21 -90.2845864376269 +92.53868643762691 6 DASHDOT 67 @@ -5939,13 +5939,13 @@ LINE 8 Circuit_Cut 10 -124.15999999999998 +124.16000000000001 20 -91.11301356237308 +93.36711356237309 11 -109.55379515983627 +119.8927 21 -76.50680872220934 +89.09981356237306 6 DASHDOT 67 @@ -5957,13 +5957,13 @@ LINE 8 Circuit_Cut 10 -108.13958159743004 +126.16000000000001 20 -75.09259515980311 +92.53868643762691 11 -108.13958966457578 +121.8927 21 -75.09260322694885 +88.27138643762689 6 DASHDOT 67 @@ -5975,13 +5975,13 @@ LINE 8 Circuit_Cut 10 -126.15999999999998 +119.8927 20 -90.2845864376269 +89.09981356237307 11 -110.96801033542427 +119.8927 21 -75.09259677305116 +77.9036 6 DASHDOT 67 @@ -5993,13 +5993,13 @@ LINE 8 Circuit_Cut 10 -110.96801033542427 +119.8927 20 -75.09259677305116 +75.9036 11 -121.51 +119.8927 21 -64.55051088907759 +58.44117206764868 6 DASHDOT 67 @@ -6011,13 +6011,13 @@ LINE 8 Circuit_Cut 10 -108.13958966457575 +121.8927 20 -75.09260322694887 +88.27138643762689 11 -119.51 +121.8927 21 -63.72208911092244 +57.88282793235129 6 DASHDOT 67 @@ -6029,13 +6029,13 @@ LINE 8 Circuit_Cut 10 -119.51 +119.94648868625136 20 58.53 11 119.51 21 -56.53 +58.53 6 DASHDOT 67 @@ -6049,9 +6049,9 @@ Circuit_Cut 10 119.51 20 -56.53 +58.53 11 -121.51 +119.51 21 56.53 6 @@ -6065,13 +6065,13 @@ LINE 8 Circuit_Cut 10 -121.51 +119.51 20 56.53 11 121.51 21 -58.53 +56.53 6 DASHDOT 67 @@ -6083,13 +6083,13 @@ LINE 8 Circuit_Cut 10 -119.51 +121.51 20 -63.72208911092244 +56.53 11 -119.51 +121.51 21 -58.53 +57.250827932351335 6 DASHDOT 67 @@ -6101,11 +6101,11 @@ LINE 8 Circuit_Cut 10 -121.51 +119.8927 20 -64.55051088907757 +58.44117206764868 11 -121.51 +119.94648868625136 21 58.53 6 @@ -6119,13 +6119,13 @@ LINE 8 Circuit_Cut 10 -86.0 +121.89269999999996 20 -80.84 +57.8828279323513 11 -86.0 +121.51 21 -78.84 +57.250827932351335 6 DASHDOT 67 @@ -6141,9 +6141,9 @@ Circuit_Cut 20 78.84 11 -88.0 +86.0 21 -78.84 +80.84 6 DASHDOT 67 @@ -6155,9 +6155,9 @@ LINE 8 Circuit_Cut 10 -88.0 +86.0 20 -78.84 +80.84 11 88.0 21 @@ -6173,13 +6173,13 @@ LINE 8 Circuit_Cut 10 -86.0 +88.0 20 80.84 11 -86.0 +88.0 21 -81.2924135623731 +78.84 6 DASHDOT 67 @@ -6191,13 +6191,13 @@ LINE 8 Circuit_Cut 10 -88.0 +86.0 20 -80.84 +78.84 11 -88.0 +86.0 21 -80.46398643762691 +78.3960864376269 6 DASHDOT 67 @@ -6209,13 +6209,13 @@ LINE 8 Circuit_Cut 10 -86.00000000000001 +88.0 20 -81.29241356237311 +78.84 11 -88.1046864376269 +88.0 21 -83.3971 +79.22451356237309 6 DASHDOT 67 @@ -6227,13 +6227,13 @@ LINE 8 Circuit_Cut 10 -88.00000000000001 +88.0 20 -80.46398643762691 +79.2245135623731 11 -88.9331135623731 +89.32091356237308 21 -81.39709999999998 +77.9036 6 DASHDOT 67 @@ -6245,13 +6245,13 @@ LINE 8 Circuit_Cut 10 -88.1046864376269 +86.0 20 -83.3971 +78.39608643762689 11 -102.66340955264211 +88.4924864376269 21 -83.3971 +75.90359999999998 6 DASHDOT 67 @@ -6263,13 +6263,13 @@ LINE 8 Circuit_Cut 10 -88.93311356237308 +89.32091356237308 20 -81.3971 +77.9036 11 -101.83499044735787 +119.8927 21 -81.3971 +77.9036 6 DASHDOT 67 @@ -6281,13 +6281,13 @@ LINE 8 Circuit_Cut 10 -102.66340955264212 +88.4924864376269 20 -83.39710000000001 +75.9036 11 -109.55379515983627 +119.8927 21 -76.50680872220934 +75.9036 6 DASHDOT 67 @@ -6299,13 +6299,13 @@ LINE 8 Circuit_Cut 10 -101.83499044735788 +88.6023628604811 20 -81.39710000000001 +80.84000000000002 11 -108.13958159743004 +88.54 21 -75.09259515980311 +80.84 6 DASHDOT 67 @@ -6317,13 +6317,13 @@ LINE 8 Circuit_Cut 10 -121.62 +88.54 20 -96.35 +80.84 11 -121.62 +88.54 21 -98.35 +78.84 6 DASHDOT 67 @@ -6335,13 +6335,13 @@ LINE 8 Circuit_Cut 10 -121.62 +88.54 20 -98.35 +78.84 11 -123.62 +90.54 21 -98.35 +78.84 6 DASHDOT 67 @@ -6353,13 +6353,13 @@ LINE 8 Circuit_Cut 10 -123.62 +90.54 20 -98.35 +78.84 11 -123.62 +90.54000000000002 21 -96.35 +79.80781499528028 6 DASHDOT 67 @@ -6371,13 +6371,13 @@ LINE 8 Circuit_Cut 10 -121.62 +90.54000000000002 20 -96.35 +79.80781499528028 11 -121.62 +90.6583371395189 21 -95.5723135623731 +81.6443 6 DASHDOT 67 @@ -6389,13 +6389,13 @@ LINE 8 Circuit_Cut 10 -123.62 +90.78721065519125 20 -96.35 +83.6443 11 -123.62 +90.78721065519125 21 -94.74388643762691 +83.64429999999999 6 DASHDOT 67 @@ -6407,13 +6407,13 @@ LINE 8 Circuit_Cut 10 -121.61999999999999 +88.6023628604811 20 -95.5723135623731 +80.84000000000002 11 -120.85928643762689 +88.65418934480873 21 -94.8116 +81.64430000000002 6 DASHDOT 67 @@ -6425,13 +6425,13 @@ LINE 8 Circuit_Cut 10 -123.62 +90.78721065519126 20 -94.74388643762691 +83.6443 11 -121.68771356237308 +82.0827864376269 21 -92.81159999999998 +83.6443 6 DASHDOT 67 @@ -6443,13 +6443,13 @@ LINE 8 Circuit_Cut 10 -120.85928643762689 +88.65418934480871 20 -94.8116 +81.6443 11 -96.23768643762689 +82.91121356237309 21 -94.8116 +81.6443 6 DASHDOT 67 @@ -6461,13 +6461,13 @@ LINE 8 Circuit_Cut 10 -121.68771356237308 +82.0827864376269 20 -92.8116 +83.6443 11 -97.06611356237308 +66.0 21 -92.8116 +67.5615135623731 6 DASHDOT 67 @@ -6479,13 +6479,13 @@ LINE 8 Circuit_Cut 10 -96.23768643762689 +82.91121356237309 20 -94.81159999999998 +81.64429999999999 11 -82.50765790072528 +68.0 21 -81.08157146309837 +66.7330864376269 6 DASHDOT 67 @@ -6497,13 +6497,13 @@ LINE 8 Circuit_Cut 10 -97.06611356237308 +66.0 20 -92.81159999999998 +67.5615135623731 11 -85.04554209927475 +66.0 21 -80.79102853690166 +43.96999120941062 6 DASHDOT 67 @@ -6515,13 +6515,13 @@ LINE 8 Circuit_Cut 10 -85.04554209927474 +68.0 20 -80.79102853690168 +66.73308643762691 11 -86.4855923716305 +68.0 21 -78.48092155185098 +43.11000879058938 6 DASHDOT 67 @@ -6533,13 +6533,13 @@ LINE 8 Circuit_Cut 10 -82.50765790072523 +66.0 20 -81.08157146309837 +43.96999120941062 11 -82.4344076283695 +63.230799999999995 21 -81.19907844814902 +41.34529120941063 6 DASHDOT 67 @@ -6551,13 +6551,13 @@ LINE 8 Circuit_Cut 10 -82.43440762836953 +68.0 20 -81.199078448149 +43.110008790589376 11 -80.10240933713854 +65.2308 21 -81.59592289951163 +40.485308790589386 6 DASHDOT 67 @@ -6569,13 +6569,13 @@ LINE 8 Circuit_Cut 10 -86.4855923716305 +63.2308 20 -78.480921551851 +41.34529120941063 11 -80.78579066286142 +63.2308 21 -79.45087710048834 +38.17828643762691 6 DASHDOT 67 @@ -6587,13 +6587,13 @@ LINE 8 Circuit_Cut 10 -80.10240933713854 +65.2308 20 -81.59592289951162 +40.485308790589386 11 -66.0 +65.2308 21 -67.4935135623731 +39.00671356237309 6 DASHDOT 67 @@ -6605,13 +6605,13 @@ LINE 8 Circuit_Cut 10 -80.78579066286143 +65.2308 20 -79.45087710048831 +39.0067135623731 11 -68.00000000000001 +67.6091135623731 21 -66.66508643762691 +36.62839999999999 6 DASHDOT 67 @@ -6623,13 +6623,13 @@ LINE 8 Circuit_Cut 10 -66.0 +63.230799999999995 20 -67.4935135623731 +38.178286437626916 11 -66.0 +66.78068643762691 21 -43.96979087633772 +34.6284 6 DASHDOT 67 @@ -6641,13 +6641,13 @@ LINE 8 Circuit_Cut 10 -68.0 +67.6091135623731 20 -66.66508643762691 +36.6284 11 -68.0 +80.41258643762694 21 -43.11020912366227 +36.6284 6 DASHDOT 67 @@ -6659,13 +6659,13 @@ LINE 8 Circuit_Cut 10 -66.0 +66.78068643762691 20 -43.96979087633772 +34.6284 11 -63.22539999999999 +81.24101356237313 21 -41.33819087633773 +34.6284 6 DASHDOT 67 @@ -6677,13 +6677,13 @@ LINE 8 Circuit_Cut 10 -68.0 +80.41258643762694 20 -43.11020912366227 +36.628400000000006 11 -65.2254 +99.19 21 -40.47860912366228 +55.40581356237308 6 DASHDOT 67 @@ -6695,13 +6695,13 @@ LINE 8 Circuit_Cut 10 -63.22539999999999 +81.24101356237311 20 -41.338190876337734 +34.62840000000001 11 -63.22539999999999 +101.19 21 -38.14788643762691 +54.5773864376269 6 DASHDOT 67 @@ -6713,13 +6713,13 @@ LINE 8 Circuit_Cut 10 -65.2254 +99.19 20 -40.47860912366228 +56.53 11 -65.2254 +99.19 21 -38.97631356237309 +58.53 6 DASHDOT 67 @@ -6731,13 +6731,13 @@ LINE 8 Circuit_Cut 10 -65.2254 +99.19 20 -38.97631356237309 +58.53 11 -67.57331356237309 +101.19 21 -36.628400000000006 +58.53 6 DASHDOT 67 @@ -6749,13 +6749,13 @@ LINE 8 Circuit_Cut 10 -63.22539999999999 +101.19 20 -38.14788643762691 +58.53 11 -66.7448864376269 +101.19 21 -34.628400000000006 +56.53 6 DASHDOT 67 @@ -6767,13 +6767,13 @@ LINE 8 Circuit_Cut 10 -67.57331356237309 +99.19 20 -36.6284 +55.4058135623731 11 -80.41258643762693 +99.19 21 -36.6284 +56.53 6 DASHDOT 67 @@ -6785,13 +6785,13 @@ LINE 8 Circuit_Cut 10 -66.7448864376269 +101.19 20 -34.6284 +54.577386437626906 11 -81.24101356237311 +101.19 21 -34.6284 +56.53 6 DASHDOT 67 @@ -6803,13 +6803,13 @@ LINE 8 Circuit_Cut 10 -80.41258643762693 +90.6583371395189 20 -36.6284 +81.6443 11 -99.19 +110.86691356237306 21 -55.40581356237308 +81.64430000000002 6 DASHDOT 67 @@ -6821,13 +6821,13 @@ LINE 8 Circuit_Cut 10 -81.24101356237311 +90.78721065519125 20 -34.6284 +83.6443 11 -101.19 +110.03848643762687 21 -54.5773864376269 +83.64430000000002 6 DASHDOT 67 @@ -6839,13 +6839,13 @@ LINE 8 Circuit_Cut 10 -99.19 +110.0384864376269 20 -56.53 +83.6443 11 -99.19 +121.62 21 -58.53 +95.2258135623731 6 DASHDOT 67 @@ -6857,13 +6857,13 @@ LINE 8 Circuit_Cut 10 -99.19 +110.86691356237309 20 -58.53 +81.6443 11 -101.19 +123.62000000000002 21 -58.53 +94.39738643762692 6 DASHDOT 67 @@ -6875,13 +6875,13 @@ LINE 8 Circuit_Cut 10 -101.19 +121.62 20 -58.53 +96.35 11 -101.19 +121.62 21 -56.53 +98.35 6 DASHDOT 67 @@ -6893,13 +6893,13 @@ LINE 8 Circuit_Cut 10 -99.19 +121.62 20 -55.4058135623731 +98.35 11 -99.19 +123.62 21 -56.53 +98.35 6 DASHDOT 67 @@ -6911,13 +6911,13 @@ LINE 8 Circuit_Cut 10 -101.19 +123.62 20 -54.577386437626906 +98.35 11 -101.19 +123.62 21 -56.53 +96.35 6 DASHDOT 67 @@ -6929,13 +6929,13 @@ LINE 8 Circuit_Cut 10 -71.0 +121.62 20 -43.27 +95.2258135623731 11 -71.0 +121.62 21 -41.27 +96.35 6 DASHDOT 67 @@ -6947,13 +6947,13 @@ LINE 8 Circuit_Cut 10 -71.0 +123.62 20 -41.27 +94.39738643762692 11 -73.0 +123.62 21 -41.27 +96.35 6 DASHDOT 67 @@ -6965,13 +6965,13 @@ LINE 8 Circuit_Cut 10 -73.0 +83.46 20 -41.27 +80.52054401409603 11 -73.0 +83.46 21 -43.27 +80.84 6 DASHDOT 67 @@ -6983,13 +6983,13 @@ LINE 8 Circuit_Cut 10 -71.0 +83.46 20 -43.27 +80.84 11 -71.0 +85.46 21 -68.9306135623731 +80.84 6 DASHDOT 67 @@ -7001,13 +7001,13 @@ LINE 8 Circuit_Cut 10 -73.0 +85.46 20 -43.27 +80.84 11 -73.0 +85.46 21 -68.10218643762691 +78.84 6 DASHDOT 67 @@ -7019,13 +7019,13 @@ LINE 8 Circuit_Cut 10 -71.00000000000001 +85.46 20 -68.93061356237311 +78.84 11 -80.10888643762692 +84.65009081774974 21 -78.03950000000003 +78.84 6 DASHDOT 67 @@ -7037,13 +7037,13 @@ LINE 8 Circuit_Cut 10 -73.0 +83.46 20 -68.10218643762691 +80.52054401409603 11 -80.9373135623731 +81.97730440941193 21 -76.03950000000003 +79.93571797178501 6 DASHDOT 67 @@ -7055,13 +7055,13 @@ LINE 8 Circuit_Cut 10 -80.10888643762694 +84.65009081774974 20 -78.0395 +78.84 11 -87.72368643762691 +83.09769559058807 21 -78.0395 +78.227682028215 6 DASHDOT 67 @@ -7073,13 +7073,13 @@ LINE 8 Circuit_Cut 10 -80.93731356237312 +81.97730440941193 20 -76.0395 +79.93571797178501 11 -88.55211356237311 +71.0 21 -76.0395 +68.9584135623731 6 DASHDOT 67 @@ -7091,13 +7091,13 @@ LINE 8 Circuit_Cut 10 -87.7236864376269 +83.09769559058809 20 -78.03950000000002 +78.22768202821499 11 -88.68161766646529 +73.00000000000001 21 -78.9974312288384 +68.12998643762693 6 DASHDOT 67 @@ -7109,13 +7109,13 @@ LINE 8 Circuit_Cut 10 -88.5521135623731 +71.0 20 -76.03950000000002 +43.27 11 -90.84318233353467 +71.0 21 -78.33056877116158 +41.27 6 DASHDOT 67 @@ -7127,13 +7127,13 @@ LINE 8 Circuit_Cut 10 -90.53999999999999 +71.0 20 -79.93372715352142 +41.27 11 -90.54 +73.0 21 -80.84 +41.27 6 DASHDOT 67 @@ -7145,13 +7145,13 @@ LINE 8 Circuit_Cut 10 -90.54 +73.0 20 -80.84 +41.27 11 -88.54 +73.0 21 -80.84 +43.27 6 DASHDOT 67 @@ -7163,13 +7163,13 @@ LINE 8 Circuit_Cut 10 -88.54 +71.0 20 -80.84 +68.9584135623731 11 -88.54 +71.0 21 -78.84 +43.27 6 DASHDOT 67 @@ -7181,13 +7181,13 @@ LINE 8 Circuit_Cut 10 -88.54 +73.0 20 -78.84 +68.12998643762691 11 -88.71139037504832 +73.0 21 -78.84 +43.27 6 DASHDOT 67 @@ -7199,43 +7199,7 @@ LINE 8 Circuit_Cut 10 -90.84318233353471 - 20 -78.33056877116157 - 11 -90.53999999999999 - 21 -79.93372715352142 - 6 -DASHDOT - 67 -0 - 0 -LINE - 5 -374 - 8 -Circuit_Cut - 10 -88.68161766646529 - 20 -78.99743122883841 - 11 -88.71139037504832 - 21 -78.84 - 6 -DASHDOT - 67 -0 - 0 -LINE - 5 -375 - 8 -Circuit_Cut - 10 -71.0 +71.0 20 39.46 11 @@ -7249,7 +7213,7 @@ DASHDOT 0 LINE 5 -376 +374 8 Circuit_Cut 10 @@ -7267,7 +7231,7 @@ DASHDOT 0 LINE 5 -377 +375 8 Circuit_Cut 10 @@ -7285,7 +7249,7 @@ DASHDOT 0 LINE 5 -378 +376 8 Circuit_Cut 10 @@ -7303,7 +7267,7 @@ DASHDOT 0 LINE 5 -379 +377 8 Circuit_Cut 10 @@ -7321,7 +7285,7 @@ DASHDOT 0 LINE 5 -37A +378 8 Circuit_Cut 10 @@ -7339,7 +7303,7 @@ DASHDOT 0 LINE 5 -37B +379 8 Circuit_Cut 10 @@ -7357,7 +7321,7 @@ DASHDOT 0 LINE 5 -37C +37A 8 Circuit_Cut 10 @@ -7375,7 +7339,7 @@ DASHDOT 0 LINE 5 -37D +37B 8 Circuit_Cut 10 @@ -7393,7 +7357,7 @@ DASHDOT 0 LINE 5 -37E +37C 8 Circuit_Cut 10 @@ -7411,7 +7375,7 @@ DASHDOT 0 LINE 5 -37F +37D 8 Circuit_Cut 10 @@ -7429,7 +7393,7 @@ DASHDOT 0 LINE 5 -380 +37E 8 Circuit_Cut 10 @@ -7447,17 +7411,53 @@ DASHDOT 0 LINE 5 +37F + 8 +Circuit_Cut + 10 +119.08 + 20 +98.35 + 11 +119.08 + 21 +96.35 + 6 +DASHDOT + 67 +0 + 0 +LINE + 5 +380 + 8 +Circuit_Cut + 10 +119.08 + 20 +96.35 + 11 +121.08 + 21 +96.35 + 6 +DASHDOT + 67 +0 + 0 +LINE + 5 381 8 Circuit_Cut 10 -104.27 +121.08 20 -56.53 +96.35 11 -104.27 +121.08 21 -58.53 +98.35 6 DASHDOT 67 @@ -7469,13 +7469,13 @@ LINE 8 Circuit_Cut 10 -104.27 +119.08 20 -58.53 +98.35 11 -106.27 +119.08 21 -58.53 +99.27641356237311 6 DASHDOT 67 @@ -7487,13 +7487,13 @@ LINE 8 Circuit_Cut 10 -106.27 +121.08 20 -58.53 +98.35 11 -106.27 +121.08 21 -56.53 +98.44798643762692 6 DASHDOT 67 @@ -7505,13 +7505,13 @@ LINE 8 Circuit_Cut 10 -104.27 +119.08000000000003 20 -56.53 +99.27641356237312 11 -104.27 +120.96088643762688 21 -55.73668643762688 +101.15729999999996 6 DASHDOT 67 @@ -7523,13 +7523,13 @@ LINE 8 Circuit_Cut 10 -106.27 +121.08000000000001 20 -56.53 +98.44798643762692 11 -106.27 +121.78931356237308 21 -56.56511356237307 +99.15729999999998 6 DASHDOT 67 @@ -7541,13 +7541,13 @@ LINE 8 Circuit_Cut 10 -106.27 +120.96088643762687 20 -56.565113562373085 +101.1573 11 -107.08791356237309 +126.68111356237308 21 -55.74719999999999 +101.1573 6 DASHDOT 67 @@ -7559,13 +7559,13 @@ LINE 8 Circuit_Cut 10 -104.27000000000001 +121.78931356237305 20 -55.73668643762687 +99.1573 11 -106.25948643762689 +125.85268643762689 21 -53.74719999999998 +99.1573 6 DASHDOT 67 @@ -7577,13 +7577,13 @@ LINE 8 Circuit_Cut 10 -107.08791356237309 +126.68111356237308 20 -55.74719999999999 +101.1573 11 -121.2249864376269 +128.97029999999998 21 -55.7472 +98.86811356237311 6 DASHDOT 67 @@ -7595,13 +7595,13 @@ LINE 8 Circuit_Cut 10 -106.25948643762689 +125.85268643762689 20 -53.74719999999999 +99.15729999999999 11 -122.05341356237308 +126.97029999999997 21 -53.7472 +98.03968643762691 6 DASHDOT 67 @@ -7613,13 +7613,13 @@ LINE 8 Circuit_Cut 10 -121.2249864376269 +126.9703 20 -55.74719999999999 +98.03968643762693 11 -126.9223 +126.9703 21 -61.44451356237311 +61.436813562373096 6 DASHDOT 67 @@ -7631,13 +7631,13 @@ LINE 8 Circuit_Cut 10 -122.05341356237308 +128.9703 20 -53.7472 +98.86811356237311 11 -128.9223 +128.9703 21 -60.61608643762692 +60.608386437626905 6 DASHDOT 67 @@ -7649,13 +7649,13 @@ LINE 8 Circuit_Cut 10 -126.9223 +126.9703 20 -61.44451356237311 +61.436813562373096 11 -126.9223 +121.27688643762687 21 -98.07998643762693 +55.74339999999998 6 DASHDOT 67 @@ -7667,13 +7667,13 @@ LINE 8 Circuit_Cut 10 -128.9223 +128.9703 20 -60.61608643762692 +60.608386437626905 11 -128.9223 +122.10531356237306 21 -98.90841356237311 +53.74339999999999 6 DASHDOT 67 @@ -7685,13 +7685,13 @@ LINE 8 Circuit_Cut 10 -128.92229999999998 +121.27688643762687 20 -98.9084135623731 +55.7434 11 -126.71841356237312 +106.4330897011512 21 -101.11229999999999 +55.7434 6 DASHDOT 67 @@ -7703,13 +7703,13 @@ LINE 8 Circuit_Cut 10 -126.9223 +122.10531356237306 20 -98.07998643762693 +53.7434 11 -125.88998643762693 +104.60331029884877 21 -99.1123 +53.7434 6 DASHDOT 67 @@ -7721,13 +7721,13 @@ LINE 8 Circuit_Cut 10 -126.71841356237312 +106.27 20 -101.1123 +57.57444658029049 11 -120.90798643762689 +106.27 21 -101.11229999999999 +58.53 6 DASHDOT 67 @@ -7739,13 +7739,13 @@ LINE 8 Circuit_Cut 10 -125.88998643762693 +106.27 20 -99.1123 +58.53 11 -121.73641356237309 +104.27 21 -99.11229999999999 +58.53 6 DASHDOT 67 @@ -7757,13 +7757,13 @@ LINE 8 Circuit_Cut 10 -120.90798643762689 +104.27 20 -101.1123 +58.53 11 -119.08 +104.27 21 -99.2843135623731 +56.53 6 DASHDOT 67 @@ -7775,13 +7775,13 @@ LINE 8 Circuit_Cut 10 -121.73641356237309 +104.27 20 -99.1123 +56.53 11 -121.08000000000001 +104.35511029884876 21 -98.45588643762693 +56.53 6 DASHDOT 67 @@ -7793,13 +7793,13 @@ LINE 8 Circuit_Cut 10 -119.08 +106.43308970115125 20 -98.35 +55.74340000000004 11 -119.08 +106.27 21 -96.35 +57.57444658029049 6 DASHDOT 67 @@ -7811,13 +7811,13 @@ LINE 8 Circuit_Cut 10 -119.08 +104.60331029884875 20 -96.35 +53.743399999999994 11 -121.08 +104.35511029884876 21 -96.35 +56.53 6 DASHDOT 67 @@ -7829,13 +7829,13 @@ LINE 8 Circuit_Cut 10 -121.08 +101.73 20 -96.35 +56.53 11 -121.08 +101.73 21 -98.35 +58.53 6 DASHDOT 67 @@ -7847,13 +7847,13 @@ LINE 8 Circuit_Cut 10 -119.08 +101.73 20 -99.2843135623731 +58.53 11 -119.08 +103.73 21 -98.35 +58.53 6 DASHDOT 67 @@ -7865,13 +7865,13 @@ LINE 8 Circuit_Cut 10 -121.08 +103.73 20 -98.45588643762692 +58.53 11 -121.08 +103.73 21 -98.35 +56.53 6 DASHDOT 67 @@ -7883,13 +7883,13 @@ LINE 8 Circuit_Cut 10 -116.54 +101.73 20 -98.35 +56.53 11 -116.54 +101.73 21 -96.35 +53.577486437626895 6 DASHDOT 67 @@ -7901,13 +7901,13 @@ LINE 8 Circuit_Cut 10 -116.54 +103.73 20 -96.35 +56.53 11 -118.54 +103.73 21 -96.35 +54.40591356237309 6 DASHDOT 67 @@ -7919,13 +7919,13 @@ LINE 8 Circuit_Cut 10 -118.54 +103.73000000000002 20 -96.35 +54.4059135623731 11 -118.54 +104.9173135623731 21 -98.35 +53.218600000000016 6 DASHDOT 67 @@ -7937,13 +7937,13 @@ LINE 8 Circuit_Cut 10 -116.54 +101.72999999999999 20 -98.35 +53.5774864376269 11 -116.54 +104.08888643762691 21 -100.32131356237309 +51.2186 6 DASHDOT 67 @@ -7955,13 +7955,13 @@ LINE 8 Circuit_Cut 10 -118.54 +104.9173135623731 20 -98.35 +53.21860000000001 11 -118.54 +122.34298643762689 21 -99.49288643762691 +53.2186 6 DASHDOT 67 @@ -7973,13 +7973,13 @@ LINE 8 Circuit_Cut 10 -116.54000000000002 +104.08888643762691 20 -100.32131356237309 +51.21860000000001 11 -119.9112864376269 +123.17141356237308 21 -103.69259999999998 +51.2186 6 DASHDOT 67 @@ -7991,13 +7991,13 @@ LINE 8 Circuit_Cut 10 -118.54 +122.34298643762689 20 -99.4928864376269 +53.21859999999997 11 -120.7397135623731 +129.4811 21 -101.69259999999998 +60.356713562373095 6 DASHDOT 67 @@ -8009,13 +8009,13 @@ LINE 8 Circuit_Cut 10 -119.9112864376269 +123.17141356237308 20 -103.69259999999998 +51.218599999999974 11 -127.6737135623731 +131.4811 21 -103.6926 +59.52828643762691 6 DASHDOT 67 @@ -8027,13 +8027,13 @@ LINE 8 Circuit_Cut 10 -120.7397135623731 +129.4811 20 -101.69259999999998 +60.356713562373095 11 -126.8452864376269 +129.4811 21 -101.6926 +99.11308643762689 6 DASHDOT 67 @@ -8045,13 +8045,13 @@ LINE 8 Circuit_Cut 10 -127.6737135623731 +131.4811 20 -103.69259999999998 +59.52828643762691 11 -131.45270000000002 +131.4811 21 -99.91361356237303 +99.94151356237307 6 DASHDOT 67 @@ -8063,13 +8063,13 @@ LINE 8 Circuit_Cut 10 -126.8452864376269 +131.4811 20 -101.69259999999998 +99.94151356237307 11 -129.4527 +127.7082135623731 21 -99.08518643762686 +103.71440000000001 6 DASHDOT 67 @@ -8081,13 +8081,13 @@ LINE 8 Circuit_Cut 10 -129.4527 +129.4811 20 -99.08518643762685 +99.1130864376269 11 -129.4527 +126.8797864376269 21 -60.42601356237309 +101.7144 6 DASHDOT 67 @@ -8099,13 +8099,13 @@ LINE 8 Circuit_Cut 10 -131.4527 +127.70821356237307 20 -99.91361356237303 +103.71439999999998 11 -131.4527 +119.90988643762691 21 -59.5975864376269 +103.71439999999998 6 DASHDOT 67 @@ -8117,13 +8117,13 @@ LINE 8 Circuit_Cut 10 -129.4527 +126.87978643762689 20 -60.42601356237309 +101.71439999999998 11 -122.2158864376269 +120.7383135623731 21 -53.18920000000001 +101.71439999999998 6 DASHDOT 67 @@ -8135,13 +8135,13 @@ LINE 8 Circuit_Cut 10 -131.4527 +119.90988643762691 20 -59.59758643762691 +103.71439999999997 11 -123.0443135623731 +116.54000000000002 21 -51.18920000000001 +100.3445135623731 6 DASHDOT 67 @@ -8153,13 +8153,13 @@ LINE 8 Circuit_Cut 10 -122.2158864376269 +120.7383135623731 20 -53.1892 +101.71439999999996 11 -105.94661356237309 +118.54 21 -53.18919999999999 +99.51608643762691 6 DASHDOT 67 @@ -8171,13 +8171,13 @@ LINE 8 Circuit_Cut 10 -123.0443135623731 +116.54 20 -51.1892 +98.35 11 -105.1181864376269 +116.54 21 -51.18919999999999 +96.35 6 DASHDOT 67 @@ -8189,13 +8189,13 @@ LINE 8 Circuit_Cut 10 -105.94661356237309 +116.54 20 -53.1892 +96.35 11 -103.73000000000002 +118.54 21 -55.40581356237308 +96.35 6 DASHDOT 67 @@ -8207,13 +8207,13 @@ LINE 8 Circuit_Cut 10 -105.1181864376269 +118.54 20 -51.18919999999999 +96.35 11 -101.73 +118.54 21 -54.57738643762689 +98.35 6 DASHDOT 67 @@ -8225,13 +8225,13 @@ LINE 8 Circuit_Cut 10 -101.73 +116.54 20 -56.53 +100.3445135623731 11 -101.73 +116.54 21 -58.53 +98.35 6 DASHDOT 67 @@ -8243,13 +8243,13 @@ LINE 8 Circuit_Cut 10 -101.73 +118.54 20 -58.53 +99.51608643762691 11 -103.73 +118.54 21 -58.53 +98.35 6 DASHDOT 67 @@ -8259,15 +8259,15 @@ LINE 5 3AE 8 -Circuit_Cut +Circuit_Etc 10 -103.73 +124.285 20 -58.53 +96.475 11 -103.73 +124.285 21 -56.53 +98.225 6 DASHDOT 67 @@ -8277,15 +8277,15 @@ LINE 5 3AF 8 -Circuit_Cut +Circuit_Etc 10 -101.73 +124.285 20 -54.577386437626885 +98.225 11 -101.73 +126.035 21 -56.53 +98.225 6 DASHDOT 67 @@ -8295,15 +8295,15 @@ LINE 5 3B0 8 -Circuit_Cut +Circuit_Etc 10 -103.73 +126.035 20 -55.405813562373076 +98.225 11 -103.73 +126.035 21 -56.53 +96.475 6 DASHDOT 67 @@ -8321,7 +8321,7 @@ Circuit_Etc 11 124.285 21 -98.225 +93.31533686707647 6 DASHDOT 67 @@ -8333,13 +8333,13 @@ LINE 8 Circuit_Etc 10 -124.285 +126.035 20 -98.225 +96.475 11 126.035 21 -98.225 +92.59046313292355 6 DASHDOT 67 @@ -8351,13 +8351,13 @@ LINE 8 Circuit_Etc 10 -126.035 +124.285 20 -98.225 +93.31533686707645 11 -126.035 +120.01769999999999 21 -96.475 +89.04803686707642 6 DASHDOT 67 @@ -8369,13 +8369,13 @@ LINE 8 Circuit_Etc 10 -124.285 +126.03500000000001 20 -96.475 +92.59046313292355 11 -124.285 +121.7677 21 -91.06123686707645 +88.32316313292353 6 DASHDOT 67 @@ -8387,13 +8387,13 @@ LINE 8 Circuit_Etc 10 -126.035 +120.0177 20 -96.475 +89.04803686707643 11 -126.035 +120.0177 21 -90.33636313292354 +77.7786 6 DASHDOT 67 @@ -8405,13 +8405,13 @@ LINE 8 Circuit_Etc 10 -124.28499999999997 +120.0177 20 -91.06123686707645 +76.0286 11 -109.55379576485674 +120.0177 21 -76.33003263193318 +58.40627555919259 6 DASHDOT 67 @@ -8423,13 +8423,13 @@ LINE 8 Circuit_Etc 10 -108.31635889775129 +121.7677 20 -75.09259576482773 +88.32316313292351 11 -108.3163659565038 +121.7677 21 -75.09260282358025 +57.91772444080738 6 DASHDOT 67 @@ -8441,13 +8441,13 @@ LINE 8 Circuit_Etc 10 -126.035 +120.01692760046994 20 -90.33636313292354 +58.404999999999994 11 -110.79123404349625 +119.635 21 -75.09259717641976 +58.405 6 DASHDOT 67 @@ -8459,13 +8459,13 @@ LINE 8 Circuit_Etc 10 -110.7912340434962 +119.635 20 -75.09259717641977 +58.405 11 -121.385 +119.635 21 -64.49873452794287 +56.655 6 DASHDOT 67 @@ -8477,13 +8477,13 @@ LINE 8 Circuit_Etc 10 -108.31636595650382 +119.635 20 -75.09260282358025 +56.655 11 -119.635 +121.385 21 -63.77386547205715 +56.655 6 DASHDOT 67 @@ -8495,13 +8495,13 @@ LINE 8 Circuit_Etc 10 -119.635 +121.385 20 -58.405 +56.655 11 -119.635 +121.38499999999999 21 -56.655 +57.28572444080741 6 DASHDOT 67 @@ -8513,13 +8513,13 @@ LINE 8 Circuit_Etc 10 -119.635 +120.0177 20 -56.655 +58.406275559192586 11 -121.385 +120.01692760046994 21 -56.655 +58.404999999999994 6 DASHDOT 67 @@ -8531,13 +8531,13 @@ LINE 8 Circuit_Etc 10 -121.385 +121.76769999999996 20 -56.655 +57.91772444080738 11 -121.385 +121.38499999999999 21 -58.405 +57.28572444080741 6 DASHDOT 67 @@ -8549,13 +8549,13 @@ LINE 8 Circuit_Etc 10 -119.635 +86.125 20 -63.77386547205714 +78.965 11 -119.635 +86.125 21 -58.405 +80.715 6 DASHDOT 67 @@ -8567,13 +8567,13 @@ LINE 8 Circuit_Etc 10 -121.385 +86.125 20 -64.49873452794287 +80.715 11 -121.385 +87.875 21 -58.405 +80.715 6 DASHDOT 67 @@ -8585,11 +8585,11 @@ LINE 8 Circuit_Etc 10 -86.125 +87.875 20 80.715 11 -86.125 +87.875 21 78.965 6 @@ -8607,9 +8607,9 @@ Circuit_Etc 20 78.965 11 -87.875 +86.125 21 -78.965 +78.44786313292354 6 DASHDOT 67 @@ -8627,7 +8627,7 @@ Circuit_Etc 11 87.875 21 -80.715 +79.17273686707645 6 DASHDOT 67 @@ -8639,13 +8639,13 @@ LINE 8 Circuit_Etc 10 -86.125 +87.87500000000001 20 -80.715 +79.17273686707645 11 -86.125 +89.26913686707645 21 -81.24063686707647 +77.7786 6 DASHDOT 67 @@ -8657,13 +8657,13 @@ LINE 8 Circuit_Etc 10 -87.875 +86.125 20 -80.715 +78.44786313292353 11 -87.875 +88.54426313292353 21 -80.51576313292355 +76.02859999999998 6 DASHDOT 67 @@ -8675,13 +8675,13 @@ LINE 8 Circuit_Etc 10 -86.125 +89.26913686707645 20 -81.24063686707646 +77.7786 11 -88.15646313292355 +120.0177 21 -83.27209999999998 +77.7786 6 DASHDOT 67 @@ -8693,13 +8693,13 @@ LINE 8 Circuit_Etc 10 -87.87500000000001 +88.54426313292353 20 -80.51576313292355 +76.0286 11 -88.88133686707644 +120.0177 21 -81.5221 +76.0286 6 DASHDOT 67 @@ -8711,13 +8711,13 @@ LINE 8 Circuit_Etc 10 -88.15646313292353 +88.71956750292095 20 -83.2721 +80.71499999999999 11 -102.61163335856185 +88.665 21 -83.2721 +80.715 6 DASHDOT 67 @@ -8729,13 +8729,13 @@ LINE 8 Circuit_Etc 10 -88.88133686707644 +88.665 20 -81.5221 +80.715 11 -101.88676664143813 +88.665 21 -81.5221 +78.965 6 DASHDOT 67 @@ -8747,13 +8747,13 @@ LINE 8 Circuit_Etc 10 -102.61163335856186 +88.665 20 -83.27210000000001 +78.965 11 -109.55379576485674 +90.415 21 -76.33003263193318 +78.965 6 DASHDOT 67 @@ -8765,13 +8765,13 @@ LINE 8 Circuit_Etc 10 -101.88676664143814 +90.415 20 -81.52210000000001 +78.965 11 -108.31635889775129 +90.415 21 -75.09259576482773 +79.81183812087006 6 DASHDOT 67 @@ -8783,13 +8783,13 @@ LINE 8 Circuit_Etc 10 -121.745 +90.415 20 -96.475 +79.81183812087006 11 -121.745 +90.54113249707903 21 -98.225 +81.7693 6 DASHDOT 67 @@ -8801,13 +8801,13 @@ LINE 8 Circuit_Etc 10 -121.745 +90.65389682329234 20 -98.225 +83.5193 11 -123.495 +90.65389682329234 21 -98.225 +83.5193 6 DASHDOT 67 @@ -8819,13 +8819,13 @@ LINE 8 Circuit_Etc 10 -123.495 +88.71956750292095 20 -98.225 +80.71499999999999 11 -123.495 +88.78750317670763 21 -96.475 +81.76930000000002 6 DASHDOT 67 @@ -8837,13 +8837,13 @@ LINE 8 Circuit_Etc 10 -121.745 +90.65389682329236 20 -96.475 +83.5193 11 -121.745 +82.13456313292353 21 -95.52053686707646 +83.5193 6 DASHDOT 67 @@ -8855,13 +8855,13 @@ LINE 8 Circuit_Etc 10 -123.495 +88.78750317670762 20 -96.475 +81.7693 11 -123.495 +82.85943686707645 21 -94.79566313292355 +81.7693 6 DASHDOT 67 @@ -8873,13 +8873,13 @@ LINE 8 Circuit_Etc 10 -121.74499999999999 +82.13456313292353 20 -95.52053686707647 +83.5193 11 -120.91106313292353 +66.125 21 -94.68659999999998 +67.50973686707646 6 DASHDOT 67 @@ -8891,13 +8891,13 @@ LINE 8 Circuit_Etc 10 -123.495 +82.85943686707645 20 -94.79566313292355 +81.76929999999999 11 -121.63593686707645 +67.875 21 -92.9366 +66.78486313292353 6 DASHDOT 67 @@ -8909,13 +8909,13 @@ LINE 8 Circuit_Etc 10 -120.91106313292353 +66.125 20 -94.6866 +67.50973686707647 11 -96.28946313292353 +66.125 21 -94.6866 +43.916242308234295 6 DASHDOT 67 @@ -8927,13 +8927,13 @@ LINE 8 Circuit_Etc 10 -121.63593686707645 +67.875 20 -92.9366 +66.78486313292355 11 -97.01433686707645 +67.875 21 -92.9366 +43.16375769176571 6 DASHDOT 67 @@ -8945,13 +8945,13 @@ LINE 8 Circuit_Etc 10 -96.28946313292353 +66.125 20 -94.68659999999998 +43.916242308234295 11 -82.66627566313461 +63.3558 21 -81.06341253021108 +41.291542308234305 6 DASHDOT 67 @@ -8963,13 +8963,13 @@ LINE 8 Circuit_Etc 10 -97.01433686707645 +67.875 20 -92.93659999999997 +43.16375769176571 11 -84.88692433686542 +65.1058 21 -80.80918746978897 +40.53905769176572 6 DASHDOT 67 @@ -8981,13 +8981,13 @@ LINE 8 Circuit_Etc 10 -84.88692433686538 +63.3558 20 -80.80918746978898 +41.291542308234305 11 -86.23239332517666 +63.3558 21 -78.65080635786963 +38.23006313292355 6 DASHDOT 67 @@ -8999,13 +8999,13 @@ LINE 8 Circuit_Etc 10 -82.6662756631346 +65.1058 20 -81.06341253021107 +40.53905769176572 11 -82.68760667482333 +65.1058 21 -81.02919364213038 +38.954936867076455 6 DASHDOT 67 @@ -9017,13 +9017,13 @@ LINE 8 Circuit_Etc 10 -82.68760667482334 +65.1058 20 -81.02919364213037 +38.95493686707646 11 -80.14512066999622 +67.55733686707646 21 -81.46185753707267 +36.50339999999999 6 DASHDOT 67 @@ -9035,13 +9035,13 @@ LINE 8 Circuit_Etc 10 -86.23239332517669 +63.3558 20 -78.65080635786963 +38.23006313292355 11 -80.74307933000374 +66.83246313292355 21 -79.5849424629273 +34.7534 6 DASHDOT 67 @@ -9053,13 +9053,13 @@ LINE 8 Circuit_Etc 10 -80.14512066999622 +67.55733686707646 20 -81.46185753707267 +36.5034 11 -66.125 +80.46436313292358 21 -67.44173686707646 +36.5034 6 DASHDOT 67 @@ -9071,13 +9071,13 @@ LINE 8 Circuit_Etc 10 -80.74307933000375 +66.83246313292355 20 -79.58494246292727 +34.7534 11 -67.875 +81.18923686707649 21 -66.71686313292354 +34.7534 6 DASHDOT 67 @@ -9089,13 +9089,13 @@ LINE 8 Circuit_Etc 10 -66.125 +80.46436313292357 20 -67.44173686707646 +36.50340000000001 11 -66.125 +99.315 21 -43.91606701679551 +55.35403686707646 6 DASHDOT 67 @@ -9107,13 +9107,13 @@ LINE 8 Circuit_Etc 10 -67.875 +81.18923686707649 20 -66.71686313292355 +34.753400000000006 11 -67.875 +101.065 21 -43.16393298320449 +54.62916313292354 6 DASHDOT 67 @@ -9125,13 +9125,13 @@ LINE 8 Circuit_Etc 10 -66.12499999999999 +99.315 20 -43.9160670167955 +56.655 11 -63.35039999999999 +99.315 21 -41.28446701679552 +58.405 6 DASHDOT 67 @@ -9143,13 +9143,13 @@ LINE 8 Circuit_Etc 10 -67.87499999999999 +99.315 20 -43.16393298320448 +58.405 11 -65.1004 +101.065 21 -40.5323329832045 +58.405 6 DASHDOT 67 @@ -9161,13 +9161,13 @@ LINE 8 Circuit_Etc 10 -63.35039999999999 +101.065 20 -41.28446701679552 +58.405 11 -63.35039999999999 +101.065 21 -38.19966313292355 +56.655 6 DASHDOT 67 @@ -9179,13 +9179,13 @@ LINE 8 Circuit_Etc 10 -65.1004 +99.315 20 -40.5323329832045 +55.35403686707646 11 -65.1004 +99.315 21 -38.924536867076455 +56.655 6 DASHDOT 67 @@ -9197,13 +9197,13 @@ LINE 8 Circuit_Etc 10 -65.10039999999998 +101.065 20 -38.92453686707646 +54.629163132923544 11 -67.52153686707645 +101.065 21 -36.503400000000006 +56.655 6 DASHDOT 67 @@ -9215,13 +9215,13 @@ LINE 8 Circuit_Etc 10 -63.35039999999999 +90.54113249707903 20 -38.19966313292355 +81.7693 11 -66.79666313292353 +110.81513686707642 21 -34.753400000000006 +81.76930000000002 6 DASHDOT 67 @@ -9233,13 +9233,13 @@ LINE 8 Circuit_Etc 10 -67.52153686707645 +90.65389682329234 20 -36.5034 +83.5193 11 -80.46436313292357 +110.09026313292351 21 -36.5034 +83.51930000000002 6 DASHDOT 67 @@ -9251,13 +9251,13 @@ LINE 8 Circuit_Etc 10 -66.79666313292353 +110.09026313292352 20 -34.7534 +83.5193 11 -81.18923686707647 +121.74499999999999 21 -34.7534 +95.17403686707645 6 DASHDOT 67 @@ -9269,13 +9269,13 @@ LINE 8 Circuit_Etc 10 -80.46436313292357 +110.81513686707645 20 -36.5034 +81.7693 11 -99.315 +123.49500000000002 21 -55.35403686707646 +94.44916313292354 6 DASHDOT 67 @@ -9287,13 +9287,13 @@ LINE 8 Circuit_Etc 10 -81.18923686707647 +121.745 20 -34.7534 +96.475 11 -101.065 +121.745 21 -54.62916313292354 +98.225 6 DASHDOT 67 @@ -9305,13 +9305,13 @@ LINE 8 Circuit_Etc 10 -99.315 +121.745 20 -56.655 +98.225 11 -99.315 +123.495 21 -58.405 +98.225 6 DASHDOT 67 @@ -9323,13 +9323,13 @@ LINE 8 Circuit_Etc 10 -99.315 +123.495 20 -58.405 +98.225 11 -101.065 +123.495 21 -58.405 +96.475 6 DASHDOT 67 @@ -9341,13 +9341,13 @@ LINE 8 Circuit_Etc 10 -101.065 +121.745 20 -58.405 +95.17403686707647 11 -101.065 +121.745 21 -56.655 +96.475 6 DASHDOT 67 @@ -9359,13 +9359,13 @@ LINE 8 Circuit_Etc 10 -99.315 +123.495 20 -55.35403686707646 +94.44916313292354 11 -99.315 +123.495 21 -56.655 +96.475 6 DASHDOT 67 @@ -9377,13 +9377,13 @@ LINE 8 Circuit_Etc 10 -101.065 +83.585 20 -54.629163132923544 +80.43547601233405 11 -101.065 +83.585 21 -56.655 +80.715 6 DASHDOT 67 @@ -9395,13 +9395,13 @@ LINE 8 Circuit_Etc 10 -71.125 +83.585 20 -43.145 +80.715 11 -71.125 +85.335 21 -41.395 +80.715 6 DASHDOT 67 @@ -9413,13 +9413,13 @@ LINE 8 Circuit_Etc 10 -71.125 +85.335 20 -41.395 +80.715 11 -72.875 +85.335 21 -41.395 +78.965 6 DASHDOT 67 @@ -9431,13 +9431,13 @@ LINE 8 Circuit_Etc 10 -72.875 +85.335 20 -41.395 +78.965 11 -72.875 +84.62632946553103 21 -43.145 +78.965 6 DASHDOT 67 @@ -9449,13 +9449,13 @@ LINE 8 Circuit_Etc 10 -71.125 +83.585 20 -43.145 +80.43547601233405 11 -71.125 +82.04732885823543 21 -68.87883686707647 +79.82896572531189 6 DASHDOT 67 @@ -9467,13 +9467,13 @@ LINE 8 Circuit_Etc 10 -72.875 +84.62632946553103 20 -43.145 +78.965 11 -72.875 +83.02767114176457 21 -68.15396313292355 +78.3344342746881 6 DASHDOT 67 @@ -9485,13 +9485,13 @@ LINE 8 Circuit_Etc 10 -71.125 +82.04732885823543 20 -68.87883686707647 +79.82896572531189 11 -80.16066313292356 +71.12500000000001 21 -77.91450000000003 +68.90663686707647 6 DASHDOT 67 @@ -9503,13 +9503,13 @@ LINE 8 Circuit_Etc 10 -72.875 +83.02767114176457 20 -68.15396313292355 +78.33443427468812 11 -80.88553686707647 +72.875 21 -76.16450000000003 +68.18176313292355 6 DASHDOT 67 @@ -9521,13 +9521,13 @@ LINE 8 Circuit_Etc 10 -80.16066313292357 +71.125 20 -77.9145 +43.145 11 -87.77546313292355 +71.125 21 -77.9145 +41.395 6 DASHDOT 67 @@ -9539,13 +9539,13 @@ LINE 8 Circuit_Etc 10 -80.88553686707648 +71.125 20 -76.1645 +41.395 11 -88.50033686707647 +72.875 21 -76.1645 +41.395 6 DASHDOT 67 @@ -9557,13 +9557,13 @@ LINE 8 Circuit_Etc 10 -87.77546313292353 +72.875 20 -77.91450000000002 +41.395 11 -88.81671545815712 +72.875 21 -78.95575232523359 +43.145 6 DASHDOT 67 @@ -9575,13 +9575,13 @@ LINE 8 Circuit_Etc 10 -88.50033686707646 +71.125 20 -76.16450000000002 +68.90663686707646 11 -90.70808454184284 +71.125 21 -78.37224767476638 +43.145 6 DASHDOT 67 @@ -9593,13 +9593,13 @@ LINE 8 Circuit_Etc 10 -90.41499999999999 +72.875 20 -79.92201125933121 +68.18176313292355 11 -90.415 +72.875 21 -80.715 +43.145 6 DASHDOT 67 @@ -9611,13 +9611,13 @@ LINE 8 Circuit_Etc 10 -90.415 +71.125 20 -80.715 +39.335 11 -88.665 +72.875 21 -80.715 +39.335 6 DASHDOT 67 @@ -9629,13 +9629,13 @@ LINE 8 Circuit_Etc 10 -88.665 +72.875 20 -80.715 +39.335 11 -88.665 +72.875 21 -78.965 +37.585 6 DASHDOT 67 @@ -9647,13 +9647,13 @@ LINE 8 Circuit_Etc 10 -88.665 +72.875 20 -78.965 +37.585 11 -88.81496657816729 +71.125 21 -78.965 +37.585 6 DASHDOT 67 @@ -9665,13 +9665,13 @@ LINE 8 Circuit_Etc 10 -90.70808454184287 +71.125 20 -78.37224767476638 +37.585 11 -90.41499999999999 +71.125 21 -79.92201125933121 +37.585 6 DASHDOT 67 @@ -9683,13 +9683,13 @@ LINE 8 Circuit_Etc 10 -88.81671545815715 +71.125 20 -78.95575232523359 +39.335 11 -88.81496657816729 +68.63243686707646 21 -78.965 +39.33500000000001 6 DASHDOT 67 @@ -9703,11 +9703,11 @@ Circuit_Etc 10 71.125 20 -39.335 +37.585 11 -72.875 +67.90756313292354 21 -39.335 +37.58500000000001 6 DASHDOT 67 @@ -9719,13 +9719,13 @@ LINE 8 Circuit_Etc 10 -72.875 +67.875 20 -39.335 +40.092436867076444 11 -72.875 +67.875 21 -37.585 +40.605 6 DASHDOT 67 @@ -9737,13 +9737,13 @@ LINE 8 Circuit_Etc 10 -72.875 +67.875 20 -37.585 +40.605 11 -71.125 +66.125 21 -37.585 +40.605 6 DASHDOT 67 @@ -9755,13 +9755,13 @@ LINE 8 Circuit_Etc 10 -71.125 +66.125 20 -37.585 +40.605 11 -71.125 +66.125 21 -37.585 +38.855 6 DASHDOT 67 @@ -9773,13 +9773,13 @@ LINE 8 Circuit_Etc 10 -71.125 +66.125 20 -39.335 +38.855 11 -68.63243686707646 +66.63756313292353 21 -39.33500000000001 +38.855 6 DASHDOT 67 @@ -9791,13 +9791,13 @@ LINE 8 Circuit_Etc 10 -71.125 +68.63243686707645 20 -37.585 +39.334999999999994 11 -67.90756313292354 +67.875 21 -37.58500000000001 +40.092436867076444 6 DASHDOT 67 @@ -9809,13 +9809,13 @@ LINE 8 Circuit_Etc 10 -67.875 +67.90756313292353 20 -40.092436867076444 +37.584999999999994 11 -67.875 +66.63756313292353 21 -40.605 +38.855 6 DASHDOT 67 @@ -9827,13 +9827,13 @@ LINE 8 Circuit_Etc 10 -67.875 +119.205 20 -40.605 +98.225 11 -66.125 +119.205 21 -40.605 +96.475 6 DASHDOT 67 @@ -9845,13 +9845,13 @@ LINE 8 Circuit_Etc 10 -66.125 +119.205 20 -40.605 +96.475 11 -66.125 +120.955 21 -38.855 +96.475 6 DASHDOT 67 @@ -9863,13 +9863,13 @@ LINE 8 Circuit_Etc 10 -66.125 +120.955 20 -38.855 +96.475 11 -66.63756313292353 +120.955 21 -38.855 +98.225 6 DASHDOT 67 @@ -9881,13 +9881,13 @@ LINE 8 Circuit_Etc 10 -68.63243686707645 +119.205 20 -39.334999999999994 +98.225 11 -67.875 +119.205 21 -40.092436867076444 +99.22463686707647 6 DASHDOT 67 @@ -9899,13 +9899,13 @@ LINE 8 Circuit_Etc 10 -67.90756313292353 +120.955 20 -37.584999999999994 +98.225 11 -66.63756313292353 +120.955 21 -38.855 +98.49976313292356 6 DASHDOT 67 @@ -9917,13 +9917,13 @@ LINE 8 Circuit_Etc 10 -104.395 +119.20500000000003 20 -56.655 +99.22463686707648 11 -104.395 +121.01266313292352 21 -58.405 +101.03229999999996 6 DASHDOT 67 @@ -9935,13 +9935,13 @@ LINE 8 Circuit_Etc 10 -104.395 +120.95500000000001 20 -58.405 +98.49976313292356 11 -106.145 +121.73753686707644 21 -58.405 +99.28229999999998 6 DASHDOT 67 @@ -9953,13 +9953,13 @@ LINE 8 Circuit_Etc 10 -106.145 +121.01266313292349 20 -58.405 +101.0323 11 -106.145 +126.62933686707645 21 -56.655 +101.0323 6 DASHDOT 67 @@ -9971,13 +9971,13 @@ LINE 8 Circuit_Etc 10 -104.395 +121.73753686707641 20 -56.655 +99.2823 11 -104.395 +125.90446313292352 21 -55.78846313292352 +99.2823 6 DASHDOT 67 @@ -9989,13 +9989,13 @@ LINE 8 Circuit_Etc 10 -106.145 +126.62933686707645 20 -56.655 +101.03229999999999 11 -106.145 +128.84529999999998 21 -56.51333686707643 +98.81633686707647 6 DASHDOT 67 @@ -10007,13 +10007,13 @@ LINE 8 Circuit_Etc 10 -106.14500000000001 +125.90446313292351 20 -56.51333686707643 +99.28229999999998 11 -107.03613686707645 +127.09529999999997 21 -55.622199999999985 +98.09146313292355 6 DASHDOT 67 @@ -10025,13 +10025,13 @@ LINE 8 Circuit_Etc 10 -104.395 +127.0953 20 -55.788463132923525 +98.09146313292356 11 -106.31126313292353 +127.0953 21 -53.87219999999998 +61.385036867076465 6 DASHDOT 67 @@ -10043,13 +10043,13 @@ LINE 8 Circuit_Etc 10 -107.03613686707645 +128.8453 20 -55.62219999999999 +98.81633686707647 11 -121.27676313292352 +128.8453 21 -55.6222 +60.66016313292354 6 DASHDOT 67 @@ -10061,13 +10061,13 @@ LINE 8 Circuit_Etc 10 -106.31126313292353 +127.0953 20 -53.87219999999999 +61.38503686707646 11 -122.00163686707644 +121.32866313292351 21 -53.8722 +55.61839999999998 6 DASHDOT 67 @@ -10079,13 +10079,13 @@ LINE 8 Circuit_Etc 10 -121.27676313292352 +128.8453 20 -55.62219999999999 +60.660163132923536 11 -127.0473 +122.05353686707643 21 -61.39273686707647 +53.86839999999999 6 DASHDOT 67 @@ -10097,13 +10097,13 @@ LINE 8 Circuit_Etc 10 -122.00163686707644 +121.32866313292351 20 -53.8722 +55.6184 11 -128.7973 +106.3187284885073 21 -60.667863132923564 +55.6184 6 DASHDOT 67 @@ -10115,13 +10115,13 @@ LINE 8 Circuit_Etc 10 -127.0473 +122.05353686707643 20 -61.39273686707647 +53.8684 11 -127.0473 +104.71767151149267 21 -98.13176313292357 +53.8684 6 DASHDOT 67 @@ -10133,13 +10133,13 @@ LINE 8 Circuit_Etc 10 -128.7973 +106.14499999999998 20 -60.66786313292356 +57.56889075775412 11 -128.7973 +106.145 21 -98.85663686707649 +58.405 6 DASHDOT 67 @@ -10151,13 +10151,13 @@ LINE 8 Circuit_Etc 10 -128.79729999999998 +106.145 20 -98.85663686707647 +58.405 11 -126.66663686707648 +104.395 21 -100.98729999999999 +58.405 6 DASHDOT 67 @@ -10169,13 +10169,13 @@ LINE 8 Circuit_Etc 10 -127.0473 +104.395 20 -98.13176313292357 +58.405 11 -125.94176313292357 +104.395 21 -99.2373 +56.655 6 DASHDOT 67 @@ -10187,13 +10187,13 @@ LINE 8 Circuit_Etc 10 -126.66663686707648 +104.395 20 -100.9873 +56.655 11 -120.95976313292353 +104.46947151149267 21 -100.98729999999999 +56.655 6 DASHDOT 67 @@ -10205,13 +10205,13 @@ LINE 8 Circuit_Etc 10 -125.94176313292357 +106.31872848850733 20 -99.2373 +55.61840000000003 11 -121.68463686707645 +106.14499999999998 21 -99.23729999999999 +57.56889075775412 6 DASHDOT 67 @@ -10223,13 +10223,13 @@ LINE 8 Circuit_Etc 10 -120.95976313292353 +104.71767151149267 20 -100.9873 +53.8684 11 -119.205 +104.46947151149267 21 -99.23253686707646 +56.655 6 DASHDOT 67 @@ -10241,13 +10241,13 @@ LINE 8 Circuit_Etc 10 -121.68463686707645 +101.855 20 -99.2373 +56.655 11 -120.955 +101.855 21 -98.50766313292355 +58.405 6 DASHDOT 67 @@ -10259,13 +10259,13 @@ LINE 8 Circuit_Etc 10 -119.205 +101.855 20 -98.225 +58.405 11 -119.205 +103.605 21 -96.475 +58.405 6 DASHDOT 67 @@ -10277,13 +10277,13 @@ LINE 8 Circuit_Etc 10 -119.205 +103.605 20 -96.475 +58.405 11 -120.955 +103.605 21 -96.475 +56.655 6 DASHDOT 67 @@ -10295,13 +10295,13 @@ LINE 8 Circuit_Etc 10 -120.955 +101.855 20 -96.475 +56.655 11 -120.955 +101.855 21 -98.225 +53.62926313292353 6 DASHDOT 67 @@ -10313,13 +10313,13 @@ LINE 8 Circuit_Etc 10 -119.205 +103.605 20 -99.23253686707646 +56.655 11 -119.205 +103.605 21 -98.225 +54.35413686707645 6 DASHDOT 67 @@ -10331,13 +10331,13 @@ LINE 8 Circuit_Etc 10 -120.955 +103.60500000000002 20 -98.50766313292355 +54.35413686707646 11 -120.955 +104.86553686707646 21 -98.225 +53.093600000000016 6 DASHDOT 67 @@ -10349,13 +10349,13 @@ LINE 8 Circuit_Etc 10 -116.665 +101.85499999999999 20 -98.225 +53.62926313292354 11 -116.665 +104.14066313292355 21 -96.475 +51.3436 6 DASHDOT 67 @@ -10367,13 +10367,13 @@ LINE 8 Circuit_Etc 10 -116.665 +104.86553686707646 20 -96.475 +53.09360000000001 11 -118.415 +122.39476313292353 21 -96.475 +53.0936 6 DASHDOT 67 @@ -10385,13 +10385,13 @@ LINE 8 Circuit_Etc 10 -118.415 +104.14066313292355 20 -96.475 +51.34360000000001 11 -118.415 +123.11963686707644 21 -98.225 +51.3436 6 DASHDOT 67 @@ -10403,13 +10403,13 @@ LINE 8 Circuit_Etc 10 -116.665 +122.39476313292353 20 -98.225 +53.09359999999997 11 -116.665 +129.6061 21 -100.26953686707645 +60.30493686707646 6 DASHDOT 67 @@ -10421,13 +10421,13 @@ LINE 8 Circuit_Etc 10 -118.415 +123.11963686707644 20 -98.225 +51.343599999999974 11 -118.415 +131.3561 21 -99.54466313292355 +59.58006313292354 6 DASHDOT 67 @@ -10439,13 +10439,13 @@ LINE 8 Circuit_Etc 10 -116.66500000000002 +129.6061 20 -100.26953686707645 +60.304936867076464 11 -119.96306313292354 +129.6061 21 -103.56759999999998 +99.16486313292353 6 DASHDOT 67 @@ -10457,13 +10457,13 @@ LINE 8 Circuit_Etc 10 -118.415 +131.3561 20 -99.54466313292353 +59.58006313292354 11 -120.68793686707646 +131.3561 21 -101.81759999999998 +99.88973686707644 6 DASHDOT 67 @@ -10475,13 +10475,13 @@ LINE 8 Circuit_Etc 10 -119.96306313292354 +131.35609999999997 20 -103.56759999999998 +99.88973686707646 11 -127.62193686707646 +127.65643686707647 21 -103.5676 +103.58940000000001 6 DASHDOT 67 @@ -10493,13 +10493,13 @@ LINE 8 Circuit_Etc 10 -120.68793686707646 +129.6061 20 -101.81759999999998 +99.16486313292351 11 -126.89706313292353 +126.93156313292354 21 -101.8176 +101.8394 6 DASHDOT 67 @@ -10511,13 +10511,13 @@ LINE 8 Circuit_Etc 10 -127.62193686707646 +127.65643686707644 20 -103.56759999999997 +103.58939999999998 11 -131.32770000000002 +119.96166313292355 21 -99.86183686707639 +103.58939999999998 6 DASHDOT 67 @@ -10529,13 +10529,13 @@ LINE 8 Circuit_Etc 10 -126.89706313292353 +126.93156313292353 20 -101.81759999999996 +101.83939999999998 11 -129.5777 +120.68653686707647 21 -99.1369631329235 +101.83939999999998 6 DASHDOT 67 @@ -10547,13 +10547,13 @@ LINE 8 Circuit_Etc 10 -129.5777 +119.96166313292355 20 -99.13696313292348 +103.58939999999997 11 -129.5777 +116.66500000000003 21 -60.374236867076455 +100.29273686707647 6 DASHDOT 67 @@ -10565,13 +10565,13 @@ LINE 8 Circuit_Etc 10 -131.3277 +120.68653686707647 20 -99.86183686707639 +101.83939999999996 11 -131.3277 +118.415 21 -59.64936313292354 +99.56786313292355 6 DASHDOT 67 @@ -10583,13 +10583,13 @@ LINE 8 Circuit_Etc 10 -129.5777 +116.665 20 -60.374236867076455 +98.225 11 -122.26766313292354 +116.665 21 -53.06420000000001 +96.475 6 DASHDOT 67 @@ -10601,13 +10601,13 @@ LINE 8 Circuit_Etc 10 -131.3277 +116.665 20 -59.64936313292355 +96.475 11 -122.99253686707647 +118.415 21 -51.31420000000001 +96.475 6 DASHDOT 67 @@ -10619,13 +10619,13 @@ LINE 8 Circuit_Etc 10 -122.26766313292354 +118.415 20 -53.0642 +96.475 11 -105.89483686707645 +118.415 21 -53.06419999999999 +98.225 6 DASHDOT 67 @@ -10637,13 +10637,13 @@ LINE 8 Circuit_Etc 10 -122.99253686707647 +116.665 20 -51.3142 +100.29273686707646 11 -105.16996313292354 +116.665 21 -51.31419999999999 +98.225 6 DASHDOT 67 @@ -10655,13 +10655,13 @@ LINE 8 Circuit_Etc 10 -105.89483686707645 +118.415 20 -53.0642 +99.56786313292355 11 -103.60500000000002 +118.415 21 -55.35403686707644 +98.225 6 DASHDOT 67 @@ -10671,15 +10671,15 @@ LINE 5 434 8 -Circuit_Etc +Circuit_Cut 10 -105.16996313292354 +124.41 20 -51.31419999999999 +96.6 11 -101.855 +124.41 21 -54.62916313292352 +98.1 6 DASHDOT 67 @@ -10689,15 +10689,15 @@ LINE 5 435 8 -Circuit_Etc +Circuit_Cut 10 -101.855 +124.41 20 -56.655 +98.1 11 -101.855 +125.91 21 -58.405 +98.1 6 DASHDOT 67 @@ -10707,15 +10707,15 @@ LINE 5 436 8 -Circuit_Etc +Circuit_Cut 10 -101.855 +125.91 20 -58.405 +98.1 11 -103.605 +125.91 21 -58.405 +96.6 6 DASHDOT 67 @@ -10725,15 +10725,15 @@ LINE 5 437 8 -Circuit_Etc +Circuit_Cut 10 -103.605 +124.41 20 -58.405 +96.6 11 -103.605 +124.41 21 -56.655 +93.26356017177983 6 DASHDOT 67 @@ -10743,15 +10743,15 @@ LINE 5 438 8 -Circuit_Etc +Circuit_Cut 10 -101.855 +125.91 20 -54.62916313292352 +96.6 11 -101.855 +125.91 21 -56.655 +92.64223982822018 6 DASHDOT 67 @@ -10761,15 +10761,15 @@ LINE 5 439 8 -Circuit_Etc +Circuit_Cut 10 -103.605 +124.41 20 -55.35403686707644 +93.26356017177982 11 -103.605 +120.14270000000002 21 -56.655 +88.9962601717798 6 DASHDOT 67 @@ -10781,13 +10781,13 @@ LINE 8 Circuit_Cut 10 -124.41 +125.91000000000001 20 -96.6 +92.64223982822018 11 -124.41 +121.6427 21 -98.1 +88.37493982822016 6 DASHDOT 67 @@ -10799,13 +10799,13 @@ LINE 8 Circuit_Cut 10 -124.41 +120.1427 20 -98.1 +88.9962601717798 11 -125.91 +120.1427 21 -98.1 +77.6536 6 DASHDOT 67 @@ -10817,13 +10817,13 @@ LINE 8 Circuit_Cut 10 -125.91 +120.1427 20 -98.1 +76.1536 11 -125.91 +120.1427 21 -96.6 +58.37137905073651 6 DASHDOT 67 @@ -10835,13 +10835,13 @@ LINE 8 Circuit_Cut 10 -124.41 +121.6427 20 -96.6 +88.37493982822015 11 -124.41 +121.6427 21 -91.0094601717798 +57.95262094926347 6 DASHDOT 67 @@ -10853,13 +10853,13 @@ LINE 8 Circuit_Cut 10 -125.91 +120.08736651468851 20 -96.6 +58.28 11 -125.91 +119.76 21 -90.38813982822018 +58.28 6 DASHDOT 67 @@ -10871,13 +10871,13 @@ LINE 8 Circuit_Cut 10 -124.40999999999997 +119.76 20 -91.0094601717798 +58.28 11 -109.5537963698772 +119.76 21 -76.15325654165702 +56.78 6 DASHDOT 67 @@ -10889,13 +10889,13 @@ LINE 8 Circuit_Cut 10 -108.49313619807253 +119.76 20 -75.09259636985234 +56.78 11 -108.49314224843184 +121.26 21 -75.09260242021165 +56.78 6 DASHDOT 67 @@ -10907,13 +10907,13 @@ LINE 8 Circuit_Cut 10 -125.91 +121.26 20 -90.38813982822018 +56.78 11 -110.61445775156821 +121.26 21 -75.09259757978836 +57.3206209492635 6 DASHDOT 67 @@ -10925,13 +10925,13 @@ LINE 8 Circuit_Cut 10 -110.6144577515682 +120.1427 20 -75.09259757978836 +58.371379050736515 11 -121.26000000000002 +120.08736651468851 21 -64.44695816680817 +58.28 6 DASHDOT 67 @@ -10943,13 +10943,13 @@ LINE 8 Circuit_Cut 10 -108.49314224843181 +121.64269999999998 20 -75.09260242021166 +57.952620949263476 11 -119.76 +121.26 21 -63.82564183319183 +57.3206209492635 6 DASHDOT 67 @@ -10961,13 +10961,13 @@ LINE 8 Circuit_Cut 10 -119.76 +86.25 20 -58.28 +79.09 11 -119.76 +86.25 21 -56.78 +80.59 6 DASHDOT 67 @@ -10979,13 +10979,13 @@ LINE 8 Circuit_Cut 10 -119.76 +86.25 20 -56.78 +80.59 11 -121.26 +87.75 21 -56.78 +80.59 6 DASHDOT 67 @@ -10997,13 +10997,13 @@ LINE 8 Circuit_Cut 10 -121.26 +87.75 20 -56.78 +80.59 11 -121.26 +87.75 21 -58.28 +79.09 6 DASHDOT 67 @@ -11015,13 +11015,13 @@ LINE 8 Circuit_Cut 10 -119.76 +86.25 20 -63.82564183319183 +79.09 11 -119.76 +86.25 21 -58.28 +78.49963982822018 6 DASHDOT 67 @@ -11033,13 +11033,13 @@ LINE 8 Circuit_Cut 10 -121.26 +87.75 20 -64.44695816680817 +79.09 11 -121.26 +87.75 21 -58.28 +79.12096017177981 6 DASHDOT 67 @@ -11051,13 +11051,13 @@ LINE 8 Circuit_Cut 10 -86.25 +87.75000000000001 20 -80.59 +79.12096017177981 11 -86.25 +89.21736017177982 21 -79.09 +77.6536 6 DASHDOT 67 @@ -11069,13 +11069,13 @@ LINE 8 Circuit_Cut 10 -86.25 +86.24999999999999 20 -79.09 +78.49963982822018 11 -87.75 +88.59603982822017 21 -79.09 +76.15359999999998 6 DASHDOT 67 @@ -11087,13 +11087,13 @@ LINE 8 Circuit_Cut 10 -87.75 +89.21736017177982 20 -79.09 +77.6536 11 -87.75 +120.1427 21 -80.59 +77.6536 6 DASHDOT 67 @@ -11105,13 +11105,13 @@ LINE 8 Circuit_Cut 10 -86.25 +88.59603982822017 20 -80.59 +76.1536 11 -86.25 +120.1427 21 -81.18886017177984 +76.1536 6 DASHDOT 67 @@ -11123,13 +11123,13 @@ LINE 8 Circuit_Cut 10 -87.75 +88.83677214536081 20 80.59 11 -87.75 +88.79 21 -80.56753982822019 +79.09 6 DASHDOT 67 @@ -11141,13 +11141,13 @@ LINE 8 Circuit_Cut 10 -86.25000000000001 +88.79 20 -81.18886017177984 +79.09 11 -88.20823982822017 +90.29 21 -83.14709999999998 +79.09 6 DASHDOT 67 @@ -11159,13 +11159,13 @@ LINE 8 Circuit_Cut 10 -87.75000000000001 +90.29 20 -80.56753982822019 +79.09 11 -88.8295601717798 +90.29 21 -81.6471 +80.59 6 DASHDOT 67 @@ -11177,13 +11177,13 @@ LINE 8 Circuit_Cut 10 -88.20823982822017 +90.29 20 -83.1471 +80.59 11 -102.55985716448158 +90.33988299139345 21 -83.1471 +80.59 6 DASHDOT 67 @@ -11195,13 +11195,13 @@ LINE 8 Circuit_Cut 10 -88.8295601717798 +90.33988299139345 20 -81.6471 +80.59 11 -101.93854283551839 +90.42392785463917 21 -81.6471 +81.8943 6 DASHDOT 67 @@ -11213,13 +11213,13 @@ LINE 8 Circuit_Cut 10 -102.5598571644816 +90.52058299139344 20 -83.14710000000001 +83.3943 11 -109.5537963698772 +90.52058299139344 21 -76.15325654165702 +83.39429999999999 6 DASHDOT 67 @@ -11231,13 +11231,13 @@ LINE 8 Circuit_Cut 10 -101.9385428355184 +88.83677214536081 20 -81.64710000000001 +80.59 11 -108.49313619807253 +88.92081700860655 21 -75.09259636985234 +81.89430000000002 6 DASHDOT 67 @@ -11249,13 +11249,13 @@ LINE 8 Circuit_Cut 10 -121.87 +90.52058299139344 20 -96.6 +83.3943 11 -121.87 +82.18633982822017 21 -98.1 +83.3943 6 DASHDOT 67 @@ -11267,13 +11267,13 @@ LINE 8 Circuit_Cut 10 -121.87 +88.92081700860653 20 -98.1 +81.8943 11 -123.37 +82.80766017177982 21 -98.1 +81.8943 6 DASHDOT 67 @@ -11285,13 +11285,13 @@ LINE 8 Circuit_Cut 10 -123.37 +82.18633982822017 20 -98.1 +83.39429999999999 11 -123.37 +66.25 21 -96.6 +67.45796017177982 6 DASHDOT 67 @@ -11303,13 +11303,13 @@ LINE 8 Circuit_Cut 10 -121.87 +82.80766017177982 20 -96.6 +81.89429999999999 11 -121.87 +67.75000000000001 21 -95.46876017177982 +66.83663982822019 6 DASHDOT 67 @@ -11321,13 +11321,13 @@ LINE 8 Circuit_Cut 10 -123.37 +66.25 20 -96.6 +67.45796017177983 11 -123.37 +66.25 21 -94.84743982822019 +43.86249340705797 6 DASHDOT 67 @@ -11339,13 +11339,13 @@ LINE 8 Circuit_Cut 10 -121.86999999999999 +67.75 20 -95.46876017177983 +66.83663982822019 11 -120.96283982822017 +67.75 21 -94.56159999999998 +43.21750659294204 6 DASHDOT 67 @@ -11357,13 +11357,13 @@ LINE 8 Circuit_Cut 10 -123.36999999999999 +66.25 20 -94.84743982822017 +43.86249340705797 11 -121.58416017177981 +63.48080000000001 21 -93.0616 +41.23779340705798 6 DASHDOT 67 @@ -11375,13 +11375,13 @@ LINE 8 Circuit_Cut 10 -120.96283982822017 +67.75 20 -94.5616 +43.21750659294204 11 -96.34123982822017 +64.9808 21 -94.5616 +40.59280659294205 6 DASHDOT 67 @@ -11393,13 +11393,13 @@ LINE 8 Circuit_Cut 10 -121.58416017177981 +63.4808 20 -93.0616 +41.23779340705798 11 -96.96256017177981 +63.4808 21 -93.0616 +38.281839828220185 6 DASHDOT 67 @@ -11411,13 +11411,13 @@ LINE 8 Circuit_Cut 10 -96.34123982822017 +64.9808 20 -94.56159999999998 +40.59280659294205 11 -82.82489342554396 +64.9808 21 -81.04525359732379 +38.903160171779824 6 DASHDOT 67 @@ -11429,13 +11429,13 @@ LINE 8 Circuit_Cut 10 -96.96256017177981 +64.9808 20 -93.06159999999997 +38.903160171779824 11 -84.72830657445607 +67.50556017177983 21 -80.82734640267626 +36.37839999999999 6 DASHDOT 67 @@ -11447,13 +11447,13 @@ LINE 8 Circuit_Cut 10 -84.72830657445606 +63.4808 20 -80.82734640267626 +38.281839828220185 11 -85.97919427872286 +66.88423982822019 21 -78.82069116388826 +34.8784 6 DASHDOT 67 @@ -11465,13 +11465,13 @@ LINE 8 Circuit_Cut 10 -82.82489342554395 +67.50556017177983 20 -81.04525359732378 +36.3784 11 -82.94080572127713 +80.51613982822022 21 -80.85930883611177 +36.3784 6 DASHDOT 67 @@ -11483,13 +11483,13 @@ LINE 8 Circuit_Cut 10 -82.94080572127714 +66.88423982822019 20 -80.85930883611175 +34.8784 11 -80.1878320028539 +81.13746017177985 21 -81.32779217463373 +34.8784 6 DASHDOT 67 @@ -11501,13 +11501,13 @@ LINE 8 Circuit_Cut 10 -85.97919427872289 +80.5161398282202 20 -78.82069116388824 +36.37840000000001 11 -80.70036799714606 +99.44 21 -79.71900782536625 +55.302260171779814 6 DASHDOT 67 @@ -11519,13 +11519,13 @@ LINE 8 Circuit_Cut 10 -80.1878320028539 +81.13746017177985 20 -81.32779217463371 +34.878400000000006 11 -66.25 +100.94 21 -67.38996017177982 +54.68093982822017 6 DASHDOT 67 @@ -11537,13 +11537,13 @@ LINE 8 Circuit_Cut 10 -80.70036799714606 +99.44 20 -79.71900782536623 +56.78 11 -67.75 +99.44 21 -66.76863982822017 +58.28 6 DASHDOT 67 @@ -11555,13 +11555,13 @@ LINE 8 Circuit_Cut 10 -66.25 +99.44 20 -67.38996017177982 +58.28 11 -66.25 +100.94 21 -43.86234315725329 +58.28 6 DASHDOT 67 @@ -11573,13 +11573,13 @@ LINE 8 Circuit_Cut 10 -67.75 +100.94 20 -66.76863982822017 +58.28 11 -67.75 +100.94 21 -43.2176568427467 +56.78 6 DASHDOT 67 @@ -11591,13 +11591,13 @@ LINE 8 Circuit_Cut 10 -66.24999999999999 +99.44 20 -43.862343157253285 +55.30226017177982 11 -63.47539999999999 +99.44 21 -41.2307431572533 +56.78 6 DASHDOT 67 @@ -11609,13 +11609,13 @@ LINE 8 Circuit_Cut 10 -67.75 +100.94 20 -43.2176568427467 +54.680939828220176 11 -64.9754 +100.94 21 -40.586056842746714 +56.78 6 DASHDOT 67 @@ -11627,13 +11627,13 @@ LINE 8 Circuit_Cut 10 -63.47539999999999 +90.42392785463917 20 -41.2307431572533 +81.8943 11 -63.47539999999999 +110.76336017177978 21 -38.251439828220185 +81.89430000000002 6 DASHDOT 67 @@ -11645,13 +11645,13 @@ LINE 8 Circuit_Cut 10 -64.9754 +90.52058299139344 20 -40.586056842746714 +83.3943 11 -64.9754 +110.14203982822015 21 -38.872760171779824 +83.39430000000002 6 DASHDOT 67 @@ -11663,13 +11663,13 @@ LINE 8 Circuit_Cut 10 -64.97539999999998 +110.14203982822016 20 -38.872760171779824 +83.3943 11 -67.46976017177981 +121.86999999999999 21 -36.3784 +95.12226017177981 6 DASHDOT 67 @@ -11681,13 +11681,13 @@ LINE 8 Circuit_Cut 10 -63.47539999999999 +110.76336017177981 20 -38.251439828220185 +81.8943 11 -66.84843982822017 +123.37000000000002 21 -34.878400000000006 +94.50093982822018 6 DASHDOT 67 @@ -11699,13 +11699,13 @@ LINE 8 Circuit_Cut 10 -67.46976017177981 +121.87 20 -36.3784 +96.6 11 -80.5161398282202 +121.87 21 -36.3784 +98.1 6 DASHDOT 67 @@ -11717,13 +11717,13 @@ LINE 8 Circuit_Cut 10 -66.84843982822017 +121.87 20 -34.8784 +98.1 11 -81.13746017177984 +123.37 21 -34.8784 +98.1 6 DASHDOT 67 @@ -11735,13 +11735,13 @@ LINE 8 Circuit_Cut 10 -80.5161398282202 +123.37 20 -36.3784 +98.1 11 -99.44 +123.37 21 -55.302260171779814 +96.6 6 DASHDOT 67 @@ -11753,13 +11753,13 @@ LINE 8 Circuit_Cut 10 -81.13746017177984 +121.87 20 -34.8784 +95.12226017177983 11 -100.94 +121.87 21 -54.68093982822017 +96.6 6 DASHDOT 67 @@ -11771,13 +11771,13 @@ LINE 8 Circuit_Cut 10 -99.44 +123.37 20 -56.78 +94.50093982822018 11 -99.44 +123.37 21 -58.28 +96.6 6 DASHDOT 67 @@ -11789,13 +11789,13 @@ LINE 8 Circuit_Cut 10 -99.44 +83.71 20 -58.28 +80.35040801057204 11 -100.94 +83.71 21 -58.28 +80.59 6 DASHDOT 67 @@ -11807,13 +11807,13 @@ LINE 8 Circuit_Cut 10 -100.94 +83.71 20 -58.28 +80.59 11 -100.94 +85.21 21 -56.78 +80.59 6 DASHDOT 67 @@ -11825,13 +11825,13 @@ LINE 8 Circuit_Cut 10 -99.44 +85.21 20 -55.30226017177982 +80.59 11 -99.44 +85.21 21 -56.78 +79.09 6 DASHDOT 67 @@ -11843,13 +11843,13 @@ LINE 8 Circuit_Cut 10 -100.94 +85.21 20 -54.680939828220176 +79.09 11 -100.94 +84.6025681133123 21 -56.78 +79.09 6 DASHDOT 67 @@ -11861,13 +11861,13 @@ LINE 8 Circuit_Cut 10 -71.25 +83.71 20 -43.02 +80.35040801057204 11 -71.25 +82.11735330705895 21 -41.52 +79.72221347883877 6 DASHDOT 67 @@ -11879,13 +11879,13 @@ LINE 8 Circuit_Cut 10 -71.25 +84.6025681133123 20 -41.52 +79.09 11 -72.75 +82.95764669294107 21 -41.52 +78.44118652116124 6 DASHDOT 67 @@ -11897,13 +11897,13 @@ LINE 8 Circuit_Cut 10 -72.75 +82.11735330705895 20 -41.52 +79.72221347883875 11 -72.75 +71.25000000000001 21 -43.02 +68.85486017177983 6 DASHDOT 67 @@ -11915,13 +11915,13 @@ LINE 8 Circuit_Cut 10 -71.25 +82.95764669294107 20 -43.02 +78.44118652116124 11 -71.25 +72.75000000000001 21 -68.82706017177983 +68.23353982822019 6 DASHDOT 67 @@ -11933,13 +11933,13 @@ LINE 8 Circuit_Cut 10 -72.75 +71.25 20 43.02 11 -72.75 +71.25 21 -68.20573982822019 +41.52 6 DASHDOT 67 @@ -11953,11 +11953,11 @@ Circuit_Cut 10 71.25 20 -68.82706017177983 +41.52 11 -80.2124398282202 +72.75 21 -77.78950000000003 +41.52 6 DASHDOT 67 @@ -11971,11 +11971,11 @@ Circuit_Cut 10 72.75 20 -68.20573982822019 +41.52 11 -80.83376017177984 +72.75 21 -76.28950000000003 +43.02 6 DASHDOT 67 @@ -11987,13 +11987,13 @@ LINE 8 Circuit_Cut 10 -80.21243982822021 +71.25 20 -77.7895 +68.85486017177982 11 -87.82723982822019 +71.25 21 -77.7895 +43.02 6 DASHDOT 67 @@ -12005,13 +12005,13 @@ LINE 8 Circuit_Cut 10 -80.83376017177984 +72.75 20 -76.2895 +68.23353982822019 11 -88.44856017177983 +72.75 21 -76.2895 +43.02 6 DASHDOT 67 @@ -12023,13 +12023,13 @@ LINE 8 Circuit_Cut 10 -87.82723982822017 +71.25 20 -77.78950000000002 +39.21 11 -88.95181324984897 +72.75 21 -78.9140734216288 +39.21 6 DASHDOT 67 @@ -12041,13 +12041,13 @@ LINE 8 Circuit_Cut 10 -88.44856017177982 +72.75 20 -76.28950000000002 +39.21 11 -90.57298675015099 +72.75 21 -78.41392657837117 +37.71 6 DASHDOT 67 @@ -12059,13 +12059,13 @@ LINE 8 Circuit_Cut 10 -90.28999999999999 +72.75 20 -79.91029536514108 +37.71 11 -90.29 +71.25 21 -80.59 +37.71 6 DASHDOT 67 @@ -12077,13 +12077,13 @@ LINE 8 Circuit_Cut 10 -90.29 +71.25 20 -80.59 +37.71 11 -88.79 +71.25 21 -80.59 +37.71 6 DASHDOT 67 @@ -12095,13 +12095,13 @@ LINE 8 Circuit_Cut 10 -88.79 +71.25 20 -80.59 +39.21 11 -88.79 +68.58066017177983 21 -79.09 +39.21000000000001 6 DASHDOT 67 @@ -12113,13 +12113,13 @@ LINE 8 Circuit_Cut 10 -88.79 +71.25 20 -79.09 +37.71 11 -88.91854278128623 +67.95933982822018 21 -79.09 +37.71000000000001 6 DASHDOT 67 @@ -12131,13 +12131,13 @@ LINE 8 Circuit_Cut 10 -90.57298675015105 +67.75 20 -78.41392657837117 +40.040660171779805 11 -90.28999999999999 +67.75 21 -79.91029536514108 +40.48 6 DASHDOT 67 @@ -12149,13 +12149,13 @@ LINE 8 Circuit_Cut 10 -88.95181324984895 +67.75 20 -78.9140734216288 +40.48 11 -88.91854278128623 +66.25 21 -79.09 +40.48 6 DASHDOT 67 @@ -12167,13 +12167,13 @@ LINE 8 Circuit_Cut 10 -71.25 +66.25 20 -39.21 +40.48 11 -72.75 +66.25 21 -39.21 +38.98 6 DASHDOT 67 @@ -12185,13 +12185,13 @@ LINE 8 Circuit_Cut 10 -72.75 +66.25 20 -39.21 +38.98 11 -72.75 +66.68933982822018 21 -37.71 +38.97999999999999 6 DASHDOT 67 @@ -12203,13 +12203,13 @@ LINE 8 Circuit_Cut 10 -72.75 +68.58066017177981 20 -37.71 +39.20999999999999 11 -71.25 +67.75 21 -37.71 +40.040660171779805 6 DASHDOT 67 @@ -12221,13 +12221,13 @@ LINE 8 Circuit_Cut 10 -71.25 +67.95933982822017 20 -37.71 +37.709999999999994 11 -71.25 +66.68933982822018 21 -37.71 +38.97999999999999 6 DASHDOT 67 @@ -12239,13 +12239,13 @@ LINE 8 Circuit_Cut 10 -71.25 +119.33 20 -39.21 +98.1 11 -68.58066017177983 +119.33 21 -39.21000000000001 +96.6 6 DASHDOT 67 @@ -12257,13 +12257,13 @@ LINE 8 Circuit_Cut 10 -71.25 +119.33 20 -37.71 +96.6 11 -67.95933982822018 +120.83 21 -37.71000000000001 +96.6 6 DASHDOT 67 @@ -12275,13 +12275,13 @@ LINE 8 Circuit_Cut 10 -67.75 +120.83 20 -40.040660171779805 +96.6 11 -67.75 +120.83 21 -40.48 +98.1 6 DASHDOT 67 @@ -12293,13 +12293,13 @@ LINE 8 Circuit_Cut 10 -67.75 +119.33 20 -40.48 +98.1 11 -66.25 +119.33 21 -40.48 +99.17286017177983 6 DASHDOT 67 @@ -12311,13 +12311,13 @@ LINE 8 Circuit_Cut 10 -66.25 +120.83 20 -40.48 +98.1 11 -66.25 +120.83 21 -38.98 +98.5515398282202 6 DASHDOT 67 @@ -12329,13 +12329,13 @@ LINE 8 Circuit_Cut 10 -66.25 +119.33000000000001 20 -38.98 +99.17286017177985 11 -66.68933982822018 +121.06443982822016 21 -38.97999999999999 +100.90729999999996 6 DASHDOT 67 @@ -12347,13 +12347,13 @@ LINE 8 Circuit_Cut 10 -68.58066017177981 +120.83000000000001 20 -39.20999999999999 +98.5515398282202 11 -67.75 +121.6857601717798 21 -40.040660171779805 +99.40729999999998 6 DASHDOT 67 @@ -12365,13 +12365,13 @@ LINE 8 Circuit_Cut 10 -67.95933982822017 +121.06443982822013 20 -37.709999999999994 +100.9073 11 -66.68933982822018 +126.57756017177981 21 -38.97999999999999 +100.9073 6 DASHDOT 67 @@ -12383,13 +12383,13 @@ LINE 8 Circuit_Cut 10 -104.52 +121.68576017177978 20 -56.78 +99.4073 11 -104.52 +125.95623982822016 21 -58.28 +99.4073 6 DASHDOT 67 @@ -12401,13 +12401,13 @@ LINE 8 Circuit_Cut 10 -104.52 +126.57756017177981 20 -58.28 +100.9073 11 -106.02 +128.72029999999998 21 -58.28 +98.76456017177983 6 DASHDOT 67 @@ -12419,13 +12419,13 @@ LINE 8 Circuit_Cut 10 -106.02 +125.95623982822016 20 -58.28 +99.4073 11 -106.02 +127.22029999999997 21 -56.78 +98.14323982822019 6 DASHDOT 67 @@ -12437,13 +12437,13 @@ LINE 8 Circuit_Cut 10 -104.52 +127.2203 20 -56.78 +98.14323982822019 11 -104.52 +127.2203 21 -55.840239828220156 +61.33326017177983 6 DASHDOT 67 @@ -12455,13 +12455,13 @@ LINE 8 Circuit_Cut 10 -106.02 +128.7203 20 -56.78 +98.76456017177983 11 -106.02 +128.7203 21 -56.461560171779794 +60.711939828220174 6 DASHDOT 67 @@ -12473,13 +12473,13 @@ LINE 8 Circuit_Cut 10 -106.02000000000001 +127.22030000000001 20 -56.461560171779794 +61.33326017177983 11 -106.98436017177981 +121.38043982822015 21 -55.497199999999985 +55.49339999999998 6 DASHDOT 67 @@ -12491,13 +12491,13 @@ LINE 8 Circuit_Cut 10 -104.52 +128.7203 20 -55.84023982822016 +60.711939828220174 11 -106.36303982822017 +122.0017601717798 21 -53.99719999999998 +53.99339999999999 6 DASHDOT 67 @@ -12509,13 +12509,13 @@ LINE 8 Circuit_Cut 10 -106.98436017177981 +121.38043982822015 20 -55.49719999999999 +55.4934 11 -121.32853982822016 +106.2043672758634 21 -55.4972 +55.4934 6 DASHDOT 67 @@ -12527,13 +12527,13 @@ LINE 8 Circuit_Cut 10 -106.36303982822017 +122.0017601717798 20 -53.99719999999999 +53.9934 11 -121.9498601717798 +104.83203272413657 21 -53.9972 +53.9934 6 DASHDOT 67 @@ -12545,13 +12545,13 @@ LINE 8 Circuit_Cut 10 -121.32853982822016 +106.02 20 -55.49719999999999 +57.56333493521775 11 -127.1723 +106.02 21 -61.34096017177983 +58.28 6 DASHDOT 67 @@ -12563,13 +12563,13 @@ LINE 8 Circuit_Cut 10 -121.9498601717798 +106.02 20 -53.9972 +58.28 11 -128.6723 +104.52 21 -60.719639828220195 +58.28 6 DASHDOT 67 @@ -12581,13 +12581,13 @@ LINE 8 Circuit_Cut 10 -127.1723 +104.52 20 -61.340960171779834 +58.28 11 -127.1723 +104.52 21 -98.1835398282202 +56.78 6 DASHDOT 67 @@ -12599,13 +12599,13 @@ LINE 8 Circuit_Cut 10 -128.6723 +104.52 20 -60.71963982822019 +56.78 11 -128.6723 +104.58383272413657 21 -98.80486017177985 +56.78 6 DASHDOT 67 @@ -12617,13 +12617,13 @@ LINE 8 Circuit_Cut 10 -128.6723 +106.20436727586342 20 -98.80486017177984 +55.49340000000002 11 -126.61486017177985 +106.02 21 -100.8623 +57.56333493521775 6 DASHDOT 67 @@ -12635,13 +12635,13 @@ LINE 8 Circuit_Cut 10 -127.1723 +104.83203272413657 20 -98.18353982822018 +53.99340000000001 11 -125.99353982822021 +104.58383272413657 21 -99.36229999999999 +56.78 6 DASHDOT 67 @@ -12653,13 +12653,13 @@ LINE 8 Circuit_Cut 10 -126.61486017177985 +101.98 20 -100.8623 +56.78 11 -121.01153982822017 +101.98 21 -100.86229999999999 +58.28 6 DASHDOT 67 @@ -12671,13 +12671,13 @@ LINE 8 Circuit_Cut 10 -125.99353982822021 +101.98 20 -99.3623 +58.28 11 -121.63286017177981 +103.48 21 -99.36229999999999 +58.28 6 DASHDOT 67 @@ -12689,13 +12689,13 @@ LINE 8 Circuit_Cut 10 -121.01153982822017 +103.48 20 -100.8623 +58.28 11 -119.33 +103.48 21 -99.18076017177982 +56.78 6 DASHDOT 67 @@ -12707,13 +12707,13 @@ LINE 8 Circuit_Cut 10 -121.63286017177981 +101.98 20 -99.3623 +56.78 11 -120.83 +101.98 21 -98.55943982822019 +53.68103982822017 6 DASHDOT 67 @@ -12725,13 +12725,13 @@ LINE 8 Circuit_Cut 10 -119.33 +103.48 20 -98.1 +56.78 11 -119.33 +103.48 21 -96.6 +54.30236017177982 6 DASHDOT 67 @@ -12743,13 +12743,13 @@ LINE 8 Circuit_Cut 10 -119.33 +103.48000000000002 20 -96.6 +54.302360171779824 11 -120.83 +104.81376017177982 21 -96.6 +52.968600000000016 6 DASHDOT 67 @@ -12761,13 +12761,13 @@ LINE 8 Circuit_Cut 10 -120.83 +101.97999999999999 20 -96.6 +53.68103982822018 11 -120.83 +104.19243982822017 21 -98.1 +51.4686 6 DASHDOT 67 @@ -12779,13 +12779,13 @@ LINE 8 Circuit_Cut 10 -119.33 +104.81376017177982 20 -99.18076017177984 +52.96860000000001 11 -119.33 +122.44653982822017 21 -98.1 +52.9686 6 DASHDOT 67 @@ -12797,13 +12797,13 @@ LINE 8 Circuit_Cut 10 -120.83 +104.19243982822017 20 -98.55943982822019 +51.46860000000001 11 -120.83 +123.06786017177981 21 -98.1 +51.4686 6 DASHDOT 67 @@ -12815,13 +12815,13 @@ LINE 8 Circuit_Cut 10 -116.79 +122.44653982822017 20 -98.1 +52.96859999999997 11 -116.79 +129.7311 21 -96.6 +60.25316017177982 6 DASHDOT 67 @@ -12833,13 +12833,13 @@ LINE 8 Circuit_Cut 10 -116.79 +123.06786017177981 20 -96.6 +51.468599999999974 11 -118.29 +131.2311 21 -96.6 +59.63183982822018 6 DASHDOT 67 @@ -12851,13 +12851,13 @@ LINE 8 Circuit_Cut 10 -118.29 +129.7311 20 -96.6 +60.253160171779825 11 -118.29 +129.7311 21 -98.1 +99.21663982822017 6 DASHDOT 67 @@ -12869,13 +12869,13 @@ LINE 8 Circuit_Cut 10 -116.79 +131.2311 20 -98.1 +59.63183982822018 11 -116.79 +131.2311 21 -100.21776017177982 +99.8379601717798 6 DASHDOT 67 @@ -12887,13 +12887,13 @@ LINE 8 Circuit_Cut 10 -118.29 +131.2311 20 -98.1 +99.8379601717798 11 -118.29 +127.60466017177983 21 -99.59643982822018 +103.46440000000001 6 DASHDOT 67 @@ -12905,13 +12905,13 @@ LINE 8 Circuit_Cut 10 -116.79000000000002 +129.7311 20 -100.21776017177982 +99.21663982822017 11 -120.01483982822018 +126.98333982822018 21 -103.44259999999998 +101.9644 6 DASHDOT 67 @@ -12923,13 +12923,13 @@ LINE 8 Circuit_Cut 10 -118.29000000000002 +127.6046601717798 20 -99.59643982822017 +103.46439999999998 11 -120.63616017177982 +120.01343982822019 21 -101.94259999999998 +103.46439999999998 6 DASHDOT 67 @@ -12941,13 +12941,13 @@ LINE 8 Circuit_Cut 10 -120.01483982822018 +126.98333982822015 20 -103.44259999999998 +101.96439999999998 11 -127.57016017177982 +120.63476017177983 21 -103.4426 +101.96439999999998 6 DASHDOT 67 @@ -12959,13 +12959,13 @@ LINE 8 Circuit_Cut 10 -120.63616017177982 +120.01343982822019 20 -101.94259999999998 +103.46439999999997 11 -126.94883982822017 +116.79000000000003 21 -101.9426 +100.24096017177983 6 DASHDOT 67 @@ -12977,13 +12977,13 @@ LINE 8 Circuit_Cut 10 -127.57016017177982 +120.63476017177983 20 -103.44259999999998 +101.96439999999996 11 -131.20270000000002 +118.28999999999999 21 -99.81006017177977 +99.61963982822017 6 DASHDOT 67 @@ -12995,175 +12995,13 @@ LINE 8 Circuit_Cut 10 -126.94883982822017 - 20 -101.94259999999998 - 11 -129.7027 - 21 -99.18873982822014 - 6 -DASHDOT - 67 -0 - 0 -LINE - 5 -4B6 - 8 -Circuit_Cut - 10 -129.7027 - 20 -99.18873982822012 - 11 -129.7027 - 21 -60.32246017177982 - 6 -DASHDOT - 67 -0 - 0 -LINE - 5 -4B7 - 8 -Circuit_Cut - 10 -131.2027 - 20 -99.81006017177975 - 11 -131.2027 - 21 -59.70113982822018 - 6 -DASHDOT - 67 -0 - 0 -LINE - 5 -4B8 - 8 -Circuit_Cut - 10 -129.7027 - 20 -60.322460171779824 - 11 -122.31943982822018 - 21 -52.9392 - 6 -DASHDOT - 67 -0 - 0 -LINE - 5 -4B9 - 8 -Circuit_Cut - 10 -131.2027 - 20 -59.70113982822018 - 11 -122.94076017177983 - 21 -51.439200000000014 - 6 -DASHDOT - 67 -0 - 0 -LINE - 5 -4BA - 8 -Circuit_Cut - 10 -122.31943982822018 - 20 -52.9392 - 11 -105.84306017177983 - 21 -52.93919999999999 - 6 -DASHDOT - 67 -0 - 0 -LINE - 5 -4BB - 8 -Circuit_Cut - 10 -122.94076017177983 - 20 -51.4392 - 11 -105.22173982822018 - 21 -51.43919999999999 - 6 -DASHDOT - 67 -0 - 0 -LINE - 5 -4BC - 8 -Circuit_Cut - 10 -105.84306017177983 - 20 -52.9392 - 11 -103.48000000000002 - 21 -55.3022601717798 - 6 -DASHDOT - 67 -0 - 0 -LINE - 5 -4BD - 8 -Circuit_Cut - 10 -105.22173982822018 - 20 -51.43919999999999 - 11 -101.98 - 21 -54.68093982822016 - 6 -DASHDOT - 67 -0 - 0 -LINE - 5 -4BE - 8 -Circuit_Cut - 10 -101.98 +116.79 20 -56.78 +98.1 11 -101.98 +116.79 21 -58.28 +96.6 6 DASHDOT 67 @@ -13171,17 +13009,17 @@ DASHDOT 0 LINE 5 -4BF +4B6 8 Circuit_Cut 10 -101.98 +116.79 20 -58.28 +96.6 11 -103.48 +118.29 21 -58.28 +96.6 6 DASHDOT 67 @@ -13189,17 +13027,17 @@ DASHDOT 0 LINE 5 -4C0 +4B7 8 Circuit_Cut 10 -103.48 +118.29 20 -58.28 +96.6 11 -103.48 +118.29 21 -56.78 +98.1 6 DASHDOT 67 @@ -13207,17 +13045,17 @@ DASHDOT 0 LINE 5 -4C1 +4B8 8 Circuit_Cut 10 -101.98 +116.79 20 -54.68093982822016 +100.24096017177982 11 -101.98 +116.79 21 -56.78 +98.1 6 DASHDOT 67 @@ -13225,17 +13063,17 @@ DASHDOT 0 LINE 5 -4C2 +4B9 8 Circuit_Cut 10 -103.48 +118.29 20 -55.3022601717798 +99.61963982822019 11 -103.48 +118.29 21 -56.78 +98.1 6 DASHDOT 67 @@ -13243,7 +13081,7 @@ DASHDOT 0 LINE 5 -4C3 +4BA 8 Circuit_Cut 10 @@ -13261,7 +13099,7 @@ DASHDOT 0 LINE 5 -4C4 +4BB 8 Circuit_Cut 10 @@ -13279,17 +13117,17 @@ DASHDOT 0 LINE 5 -4C5 +4BC 8 Circuit_Cut 10 86.0 20 -78.84 +80.84 11 86.25 21 -79.09 +80.59 6 DASHDOT 67 @@ -13297,17 +13135,17 @@ DASHDOT 0 LINE 5 -4C6 +4BD 8 Circuit_Cut 10 -121.62 +88.54 20 -98.35 +78.84 11 -121.87 +88.79 21 -98.1 +79.09 6 DASHDOT 67 @@ -13315,7 +13153,7 @@ DASHDOT 0 LINE 5 -4C7 +4BE 8 Circuit_Cut 10 @@ -13333,17 +13171,17 @@ DASHDOT 0 LINE 5 -4C8 +4BF 8 Circuit_Cut 10 -71.0 +121.62 20 -41.27 +98.35 11 -71.25 +121.87 21 -41.52 +98.1 6 DASHDOT 67 @@ -13351,15 +13189,15 @@ DASHDOT 0 LINE 5 -4C9 +4C0 8 Circuit_Cut 10 -88.54 +85.46 20 80.84 11 -88.79 +85.21 21 80.59 6 @@ -13369,17 +13207,17 @@ DASHDOT 0 LINE 5 -4CA +4C1 8 Circuit_Cut 10 -73.0 +71.0 20 -39.46 +41.27 11 -72.75 +71.25 21 -39.21 +41.52 6 DASHDOT 67 @@ -13387,17 +13225,17 @@ DASHDOT 0 LINE 5 -4CB +4C2 8 Circuit_Cut 10 -66.0 +73.0 20 -40.73 +39.46 11 -66.25 +72.75 21 -40.48 +39.21 6 DASHDOT 67 @@ -13405,17 +13243,17 @@ DASHDOT 0 LINE 5 -4CC +4C3 8 Circuit_Cut 10 -104.27 +66.0 20 -58.53 +40.73 11 -104.52 +66.25 21 -58.28 +40.48 6 DASHDOT 67 @@ -13423,7 +13261,7 @@ DASHDOT 0 LINE 5 -4CD +4C4 8 Circuit_Cut 10 @@ -13441,17 +13279,17 @@ DASHDOT 0 LINE 5 -4CE +4C5 8 Circuit_Cut 10 -116.54 +104.27 20 -96.35 +58.53 11 -116.79 +104.52 21 -96.6 +58.28 6 DASHDOT 67 @@ -13459,7 +13297,7 @@ DASHDOT 0 LINE 5 -4CF +4C6 8 Circuit_Cut 10 @@ -13477,7 +13315,25 @@ DASHDOT 0 LINE 5 -4D0 +4C7 + 8 +Circuit_Cut + 10 +116.54 + 20 +96.35 + 11 +116.79 + 21 +96.6 + 6 +DASHDOT + 67 +0 + 0 +LINE + 5 +4C8 8 Circuit_Cut 10 @@ -13495,7 +13351,7 @@ DASHDOT 0 LINE 5 -4D1 +4C9 8 Circuit_Cut 10 @@ -13513,7 +13369,7 @@ DASHDOT 0 LINE 5 -4D2 +4CA 8 Circuit_Cut 10 @@ -13531,7 +13387,7 @@ DASHDOT 0 LINE 5 -4D3 +4CB 8 Circuit_Cut 10 @@ -13549,7 +13405,7 @@ DASHDOT 0 LINE 5 -4D4 +4CC 8 Circuit_Etc 10 @@ -13567,7 +13423,7 @@ DASHDOT 0 LINE 5 -4D5 +4CD 8 Circuit_Etc 10 @@ -13585,7 +13441,7 @@ DASHDOT 0 LINE 5 -4D6 +4CE 8 Circuit_Etc 10 @@ -13603,7 +13459,7 @@ DASHDOT 0 LINE 5 -4D7 +4CF 8 Circuit_Etc 10 @@ -13621,7 +13477,7 @@ DASHDOT 0 LINE 5 -4D8 +4D0 8 Circuit_Cut 10 @@ -13639,7 +13495,7 @@ DASHDOT 0 LINE 5 -4D9 +4D1 8 Circuit_Cut 10 @@ -13657,7 +13513,7 @@ DASHDOT 0 LINE 5 -4DA +4D2 8 Circuit_Cut 10 @@ -13675,7 +13531,7 @@ DASHDOT 0 LINE 5 -4DB +4D3 8 Circuit_Cut 10 @@ -13693,7 +13549,7 @@ DASHDOT 0 LINE 5 -4DC +4D4 8 Circuit_Cut 10 @@ -13711,7 +13567,7 @@ DASHDOT 0 LINE 5 -4DD +4D5 8 Circuit_Cut 10 @@ -13729,7 +13585,7 @@ DASHDOT 0 LINE 5 -4DE +4D6 8 Circuit_Cut 10 @@ -13747,7 +13603,7 @@ DASHDOT 0 LINE 5 -4DF +4D7 8 Circuit_Cut 10 @@ -13765,7 +13621,7 @@ DASHDOT 0 LINE 5 -4E0 +4D8 8 Circuit_Cut 10 @@ -13783,7 +13639,7 @@ DASHDOT 0 LINE 5 -4E1 +4D9 8 Circuit_Cut 10 @@ -13801,7 +13657,7 @@ DASHDOT 0 LINE 5 -4E2 +4DA 8 Circuit_Etc 10 @@ -13819,7 +13675,7 @@ DASHDOT 0 LINE 5 -4E3 +4DB 8 Circuit_Etc 10 @@ -13837,7 +13693,7 @@ DASHDOT 0 LINE 5 -4E4 +4DC 8 Circuit_Etc 10 @@ -13855,7 +13711,7 @@ DASHDOT 0 LINE 5 -4E5 +4DD 8 Circuit_Etc 10 @@ -13873,7 +13729,7 @@ DASHDOT 0 LINE 5 -4E6 +4DE 8 Circuit_Cut 10 @@ -13891,7 +13747,7 @@ DASHDOT 0 LINE 5 -4E7 +4DF 8 Circuit_Cut 10 @@ -13909,7 +13765,7 @@ DASHDOT 0 LINE 5 -4E8 +4E0 8 Circuit_Cut 10 @@ -13927,7 +13783,7 @@ DASHDOT 0 LINE 5 -4E9 +4E1 8 Circuit_Cut 10 @@ -13945,7 +13801,7 @@ DASHDOT 0 LINE 5 -4EA +4E2 8 Circuit_Cut 10 @@ -13963,7 +13819,7 @@ DASHDOT 0 LINE 5 -4EB +4E3 8 Circuit_Cut 10 @@ -13981,7 +13837,7 @@ DASHDOT 0 LINE 5 -4EC +4E4 8 Circuit_Cut 10 @@ -13999,7 +13855,7 @@ DASHDOT 0 LINE 5 -4ED +4E5 8 Circuit_Cut 10 @@ -14017,7 +13873,7 @@ DASHDOT 0 LINE 5 -4EE +4E6 8 Circuit_Cut 10 @@ -14035,7 +13891,7 @@ DASHDOT 0 LINE 5 -4EF +4E7 8 Circuit_Cut 10 @@ -14053,7 +13909,7 @@ DASHDOT 0 LINE 5 -4F0 +4E8 8 Circuit_Etc 10 @@ -14071,7 +13927,7 @@ DASHDOT 0 LINE 5 -4F1 +4E9 8 Circuit_Etc 10 @@ -14089,7 +13945,7 @@ DASHDOT 0 LINE 5 -4F2 +4EA 8 Circuit_Etc 10 @@ -14107,7 +13963,7 @@ DASHDOT 0 LINE 5 -4F3 +4EB 8 Circuit_Etc 10 @@ -14125,7 +13981,7 @@ DASHDOT 0 LINE 5 -4F4 +4EC 8 Circuit_Cut 10 @@ -14143,7 +13999,7 @@ DASHDOT 0 LINE 5 -4F5 +4ED 8 Circuit_Cut 10 @@ -14161,7 +14017,7 @@ DASHDOT 0 LINE 5 -4F6 +4EE 8 Circuit_Cut 10 @@ -14179,7 +14035,7 @@ DASHDOT 0 LINE 5 -4F7 +4EF 8 Circuit_Cut 10 @@ -14197,7 +14053,7 @@ DASHDOT 0 LINE 5 -4F8 +4F0 8 Circuit_Cut 10 @@ -14215,7 +14071,7 @@ DASHDOT 0 LINE 5 -4F9 +4F1 8 Circuit_Cut 10 @@ -14233,7 +14089,7 @@ DASHDOT 0 LINE 5 -4FA +4F2 8 Circuit_Cut 10 @@ -14251,7 +14107,7 @@ DASHDOT 0 LINE 5 -4FB +4F3 8 Circuit_Cut 10 @@ -14269,7 +14125,7 @@ DASHDOT 0 LINE 5 -4FC +4F4 8 Circuit_Cut 10 @@ -14287,7 +14143,7 @@ DASHDOT 0 LINE 5 -4FD +4F5 8 Circuit_Cut 10 @@ -14305,7 +14161,7 @@ DASHDOT 0 LINE 5 -4FE +4F6 8 Circuit_Etc 10 @@ -14323,7 +14179,7 @@ DASHDOT 0 LINE 5 -4FF +4F7 8 Circuit_Etc 10 @@ -14341,7 +14197,7 @@ DASHDOT 0 LINE 5 -500 +4F8 8 Circuit_Etc 10 @@ -14359,7 +14215,7 @@ DASHDOT 0 LINE 5 -501 +4F9 8 Circuit_Etc 10 @@ -14377,7 +14233,7 @@ DASHDOT 0 LINE 5 -502 +4FA 8 Circuit_Cut 10 @@ -14395,7 +14251,7 @@ DASHDOT 0 LINE 5 -503 +4FB 8 Circuit_Cut 10 @@ -14413,7 +14269,7 @@ DASHDOT 0 LINE 5 -504 +4FC 8 Circuit_Cut 10 @@ -14431,7 +14287,7 @@ DASHDOT 0 LINE 5 -505 +4FD 8 Circuit_Cut 10 @@ -14449,7 +14305,7 @@ DASHDOT 0 LINE 5 -506 +4FE 8 Circuit_Cut 10 @@ -14467,7 +14323,7 @@ DASHDOT 0 LINE 5 -507 +4FF 8 Circuit_Cut 10 @@ -14485,7 +14341,7 @@ DASHDOT 0 LINE 5 -508 +500 8 Circuit_Cut 10 @@ -14503,7 +14359,7 @@ DASHDOT 0 LINE 5 -509 +501 8 Circuit_Cut 10 @@ -14521,7 +14377,7 @@ DASHDOT 0 LINE 5 -50A +502 8 Circuit_Cut 10 @@ -14539,7 +14395,7 @@ DASHDOT 0 LINE 5 -50B +503 8 Circuit_Cut 10 @@ -14557,7 +14413,7 @@ DASHDOT 0 LINE 5 -50C +504 8 Circuit_Etc 10 @@ -14575,7 +14431,7 @@ DASHDOT 0 LINE 5 -50D +505 8 Circuit_Etc 10 @@ -14593,7 +14449,7 @@ DASHDOT 0 LINE 5 -50E +506 8 Circuit_Etc 10 @@ -14611,7 +14467,7 @@ DASHDOT 0 LINE 5 -50F +507 8 Circuit_Etc 10 @@ -14629,7 +14485,7 @@ DASHDOT 0 LINE 5 -510 +508 8 Circuit_Cut 10 @@ -14647,7 +14503,7 @@ DASHDOT 0 LINE 5 -511 +509 8 Circuit_Cut 10 @@ -14665,7 +14521,7 @@ DASHDOT 0 LINE 5 -512 +50A 8 Circuit_Cut 10 @@ -14683,7 +14539,7 @@ DASHDOT 0 LINE 5 -513 +50B 8 Circuit_Cut 10 @@ -14701,7 +14557,7 @@ DASHDOT 0 LINE 5 -514 +50C 8 Circuit_Cut 10 @@ -14719,7 +14575,7 @@ DASHDOT 0 LINE 5 -515 +50D 8 Circuit_Cut 10 @@ -14737,7 +14593,7 @@ DASHDOT 0 LINE 5 -516 +50E 8 Circuit_Cut 10 @@ -14755,7 +14611,7 @@ DASHDOT 0 LINE 5 -517 +50F 8 Circuit_Cut 10 @@ -14773,7 +14629,7 @@ DASHDOT 0 LINE 5 -518 +510 8 Circuit_Cut 10 @@ -14791,7 +14647,7 @@ DASHDOT 0 LINE 5 -519 +511 8 Circuit_Cut 10 @@ -14809,7 +14665,7 @@ DASHDOT 0 LINE 5 -51A +512 8 Circuit_Etc 10 @@ -14827,7 +14683,7 @@ DASHDOT 0 LINE 5 -51B +513 8 Circuit_Etc 10 @@ -14845,7 +14701,7 @@ DASHDOT 0 LINE 5 -51C +514 8 Circuit_Etc 10 @@ -14863,7 +14719,7 @@ DASHDOT 0 LINE 5 -51D +515 8 Circuit_Etc 10 @@ -14881,7 +14737,7 @@ DASHDOT 0 LINE 5 -51E +516 8 Circuit_Cut 10 @@ -14899,7 +14755,7 @@ DASHDOT 0 LINE 5 -51F +517 8 Circuit_Cut 10 @@ -14917,7 +14773,7 @@ DASHDOT 0 LINE 5 -520 +518 8 Circuit_Cut 10 @@ -14935,7 +14791,7 @@ DASHDOT 0 LINE 5 -521 +519 8 Circuit_Cut 10 @@ -14953,7 +14809,7 @@ DASHDOT 0 LINE 5 -522 +51A 8 Circuit_Cut 10 @@ -14971,7 +14827,7 @@ DASHDOT 0 LINE 5 -523 +51B 8 Circuit_Cut 10 @@ -14989,7 +14845,7 @@ DASHDOT 0 LINE 5 -524 +51C 8 Circuit_Cut 10 @@ -15007,7 +14863,7 @@ DASHDOT 0 LINE 5 -525 +51D 8 Circuit_Cut 10 @@ -15025,7 +14881,7 @@ DASHDOT 0 LINE 5 -526 +51E 8 Circuit_Cut 10 @@ -15043,7 +14899,7 @@ DASHDOT 0 LINE 5 -527 +51F 8 Circuit_Cut 10 @@ -15061,7 +14917,7 @@ DASHDOT 0 LINE 5 -528 +520 8 Circuit_Etc 10 @@ -15079,7 +14935,7 @@ DASHDOT 0 LINE 5 -529 +521 8 Circuit_Etc 10 @@ -15097,7 +14953,7 @@ DASHDOT 0 LINE 5 -52A +522 8 Circuit_Etc 10 @@ -15115,7 +14971,7 @@ DASHDOT 0 LINE 5 -52B +523 8 Circuit_Etc 10 @@ -15133,7 +14989,7 @@ DASHDOT 0 LINE 5 -52C +524 8 Circuit_Cut 10 @@ -15151,7 +15007,7 @@ DASHDOT 0 LINE 5 -52D +525 8 Circuit_Cut 10 @@ -15169,7 +15025,7 @@ DASHDOT 0 LINE 5 -52E +526 8 Circuit_Cut 10 @@ -15187,7 +15043,7 @@ DASHDOT 0 LINE 5 -52F +527 8 Circuit_Cut 10 @@ -15205,7 +15061,7 @@ DASHDOT 0 LINE 5 -530 +528 8 Circuit_Cut 10 @@ -15223,7 +15079,7 @@ DASHDOT 0 LINE 5 -531 +529 8 Circuit_Cut 10 @@ -15241,7 +15097,7 @@ DASHDOT 0 LINE 5 -532 +52A 8 Circuit_Cut 10 @@ -15259,7 +15115,7 @@ DASHDOT 0 LINE 5 -533 +52B 8 Circuit_Cut 10 @@ -15277,7 +15133,7 @@ DASHDOT 0 LINE 5 -534 +52C 8 Circuit_Cut 10 @@ -15295,7 +15151,7 @@ DASHDOT 0 LINE 5 -535 +52D 8 Circuit_Cut 10 @@ -15313,7 +15169,7 @@ DASHDOT 0 LINE 5 -536 +52E 8 Circuit_Etc 10 @@ -15331,7 +15187,7 @@ DASHDOT 0 LINE 5 -537 +52F 8 Circuit_Etc 10 @@ -15349,7 +15205,7 @@ DASHDOT 0 LINE 5 -538 +530 8 Circuit_Etc 10 @@ -15367,7 +15223,7 @@ DASHDOT 0 LINE 5 -539 +531 8 Circuit_Etc 10 @@ -15385,7 +15241,7 @@ DASHDOT 0 LINE 5 -53A +532 8 Circuit_Cut 10 @@ -15403,7 +15259,7 @@ DASHDOT 0 LINE 5 -53B +533 8 Circuit_Cut 10 @@ -15421,7 +15277,7 @@ DASHDOT 0 LINE 5 -53C +534 8 Circuit_Cut 10 @@ -15439,7 +15295,7 @@ DASHDOT 0 LINE 5 -53D +535 8 Circuit_Cut 10 @@ -15457,7 +15313,7 @@ DASHDOT 0 LINE 5 -53E +536 8 Circuit_Cut 10 @@ -15475,7 +15331,7 @@ DASHDOT 0 LINE 5 -53F +537 8 Circuit_Cut 10 @@ -15493,7 +15349,7 @@ DASHDOT 0 LINE 5 -540 +538 8 Circuit_Cut 10 @@ -15511,7 +15367,7 @@ DASHDOT 0 LINE 5 -541 +539 8 Circuit_Cut 10 @@ -15529,7 +15385,7 @@ DASHDOT 0 LINE 5 -542 +53A 8 Circuit_Cut 10 @@ -15547,7 +15403,7 @@ DASHDOT 0 LINE 5 -543 +53B 8 Circuit_Cut 10 @@ -15565,7 +15421,7 @@ DASHDOT 0 LINE 5 -544 +53C 8 Circuit_Etc 10 @@ -15583,7 +15439,7 @@ DASHDOT 0 LINE 5 -545 +53D 8 Circuit_Etc 10 @@ -15601,7 +15457,7 @@ DASHDOT 0 LINE 5 -546 +53E 8 Circuit_Etc 10 @@ -15619,7 +15475,7 @@ DASHDOT 0 LINE 5 -547 +53F 8 Circuit_Etc 10 @@ -15637,7 +15493,7 @@ DASHDOT 0 LINE 5 -548 +540 8 Circuit_Cut 10 @@ -15655,7 +15511,7 @@ DASHDOT 0 LINE 5 -549 +541 8 Circuit_Cut 10 @@ -15673,7 +15529,7 @@ DASHDOT 0 LINE 5 -54A +542 8 Circuit_Cut 10 @@ -15691,7 +15547,7 @@ DASHDOT 0 LINE 5 -54B +543 8 Circuit_Cut 10 @@ -15709,7 +15565,7 @@ DASHDOT 0 LINE 5 -54C +544 8 Circuit_Cut 10 @@ -15727,7 +15583,7 @@ DASHDOT 0 LINE 5 -54D +545 8 Circuit_Cut 10 @@ -15745,7 +15601,7 @@ DASHDOT 0 LINE 5 -54E +546 8 Circuit_Cut 10 @@ -15763,7 +15619,7 @@ DASHDOT 0 LINE 5 -54F +547 8 Circuit_Cut 10 @@ -15781,7 +15637,7 @@ DASHDOT 0 LINE 5 -550 +548 8 Circuit_Cut 10 @@ -15799,7 +15655,7 @@ DASHDOT 0 LINE 5 -551 +549 8 Circuit_Cut 10 @@ -15817,7 +15673,7 @@ DASHDOT 0 LINE 5 -552 +54A 8 Circuit_Etc 10 @@ -15835,7 +15691,7 @@ DASHDOT 0 LINE 5 -553 +54B 8 Circuit_Etc 10 @@ -15853,7 +15709,7 @@ DASHDOT 0 LINE 5 -554 +54C 8 Circuit_Etc 10 @@ -15871,7 +15727,7 @@ DASHDOT 0 LINE 5 -555 +54D 8 Circuit_Etc 10 @@ -15889,7 +15745,7 @@ DASHDOT 0 LINE 5 -556 +54E 8 Circuit_Cut 10 @@ -15907,7 +15763,7 @@ DASHDOT 0 LINE 5 -557 +54F 8 Circuit_Cut 10 @@ -15925,7 +15781,7 @@ DASHDOT 0 LINE 5 -558 +550 8 Circuit_Cut 10 @@ -15943,7 +15799,7 @@ DASHDOT 0 LINE 5 -559 +551 8 Circuit_Cut 10 @@ -15961,7 +15817,7 @@ DASHDOT 0 LINE 5 -55A +552 8 Circuit_Cut 10 @@ -15979,7 +15835,7 @@ DASHDOT 0 LINE 5 -55B +553 8 Circuit_Cut 10 @@ -15997,7 +15853,7 @@ DASHDOT 0 LINE 5 -55C +554 8 Circuit_Cut 10 @@ -16015,7 +15871,7 @@ DASHDOT 0 LINE 5 -55D +555 8 Circuit_Cut 10 @@ -16033,7 +15889,7 @@ DASHDOT 0 LINE 5 -55E +556 8 Circuit_Cut 10 @@ -16051,7 +15907,7 @@ DASHDOT 0 LINE 5 -55F +557 8 Circuit_Cut 10 @@ -16069,7 +15925,7 @@ DASHDOT 0 LINE 5 -560 +558 8 Circuit_Etc 10 @@ -16087,7 +15943,7 @@ DASHDOT 0 LINE 5 -561 +559 8 Circuit_Etc 10 @@ -16105,7 +15961,7 @@ DASHDOT 0 LINE 5 -562 +55A 8 Circuit_Etc 10 @@ -16123,7 +15979,7 @@ DASHDOT 0 LINE 5 -563 +55B 8 Circuit_Etc 10 @@ -16141,7 +15997,7 @@ DASHDOT 0 LINE 5 -564 +55C 8 Circuit_Cut 10 @@ -16159,7 +16015,7 @@ DASHDOT 0 LINE 5 -565 +55D 8 Circuit_Cut 10 @@ -16177,7 +16033,7 @@ DASHDOT 0 LINE 5 -566 +55E 8 Circuit_Cut 10 @@ -16195,7 +16051,7 @@ DASHDOT 0 LINE 5 -567 +55F 8 Circuit_Cut 10 @@ -16213,7 +16069,7 @@ DASHDOT 0 LINE 5 -568 +560 8 Circuit_Cut 10 @@ -16231,7 +16087,7 @@ DASHDOT 0 LINE 5 -569 +561 8 Circuit_Cut 10 @@ -16249,7 +16105,7 @@ DASHDOT 0 LINE 5 -56A +562 8 Circuit_Cut 10 @@ -16267,7 +16123,7 @@ DASHDOT 0 LINE 5 -56B +563 8 Circuit_Cut 10 @@ -16285,7 +16141,7 @@ DASHDOT 0 LINE 5 -56C +564 8 Circuit_Cut 10 @@ -16303,7 +16159,7 @@ DASHDOT 0 LINE 5 -56D +565 8 Circuit_Cut 10 @@ -16321,7 +16177,7 @@ DASHDOT 0 LINE 5 -56E +566 8 Circuit_Etc 10 @@ -16339,7 +16195,7 @@ DASHDOT 0 LINE 5 -56F +567 8 Circuit_Etc 10 @@ -16357,7 +16213,7 @@ DASHDOT 0 LINE 5 -570 +568 8 Circuit_Etc 10 @@ -16375,7 +16231,7 @@ DASHDOT 0 LINE 5 -571 +569 8 Circuit_Etc 10 @@ -16393,7 +16249,7 @@ DASHDOT 0 LINE 5 -572 +56A 8 Circuit_Cut 10 @@ -16411,7 +16267,7 @@ DASHDOT 0 LINE 5 -573 +56B 8 Circuit_Cut 10 @@ -16429,7 +16285,7 @@ DASHDOT 0 LINE 5 -574 +56C 8 Circuit_Cut 10 @@ -16447,7 +16303,7 @@ DASHDOT 0 LINE 5 -575 +56D 8 Circuit_Cut 10 @@ -16465,7 +16321,7 @@ DASHDOT 0 LINE 5 -576 +56E 8 Circuit_Cut 10 @@ -16483,7 +16339,7 @@ DASHDOT 0 LINE 5 -577 +56F 8 Circuit_Cut 10 @@ -16501,7 +16357,7 @@ DASHDOT 0 LINE 5 -578 +570 8 Circuit_Cut 10 @@ -16519,7 +16375,7 @@ DASHDOT 0 LINE 5 -579 +571 8 Circuit_Cut 10 @@ -16537,7 +16393,7 @@ DASHDOT 0 LINE 5 -57A +572 8 Circuit_Cut 10 @@ -16555,7 +16411,7 @@ DASHDOT 0 LINE 5 -57B +573 8 Circuit_Cut 10 @@ -16573,7 +16429,7 @@ DASHDOT 0 LINE 5 -57C +574 8 Circuit_Etc 10 @@ -16591,7 +16447,7 @@ DASHDOT 0 LINE 5 -57D +575 8 Circuit_Etc 10 @@ -16609,7 +16465,7 @@ DASHDOT 0 LINE 5 -57E +576 8 Circuit_Etc 10 @@ -16627,7 +16483,7 @@ DASHDOT 0 LINE 5 -57F +577 8 Circuit_Etc 10 @@ -16645,7 +16501,7 @@ DASHDOT 0 LINE 5 -580 +578 8 Circuit_Cut 10 @@ -16663,7 +16519,7 @@ DASHDOT 0 LINE 5 -581 +579 8 Circuit_Cut 10 @@ -16681,7 +16537,7 @@ DASHDOT 0 LINE 5 -582 +57A 8 Circuit_Cut 10 @@ -16699,7 +16555,7 @@ DASHDOT 0 LINE 5 -583 +57B 8 Circuit_Cut 10 @@ -16717,7 +16573,7 @@ DASHDOT 0 LINE 5 -584 +57C 8 Circuit_Cut 10 @@ -16735,7 +16591,7 @@ DASHDOT 0 LINE 5 -585 +57D 8 Circuit_Cut 10 @@ -16753,7 +16609,7 @@ DASHDOT 0 LINE 5 -586 +57E 8 Circuit_Cut 10 @@ -16771,7 +16627,7 @@ DASHDOT 0 LINE 5 -587 +57F 8 Circuit_Cut 10 @@ -16789,7 +16645,7 @@ DASHDOT 0 LINE 5 -588 +580 8 Circuit_Cut 10 @@ -16807,7 +16663,7 @@ DASHDOT 0 LINE 5 -589 +581 8 Circuit_Cut 10 @@ -16825,7 +16681,7 @@ DASHDOT 0 LINE 5 -58A +582 8 Circuit_Etc 10 @@ -16843,7 +16699,7 @@ DASHDOT 0 LINE 5 -58B +583 8 Circuit_Etc 10 @@ -16861,7 +16717,7 @@ DASHDOT 0 LINE 5 -58C +584 8 Circuit_Etc 10 @@ -16879,7 +16735,7 @@ DASHDOT 0 LINE 5 -58D +585 8 Circuit_Etc 10 @@ -16897,7 +16753,7 @@ DASHDOT 0 LINE 5 -58E +586 8 Circuit_Cut 10 @@ -16915,7 +16771,7 @@ DASHDOT 0 LINE 5 -58F +587 8 Circuit_Cut 10 @@ -16933,7 +16789,7 @@ DASHDOT 0 LINE 5 -590 +588 8 Circuit_Cut 10 @@ -16951,7 +16807,7 @@ DASHDOT 0 LINE 5 -591 +589 8 Circuit_Cut 10 @@ -16969,7 +16825,7 @@ DASHDOT 0 LINE 5 -592 +58A 8 Circuit_Cut 10 @@ -16987,7 +16843,7 @@ DASHDOT 0 LINE 5 -593 +58B 8 Circuit_Cut 10 @@ -17005,7 +16861,7 @@ DASHDOT 0 LINE 5 -594 +58C 8 Circuit_Cut 10 @@ -17023,7 +16879,7 @@ DASHDOT 0 LINE 5 -595 +58D 8 Circuit_Cut 10 @@ -17041,7 +16897,7 @@ DASHDOT 0 LINE 5 -596 +58E 8 Circuit_Cut 10 @@ -17059,7 +16915,7 @@ DASHDOT 0 LINE 5 -597 +58F 8 Circuit_Cut 10 @@ -17077,7 +16933,7 @@ DASHDOT 0 LINE 5 -598 +590 8 Circuit_Etc 10 @@ -17095,7 +16951,7 @@ DASHDOT 0 LINE 5 -599 +591 8 Circuit_Etc 10 @@ -17113,7 +16969,7 @@ DASHDOT 0 LINE 5 -59A +592 8 Circuit_Etc 10 @@ -17131,7 +16987,7 @@ DASHDOT 0 LINE 5 -59B +593 8 Circuit_Etc 10 @@ -17149,7 +17005,7 @@ DASHDOT 0 LINE 5 -59C +594 8 Circuit_Cut 10 @@ -17167,7 +17023,7 @@ DASHDOT 0 LINE 5 -59D +595 8 Circuit_Cut 10 @@ -17185,7 +17041,7 @@ DASHDOT 0 LINE 5 -59E +596 8 Circuit_Cut 10 @@ -17203,7 +17059,7 @@ DASHDOT 0 LINE 5 -59F +597 8 Circuit_Cut 10 @@ -17221,7 +17077,7 @@ DASHDOT 0 LINE 5 -5A0 +598 8 Circuit_Cut 10 @@ -17239,7 +17095,7 @@ DASHDOT 0 LINE 5 -5A1 +599 8 Circuit_Cut 10 @@ -17257,7 +17113,7 @@ DASHDOT 0 LINE 5 -5A2 +59A 8 Circuit_Cut 10 @@ -17275,7 +17131,7 @@ DASHDOT 0 LINE 5 -5A3 +59B 8 Circuit_Cut 10 @@ -17293,7 +17149,7 @@ DASHDOT 0 LINE 5 -5A4 +59C 8 Circuit_Cut 10 @@ -17311,7 +17167,7 @@ DASHDOT 0 LINE 5 -5A5 +59D 8 Circuit_Cut 10 @@ -17329,7 +17185,7 @@ DASHDOT 0 LINE 5 -5A6 +59E 8 Circuit_Etc 10 @@ -17347,7 +17203,7 @@ DASHDOT 0 LINE 5 -5A7 +59F 8 Circuit_Etc 10 @@ -17365,7 +17221,7 @@ DASHDOT 0 LINE 5 -5A8 +5A0 8 Circuit_Etc 10 @@ -17383,7 +17239,7 @@ DASHDOT 0 LINE 5 -5A9 +5A1 8 Circuit_Etc 10 @@ -17401,7 +17257,7 @@ DASHDOT 0 LINE 5 -5AA +5A2 8 Circuit_Cut 10 @@ -17419,7 +17275,7 @@ DASHDOT 0 LINE 5 -5AB +5A3 8 Circuit_Cut 10 @@ -17437,7 +17293,7 @@ DASHDOT 0 LINE 5 -5AC +5A4 8 Circuit_Cut 10 @@ -17455,7 +17311,7 @@ DASHDOT 0 LINE 5 -5AD +5A5 8 Circuit_Cut 10 @@ -17473,7 +17329,7 @@ DASHDOT 0 LINE 5 -5AE +5A6 8 Circuit_Cut 10 @@ -17491,7 +17347,7 @@ DASHDOT 0 LINE 5 -5AF +5A7 8 Circuit_Cut 10 @@ -17509,7 +17365,7 @@ DASHDOT 0 LINE 5 -5B0 +5A8 8 Circuit_Cut 10 @@ -17527,7 +17383,7 @@ DASHDOT 0 LINE 5 -5B1 +5A9 8 Circuit_Cut 10 @@ -17545,7 +17401,7 @@ DASHDOT 0 LINE 5 -5B2 +5AA 8 Circuit_Cut 10 @@ -17563,7 +17419,7 @@ DASHDOT 0 LINE 5 -5B3 +5AB 8 Circuit_Cut 10 @@ -17581,7 +17437,7 @@ DASHDOT 0 LINE 5 -5B4 +5AC 8 Circuit_Etc 10 @@ -17599,7 +17455,7 @@ DASHDOT 0 LINE 5 -5B5 +5AD 8 Circuit_Etc 10 @@ -17617,7 +17473,7 @@ DASHDOT 0 LINE 5 -5B6 +5AE 8 Circuit_Etc 10 @@ -17635,7 +17491,7 @@ DASHDOT 0 LINE 5 -5B7 +5AF 8 Circuit_Etc 10 @@ -17653,7 +17509,7 @@ DASHDOT 0 LINE 5 -5B8 +5B0 8 Circuit_Cut 10 @@ -17671,7 +17527,7 @@ DASHDOT 0 LINE 5 -5B9 +5B1 8 Circuit_Cut 10 @@ -17689,7 +17545,7 @@ DASHDOT 0 LINE 5 -5BA +5B2 8 Circuit_Cut 10 @@ -17707,7 +17563,7 @@ DASHDOT 0 LINE 5 -5BB +5B3 8 Circuit_Cut 10 @@ -17725,7 +17581,7 @@ DASHDOT 0 LINE 5 -5BC +5B4 8 Circuit_Cut 10 @@ -17743,7 +17599,7 @@ DASHDOT 0 LINE 5 -5BD +5B5 8 Circuit_Cut 10 @@ -17761,7 +17617,7 @@ DASHDOT 0 LINE 5 -5BE +5B6 8 Circuit_Cut 10 @@ -17779,7 +17635,7 @@ DASHDOT 0 LINE 5 -5BF +5B7 8 Circuit_Cut 10 @@ -17797,7 +17653,7 @@ DASHDOT 0 LINE 5 -5C0 +5B8 8 Circuit_Cut 10 @@ -17815,7 +17671,7 @@ DASHDOT 0 LINE 5 -5C1 +5B9 8 Circuit_Cut 10 @@ -17833,7 +17689,7 @@ DASHDOT 0 LINE 5 -5C2 +5BA 8 Circuit_Etc 10 @@ -17851,7 +17707,7 @@ DASHDOT 0 LINE 5 -5C3 +5BB 8 Circuit_Etc 10 @@ -17869,7 +17725,7 @@ DASHDOT 0 LINE 5 -5C4 +5BC 8 Circuit_Etc 10 @@ -17887,7 +17743,7 @@ DASHDOT 0 LINE 5 -5C5 +5BD 8 Circuit_Etc 10 @@ -17905,7 +17761,7 @@ DASHDOT 0 LINE 5 -5C6 +5BE 8 Circuit_Cut 10 @@ -17923,7 +17779,7 @@ DASHDOT 0 LINE 5 -5C7 +5BF 8 Circuit_Cut 10 @@ -17941,7 +17797,7 @@ DASHDOT 0 LINE 5 -5C8 +5C0 8 Circuit_Cut 10 @@ -17959,7 +17815,7 @@ DASHDOT 0 LINE 5 -5C9 +5C1 8 Circuit_Cut 10 @@ -17977,7 +17833,7 @@ DASHDOT 0 LINE 5 -5CA +5C2 8 Circuit_Cut 10 @@ -17995,7 +17851,7 @@ DASHDOT 0 LINE 5 -5CB +5C3 8 Circuit_Cut 10 @@ -18013,7 +17869,7 @@ DASHDOT 0 LINE 5 -5CC +5C4 8 Circuit_Cut 10 @@ -18031,7 +17887,7 @@ DASHDOT 0 LINE 5 -5CD +5C5 8 Circuit_Cut 10 @@ -18049,7 +17905,7 @@ DASHDOT 0 LINE 5 -5CE +5C6 8 Circuit_Cut 10 @@ -18067,7 +17923,7 @@ DASHDOT 0 LINE 5 -5CF +5C7 8 Circuit_Cut 10 @@ -18085,7 +17941,7 @@ DASHDOT 0 LINE 5 -5D0 +5C8 8 Circuit_Etc 10 @@ -18103,7 +17959,7 @@ DASHDOT 0 LINE 5 -5D1 +5C9 8 Circuit_Etc 10 @@ -18121,7 +17977,7 @@ DASHDOT 0 LINE 5 -5D2 +5CA 8 Circuit_Etc 10 @@ -18139,7 +17995,7 @@ DASHDOT 0 LINE 5 -5D3 +5CB 8 Circuit_Etc 10 @@ -18157,7 +18013,7 @@ DASHDOT 0 LINE 5 -5D4 +5CC 8 Circuit_Cut 10 @@ -18175,7 +18031,7 @@ DASHDOT 0 LINE 5 -5D5 +5CD 8 Circuit_Cut 10 @@ -18193,7 +18049,7 @@ DASHDOT 0 LINE 5 -5D6 +5CE 8 Circuit_Cut 10 @@ -18211,7 +18067,7 @@ DASHDOT 0 LINE 5 -5D7 +5CF 8 Circuit_Cut 10 @@ -18229,7 +18085,7 @@ DASHDOT 0 LINE 5 -5D8 +5D0 8 Circuit_Cut 10 @@ -18247,7 +18103,7 @@ DASHDOT 0 LINE 5 -5D9 +5D1 8 Circuit_Cut 10 @@ -18265,7 +18121,7 @@ DASHDOT 0 LINE 5 -5DA +5D2 8 Circuit_Cut 10 @@ -18283,7 +18139,7 @@ DASHDOT 0 LINE 5 -5DB +5D3 8 Circuit_Cut 10 @@ -18301,7 +18157,7 @@ DASHDOT 0 LINE 5 -5DC +5D4 8 Circuit_Cut 10 @@ -18319,7 +18175,7 @@ DASHDOT 0 LINE 5 -5DD +5D5 8 Circuit_Cut 10 @@ -18337,7 +18193,7 @@ DASHDOT 0 LINE 5 -5DE +5D6 8 Circuit_Etc 10 @@ -18355,7 +18211,7 @@ DASHDOT 0 LINE 5 -5DF +5D7 8 Circuit_Etc 10 @@ -18373,7 +18229,7 @@ DASHDOT 0 LINE 5 -5E0 +5D8 8 Circuit_Etc 10 @@ -18391,7 +18247,7 @@ DASHDOT 0 LINE 5 -5E1 +5D9 8 Circuit_Etc 10 @@ -18409,7 +18265,7 @@ DASHDOT 0 LINE 5 -5E2 +5DA 8 Circuit_Cut 10 @@ -18427,7 +18283,7 @@ DASHDOT 0 LINE 5 -5E3 +5DB 8 Circuit_Cut 10 @@ -18445,7 +18301,7 @@ DASHDOT 0 LINE 5 -5E4 +5DC 8 Circuit_Cut 10 @@ -18463,7 +18319,7 @@ DASHDOT 0 LINE 5 -5E5 +5DD 8 Circuit_Cut 10 @@ -18481,7 +18337,7 @@ DASHDOT 0 LINE 5 -5E6 +5DE 8 Circuit_Cut 10 @@ -18499,7 +18355,7 @@ DASHDOT 0 LINE 5 -5E7 +5DF 8 Circuit_Cut 10 @@ -18517,7 +18373,7 @@ DASHDOT 0 LINE 5 -5E8 +5E0 8 Circuit_Cut 10 @@ -18535,7 +18391,7 @@ DASHDOT 0 LINE 5 -5E9 +5E1 8 Circuit_Cut 10 @@ -18553,7 +18409,7 @@ DASHDOT 0 LINE 5 -5EA +5E2 8 Circuit_Cut 10 @@ -18571,7 +18427,7 @@ DASHDOT 0 LINE 5 -5EB +5E3 8 Circuit_Cut 10 @@ -18589,7 +18445,7 @@ DASHDOT 0 LINE 5 -5EC +5E4 8 Circuit_Etc 10 @@ -18607,7 +18463,7 @@ DASHDOT 0 LINE 5 -5ED +5E5 8 Circuit_Etc 10 @@ -18625,7 +18481,7 @@ DASHDOT 0 LINE 5 -5EE +5E6 8 Circuit_Etc 10 @@ -18643,7 +18499,7 @@ DASHDOT 0 LINE 5 -5EF +5E7 8 Circuit_Etc 10 @@ -18661,7 +18517,7 @@ DASHDOT 0 LINE 5 -5F0 +5E8 8 Circuit_Cut 10 @@ -18679,7 +18535,7 @@ DASHDOT 0 LINE 5 -5F1 +5E9 8 Circuit_Cut 10 @@ -18697,7 +18553,7 @@ DASHDOT 0 LINE 5 -5F2 +5EA 8 Circuit_Cut 10 @@ -18715,7 +18571,7 @@ DASHDOT 0 LINE 5 -5F3 +5EB 8 Circuit_Cut 10 @@ -18733,7 +18589,7 @@ DASHDOT 0 LINE 5 -5F4 +5EC 8 Circuit_Cut 10 @@ -18751,7 +18607,7 @@ DASHDOT 0 LINE 5 -5F5 +5ED 8 Circuit_Cut 10 @@ -18769,7 +18625,7 @@ DASHDOT 0 LINE 5 -5F6 +5EE 8 Circuit_Cut 10 @@ -18787,7 +18643,7 @@ DASHDOT 0 LINE 5 -5F7 +5EF 8 Circuit_Cut 10 @@ -18805,7 +18661,7 @@ DASHDOT 0 LINE 5 -5F8 +5F0 8 Circuit_Cut 10 @@ -18823,7 +18679,7 @@ DASHDOT 0 LINE 5 -5F9 +5F1 8 Circuit_Cut 10 @@ -18841,7 +18697,7 @@ DASHDOT 0 LINE 5 -5FA +5F2 8 Circuit_Etc 10 @@ -18859,7 +18715,7 @@ DASHDOT 0 LINE 5 -5FB +5F3 8 Circuit_Etc 10 @@ -18877,7 +18733,7 @@ DASHDOT 0 LINE 5 -5FC +5F4 8 Circuit_Etc 10 @@ -18895,7 +18751,7 @@ DASHDOT 0 LINE 5 -5FD +5F5 8 Circuit_Etc 10 @@ -18913,7 +18769,7 @@ DASHDOT 0 LINE 5 -5FE +5F6 8 Circuit_Cut 10 @@ -18931,7 +18787,7 @@ DASHDOT 0 LINE 5 -5FF +5F7 8 Circuit_Cut 10 @@ -18949,7 +18805,7 @@ DASHDOT 0 LINE 5 -600 +5F8 8 Circuit_Cut 10 @@ -18967,7 +18823,7 @@ DASHDOT 0 LINE 5 -601 +5F9 8 Circuit_Cut 10 @@ -18985,7 +18841,7 @@ DASHDOT 0 LINE 5 -602 +5FA 8 Circuit_Cut 10 @@ -19003,7 +18859,7 @@ DASHDOT 0 LINE 5 -603 +5FB 8 Circuit_Cut 10 @@ -19021,7 +18877,7 @@ DASHDOT 0 LINE 5 -604 +5FC 8 Circuit_Cut 10 @@ -19039,7 +18895,7 @@ DASHDOT 0 LINE 5 -605 +5FD 8 Circuit_Cut 10 @@ -19057,7 +18913,7 @@ DASHDOT 0 LINE 5 -606 +5FE 8 Circuit_Cut 10 @@ -19075,7 +18931,7 @@ DASHDOT 0 LINE 5 -607 +5FF 8 Circuit_Cut 10 @@ -19093,7 +18949,7 @@ DASHDOT 0 LINE 5 -608 +600 8 Circuit_Etc 10 @@ -19111,7 +18967,7 @@ DASHDOT 0 LINE 5 -609 +601 8 Circuit_Etc 10 @@ -19129,7 +18985,7 @@ DASHDOT 0 LINE 5 -60A +602 8 Circuit_Etc 10 @@ -19147,7 +19003,7 @@ DASHDOT 0 LINE 5 -60B +603 8 Circuit_Etc 10 @@ -19165,7 +19021,7 @@ DASHDOT 0 LINE 5 -60C +604 8 Circuit_Cut 10 @@ -19183,7 +19039,7 @@ DASHDOT 0 LINE 5 -60D +605 8 Circuit_Cut 10 @@ -19201,7 +19057,7 @@ DASHDOT 0 LINE 5 -60E +606 8 Circuit_Cut 10 @@ -19219,7 +19075,7 @@ DASHDOT 0 LINE 5 -60F +607 8 Circuit_Cut 10 @@ -19237,7 +19093,7 @@ DASHDOT 0 LINE 5 -610 +608 8 Circuit_Cut 10 @@ -19255,7 +19111,7 @@ DASHDOT 0 LINE 5 -611 +609 8 Circuit_Cut 10 @@ -19273,7 +19129,7 @@ DASHDOT 0 LINE 5 -612 +60A 8 Circuit_Cut 10 @@ -19291,7 +19147,7 @@ DASHDOT 0 LINE 5 -613 +60B 8 Circuit_Cut 10 @@ -19309,7 +19165,7 @@ DASHDOT 0 LINE 5 -614 +60C 8 Circuit_Cut 10 @@ -19327,7 +19183,7 @@ DASHDOT 0 LINE 5 -615 +60D 8 Circuit_Cut 10 @@ -19345,7 +19201,7 @@ DASHDOT 0 LINE 5 -616 +60E 8 Circuit_Etc 10 @@ -19363,7 +19219,7 @@ DASHDOT 0 LINE 5 -617 +60F 8 Circuit_Etc 10 @@ -19381,7 +19237,7 @@ DASHDOT 0 LINE 5 -618 +610 8 Circuit_Etc 10 @@ -19399,7 +19255,7 @@ DASHDOT 0 LINE 5 -619 +611 8 Circuit_Etc 10 @@ -19417,7 +19273,7 @@ DASHDOT 0 LINE 5 -61A +612 8 Circuit_Cut 10 @@ -19435,7 +19291,7 @@ DASHDOT 0 LINE 5 -61B +613 8 Circuit_Cut 10 @@ -19453,7 +19309,7 @@ DASHDOT 0 LINE 5 -61C +614 8 Circuit_Cut 10 @@ -19471,7 +19327,7 @@ DASHDOT 0 LINE 5 -61D +615 8 Circuit_Cut 10 @@ -19489,7 +19345,7 @@ DASHDOT 0 LINE 5 -61E +616 8 Circuit_Cut 10 @@ -19507,7 +19363,7 @@ DASHDOT 0 LINE 5 -61F +617 8 Circuit_Cut 10 @@ -19525,7 +19381,7 @@ DASHDOT 0 LINE 5 -620 +618 8 Circuit_Cut 10 @@ -19543,7 +19399,7 @@ DASHDOT 0 LINE 5 -621 +619 8 Circuit_Cut 10 @@ -19561,7 +19417,7 @@ DASHDOT 0 LINE 5 -622 +61A 8 Circuit_Cut 10 @@ -19579,7 +19435,7 @@ DASHDOT 0 LINE 5 -623 +61B 8 Circuit_Cut 10 @@ -19597,7 +19453,7 @@ DASHDOT 0 LINE 5 -624 +61C 8 Circuit_Etc 10 @@ -19615,7 +19471,7 @@ DASHDOT 0 LINE 5 -625 +61D 8 Circuit_Etc 10 @@ -19633,7 +19489,7 @@ DASHDOT 0 LINE 5 -626 +61E 8 Circuit_Etc 10 @@ -19651,7 +19507,7 @@ DASHDOT 0 LINE 5 -627 +61F 8 Circuit_Etc 10 @@ -19669,7 +19525,7 @@ DASHDOT 0 LINE 5 -628 +620 8 Circuit_Cut 10 @@ -19687,7 +19543,7 @@ DASHDOT 0 LINE 5 -629 +621 8 Circuit_Cut 10 @@ -19705,7 +19561,7 @@ DASHDOT 0 LINE 5 -62A +622 8 Circuit_Cut 10 @@ -19723,7 +19579,7 @@ DASHDOT 0 LINE 5 -62B +623 8 Circuit_Cut 10 @@ -19741,7 +19597,7 @@ DASHDOT 0 LINE 5 -62C +624 8 Circuit_Cut 10 @@ -19759,7 +19615,7 @@ DASHDOT 0 LINE 5 -62D +625 8 Circuit_Cut 10 @@ -19777,7 +19633,7 @@ DASHDOT 0 LINE 5 -62E +626 8 Circuit_Cut 10 @@ -19795,7 +19651,7 @@ DASHDOT 0 LINE 5 -62F +627 8 Circuit_Cut 10 @@ -19813,7 +19669,7 @@ DASHDOT 0 LINE 5 -630 +628 8 Circuit_Cut 10 @@ -19831,7 +19687,7 @@ DASHDOT 0 LINE 5 -631 +629 8 Circuit_Cut 10 @@ -19849,7 +19705,7 @@ DASHDOT 0 LINE 5 -632 +62A 8 Circuit_Etc 10 @@ -19867,7 +19723,7 @@ DASHDOT 0 LINE 5 -633 +62B 8 Circuit_Etc 10 @@ -19885,7 +19741,7 @@ DASHDOT 0 LINE 5 -634 +62C 8 Circuit_Etc 10 @@ -19903,7 +19759,7 @@ DASHDOT 0 LINE 5 -635 +62D 8 Circuit_Etc 10 @@ -19921,7 +19777,7 @@ DASHDOT 0 LINE 5 -636 +62E 8 Circuit_Cut 10 @@ -19939,7 +19795,7 @@ DASHDOT 0 LINE 5 -637 +62F 8 Circuit_Cut 10 @@ -19957,7 +19813,7 @@ DASHDOT 0 LINE 5 -638 +630 8 Circuit_Cut 10 @@ -19975,7 +19831,7 @@ DASHDOT 0 LINE 5 -639 +631 8 Circuit_Cut 10 @@ -19993,7 +19849,7 @@ DASHDOT 0 LINE 5 -63A +632 8 Circuit_Cut 10 @@ -20011,7 +19867,7 @@ DASHDOT 0 LINE 5 -63B +633 8 Circuit_Cut 10 @@ -20029,7 +19885,7 @@ DASHDOT 0 LINE 5 -63C +634 8 Circuit_Cut 10 @@ -20047,7 +19903,7 @@ DASHDOT 0 LINE 5 -63D +635 8 Circuit_Cut 10 @@ -20065,7 +19921,7 @@ DASHDOT 0 LINE 5 -63E +636 8 Circuit_Cut 10 @@ -20083,7 +19939,7 @@ DASHDOT 0 LINE 5 -63F +637 8 Circuit_Cut 10 @@ -20101,7 +19957,7 @@ DASHDOT 0 LINE 5 -640 +638 8 Circuit_Etc 10 @@ -20119,7 +19975,7 @@ DASHDOT 0 LINE 5 -641 +639 8 Circuit_Etc 10 @@ -20137,7 +19993,7 @@ DASHDOT 0 LINE 5 -642 +63A 8 Circuit_Etc 10 @@ -20155,7 +20011,7 @@ DASHDOT 0 LINE 5 -643 +63B 8 Circuit_Etc 10 @@ -20173,7 +20029,7 @@ DASHDOT 0 LINE 5 -644 +63C 8 Circuit_Cut 10 @@ -20191,7 +20047,7 @@ DASHDOT 0 LINE 5 -645 +63D 8 Circuit_Cut 10 @@ -20209,7 +20065,7 @@ DASHDOT 0 LINE 5 -646 +63E 8 Circuit_Cut 10 @@ -20227,7 +20083,7 @@ DASHDOT 0 LINE 5 -647 +63F 8 Circuit_Cut 10 @@ -20245,7 +20101,7 @@ DASHDOT 0 LINE 5 -648 +640 8 Circuit_Cut 10 @@ -20263,7 +20119,7 @@ DASHDOT 0 LINE 5 -649 +641 8 Circuit_Cut 10 @@ -20281,7 +20137,7 @@ DASHDOT 0 LINE 5 -64A +642 8 Circuit_Cut 10 @@ -20299,7 +20155,7 @@ DASHDOT 0 LINE 5 -64B +643 8 Circuit_Cut 10 @@ -20317,7 +20173,7 @@ DASHDOT 0 LINE 5 -64C +644 8 Circuit_Cut 10 @@ -20335,7 +20191,7 @@ DASHDOT 0 LINE 5 -64D +645 8 Circuit_Cut 10 @@ -20353,7 +20209,7 @@ DASHDOT 0 LINE 5 -64E +646 8 Circuit_Etc 10 @@ -20371,7 +20227,7 @@ DASHDOT 0 LINE 5 -64F +647 8 Circuit_Etc 10 @@ -20389,7 +20245,7 @@ DASHDOT 0 LINE 5 -650 +648 8 Circuit_Etc 10 @@ -20407,7 +20263,7 @@ DASHDOT 0 LINE 5 -651 +649 8 Circuit_Etc 10 @@ -20425,7 +20281,7 @@ DASHDOT 0 LINE 5 -652 +64A 8 Circuit_Cut 10 @@ -20443,7 +20299,7 @@ DASHDOT 0 LINE 5 -653 +64B 8 Circuit_Cut 10 @@ -20461,7 +20317,7 @@ DASHDOT 0 LINE 5 -654 +64C 8 Circuit_Cut 10 @@ -20479,7 +20335,7 @@ DASHDOT 0 LINE 5 -655 +64D 8 Circuit_Cut 10 @@ -20497,7 +20353,7 @@ DASHDOT 0 LINE 5 -656 +64E 8 Circuit_Cut 10 @@ -20515,7 +20371,7 @@ DASHDOT 0 LINE 5 -657 +64F 8 Circuit_Cut 10 @@ -20533,7 +20389,7 @@ DASHDOT 0 LINE 5 -658 +650 8 Circuit_Cut 10 @@ -20551,7 +20407,7 @@ DASHDOT 0 LINE 5 -659 +651 8 Circuit_Cut 10 @@ -20569,7 +20425,7 @@ DASHDOT 0 LINE 5 -65A +652 8 Circuit_Cut 10 @@ -20587,7 +20443,7 @@ DASHDOT 0 LINE 5 -65B +653 8 Circuit_Cut 10 @@ -20605,7 +20461,7 @@ DASHDOT 0 LINE 5 -65C +654 8 Circuit_Etc 10 @@ -20623,7 +20479,7 @@ DASHDOT 0 LINE 5 -65D +655 8 Circuit_Etc 10 @@ -20641,7 +20497,7 @@ DASHDOT 0 LINE 5 -65E +656 8 Circuit_Etc 10 @@ -20659,7 +20515,7 @@ DASHDOT 0 LINE 5 -65F +657 8 Circuit_Etc 10 @@ -20677,7 +20533,7 @@ DASHDOT 0 LINE 5 -660 +658 8 Circuit_Cut 10 @@ -20695,7 +20551,7 @@ DASHDOT 0 LINE 5 -661 +659 8 Circuit_Cut 10 @@ -20713,7 +20569,7 @@ DASHDOT 0 LINE 5 -662 +65A 8 Circuit_Cut 10 @@ -20731,7 +20587,7 @@ DASHDOT 0 LINE 5 -663 +65B 8 Circuit_Cut 10 @@ -20749,7 +20605,7 @@ DASHDOT 0 LINE 5 -664 +65C 8 Circuit_Cut 10 @@ -20767,7 +20623,7 @@ DASHDOT 0 LINE 5 -665 +65D 8 Circuit_Cut 10 @@ -20785,7 +20641,7 @@ DASHDOT 0 LINE 5 -666 +65E 8 Circuit_Cut 10 @@ -20803,7 +20659,7 @@ DASHDOT 0 LINE 5 -667 +65F 8 Circuit_Cut 10 @@ -20821,7 +20677,7 @@ DASHDOT 0 LINE 5 -668 +660 8 Circuit_Cut 10 @@ -20839,7 +20695,7 @@ DASHDOT 0 LINE 5 -669 +661 8 Circuit_Cut 10 @@ -20857,7 +20713,7 @@ DASHDOT 0 LINE 5 -66A +662 8 Circuit_Etc 10 @@ -20875,7 +20731,7 @@ DASHDOT 0 LINE 5 -66B +663 8 Circuit_Etc 10 @@ -20893,7 +20749,7 @@ DASHDOT 0 LINE 5 -66C +664 8 Circuit_Etc 10 @@ -20911,7 +20767,7 @@ DASHDOT 0 LINE 5 -66D +665 8 Circuit_Etc 10 @@ -20929,7 +20785,7 @@ DASHDOT 0 LINE 5 -66E +666 8 Circuit_Cut 10 @@ -20947,7 +20803,7 @@ DASHDOT 0 LINE 5 -66F +667 8 Circuit_Cut 10 @@ -20965,7 +20821,7 @@ DASHDOT 0 LINE 5 -670 +668 8 Circuit_Cut 10 @@ -20983,7 +20839,7 @@ DASHDOT 0 LINE 5 -671 +669 8 Circuit_Cut 10 @@ -21001,7 +20857,7 @@ DASHDOT 0 LINE 5 -672 +66A 8 Circuit_Cut 10 @@ -21019,7 +20875,7 @@ DASHDOT 0 LINE 5 -673 +66B 8 Circuit_Cut 10 @@ -21037,7 +20893,7 @@ DASHDOT 0 LINE 5 -674 +66C 8 Circuit_Cut 10 @@ -21055,7 +20911,7 @@ DASHDOT 0 LINE 5 -675 +66D 8 Circuit_Cut 10 @@ -21073,7 +20929,7 @@ DASHDOT 0 LINE 5 -676 +66E 8 Circuit_Cut 10 @@ -21091,7 +20947,7 @@ DASHDOT 0 LINE 5 -677 +66F 8 Circuit_Cut 10 @@ -21109,7 +20965,7 @@ DASHDOT 0 LINE 5 -678 +670 8 Circuit_Etc 10 @@ -21127,7 +20983,7 @@ DASHDOT 0 LINE 5 -679 +671 8 Circuit_Etc 10 @@ -21145,7 +21001,7 @@ DASHDOT 0 LINE 5 -67A +672 8 Circuit_Etc 10 @@ -21163,7 +21019,7 @@ DASHDOT 0 LINE 5 -67B +673 8 Circuit_Etc 10 @@ -21181,7 +21037,7 @@ DASHDOT 0 LINE 5 -67C +674 8 Circuit_Cut 10 @@ -21199,7 +21055,7 @@ DASHDOT 0 LINE 5 -67D +675 8 Circuit_Cut 10 @@ -21217,7 +21073,7 @@ DASHDOT 0 LINE 5 -67E +676 8 Circuit_Cut 10 @@ -21235,7 +21091,7 @@ DASHDOT 0 LINE 5 -67F +677 8 Circuit_Cut 10 @@ -21253,7 +21109,7 @@ DASHDOT 0 LINE 5 -680 +678 8 Circuit_Cut 10 @@ -21271,7 +21127,7 @@ DASHDOT 0 LINE 5 -681 +679 8 Circuit_Cut 10 @@ -21289,7 +21145,7 @@ DASHDOT 0 LINE 5 -682 +67A 8 Circuit_Cut 10 @@ -21307,7 +21163,7 @@ DASHDOT 0 LINE 5 -683 +67B 8 Circuit_Cut 10 @@ -21325,7 +21181,7 @@ DASHDOT 0 LINE 5 -684 +67C 8 Circuit_Cut 10 @@ -21343,7 +21199,7 @@ DASHDOT 0 LINE 5 -685 +67D 8 Circuit_Cut 10 @@ -21361,7 +21217,7 @@ DASHDOT 0 LINE 5 -686 +67E 8 Circuit_Etc 10 @@ -21379,7 +21235,7 @@ DASHDOT 0 LINE 5 -687 +67F 8 Circuit_Etc 10 @@ -21397,7 +21253,7 @@ DASHDOT 0 LINE 5 -688 +680 8 Circuit_Etc 10 @@ -21415,7 +21271,7 @@ DASHDOT 0 LINE 5 -689 +681 8 Circuit_Etc 10 @@ -21433,7 +21289,7 @@ DASHDOT 0 LINE 5 -68A +682 8 Circuit_Cut 10 @@ -21451,7 +21307,7 @@ DASHDOT 0 LINE 5 -68B +683 8 Circuit_Cut 10 @@ -21469,7 +21325,7 @@ DASHDOT 0 LINE 5 -68C +684 8 Circuit_Cut 10 @@ -21487,7 +21343,7 @@ DASHDOT 0 LINE 5 -68D +685 8 Circuit_Cut 10 @@ -21505,7 +21361,7 @@ DASHDOT 0 LINE 5 -68E +686 8 Circuit_Cut 10 @@ -21523,7 +21379,7 @@ DASHDOT 0 LINE 5 -68F +687 8 Circuit_Cut 10 diff --git a/paperbot_ee_autoroute/dwg_w_layers.dxf b/paperbot_ee_autoroute/dwg_w_layers.dxf index 89a8b4ffdc5f91245960d5b8c171114223b4aa98..95d8e8108b9ee1ee1e97aa0d1eda9c47d01ec86f 100644 --- a/paperbot_ee_autoroute/dwg_w_layers.dxf +++ b/paperbot_ee_autoroute/dwg_w_layers.dxf @@ -53,7 +53,7 @@ $HANDLING 9 $TDUPDATE 40 -2458725.645324074 +2458726.6778472224 9 $HANDSEED 5 diff --git a/paperbot_ee_autoroute/ee_dwg_processing.py b/paperbot_ee_autoroute/ee_dwg_processing.py index 84bd1e78eb41f09043362013c7acd4676cc50795..41bf6c0a61c084f048069186809b5c7e788e23ea 100644 --- a/paperbot_ee_autoroute/ee_dwg_processing.py +++ b/paperbot_ee_autoroute/ee_dwg_processing.py @@ -231,13 +231,14 @@ class post_process(): else: k=0 kk=1 - further_ept=path[kk] - for pin in self.pin_at: - if point_within_pinbox(ept,pin,self.iso_size): - self.wiring[i][k]=pin - if point_within_pinbox(further_ept,pin,self.iso_size): - self.wiring[i].pop(kk) - break + if len(path)>1: + further_ept=path[kk] + for pin in self.pin_at: + if point_within_pinbox(ept,pin,self.iso_size): + self.wiring[i][k]=pin + if point_within_pinbox(further_ept,pin,self.iso_size): + self.wiring[i].pop(kk) + break path_list=copy.deepcopy(self.wiring) self.wiring=[] @@ -338,8 +339,9 @@ class post_process(): dis=[] for off_line in offset_lines: inter=find_intersect(l2,off_line) - dis_=distance_between_pts(further_ept,inter) - dis.append(dis_) + if type(inter)!=type(None): + dis_=distance_between_pts(further_ept,inter) + dis.append(dis_) off_l=offset_lines[np.argmin(dis)] off_l2in,off_l2out=find_offset(l2,width) s_=find_intersect(off_l2in,off_l) diff --git a/paperbot_ee_autoroute/paperbot_ee.ses b/paperbot_ee_autoroute/paperbot_ee.ses index 7fd7c47acf02107ae2d1024f4443af7b60897da5..0804ccfcafaab04041d95b5364e6112fc2872a06 100644 --- a/paperbot_ee_autoroute/paperbot_ee.ses +++ b/paperbot_ee_autoroute/paperbot_ee.ses @@ -10,7 +10,7 @@ (place U1 1040000 461000 front 90) ) (component T1 - (place T1 870000 900000 back 0) + (place T1 870000 900000 front 0) ) (component L1 (place L1 670000 410000 front 90) @@ -32,98 +32,112 @@ (network_out (net 3v3 (wire - (path F.Cu 15238 - 1095538 750926 - 1205100 641363 - 1205100 575300 + (path F.Cu 20000 + 1208927 769036 + 1208927 581620 + ) + ) + (wire + (path F.Cu 20000 + 1251600 929529 + 1208927 886856 + 1208927 769036 + ) + ) + (wire + (path F.Cu 20000 + 1208927 769036 + 889067 769036 + 889067 769037 ) ) (wire (path F.Cu 15238 870000 798400 - 870000 808782 - 885189 823971 - 1022492 823971 - 1095538 750926 + 870000 788103 + 889067 769037 ) ) (wire - (path F.Cu 20000 - 1251600 945976 - 1251600 906988 - 1095538 750926 + (path F.Cu 15238 + 1208927 581620 + 1205100 577793 + 1205100 575300 ) ) (wire (path F.Cu 15238 1251600 973500 - 1251600 945976 + 1251600 929529 ) ) ) (net GND (wire (path F.Cu 20000 - 837766 805234 - 804441 805234 - 670000 670793 + 897207 826443 + 824970 826443 + 670000 671473 670000 435400 ) ) (wire (path F.Cu 20000 - 837766 805234 - 837766 809363 - 966519 938116 - 1212735 938116 - 1226200 951581 + 897207 826443 + 1104527 826443 + 1226200 948116 ) ) (wire (path F.Cu 20000 - 670000 435400 - 668570 435400 - 642254 409084 - 642254 385621 - 671591 356284 - 808268 356284 - 1001900 549916 + 897207 816057 + 897207 826443 ) ) (wire (path F.Cu 15238 - 1001900 549916 - 1001900 575300 + 895400 798400 + 897207 800207 + 897207 816057 ) ) (wire (path F.Cu 15238 - 1226200 951581 + 1226200 948116 1226200 973500 ) ) + (wire + (path F.Cu 20000 + 670000 435400 + 668555 435400 + 642308 409153 + 642308 385925 + 671949 356284 + 808268 356284 + 1001900 549916 + ) + ) (wire (path F.Cu 15238 - 837766 805234 - 844600 798400 + 1001900 549916 + 1001900 575300 ) ) ) (net NET1 (wire (path F.Cu 20000 - 897624 796176 - 897624 786640 - 881379 770395 - 805231 770395 - 720000 685164 + 837017 790817 + 825375 790817 + 720000 685442 720000 422700 ) ) (wire (path F.Cu 15238 - 897624 796176 - 895400 798400 + 844600 798400 + 837017 790817 ) ) ) @@ -139,59 +153,54 @@ (net SCL (wire (path F.Cu 20000 - 1205645 993546 - 1200800 988701 - ) - ) - (wire - (path F.Cu 20000 - 1052700 561509 - 1066737 547472 - 1216392 547472 - 1279223 610303 - 1279223 984942 - 1263042 1001123 - 1213222 1001123 - 1205645 993546 + 1200800 988622 + 1213751 1001573 + 1262669 1001573 + 1279703 984539 + 1279703 610226 + 1216911 547434 + 1055182 547434 + 1052700 549916 ) ) (wire (path F.Cu 15238 - 1200800 973500 - 1200800 988701 + 1052700 549916 + 1052700 575300 ) ) (wire (path F.Cu 15238 - 1052700 575300 - 1052700 561509 + 1200800 988622 + 1200800 973500 ) ) ) (net SDA (wire (path F.Cu 20000 - 1027300 549916 - 1055324 521892 - 1226301 521892 - 1304527 600118 - 1304527 994994 - 1272595 1026926 - 1203255 1026926 - 1175400 999071 - 1175400 988622 + 1027300 549505 + 1027300 539917 + 1045031 522186 + 1227572 522186 + 1304811 599425 + 1304811 995273 + 1272940 1027144 + 1203241 1027144 + 1175400 999303 + 1175400 990546 ) ) (wire (path F.Cu 15238 - 1027300 549916 - 1027300 575300 + 1175400 973500 + 1175400 990546 ) ) (wire (path F.Cu 15238 - 1175400 988622 - 1175400 973500 + 1027300 575300 + 1027300 549505 ) ) ) diff --git a/paperbot_ee_autoroute/roco_dsn.py b/paperbot_ee_autoroute/roco_dsn.py index 14cc2a679574897b4eda4c4b1aaceca2c025ad41..0edbdaa1e0d93607b19a73b866a5b23405c5e2ef 100644 --- a/paperbot_ee_autoroute/roco_dsn.py +++ b/paperbot_ee_autoroute/roco_dsn.py @@ -15,7 +15,7 @@ class brd_design(): self.module_list=[ ['mpu-9250.kicad_mod','J1',[115000,91000],'front',270], ['ESP12F-Devkit-V3.kicad_mod','U1',[104000,46100],'front',90], - ['touch_sensor.kicad_mod','T1',[87000,90000],'back',0], + ['touch_sensor.kicad_mod','T1',[87000,90000],'front',0], ['LED_D3.0mm.kicad_mod','L1',[67000,41000],'front',90], ['Resistor.kicad_mod','R1',[72000,41000],'front',270],