GasPanelTIN.xaml 178 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076
  1. <UserControl x:Class="ProximaAnalizer.Controls.GasPanel.GasPanelTIN"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:ProximaAnalizer.Controls.GasPanel"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800">
  9. <Canvas Height="2820" x:Name="GasMap">
  10. <Canvas.RenderTransform>
  11. <TranslateTransform X="-2500" Y="2020"/>
  12. </Canvas.RenderTransform>
  13. <Canvas x:Name="Text">
  14. <TextBlock Text="Ti Source" FontSize="32" Foreground="#FF000000" Canvas.Left="2754" Canvas.Top="500" />
  15. <TextBlock Text="Auto Refill" FontSize="32" Foreground="#FF000000" Canvas.Left="2740" Canvas.Top="540" />
  16. <TextBlock Text="System" FontSize="32" Foreground="#FF000000" Canvas.Left="2754" Canvas.Top="580" />
  17. <TextBlock Text="DEPO" FontSize="32" Foreground="#FF000000" Canvas.Left="3375" Canvas.Top="424" />
  18. <TextBlock Text="F2 CLEAN" FontSize="32" Foreground="#FF000000" Canvas.Left="3814" Canvas.Top="424" />
  19. <TextBlock Text="TANK2 LEVEL" FontSize="32" Foreground="#FF000000" Canvas.Left="1710" Canvas.Top="-558" />
  20. <TextBlock Text="LIQUID SOURCE CONT 2" FontSize="32" Foreground="#FF000000" Canvas.Left="1620" Canvas.Top="-645" />
  21. <TextBlock Text="BUFFER RACK" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="-58" />
  22. <TextBlock Text="SUB RACK" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="-1" />
  23. <TextBlock Text="N2 PURGE" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="56" />
  24. <TextBlock Text="UNIT" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="113" />
  25. <TextBlock Text="EXHAUST-1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="929" Canvas.Top="659" />
  26. <!--<TextBlock Text="68" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1493" Canvas.Top="-1125" />-->
  27. <TextBlock Text="F2/N2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3348" Canvas.Top="292" />
  28. <TextBlock Text="NF3" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3466" Canvas.Top="292" />
  29. <TextBlock Text="N2-2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3571" Canvas.Top="290" />
  30. <TextBlock Text="SiH4" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3693" Canvas.Top="292" />
  31. <TextBlock Text="NH3-1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3920" Canvas.Top="292" />
  32. <TextBlock Text="N2-1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="4430" Canvas.Top="292" />
  33. <TextBlock Text="REC-1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2012" Canvas.Top="-1454" />
  34. <TextBlock Text="REC-2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2012" Canvas.Top="-1397" />
  35. <TextBlock Text="REC-3" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2012" Canvas.Top="-1341" />
  36. <TextBlock Text="ATM" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1774" Canvas.Top="-1896" />
  37. <TextBlock Text="EV-TANK2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2872" Canvas.Top="-238" />
  38. <TextBlock Text="Z-PURGE" FontSize="28" HorizontalAlignment="Center" Foreground="#FF0000FF" Canvas.Left="2949" Canvas.Top="-200" />
  39. <TextBlock Text="-OUT" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2062" Canvas.Top="-1171" />
  40. <TextBlock Text="BG-1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2184" Canvas.Top="-2051" />
  41. <TextBlock Text="BG-2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2184" Canvas.Top="-1995" />
  42. <TextBlock Text="BG-3" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2184" Canvas.Top="-1938" />
  43. <TextBlock Text="BG-4" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2184" Canvas.Top="-955" />
  44. <TextBlock Text="BG-5" FontSize="32" Foreground="#FFFF0000" Canvas.Left="2183" Canvas.Top="-1881" />
  45. <TextBlock Text="N2-10" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2226" Canvas.Top="659" />
  46. <TextBlock Text="EXHAUST-2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1340" Canvas.Top="659" />
  47. <TextBlock Text="N2-9" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1208" Canvas.Top="659" />
  48. <TextBlock Text="N2-12" FontSize="32" Foreground="#FF0000FF" Canvas.Left="821" Canvas.Top="659" />
  49. <TextBlock Text="N2-14" FontSize="32" Foreground="#FF0000FF" Canvas.Left="707" Canvas.Top="659" />
  50. <TextBlock Text="H.REF" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2620" Canvas.Top="653" />
  51. <TextBlock Text="REF.ACT" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2762" Canvas.Top="653" />
  52. <TextBlock Text="D.GAS" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2917" Canvas.Top="653" />
  53. <TextBlock Text="OK" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3490" Canvas.Top="466" />
  54. <TextBlock Text="OK" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3963" Canvas.Top="466" />
  55. <TextBlock Text="OK" FontSize="32" Foreground="#FF0000FF" Canvas.Left="4435" Canvas.Top="466" />
  56. <TextBlock Text="VAC 1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3286" Canvas.Top="651" />
  57. <TextBlock Text="VAC 2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3475" Canvas.Top="651" />
  58. <TextBlock Text="VAC 3" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3664" Canvas.Top="651" />
  59. <TextBlock Text="VAC 4" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3853" Canvas.Top="651" />
  60. <TextBlock Text="VAC 5" FontSize="32" Foreground="#FF0000FF" Canvas.Left="4042" Canvas.Top="651" />
  61. <TextBlock Text="VAC 6" FontSize="32" Foreground="#FF0000FF" Canvas.Left="4231" Canvas.Top="651" />
  62. <TextBlock Text="VAC 7" FontSize="32" Foreground="#FF0000FF" Canvas.Left="4420" Canvas.Top="651" />
  63. <TextBlock Text="WAT-R" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1651" Canvas.Top="-870" />
  64. <TextBlock Text="WAT-F" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1878" Canvas.Top="-870" />
  65. <TextBlock Text="C.EXH" FontSize="32" Foreground="#FF0000FF" Canvas.Left="904" Canvas.Top="-1719" />
  66. <TextBlock Text="P.ZERO" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1093" Canvas.Top="-1719" />
  67. <TextBlock Text="HH" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1644" Canvas.Top="-502" />
  68. <TextBlock Text="H" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1757" Canvas.Top="-502" />
  69. <TextBlock Text="M" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1871" Canvas.Top="-502" />
  70. <TextBlock Text="L" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1984" Canvas.Top="-502" />
  71. <TextBlock Text="Ti.MNT" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1651" Canvas.Top="-319" />
  72. <TextBlock Text="Ti.ZERO" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1868" Canvas.Top="-319" />
  73. <TextBlock Text="NH3-2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3796" Canvas.Top="292" />
  74. <TextBlock Text="N2-11" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2415" Canvas.Top="659" />
  75. <TextBlock Text="BG-1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="417" Canvas.Top="-634" />
  76. <TextBlock Text="BG-2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="417" Canvas.Top="-747" />
  77. <TextBlock Text="BG-3" FontSize="32" Foreground="#FF0000FF" Canvas.Left="417" Canvas.Top="-861" />
  78. <TextBlock Text="BG-4" FontSize="32" Foreground="#FF0000FF" Canvas.Left="417" Canvas.Top="-407" />
  79. <TextBlock Text="BG-5" FontSize="32" Foreground="#FFFF0000" Canvas.Left="417" Canvas.Top="-513" />
  80. <TextBlock Text="HCL 20%" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3192" Canvas.Top="292" />
  81. <TextBlock Text="PUMP RUN" FontSize="32" Foreground="#FF0000FF" Canvas.Left="505" Canvas.Top="220" />
  82. <TextBlock Text="N2-70" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1776" Canvas.Top="659" />
  83. <TextBlock Text="N2-7" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2003" Canvas.Top="659" />
  84. <TextBlock Text="FOUP" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1570" Canvas.Top="-35" />
  85. <TextBlock Text="N2 OFF" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1557" Canvas.Top="0" />
  86. <TextBlock Text="PUMP ECO" FontSize="32" Foreground="#FF0000FF" Canvas.Left="307" Canvas.Top="394" />
  87. <TextBlock Text="DEPO" FontSize="32" Foreground="#FF000000" Canvas.Left="3375" Canvas.Top="424" />
  88. <TextBlock Text="F2 CLEAN" FontSize="32" Foreground="#FF000000" Canvas.Left="3814" Canvas.Top="424" />
  89. <TextBlock Text="PIPE HEATER" FontSize="32" Foreground="#FF000000" Canvas.Left="693" Canvas.Top="-2002" />
  90. <TextBlock Text="HEATER COOL" FontSize="32" Foreground="#FF000000" Canvas.Left="470" Canvas.Top="-1718" />
  91. <TextBlock Text="BUFFER RACK" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="-58" />
  92. <TextBlock Text="SUB RACK" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="-1" />
  93. <TextBlock Text="N2 PURGE" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="56" />
  94. <TextBlock Text="UNIT" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="113" />
  95. <TextBlock Text="NF3 CLEAN" FontSize="32" Foreground="#FF000000" Canvas.Left="4272" Canvas.Top="424" />
  96. </Canvas>
  97. <Canvas x:Name="RecButton" Panel.ZIndex="1">
  98. <Button x:Name="SensorDP" Width="91" Height="91" Canvas.Left="937.4493408203125" Canvas.Top="472" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  99. <TextBlock Text="DP" FontSize="28" Foreground="#FF0000FF"/>
  100. </Button>
  101. <Button x:Name="SensorMBP" Width="91" Height="91" Canvas.Left="937.4493408203125" Canvas.Top="359" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  102. <TextBlock Text="MBP" FontSize="28" Foreground="#FF0000FF"/>
  103. </Button>
  104. <Button x:Name="SensorAPC" Width="91" Height="91" Canvas.Left="937.4492797851562" Canvas.Top="-1380" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  105. <TextBlock Text="APC" FontSize="28" Foreground="#FF0000FF"/>
  106. </Button>
  107. <Button x:Name="SensorAGV" Width="91" Height="53" Canvas.Left="937.4493408203125" Canvas.Top="265" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  108. <TextBlock Text="AGV" FontSize="28" Foreground="#FF0000FF"/>
  109. </Button>
  110. <Button x:Name="MFC1" Width="91" Height="91" Canvas.Left="4414.56884765625" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  111. <Grid Width="91">
  112. <Grid.RowDefinitions>
  113. <RowDefinition/>
  114. <RowDefinition Height="8"/>
  115. <RowDefinition/>
  116. </Grid.RowDefinitions>
  117. <TextBlock Text="1" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  118. <TextBlock Grid.Row="2" x:Name="MFC1_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  119. </Grid>
  120. </Button>
  121. <Button x:Name="MFC2" Width="91" Height="91" Canvas.Left="4357.865234375" Canvas.Top="-737" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  122. <Grid Width="91">
  123. <Grid.RowDefinitions>
  124. <RowDefinition/>
  125. <RowDefinition Height="8"/>
  126. <RowDefinition/>
  127. </Grid.RowDefinitions>
  128. <TextBlock Text="2" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  129. <TextBlock Grid.Row="2" x:Name="MFC2_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  130. </Grid>
  131. </Button>
  132. <Button x:Name="MFC3" Width="91" Height="91" Canvas.Left="4301.1826171875" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  133. <Grid Width="91">
  134. <Grid.RowDefinitions>
  135. <RowDefinition/>
  136. <RowDefinition Height="8"/>
  137. <RowDefinition/>
  138. </Grid.RowDefinitions>
  139. <TextBlock Text="3" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  140. <TextBlock Grid.Row="2" x:Name="MFC3_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  141. </Grid>
  142. </Button>
  143. <Button x:Name="MFC4" Width="91" Height="91" Canvas.Left="4244.47998046875" Canvas.Top="-737" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  144. <Grid Width="91">
  145. <Grid.RowDefinitions>
  146. <RowDefinition/>
  147. <RowDefinition Height="8"/>
  148. <RowDefinition/>
  149. </Grid.RowDefinitions>
  150. <TextBlock Text="4" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  151. <TextBlock Grid.Row="2" x:Name="MFC4_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  152. </Grid>
  153. </Button>
  154. <Button x:Name="MFC5" Width="91" Height="91" Canvas.Left="4187.796875" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  155. <Grid Width="91">
  156. <Grid.RowDefinitions>
  157. <RowDefinition/>
  158. <RowDefinition Height="8"/>
  159. <RowDefinition/>
  160. </Grid.RowDefinitions>
  161. <TextBlock Text="5" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  162. <TextBlock Grid.Row="2" x:Name="MFC5_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  163. </Grid>
  164. </Button>
  165. <Button x:Name="MFC7" Width="91" Height="91" Canvas.Left="4074.4111328125" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  166. <Grid Width="91">
  167. <Grid.RowDefinitions>
  168. <RowDefinition/>
  169. <RowDefinition Height="8"/>
  170. <RowDefinition/>
  171. </Grid.RowDefinitions>
  172. <TextBlock Text="7" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  173. <TextBlock Grid.Row="2" x:Name="MFC7_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  174. </Grid>
  175. </Button>
  176. <Button x:Name="MFC9" Width="91" Height="91" Canvas.Left="3904.32421875" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  177. <Grid Width="91">
  178. <Grid.RowDefinitions>
  179. <RowDefinition/>
  180. <RowDefinition Height="8"/>
  181. <RowDefinition/>
  182. </Grid.RowDefinitions>
  183. <TextBlock Text="9" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  184. <TextBlock Grid.Row="2" x:Name="MFC9_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  185. </Grid>
  186. </Button>
  187. <Button x:Name="MFC10" Width="91" Height="91" Canvas.Left="3790.936279296875" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  188. <Grid Width="91">
  189. <Grid.RowDefinitions>
  190. <RowDefinition/>
  191. <RowDefinition Height="8"/>
  192. <RowDefinition/>
  193. </Grid.RowDefinitions>
  194. <TextBlock Text="10" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  195. <TextBlock Grid.Row="2" x:Name="MFC10_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  196. </Grid>
  197. </Button>
  198. <Button x:Name="MFC11" Width="91" Height="91" Canvas.Left="3677.55078125" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  199. <Grid Width="91">
  200. <Grid.RowDefinitions>
  201. <RowDefinition/>
  202. <RowDefinition Height="8"/>
  203. <RowDefinition/>
  204. </Grid.RowDefinitions>
  205. <TextBlock Text="11" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  206. <TextBlock Grid.Row="2" x:Name="MFC11_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  207. </Grid>
  208. </Button>
  209. <Button x:Name="MFC12" Width="91" Height="91" Canvas.Left="3564.165771484375" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  210. <Grid Width="91">
  211. <Grid.RowDefinitions>
  212. <RowDefinition/>
  213. <RowDefinition Height="8"/>
  214. <RowDefinition/>
  215. </Grid.RowDefinitions>
  216. <TextBlock Text="12" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  217. <TextBlock Grid.Row="2" x:Name="MFC12_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  218. </Grid>
  219. </Button>
  220. <Button x:Name="MFC13" Width="91" Height="91" Canvas.Left="3450.780029296875" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  221. <Grid Width="91">
  222. <Grid.RowDefinitions>
  223. <RowDefinition/>
  224. <RowDefinition Height="8"/>
  225. <RowDefinition/>
  226. </Grid.RowDefinitions>
  227. <TextBlock Text="13" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  228. <TextBlock Grid.Row="2" x:Name="MFC13_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  229. </Grid>
  230. </Button>
  231. <Button x:Name="MFC14" Width="91" Height="91" Canvas.Left="3337.394287109375" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  232. <Grid Width="91">
  233. <Grid.RowDefinitions>
  234. <RowDefinition/>
  235. <RowDefinition Height="8"/>
  236. <RowDefinition/>
  237. </Grid.RowDefinitions>
  238. <TextBlock Text="14" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  239. <TextBlock Grid.Row="2" x:Name="MFC14_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  240. </Grid>
  241. </Button>
  242. <Button x:Name="RBU_NoName_0" Width="76" Height="60" Canvas.Left="1776.5045166015625" Canvas.Top="-1054" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  243. <TextBlock Text="" FontSize="28" Foreground="#000000"/>
  244. </Button>
  245. <Button x:Name="MFC17" Width="91" Height="91" Canvas.Left="2959.489990234375" Canvas.Top="-567" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  246. <Grid Width="91">
  247. <Grid.RowDefinitions>
  248. <RowDefinition/>
  249. <RowDefinition Height="8"/>
  250. <RowDefinition/>
  251. </Grid.RowDefinitions>
  252. <TextBlock Text="17" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  253. <TextBlock Grid.Row="2" x:Name="MFC17_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  254. </Grid>
  255. </Button>
  256. <Button x:Name="RBU_FL" Width="60" Height="132" Canvas.Left="3012.4033203125" Canvas.Top="-115" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  257. <TextBlock Text="FL" FontSize="28" Foreground="#FF0000FF"/>
  258. </Button>
  259. <Button x:Name="MFM16" Width="91" Height="91" Canvas.Left="2275.275634765625" Canvas.Top="152" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  260. <Grid Width="91">
  261. <Grid.RowDefinitions>
  262. <RowDefinition/>
  263. <RowDefinition Height="8"/>
  264. <RowDefinition/>
  265. </Grid.RowDefinitions>
  266. <TextBlock Text="MFM16" FontSize="24" Foreground="#FF000000" HorizontalAlignment="Center" />
  267. <TextBlock Grid.Row="2" x:Name="MFM16_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  268. </Grid>
  269. </Button>
  270. <Button x:Name="MFC16" Width="91" Height="91" Canvas.Left="2180.787353515625" Canvas.Top="38" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  271. <Grid Width="91">
  272. <Grid.RowDefinitions>
  273. <RowDefinition/>
  274. <RowDefinition Height="8"/>
  275. <RowDefinition/>
  276. </Grid.RowDefinitions>
  277. <TextBlock Text="16" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  278. <TextBlock Grid.Row="2" x:Name="MFC16_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  279. </Grid>
  280. </Button>
  281. <Button x:Name="VG11" Width="94" Height="53" Canvas.Left="1133.9786376953125" Canvas.Top="-1398" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  282. <TextBlock Text="VG11" FontSize="28" Foreground="#FF0000FF"/>
  283. </Button>
  284. <Button x:Name="VG13" Width="94" Height="53" Canvas.Left="1133.9786376953125" Canvas.Top="-1285" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  285. <TextBlock Text="VG13" FontSize="28" Foreground="#FF0000FF"/>
  286. </Button>
  287. <Button x:Name="PS13" Width="94" Height="53" Canvas.Left="1133.9786376953125" Canvas.Top="-1172" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  288. <TextBlock Text="PS13" FontSize="28" Foreground="#FF0000FF"/>
  289. </Button>
  290. <Button x:Name="VG14" Width="94" Height="53" Canvas.Left="680.4337158203125" Canvas.Top="-94" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  291. <TextBlock Text="VG14" FontSize="28" Foreground="#FF0000FF"/>
  292. </Button>
  293. <Button x:Name="RBU_FL_1" Width="60" Height="132" Canvas.Left="1273.826904296875" Canvas.Top="-370" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  294. <TextBlock Text="FL" FontSize="28" Foreground="#FF0000FF"/>
  295. </Button>
  296. <Button x:Name="SensorHREF" Width="91" Height="91" Canvas.Left="2615.443359375" Canvas.Top="699" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  297. <TextBlock Text="REF" FontSize="28" Foreground="#FF0000FF"/>
  298. </Button>
  299. <Button x:Name="SensorDEPO" Width="91" Height="91" Canvas.Left="3280.88134765625" Canvas.Top="510" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  300. <TextBlock Text="DPO" FontSize="28" Foreground="#FF0000FF"/>
  301. </Button>
  302. <Button x:Name="SensorF2CLN" Width="91" Height="91" Canvas.Left="3753.0810546875" Canvas.Top="510" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  303. <TextBlock Text="CLN" FontSize="28" Foreground="#FF0000FF"/>
  304. </Button>
  305. <Button x:Name="SensorHTR1" Width="91" Height="91" Canvas.Left="342.0500793457031" Canvas.Top="-1916" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  306. <TextBlock Text="HTR1" FontSize="28" Foreground="#FF0000FF"/>
  307. </Button>
  308. <Button x:Name="SensorHTR2" Width="91" Height="91" Canvas.Left="531.0264892578125" Canvas.Top="-1916" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  309. <TextBlock Text="HTR2" FontSize="28" Foreground="#FF0000FF"/>
  310. </Button>
  311. <Button x:Name="SensorHTR3" Width="91" Height="91" Canvas.Left="720.0028686523438" Canvas.Top="-1916" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  312. <TextBlock Text="HTR3" FontSize="28" Foreground="#FF0000FF"/>
  313. </Button>
  314. <Button x:Name="SensorBWR" Width="91" Height="91" Canvas.Left="342.0500793457031" Canvas.Top="-1633" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  315. <TextBlock Text="BWR" FontSize="28" Foreground="#FF0000FF"/>
  316. </Button>
  317. <Button x:Name="SensorDPR1" Width="91" Height="91" Canvas.Left="531.0264892578125" Canvas.Top="-1633" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  318. <TextBlock Text="DPR1" FontSize="28" Foreground="#FF0000FF"/>
  319. </Button>
  320. <Button x:Name="SensorCEXH" Width="91" Height="91" Canvas.Left="908.979248046875" Canvas.Top="-1633" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  321. <TextBlock Text="EXH" FontSize="28" Foreground="#FF0000FF"/>
  322. </Button>
  323. <Button x:Name="SensorTMNT" Width="91" Height="91" Canvas.Left="1655.4329833984375" Canvas.Top="-272" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  324. <TextBlock Text="MNT" FontSize="28" Foreground="#FF0000FF"/>
  325. </Button>
  326. <Button x:Name="SensorTADJ" Width="91" Height="91" Canvas.Left="1882.2047119140625" Canvas.Top="-272" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  327. <TextBlock Text="ADJ" FontSize="28" Foreground="#FF0000FF"/>
  328. </Button>
  329. <Button x:Name="SensorNF3Cln" Width="91" Height="91" Canvas.Left="4225.51171875" Canvas.Top="510" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  330. <TextBlock Text="CLN" FontSize="28" Foreground="#FF0000FF"/>
  331. </Button>
  332. <Button x:Name="MFC6" Width="91" Height="91" Canvas.Left="4131.06787109375" Canvas.Top="-737" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  333. <Grid Width="91">
  334. <Grid.RowDefinitions>
  335. <RowDefinition/>
  336. <RowDefinition Height="8"/>
  337. <RowDefinition/>
  338. </Grid.RowDefinitions>
  339. <TextBlock Text="6" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  340. <TextBlock Grid.Row="2" x:Name="MFC6_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  341. </Grid>
  342. </Button>
  343. <Button x:Name="TANK3" Width="132" Height="53" Canvas.Left="2919.81103515625" Canvas.Top="-1720" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  344. <TextBlock Text="TANK-3" FontSize="28" Foreground="#FF0000FF"/>
  345. </Button>
  346. <Button x:Name="TANK2" Width="132" Height="53" Canvas.Left="2919.81103515625" Canvas.Top="-1776" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  347. <TextBlock Text="TANK-2" FontSize="28" Foreground="#FF0000FF"/>
  348. </Button>
  349. <Button x:Name="HEX1" Width="132" Height="53" Canvas.Left="2919.81103515625" Canvas.Top="-1663" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  350. <TextBlock Text="H-EX 1" FontSize="28" Foreground="#FF0000FF"/>
  351. </Button>
  352. <Button x:Name="HEX2" Width="132" Height="53" Canvas.Left="2919.81103515625" Canvas.Top="-1493" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  353. <TextBlock Text="H-EX 2" FontSize="28" Foreground="#FF0000FF"/>
  354. </Button>
  355. <Button x:Name="HEX3" Width="132" Height="53" Canvas.Left="2919.81103515625" Canvas.Top="-1380" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  356. <TextBlock Text="H-EX 3" FontSize="28" Foreground="#FF0000FF"/>
  357. </Button>
  358. <Button x:Name="TANK1" Width="132" Height="53" Canvas.Left="2813.998291015625" Canvas.Top="-1020" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  359. <TextBlock Text="TANK-1" FontSize="28" Foreground="#FF0000FF"/>
  360. </Button>
  361. <Button x:Name="VG31" Width="94" Height="53" Canvas.Left="2832.896240234375" Canvas.Top="-964" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  362. <TextBlock Text="VG31" FontSize="28" Foreground="#FF0000FF"/>
  363. </Button>
  364. <Button x:Name="RBU_71" Width="91" Height="91" Canvas.Left="805.1658935546875" Canvas.Top="-1380" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  365. <Grid Width="91">
  366. <Grid.RowDefinitions>
  367. <RowDefinition/>
  368. <RowDefinition Height="8"/>
  369. <RowDefinition/>
  370. </Grid.RowDefinitions>
  371. <TextBlock Text="71" FontSize="28" Foreground="#FF0000FF" HorizontalAlignment="Center" />
  372. <TextBlock Grid.Row="2" x:Name="RBU_71_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  373. </Grid>
  374. </Button>
  375. <Button x:Name="SensorHTR4" Width="91" Height="91" Canvas.Left="908.979248046875" Canvas.Top="-1916" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  376. <TextBlock Text="HTR4" FontSize="28" Foreground="#FF0000FF"/>
  377. </Button>
  378. <Button x:Name="SensorHTR5" Width="91" Height="91" Canvas.Left="1097.95556640625" Canvas.Top="-1916" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  379. <TextBlock Text="HTR5" FontSize="28" Foreground="#FF0000FF"/>
  380. </Button>
  381. <Button x:Name="SensorDPR2" Width="91" Height="91" Canvas.Left="720.0028686523438" Canvas.Top="-1633" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  382. <TextBlock Text="DPR2" FontSize="28" Foreground="#FF0000FF"/>
  383. </Button>
  384. <Button x:Name="SensorPZERO" Width="91" Height="91" Canvas.Left="1097.955810546875" Canvas.Top="-1633" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  385. <TextBlock Text="ZERO" FontSize="28" Foreground="#FF0000FF"/>
  386. </Button>
  387. <Button x:Name="MFC19" Width="91" Height="91" Canvas.Left="3224.00830078125" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  388. <Grid Width="91">
  389. <Grid.RowDefinitions>
  390. <RowDefinition/>
  391. <RowDefinition Height="8"/>
  392. <RowDefinition/>
  393. </Grid.RowDefinitions>
  394. <TextBlock Text="19" FontSize="28" Foreground="#FFFF0000" HorizontalAlignment="Center" />
  395. <TextBlock Grid.Row="2" x:Name="MFC19_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  396. </Grid>
  397. </Button>
  398. <Button x:Name="SensorSP1" Width="91" Height="91" Canvas.Left="550.0493774414062" Canvas.Top="472" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  399. <TextBlock Text="SP1" FontSize="28" Foreground="#FF0000FF"/>
  400. </Button>
  401. <Button x:Name="SensorWATR" Width="91" Height="91" Canvas.Left="1655.4381103515625" Canvas.Top="-826" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  402. <TextBlock Text="WAT1" FontSize="28" Foreground="#FF0000FF"/>
  403. </Button>
  404. <Button x:Name="SensorWATF" Width="91" Height="91" Canvas.Left="1882.2047119140625" Canvas.Top="-826" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  405. <TextBlock Text="WAT2" FontSize="28" Foreground="#FF0000FF"/>
  406. </Button>
  407. <Button x:Name="RBU_FL_2" Width="60" Height="132" Canvas.Left="1746.1414794921875" Canvas.Top="310" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  408. <TextBlock Text="FL" FontSize="28" Foreground="#FF0000FF"/>
  409. </Button>
  410. <Button x:Name="RBU_FL_3" Width="60" Height="132" Canvas.Left="1972.9124755859375" Canvas.Top="310" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  411. <TextBlock Text="FL" FontSize="28" Foreground="#FF0000FF"/>
  412. </Button>
  413. <Button x:Name="SensorFN" Width="91" Height="91" Canvas.Left="1568.50390625" Canvas.Top="38" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  414. <TextBlock Text="F.N" FontSize="28" Foreground="#FF0000FF"/>
  415. </Button>
  416. <Button x:Name="SensorECO" Width="91" Height="91" Canvas.Left="342.04718017578125" Canvas.Top="472" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  417. <TextBlock Text="ECO" FontSize="28" Foreground="#FF0000FF"/>
  418. </Button>
  419. <Button x:Name="MFC18" Width="91" Height="91" Canvas.Left="4017.68212890625" Canvas.Top="-737" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  420. <Grid Width="91">
  421. <Grid.RowDefinitions>
  422. <RowDefinition/>
  423. <RowDefinition Height="8"/>
  424. <RowDefinition/>
  425. </Grid.RowDefinitions>
  426. <TextBlock Text="18" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
  427. <TextBlock Grid.Row="2" x:Name="MFC18_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
  428. </Grid>
  429. </Button>
  430. </Canvas>
  431. <Canvas x:Name="RecBorder" Panel.ZIndex="0">
  432. <Border x:Name="RBO_NoName_1" Width="491" Height="529" Canvas.Left="1569" Canvas.Top="-673" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="0" BorderThickness="2" >
  433. <TextBlock Text="" FontSize="28" Foreground="#000000"/>
  434. </Border>
  435. <Border x:Name="RBO_NoName_2" Width="321" Height="227" Canvas.Left="1739" Canvas.Top="-68" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="0" BorderThickness="2" >
  436. <TextBlock Text="" FontSize="28" Foreground="#000000"/>
  437. </Border>
  438. <Border x:Name="RBO_NoName_3" Width="265" Height="435" Canvas.Left="2816" Canvas.Top="-597" BorderBrush="#FF0000FF" Background="Transparent" Panel.ZIndex="0" BorderThickness="2" >
  439. <TextBlock Text="" FontSize="28" Foreground="#000000"/>
  440. </Border>
  441. <Border x:Name="RBO_NoName_4" Width="113" Height="246" Canvas.Left="926" Canvas.Top="-1391" BorderBrush="#FF0000FF" Background="Transparent" Panel.ZIndex="0" BorderThickness="2" >
  442. <TextBlock Text="" FontSize="28" Foreground="#000000"/>
  443. </Border>
  444. </Canvas>
  445. <Canvas x:Name="CirButton" Panel.ZIndex="1">
  446. <Button x:Name="ValveAV67" Width="76" Height="76" Canvas.Left="1455" Canvas.Top="-1372" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  447. <Button.Resources>
  448. <Style TargetType="{x:Type Border}">
  449. <Setter Property="CornerRadius" Value="75"/>
  450. </Style>
  451. </Button.Resources>
  452. <TextBlock Text="67" FontSize="32" Foreground="#FF0000FF"/>
  453. </Button>
  454. <Button x:Name="ValveAV1_1" Width="76" Height="76" Canvas.Left="4422" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  455. <Button.Resources>
  456. <Style TargetType="{x:Type Border}">
  457. <Setter Property="CornerRadius" Value="75"/>
  458. </Style>
  459. </Button.Resources>
  460. <TextBlock Text="1" FontSize="32" Foreground="#FF0000FF"/>
  461. </Button>
  462. <Button x:Name="ValveAV11_1" Width="76" Height="76" Canvas.Left="3969" Canvas.Top="-389" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  463. <Button.Resources>
  464. <Style TargetType="{x:Type Border}">
  465. <Setter Property="CornerRadius" Value="75"/>
  466. </Style>
  467. </Button.Resources>
  468. <TextBlock Text="11" FontSize="32" Foreground="#FF0000FF"/>
  469. </Button>
  470. <Button x:Name="ValveAV12_1" Width="76" Height="76" Canvas.Left="3912" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  471. <Button.Resources>
  472. <Style TargetType="{x:Type Border}">
  473. <Setter Property="CornerRadius" Value="75"/>
  474. </Style>
  475. </Button.Resources>
  476. <TextBlock Text="12" FontSize="32" Foreground="#FF0000FF"/>
  477. </Button>
  478. <Button x:Name="ValveAV16_2" Width="76" Height="76" Canvas.Left="3798" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  479. <Button.Resources>
  480. <Style TargetType="{x:Type Border}">
  481. <Setter Property="CornerRadius" Value="75"/>
  482. </Style>
  483. </Button.Resources>
  484. <TextBlock Text="16" FontSize="32" Foreground="#FF0000FF"/>
  485. </Button>
  486. <Button x:Name="ValveAV15" Width="76" Height="76" Canvas.Left="3855" Canvas.Top="-389" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  487. <Button.Resources>
  488. <Style TargetType="{x:Type Border}">
  489. <Setter Property="CornerRadius" Value="75"/>
  490. </Style>
  491. </Button.Resources>
  492. <TextBlock Text="15" FontSize="32" Foreground="#FF0000FF"/>
  493. </Button>
  494. <Button x:Name="ValveAV19_1" Width="76" Height="76" Canvas.Left="3742" Canvas.Top="-389" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  495. <Button.Resources>
  496. <Style TargetType="{x:Type Border}">
  497. <Setter Property="CornerRadius" Value="75"/>
  498. </Style>
  499. </Button.Resources>
  500. <TextBlock Text="19" FontSize="32" Foreground="#FF0000FF"/>
  501. </Button>
  502. <Button x:Name="ValveAV20" Width="76" Height="76" Canvas.Left="3685" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  503. <Button.Resources>
  504. <Style TargetType="{x:Type Border}">
  505. <Setter Property="CornerRadius" Value="75"/>
  506. </Style>
  507. </Button.Resources>
  508. <TextBlock Text="20" FontSize="32" Foreground="#FF0000FF"/>
  509. </Button>
  510. <Button x:Name="ValveAV25" Width="76" Height="76" Canvas.Left="3515" Canvas.Top="-389" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  511. <Button.Resources>
  512. <Style TargetType="{x:Type Border}">
  513. <Setter Property="CornerRadius" Value="75"/>
  514. </Style>
  515. </Button.Resources>
  516. <TextBlock Text="25" FontSize="32" Foreground="#FF0000FF"/>
  517. </Button>
  518. <Button x:Name="ValveAV26" Width="76" Height="76" Canvas.Left="3458" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  519. <Button.Resources>
  520. <Style TargetType="{x:Type Border}">
  521. <Setter Property="CornerRadius" Value="75"/>
  522. </Style>
  523. </Button.Resources>
  524. <TextBlock Text="26" FontSize="32" Foreground="#FF0000FF"/>
  525. </Button>
  526. <Button x:Name="ValveAV29" Width="76" Height="76" Canvas.Left="3402" Canvas.Top="-389" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  527. <Button.Resources>
  528. <Style TargetType="{x:Type Border}">
  529. <Setter Property="CornerRadius" Value="75"/>
  530. </Style>
  531. </Button.Resources>
  532. <TextBlock Text="29" FontSize="32" Foreground="#FF0000FF"/>
  533. </Button>
  534. <Button x:Name="ValveAV30" Width="76" Height="76" Canvas.Left="3345" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  535. <Button.Resources>
  536. <Style TargetType="{x:Type Border}">
  537. <Setter Property="CornerRadius" Value="75"/>
  538. </Style>
  539. </Button.Resources>
  540. <TextBlock Text="30" FontSize="32" Foreground="#FF0000FF"/>
  541. </Button>
  542. <Button x:Name="ValveAV3_1" Width="76" Height="76" Canvas.Left="4422" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  543. <Button.Resources>
  544. <Style TargetType="{x:Type Border}">
  545. <Setter Property="CornerRadius" Value="75"/>
  546. </Style>
  547. </Button.Resources>
  548. <TextBlock Text="3" FontSize="32" Foreground="#FF0000FF"/>
  549. </Button>
  550. <Button x:Name="ValveAV4_1" Width="76" Height="76" Canvas.Left="4365" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  551. <Button.Resources>
  552. <Style TargetType="{x:Type Border}">
  553. <Setter Property="CornerRadius" Value="75"/>
  554. </Style>
  555. </Button.Resources>
  556. <TextBlock Text="4" FontSize="32" Foreground="#FF0000FF"/>
  557. </Button>
  558. <Button x:Name="ValveAV5_1" Width="76" Height="76" Canvas.Left="4309" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  559. <Button.Resources>
  560. <Style TargetType="{x:Type Border}">
  561. <Setter Property="CornerRadius" Value="75"/>
  562. </Style>
  563. </Button.Resources>
  564. <TextBlock Text="5" FontSize="32" Foreground="#FF0000FF"/>
  565. </Button>
  566. <Button x:Name="ValveAV6_1" Width="76" Height="76" Canvas.Left="4252" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  567. <Button.Resources>
  568. <Style TargetType="{x:Type Border}">
  569. <Setter Property="CornerRadius" Value="75"/>
  570. </Style>
  571. </Button.Resources>
  572. <TextBlock Text="6" FontSize="32" Foreground="#FF0000FF"/>
  573. </Button>
  574. <Button x:Name="ValveAV7_1" Width="76" Height="76" Canvas.Left="4195" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  575. <Button.Resources>
  576. <Style TargetType="{x:Type Border}">
  577. <Setter Property="CornerRadius" Value="75"/>
  578. </Style>
  579. </Button.Resources>
  580. <TextBlock Text="7" FontSize="32" Foreground="#FF0000FF"/>
  581. </Button>
  582. <Button x:Name="ValveAV8" Width="76" Height="76" Canvas.Left="4139" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  583. <Button.Resources>
  584. <Style TargetType="{x:Type Border}">
  585. <Setter Property="CornerRadius" Value="75"/>
  586. </Style>
  587. </Button.Resources>
  588. <TextBlock Text="8" FontSize="32" Foreground="#FF0000FF"/>
  589. </Button>
  590. <Button x:Name="ValveAV9_1" Width="76" Height="76" Canvas.Left="4082" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  591. <Button.Resources>
  592. <Style TargetType="{x:Type Border}">
  593. <Setter Property="CornerRadius" Value="75"/>
  594. </Style>
  595. </Button.Resources>
  596. <TextBlock Text="9" FontSize="32" Foreground="#FF0000FF"/>
  597. </Button>
  598. <Button x:Name="ValveAV13_1" Width="76" Height="76" Canvas.Left="3969" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  599. <Button.Resources>
  600. <Style TargetType="{x:Type Border}">
  601. <Setter Property="CornerRadius" Value="75"/>
  602. </Style>
  603. </Button.Resources>
  604. <TextBlock Text="13" FontSize="32" Foreground="#FF0000FF"/>
  605. </Button>
  606. <Button x:Name="ValveAV14_1" Width="76" Height="76" Canvas.Left="3912" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  607. <Button.Resources>
  608. <Style TargetType="{x:Type Border}">
  609. <Setter Property="CornerRadius" Value="75"/>
  610. </Style>
  611. </Button.Resources>
  612. <TextBlock Text="14" FontSize="32" Foreground="#FF0000FF"/>
  613. </Button>
  614. <Button x:Name="ValveAV17_1" Width="76" Height="76" Canvas.Left="3855" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  615. <Button.Resources>
  616. <Style TargetType="{x:Type Border}">
  617. <Setter Property="CornerRadius" Value="75"/>
  618. </Style>
  619. </Button.Resources>
  620. <TextBlock Text="17" FontSize="32" Foreground="#FF0000FF"/>
  621. </Button>
  622. <Button x:Name="ValveAV18_1" Width="76" Height="76" Canvas.Left="3798" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  623. <Button.Resources>
  624. <Style TargetType="{x:Type Border}">
  625. <Setter Property="CornerRadius" Value="75"/>
  626. </Style>
  627. </Button.Resources>
  628. <TextBlock Text="18" FontSize="32" Foreground="#FF0000FF"/>
  629. </Button>
  630. <Button x:Name="ValveAV22" Width="76" Height="76" Canvas.Left="3685" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  631. <Button.Resources>
  632. <Style TargetType="{x:Type Border}">
  633. <Setter Property="CornerRadius" Value="75"/>
  634. </Style>
  635. </Button.Resources>
  636. <TextBlock Text="22" FontSize="32" Foreground="#FF0000FF"/>
  637. </Button>
  638. <Button x:Name="ValveAV21" Width="76" Height="76" Canvas.Left="3742" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  639. <Button.Resources>
  640. <Style TargetType="{x:Type Border}">
  641. <Setter Property="CornerRadius" Value="75"/>
  642. </Style>
  643. </Button.Resources>
  644. <TextBlock Text="21" FontSize="32" Foreground="#FF0000FF"/>
  645. </Button>
  646. <Button x:Name="ValveAV27" Width="76" Height="76" Canvas.Left="3515" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  647. <Button.Resources>
  648. <Style TargetType="{x:Type Border}">
  649. <Setter Property="CornerRadius" Value="75"/>
  650. </Style>
  651. </Button.Resources>
  652. <TextBlock Text="27" FontSize="32" Foreground="#FF0000FF"/>
  653. </Button>
  654. <Button x:Name="ValveAV28" Width="76" Height="76" Canvas.Left="3458" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  655. <Button.Resources>
  656. <Style TargetType="{x:Type Border}">
  657. <Setter Property="CornerRadius" Value="75"/>
  658. </Style>
  659. </Button.Resources>
  660. <TextBlock Text="28" FontSize="32" Foreground="#FF0000FF"/>
  661. </Button>
  662. <Button x:Name="ValveAV31" Width="76" Height="76" Canvas.Left="3402" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  663. <Button.Resources>
  664. <Style TargetType="{x:Type Border}">
  665. <Setter Property="CornerRadius" Value="75"/>
  666. </Style>
  667. </Button.Resources>
  668. <TextBlock Text="31" FontSize="32" Foreground="#FF0000FF"/>
  669. </Button>
  670. <Button x:Name="ValveAV32" Width="76" Height="76" Canvas.Left="3345" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  671. <Button.Resources>
  672. <Style TargetType="{x:Type Border}">
  673. <Setter Property="CornerRadius" Value="75"/>
  674. </Style>
  675. </Button.Resources>
  676. <TextBlock Text="32" FontSize="32" Foreground="#FF0000FF"/>
  677. </Button>
  678. <Button x:Name="ValveAV23" Width="76" Height="76" Canvas.Left="3572" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  679. <Button.Resources>
  680. <Style TargetType="{x:Type Border}">
  681. <Setter Property="CornerRadius" Value="75"/>
  682. </Style>
  683. </Button.Resources>
  684. <TextBlock Text="23" FontSize="32" Foreground="#FF0000FF"/>
  685. </Button>
  686. <Button x:Name="ValveAV24" Width="76" Height="76" Canvas.Left="3572" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  687. <Button.Resources>
  688. <Style TargetType="{x:Type Border}">
  689. <Setter Property="CornerRadius" Value="75"/>
  690. </Style>
  691. </Button.Resources>
  692. <TextBlock Text="24" FontSize="32" Foreground="#FF0000FF"/>
  693. </Button>
  694. <Button x:Name="ValveAV121" Width="76" Height="76" Canvas.Left="2684" Canvas.Top="-1788" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  695. <Button.Resources>
  696. <Style TargetType="{x:Type Border}">
  697. <Setter Property="CornerRadius" Value="75"/>
  698. </Style>
  699. </Button.Resources>
  700. <TextBlock Text="121" FontSize="32" Foreground="#FF0000FF"/>
  701. </Button>
  702. <Button x:Name="ValveAV123" Width="76" Height="76" Canvas.Left="2778" Canvas.Top="-1731" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  703. <Button.Resources>
  704. <Style TargetType="{x:Type Border}">
  705. <Setter Property="CornerRadius" Value="75"/>
  706. </Style>
  707. </Button.Resources>
  708. <TextBlock Text="123" FontSize="32" Foreground="#FF0000FF"/>
  709. </Button>
  710. <Button x:Name="ValveAV125" Width="76" Height="76" Canvas.Left="2400" Canvas.Top="-1674" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  711. <Button.Resources>
  712. <Style TargetType="{x:Type Border}">
  713. <Setter Property="CornerRadius" Value="75"/>
  714. </Style>
  715. </Button.Resources>
  716. <TextBlock Text="125" FontSize="32" Foreground="#FF0000FF"/>
  717. </Button>
  718. <Button x:Name="ValveAV126" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-1618" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  719. <Button.Resources>
  720. <Style TargetType="{x:Type Border}">
  721. <Setter Property="CornerRadius" Value="75"/>
  722. </Style>
  723. </Button.Resources>
  724. <TextBlock Text="126" FontSize="32" Foreground="#FF0000FF"/>
  725. </Button>
  726. <Button x:Name="ValveAV127" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-1504" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  727. <Button.Resources>
  728. <Style TargetType="{x:Type Border}">
  729. <Setter Property="CornerRadius" Value="75"/>
  730. </Style>
  731. </Button.Resources>
  732. <TextBlock Text="127" FontSize="32" Foreground="#FF0000FF"/>
  733. </Button>
  734. <Button x:Name="ValveAV128" Width="76" Height="76" Canvas.Left="2400" Canvas.Top="-1448" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  735. <Button.Resources>
  736. <Style TargetType="{x:Type Border}">
  737. <Setter Property="CornerRadius" Value="75"/>
  738. </Style>
  739. </Button.Resources>
  740. <TextBlock Text="128" FontSize="32" Foreground="#FF0000FF"/>
  741. </Button>
  742. <Button x:Name="ValveAV101" Width="76" Height="76" Canvas.Left="2967" Canvas.Top="-351" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  743. <Button.Resources>
  744. <Style TargetType="{x:Type Border}">
  745. <Setter Property="CornerRadius" Value="75"/>
  746. </Style>
  747. </Button.Resources>
  748. <TextBlock Text="101" FontSize="32" Foreground="#FF0000FF"/>
  749. </Button>
  750. <Button x:Name="ValveAV100" Width="76" Height="76" Canvas.Left="2854" Canvas.Top="-351" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  751. <Button.Resources>
  752. <Style TargetType="{x:Type Border}">
  753. <Setter Property="CornerRadius" Value="75"/>
  754. </Style>
  755. </Button.Resources>
  756. <TextBlock Text="100" FontSize="32" Foreground="#FF0000FF"/>
  757. </Button>
  758. <Button x:Name="ValveAV102" Width="76" Height="76" Canvas.Left="2854" Canvas.Top="-465" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  759. <Button.Resources>
  760. <Style TargetType="{x:Type Border}">
  761. <Setter Property="CornerRadius" Value="75"/>
  762. </Style>
  763. </Button.Resources>
  764. <TextBlock Text="102" FontSize="32" Foreground="#FF0000FF"/>
  765. </Button>
  766. <Button x:Name="ValveAV112" Width="76" Height="76" Canvas.Left="2472" Canvas.Top="45" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  767. <Button.Resources>
  768. <Style TargetType="{x:Type Border}">
  769. <Setter Property="CornerRadius" Value="75"/>
  770. </Style>
  771. </Button.Resources>
  772. <TextBlock Text="112" FontSize="32" Foreground="#FF0000FF"/>
  773. </Button>
  774. <Button x:Name="ValveAV105" Width="76" Height="76" Canvas.Left="2873" Canvas.Top="-786" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  775. <Button.Resources>
  776. <Style TargetType="{x:Type Border}">
  777. <Setter Property="CornerRadius" Value="75"/>
  778. </Style>
  779. </Button.Resources>
  780. <TextBlock Text="105" FontSize="32" Foreground="#FF0000FF"/>
  781. </Button>
  782. <Button x:Name="ValveAV104" Width="76" Height="76" Canvas.Left="2188" Canvas.Top="348" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  783. <Button.Resources>
  784. <Style TargetType="{x:Type Border}">
  785. <Setter Property="CornerRadius" Value="75"/>
  786. </Style>
  787. </Button.Resources>
  788. <TextBlock Text="104" FontSize="32" Foreground="#FF0000FF"/>
  789. </Button>
  790. <Button x:Name="ValveAV103" Width="76" Height="76" Canvas.Left="2967" Canvas.Top="-711" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  791. <Button.Resources>
  792. <Style TargetType="{x:Type Border}">
  793. <Setter Property="CornerRadius" Value="75"/>
  794. </Style>
  795. </Button.Resources>
  796. <TextBlock Text="103" FontSize="32" Foreground="#FF0000FF"/>
  797. </Button>
  798. <Button x:Name="ValveAV75" Width="76" Height="76" Canvas.Left="1266" Canvas.Top="-1296" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  799. <Button.Resources>
  800. <Style TargetType="{x:Type Border}">
  801. <Setter Property="CornerRadius" Value="75"/>
  802. </Style>
  803. </Button.Resources>
  804. <TextBlock Text="75" FontSize="32" Foreground="#FF0000FF"/>
  805. </Button>
  806. <Button x:Name="ValveAV60" Width="76" Height="76" Canvas.Left="1266" Canvas.Top="-1183" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  807. <Button.Resources>
  808. <Style TargetType="{x:Type Border}">
  809. <Setter Property="CornerRadius" Value="75"/>
  810. </Style>
  811. </Button.Resources>
  812. <TextBlock Text="60" FontSize="32" Foreground="#FF0000FF"/>
  813. </Button>
  814. <Button x:Name="ValveAV74" Width="76" Height="76" Canvas.Left="1342" Canvas.Top="-786" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  815. <Button.Resources>
  816. <Style TargetType="{x:Type Border}">
  817. <Setter Property="CornerRadius" Value="75"/>
  818. </Style>
  819. </Button.Resources>
  820. <TextBlock Text="74" FontSize="32" Foreground="#FF0000FF"/>
  821. </Button>
  822. <Button x:Name="ValveAV77" Width="76" Height="76" Canvas.Left="813" Canvas.Top="-106" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  823. <Button.Resources>
  824. <Style TargetType="{x:Type Border}">
  825. <Setter Property="CornerRadius" Value="75"/>
  826. </Style>
  827. </Button.Resources>
  828. <TextBlock Text="77" FontSize="32" Foreground="#FF0000FF"/>
  829. </Button>
  830. <Button x:Name="ValveAV73" Width="76" Height="76" Canvas.Left="813" Canvas.Top="-786" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  831. <Button.Resources>
  832. <Style TargetType="{x:Type Border}">
  833. <Setter Property="CornerRadius" Value="75"/>
  834. </Style>
  835. </Button.Resources>
  836. <TextBlock Text="73" FontSize="32" Foreground="#FF0000FF"/>
  837. </Button>
  838. <Button x:Name="ValveAV120" Width="76" Height="76" Canvas.Left="3118" Canvas.Top="-1788" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  839. <Button.Resources>
  840. <Style TargetType="{x:Type Border}">
  841. <Setter Property="CornerRadius" Value="75"/>
  842. </Style>
  843. </Button.Resources>
  844. <TextBlock Text="120" FontSize="32" Foreground="#FF0000FF"/>
  845. </Button>
  846. <Button x:Name="ValveAV122" Width="76" Height="76" Canvas.Left="3213" Canvas.Top="-1731" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  847. <Button.Resources>
  848. <Style TargetType="{x:Type Border}">
  849. <Setter Property="CornerRadius" Value="75"/>
  850. </Style>
  851. </Button.Resources>
  852. <TextBlock Text="122" FontSize="32" Foreground="#FF0000FF"/>
  853. </Button>
  854. <Button x:Name="ValveAV124" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-1731" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  855. <Button.Resources>
  856. <Style TargetType="{x:Type Border}">
  857. <Setter Property="CornerRadius" Value="75"/>
  858. </Style>
  859. </Button.Resources>
  860. <TextBlock Text="124" FontSize="32" Foreground="#FF0000FF"/>
  861. </Button>
  862. <Button x:Name="ValveAV129" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-1391" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  863. <Button.Resources>
  864. <Style TargetType="{x:Type Border}">
  865. <Setter Property="CornerRadius" Value="75"/>
  866. </Style>
  867. </Button.Resources>
  868. <TextBlock Text="129" FontSize="32" Foreground="#FF0000FF"/>
  869. </Button>
  870. <Button x:Name="ValveAV130" Width="76" Height="76" Canvas.Left="2400" Canvas.Top="-1334" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  871. <Button.Resources>
  872. <Style TargetType="{x:Type Border}">
  873. <Setter Property="CornerRadius" Value="75"/>
  874. </Style>
  875. </Button.Resources>
  876. <TextBlock Text="130" FontSize="32" Foreground="#FF0000FF"/>
  877. </Button>
  878. <Button x:Name="ValveAV131" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-1277" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  879. <Button.Resources>
  880. <Style TargetType="{x:Type Border}">
  881. <Setter Property="CornerRadius" Value="75"/>
  882. </Style>
  883. </Button.Resources>
  884. <TextBlock Text="131" FontSize="32" Foreground="#FF0000FF"/>
  885. </Button>
  886. <Button x:Name="ValveAV52" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-1164" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  887. <Button.Resources>
  888. <Style TargetType="{x:Type Border}">
  889. <Setter Property="CornerRadius" Value="75"/>
  890. </Style>
  891. </Button.Resources>
  892. <TextBlock Text="52" FontSize="32" Foreground="#FF0000FF"/>
  893. </Button>
  894. <Button x:Name="ValveAV136" Width="76" Height="76" Canvas.Left="2400" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  895. <Button.Resources>
  896. <Style TargetType="{x:Type Border}">
  897. <Setter Property="CornerRadius" Value="75"/>
  898. </Style>
  899. </Button.Resources>
  900. <TextBlock Text="136" FontSize="32" Foreground="#FF0000FF"/>
  901. </Button>
  902. <Button x:Name="ValveAV137" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-975" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  903. <Button.Resources>
  904. <Style TargetType="{x:Type Border}">
  905. <Setter Property="CornerRadius" Value="75"/>
  906. </Style>
  907. </Button.Resources>
  908. <TextBlock Text="137" FontSize="32" Foreground="#FF0000FF"/>
  909. </Button>
  910. <Button x:Name="ValveAV107" Width="76" Height="76" Canvas.Left="2400" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  911. <Button.Resources>
  912. <Style TargetType="{x:Type Border}">
  913. <Setter Property="CornerRadius" Value="75"/>
  914. </Style>
  915. </Button.Resources>
  916. <TextBlock Text="107" FontSize="32" Foreground="#FF0000FF"/>
  917. </Button>
  918. <Button x:Name="ValveAV110" Width="76" Height="76" Canvas.Left="2721" Canvas.Top="-975" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  919. <Button.Resources>
  920. <Style TargetType="{x:Type Border}">
  921. <Setter Property="CornerRadius" Value="75"/>
  922. </Style>
  923. </Button.Resources>
  924. <TextBlock Text="110" FontSize="32" Foreground="#FF0000FF"/>
  925. </Button>
  926. <Button x:Name="ValveAV106" Width="76" Height="76" Canvas.Left="3118" Canvas.Top="83" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  927. <Button.Resources>
  928. <Style TargetType="{x:Type Border}">
  929. <Setter Property="CornerRadius" Value="75"/>
  930. </Style>
  931. </Button.Resources>
  932. <TextBlock Text="106" FontSize="32" Foreground="#FF0000FF"/>
  933. </Button>
  934. <Button x:Name="ValveAVDG1" Width="76" Height="76" Canvas.Left="1455" Canvas.Top="-1259" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  935. <Button.Resources>
  936. <Style TargetType="{x:Type Border}">
  937. <Setter Property="CornerRadius" Value="75"/>
  938. </Style>
  939. </Button.Resources>
  940. <TextBlock Text="DG1" FontSize="32" Foreground="#FF0000FF"/>
  941. </Button>
  942. <Button x:Name="ValveAV68" Width="76" Height="76" Canvas.Left="1455" Canvas.Top="-1144" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  943. <Button.Resources>
  944. <Style TargetType="{x:Type Border}">
  945. <Setter Property="CornerRadius" Value="75"/>
  946. </Style>
  947. </Button.Resources>
  948. <TextBlock Text="68" FontSize="32" Foreground="#FF0000FF"/>
  949. </Button>
  950. <Button x:Name="ValveAV72" Width="76" Height="76" Canvas.Left="680" Canvas.Top="-1372" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  951. <Button.Resources>
  952. <Style TargetType="{x:Type Border}">
  953. <Setter Property="CornerRadius" Value="75"/>
  954. </Style>
  955. </Button.Resources>
  956. <TextBlock Text="72" FontSize="32" Foreground="#FF0000FF"/>
  957. </Button>
  958. <Button x:Name="ValveAV87" Width="76" Height="76" Canvas.Left="558" Canvas.Top="-881" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  959. <Button.Resources>
  960. <Style TargetType="{x:Type Border}">
  961. <Setter Property="CornerRadius" Value="75"/>
  962. </Style>
  963. </Button.Resources>
  964. <TextBlock Text="87" FontSize="32" Foreground="#FF0000FF"/>
  965. </Button>
  966. <Button x:Name="ValveAV86" Width="76" Height="76" Canvas.Left="558" Canvas.Top="-767" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  967. <Button.Resources>
  968. <Style TargetType="{x:Type Border}">
  969. <Setter Property="CornerRadius" Value="75"/>
  970. </Style>
  971. </Button.Resources>
  972. <TextBlock Text="86" FontSize="32" Foreground="#FF0000FF"/>
  973. </Button>
  974. <Button x:Name="ValveAV85" Width="76" Height="76" Canvas.Left="558" Canvas.Top="-654" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  975. <Button.Resources>
  976. <Style TargetType="{x:Type Border}">
  977. <Setter Property="CornerRadius" Value="75"/>
  978. </Style>
  979. </Button.Resources>
  980. <TextBlock Text="85" FontSize="32" Foreground="#FF0000FF"/>
  981. </Button>
  982. <Button x:Name="ValveAV88" Width="76" Height="76" Canvas.Left="558" Canvas.Top="-427" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  983. <Button.Resources>
  984. <Style TargetType="{x:Type Border}">
  985. <Setter Property="CornerRadius" Value="75"/>
  986. </Style>
  987. </Button.Resources>
  988. <TextBlock Text="88" FontSize="32" Foreground="#FF0000FF"/>
  989. </Button>
  990. <Button x:Name="ValveAV40" Width="76" Height="76" Canvas.Left="3288" Canvas.Top="-389" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  991. <Button.Resources>
  992. <Style TargetType="{x:Type Border}">
  993. <Setter Property="CornerRadius" Value="75"/>
  994. </Style>
  995. </Button.Resources>
  996. <TextBlock Text="40" FontSize="32" Foreground="#FFFF0000"/>
  997. </Button>
  998. <Button x:Name="ValveAV42" Width="76" Height="76" Canvas.Left="3288" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  999. <Button.Resources>
  1000. <Style TargetType="{x:Type Border}">
  1001. <Setter Property="CornerRadius" Value="75"/>
  1002. </Style>
  1003. </Button.Resources>
  1004. <TextBlock Text="42" FontSize="32" Foreground="#FFFF0000"/>
  1005. </Button>
  1006. <Button x:Name="ValveAV43" Width="76" Height="76" Canvas.Left="3232" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  1007. <Button.Resources>
  1008. <Style TargetType="{x:Type Border}">
  1009. <Setter Property="CornerRadius" Value="75"/>
  1010. </Style>
  1011. </Button.Resources>
  1012. <TextBlock Text="43" FontSize="32" Foreground="#FFFF0000"/>
  1013. </Button>
  1014. <Button x:Name="ValveAV41" Width="76" Height="76" Canvas.Left="3232" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  1015. <Button.Resources>
  1016. <Style TargetType="{x:Type Border}">
  1017. <Setter Property="CornerRadius" Value="75"/>
  1018. </Style>
  1019. </Button.Resources>
  1020. <TextBlock Text="41" FontSize="32" Foreground="#FFFF0000"/>
  1021. </Button>
  1022. <Button x:Name="ValveAV133" Width="76" Height="76" Canvas.Left="2400" Canvas.Top="-1221" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  1023. <Button.Resources>
  1024. <Style TargetType="{x:Type Border}">
  1025. <Setter Property="CornerRadius" Value="75"/>
  1026. </Style>
  1027. </Button.Resources>
  1028. <TextBlock Text="133" FontSize="32" Foreground="#FF0000FF"/>
  1029. </Button>
  1030. <Button x:Name="ValveAV39" Width="76" Height="76" Canvas.Left="4025" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  1031. <Button.Resources>
  1032. <Style TargetType="{x:Type Border}">
  1033. <Setter Property="CornerRadius" Value="75"/>
  1034. </Style>
  1035. </Button.Resources>
  1036. <TextBlock Text="39" FontSize="32" Foreground="#FFFF0000"/>
  1037. </Button>
  1038. <Button x:Name="ValveAV79" Width="76" Height="76" Canvas.Left="945" Canvas.Top="-1240" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  1039. <Button.Resources>
  1040. <Style TargetType="{x:Type Border}">
  1041. <Setter Property="CornerRadius" Value="75"/>
  1042. </Style>
  1043. </Button.Resources>
  1044. <TextBlock Text="79" FontSize="32" Foreground="#FF0000FF"/>
  1045. </Button>
  1046. <Button x:Name="ValveAV540" Width="76" Height="76" Canvas.Left="1739" Canvas.Top="197" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  1047. <Button.Resources>
  1048. <Style TargetType="{x:Type Border}">
  1049. <Setter Property="CornerRadius" Value="75"/>
  1050. </Style>
  1051. </Button.Resources>
  1052. <TextBlock Text="540" FontSize="32" Foreground="#FF0000FF"/>
  1053. </Button>
  1054. <Button x:Name="ValveAV54" Width="76" Height="76" Canvas.Left="1965" Canvas.Top="197" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  1055. <Button.Resources>
  1056. <Style TargetType="{x:Type Border}">
  1057. <Setter Property="CornerRadius" Value="75"/>
  1058. </Style>
  1059. </Button.Resources>
  1060. <TextBlock Text="54" FontSize="32" Foreground="#FF0000FF"/>
  1061. </Button>
  1062. <Button x:Name="ValveAV111" Width="76" Height="76" Canvas.Left="2661" Canvas.Top="234" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  1063. <Button.Resources>
  1064. <Style TargetType="{x:Type Border}">
  1065. <Setter Property="CornerRadius" Value="75"/>
  1066. </Style>
  1067. </Button.Resources>
  1068. <TextBlock Text="111" FontSize="32" Foreground="#FF0000FF"/>
  1069. </Button>
  1070. <Button x:Name="ValveAV89" Width="76" Height="76" Canvas.Left="558" Canvas.Top="-533" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
  1071. <Button.Resources>
  1072. <Style TargetType="{x:Type Border}">
  1073. <Setter Property="CornerRadius" Value="75"/>
  1074. </Style>
  1075. </Button.Resources>
  1076. <TextBlock Text="89" FontSize="32" Foreground="#FFFF0000"/>
  1077. </Button>
  1078. </Canvas>
  1079. <Canvas x:Name="CirBorder" Panel.ZIndex="0">
  1080. <Border x:Name="CBO_NoName_5" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="968" Canvas.Top="-280"/>
  1081. <Border x:Name="CBO_NoName_6" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1489" Canvas.Top="-1440" />
  1082. <Border x:Name="CBO_NoName_7" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2357" Canvas.Top="-1415" />
  1083. <Border x:Name="CBO_NoName_8" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2289" Canvas.Top="-1302" />
  1084. <Border x:Name="CBO_NoName_9" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2357" Canvas.Top="-1642" />
  1085. <Border x:Name="CBO_NoName_10" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="3992" Canvas.Top="-158" />
  1086. <Border x:Name="CBO_NoName_11" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="3879" Canvas.Top="-158" />
  1087. <Border x:Name="CBO_NoName_12" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="3765" Canvas.Top="-158" />
  1088. <Border x:Name="CBO_NoName_13" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="3539" Canvas.Top="-158" />
  1089. <Border x:Name="CBO_NoName_14" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="3425" Canvas.Top="-158" />
  1090. <Border x:Name="CBO_NoName_15" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1584" Canvas.Top="-1036" />
  1091. <Border x:Name="CBO_NoName_16" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="3037" Canvas.Top="-168" />
  1092. <Border x:Name="CBO_NoName_17" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="2306" Canvas.Top="-164" />
  1093. <Border x:Name="CBO_NoName_18" BorderBrush="#FF000000" Width="6" Height="6" CornerRadius="6" BorderThickness="2" Canvas.Left="2305" Canvas.Top="-44" />
  1094. <Border x:Name="CBO_NoName_19" BorderBrush="#FF000000" Width="6" Height="6" CornerRadius="6" BorderThickness="2" Canvas.Left="2305" Canvas.Top="-22" />
  1095. <Border x:Name="CBO_NoName_20" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1376" Canvas.Top="-1376" />
  1096. <Border x:Name="CBO_NoName_21" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1376" Canvas.Top="-1149" />
  1097. <Border x:Name="CBO_NoName_22" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1376" Canvas.Top="-1262" />
  1098. <Border x:Name="CBO_NoName_23" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1376" Canvas.Top="-1440" />
  1099. <Border x:Name="CBO_NoName_24" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="1365" Canvas.Top="-630" />
  1100. <Border x:Name="CBO_NoName_25" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1376" Canvas.Top="-499" />
  1101. <Border x:Name="CBO_NoName_26" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="968" Canvas.Top="-72" />
  1102. <Border x:Name="CBO_NoName_27" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="968" Canvas.Top="117" />
  1103. <Border x:Name="CBO_NoName_28" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="1290" Canvas.Top="-441" />
  1104. <Border x:Name="CBO_NoName_29" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1225" Canvas.Top="-204" />
  1105. <Border x:Name="CBO_NoName_30" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-847" />
  1106. <Border x:Name="CBO_NoName_31" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="836" Canvas.Top="-668" />
  1107. <Border x:Name="CBO_NoName_32" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1225" Canvas.Top="-204" />
  1108. <Border x:Name="CBO_NoName_33" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1376" Canvas.Top="-1206" />
  1109. <Border x:Name="CBO_NoName_34" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="4455" Canvas.Top="-489" />
  1110. <Border x:Name="CBO_NoName_35" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2357" Canvas.Top="-1302" />
  1111. <Border x:Name="CBO_NoName_36" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2221" Canvas.Top="-1415" />
  1112. <Border x:Name="CBO_NoName_37" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2357" Canvas.Top="-943" />
  1113. <Border x:Name="CBO_NoName_38" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="2212" Canvas.Top="-164" />
  1114. <Border x:Name="CBO_NoName_39" BorderBrush="#FF000000" Width="6" Height="6" CornerRadius="6" BorderThickness="2" Canvas.Left="2683" Canvas.Top="-250" />
  1115. <Border x:Name="CBO_NoName_40" BorderBrush="#FF000000" Width="6" Height="6" CornerRadius="6" BorderThickness="2" Canvas.Left="2683" Canvas.Top="-228" />
  1116. <Border x:Name="CBO_NoName_41" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="968" Canvas.Top="-1451" />
  1117. <Border x:Name="CBO_NoName_42" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="968" Canvas.Top="-1036" />
  1118. <Border x:Name="CBO_NoName_43" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="847" Canvas.Top="-1036" />
  1119. <Border x:Name="CBO_NoName_44" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="847" Canvas.Top="-1451" />
  1120. <Border x:Name="CBO_NoName_45" BorderBrush="#FF000000" Width="6" Height="6" CornerRadius="6" BorderThickness="2" Canvas.Left="704" Canvas.Top="-1156" />
  1121. <Border x:Name="CBO_NoName_46" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-393" />
  1122. <Border x:Name="CBO_NoName_47" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-499" />
  1123. <Border x:Name="CBO_NoName_48" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-620" />
  1124. <Border x:Name="CBO_NoName_49" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-733" />
  1125. <Border x:Name="CBO_NoName_50" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-733" />
  1126. <Border x:Name="CBO_NoName_51" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-620" />
  1127. <Border x:Name="CBO_NoName_52" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="3312" Canvas.Top="-158" />
  1128. <Border x:Name="CBO_NoName_53" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2357" Canvas.Top="-1245"/>
  1129. <Border x:Name="SensorATM" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="1769" Canvas.Top="-1852" />
  1130. <Border x:Name="SensorNoName_54" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="1776" Canvas.Top="-1844" />
  1131. <Border x:Name="SensorREFACT" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="2767" Canvas.Top="699" />
  1132. <Border x:Name="SensorNoName_55" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="2774" Canvas.Top="707" />
  1133. <Border x:Name="SensorDEPOOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="3470" Canvas.Top="510" />
  1134. <Border x:Name="SensorNoName_56" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="3477" Canvas.Top="518" />
  1135. <Border x:Name="SensorF2ClnOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="3942" Canvas.Top="510" />
  1136. <Border x:Name="SensorNoName_57" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="3950" Canvas.Top="518" />
  1137. <Border x:Name="SensorVAC1" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="3281" Canvas.Top="699" />
  1138. <Border x:Name="SensorNoName_58" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="3288" Canvas.Top="707" />
  1139. <Border x:Name="SensorVAC2" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="3470" Canvas.Top="699" />
  1140. <Border x:Name="SensorNoName_59" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="3477" Canvas.Top="707" />
  1141. <Border x:Name="SensorVAC3" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="3659" Canvas.Top="699" />
  1142. <Border x:Name="SensorNoName_60" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="3666" Canvas.Top="707" />
  1143. <Border x:Name="SensorVAC4" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="3848" Canvas.Top="699" />
  1144. <Border x:Name="SensorNoName_61" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="3855" Canvas.Top="707" />
  1145. <Border x:Name="SensorVAC5" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="4037" Canvas.Top="699" />
  1146. <Border x:Name="SensorNoName_62" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="4044" Canvas.Top="707" />
  1147. <Border x:Name="SensorHHOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="1599" Canvas.Top="-454" />
  1148. <Border x:Name="SensorNoName_63" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="1606" Canvas.Top="-446" />
  1149. <Border x:Name="SensorHOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="1712" Canvas.Top="-454" />
  1150. <Border x:Name="SensorNoName_64" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="1720" Canvas.Top="-446" />
  1151. <Border x:Name="SensorMOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="1826" Canvas.Top="-454" />
  1152. <Border x:Name="SensorNoName_65" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="1833" Canvas.Top="-446" />
  1153. <Border x:Name="SensorLOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="1939" Canvas.Top="-454" />
  1154. <Border x:Name="SensorNoName_66" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="1946" Canvas.Top="-446" />
  1155. <Border x:Name="SensorNF3OK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="4414" Canvas.Top="510" />
  1156. <Border x:Name="SensorNoName_67" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="4422" Canvas.Top="518" />
  1157. <Border x:Name="SensorVAC6" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="4226" Canvas.Top="699" />
  1158. <Border x:Name="SensorNoName_68" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="4233" Canvas.Top="707" />
  1159. <Border x:Name="SensorDGASOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="2918" Canvas.Top="699" />
  1160. <Border x:Name="SensorNoName_69" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="2925" Canvas.Top="707" />
  1161. <Border x:Name="SensorPRUN" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="550" Canvas.Top="265" />
  1162. <Border x:Name="SensorNoName_70" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="558" Canvas.Top="272" />
  1163. <Border x:Name="SensorVAC7" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="4414" Canvas.Top="699" />
  1164. <Border x:Name="SensorNoName_71" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="4422" Canvas.Top="707" />
  1165. </Canvas>
  1166. <Canvas x:Name="Line" Panel.ZIndex="0">
  1167. <Line X1="2294.3" Y1="-1636.53" X2="2362.33" Y2="-1636.53" Stroke="#FF000000" StrokeThickness="2"/>
  1168. <Line X1="2362.33" Y1="-1693.23" X2="2362.33" Y2="-1636.53" Stroke="#FF000000" StrokeThickness="2"/>
  1169. <Line X1="4459.84" Y1="173.852" X2="4459.84" Y2="-200.315" Stroke="#FF000000" StrokeThickness="2"/>
  1170. <Line X1="4063.12" Y1="-483.778" X2="4459.96" Y2="-483.788" Stroke="#FF000000" StrokeThickness="2"/>
  1171. <Line X1="4459.9" Y1="-483.788" X2="4459.9" Y2="-275.905" Stroke="#FF000000" StrokeThickness="2"/>
  1172. <Line X1="4119.75" Y1="-1239.69" X2="2570.21" Y2="-1239.68" Stroke="#FF000000" StrokeThickness="2"/>
  1173. <Line X1="2226.27" Y1="-1309.61" X2="2226.27" Y2="-1409.76" Stroke="#FF000000" StrokeThickness="2"/>
  1174. <Line X1="2226.27" Y1="-1139.53" X2="2226.27" Y2="-1283.15" Stroke="#FF000000" StrokeThickness="2"/>
  1175. <Line X1="2226.27" Y1="-994.015" X2="2226.27" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1176. <Line X1="2294.3" Y1="-1636.53" X2="2294.3" Y2="-1579.83" Stroke="#FF000000" StrokeThickness="2"/>
  1177. <Line X1="2362.33" Y1="-1409.76" X2="2324.54" Y2="-1409.76" Stroke="#FF000000" StrokeThickness="2"/>
  1178. <Line X1="2362.33" Y1="-1466.46" X2="2362.33" Y2="-1409.76" Stroke="#FF000000" StrokeThickness="2"/>
  1179. <Line X1="2400.12" Y1="-1409.76" X2="2352.88" Y2="-1409.76" Stroke="#FF000000" StrokeThickness="2"/>
  1180. <Line X1="2362.33" Y1="-1353.07" X2="2362.33" Y2="-1296.38" Stroke="#FF000000" StrokeThickness="2"/>
  1181. <Line X1="4119.75" Y1="-483.779" X2="4119.76" Y2="-532.914" Stroke="#FF000000" StrokeThickness="2"/>
  1182. <Line X1="1493.04" Y1="-1031.81" X2="1587.53" Y2="-1031.81" Stroke="#FF000000" StrokeThickness="2"/>
  1183. <Line X1="1625.32" Y1="-1436.22" X2="994.142" Y2="-1436.21" Stroke="#FF000000" StrokeThickness="2"/>
  1184. <Line X1="1625.32" Y1="-1458.89" X2="971.465" Y2="-1458.89" Stroke="#FF000000" StrokeThickness="2"/>
  1185. <Line X1="994.142" Y1="-1436.21" X2="994.143" Y2="-1379.53" Stroke="#FF000000" StrokeThickness="2"/>
  1186. <Line X1="971.465" Y1="-1458.89" X2="971.465" Y2="-1379.53" Stroke="#FF000000" StrokeThickness="2"/>
  1187. <Line X1="971.467" Y1="-1165.8" X2="971.468" Y2="-929.758" Stroke="#FF000000" StrokeThickness="2"/>
  1188. <Line X1="971.466" Y1="-1288.82" X2="971.466" Y2="-1237.98" Stroke="#FF000000" StrokeThickness="2"/>
  1189. <Line X1="971.468" Y1="-907.081" X2="971.469" Y2="-671.015" Stroke="#FF000000" StrokeThickness="2"/>
  1190. <Line X1="971.469" Y1="-671.015" X2="971.472" Y2="264.563" Stroke="#FF000000" StrokeThickness="2"/>
  1191. <Line X1="971.473" Y1="317.476" X2="971.473" Y2="359.051" Stroke="#FF000000" StrokeThickness="2"/>
  1192. <Line X1="994.144" Y1="-1165.88" X2="994.146" Y2="-671.013" Stroke="#FF000000" StrokeThickness="2"/>
  1193. <Line X1="994.143" Y1="-1288.82" X2="994.143" Y2="-1237.9" Stroke="#FF000000" StrokeThickness="2"/>
  1194. <Line X1="994.146" Y1="-671.013" X2="994.149" Y2="264.563" Stroke="#FF000000" StrokeThickness="2"/>
  1195. <Line X1="994.15" Y1="317.476" X2="994.15" Y2="359.051" Stroke="#FF000000" StrokeThickness="2"/>
  1196. <Line X1="971.473" Y1="563.146" X2="971.474" Y2="612.287" Stroke="#FF000000" StrokeThickness="2"/>
  1197. <Line X1="994.15" Y1="563.146" X2="994.151" Y2="612.287" Stroke="#FF000000" StrokeThickness="2"/>
  1198. <Line X1="1493.04" Y1="-1182.99" X2="1493.04" Y2="-1145.19" Stroke="#FF000000" StrokeThickness="2"/>
  1199. <Line X1="1493.04" Y1="-1296.38" X2="1493.04" Y2="-1258.57" Stroke="#FF000000" StrokeThickness="2"/>
  1200. <Line X1="1493.04" Y1="-1069.61" X2="1493.04" Y2="-1031.81" Stroke="#FF000000" StrokeThickness="2"/>
  1201. <Line X1="1493.04" Y1="-1371.97" X2="1493.04" Y2="-1436.22" Stroke="#FF000000" StrokeThickness="2"/>
  1202. <Line X1="963.906" Y1="347.713" X2="907.213" Y2="347.713" Stroke="#FF000000" StrokeThickness="2"/>
  1203. <Line X1="907.213" Y1="347.713" X2="907.213" Y2="574.484" Stroke="#FF000000" StrokeThickness="2"/>
  1204. <Line X1="907.213" Y1="574.484" X2="963.906" Y2="574.484" Stroke="#FF000000" StrokeThickness="2"/>
  1205. <Line X1="1001.7" Y1="347.713" X2="1054.62" Y2="347.713" Stroke="#FF000000" StrokeThickness="2"/>
  1206. <Line X1="1054.62" Y1="347.713" X2="1054.62" Y2="574.484" Stroke="#FF000000" StrokeThickness="2"/>
  1207. <Line X1="1054.62" Y1="574.484" X2="1001.7" Y2="574.484" Stroke="#FF000000" StrokeThickness="2"/>
  1208. <Line X1="971.473" Y1="449.76" X2="971.473" Y2="472.437" Stroke="#FF000000" StrokeThickness="2"/>
  1209. <Line X1="994.15" Y1="449.76" X2="994.15" Y2="472.437" Stroke="#FF000000" StrokeThickness="2"/>
  1210. <Line X1="971.474" Y1="612.287" X2="962.007" Y2="631.177" Stroke="#FF000000" StrokeThickness="2"/>
  1211. <Line X1="994.151" Y1="612.287" X2="1003.6" Y2="631.177" Stroke="#FF000000" StrokeThickness="2"/>
  1212. <Line X1="4459.84" Y1="272.126" X2="4459.84" Y2="219.206" Stroke="#FF000000" StrokeThickness="2"/>
  1213. <Line X1="4459.9" Y1="-483.779" X2="4459.91" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
  1214. <Line X1="4459.9" Y1="-918.431" X2="4459.84" Y2="-1749.92" Stroke="#FF000000" StrokeThickness="2"/>
  1215. <Line X1="4403.21" Y1="-483.779" X2="4403.21" Y2="-646.299" Stroke="#FF000000" StrokeThickness="2"/>
  1216. <Line X1="4403.21" Y1="-1031.82" X2="4403.15" Y2="-1636.54" Stroke="#FF000000" StrokeThickness="2"/>
  1217. <Line X1="4346.52" Y1="-483.779" X2="4346.53" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
  1218. <Line X1="4346.52" Y1="-918.432" X2="4346.52" Y2="-1466.47" Stroke="#FF000000" StrokeThickness="2"/>
  1219. <Line X1="4289.82" Y1="-483.779" X2="4289.82" Y2="-646.299" Stroke="#FF000000" StrokeThickness="2"/>
  1220. <Line X1="4289.82" Y1="-1031.82" X2="4289.82" Y2="-1353.08" Stroke="#FF000000" StrokeThickness="2"/>
  1221. <Line X1="4233.13" Y1="-483.779" X2="4233.14" Y2="-532.914" Stroke="#FF000000" StrokeThickness="2"/>
  1222. <Line X1="4233.07" Y1="-1649.77" X2="4233.07" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
  1223. <Line X1="4233.13" Y1="-1479.7" X2="4233.07" Y2="-1623.31" Stroke="#FF000000" StrokeThickness="2"/>
  1224. <Line X1="4233.13" Y1="-1366.31" X2="4233.13" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
  1225. <Line X1="4233.13" Y1="-918.432" X2="4233.13" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
  1226. <Line X1="4176.44" Y1="-1031.82" X2="4176.44" Y2="-1126.3" Stroke="#FF000000" StrokeThickness="2"/>
  1227. <Line X1="4119.75" Y1="-918.432" X2="4119.75" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1228. <Line X1="4119.75" Y1="-1139.53" X2="4119.75" Y2="-1239.69" Stroke="#FF000000" StrokeThickness="2"/>
  1229. <Line X1="3949.67" Y1="173.852" X2="3949.67" Y2="77.4806" Stroke="#FF000000" StrokeThickness="2"/>
  1230. <Line X1="3949.67" Y1="51.0239" X2="3949.67" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
  1231. <Line X1="3949.67" Y1="-275.912" X2="3949.67" Y2="-532.914" Stroke="#FF000000" StrokeThickness="2"/>
  1232. <Line X1="3949.67" Y1="-623.622" X2="3949.67" Y2="-956.223" Stroke="#FF000000" StrokeThickness="2"/>
  1233. <Line X1="4006.43" Y1="-1088.5" X2="4006.43" Y2="-1113.06" Stroke="#FF000000" StrokeThickness="2"/>
  1234. <Line X1="4006.36" Y1="-1574.39" X2="4006.36" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
  1235. <Line X1="3892.97" Y1="-389.298" X2="3892.97" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
  1236. <Line X1="3949.67" Y1="-1031.81" X2="3949.67" Y2="-1056.38" Stroke="#FF000000" StrokeThickness="2"/>
  1237. <Line X1="3949.6" Y1="-1706.46" X2="3949.6" Y2="-1749.92" Stroke="#FF000000" StrokeThickness="2"/>
  1238. <Line X1="3949.6" Y1="-1649.77" X2="3949.6" Y2="-1680" Stroke="#FF000000" StrokeThickness="2"/>
  1239. <Line X1="3949.67" Y1="-1479.7" X2="3949.6" Y2="-1623.31" Stroke="#FF000000" StrokeThickness="2"/>
  1240. <Line X1="3949.67" Y1="-1366.31" X2="3949.67" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
  1241. <Line X1="3949.67" Y1="-1252.92" X2="3949.67" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
  1242. <Line X1="3949.67" Y1="-1139.53" X2="3949.67" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
  1243. <Line X1="3949.67" Y1="-1196.22" X2="3949.67" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
  1244. <Line X1="3949.67" Y1="-1082.83" X2="3949.67" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1245. <Line X1="3836.28" Y1="120.945" X2="3836.28" Y2="77.4806" Stroke="#FF000000" StrokeThickness="2"/>
  1246. <Line X1="3836.28" Y1="51.0239" X2="3836.28" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
  1247. <Line X1="3836.28" Y1="-275.912" X2="3836.28" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
  1248. <Line X1="3836.28" Y1="-623.621" X2="3836.28" Y2="-956.227" Stroke="#FF000000" StrokeThickness="2"/>
  1249. <Line X1="3892.97" Y1="-918.422" X2="3892.97" Y2="-1069.58" Stroke="#FF000000" StrokeThickness="2"/>
  1250. <Line X1="3779.59" Y1="-389.298" X2="3779.59" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
  1251. <Line X1="3836.22" Y1="-1649.77" X2="3836.22" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
  1252. <Line X1="3836.28" Y1="-1479.7" X2="3836.22" Y2="-1623.31" Stroke="#FF000000" StrokeThickness="2"/>
  1253. <Line X1="3836.28" Y1="-1366.31" X2="3836.28" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
  1254. <Line X1="3836.28" Y1="-1252.92" X2="3836.28" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
  1255. <Line X1="3836.28" Y1="-1139.53" X2="3836.28" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
  1256. <Line X1="3836.28" Y1="-1196.22" X2="3836.28" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
  1257. <Line X1="3836.28" Y1="-1031.82" X2="3836.28" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1258. <Line X1="3722.89" Y1="272.126" X2="3722.89" Y2="219.206" Stroke="#FF000000" StrokeThickness="2"/>
  1259. <Line X1="3722.89" Y1="173.852" X2="3722.89" Y2="134.174" Stroke="#FF000000" StrokeThickness="2"/>
  1260. <Line X1="3722.89" Y1="134.174" X2="3722.89" Y2="77.4806" Stroke="#FF000000" StrokeThickness="2"/>
  1261. <Line X1="3722.89" Y1="51.0241" X2="3722.89" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
  1262. <Line X1="3722.91" Y1="-623.621" X2="3722.89" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1263. <Line X1="3779.59" Y1="-918.422" X2="3779.59" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1264. <Line X1="3779.65" Y1="-1761.26" X2="3779.65" Y2="-1976.69" Stroke="#FF000000" StrokeThickness="2"/>
  1265. <Line X1="3779.52" Y1="-1706.46" X2="3779.52" Y2="-1736.69" Stroke="#FF000000" StrokeThickness="2"/>
  1266. <Line X1="3779.52" Y1="-1649.77" X2="3779.52" Y2="-1680" Stroke="#FF000000" StrokeThickness="2"/>
  1267. <Line X1="3779.59" Y1="-1479.7" X2="3779.52" Y2="-1623.31" Stroke="#FF000000" StrokeThickness="2"/>
  1268. <Line X1="3779.59" Y1="-1366.31" X2="3779.59" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
  1269. <Line X1="3779.59" Y1="-1252.92" X2="3779.59" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
  1270. <Line X1="3779.59" Y1="-1139.53" X2="3779.59" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
  1271. <Line X1="3779.59" Y1="-1196.22" X2="3779.59" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
  1272. <Line X1="3722.89" Y1="-1031.82" X2="3722.89" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1273. <Line X1="3722.89" Y1="-1139.53" X2="3722.89" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
  1274. <Line X1="3722.89" Y1="-1196.22" X2="3722.89" Y2="-1239.69" Stroke="#FF000000" StrokeThickness="2"/>
  1275. <Line X1="3609.51" Y1="173.852" X2="3609.51" Y2="77.4798" Stroke="#FF000000" StrokeThickness="2"/>
  1276. <Line X1="3609.51" Y1="51.0241" X2="3609.51" Y2="-30.2324" Stroke="#FF000000" StrokeThickness="2"/>
  1277. <Line X1="3609.51" Y1="-30.2324" X2="3609.51" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
  1278. <Line X1="3609.51" Y1="-275.912" X2="3609.51" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
  1279. <Line X1="3609.51" Y1="-1031.82" X2="3609.51" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1280. <Line X1="3609.51" Y1="-1479.7" X2="3609.51" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
  1281. <Line X1="3609.51" Y1="-1366.31" X2="3609.51" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
  1282. <Line X1="3609.51" Y1="-1252.92" X2="3609.51" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
  1283. <Line X1="3609.51" Y1="-1139.53" X2="3609.51" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
  1284. <Line X1="3609.51" Y1="-1196.22" X2="3609.51" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
  1285. <Line X1="3552.82" Y1="-389.298" X2="3552.82" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
  1286. <Line X1="3496.12" Y1="173.852" X2="3496.12" Y2="134.174" Stroke="#FF000000" StrokeThickness="2"/>
  1287. <Line X1="3496.12" Y1="134.174" X2="3496.12" Y2="77.4798" Stroke="#FF000000" StrokeThickness="2"/>
  1288. <Line X1="3496.12" Y1="51.0241" X2="3496.12" Y2="-17.0072" Stroke="#FF000000" StrokeThickness="2"/>
  1289. <Line X1="3496.12" Y1="-43.4639" X2="3496.12" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
  1290. <Line X1="3496.12" Y1="-275.912" X2="3496.12" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
  1291. <Line X1="3496.12" Y1="-623.622" X2="3496.13" Y2="-956.226" Stroke="#FF000000" StrokeThickness="2"/>
  1292. <Line X1="3439.43" Y1="-389.298" X2="3439.43" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
  1293. <Line X1="3496.12" Y1="-1479.7" X2="3496.12" Y2="-1536.38" Stroke="#FF000000" StrokeThickness="2"/>
  1294. <Line X1="3496.12" Y1="-1366.31" X2="3496.12" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
  1295. <Line X1="3496.12" Y1="-1252.92" X2="3496.12" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
  1296. <Line X1="3496.12" Y1="-1139.53" X2="3496.12" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
  1297. <Line X1="3496.12" Y1="-1196.22" X2="3496.12" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
  1298. <Line X1="3496.12" Y1="-1082.83" X2="3496.12" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1299. <Line X1="3496.12" Y1="-1031.82" X2="3496.12" Y2="-1056.38" Stroke="#FF000000" StrokeThickness="2"/>
  1300. <Line X1="3496.12" Y1="-1536.38" X2="3496.12" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
  1301. <Line X1="3382.74" Y1="173.852" X2="3382.74" Y2="134.174" Stroke="#FF000000" StrokeThickness="2"/>
  1302. <Line X1="3382.74" Y1="134.174" X2="3382.74" Y2="77.481" Stroke="#FF000000" StrokeThickness="2"/>
  1303. <Line X1="3382.74" Y1="51.0243" X2="3382.74" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
  1304. <Line X1="3439.43" Y1="-918.421" X2="3439.43" Y2="-1069.57" Stroke="#FF000000" StrokeThickness="2"/>
  1305. <Line X1="3382.74" Y1="-623.621" X2="3382.74" Y2="-956.226" Stroke="#FF000000" StrokeThickness="2"/>
  1306. <Line X1="3326.04" Y1="64.252" X2="4459.84" Y2="64.252" Stroke="#FF000000" StrokeThickness="2"/>
  1307. <Line X1="3382.74" Y1="-427.086" X2="3439.43" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
  1308. <Line X1="3496.12" Y1="-427.086" X2="3552.82" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
  1309. <Line X1="3722.89" Y1="-427.086" X2="3779.59" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
  1310. <Line X1="3836.28" Y1="-427.086" X2="3892.97" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
  1311. <Line X1="3949.67" Y1="-427.086" X2="4006.36" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
  1312. <Line X1="3382.74" Y1="-786.148" X2="3439.43" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1313. <Line X1="3496.12" Y1="-786.148" X2="3552.82" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1314. <Line X1="3722.89" Y1="-786.148" X2="3779.59" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1315. <Line X1="3836.28" Y1="-786.148" X2="3892.97" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1316. <Line X1="3949.67" Y1="-786.148" X2="4006.43" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1317. <Line X1="3496.12" Y1="219.206" X2="3496.12" Y2="272.126" Stroke="#FF000000" StrokeThickness="2"/>
  1318. <Line X1="3382.73" Y1="219.206" X2="3382.73" Y2="272.126" Stroke="#FF000000" StrokeThickness="2"/>
  1319. <Line X1="3609.51" Y1="219.206" X2="3609.51" Y2="272.126" Stroke="#FF000000" StrokeThickness="2"/>
  1320. <Line X1="3949.66" Y1="219.206" X2="3949.66" Y2="272.126" Stroke="#FF000000" StrokeThickness="2"/>
  1321. <Line X1="3722.89" Y1="-786.148" X2="3722.9" Y2="-956.227" Stroke="#FF000000" StrokeThickness="2"/>
  1322. <Line X1="3552.82" Y1="-75.5902" X2="3552.82" Y2="-30.2322" Stroke="#FF000000" StrokeThickness="2"/>
  1323. <Line X1="3779.59" Y1="-285.36" X2="3779.59" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
  1324. <Line X1="3779.59" Y1="15.1245" X2="3779.59" Y2="64.2523" Stroke="#FF000000" StrokeThickness="2"/>
  1325. <Line X1="3892.97" Y1="-285.36" X2="3892.97" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
  1326. <Line X1="3892.97" Y1="15.1246" X2="3892.97" Y2="64.2523" Stroke="#FF000000" StrokeThickness="2"/>
  1327. <Line X1="4006.36" Y1="-285.36" X2="4006.36" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
  1328. <Line X1="4006.36" Y1="15.1184" X2="4006.36" Y2="64.2522" Stroke="#FF000000" StrokeThickness="2"/>
  1329. <Line X1="4119.75" Y1="-842.841" X2="4119.75" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1330. <Line X1="3609.51" Y1="-623.622" X2="3609.51" Y2="-956.227" Stroke="#FF000000" StrokeThickness="2"/>
  1331. <Line X1="4459.91" Y1="-842.841" X2="4459.91" Y2="-623.622" Stroke="#FF000000" StrokeThickness="2"/>
  1332. <Line X1="4403.21" Y1="-956.227" X2="4403.21" Y2="-737.008" Stroke="#FF000000" StrokeThickness="2"/>
  1333. <Line X1="4346.52" Y1="-842.841" X2="4346.53" Y2="-623.622" Stroke="#FF000000" StrokeThickness="2"/>
  1334. <Line X1="4289.82" Y1="-956.226" X2="4289.82" Y2="-737.008" Stroke="#FF000000" StrokeThickness="2"/>
  1335. <Line X1="4233.13" Y1="-842.841" X2="4233.14" Y2="-623.622" Stroke="#FF000000" StrokeThickness="2"/>
  1336. <Line X1="4176.44" Y1="-956.227" X2="4176.44" Y2="-737.008" Stroke="#FF000000" StrokeThickness="2"/>
  1337. <Line X1="4119.75" Y1="-842.841" X2="4119.76" Y2="-623.622" Stroke="#FF000000" StrokeThickness="2"/>
  1338. <Line X1="4176.42" Y1="-646.299" X2="4176.44" Y2="-483.779" Stroke="#FF000000" StrokeThickness="2"/>
  1339. <Line X1="4006.43" Y1="-842.823" X2="4006.43" Y2="-786.139" Stroke="#FF000000" StrokeThickness="2"/>
  1340. <Line X1="3892.97" Y1="-842.831" X2="3892.97" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1341. <Line X1="3722.89" Y1="-532.913" X2="3722.89" Y2="-275.912" Stroke="#FF000000" StrokeThickness="2"/>
  1342. <Line X1="3779.59" Y1="-842.831" X2="3779.59" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1343. <Line X1="3382.74" Y1="-532.913" X2="3382.74" Y2="-275.912" Stroke="#FF000000" StrokeThickness="2"/>
  1344. <Line X1="3382.74" Y1="-1479.7" X2="3382.74" Y2="-1536.38" Stroke="#FF000000" StrokeThickness="2"/>
  1345. <Line X1="3382.74" Y1="-1366.31" X2="3382.74" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
  1346. <Line X1="3382.74" Y1="-1252.92" X2="3382.74" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
  1347. <Line X1="3382.74" Y1="-1139.53" X2="3382.74" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
  1348. <Line X1="3382.74" Y1="-1196.22" X2="3382.74" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
  1349. <Line X1="3382.74" Y1="-1031.82" X2="3382.74" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1350. <Line X1="3382.74" Y1="-1536.38" X2="3382.74" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
  1351. <Line X1="3439.43" Y1="-842.831" X2="3439.43" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1352. <Line X1="3552.82" Y1="-842.831" X2="3552.82" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1353. <Line X1="4006.36" Y1="-313.707" X2="4006.36" Y2="-157.795" Stroke="#FF000000" StrokeThickness="2"/>
  1354. <Line X1="4006.36" Y1="-118.911" X2="4006.36" Y2="15.1184" Stroke="#FF000000" StrokeThickness="2"/>
  1355. <Line X1="3892.97" Y1="-313.707" X2="3892.97" Y2="-157.795" Stroke="#FF000000" StrokeThickness="2"/>
  1356. <Line X1="3892.97" Y1="-118.911" X2="3892.97" Y2="15.1246" Stroke="#FF000000" StrokeThickness="2"/>
  1357. <Line X1="3779.59" Y1="-313.707" X2="3779.59" Y2="-157.795" Stroke="#FF000000" StrokeThickness="2"/>
  1358. <Line X1="3779.59" Y1="-118.911" X2="3779.59" Y2="15.1245" Stroke="#FF000000" StrokeThickness="2"/>
  1359. <Line X1="3552.82" Y1="-313.707" X2="3552.82" Y2="-157.795" Stroke="#FF000000" StrokeThickness="2"/>
  1360. <Line X1="3552.82" Y1="-118.911" X2="3552.82" Y2="-75.5902" Stroke="#FF000000" StrokeThickness="2"/>
  1361. <Line X1="3439.43" Y1="-313.707" X2="3439.43" Y2="-157.795" Stroke="#FF000000" StrokeThickness="2"/>
  1362. <Line X1="3439.43" Y1="-118.911" X2="3439.43" Y2="-30.2341" Stroke="#FF000000" StrokeThickness="2"/>
  1363. <Line X1="3552.76" Y1="-1920" X2="2834.77" Y2="-1920" Stroke="#FF000000" StrokeThickness="2"/>
  1364. <Line X1="4006.3" Y1="-2033.39" X2="2834.77" Y2="-2033.39" Stroke="#FF000000" StrokeThickness="2"/>
  1365. <Line X1="2834.77" Y1="-1976.69" X2="2381.23" Y2="-1976.69" Stroke="#FF000000" StrokeThickness="2"/>
  1366. <Line X1="3779.65" Y1="-1976.69" X2="2834.77" Y2="-1976.69" Stroke="#FF000000" StrokeThickness="2"/>
  1367. <Line X1="2834.77" Y1="-1920" X2="2480.44" Y2="-1920" Stroke="#FF000000" StrokeThickness="2"/>
  1368. <Line X1="2480.44" Y1="-1920" X2="2381.23" Y2="-1920" Stroke="#FF000000" StrokeThickness="2"/>
  1369. <Line X1="2683.59" Y1="-1749.92" X2="2664.69" Y2="-1749.92" Stroke="#FF000000" StrokeThickness="2"/>
  1370. <Line X1="2919.81" Y1="-1749.92" X2="2759.18" Y2="-1749.92" Stroke="#FF000000" StrokeThickness="2"/>
  1371. <Line X1="3118.22" Y1="-1749.92" X2="3052.09" Y2="-1749.92" Stroke="#FF000000" StrokeThickness="2"/>
  1372. <Line X1="4459.84" Y1="-1749.92" X2="3193.81" Y2="-1749.92" Stroke="#FF000000" StrokeThickness="2"/>
  1373. <Line X1="2778.08" Y1="-1693.23" X2="2664.69" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
  1374. <Line X1="2919.81" Y1="-1693.23" X2="2853.67" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
  1375. <Line X1="3212.71" Y1="-1693.23" X2="3052.09" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
  1376. <Line X1="4233.07" Y1="-1693.23" X2="3288.3" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
  1377. <Line X1="2494.62" Y1="-1693.24" X2="2362.33" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
  1378. <Line X1="2645.79" Y1="-1693.23" X2="2570.21" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
  1379. <Line X1="3609.51" Y1="-1579.84" X2="3118.24" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
  1380. <Line X1="2400.13" Y1="-1636.54" X2="2362.33" Y2="-1636.54" Stroke="#FF000000" StrokeThickness="2"/>
  1381. <Line X1="4006.36" Y1="-427.086" X2="4006.36" Y2="-389.298" Stroke="#FF000000" StrokeThickness="2"/>
  1382. <Line X1="2645.79" Y1="-1693.23" X2="2645.79" Y2="-1749.93" Stroke="#FF000000" StrokeThickness="2"/>
  1383. <Line X1="2834.77" Y1="-2033.39" X2="2381.23" Y2="-2033.39" Stroke="#FF000000" StrokeThickness="2"/>
  1384. <Line X1="2664.69" Y1="-1749.92" X2="2645.79" Y2="-1749.93" Stroke="#FF000000" StrokeThickness="2"/>
  1385. <Line X1="2702.49" Y1="-1693.23" X2="2645.8" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
  1386. <Line X1="2154.46" Y1="-1579.84" X2="2494.62" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
  1387. <Line X1="2919.81" Y1="-1636.54" X2="2475.72" Y2="-1636.54" Stroke="#FF000000" StrokeThickness="2"/>
  1388. <Line X1="3118.24" Y1="-1579.84" X2="2570.21" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
  1389. <Line X1="2919.81" Y1="-1466.46" X2="2570.21" Y2="-1466.46" Stroke="#FF000000" StrokeThickness="2"/>
  1390. <Line X1="2494.61" Y1="-1466.46" X2="2362.33" Y2="-1466.46" Stroke="#FF000000" StrokeThickness="2"/>
  1391. <Line X1="2367.78" Y1="-1636.54" X2="2373.45" Y2="-1636.54" Stroke="#FF000000" StrokeThickness="2"/>
  1392. <Line X1="2494.61" Y1="-1126.3" X2="2116.66" Y2="-1126.3" Stroke="#FF000000" StrokeThickness="2"/>
  1393. <Line X1="4176.44" Y1="-1126.3" X2="2570.21" Y2="-1126.3" Stroke="#FF000000" StrokeThickness="2"/>
  1394. <Line X1="4006.36" Y1="-1763.14" X2="4006.36" Y2="-2033.38" Stroke="#FF000000" StrokeThickness="2"/>
  1395. <Line X1="4006.36" Y1="-1706.45" X2="4006.36" Y2="-1736.68" Stroke="#FF000000" StrokeThickness="2"/>
  1396. <Line X1="4006.36" Y1="-1649.76" X2="4006.36" Y2="-1679.99" Stroke="#FF000000" StrokeThickness="2"/>
  1397. <Line X1="4006.43" Y1="-1479.69" X2="4006.36" Y2="-1623.3" Stroke="#FF000000" StrokeThickness="2"/>
  1398. <Line X1="4006.43" Y1="-1366.3" X2="4006.43" Y2="-1453.23" Stroke="#FF000000" StrokeThickness="2"/>
  1399. <Line X1="4006.43" Y1="-1252.91" X2="4006.43" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
  1400. <Line X1="4006.43" Y1="-1139.52" X2="4006.43" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
  1401. <Line X1="4006.43" Y1="-1196.21" X2="4006.43" Y2="-1226.45" Stroke="#FF000000" StrokeThickness="2"/>
  1402. <Line X1="3552.93" Y1="-918.421" X2="3552.82" Y2="-1069.59" Stroke="#FF000000" StrokeThickness="2"/>
  1403. <Line X1="3552.76" Y1="-1763.15" X2="3552.76" Y2="-1920" Stroke="#FF000000" StrokeThickness="2"/>
  1404. <Line X1="3552.76" Y1="-1706.46" X2="3552.76" Y2="-1736.69" Stroke="#FF000000" StrokeThickness="2"/>
  1405. <Line X1="3552.76" Y1="-1649.77" X2="3552.76" Y2="-1680" Stroke="#FF000000" StrokeThickness="2"/>
  1406. <Line X1="3552.82" Y1="-1593.07" X2="3552.76" Y2="-1623.31" Stroke="#FF000000" StrokeThickness="2"/>
  1407. <Line X1="3552.82" Y1="-1479.7" X2="3552.82" Y2="-1566.61" Stroke="#FF000000" StrokeThickness="2"/>
  1408. <Line X1="3552.83" Y1="-1366.31" X2="3552.83" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
  1409. <Line X1="3552.84" Y1="-1252.92" X2="3552.83" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
  1410. <Line X1="3552.84" Y1="-1139.53" X2="3552.84" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
  1411. <Line X1="3552.84" Y1="-1196.22" X2="3552.84" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
  1412. <Line X1="3552.82" Y1="-1069.59" X2="3552.85" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1413. <Line X1="2116.66" Y1="-1126.3" X2="2059.97" Y2="-1126.3" Stroke="#FF000000" StrokeThickness="2"/>
  1414. <Line X1="2324.54" Y1="-1409.76" X2="2003.28" Y2="-1409.76" Stroke="#FF000000" StrokeThickness="2"/>
  1415. <Line X1="2154.46" Y1="-1353.07" X2="2003.28" Y2="-1353.07" Stroke="#FF000000" StrokeThickness="2"/>
  1416. <Line X1="2400.12" Y1="-1296.38" X2="2286.74" Y2="-1296.38" Stroke="#FF000000" StrokeThickness="2"/>
  1417. <Line X1="2343.43" Y1="-1296.38" X2="2003.28" Y2="-1296.38" Stroke="#FF000000" StrokeThickness="2"/>
  1418. <Line X1="2154.46" Y1="-1396.54" X2="2154.46" Y2="-1353.07" Stroke="#FF000000" StrokeThickness="2"/>
  1419. <Line X1="2154.46" Y1="-1579.84" X2="2154.46" Y2="-1422.99" Stroke="#FF000000" StrokeThickness="2"/>
  1420. <Line X1="2294.3" Y1="-1239.68" X2="2294.3" Y2="-1296.38" Stroke="#FF000000" StrokeThickness="2"/>
  1421. <Line X1="2154.46" Y1="-1353.07" X2="2078.87" Y2="-1353.08" Stroke="#FF000000" StrokeThickness="2"/>
  1422. <Line X1="4414.56" Y1="-578.267" X2="4505.27" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1423. <Line X1="4475.03" Y1="-532.913" X2="4475.03" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1424. <Line X1="4357.86" Y1="-691.654" X2="4448.56" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
  1425. <Line X1="4418.33" Y1="-646.299" X2="4418.33" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
  1426. <Line X1="4301.17" Y1="-578.267" X2="4391.88" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1427. <Line X1="4361.64" Y1="-532.913" X2="4361.64" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1428. <Line X1="4244.47" Y1="-691.654" X2="4335.18" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
  1429. <Line X1="4304.94" Y1="-646.299" X2="4304.94" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
  1430. <Line X1="4187.79" Y1="-578.268" X2="4278.5" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
  1431. <Line X1="4248.26" Y1="-532.914" X2="4248.26" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
  1432. <Line X1="4074.4" Y1="-578.268" X2="4165.11" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
  1433. <Line X1="4134.87" Y1="-532.914" X2="4134.87" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
  1434. <Line X1="3904.31" Y1="-578.268" X2="3995.02" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
  1435. <Line X1="3964.79" Y1="-532.914" X2="3964.79" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
  1436. <Line X1="3790.93" Y1="-578.267" X2="3881.63" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1437. <Line X1="3851.4" Y1="-532.913" X2="3851.4" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1438. <Line X1="3677.54" Y1="-578.267" X2="3768.25" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1439. <Line X1="3738.01" Y1="-532.913" X2="3738.01" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1440. <Line X1="3564.16" Y1="-578.268" X2="3654.86" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
  1441. <Line X1="3624.63" Y1="-532.913" X2="3624.63" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
  1442. <Line X1="3450.77" Y1="-578.267" X2="3541.48" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1443. <Line X1="3511.24" Y1="-532.913" X2="3511.24" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1444. <Line X1="3337.38" Y1="-578.267" X2="3428.09" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1445. <Line X1="3397.86" Y1="-532.913" X2="3397.86" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1446. <Line X1="3984.09" Y1="-150.708" X2="4006.36" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
  1447. <Line X1="4028.62" Y1="-150.708" X2="4006.36" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
  1448. <Line X1="3870.71" Y1="-150.708" X2="3892.97" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
  1449. <Line X1="3915.24" Y1="-150.708" X2="3892.97" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
  1450. <Line X1="3757.32" Y1="-150.708" X2="3779.59" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
  1451. <Line X1="3801.85" Y1="-150.708" X2="3779.59" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
  1452. <Line X1="3530.55" Y1="-150.708" X2="3552.82" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
  1453. <Line X1="3575.08" Y1="-150.708" X2="3552.82" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
  1454. <Line X1="3417.17" Y1="-150.708" X2="3439.43" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
  1455. <Line X1="3461.69" Y1="-150.708" X2="3439.43" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
  1456. <Line X1="2645.79" Y1="-1409.76" X2="2475.71" Y2="-1409.76" Stroke="#FF000000" StrokeThickness="2"/>
  1457. <Line X1="2003.28" Y1="-1145.18" X2="2003.28" Y2="-1880.62" Stroke="#FF000000" StrokeThickness="2"/>
  1458. <Line X1="1625.32" Y1="-1145.18" X2="1625.32" Y2="-1880.62" Stroke="#FF000000" StrokeThickness="2"/>
  1459. <Line X1="2041.07" Y1="-1107.39" X2="1587.53" Y2="-1107.39" Stroke="#FF000000" StrokeThickness="2"/>
  1460. <Line X1="1663.12" Y1="-1107.39" X2="1663.12" Y2="-1145.18" Stroke="#FF000000" StrokeThickness="2"/>
  1461. <Line X1="1965.48" Y1="-1107.39" X2="1965.48" Y2="-1145.18" Stroke="#FF000000" StrokeThickness="2"/>
  1462. <Line X1="1587.53" Y1="-1107.39" X2="1587.53" Y2="-1088.49" Stroke="#FF000000" StrokeThickness="2"/>
  1463. <Line X1="1587.53" Y1="-1088.49" X2="2041.07" Y2="-1088.49" Stroke="#FF000000" StrokeThickness="2"/>
  1464. <Line X1="2041.07" Y1="-1088.49" X2="2041.07" Y2="-1107.39" Stroke="#FF000000" StrokeThickness="2"/>
  1465. <Line X1="1587.53" Y1="-1088.49" X2="1587.53" Y2="-1088.49" Stroke="#FF000000" StrokeThickness="2"/>
  1466. <Line X1="1587.53" Y1="-1088.49" X2="1587.53" Y2="-918.429" Stroke="#FF000000" StrokeThickness="2"/>
  1467. <Line X1="2041.07" Y1="-1088.49" X2="2041.07" Y2="-1088.49" Stroke="#FF000000" StrokeThickness="2"/>
  1468. <Line X1="2041.07" Y1="-1088.49" X2="2041.07" Y2="-918.429" Stroke="#FF000000" StrokeThickness="2"/>
  1469. <Line X1="1984.38" Y1="-1069.6" X2="1644.22" Y2="-1069.59" Stroke="#FF000000" StrokeThickness="2"/>
  1470. <Line X1="1984.38" Y1="-1054.48" X2="1644.22" Y2="-1054.48" Stroke="#FF000000" StrokeThickness="2"/>
  1471. <Line X1="1984.38" Y1="-1069.6" X2="1984.38" Y2="-1054.48" Stroke="#FF000000" StrokeThickness="2"/>
  1472. <Line X1="1644.22" Y1="-1069.59" X2="1644.22" Y2="-1054.48" Stroke="#FF000000" StrokeThickness="2"/>
  1473. <Line X1="1806.74" Y1="-1088.49" X2="1806.74" Y2="-1069.59" Stroke="#FF000000" StrokeThickness="2"/>
  1474. <Line X1="1821.86" Y1="-1088.49" X2="1821.86" Y2="-1069.59" Stroke="#FF000000" StrokeThickness="2"/>
  1475. <Line X1="2003.28" Y1="-1145.18" X2="1625.32" Y2="-1145.18" Stroke="#FF000000" StrokeThickness="2"/>
  1476. <Line X1="1587.53" Y1="-918.429" X2="2041.07" Y2="-918.429" Stroke="#FF000000" StrokeThickness="2"/>
  1477. <Line X1="1965.48" Y1="-1126.3" X2="2059.97" Y2="-1126.3" Stroke="#FF000000" StrokeThickness="2"/>
  1478. <Line X1="3004.84" Y1="-351.49" X2="3004.84" Y2="-427.08" Stroke="#FF000000" StrokeThickness="2"/>
  1479. <Line X1="2929.25" Y1="-427.08" X2="3004.84" Y2="-427.08" Stroke="#FF000000" StrokeThickness="2"/>
  1480. <Line X1="2891.46" Y1="-275.899" X2="2891.46" Y2="-238.104" Stroke="#FF000000" StrokeThickness="2"/>
  1481. <Line X1="3004.84" Y1="-275.899" X2="3004.84" Y2="-238.104" Stroke="#FF000000" StrokeThickness="2"/>
  1482. <Line X1="2853.66" Y1="-313.695" X2="2698.58" Y2="-313.694" Stroke="#FF000000" StrokeThickness="2"/>
  1483. <Line X1="2959.48" Y1="-521.569" X2="3050.19" Y2="-521.569" Stroke="#FF000000" StrokeThickness="2"/>
  1484. <Line X1="3019.95" Y1="-476.214" X2="3019.95" Y2="-521.569" Stroke="#FF000000" StrokeThickness="2"/>
  1485. <Line X1="3004.84" Y1="-566.923" X2="3004.84" Y2="-634.96" Stroke="#FF000000" StrokeThickness="2"/>
  1486. <Line X1="3004.84" Y1="-710.551" X2="3004.84" Y2="-748.343" Stroke="#FF000000" StrokeThickness="2"/>
  1487. <Line X1="2853.66" Y1="-238.102" X2="3050.2" Y2="-238.102" Stroke="#FF000000" StrokeThickness="2"/>
  1488. <Line X1="2853.66" Y1="-200.312" X2="3050.2" Y2="-200.312" Stroke="#FF000000" StrokeThickness="2"/>
  1489. <Line X1="2853.66" Y1="-238.102" X2="2853.66" Y2="-200.312" Stroke="#FF000000" StrokeThickness="2"/>
  1490. <Line X1="3050.2" Y1="-238.102" X2="3050.2" Y2="-200.312" Stroke="#FF000000" StrokeThickness="2"/>
  1491. <Line X1="3004.84" Y1="-748.343" X2="2948.15" Y2="-748.343" Stroke="#FF000000" StrokeThickness="2"/>
  1492. <Line X1="2872.56" Y1="-748.343" X2="2565.47" Y2="-748.343" Stroke="#FF000000" StrokeThickness="2"/>
  1493. <Line X1="3042.64" Y1="17.0111" X2="3042.64" Y2="88.441" Stroke="#FF000000" StrokeThickness="2"/>
  1494. <Line X1="3012.4" Y1="-49.1305" X2="3072.88" Y2="-49.1308" Stroke="#FF000000" StrokeThickness="2"/>
  1495. <Line X1="3042.64" Y1="-115.272" X2="3042.64" Y2="-162.514" Stroke="#FF000000" StrokeThickness="2"/>
  1496. <Line X1="2698.58" Y1="75.2127" X2="2698.58" Y2="-103.931" Stroke="#FF000000" StrokeThickness="2"/>
  1497. <Line X1="2698.58" Y1="234.331" X2="2698.58" Y2="101.669" Stroke="#FF000000" StrokeThickness="2"/>
  1498. <Line X1="2698.58" Y1="332.599" X2="2698.58" Y2="309.922" Stroke="#FF000000" StrokeThickness="2"/>
  1499. <Line X1="2698.58" Y1="-171.963" X2="2698.58" Y2="-213.537" Stroke="#FF000000" StrokeThickness="2"/>
  1500. <Line X1="2698.58" Y1="-258.892" X2="2698.58" Y2="-313.695" Stroke="#FF000000" StrokeThickness="2"/>
  1501. <Line X1="3004.84" Y1="-427.08" X2="3004.84" Y2="-476.214" Stroke="#FF000000" StrokeThickness="2"/>
  1502. <Line X1="2581.42" Y1="158.743" X2="2509.61" Y2="158.743" Stroke="#FF000000" StrokeThickness="2"/>
  1503. <Line X1="2626.77" Y1="158.743" X2="2698.58" Y2="158.743" Stroke="#FF000000" StrokeThickness="2"/>
  1504. <Line X1="2415.12" Y1="-299.905" X2="2415.12" Y2="-7.556" Stroke="#FF000000" StrokeThickness="2"/>
  1505. <Line X1="2415.12" Y1="-370.388" X2="2415.12" Y2="-326.362" Stroke="#FF000000" StrokeThickness="2"/>
  1506. <Line X1="2415.12" Y1="-30.236" X2="2415.12" Y2="-30.2303" Stroke="#FF000000" StrokeThickness="2"/>
  1507. <Line X1="2415.12" Y1="-7.556" X2="2415.12" Y2="151.184" Stroke="#FF000000" StrokeThickness="2"/>
  1508. <Line X1="2298.37" Y1="-156.515" X2="2320.63" Y2="-124.718" Stroke="#FF000000" StrokeThickness="2"/>
  1509. <Line X1="2342.89" Y1="-156.515" X2="2320.63" Y2="-124.718" Stroke="#FF000000" StrokeThickness="2"/>
  1510. <Line X1="2275.27" Y1="197.657" X2="2365.97" Y2="197.657" Stroke="#FF000000" StrokeThickness="2"/>
  1511. <Line X1="2335.74" Y1="243.011" X2="2335.74" Y2="197.657" Stroke="#FF000000" StrokeThickness="2"/>
  1512. <Line X1="2180.78" Y1="83.4681" X2="2271.49" Y2="83.4681" Stroke="#FF000000" StrokeThickness="2"/>
  1513. <Line X1="2241.25" Y1="128.822" X2="2241.25" Y2="83.4681" Stroke="#FF000000" StrokeThickness="2"/>
  1514. <Line X1="2320.63" Y1="-163.602" X2="2320.63" Y2="-427.08" Stroke="#FF000000" StrokeThickness="2"/>
  1515. <Line X1="2320.63" Y1="-52.9103" X2="2320.63" Y2="-124.718" Stroke="#FF000000" StrokeThickness="2"/>
  1516. <Line X1="2320.63" Y1="152.302" X2="2320.63" Y2="-7.556" Stroke="#FF000000" StrokeThickness="2"/>
  1517. <Line X1="2320.63" Y1="309.924" X2="2226.14" Y2="309.924" Stroke="#FF000000" StrokeThickness="2"/>
  1518. <Line X1="2226.14" Y1="128.822" X2="2226.14" Y2="309.924" Stroke="#FF000000" StrokeThickness="2"/>
  1519. <Line X1="2320.63" Y1="243.011" X2="2320.63" Y2="309.924" Stroke="#FF000000" StrokeThickness="2"/>
  1520. <Line X1="2415.12" Y1="151.184" X2="2415.12" Y2="464.885" Stroke="#FF000000" StrokeThickness="2"/>
  1521. <Line X1="2226.14" Y1="309.924" X2="2226.14" Y2="347.72" Stroke="#FF000000" StrokeThickness="2"/>
  1522. <Line X1="2226.14" Y1="423.31" X2="2226.14" Y2="476.224" Stroke="#FF000000" StrokeThickness="2"/>
  1523. <Line X1="2853.66" Y1="-427.08" X2="2320.63" Y2="-427.08" Stroke="#FF000000" StrokeThickness="2"/>
  1524. <Line X1="2509.61" Y1="120.945" X2="2509.61" Y2="158.743" Stroke="#FF000000" StrokeThickness="2"/>
  1525. <Line X1="2509.61" Y1="45.3548" X2="2509.61" Y2="-313.133" Stroke="#FF000000" StrokeThickness="2"/>
  1526. <Line X1="2059.97" Y1="-1126.3" X2="2059.97" Y2="-1126.3" Stroke="#FF000000" StrokeThickness="2"/>
  1527. <Line X1="2400.12" Y1="-994.016" X2="2226.27" Y2="-994.015" Stroke="#FF000000" StrokeThickness="2"/>
  1528. <Line X1="2814" Y1="-994.015" X2="2475.71" Y2="-994.015" Stroke="#FF000000" StrokeThickness="2"/>
  1529. <Line X1="3004.84" Y1="-994.015" X2="2946.28" Y2="-994.015" Stroke="#FF000000" StrokeThickness="2"/>
  1530. <Line X1="2226.14" Y1="521.578" X2="2226.14" Y2="612.281" Stroke="#FF000000" StrokeThickness="2"/>
  1531. <Line X1="1341.86" Y1="-1145.19" X2="1379.66" Y2="-1145.19" Stroke="#FF000000" StrokeThickness="2"/>
  1532. <Line X1="1266.27" Y1="-1145.19" X2="1228.47" Y2="-1145.19" Stroke="#FF000000" StrokeThickness="2"/>
  1533. <Line X1="1379.66" Y1="-786.143" X2="1379.65" Y2="-1436.21" Stroke="#FF000000" StrokeThickness="2"/>
  1534. <Line X1="1228.47" Y1="-1371.97" X2="1379.65" Y2="-1371.97" Stroke="#FF000000" StrokeThickness="2"/>
  1535. <Line X1="1228.47" Y1="-1258.58" X2="1266.27" Y2="-1258.58" Stroke="#FF000000" StrokeThickness="2"/>
  1536. <Line X1="1341.86" Y1="-1258.58" X2="1379.65" Y2="-1258.58" Stroke="#FF000000" StrokeThickness="2"/>
  1537. <Line X1="1357.39" Y1="-608.976" X2="1379.66" Y2="-640.773" Stroke="#FF000000" StrokeThickness="2"/>
  1538. <Line X1="1401.92" Y1="-608.976" X2="1379.66" Y2="-640.773" Stroke="#FF000000" StrokeThickness="2"/>
  1539. <Line X1="1379.66" Y1="-495.118" X2="1304.06" Y2="-495.118" Stroke="#FF000000" StrokeThickness="2"/>
  1540. <Line X1="1379.66" Y1="612.28" X2="1379.66" Y2="-601.89" Stroke="#FF000000" StrokeThickness="2"/>
  1541. <Line X1="1379.66" Y1="-640.773" X2="1379.66" Y2="-710.552" Stroke="#FF000000" StrokeThickness="2"/>
  1542. <Line X1="1069.74" Y1="-907.081" X2="1069.74" Y2="-907.081" Stroke="#FF000000" StrokeThickness="2"/>
  1543. <Line X1="994.145" Y1="-929.758" X2="994.145" Y2="-929.758" Stroke="#FF000000" StrokeThickness="2"/>
  1544. <Line X1="718.237" Y1="-495.114" X2="718.237" Y2="-842.834" Stroke="#FF000000" StrokeThickness="2"/>
  1545. <Line X1="687.993" Y1="-616.063" X2="718.237" Y2="-616.063" Stroke="#FF000000" StrokeThickness="2"/>
  1546. <Line X1="718.238" Y1="-408.192" X2="718.238" Y2="-408.186" Stroke="#FF000000" StrokeThickness="2"/>
  1547. <Line X1="718.238" Y1="-408.186" X2="718.237" Y2="-275.905" Stroke="#FF000000" StrokeThickness="2"/>
  1548. <Line X1="888.315" Y1="-275.905" X2="971.47" Y2="-275.905" Stroke="#FF000000" StrokeThickness="2"/>
  1549. <Line X1="718.237" Y1="-495.114" X2="718.238" Y2="-408.186" Stroke="#FF000000" StrokeThickness="2"/>
  1550. <Line X1="888.315" Y1="-68.0352" X2="971.47" Y2="-68.0352" Stroke="#FF000000" StrokeThickness="2"/>
  1551. <Line X1="774.922" Y1="-68.0351" X2="812.726" Y2="-68.0352" Stroke="#FF000000" StrokeThickness="2"/>
  1552. <Line X1="888.315" Y1="-275.905" X2="718.237" Y2="-275.906" Stroke="#FF000000" StrokeThickness="2"/>
  1553. <Line X1="786.268" Y1="136.059" X2="786.268" Y2="105.823" Stroke="#FF000000" StrokeThickness="2"/>
  1554. <Line X1="778.709" Y1="136.059" X2="778.709" Y2="105.823" Stroke="#FF000000" StrokeThickness="2"/>
  1555. <Line X1="786.268" Y1="120.941" X2="827.843" Y2="120.941" Stroke="#FF000000" StrokeThickness="2"/>
  1556. <Line X1="790.048" Y1="109.603" X2="790.048" Y2="102.044" Stroke="#FF000000" StrokeThickness="2"/>
  1557. <Line X1="790.048" Y1="102.044" X2="774.93" Y2="102.044" Stroke="#FF000000" StrokeThickness="2"/>
  1558. <Line X1="774.93" Y1="102.044" X2="774.93" Y2="109.603" Stroke="#FF000000" StrokeThickness="2"/>
  1559. <Line X1="790.048" Y1="132.28" X2="790.048" Y2="139.839" Stroke="#FF000000" StrokeThickness="2"/>
  1560. <Line X1="774.93" Y1="139.839" X2="774.93" Y2="132.28" Stroke="#FF000000" StrokeThickness="2"/>
  1561. <Line X1="873.198" Y1="120.941" X2="971.471" Y2="120.941" Stroke="#FF000000" StrokeThickness="2"/>
  1562. <Line X1="1304.06" Y1="-495.118" X2="1304.07" Y2="-441.26" Stroke="#FF000000" StrokeThickness="2"/>
  1563. <Line X1="1304.07" Y1="-200.315" X2="1304.07" Y2="-238.11" Stroke="#FF000000" StrokeThickness="2"/>
  1564. <Line X1="1228.47" Y1="-200.315" X2="1304.07" Y2="-200.315" Stroke="#FF000000" StrokeThickness="2"/>
  1565. <Line X1="1304.07" Y1="-402.384" X2="1304.07" Y2="-370.394" Stroke="#FF000000" StrokeThickness="2"/>
  1566. <Line X1="1281.8" Y1="-434.173" X2="1304.06" Y2="-402.376" Stroke="#FF000000" StrokeThickness="2"/>
  1567. <Line X1="1326.33" Y1="-434.173" X2="1304.06" Y2="-402.376" Stroke="#FF000000" StrokeThickness="2"/>
  1568. <Line X1="1273.83" Y1="-304.252" X2="1334.3" Y2="-304.252" Stroke="#FF000000" StrokeThickness="2"/>
  1569. <Line X1="718.237" Y1="-842.834" X2="850.52" Y2="-842.834" Stroke="#FF000000" StrokeThickness="2"/>
  1570. <Line X1="850.52" Y1="-842.834" X2="850.52" Y2="-786.141" Stroke="#FF000000" StrokeThickness="2"/>
  1571. <Line X1="850.52" Y1="-710.551" X2="850.52" Y2="-668.031" Stroke="#FF000000" StrokeThickness="2"/>
  1572. <Line X1="850.52" Y1="-629.148" X2="850.52" Y2="-582.036" Stroke="#FF000000" StrokeThickness="2"/>
  1573. <Line X1="850.52" Y1="-574.477" X2="850.52" Y2="-495.115" Stroke="#FF000000" StrokeThickness="2"/>
  1574. <Line X1="828.256" Y1="-660.945" X2="850.52" Y2="-629.148" Stroke="#FF000000" StrokeThickness="2"/>
  1575. <Line X1="872.785" Y1="-660.945" X2="850.52" Y2="-629.148" Stroke="#FF000000" StrokeThickness="2"/>
  1576. <Line X1="859.975" Y1="-582.036" X2="841.077" Y2="-582.036" Stroke="#FF000000" StrokeThickness="2"/>
  1577. <Line X1="859.975" Y1="-574.477" X2="841.077" Y2="-574.477" Stroke="#FF000000" StrokeThickness="2"/>
  1578. <Line X1="1228.47" Y1="476.224" X2="1228.47" Y2="-200.315" Stroke="#FF000000" StrokeThickness="2"/>
  1579. <Line X1="1228.47" Y1="612.284" X2="1228.47" Y2="521.578" Stroke="#FF000000" StrokeThickness="2"/>
  1580. <Line X1="1413.67" Y1="-1211.34" X2="1413.68" Y2="-1192.45" Stroke="#FF000000" StrokeThickness="2"/>
  1581. <Line X1="1411.78" Y1="-1215.12" X2="1419.34" Y2="-1215.13" Stroke="#FF000000" StrokeThickness="2"/>
  1582. <Line X1="1419.34" Y1="-1215.13" X2="1419.35" Y2="-1188.67" Stroke="#FF000000" StrokeThickness="2"/>
  1583. <Line X1="1419.35" Y1="-1188.67" X2="1411.79" Y2="-1188.67" Stroke="#FF000000" StrokeThickness="2"/>
  1584. <Line X1="1413.68" Y1="-1201.9" X2="1379.66" Y2="-1201.89" Stroke="#FF000000" StrokeThickness="2"/>
  1585. <Line X1="926.105" Y1="517.796" X2="850.52" Y2="517.797" Stroke="#FF000000" StrokeThickness="2"/>
  1586. <Line X1="850.52" Y1="517.797" X2="850.521" Y2="631.177" Stroke="#FF000000" StrokeThickness="2"/>
  1587. <Line X1="926.105" Y1="404.41" X2="756.032" Y2="404.412" Stroke="#FF000000" StrokeThickness="2"/>
  1588. <Line X1="756.032" Y1="404.412" X2="756.032" Y2="631.182" Stroke="#FF000000" StrokeThickness="2"/>
  1589. <Line X1="2604.09" Y1="423.307" X2="2604.09" Y2="801.26" Stroke="#FF000000" StrokeThickness="2"/>
  1590. <Line X1="2698.58" Y1="389.292" X2="2698.58" Y2="423.307" Stroke="#FF000000" StrokeThickness="2"/>
  1591. <Line X1="3250.63" Y1="517.804" X2="3250.63" Y2="442.214" Stroke="#FF000000" StrokeThickness="2"/>
  1592. <Line X1="3250.63" Y1="442.214" X2="3364.02" Y2="442.214" Stroke="#FF000000" StrokeThickness="2"/>
  1593. <Line X1="3477.41" Y1="442.214" X2="3590.79" Y2="442.214" Stroke="#FF000000" StrokeThickness="2"/>
  1594. <Line X1="3590.79" Y1="442.214" X2="3590.79" Y2="517.804" Stroke="#FF000000" StrokeThickness="2"/>
  1595. <Line X1="3722.83" Y1="517.796" X2="3722.83" Y2="442.205" Stroke="#FF000000" StrokeThickness="2"/>
  1596. <Line X1="3722.83" Y1="442.205" X2="3809.76" Y2="442.205" Stroke="#FF000000" StrokeThickness="2"/>
  1597. <Line X1="3976.06" Y1="442.205" X2="4062.99" Y2="442.205" Stroke="#FF000000" StrokeThickness="2"/>
  1598. <Line X1="4062.99" Y1="442.205" X2="4062.99" Y2="517.796" Stroke="#FF000000" StrokeThickness="2"/>
  1599. <Line X1="3809.76" Y1="434.646" X2="3809.76" Y2="449.764" Stroke="#FF000000" StrokeThickness="2"/>
  1600. <Line X1="3976.06" Y1="434.646" X2="3976.06" Y2="449.764" Stroke="#FF000000" StrokeThickness="2"/>
  1601. <Line X1="3364.02" Y1="434.655" X2="3364.02" Y2="449.773" Stroke="#FF000000" StrokeThickness="2"/>
  1602. <Line X1="3477.41" Y1="434.655" X2="3477.41" Y2="449.773" Stroke="#FF000000" StrokeThickness="2"/>
  1603. <Line X1="311.804" Y1="-1908.68" X2="311.804" Y2="-1984.27" Stroke="#FF000000" StrokeThickness="2"/>
  1604. <Line X1="311.804" Y1="-1984.27" X2="655.751" Y2="-1984.27" Stroke="#FF000000" StrokeThickness="2"/>
  1605. <Line X1="655.751" Y1="-1991.82" X2="655.751" Y2="-1976.71" Stroke="#FF000000" StrokeThickness="2"/>
  1606. <Line X1="311.804" Y1="-1625.21" X2="311.804" Y2="-1700.8" Stroke="#FF000000" StrokeThickness="2"/>
  1607. <Line X1="311.804" Y1="-1700.8" X2="462.995" Y2="-1700.8" Stroke="#FF000000" StrokeThickness="2"/>
  1608. <Line X1="462.995" Y1="-1708.35" X2="462.995" Y2="-1693.24" Stroke="#FF000000" StrokeThickness="2"/>
  1609. <Line X1="1587.4" Y1="-464.882" X2="1587.4" Y2="-540.472" Stroke="#FF000000" StrokeThickness="2"/>
  1610. <Line X1="1587.4" Y1="-540.472" X2="1693.23" Y2="-540.472" Stroke="#FF000000" StrokeThickness="2"/>
  1611. <Line X1="1935.12" Y1="-540.472" X2="2040.94" Y2="-540.472" Stroke="#FF000000" StrokeThickness="2"/>
  1612. <Line X1="2040.94" Y1="-540.472" X2="2040.94" Y2="-464.882" Stroke="#FF000000" StrokeThickness="2"/>
  1613. <Line X1="1693.23" Y1="-548.031" X2="1693.23" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
  1614. <Line X1="1935.12" Y1="-548.031" X2="1935.12" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
  1615. <Line X1="4195.28" Y1="517.796" X2="4195.28" Y2="442.205" Stroke="#FF000000" StrokeThickness="2"/>
  1616. <Line X1="4535.43" Y1="442.205" X2="4535.43" Y2="517.796" Stroke="#FF000000" StrokeThickness="2"/>
  1617. <Line X1="4131.06" Y1="-691.654" X2="4221.77" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
  1618. <Line X1="4191.53" Y1="-646.299" X2="4191.53" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
  1619. <Line X1="4463.6" Y1="-275.705" X2="4463.6" Y2="-275.678" Stroke="#FF000000" StrokeThickness="2"/>
  1620. <Line X1="3836.28" Y1="173.852" X2="3836.28" Y2="77.4806" Stroke="#FF000000" StrokeThickness="2"/>
  1621. <Line X1="3836.28" Y1="219.206" X2="3836.28" Y2="272.126" Stroke="#FF000000" StrokeThickness="2"/>
  1622. <Line X1="3892.97" Y1="-1069.58" X2="4006.36" Y2="-1069.58" Stroke="#FF000000" StrokeThickness="2"/>
  1623. <Line X1="3552.82" Y1="-30.2322" X2="3609.51" Y2="-30.2324" Stroke="#FF000000" StrokeThickness="2"/>
  1624. <Line X1="3439.43" Y1="-30.2341" X2="3552.82" Y2="-30.2324" Stroke="#FF000000" StrokeThickness="2"/>
  1625. <Line X1="3439.43" Y1="-1069.57" X2="3552.82" Y2="-1069.57" Stroke="#FF000000" StrokeThickness="2"/>
  1626. <Line X1="4006.43" Y1="-918.413" X2="4006.43" Y2="-1113.06" Stroke="#FF000000" StrokeThickness="2"/>
  1627. <Line X1="4346.52" Y1="-1466.47" X2="3052.09" Y2="-1466.47" Stroke="#FF000000" StrokeThickness="2"/>
  1628. <Line X1="2919.81" Y1="-1353.07" X2="2570.21" Y2="-1353.07" Stroke="#FF000000" StrokeThickness="2"/>
  1629. <Line X1="2494.61" Y1="-1353.07" X2="2362.33" Y2="-1353.07" Stroke="#FF000000" StrokeThickness="2"/>
  1630. <Line X1="2645.79" Y1="-1296.38" X2="2475.71" Y2="-1296.38" Stroke="#FF000000" StrokeThickness="2"/>
  1631. <Line X1="4289.82" Y1="-1353.08" X2="3052.09" Y2="-1353.08" Stroke="#FF000000" StrokeThickness="2"/>
  1632. <Line X1="2645.79" Y1="-1341.73" X2="2645.79" Y2="-1296.38" Stroke="#FF000000" StrokeThickness="2"/>
  1633. <Line X1="2645.79" Y1="-1453.23" X2="2645.79" Y2="-1366.3" Stroke="#FF000000" StrokeThickness="2"/>
  1634. <Line X1="2645.79" Y1="-1579.84" X2="2645.79" Y2="-1479.69" Stroke="#FF000000" StrokeThickness="2"/>
  1635. <Line X1="2494.61" Y1="-1239.68" X2="2294.3" Y2="-1239.68" Stroke="#FF000000" StrokeThickness="2"/>
  1636. <Line X1="3052.09" Y1="-1636.54" X2="4403.15" Y2="-1636.54" Stroke="#FF000000" StrokeThickness="2"/>
  1637. <Line X1="3949.6" Y1="-1680" X2="3949.6" Y2="-1680" Stroke="#FF000000" StrokeThickness="2"/>
  1638. <Line X1="2381.23" Y1="-2033.39" X2="2267.84" Y2="-2033.39" Stroke="#FF000000" StrokeThickness="2"/>
  1639. <Line X1="2381.23" Y1="-1976.69" X2="2267.84" Y2="-1976.69" Stroke="#FF000000" StrokeThickness="2"/>
  1640. <Line X1="2381.23" Y1="-1920" X2="2267.84" Y2="-1920" Stroke="#FF000000" StrokeThickness="2"/>
  1641. <Line X1="2494.61" Y1="-937.323" X2="2267.84" Y2="-937.317" Stroke="#FF000000" StrokeThickness="2"/>
  1642. <Line X1="2611.79" Y1="-937.321" X2="2570.21" Y2="-937.321" Stroke="#FF000000" StrokeThickness="2"/>
  1643. <Line X1="2611.79" Y1="-994.015" X2="2611.79" Y2="-937.323" Stroke="#FF000000" StrokeThickness="2"/>
  1644. <Line X1="2362.34" Y1="-880.621" X2="2362.34" Y2="-937.319" Stroke="#FF000000" StrokeThickness="2"/>
  1645. <Line X1="2400.13" Y1="-880.625" X2="2362.34" Y2="-880.625" Stroke="#FF000000" StrokeThickness="2"/>
  1646. <Line X1="2475.72" Y1="-880.623" X2="3156.02" Y2="-880.623" Stroke="#FF000000" StrokeThickness="2"/>
  1647. <Line X1="2796.98" Y1="-937.323" X2="2832.9" Y2="-937.323" Stroke="#FF000000" StrokeThickness="2"/>
  1648. <Line X1="2679.81" Y1="-994.016" X2="2679.81" Y2="-937.323" Stroke="#FF000000" StrokeThickness="2"/>
  1649. <Line X1="2679.81" Y1="-937.323" X2="2721.39" Y2="-937.323" Stroke="#FF000000" StrokeThickness="2"/>
  1650. <Line X1="2702.49" Y1="-937.323" X2="2721.39" Y2="-937.323" Stroke="#FF000000" StrokeThickness="2"/>
  1651. <Line X1="3004.84" Y1="-867.395" X2="3004.84" Y2="-748.343" Stroke="#FF000000" StrokeThickness="2"/>
  1652. <Line X1="3004.84" Y1="-994.015" X2="3004.84" Y2="-893.851" Stroke="#FF000000" StrokeThickness="2"/>
  1653. <Line X1="3156.02" Y1="-880.623" X2="3155.91" Y2="83.4919" Stroke="#FF000000" StrokeThickness="2"/>
  1654. <Line X1="2226.14" Y1="-163.602" X2="2226.14" Y2="-748.343" Stroke="#FF000000" StrokeThickness="2"/>
  1655. <Line X1="2226.14" Y1="38.1138" X2="2226.14" Y2="-124.718" Stroke="#FF000000" StrokeThickness="2"/>
  1656. <Line X1="2226.14" Y1="-748.343" X2="2565.47" Y2="-748.343" Stroke="#FF000000" StrokeThickness="2"/>
  1657. <Line X1="2415.12" Y1="521.578" X2="2415.12" Y2="612.281" Stroke="#FF000000" StrokeThickness="2"/>
  1658. <Line X1="3155.91" Y1="196.535" X2="2698.58" Y2="196.535" Stroke="#FFFF0000" StrokeThickness="2"/>
  1659. <Line X1="3155.91" Y1="196.535" X2="3155.91" Y2="159.083" Stroke="#FFFF0000" StrokeThickness="2"/>
  1660. <Line X1="2203.88" Y1="-156.515" X2="2226.14" Y2="-124.718" Stroke="#FF000000" StrokeThickness="2"/>
  1661. <Line X1="2248.41" Y1="-156.515" X2="2226.14" Y2="-124.718" Stroke="#FF000000" StrokeThickness="2"/>
  1662. <Line X1="2415.12" Y1="-370.388" X2="2605.36" Y2="-370.388" Stroke="#FF000000" StrokeThickness="2"/>
  1663. <Line X1="2605.36" Y1="-370.388" X2="2605.36" Y2="88.441" Stroke="#FF000000" StrokeThickness="2"/>
  1664. <Line X1="2605.36" Y1="88.441" X2="3042.64" Y2="88.441" Stroke="#FF000000" StrokeThickness="2"/>
  1665. <Line X1="2509.61" Y1="-313.133" X2="2320.63" Y2="-313.133" Stroke="#FF000000" StrokeThickness="2"/>
  1666. <Line X1="2834.65" Y1="-48.5274" X2="2834.65" Y2="-78.7636" Stroke="#FF000000" StrokeThickness="2"/>
  1667. <Line X1="2842.21" Y1="-48.5274" X2="2842.21" Y2="-78.7636" Stroke="#FF000000" StrokeThickness="2"/>
  1668. <Line X1="2834.65" Y1="-63.6454" X2="2793.08" Y2="-63.6453" Stroke="#FF000000" StrokeThickness="2"/>
  1669. <Line X1="2830.87" Y1="-74.984" X2="2830.87" Y2="-82.5431" Stroke="#FF000000" StrokeThickness="2"/>
  1670. <Line X1="2830.87" Y1="-82.5431" X2="2845.99" Y2="-82.5432" Stroke="#FF000000" StrokeThickness="2"/>
  1671. <Line X1="2845.99" Y1="-82.5432" X2="2845.99" Y2="-74.9841" Stroke="#FF000000" StrokeThickness="2"/>
  1672. <Line X1="2830.87" Y1="-52.3069" X2="2830.87" Y2="-44.7478" Stroke="#FF000000" StrokeThickness="2"/>
  1673. <Line X1="2830.87" Y1="-44.7478" X2="2845.99" Y2="-44.7479" Stroke="#FF000000" StrokeThickness="2"/>
  1674. <Line X1="2845.99" Y1="-44.7479" X2="2845.99" Y2="-52.3069" Stroke="#FF000000" StrokeThickness="2"/>
  1675. <Line X1="2747.72" Y1="-63.6452" X2="2698.58" Y2="-63.645" Stroke="#FF000000" StrokeThickness="2"/>
  1676. <Line X1="2834.65" Y1="19.656" X2="2834.65" Y2="-10.5803" Stroke="#FF000000" StrokeThickness="2"/>
  1677. <Line X1="2842.21" Y1="19.6559" X2="2842.21" Y2="-10.5803" Stroke="#FF000000" StrokeThickness="2"/>
  1678. <Line X1="2834.65" Y1="4.53798" X2="2793.08" Y2="4.53807" Stroke="#FF000000" StrokeThickness="2"/>
  1679. <Line X1="2830.87" Y1="-6.80071" X2="2830.87" Y2="-14.3598" Stroke="#FF000000" StrokeThickness="2"/>
  1680. <Line X1="2830.87" Y1="-14.3598" X2="2845.99" Y2="-14.3598" Stroke="#FF000000" StrokeThickness="2"/>
  1681. <Line X1="2845.99" Y1="-14.3598" X2="2845.99" Y2="-6.80077" Stroke="#FF000000" StrokeThickness="2"/>
  1682. <Line X1="2830.87" Y1="15.8765" X2="2830.87" Y2="23.4355" Stroke="#FF000000" StrokeThickness="2"/>
  1683. <Line X1="2830.87" Y1="23.4355" X2="2845.99" Y2="23.4354" Stroke="#FF000000" StrokeThickness="2"/>
  1684. <Line X1="2845.99" Y1="23.4354" X2="2845.99" Y2="15.8764" Stroke="#FF000000" StrokeThickness="2"/>
  1685. <Line X1="2747.72" Y1="4.53815" X2="2698.58" Y2="4.53836" Stroke="#FF000000" StrokeThickness="2"/>
  1686. <Line X1="1379.66" Y1="-1145.19" X2="1379.66" Y2="-1201.89" Stroke="#FF000000" StrokeThickness="2"/>
  1687. <Line X1="971.468" Y1="-929.758" X2="971.468" Y2="-907.081" Stroke="#FF000000" StrokeThickness="2"/>
  1688. <Line X1="971.465" Y1="-1447.55" X2="850.52" Y2="-1447.55" Stroke="#FF000000" StrokeThickness="2"/>
  1689. <Line X1="850.52" Y1="-1288.82" X2="850.52" Y2="-1031.8" Stroke="#FF000000" StrokeThickness="2"/>
  1690. <Line X1="850.52" Y1="-1447.55" X2="850.52" Y2="-1379.53" Stroke="#FF000000" StrokeThickness="2"/>
  1691. <Line X1="850.52" Y1="-1031.8" X2="971.467" Y2="-1031.8" Stroke="#FF000000" StrokeThickness="2"/>
  1692. <Line X1="850.52" Y1="-1447.55" X2="718.237" Y2="-1447.55" Stroke="#FF000000" StrokeThickness="2"/>
  1693. <Line X1="718.237" Y1="-1141.42" X2="718.237" Y2="-1031.8" Stroke="#FF000000" StrokeThickness="2"/>
  1694. <Line X1="718.237" Y1="-1296.39" X2="718.237" Y2="-1186.77" Stroke="#FF000000" StrokeThickness="2"/>
  1695. <Line X1="718.237" Y1="-1447.55" X2="718.237" Y2="-1371.97" Stroke="#FF000000" StrokeThickness="2"/>
  1696. <Line X1="718.237" Y1="-1031.8" X2="850.52" Y2="-1031.8" Stroke="#FF000000" StrokeThickness="2"/>
  1697. <Line X1="718.237" Y1="-1164.1" X2="718.237" Y2="-1164.09" Stroke="#FF000000" StrokeThickness="2"/>
  1698. <Line X1="805.166" Y1="-1334.18" X2="895.875" Y2="-1334.18" Stroke="#FF000000" StrokeThickness="2"/>
  1699. <Line X1="790.048" Y1="140.18" X2="774.93" Y2="140.18" Stroke="#FF000000" StrokeThickness="2"/>
  1700. <Line X1="687.992" Y1="-729.448" X2="718.237" Y2="-729.449" Stroke="#FF000000" StrokeThickness="2"/>
  1701. <Line X1="687.992" Y1="-842.834" X2="718.237" Y2="-842.834" Stroke="#FF000000" StrokeThickness="2"/>
  1702. <Line X1="557.61" Y1="-842.834" X2="502.793" Y2="-842.834" Stroke="#FF000000" StrokeThickness="2"/>
  1703. <Line X1="694.604" Y1="-842.834" X2="718.237" Y2="-842.834" Stroke="#FF000000" StrokeThickness="2"/>
  1704. <Line X1="633.198" Y1="-842.834" X2="694.604" Y2="-842.834" Stroke="#FF000000" StrokeThickness="2"/>
  1705. <Line X1="557.61" Y1="-729.448" X2="502.793" Y2="-729.448" Stroke="#FF000000" StrokeThickness="2"/>
  1706. <Line X1="694.604" Y1="-729.448" X2="718.237" Y2="-729.449" Stroke="#FF000000" StrokeThickness="2"/>
  1707. <Line X1="633.198" Y1="-729.448" X2="694.604" Y2="-729.448" Stroke="#FF000000" StrokeThickness="2"/>
  1708. <Line X1="557.61" Y1="-616.062" X2="502.793" Y2="-616.062" Stroke="#FF000000" StrokeThickness="2"/>
  1709. <Line X1="694.604" Y1="-616.063" X2="718.237" Y2="-616.063" Stroke="#FF000000" StrokeThickness="2"/>
  1710. <Line X1="633.199" Y1="-616.062" X2="694.604" Y2="-616.063" Stroke="#FF000000" StrokeThickness="2"/>
  1711. <Line X1="557.61" Y1="-389.291" X2="502.793" Y2="-389.29" Stroke="#FF000000" StrokeThickness="2"/>
  1712. <Line X1="694.604" Y1="-389.291" X2="718.237" Y2="-389.291" Stroke="#FF000000" StrokeThickness="2"/>
  1713. <Line X1="633.198" Y1="-389.291" X2="694.604" Y2="-389.291" Stroke="#FF000000" StrokeThickness="2"/>
  1714. <Line X1="1228.47" Y1="-200.315" X2="1228.47" Y2="-495.115" Stroke="#FF000000" StrokeThickness="2"/>
  1715. <Line X1="958.241" Y1="-495.115" X2="850.52" Y2="-495.115" Stroke="#FF000000" StrokeThickness="2"/>
  1716. <Line X1="1228.47" Y1="-495.115" X2="1007.37" Y2="-495.115" Stroke="#FF000000" StrokeThickness="2"/>
  1717. <Line X1="901.42" Y1="-1984.27" X2="1218.89" Y2="-1984.27" Stroke="#FF000000" StrokeThickness="2"/>
  1718. <Line X1="1218.89" Y1="-1984.27" X2="1218.89" Y2="-1908.67" Stroke="#FF000000" StrokeThickness="2"/>
  1719. <Line X1="901.42" Y1="-1991.82" X2="901.42" Y2="-1976.71" Stroke="#FF000000" StrokeThickness="2"/>
  1720. <Line X1="693.424" Y1="-1700.8" X2="840.937" Y2="-1700.8" Stroke="#FF000000" StrokeThickness="2"/>
  1721. <Line X1="840.937" Y1="-1700.8" X2="840.937" Y2="-1625.21" Stroke="#FF000000" StrokeThickness="2"/>
  1722. <Line X1="693.424" Y1="-1708.35" X2="693.424" Y2="-1693.24" Stroke="#FF000000" StrokeThickness="2"/>
  1723. <Line X1="3326.04" Y1="-389.298" X2="3326.04" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
  1724. <Line X1="3269.35" Y1="173.852" X2="3269.35" Y2="134.174" Stroke="#FF000000" StrokeThickness="2"/>
  1725. <Line X1="3269.35" Y1="134.174" X2="3269.35" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
  1726. <Line X1="3269.35" Y1="-623.621" X2="3269.35" Y2="-956.226" Stroke="#FF000000" StrokeThickness="2"/>
  1727. <Line X1="3269.35" Y1="-427.086" X2="3326.04" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
  1728. <Line X1="3269.35" Y1="-786.148" X2="3326.05" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1729. <Line X1="3269.35" Y1="219.206" X2="3269.35" Y2="272.126" Stroke="#FF000000" StrokeThickness="2"/>
  1730. <Line X1="3269.35" Y1="-532.913" X2="3269.35" Y2="-275.912" Stroke="#FF000000" StrokeThickness="2"/>
  1731. <Line X1="3269.35" Y1="-1031.82" X2="3269.35" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1732. <Line X1="3269.35" Y1="-1139.53" X2="3269.35" Y2="-1182.99" Stroke="#FF000000" StrokeThickness="2"/>
  1733. <Line X1="3326.05" Y1="-842.831" X2="3326.05" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
  1734. <Line X1="3326.04" Y1="-313.707" X2="3326.04" Y2="-157.795" Stroke="#FF000000" StrokeThickness="2"/>
  1735. <Line X1="3326.04" Y1="-118.911" X2="3326.04" Y2="64.252" Stroke="#FF000000" StrokeThickness="2"/>
  1736. <Line X1="3224" Y1="-578.267" X2="3314.71" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1737. <Line X1="3284.47" Y1="-532.913" X2="3284.47" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
  1738. <Line X1="3303.78" Y1="-150.708" X2="3326.04" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
  1739. <Line X1="3348.31" Y1="-150.708" X2="3326.04" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
  1740. <Line X1="2362.33" Y1="-1239.68" X2="2362.33" Y2="-1182.99" Stroke="#FF000000" StrokeThickness="2"/>
  1741. <Line X1="2362.33" Y1="-1182.99" X2="2400.12" Y2="-1182.99" Stroke="#FF000000" StrokeThickness="2"/>
  1742. <Line X1="2475.71" Y1="-1182.99" X2="4063.05" Y2="-1182.99" Stroke="#FF000000" StrokeThickness="2"/>
  1743. <Line X1="4063.05" Y1="-1031.82" X2="4063.05" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1744. <Line X1="4063.05" Y1="-1139.53" X2="4063.05" Y2="-1182.99" Stroke="#FF000000" StrokeThickness="2"/>
  1745. <Line X1="4063.05" Y1="-956.227" X2="4063.05" Y2="-737.008" Stroke="#FF000000" StrokeThickness="2"/>
  1746. <Line X1="4063.12" Y1="-483.777" X2="4063.12" Y2="-646.299" Stroke="#FF000000" StrokeThickness="2"/>
  1747. <Line X1="3326.05" Y1="-918.421" X2="3326.05" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
  1748. <Line X1="3326.05" Y1="-1139.53" X2="3326.05" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
  1749. <Line X1="3326.05" Y1="-1196.22" X2="3326.05" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
  1750. <Line X1="3326.05" Y1="-1252.92" X2="3326.05" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
  1751. <Line X1="3326.05" Y1="-1366.31" X2="3326.05" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
  1752. <Line X1="3326.05" Y1="-1479.7" X2="3326.05" Y2="-1566.61" Stroke="#FF000000" StrokeThickness="2"/>
  1753. <Line X1="3326.05" Y1="-1593.07" X2="3326.05" Y2="-1623.31" Stroke="#FF000000" StrokeThickness="2"/>
  1754. <Line X1="3326.05" Y1="-1649.77" X2="3326.05" Y2="-1680" Stroke="#FF000000" StrokeThickness="2"/>
  1755. <Line X1="3326.05" Y1="-1706.46" X2="3326.05" Y2="-1736.69" Stroke="#FF000000" StrokeThickness="2"/>
  1756. <Line X1="3326.05" Y1="-1763.15" X2="3326.05" Y2="-1863.31" Stroke="#FF000000" StrokeThickness="2"/>
  1757. <Line X1="1746.14" Y1="374.173" X2="1806.61" Y2="374.173" Stroke="#FF000000" StrokeThickness="2"/>
  1758. <Line X1="1776.38" Y1="468.661" X2="1776.38" Y2="444.095" Stroke="#FF000000" StrokeThickness="2"/>
  1759. <Line X1="1972.91" Y1="374.173" X2="2033.39" Y2="374.173" Stroke="#FF000000" StrokeThickness="2"/>
  1760. <Line X1="2003.15" Y1="468.661" X2="2003.15" Y2="444.095" Stroke="#FF000000" StrokeThickness="2"/>
  1761. <Line X1="2003.15" Y1="158.74" X2="2003.15" Y2="196.536" Stroke="#FF000000" StrokeThickness="2"/>
  1762. <Line X1="2003.15" Y1="272.126" X2="2003.15" Y2="309.921" Stroke="#FF000000" StrokeThickness="2"/>
  1763. <Line X1="1776.38" Y1="158.74" X2="1776.38" Y2="196.536" Stroke="#FF000000" StrokeThickness="2"/>
  1764. <Line X1="1776.38" Y1="272.126" X2="1776.38" Y2="309.921" Stroke="#FF000000" StrokeThickness="2"/>
  1765. <Line X1="1776.38" Y1="521.575" X2="1776.38" Y2="612.281" Stroke="#FF000000" StrokeThickness="2"/>
  1766. <Line X1="2003.15" Y1="521.575" X2="2003.15" Y2="612.281" Stroke="#FF000000" StrokeThickness="2"/>
  1767. <Line X1="4195.28" Y1="442.205" X2="4251.84" Y2="442.205" Stroke="#FF000000" StrokeThickness="2"/>
  1768. <Line X1="4478.62" Y1="442.205" X2="4535.43" Y2="442.205" Stroke="#FF000000" StrokeThickness="2"/>
  1769. <Line X1="4251.84" Y1="434.646" X2="4251.84" Y2="449.764" Stroke="#FF000000" StrokeThickness="2"/>
  1770. <Line X1="4478.62" Y1="434.646" X2="4478.62" Y2="449.764" Stroke="#FF000000" StrokeThickness="2"/>
  1771. <Line X1="687.992" Y1="-495.114" X2="718.236" Y2="-495.114" Stroke="#FF000000" StrokeThickness="2"/>
  1772. <Line X1="557.61" Y1="-495.114" X2="502.793" Y2="-495.114" Stroke="#FF000000" StrokeThickness="2"/>
  1773. <Line X1="633.198" Y1="-495.114" X2="694.604" Y2="-495.114" Stroke="#FF000000" StrokeThickness="2"/>
  1774. <Line X1="3326.05" Y1="-1863.31" X2="2267.72" Y2="-1863.31" Stroke="#FF000000" StrokeThickness="2"/>
  1775. <Line X1="4017.67" Y1="-691.654" X2="4108.38" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
  1776. <Line X1="4078.14" Y1="-646.299" X2="4078.14" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
  1777. <Line X1="979.018" Y1="604.721" X2="986.577" Y2="604.721" Stroke="#FF0000FF" StrokeThickness="2"/>
  1778. <Line X1="986.577" Y1="604.721" X2="986.577" Y2="631.177" Stroke="#FF0000FF" StrokeThickness="2"/>
  1779. <Line X1="986.577" Y1="631.177" X2="997.916" Y2="631.177" Stroke="#FF0000FF" StrokeThickness="2"/>
  1780. <Line X1="997.916" Y1="631.177" X2="982.798" Y2="642.516" Stroke="#FF0000FF" StrokeThickness="2"/>
  1781. <Line X1="982.798" Y1="642.516" X2="967.679" Y2="631.177" Stroke="#FF0000FF" StrokeThickness="2"/>
  1782. <Line X1="967.679" Y1="631.177" X2="979.018" Y2="631.177" Stroke="#FF0000FF" StrokeThickness="2"/>
  1783. <Line X1="979.018" Y1="631.177" X2="979.018" Y2="604.721" Stroke="#FF0000FF" StrokeThickness="2"/>
  1784. <Line X1="1394.78" Y1="631.177" X2="1379.66" Y2="642.516" Stroke="#FF0000FF" StrokeThickness="2"/>
  1785. <Line X1="1379.66" Y1="642.516" X2="1364.54" Y2="631.177" Stroke="#FF0000FF" StrokeThickness="2"/>
  1786. <Line X1="1213.35" Y1="616.064" X2="1228.47" Y2="604.725" Stroke="#FF0000FF" StrokeThickness="2"/>
  1787. <Line X1="1228.47" Y1="604.725" X2="1243.59" Y2="616.064" Stroke="#FF0000FF" StrokeThickness="2"/>
  1788. <Line X1="1761.26" Y1="616.063" X2="1776.38" Y2="604.724" Stroke="#FF0000FF" StrokeThickness="2"/>
  1789. <Line X1="1776.38" Y1="604.724" X2="1791.5" Y2="616.063" Stroke="#FF0000FF" StrokeThickness="2"/>
  1790. <Line X1="1988.03" Y1="616.063" X2="2003.15" Y2="604.724" Stroke="#FF0000FF" StrokeThickness="2"/>
  1791. <Line X1="2003.15" Y1="604.724" X2="2018.27" Y2="616.063" Stroke="#FF0000FF" StrokeThickness="2"/>
  1792. <Line X1="740.787" Y1="616.063" X2="755.906" Y2="604.724" Stroke="#FF0000FF" StrokeThickness="2"/>
  1793. <Line X1="755.906" Y1="604.724" X2="771.024" Y2="616.063" Stroke="#FF0000FF" StrokeThickness="2"/>
  1794. <Line X1="835.276" Y1="616.063" X2="850.394" Y2="604.724" Stroke="#FF0000FF" StrokeThickness="2"/>
  1795. <Line X1="850.394" Y1="604.724" X2="865.512" Y2="616.063" Stroke="#FF0000FF" StrokeThickness="2"/>
  1796. <Line X1="2210.9" Y1="616.063" X2="2226.02" Y2="604.724" Stroke="#FF0000FF" StrokeThickness="2"/>
  1797. <Line X1="2226.02" Y1="604.724" X2="2241.13" Y2="616.063" Stroke="#FF0000FF" StrokeThickness="2"/>
  1798. <Line X1="2399.87" Y1="616.063" X2="2414.99" Y2="604.724" Stroke="#FF0000FF" StrokeThickness="2"/>
  1799. <Line X1="2414.99" Y1="604.724" X2="2430.11" Y2="616.063" Stroke="#FF0000FF" StrokeThickness="2"/>
  1800. <Line X1="3254.23" Y1="253.232" X2="3269.35" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
  1801. <Line X1="3269.35" Y1="241.894" X2="3284.47" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
  1802. <Line X1="3367.62" Y1="253.232" X2="3382.73" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
  1803. <Line X1="3382.73" Y1="241.894" X2="3397.85" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
  1804. <Line X1="3481" Y1="253.232" X2="3496.12" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
  1805. <Line X1="3496.12" Y1="241.894" X2="3511.24" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
  1806. <Line X1="3594.39" Y1="253.232" X2="3609.51" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
  1807. <Line X1="3609.51" Y1="241.894" X2="3624.62" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
  1808. <Line X1="3707.78" Y1="253.232" X2="3722.89" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
  1809. <Line X1="3722.89" Y1="241.894" X2="3738.01" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
  1810. <Line X1="3934.54" Y1="253.232" X2="3949.66" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
  1811. <Line X1="3949.66" Y1="241.894" X2="3964.78" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
  1812. <Line X1="3821.16" Y1="253.232" X2="3836.28" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
  1813. <Line X1="3836.28" Y1="241.894" X2="3851.39" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
  1814. <Line X1="4444.72" Y1="253.232" X2="4459.84" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
  1815. <Line X1="4459.84" Y1="241.894" X2="4474.96" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
  1816. </Canvas>
  1817. <Canvas x:Name="RawPath" Panel.ZIndex="0">
  1818. <Path Name="path1009" Fill="#FF000000">
  1819. <Path.Data>
  1820. <PathGeometry Figures="M 975.248324 -275.905214 L 967.689268 -275.905214 z " FillRule="NonZero"/>
  1821. </Path.Data>
  1822. </Path>
  1823. <Path Name="path1013" Fill="#FF000000">
  1824. <Path.Data>
  1825. <PathGeometry Figures="M 1496.819512 -1436.215151 L 1489.260457 -1436.215151 z " FillRule="NonZero"/>
  1826. </Path.Data>
  1827. </Path>
  1828. <Path Name="path1707" Stroke="#FF000000">
  1829. <Path.Data>
  1830. <PathGeometry Figures="M 2003.276205 -1880.616289 A 269.938716 269.938716 0.000000 0 0 1625.323449 -1880.616289" FillRule="NonZero"/>
  1831. </Path.Data>
  1832. </Path>
  1833. <Path Name="path1747" Fill="#FF000000">
  1834. <Path.Data>
  1835. <PathGeometry Figures="M 1591.307701 -1031.809149 L 1583.748646 -1031.809149 z " FillRule="NonZero"/>
  1836. </Path.Data>
  1837. </Path>
  1838. <Path Name="path1889" Fill="#FF0000FF">
  1839. <Path.Data>
  1840. <PathGeometry Figures="M 2310.993336 -41.571671 L 2305.324044 -41.571671 z M 2310.993519 -18.894506 L 2305.324228 -18.894506 z " FillRule="NonZero"/>
  1841. </Path.Data>
  1842. </Path>
  1843. <Path Name="path1935" Fill="#FF000000">
  1844. <Path.Data>
  1845. <PathGeometry Figures="M 1383.433903 -1371.965790 L 1375.874848 -1371.965790 z " FillRule="NonZero"/>
  1846. </Path.Data>
  1847. </Path>
  1848. <Path Name="path1939" Fill="#FF000000">
  1849. <Path.Data>
  1850. <PathGeometry Figures="M 1383.434672 -1145.194124 L 1375.875617 -1145.194124 z " FillRule="NonZero"/>
  1851. </Path.Data>
  1852. </Path>
  1853. <Path Name="path1943" Fill="#FF000000">
  1854. <Path.Data>
  1855. <PathGeometry Figures="M 1383.434287 -1258.579951 L 1375.875232 -1258.579951 z " FillRule="NonZero"/>
  1856. </Path.Data>
  1857. </Path>
  1858. <Path Name="path1947" Fill="#FF000000">
  1859. <Path.Data>
  1860. <PathGeometry Figures="M 1383.433685 -1436.214681 L 1375.874630 -1436.214681 z " FillRule="NonZero"/>
  1861. </Path.Data>
  1862. </Path>
  1863. <Path Name="path1965" Fill="#FF000000">
  1864. <Path.Data>
  1865. <PathGeometry Figures="M 1383.436501 -495.118199 L 1375.877446 -495.118199 z " FillRule="NonZero"/>
  1866. </Path.Data>
  1867. </Path>
  1868. <Path Name="path1985" Fill="#FF000000">
  1869. <Path.Data>
  1870. <PathGeometry Figures="M 975.248365 -68.035152 L 967.689310 -68.035152 z " FillRule="NonZero"/>
  1871. </Path.Data>
  1872. </Path>
  1873. <Path Name="path2019" Fill="#FF000000">
  1874. <Path.Data>
  1875. <PathGeometry Figures="M 975.248365 120.941144 L 967.689310 120.941144 z " FillRule="NonZero"/>
  1876. </Path.Data>
  1877. </Path>
  1878. <Path Name="path2041" Fill="#FF000000">
  1879. <Path.Data>
  1880. <PathGeometry Figures="M 1232.249064 -200.315097 L 1224.690009 -200.315097 z " FillRule="NonZero"/>
  1881. </Path.Data>
  1882. </Path>
  1883. <Path Name="path2055" Fill="#FF000000">
  1884. <Path.Data>
  1885. <PathGeometry Figures="M 722.016306 -842.834347 L 714.457251 -842.834347 z " FillRule="NonZero"/>
  1886. </Path.Data>
  1887. </Path>
  1888. <Path Name="path2075" Fill="#FF000000">
  1889. <Path.Data>
  1890. <PathGeometry Figures="M 1232.252416 -200.315097 L 1224.693360 -200.315097 z " FillRule="NonZero"/>
  1891. </Path.Data>
  1892. </Path>
  1893. <Path Name="path2089" Fill="#FF000000">
  1894. <Path.Data>
  1895. <PathGeometry Figures="M 1383.438858 -1201.887037 L 1375.879803 -1201.887037 z " FillRule="NonZero"/>
  1896. </Path.Data>
  1897. </Path>
  1898. <Path Name="path2101" Stroke="#FF000000">
  1899. <Path.Data>
  1900. <PathGeometry Figures="M 2604.094591 423.307385 L 3038.729916 423.307121 L 3038.729916 801.259877 L 2604.094591 801.260141" FillRule="NonZero"/>
  1901. </Path.Data>
  1902. </Path>
  1903. <Path Name="path2395" Fill="#FF0000FF">
  1904. <Path.Data>
  1905. <PathGeometry Figures="M 2688.947632 -247.552991 L 2683.278341 -247.552991 z M 2688.947816 -224.875826 L 2683.278524 -224.875826 z " FillRule="NonZero"/>
  1906. </Path.Data>
  1907. </Path>
  1908. <Path Name="path2471" Fill="#FF000000">
  1909. <Path.Data>
  1910. <PathGeometry Figures="M 975.242791 -1447.551246 L 967.683736 -1447.551246 z " FillRule="NonZero"/>
  1911. </Path.Data>
  1912. </Path>
  1913. <Path Name="path2475" Fill="#FF000000">
  1914. <Path.Data>
  1915. <PathGeometry Figures="M 975.245384 -1031.803459 L 967.686329 -1031.803459 z " FillRule="NonZero"/>
  1916. </Path.Data>
  1917. </Path>
  1918. <Path Name="path2479" Fill="#FF000000">
  1919. <Path.Data>
  1920. <PathGeometry Figures="M 854.298295 -1031.800441 L 846.739240 -1031.800441 z " FillRule="NonZero"/>
  1921. </Path.Data>
  1922. </Path>
  1923. <Path Name="path2483" Fill="#FF000000">
  1924. <Path.Data>
  1925. <PathGeometry Figures="M 854.298295 -1447.549982 L 846.739240 -1447.549982 z " FillRule="NonZero"/>
  1926. </Path.Data>
  1927. </Path>
  1928. <Path Name="path2493" Fill="#FF0000FF">
  1929. <Path.Data>
  1930. <PathGeometry Figures="M 709.429495 -1175.430986 L 703.760204 -1175.430986 z M 709.429678 -1152.753820 L 703.760387 -1152.753820 z " FillRule="NonZero"/>
  1931. </Path.Data>
  1932. </Path>
  1933. <Path Name="path2503" Fill="#FF000000">
  1934. <Path.Data>
  1935. <PathGeometry Figures="M 722.016064 -389.291040 L 714.457009 -389.291040 z " FillRule="NonZero"/>
  1936. </Path.Data>
  1937. </Path>
  1938. <Path Name="path2507" Fill="#FF000000">
  1939. <Path.Data>
  1940. <PathGeometry Figures="M 722.015925 -495.114139 L 714.456870 -495.114139 z " FillRule="NonZero"/>
  1941. </Path.Data>
  1942. </Path>
  1943. <Path Name="path2511" Fill="#FF000000">
  1944. <Path.Data>
  1945. <PathGeometry Figures="M 722.016388 -616.062694 L 714.457333 -616.062694 z " FillRule="NonZero"/>
  1946. </Path.Data>
  1947. </Path>
  1948. <Path Name="path2517" Fill="#FF000000">
  1949. <Path.Data>
  1950. <PathGeometry Figures="M 722.016328 -729.448521 L 714.457273 -729.448521 z " FillRule="NonZero"/>
  1951. </Path.Data>
  1952. </Path>
  1953. <Path Name="path2523" Fill="#FF000000">
  1954. <Path.Data>
  1955. <PathGeometry Figures="M 722.016306 -842.834347 L 714.457251 -842.834347 z " FillRule="NonZero"/>
  1956. </Path.Data>
  1957. </Path>
  1958. <Path Name="path2535" Fill="#FF000000">
  1959. <Path.Data>
  1960. <PathGeometry Figures="M 722.016307 -842.834347 L 714.457252 -842.834347 z " FillRule="NonZero"/>
  1961. </Path.Data>
  1962. </Path>
  1963. <Path Name="path2547" Fill="#FF000000">
  1964. <Path.Data>
  1965. <PathGeometry Figures="M 722.016456 -729.448521 L 714.457401 -729.448521 z " FillRule="NonZero"/>
  1966. </Path.Data>
  1967. </Path>
  1968. <Path Name="path2559" Fill="#FF000000">
  1969. <Path.Data>
  1970. <PathGeometry Figures="M 722.016605 -616.062694 L 714.457550 -616.062694 z " FillRule="NonZero"/>
  1971. </Path.Data>
  1972. </Path>
  1973. <Path Name="path2571" Fill="#FF000000">
  1974. <Path.Data>
  1975. <PathGeometry Figures="M 722.016064 -389.291040 L 714.457009 -389.291040 z " FillRule="NonZero"/>
  1976. </Path.Data>
  1977. </Path>
  1978. <Path Name="path3093" Fill="#FF0000FF">
  1979. <Path.Data>
  1980. <PathGeometry Figures="M 967.679410 631.177278 L 982.797520 642.515861 L 997.915631 631.177278 L 986.577048 631.177278 L 986.577048 604.720585 L 979.017993 604.720585 L 979.017993 631.177278 z " FillRule="NonZero"/>
  1981. </Path.Data>
  1982. </Path>
  1983. <Path Name="path3143" Fill="#FF0000FF">
  1984. <Path.Data>
  1985. <PathGeometry Figures="M 1364.541373 631.177278 L 1379.659483 642.515861 L 1394.777593 631.177278 L 1383.439010 631.177278 L 1383.439010 604.720585 L 1375.879955 604.720585 L 1375.879955 631.177278 z " FillRule="NonZero"/>
  1986. </Path.Data>
  1987. </Path>
  1988. <Path Name="path3207" Fill="#FF0000FF">
  1989. <Path.Data>
  1990. <PathGeometry Figures="M 1243.590982 616.063522 L 1228.472872 604.724940 L 1213.354761 616.063522 L 1224.693344 616.063522 L 1224.693344 642.520215 L 1232.252399 642.520215 L 1232.252399 616.063522 z " FillRule="NonZero"/>
  1991. </Path.Data>
  1992. </Path>
  1993. <Path Name="path3209" Fill="#FF0000FF">
  1994. <Path.Data>
  1995. <PathGeometry Figures="M 1791.496063 616.062992 L 1776.377953 604.724409 L 1761.259843 616.062992 L 1772.598425 616.062992 L 1772.598425 642.519685 L 1780.157480 642.519685 L 1780.157480 616.062992 z " FillRule="NonZero"/>
  1996. </Path.Data>
  1997. </Path>
  1998. <Path Name="path3211" Fill="#FF0000FF">
  1999. <Path.Data>
  2000. <PathGeometry Figures="M 2018.267717 616.062992 L 2003.149606 604.724409 L 1988.031496 616.062992 L 1999.370079 616.062992 L 1999.370079 642.519685 L 2006.929134 642.519685 L 2006.929134 616.062992 z " FillRule="NonZero"/>
  2001. </Path.Data>
  2002. </Path>
  2003. <Path Name="path3213" Fill="#FF0000FF">
  2004. <Path.Data>
  2005. <PathGeometry Figures="M 771.023622 616.062992 L 755.905512 604.724409 L 740.787402 616.062992 L 752.125984 616.062992 L 752.125984 642.519685 L 759.685039 642.519685 L 759.685039 616.062992 z " FillRule="NonZero"/>
  2006. </Path.Data>
  2007. </Path>
  2008. <Path Name="path3215" Fill="#FF0000FF">
  2009. <Path.Data>
  2010. <PathGeometry Figures="M 865.511811 616.062992 L 850.393701 604.724409 L 835.275591 616.062992 L 846.614173 616.062992 L 846.614173 642.519685 L 854.173228 642.519685 L 854.173228 616.062992 z " FillRule="NonZero"/>
  2011. </Path.Data>
  2012. </Path>
  2013. <Path Name="path3217" Fill="#FF0000FF">
  2014. <Path.Data>
  2015. <PathGeometry Figures="M 2241.133347 616.062992 L 2226.015237 604.724409 L 2210.897127 616.062992 L 2222.235709 616.062992 L 2222.235709 642.519685 L 2229.794764 642.519685 L 2229.794764 616.062992 z " FillRule="NonZero"/>
  2016. </Path.Data>
  2017. </Path>
  2018. <Path Name="path3219" Fill="#FF0000FF">
  2019. <Path.Data>
  2020. <PathGeometry Figures="M 2430.109725 616.062992 L 2414.991615 604.724409 L 2399.873504 616.062992 L 2411.212087 616.062992 L 2411.212087 642.519685 L 2418.771142 642.519685 L 2418.771142 616.062992 z " FillRule="NonZero"/>
  2021. </Path.Data>
  2022. </Path>
  2023. <Path Name="path3221" Fill="#FF0000FF">
  2024. <Path.Data>
  2025. <PathGeometry Figures="M 3284.466207 253.232171 L 3269.348097 241.893588 L 3254.229987 253.232171 L 3265.568570 253.232171 L 3265.568570 279.688864 L 3273.127625 279.688864 L 3273.127625 253.232171 z " FillRule="NonZero"/>
  2026. </Path.Data>
  2027. </Path>
  2028. <Path Name="path3223" Fill="#FF0000FF">
  2029. <Path.Data>
  2030. <PathGeometry Figures="M 3397.852034 253.232171 L 3382.733924 241.893588 L 3367.615814 253.232171 L 3378.954396 253.232171 L 3378.954396 279.688864 L 3386.513452 279.688864 L 3386.513452 253.232171 z " FillRule="NonZero"/>
  2031. </Path.Data>
  2032. </Path>
  2033. <Path Name="path3225" Fill="#FF0000FF">
  2034. <Path.Data>
  2035. <PathGeometry Figures="M 3511.237861 253.232171 L 3496.119751 241.893588 L 3481.001641 253.232171 L 3492.340223 253.232171 L 3492.340223 279.688864 L 3499.899278 279.688864 L 3499.899278 253.232171 z " FillRule="NonZero"/>
  2036. </Path.Data>
  2037. </Path>
  2038. <Path Name="path3227" Fill="#FF0000FF">
  2039. <Path.Data>
  2040. <PathGeometry Figures="M 3624.623833 253.232171 L 3609.505723 241.893588 L 3594.387613 253.232171 L 3605.726195 253.232171 L 3605.726195 279.688864 L 3613.285250 279.688864 L 3613.285250 253.232171 z " FillRule="NonZero"/>
  2041. </Path.Data>
  2042. </Path>
  2043. <Path Name="path3229" Fill="#FF0000FF">
  2044. <Path.Data>
  2045. <PathGeometry Figures="M 3738.012754 253.232171 L 3722.894644 241.893588 L 3707.776534 253.232171 L 3719.115116 253.232171 L 3719.115116 279.688864 L 3726.674172 279.688864 L 3726.674172 253.232171 z " FillRule="NonZero"/>
  2046. </Path.Data>
  2047. </Path>
  2048. <Path Name="path3231" Fill="#FF0000FF">
  2049. <Path.Data>
  2050. <PathGeometry Figures="M 3964.781168 253.232171 L 3949.663058 241.893588 L 3934.544948 253.232171 L 3945.883530 253.232171 L 3945.883530 279.688864 L 3953.442585 279.688864 L 3953.442585 253.232171 z " FillRule="NonZero"/>
  2051. </Path.Data>
  2052. </Path>
  2053. <Path Name="path3233" Fill="#FF0000FF">
  2054. <Path.Data>
  2055. <PathGeometry Figures="M 3851.393636 253.232171 L 3836.275526 241.893588 L 3821.157416 253.232171 L 3832.495999 253.232171 L 3832.495999 279.688864 L 3840.055054 279.688864 L 3840.055054 253.232171 z " FillRule="NonZero"/>
  2056. </Path.Data>
  2057. </Path>
  2058. <Path Name="path3235" Fill="#FF0000FF">
  2059. <Path.Data>
  2060. <PathGeometry Figures="M 4474.957423 253.232171 L 4459.839313 241.893588 L 4444.721202 253.232171 L 4456.059785 253.232171 L 4456.059785 279.688864 L 4463.618840 279.688864 L 4463.618840 253.232171 z " FillRule="NonZero"/>
  2061. </Path.Data>
  2062. </Path>
  2063. </Canvas>
  2064. </Canvas>
  2065. </UserControl>