misc.xml 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193
  1. <shapes name="mxGraph.ios7.misc">
  2. <shape aspect="variable" h="100" name="Add" strokewidth="inherit" w="100">
  3. <connections>
  4. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  5. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  6. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  7. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  8. </connections>
  9. <background>
  10. <ellipse h="100" w="100" x="0" y="0"/>
  11. </background>
  12. <foreground>
  13. <fill/>
  14. <strokewidth width="2"/>
  15. <path>
  16. <move x="50" y="20"/>
  17. <line x="50" y="80"/>
  18. <move x="20" y="50"/>
  19. <line x="80" y="50"/>
  20. </path>
  21. <stroke/>
  22. </foreground>
  23. </shape>
  24. <shape aspect="variable" h="15" name="Adjust" strokewidth="inherit" w="50">
  25. <connections>
  26. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  27. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  28. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  29. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  30. </connections>
  31. <background>
  32. <roundrect arcsize="33.33" h="15" w="50" x="0" y="0"/>
  33. </background>
  34. <foreground>
  35. <fillstroke/>
  36. <path>
  37. <move x="25" y="0"/>
  38. <line x="25" y="15"/>
  39. </path>
  40. <stroke/>
  41. <fillcolor color="#0080f0"/>
  42. <rect h="2" w="9" x="8" y="6.5"/>
  43. <fill/>
  44. <rect h="9" w="2" x="36.5" y="3"/>
  45. <fill/>
  46. <rect h="2" w="9" x="33" y="6.5"/>
  47. <fill/>
  48. </foreground>
  49. </shape>
  50. <shape aspect="variable" h="100" name="Bluetooth" strokewidth="inherit" w="100">
  51. <connections/>
  52. <background>
  53. <path>
  54. <move x="0" y="20"/>
  55. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  56. <line x="80" y="0"/>
  57. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  58. <line x="100" y="80"/>
  59. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  60. <line x="20" y="100"/>
  61. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  62. <close/>
  63. </path>
  64. </background>
  65. <foreground>
  66. <fillstroke/>
  67. <strokecolor color="none"/>
  68. <fillcolor color="#ffffff"/>
  69. <path>
  70. <move x="28.5" y="36.3"/>
  71. <line x="32.5" y="31.8"/>
  72. <line x="46.2" y="44"/>
  73. <line x="46.2" y="15.7"/>
  74. <line x="69" y="37.2"/>
  75. <line x="53.6" y="50.8"/>
  76. <line x="69" y="64.5"/>
  77. <line x="46.2" y="85.8"/>
  78. <line x="46.2" y="57.5"/>
  79. <line x="32.5" y="69.7"/>
  80. <line x="28.5" y="65.3"/>
  81. <line x="44.8" y="50.8"/>
  82. <close/>
  83. <move x="51.9" y="72.5"/>
  84. <line x="60.2" y="64.5"/>
  85. <line x="51.9" y="57.3"/>
  86. <close/>
  87. <move x="51.9" y="44.5"/>
  88. <line x="60.2" y="36.9"/>
  89. <line x="51.9" y="29.3"/>
  90. <close/>
  91. </path>
  92. <fill/>
  93. </foreground>
  94. </shape>
  95. <shape aspect="variable" h="100" name="Broadcast" strokewidth="inherit" w="100">
  96. <connections/>
  97. <background>
  98. <path>
  99. <move x="0" y="20"/>
  100. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  101. <line x="80" y="0"/>
  102. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  103. <line x="100" y="80"/>
  104. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  105. <line x="20" y="100"/>
  106. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  107. <close/>
  108. </path>
  109. </background>
  110. <foreground>
  111. <fillstroke/>
  112. <strokecolor color="none"/>
  113. <fillcolor color="#ffffff"/>
  114. <path>
  115. <move x="48.5" y="72.5"/>
  116. <line x="27.5" y="86"/>
  117. <line x="48.2" y="41.8"/>
  118. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="1" x="52" x-axis-rotation="0" y="41.8"/>
  119. <line x="72" y="86"/>
  120. <line x="52" y="72.5"/>
  121. <line x="52" y="84"/>
  122. <line x="48.5" y="84"/>
  123. <close/>
  124. <move x="46.5" y="69.5"/>
  125. <line x="41" y="66"/>
  126. <line x="35.5" y="77"/>
  127. <close/>
  128. <move x="48.5" y="66.5"/>
  129. <line x="48.5" y="49"/>
  130. <line x="42.5" y="62.5"/>
  131. <close/>
  132. <move x="51.8" y="66.5"/>
  133. <line x="58" y="63"/>
  134. <line x="51.8" y="49"/>
  135. <close/>
  136. <move x="54" y="69.5"/>
  137. <line x="64.2" y="77"/>
  138. <line x="59.25" y="66.5"/>
  139. <close/>
  140. </path>
  141. <fill/>
  142. <path>
  143. <move x="25.7" y="56.2"/>
  144. <line x="22.5" y="59"/>
  145. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="22.5" x-axis-rotation="0" y="16.25"/>
  146. <line x="25.7" y="19.1"/>
  147. <arc large-arc-flag="0" rx="26" ry="26" sweep-flag="0" x="25.7" x-axis-rotation="0" y="56.2"/>
  148. <close/>
  149. </path>
  150. <fill/>
  151. <path>
  152. <move x="32.5" y="50.5"/>
  153. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="32.5" x-axis-rotation="0" y="23.8"/>
  154. <line x="35.6" y="26"/>
  155. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="0" x="35.6" x-axis-rotation="0" y="48"/>
  156. <close/>
  157. <close/>
  158. </path>
  159. <fill/>
  160. <path>
  161. <move x="67" y="24"/>
  162. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="67" x-axis-rotation="0" y="51"/>
  163. <line x="64.3" y="48.5"/>
  164. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="0" x="64.3" x-axis-rotation="0" y="26.5"/>
  165. <close/>
  166. <close/>
  167. </path>
  168. <fill/>
  169. <path>
  170. <move x="78" y="16.8"/>
  171. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="78" x-axis-rotation="0" y="59.2"/>
  172. <line x="75" y="56.5"/>
  173. <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="0" x="75" x-axis-rotation="0" y="19.5"/>
  174. <close/>
  175. <close/>
  176. </path>
  177. <fill/>
  178. </foreground>
  179. </shape>
  180. <shape aspect="variable" h="157" name="Call Pad" strokewidth="inherit" w="146">
  181. <connections>
  182. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  183. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  184. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  185. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  186. </connections>
  187. <background>
  188. <fillcolor color="#48d070"/>
  189. <roundrect arcsize="13.64" h="22" w="146" x="0" y="135"/>
  190. </background>
  191. <foreground>
  192. <fill/>
  193. <fontcolor color="#222222"/>
  194. <fontsize size="12"/>
  195. <text str="1" align="center" valign="middle" x="15" y="14"/>
  196. <text str="2" align="center" valign="middle" x="73" y="14"/>
  197. <text str="3" align="center" valign="middle" x="131" y="14"/>
  198. <text str="4" align="center" valign="middle" x="15" y="47"/>
  199. <text str="5" align="center" valign="middle" x="73" y="47"/>
  200. <text str="6" align="center" valign="middle" x="131" y="47"/>
  201. <text str="7" align="center" valign="middle" x="15" y="80"/>
  202. <text str="8" align="center" valign="middle" x="73" y="80"/>
  203. <text str="9" align="center" valign="middle" x="131" y="80"/>
  204. <text str="0" align="center" valign="middle" x="73" y="112.5"/>
  205. <text str="*" align="center" valign="middle" x="15" y="112.5"/>
  206. <text str="#" align="center" valign="middle" x="131" y="112.5"/>
  207. <fontsize size="7"/>
  208. <fontcolor color="#c0c0c0"/>
  209. <text str="ABC" align="center" valign="middle" x="73" y="23"/>
  210. <text str="DEF" align="center" valign="middle" x="131" y="23"/>
  211. <text str="GHI" align="center" valign="middle" x="15" y="56"/>
  212. <text str="JKL" align="center" valign="middle" x="73" y="56"/>
  213. <text str="MNO" align="center" valign="middle" x="131" y="56"/>
  214. <text str="PQRS" align="center" valign="middle" x="15" y="89"/>
  215. <text str="TUV" align="center" valign="middle" x="73" y="89"/>
  216. <text str="WXYZ" align="center" valign="middle" x="131" y="89"/>
  217. <text str="+" align="center" valign="middle" x="73" y="121.5"/>
  218. <strokecolor color="#c0c0c0"/>
  219. <ellipse h="30" w="30" x="0" y="0"/>
  220. <stroke/>
  221. <ellipse h="30" w="30" x="0" y="33"/>
  222. <stroke/>
  223. <ellipse h="30" w="30" x="0" y="66"/>
  224. <stroke/>
  225. <ellipse h="30" w="30" x="0" y="99"/>
  226. <stroke/>
  227. <ellipse h="30" w="30" x="58" y="0"/>
  228. <stroke/>
  229. <ellipse h="30" w="30" x="58" y="33"/>
  230. <stroke/>
  231. <ellipse h="30" w="30" x="58" y="66"/>
  232. <stroke/>
  233. <ellipse h="30" w="30" x="58" y="99"/>
  234. <stroke/>
  235. <ellipse h="30" w="30" x="116" y="0"/>
  236. <stroke/>
  237. <ellipse h="30" w="30" x="116" y="33"/>
  238. <stroke/>
  239. <ellipse h="30" w="30" x="116" y="66"/>
  240. <stroke/>
  241. <ellipse h="30" w="30" x="116" y="99"/>
  242. <stroke/>
  243. <fontcolor color="#ffffff"/>
  244. <text str="Call" valign="bottom" x="70" y="150"/>
  245. </foreground>
  246. </shape>
  247. <shape aspect="variable" h="60" name="Check" strokewidth="inherit" w="70">
  248. <connections>
  249. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  250. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  251. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  252. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  253. </connections>
  254. <background>
  255. <path>
  256. <move x="0" y="30"/>
  257. <line x="15" y="60"/>
  258. <line x="70" y="0"/>
  259. </path>
  260. </background>
  261. <foreground>
  262. <strokewidth width="2"/>
  263. <stroke/>
  264. </foreground>
  265. </shape>
  266. <shape aspect="variable" h="100" name="Circle" strokewidth="inherit" w="100">
  267. <connections>
  268. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  269. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  270. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  271. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  272. </connections>
  273. <foreground>
  274. <ellipse h="100" w="100" x="0" y="0"/>
  275. <stroke/>
  276. </foreground>
  277. </shape>
  278. <shape aspect="variable" h="30" name="Contacts Bar" strokewidth="inherit" w="174">
  279. <connections>
  280. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  281. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  282. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  283. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  284. </connections>
  285. <background>
  286. <rect h="30" w="174" x="0" y="0"/>
  287. </background>
  288. <foreground>
  289. <fill/>
  290. <strokewidth width="2"/>
  291. <path>
  292. <move x="23" y="5.33"/>
  293. <line x="11" y="15.33"/>
  294. <line x="23" y="25.33"/>
  295. <move x="47" y="5.33"/>
  296. <line x="59.33" y="15.33"/>
  297. <line x="47" y="25.33"/>
  298. <move x="88.6" y="8.8"/>
  299. <line x="94.67" y="8.8"/>
  300. <line x="94.67" y="25"/>
  301. <line x="77.67" y="25"/>
  302. <line x="77.67" y="8.8"/>
  303. <line x="83.74" y="8.8"/>
  304. <move x="81.31" y="8.28"/>
  305. <line x="86.17" y="5.33"/>
  306. <line x="91.02" y="8.28"/>
  307. <move x="86.17" y="5.33"/>
  308. <line x="86.17" y="19.22"/>
  309. <move x="110.83" y="24"/>
  310. <arc large-arc-flag="0" rx="11.21" ry="11.21" sweep-flag="1" x="109.67" x-axis-rotation="0" y="22.83"/>
  311. <line x="109.67" y="6.5"/>
  312. <arc large-arc-flag="0" rx="8.36" ry="8.36" sweep-flag="1" x="110.83" x-axis-rotation="0" y="5.33"/>
  313. <line x="120.17" y="5.33"/>
  314. <arc large-arc-flag="0" rx="4.38" ry="4.38" sweep-flag="1" x="121.33" x-axis-rotation="0" y="6.5"/>
  315. <arc large-arc-flag="0" rx="3.89" ry="3.89" sweep-flag="1" x="122.5" x-axis-rotation="0" y="5.33"/>
  316. <line x="131.83" y="5.33"/>
  317. <arc large-arc-flag="0" rx="1.17" ry="1.17" sweep-flag="1" x="133" x-axis-rotation="0" y="6.5"/>
  318. <line x="133" y="22.83"/>
  319. <arc large-arc-flag="0" rx="7.32" ry="7.32" sweep-flag="1" x="131.83" x-axis-rotation="0" y="24"/>
  320. <close/>
  321. <move x="121.33" y="6.5"/>
  322. <line x="121.33" y="25.17"/>
  323. <move x="144.67" y="5.33"/>
  324. <line x="165.97" y="5.33"/>
  325. <line x="165.97" y="7.7"/>
  326. <line x="168.33" y="7.7"/>
  327. <line x="168.33" y="23.08"/>
  328. <line x="147.03" y="23.08"/>
  329. <line x="147.03" y="20.72"/>
  330. <line x="144.67" y="20.72"/>
  331. <close/>
  332. <move x="147.03" y="20.72"/>
  333. <line x="147.03" y="7.7"/>
  334. <line x="165.97" y="7.7"/>
  335. </path>
  336. <stroke/>
  337. </foreground>
  338. </shape>
  339. <shape aspect="variable" h="100" name="Current Location" strokewidth="inherit" w="100">
  340. <connections>
  341. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  342. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  343. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  344. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  345. </connections>
  346. <background>
  347. <save/>
  348. <ellipse h="100" w="100" x="0" y="0"/>
  349. </background>
  350. <foreground>
  351. <fillcolor color="#c6e2ff"/>
  352. <alpha alpha="0.5"/>
  353. <fill/>
  354. <restore/>
  355. <rect/>
  356. <stroke/>
  357. <strokewidth width="2"/>
  358. <ellipse h="20" w="20" x="40" y="40"/>
  359. <fillstroke/>
  360. </foreground>
  361. </shape>
  362. <shape aspect="variable" h="100" name="Delete" strokewidth="inherit" w="100">
  363. <connections>
  364. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  365. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  366. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  367. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  368. </connections>
  369. <background>
  370. <ellipse h="100" w="100" x="0" y="0"/>
  371. </background>
  372. <foreground>
  373. <fill/>
  374. <strokewidth width="2"/>
  375. <path>
  376. <move x="20" y="50"/>
  377. <line x="80" y="50"/>
  378. </path>
  379. <stroke/>
  380. </foreground>
  381. </shape>
  382. <shape aspect="variable" h="60" name="Down" strokewidth="inherit" w="100">
  383. <connections>
  384. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  385. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  386. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  387. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  388. </connections>
  389. <background>
  390. <path>
  391. <move x="0" y="0"/>
  392. <line x="50" y="60"/>
  393. <line x="100" y="0"/>
  394. </path>
  395. </background>
  396. <foreground>
  397. <strokewidth width="2"/>
  398. <stroke/>
  399. </foreground>
  400. </shape>
  401. <shape aspect="variable" h="100" name="Dunno5" strokewidth="inherit" w="100">
  402. <connections>
  403. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  404. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  405. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  406. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  407. </connections>
  408. <background>
  409. <ellipse h="100" w="100" x="0" y="0"/>
  410. </background>
  411. <foreground>
  412. <fill/>
  413. <strokewidth width="2"/>
  414. <ellipse h="80" w="80" x="10" y="10"/>
  415. <stroke/>
  416. </foreground>
  417. </shape>
  418. <shape aspect="variable" h="95" name="Dunno6" strokewidth="inherit" w="100">
  419. <connections>
  420. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  421. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  422. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  423. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  424. </connections>
  425. <background>
  426. <ellipse h="60" w="60" x="0" y="35"/>
  427. </background>
  428. <foreground>
  429. <fillcolor color="#999999"/>
  430. <alpha alpha="0.7"/>
  431. <fill/>
  432. <fillcolor color="#555555"/>
  433. <ellipse h="60" w="60" x="20" y="0"/>
  434. <fill/>
  435. <fillcolor color="#000000"/>
  436. <ellipse h="60" w="60" x="40" y="35"/>
  437. <fill/>
  438. </foreground>
  439. </shape>
  440. <shape aspect="variable" h="30" name="Edit Bar" strokewidth="inherit" w="174">
  441. <connections>
  442. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  443. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  444. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  445. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  446. </connections>
  447. <background>
  448. <rect h="30" w="174" x="0" y="0"/>
  449. </background>
  450. <foreground>
  451. <fill/>
  452. <rect h="17.33" w="16.98" x="9" y="7.01"/>
  453. <stroke/>
  454. <path>
  455. <move x="26.36" y="5.66"/>
  456. <arc large-arc-flag="0" rx="6.64" ry="6.78" sweep-flag="1" x="27.3" x-axis-rotation="0" y="6.62"/>
  457. <line x="15.6" y="18.56"/>
  458. <arc large-arc-flag="0" rx="4.66" ry="4.76" sweep-flag="1" x="14.66" x-axis-rotation="0" y="17.6"/>
  459. <close/>
  460. <move x="42.33" y="12.16"/>
  461. <line x="49.43" y="5.33"/>
  462. <line x="49.43" y="9.88"/>
  463. <arc large-arc-flag="0" rx="11.54" ry="14.78" sweep-flag="1" x="60.08" x-axis-rotation="0" y="24.67"/>
  464. <arc large-arc-flag="0" rx="10.65" ry="13.65" sweep-flag="0" x="49.43" x-axis-rotation="0" y="15.57"/>
  465. <line x="49.43" y="20.12"/>
  466. <close/>
  467. <move x="88.6" y="8.8"/>
  468. <line x="94.67" y="8.8"/>
  469. <line x="94.67" y="25"/>
  470. <line x="77.67" y="25"/>
  471. <line x="77.67" y="8.8"/>
  472. <line x="83.74" y="8.8"/>
  473. <move x="81.31" y="8.28"/>
  474. <line x="86.17" y="5.33"/>
  475. <line x="91.02" y="8.28"/>
  476. <move x="86.17" y="5.33"/>
  477. <line x="86.17" y="19.22"/>
  478. <move x="110" y="8.61"/>
  479. <arc large-arc-flag="0" rx="7.98" ry="7.98" sweep-flag="1" x="111.11" x-axis-rotation="0" y="7.5"/>
  480. <line x="113.34" y="7.5"/>
  481. <arc large-arc-flag="0" rx="6.72" ry="6.72" sweep-flag="1" x="114.45" x-axis-rotation="0" y="8.61"/>
  482. <line x="131.14" y="8.61"/>
  483. <arc large-arc-flag="0" rx="1.11" ry="1.11" sweep-flag="1" x="132.25" x-axis-rotation="0" y="9.72"/>
  484. <line x="132.25" y="20.85"/>
  485. <arc large-arc-flag="0" rx="5.71" ry="5.71" sweep-flag="1" x="131.14" x-axis-rotation="0" y="21.96"/>
  486. <line x="111.11" y="21.96"/>
  487. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="110" x-axis-rotation="0" y="20.85"/>
  488. <close/>
  489. <move x="110" y="9.72"/>
  490. <line x="132.25" y="9.72"/>
  491. <move x="148.5" y="6.23"/>
  492. <line x="164.25" y="6.23"/>
  493. <line x="163.27" y="6.23"/>
  494. <line x="162.28" y="23.95"/>
  495. <arc large-arc-flag="0" rx="8.1" ry="8.1" sweep-flag="1" x="161.3" x-axis-rotation="0" y="24.94"/>
  496. <line x="151.45" y="24.94"/>
  497. <arc large-arc-flag="0" rx="9.31" ry="9.31" sweep-flag="1" x="150.47" x-axis-rotation="0" y="23.95"/>
  498. <line x="149.48" y="6.23"/>
  499. <line x="148.5" y="6.23"/>
  500. <close/>
  501. <move x="154.41" y="6.23"/>
  502. <arc large-arc-flag="0" rx="3.46" ry="3.46" sweep-flag="1" x="155.39" x-axis-rotation="0" y="5.25"/>
  503. <line x="157.36" y="5.25"/>
  504. <arc large-arc-flag="0" rx="2.33" ry="2.33" sweep-flag="1" x="158.34" x-axis-rotation="0" y="6.23"/>
  505. <move x="156.38" y="7.22"/>
  506. <line x="156.38" y="23.95"/>
  507. <move x="159.82" y="7.22"/>
  508. <line x="159.33" y="23.95"/>
  509. <move x="152.93" y="7.22"/>
  510. <line x="153.42" y="23.95"/>
  511. </path>
  512. <stroke/>
  513. </foreground>
  514. </shape>
  515. <shape aspect="variable" h="18" name="Expand" strokewidth="inherit" w="98.54">
  516. <connections>
  517. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  518. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  519. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  520. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  521. </connections>
  522. <background>
  523. <path>
  524. <move x="2.77" y="10.3"/>
  525. <line x="49.27" y="0"/>
  526. <line x="95.77" y="10.3"/>
  527. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="94.27" x-axis-rotation="0" y="18"/>
  528. <line x="49.27" y="8"/>
  529. <line x="4.27" y="18"/>
  530. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="2.77" x-axis-rotation="0" y="10.3"/>
  531. <close/>
  532. </path>
  533. </background>
  534. <foreground>
  535. <fill/>
  536. </foreground>
  537. </shape>
  538. <shape aspect="variable" h="100" name="Flagged" strokewidth="inherit" w="100">
  539. <connections>
  540. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  541. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  542. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  543. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  544. </connections>
  545. <background>
  546. <path>
  547. <move x="50" y="0"/>
  548. <line x="50" y="100"/>
  549. <move x="0" y="50"/>
  550. <line x="100" y="50"/>
  551. </path>
  552. </background>
  553. <foreground>
  554. <strokewidth width="2"/>
  555. <stroke/>
  556. </foreground>
  557. </shape>
  558. <shape aspect="variable" h="100" name="Increase" strokewidth="inherit" w="100">
  559. <connections>
  560. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  561. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  562. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  563. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  564. </connections>
  565. <background>
  566. <ellipse h="100" w="100" x="0" y="0"/>
  567. </background>
  568. <foreground>
  569. <strokewidth width="2"/>
  570. <fillstroke/>
  571. <path>
  572. <move x="50" y="20"/>
  573. <line x="50" y="80"/>
  574. <move x="20" y="50"/>
  575. <line x="80" y="50"/>
  576. </path>
  577. <stroke/>
  578. </foreground>
  579. </shape>
  580. <shape aspect="variable" h="100" name="Info" strokewidth="inherit" w="100">
  581. <connections>
  582. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  583. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  584. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  585. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  586. </connections>
  587. <background>
  588. <ellipse h="100" w="100" x="0" y="0"/>
  589. </background>
  590. <foreground>
  591. <strokewidth width="2"/>
  592. <fillstroke/>
  593. <fillcolor color="#0080f0"/>
  594. <path>
  595. <move x="42" y="35"/>
  596. <line x="55" y="35"/>
  597. <line x="55" y="80"/>
  598. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="58" x-axis-rotation="0" y="83"/>
  599. <line x="42" y="83"/>
  600. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="45" x-axis-rotation="0" y="80"/>
  601. <line x="45" y="38"/>
  602. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="42" x-axis-rotation="0" y="35"/>
  603. </path>
  604. <fill/>
  605. <ellipse h="10" w="10" x="45" y="20"/>
  606. <fill/>
  607. </foreground>
  608. </shape>
  609. <shape aspect="variable" h="693" name="Ipad10Inch" strokewidth="inherit" w="488">
  610. <connections/>
  611. <background/>
  612. <foreground>
  613. <path>
  614. <move x="0" y="25"/>
  615. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="25" x-axis-rotation="0" y="0"/>
  616. <line x="463" y="0"/>
  617. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="488" x-axis-rotation="0" y="25"/>
  618. <line x="488" y="668"/>
  619. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="463" x-axis-rotation="0" y="693"/>
  620. <line x="25" y="693"/>
  621. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="0" x-axis-rotation="0" y="668"/>
  622. <close/>
  623. </path>
  624. <fillstroke/>
  625. <ellipse h="5" w="5" x="241.5" y="26.5"/>
  626. <stroke/>
  627. <rect h="586" w="442" x="23" y="53"/>
  628. <stroke/>
  629. <ellipse h="30" w="30" x="229" y="651"/>
  630. <stroke/>
  631. <path>
  632. <move x="239" y="663"/>
  633. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="241.5" x-axis-rotation="0" y="660.5"/>
  634. <line x="247" y="660.5"/>
  635. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="249" x-axis-rotation="0" y="663"/>
  636. <line x="249" y="669"/>
  637. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="246.5" x-axis-rotation="0" y="671.5"/>
  638. <line x="241.5" y="671.5"/>
  639. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="239" x-axis-rotation="0" y="669"/>
  640. <close/>
  641. </path>
  642. <stroke/>
  643. </foreground>
  644. </shape>
  645. <shape aspect="variable" h="813" name="Ipad13Inch" strokewidth="inherit" w="572">
  646. <connections/>
  647. <background>
  648. <path>
  649. <move x="0" y="30"/>
  650. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="30" x-axis-rotation="0" y="0"/>
  651. <line x="542" y="0"/>
  652. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="572" x-axis-rotation="0" y="30"/>
  653. <line x="572" y="783"/>
  654. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="542" x-axis-rotation="0" y="813"/>
  655. <line x="30" y="813"/>
  656. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="0" x-axis-rotation="0" y="783"/>
  657. <close/>
  658. </path>
  659. </background>
  660. <foreground>
  661. <fillstroke/>
  662. <fillcolor color="none"/>
  663. <ellipse h="8" w="8" x="282" y="32"/>
  664. <stroke/>
  665. <rect h="672" w="506" x="33" y="69"/>
  666. <stroke/>
  667. <ellipse h="30" w="30" x="271" y="766"/>
  668. <stroke/>
  669. <path>
  670. <move x="281.17" y="778.22"/>
  671. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="283.67" x-axis-rotation="0" y="775.72"/>
  672. <line x="289.17" y="775.72"/>
  673. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="291.17" x-axis-rotation="0" y="778.22"/>
  674. <line x="291.17" y="784.22"/>
  675. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="288.67" x-axis-rotation="0" y="786.72"/>
  676. <line x="283.67" y="786.72"/>
  677. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="281.17" x-axis-rotation="0" y="784.22"/>
  678. <close/>
  679. </path>
  680. <stroke/>
  681. </foreground>
  682. </shape>
  683. <shape aspect="variable" h="549" name="Ipad7Inch" strokewidth="inherit" w="366">
  684. <connections/>
  685. <background/>
  686. <foreground>
  687. <path>
  688. <move x="0" y="25"/>
  689. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="25" x-axis-rotation="0" y="0"/>
  690. <line x="341" y="0"/>
  691. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="366" x-axis-rotation="0" y="25"/>
  692. <line x="366" y="524"/>
  693. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="341" x-axis-rotation="0" y="549"/>
  694. <line x="25" y="549"/>
  695. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="0" x-axis-rotation="0" y="524"/>
  696. <close/>
  697. </path>
  698. <fillstroke/>
  699. <ellipse h="5" w="5" x="180.5" y="26.5"/>
  700. <stroke/>
  701. <rect h="440" w="332" x="17" y="55"/>
  702. <stroke/>
  703. <ellipse h="30" w="30" x="168" y="509"/>
  704. <stroke/>
  705. <path>
  706. <move x="178" y="521"/>
  707. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="180.5" x-axis-rotation="0" y="518.5"/>
  708. <line x="185.5" y="518.5"/>
  709. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="188" x-axis-rotation="0" y="521"/>
  710. <line x="188" y="527"/>
  711. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="185.5" x-axis-rotation="0" y="529.5"/>
  712. <line x="180.5" y="529.5"/>
  713. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="178" x-axis-rotation="0" y="527"/>
  714. <close/>
  715. </path>
  716. <stroke/>
  717. </foreground>
  718. </shape>
  719. <shape aspect="variable" h="400" name="Iphone" strokewidth="inherit" w="200">
  720. <connections/>
  721. <background>
  722. <path>
  723. <move x="0" y="25"/>
  724. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="25" x-axis-rotation="0" y="0"/>
  725. <line x="175" y="0"/>
  726. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="200" x-axis-rotation="0" y="25"/>
  727. <line x="200" y="375"/>
  728. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="175" x-axis-rotation="0" y="400"/>
  729. <line x="25" y="400"/>
  730. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="0" x-axis-rotation="0" y="375"/>
  731. <close/>
  732. </path>
  733. </background>
  734. <foreground>
  735. <fillstroke/>
  736. <fillcolor color="none"/>
  737. <ellipse h="5" w="5" x="97.5" y="15.5"/>
  738. <stroke/>
  739. <rect h="280" w="175" x="12.5" y="60"/>
  740. <stroke/>
  741. <path>
  742. <move x="75" y="34"/>
  743. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="79" x-axis-rotation="0" y="30"/>
  744. <line x="121" y="30"/>
  745. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="125" x-axis-rotation="0" y="34"/>
  746. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="121" x-axis-rotation="0" y="38"/>
  747. <line x="79" y="38"/>
  748. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="75" x-axis-rotation="0" y="34"/>
  749. <close/>
  750. </path>
  751. <stroke/>
  752. <ellipse h="40" w="40" x="80" y="350"/>
  753. <stroke/>
  754. <path>
  755. <move x="91.5" y="364.5"/>
  756. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="94" x-axis-rotation="0" y="362"/>
  757. <line x="106" y="362"/>
  758. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="108.5" x-axis-rotation="0" y="364.5"/>
  759. <line x="108.5" y="376.5"/>
  760. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="106" x-axis-rotation="0" y="379"/>
  761. <line x="94" y="379"/>
  762. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="91.5" x-axis-rotation="0" y="376.5"/>
  763. <close/>
  764. </path>
  765. <stroke/>
  766. </foreground>
  767. </shape>
  768. <shape aspect="variable" h="100" name="Keyboard (Letters)" strokewidth="inherit" w="174">
  769. <connections>
  770. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  771. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  772. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  773. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  774. </connections>
  775. <background>
  776. <rect h="100" w="174" x="0" y="0"/>
  777. </background>
  778. <foreground>
  779. <fillcolor color="#e0e0e0"/>
  780. <fill/>
  781. <fillcolor color="#ffffff"/>
  782. <roundrect arcsize="18.52" h="19" w="13.5" x="46" y="78"/>
  783. <fill/>
  784. <fillcolor color="#c0c0c0"/>
  785. <roundrect arcsize="13.68" h="19" w="18.27" x="23.5" y="78"/>
  786. <fill/>
  787. <strokecolor color="#222222"/>
  788. <ellipse h="12" w="12" x="26.5" y="81.5"/>
  789. <stroke/>
  790. <path>
  791. <move x="26.5" y="87.5"/>
  792. <line x="38.5" y="87.5"/>
  793. <move x="32.5" y="81.5"/>
  794. <line x="32.5" y="93.5"/>
  795. <move x="32.5" y="93.5"/>
  796. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="32.5" x-axis-rotation="0" y="81.5"/>
  797. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="32.5" x-axis-rotation="0" y="93.5"/>
  798. <close/>
  799. <move x="28" y="83.5"/>
  800. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="37" x-axis-rotation="0" y="83.5"/>
  801. <move x="28" y="91.5"/>
  802. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="37" x-axis-rotation="0" y="91.5"/>
  803. <move x="50.5" y="83.5"/>
  804. <arc large-arc-flag="0" rx="2.25" ry="2.25" sweep-flag="1" x="55" x-axis-rotation="0" y="83.5"/>
  805. <line x="55" y="88"/>
  806. <arc large-arc-flag="0" rx="2.25" ry="2.25" sweep-flag="1" x="50.5" x-axis-rotation="0" y="88"/>
  807. <close/>
  808. <move x="49" y="87.5"/>
  809. <line x="49" y="88"/>
  810. <arc large-arc-flag="0" rx="3.75" ry="3.75" sweep-flag="0" x="56.5" x-axis-rotation="0" y="88"/>
  811. <line x="56.5" y="87.5"/>
  812. <move x="52.75" y="91.75"/>
  813. <line x="52.75" y="95"/>
  814. <move x="50.5" y="95"/>
  815. <line x="55" y="95"/>
  816. </path>
  817. <stroke/>
  818. <fillcolor color="#ffffff"/>
  819. <roundrect arcsize="18.52" h="19" w="13.5" x="2" y="3"/>
  820. <fill/>
  821. <roundrect arcsize="18.52" h="19" w="13.5" x="20" y="3"/>
  822. <fill/>
  823. <roundrect arcsize="18.52" h="19" w="13.5" x="38" y="3"/>
  824. <fill/>
  825. <roundrect arcsize="18.52" h="19" w="13.5" x="56" y="3"/>
  826. <fill/>
  827. <roundrect arcsize="13.16" h="19" w="72" x="63" y="78"/>
  828. <fill/>
  829. <roundrect arcsize="18.52" h="19" w="13.5" x="73" y="3"/>
  830. <fill/>
  831. <roundrect arcsize="18.52" h="19" w="13.5" x="90" y="3"/>
  832. <fill/>
  833. <roundrect arcsize="18.52" h="19" w="13.5" x="107" y="3"/>
  834. <fill/>
  835. <roundrect arcsize="18.52" h="19" w="13.5" x="124" y="3"/>
  836. <fill/>
  837. <roundrect arcsize="18.52" h="19" w="13.5" x="141" y="3"/>
  838. <fill/>
  839. <roundrect arcsize="18.52" h="19" w="13.5" x="158" y="3"/>
  840. <fill/>
  841. <roundrect arcsize="18.52" h="19" w="13.5" x="11" y="29"/>
  842. <fill/>
  843. <roundrect arcsize="18.52" h="19" w="13.5" x="29" y="29"/>
  844. <fill/>
  845. <roundrect arcsize="18.52" h="19" w="13.5" x="47" y="29"/>
  846. <fill/>
  847. <roundrect arcsize="18.52" h="19" w="13.5" x="65" y="29"/>
  848. <fill/>
  849. <roundrect arcsize="18.52" h="19" w="13.5" x="82" y="29"/>
  850. <fill/>
  851. <roundrect arcsize="18.52" h="19" w="13.5" x="99" y="29"/>
  852. <fill/>
  853. <roundrect arcsize="18.52" h="19" w="13.5" x="116" y="29"/>
  854. <fill/>
  855. <roundrect arcsize="18.52" h="19" w="13.5" x="133" y="29"/>
  856. <fill/>
  857. <roundrect arcsize="18.52" h="19" w="13.5" x="150" y="29"/>
  858. <fill/>
  859. <roundrect arcsize="18.52" h="19" w="13.5" x="133" y="53.5"/>
  860. <fill/>
  861. <roundrect arcsize="18.52" h="19" w="13.5" x="116" y="53.5"/>
  862. <fill/>
  863. <roundrect arcsize="18.52" h="19" w="13.5" x="99" y="53.5"/>
  864. <fill/>
  865. <roundrect arcsize="18.52" h="19" w="13.5" x="82" y="53.5"/>
  866. <fill/>
  867. <roundrect arcsize="18.52" h="19" w="13.5" x="65" y="53.5"/>
  868. <fill/>
  869. <roundrect arcsize="18.52" h="19" w="13.5" x="47" y="53.5"/>
  870. <fill/>
  871. <roundrect arcsize="18.52" h="19" w="13.5" x="29" y="53.5"/>
  872. <fill/>
  873. <fillcolor color="#c0c0c0"/>
  874. <roundrect arcsize="13.16" h="19" w="21.9" x="150" y="53.5"/>
  875. <fill/>
  876. <roundrect arcsize="13.16" h="19" w="22" x="2" y="53.5"/>
  877. <fill/>
  878. <roundrect arcsize="13.68" h="19" w="18.27" x="2" y="78"/>
  879. <fill/>
  880. <roundrect arcsize="13.16" h="19" w="34" x="138" y="78"/>
  881. <fill/>
  882. <strokecolor color="#222222"/>
  883. <linejoin join="round"/>
  884. <linecap cap="round"/>
  885. <path>
  886. <move x="11" y="63"/>
  887. <line x="9" y="63"/>
  888. <line x="13" y="58"/>
  889. <line x="17" y="63"/>
  890. <line x="15" y="63"/>
  891. <line x="15" y="67"/>
  892. <line x="11" y="67"/>
  893. <close/>
  894. <move x="159" y="59"/>
  895. <line x="167" y="59"/>
  896. <line x="167" y="67"/>
  897. <line x="159" y="67"/>
  898. <line x="155" y="63"/>
  899. <close/>
  900. <move x="161" y="61"/>
  901. <line x="165" y="65"/>
  902. <move x="165" y="61"/>
  903. <line x="161" y="65"/>
  904. </path>
  905. <stroke/>
  906. <fontsize size="10"/>
  907. <text str="Q" align="center" valign="middle" x="9" y="12.5"/>
  908. <text str="W" align="center" valign="middle" x="27" y="12.5"/>
  909. <text str="E" align="center" valign="middle" x="44.5" y="12.5"/>
  910. <text str="R" align="center" valign="middle" x="62.5" y="12.5"/>
  911. <text str="T" align="center" valign="middle" x="80" y="12.5"/>
  912. <text str="Y" align="center" valign="middle" x="97" y="12.5"/>
  913. <text str="U" align="center" valign="middle" x="113.5" y="12.5"/>
  914. <text str="I" align="center" valign="middle" x="131" y="12.5"/>
  915. <text str="O" align="center" valign="middle" x="147.5" y="12.5"/>
  916. <text str="P" align="center" valign="middle" x="164.5" y="12.5"/>
  917. <text str="A" align="center" valign="middle" x="17.5" y="38"/>
  918. <text str="S" align="center" valign="middle" x="35.5" y="38"/>
  919. <text str="D" align="center" valign="middle" x="53.5" y="38"/>
  920. <text str="F" align="center" valign="middle" x="72" y="38"/>
  921. <text str="G" align="center" valign="middle" x="88.5" y="38"/>
  922. <text str="H" align="center" valign="middle" x="106" y="38"/>
  923. <text str="J" align="center" valign="middle" x="123" y="38"/>
  924. <text str="K" align="center" valign="middle" x="139.5" y="38"/>
  925. <text str="L" align="center" valign="middle" x="156.5" y="38"/>
  926. <text str="Z" align="center" valign="middle" x="35.5" y="63"/>
  927. <text str="X" align="center" valign="middle" x="53.5" y="63"/>
  928. <text str="C" align="center" valign="middle" x="71.5" y="63"/>
  929. <text str="V" align="center" valign="middle" x="88.5" y="63"/>
  930. <text str="B" align="center" valign="middle" x="105.5" y="63"/>
  931. <text str="N" align="center" valign="middle" x="122.5" y="63"/>
  932. <text str="M" align="center" valign="middle" x="139" y="63"/>
  933. <text str="123" align="center" valign="middle" x="11" y="86.5"/>
  934. <text str="space" align="center" valign="middle" x="97.5" y="86.5"/>
  935. <text str="return" align="center" valign="middle" x="154.5" y="86.78"/>
  936. </foreground>
  937. </shape>
  938. <shape aspect="variable" h="100" name="Left" strokewidth="inherit" w="60">
  939. <connections>
  940. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  941. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  942. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  943. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  944. </connections>
  945. <background>
  946. <path>
  947. <move x="60" y="0"/>
  948. <line x="0" y="50"/>
  949. <line x="60" y="100"/>
  950. </path>
  951. </background>
  952. <foreground>
  953. <strokewidth width="2"/>
  954. <stroke/>
  955. </foreground>
  956. </shape>
  957. <shape aspect="variable" h="100" name="Link" strokewidth="inherit" w="100">
  958. <connections/>
  959. <background>
  960. <path>
  961. <move x="0" y="20"/>
  962. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  963. <line x="80" y="0"/>
  964. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  965. <line x="100" y="80"/>
  966. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  967. <line x="20" y="100"/>
  968. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  969. <close/>
  970. </path>
  971. </background>
  972. <foreground>
  973. <fillstroke/>
  974. <strokecolor color="none"/>
  975. <fillcolor color="#ffffff"/>
  976. <path>
  977. <move x="29" y="58"/>
  978. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="20.4" x-axis-rotation="0" y="45.8"/>
  979. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="32.8" x-axis-rotation="0" y="29.2"/>
  980. <line x="57" y="29.2"/>
  981. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="69" x-axis-rotation="0" y="45.8"/>
  982. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="56" x-axis-rotation="0" y="60"/>
  983. <line x="43" y="60"/>
  984. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="43" x-axis-rotation="0" y="55.2"/>
  985. <line x="53" y="55.2"/>
  986. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="63.5" x-axis-rotation="0" y="45.8"/>
  987. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="53" x-axis-rotation="0" y="34.4"/>
  988. <line x="36" y="34.4"/>
  989. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="25.8" x-axis-rotation="0" y="45.8"/>
  990. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="30" x-axis-rotation="0" y="53"/>
  991. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="29" x-axis-rotation="0" y="58"/>
  992. <close/>
  993. </path>
  994. <fill/>
  995. <path>
  996. <move x="58.2" y="47"/>
  997. <line x="45.2" y="47"/>
  998. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="38" x-axis-rotation="0" y="57.4"/>
  999. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="45.2" x-axis-rotation="0" y="67.2"/>
  1000. <line x="65.6" y="67.2"/>
  1001. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="76" x-axis-rotation="0" y="57.4"/>
  1002. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="71.5" x-axis-rotation="0" y="48.4"/>
  1003. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="72" x-axis-rotation="0" y="43.2"/>
  1004. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="81" x-axis-rotation="0" y="57.4"/>
  1005. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="69" x-axis-rotation="0" y="72"/>
  1006. <line x="45.2" y="72"/>
  1007. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="32.6" x-axis-rotation="0" y="57.4"/>
  1008. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="45.2" x-axis-rotation="0" y="42"/>
  1009. <line x="58.2" y="42"/>
  1010. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="58.2" x-axis-rotation="0" y="47"/>
  1011. <close/>
  1012. </path>
  1013. <fill/>
  1014. </foreground>
  1015. </shape>
  1016. <shape aspect="variable" h="100" name="Loading Circle" strokewidth="inherit" w="100">
  1017. <connections>
  1018. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1019. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1020. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1021. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1022. </connections>
  1023. <background>
  1024. <roundrect arcsize="50" h="25" w="8" x="46" y="0"/>
  1025. </background>
  1026. <foreground>
  1027. <fillcolor color="#cccccc"/>
  1028. <fill/>
  1029. <roundrect arcsize="50" h="8" w="25" x="75" y="46"/>
  1030. <fill/>
  1031. <path>
  1032. <move x="68.33" y="9"/>
  1033. <line x="61.22" y="22.21"/>
  1034. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="63.26" x-axis-rotation="28.28" y="28.98"/>
  1035. <line x="61.5" y="28.03"/>
  1036. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="68.27" x-axis-rotation="28.28" y="26"/>
  1037. <line x="75.38" y="12.79"/>
  1038. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="73.34" x-axis-rotation="28.28" y="6.02"/>
  1039. <line x="75.1" y="6.97"/>
  1040. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="68.33" x-axis-rotation="28.28" y="9"/>
  1041. <close/>
  1042. <move x="87.57" y="24.77"/>
  1043. <line x="74.3" y="31.75"/>
  1044. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="72.2" x-axis-rotation="62.24" y="38.51"/>
  1045. <line x="71.27" y="36.74"/>
  1046. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="78.03" x-axis-rotation="62.24" y="38.83"/>
  1047. <line x="91.3" y="31.85"/>
  1048. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="93.4" x-axis-rotation="62.24" y="25.09"/>
  1049. <line x="94.33" y="26.86"/>
  1050. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="87.57" x-axis-rotation="62.24" y="24.77"/>
  1051. <close/>
  1052. <move x="24.43" y="12.73"/>
  1053. <line x="31.8" y="25.8"/>
  1054. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="38.61" x-axis-rotation="-29.44" y="27.69"/>
  1055. <line x="36.87" y="28.68"/>
  1056. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="38.77" x-axis-rotation="-29.44" y="21.87"/>
  1057. <line x="31.4" y="8.8"/>
  1058. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="24.59" x-axis-rotation="-29.44" y="6.91"/>
  1059. <line x="26.33" y="5.92"/>
  1060. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="24.43" x-axis-rotation="-29.44" y="12.73"/>
  1061. <close/>
  1062. <move x="25.8" y="31.94"/>
  1063. <line x="12.68" y="24.66"/>
  1064. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="5.88" x-axis-rotation="119.02" y="26.61"/>
  1065. <line x="6.85" y="24.86"/>
  1066. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="8.8" x-axis-rotation="119.02" y="31.66"/>
  1067. <line x="21.92" y="38.94"/>
  1068. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="28.72" x-axis-rotation="119.02" y="36.99"/>
  1069. <line x="27.75" y="38.74"/>
  1070. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="25.8" x-axis-rotation="119.02" y="31.94"/>
  1071. <close/>
  1072. </path>
  1073. <fill/>
  1074. <fillcolor color="#000000"/>
  1075. <roundrect arcsize="50" h="8" w="25" x="0" y="46"/>
  1076. <fill/>
  1077. <fillcolor color="#999999"/>
  1078. <path>
  1079. <move x="74" y="68.54"/>
  1080. <line x="87.27" y="75.53"/>
  1081. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="94.03" x-axis-rotation="-62.22" y="73.44"/>
  1082. <line x="93.09" y="75.21"/>
  1083. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="91" x-axis-rotation="-62.22" y="68.46"/>
  1084. <line x="77.73" y="61.47"/>
  1085. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="70.97" x-axis-rotation="-62.22" y="63.56"/>
  1086. <line x="71.91" y="61.79"/>
  1087. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="74" x-axis-rotation="-62.22" y="68.54"/>
  1088. <close/>
  1089. <move x="61.14" y="78.22"/>
  1090. <line x="68.49" y="91.3"/>
  1091. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="75.3" x-axis-rotation="-29.33" y="93.21"/>
  1092. <line x="73.55" y="94.19"/>
  1093. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="75.46" x-axis-rotation="-29.33" y="87.38"/>
  1094. <line x="68.11" y="74.3"/>
  1095. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="61.3" x-axis-rotation="-29.33" y="72.39"/>
  1096. <line x="63.05" y="71.41"/>
  1097. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="61.14" x-axis-rotation="-29.33" y="78.22"/>
  1098. <close/>
  1099. </path>
  1100. <fill/>
  1101. <fillcolor color="#666666"/>
  1102. <roundrect arcsize="50" h="25" w="8" x="46" y="75"/>
  1103. <fill/>
  1104. <path>
  1105. <move x="31.77" y="74.3"/>
  1106. <line x="24.45" y="87.39"/>
  1107. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="26.37" x-axis-rotation="29.24" y="94.2"/>
  1108. <line x="24.62" y="93.22"/>
  1109. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="31.43" x-axis-rotation="29.24" y="91.3"/>
  1110. <line x="38.75" y="78.21"/>
  1111. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="36.83" x-axis-rotation="29.24" y="71.4"/>
  1112. <line x="38.58" y="72.38"/>
  1113. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="31.77" x-axis-rotation="29.24" y="74.3"/>
  1114. <close/>
  1115. </path>
  1116. <fill/>
  1117. <fillcolor color="#333333"/>
  1118. <path>
  1119. <move x="21.82" y="61.2"/>
  1120. <line x="8.8" y="68.65"/>
  1121. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="6.95" x-axis-rotation="60.23" y="75.47"/>
  1122. <line x="5.95" y="73.74"/>
  1123. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="12.78" x-axis-rotation="60.23" y="75.6"/>
  1124. <line x="25.8" y="68.15"/>
  1125. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="27.65" x-axis-rotation="60.23" y="61.33"/>
  1126. <line x="28.65" y="63.06"/>
  1127. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="21.82" x-axis-rotation="60.23" y="61.2"/>
  1128. <close/>
  1129. </path>
  1130. <fill/>
  1131. </foreground>
  1132. </shape>
  1133. <shape aspect="variable" h="30" name="Message Bar" strokewidth="inherit" w="174">
  1134. <connections>
  1135. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1136. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1137. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1138. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1139. </connections>
  1140. <background>
  1141. <rect h="30" w="174" x="0" y="0"/>
  1142. </background>
  1143. <foreground>
  1144. <fill/>
  1145. <path>
  1146. <move x="6.5" y="6.44"/>
  1147. <arc large-arc-flag="0" rx="15.19" ry="15.19" sweep-flag="1" x="16.62" x-axis-rotation="0" y="6.44"/>
  1148. <arc large-arc-flag="0" rx="15.19" ry="15.19" sweep-flag="0" x="26.75" x-axis-rotation="0" y="6.44"/>
  1149. <line x="26.75" y="15.55"/>
  1150. <arc large-arc-flag="0" rx="15.19" ry="15.19" sweep-flag="1" x="16.62" x-axis-rotation="0" y="15.55"/>
  1151. <arc large-arc-flag="0" rx="15.19" ry="15.19" sweep-flag="0" x="6.5" x-axis-rotation="0" y="15.55"/>
  1152. <line x="6.5" y="25.68"/>
  1153. <close/>
  1154. <move x="39.75" y="7.95"/>
  1155. <arc large-arc-flag="0" rx="1.2" ry="1.2" sweep-flag="1" x="40.95" x-axis-rotation="0" y="6.75"/>
  1156. <line x="43.35" y="6.75"/>
  1157. <arc large-arc-flag="0" rx="2.06" ry="2.06" sweep-flag="1" x="44.55" x-axis-rotation="0" y="7.95"/>
  1158. <line x="62.55" y="7.95"/>
  1159. <arc large-arc-flag="0" rx="9.32" ry="9.32" sweep-flag="1" x="63.75" x-axis-rotation="0" y="9.15"/>
  1160. <line x="63.75" y="21.15"/>
  1161. <arc large-arc-flag="0" rx="10.46" ry="10.46" sweep-flag="1" x="62.55" x-axis-rotation="0" y="22.35"/>
  1162. <line x="40.95" y="22.35"/>
  1163. <arc large-arc-flag="0" rx="5.33" ry="5.33" sweep-flag="1" x="39.75" x-axis-rotation="0" y="21.15"/>
  1164. <close/>
  1165. <move x="39.75" y="9.15"/>
  1166. <line x="63.75" y="9.15"/>
  1167. <move x="75.75" y="5"/>
  1168. <line x="98" y="5"/>
  1169. <line x="98" y="8.34"/>
  1170. <line x="96.89" y="8.34"/>
  1171. <line x="96.89" y="25.02"/>
  1172. <line x="76.86" y="25.02"/>
  1173. <line x="76.86" y="8.34"/>
  1174. <line x="75.75" y="8.34"/>
  1175. <close/>
  1176. <move x="76.86" y="8.34"/>
  1177. <line x="96.89" y="8.34"/>
  1178. <move x="92.44" y="10.56"/>
  1179. <arc large-arc-flag="0" rx="7.27" ry="7.27" sweep-flag="1" x="92.44" x-axis-rotation="0" y="12.79"/>
  1180. <line x="81.31" y="12.79"/>
  1181. <arc large-arc-flag="0" rx="2.89" ry="2.89" sweep-flag="1" x="81.31" x-axis-rotation="0" y="10.56"/>
  1182. <close/>
  1183. <move x="109.25" y="12.15"/>
  1184. <line x="118.78" y="5"/>
  1185. <line x="118.78" y="9.77"/>
  1186. <arc large-arc-flag="0" rx="15.49" ry="15.49" sweep-flag="1" x="133.08" x-axis-rotation="0" y="25.25"/>
  1187. <arc large-arc-flag="0" rx="14.3" ry="14.3" sweep-flag="0" x="118.78" x-axis-rotation="0" y="15.72"/>
  1188. <line x="118.78" y="20.49"/>
  1189. <close/>
  1190. </path>
  1191. <stroke/>
  1192. <rect h="18.64" w="18.64" x="146.25" y="6.36"/>
  1193. <stroke/>
  1194. <path>
  1195. <move x="165.3" y="4.91"/>
  1196. <arc large-arc-flag="0" rx="0.63" ry="0.63" sweep-flag="1" x="166.34" x-axis-rotation="0" y="5.95"/>
  1197. <line x="153.5" y="18.79"/>
  1198. <arc large-arc-flag="0" rx="7.66" ry="7.66" sweep-flag="1" x="152.46" x-axis-rotation="0" y="17.75"/>
  1199. <close/>
  1200. </path>
  1201. <fillstroke/>
  1202. </foreground>
  1203. </shape>
  1204. <shape aspect="variable" h="30" name="Misc Bar" strokewidth="inherit" w="174">
  1205. <connections>
  1206. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1207. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1208. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1209. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1210. </connections>
  1211. <background>
  1212. <rect h="30" w="174" x="0" y="0"/>
  1213. </background>
  1214. <foreground>
  1215. <fill/>
  1216. <path>
  1217. <move x="17.25" y="6.75"/>
  1218. <line x="19.72" y="13.05"/>
  1219. <line x="26.25" y="13.05"/>
  1220. <line x="21.05" y="16.45"/>
  1221. <line x="23.55" y="22.95"/>
  1222. <line x="17.25" y="18.88"/>
  1223. <line x="10.95" y="22.95"/>
  1224. <line x="13.45" y="16.45"/>
  1225. <line x="8.25" y="13.05"/>
  1226. <line x="14.8" y="13.05"/>
  1227. <close/>
  1228. <move x="52" y="6.25"/>
  1229. <line x="52" y="15.25"/>
  1230. <line x="47" y="15.25"/>
  1231. <move x="78.8" y="21.15"/>
  1232. <arc large-arc-flag="0" rx="11.2" ry="5.6" sweep-flag="1" x="84.54" x-axis-rotation="0" y="18.69"/>
  1233. <arc large-arc-flag="0" rx="6.27" ry="6.27" sweep-flag="0" x="85.26" x-axis-rotation="0" y="18.08"/>
  1234. <arc large-arc-flag="0" rx="4.47" ry="4.47" sweep-flag="0" x="83.92" x-axis-rotation="0" y="14.59"/>
  1235. <arc large-arc-flag="0" rx="3.06" ry="7.65" sweep-flag="1" x="83.92" x-axis-rotation="0" y="12.34"/>
  1236. <arc large-arc-flag="0" rx="4.54" ry="4.54" sweep-flag="1" x="87" x-axis-rotation="0" y="8.64"/>
  1237. <arc large-arc-flag="0" rx="6.56" ry="6.56" sweep-flag="1" x="90.08" x-axis-rotation="0" y="12.34"/>
  1238. <arc large-arc-flag="0" rx="5.55" ry="13.87" sweep-flag="1" x="90.08" x-axis-rotation="0" y="14.59"/>
  1239. <arc large-arc-flag="0" rx="7.31" ry="7.31" sweep-flag="0" x="88.74" x-axis-rotation="0" y="18.08"/>
  1240. <arc large-arc-flag="0" rx="7.59" ry="7.59" sweep-flag="0" x="89.46" x-axis-rotation="0" y="18.69"/>
  1241. <arc large-arc-flag="0" rx="15.69" ry="7.84" sweep-flag="1" x="95.2" x-axis-rotation="0" y="21.15"/>
  1242. <move x="149" y="19.5"/>
  1243. <line x="163.25" y="19.5"/>
  1244. </path>
  1245. <stroke/>
  1246. <ellipse h="20" w="20" x="42" y="5.25"/>
  1247. <stroke/>
  1248. <ellipse h="20.5" w="20.5" x="76.75" y="4.75"/>
  1249. <stroke/>
  1250. <ellipse h="5.67" w="5.67" x="111.25" y="4.75"/>
  1251. <stroke/>
  1252. <ellipse h="5.67" w="5.67" x="118.54" y="4.75"/>
  1253. <stroke/>
  1254. <ellipse h="5.67" w="5.67" x="125.83" y="4.75"/>
  1255. <stroke/>
  1256. <ellipse h="5.67" w="5.67" x="111.25" y="12.04"/>
  1257. <stroke/>
  1258. <ellipse h="5.67" w="5.67" x="118.54" y="12.04"/>
  1259. <stroke/>
  1260. <ellipse h="5.67" w="5.67" x="125.83" y="12.04"/>
  1261. <stroke/>
  1262. <ellipse h="5.67" w="5.67" x="111.25" y="19.33"/>
  1263. <stroke/>
  1264. <ellipse h="5.67" w="5.67" x="118.54" y="19.33"/>
  1265. <stroke/>
  1266. <ellipse h="5.67" w="5.67" x="125.83" y="19.33"/>
  1267. <stroke/>
  1268. <ellipse h="9.5" w="9.5" x="144.25" y="10"/>
  1269. <stroke/>
  1270. <ellipse h="9.5" w="9.5" x="158.5" y="10"/>
  1271. <stroke/>
  1272. </foreground>
  1273. </shape>
  1274. <shape aspect="variable" h="50" name="More" strokewidth="inherit" w="30">
  1275. <connections>
  1276. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1277. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1278. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1279. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1280. </connections>
  1281. <background>
  1282. <path>
  1283. <move x="0" y="0"/>
  1284. <line x="30" y="25"/>
  1285. <line x="0" y="50"/>
  1286. </path>
  1287. </background>
  1288. <foreground>
  1289. <strokewidth width="2"/>
  1290. <stroke/>
  1291. </foreground>
  1292. </shape>
  1293. <shape aspect="variable" h="50" name="More 2" strokewidth="inherit" w="40">
  1294. <connections>
  1295. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1296. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1297. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1298. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1299. </connections>
  1300. <background>
  1301. <path>
  1302. <move x="10" y="0"/>
  1303. <line x="40" y="25"/>
  1304. <line x="10" y="50"/>
  1305. <move x="0" y="0"/>
  1306. <line x="30" y="25"/>
  1307. <line x="0" y="50"/>
  1308. </path>
  1309. </background>
  1310. <foreground>
  1311. <strokewidth width="2"/>
  1312. <stroke/>
  1313. </foreground>
  1314. </shape>
  1315. <shape aspect="variable" h="100" name="Night" strokewidth="inherit" w="100">
  1316. <connections/>
  1317. <background>
  1318. <path>
  1319. <move x="0" y="20"/>
  1320. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  1321. <line x="80" y="0"/>
  1322. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  1323. <line x="100" y="80"/>
  1324. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  1325. <line x="20" y="100"/>
  1326. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  1327. <close/>
  1328. </path>
  1329. </background>
  1330. <foreground>
  1331. <fillstroke/>
  1332. <strokecolor color="none"/>
  1333. <fillcolor color="#ffffff"/>
  1334. <path>
  1335. <move x="45" y="22"/>
  1336. <arc large-arc-flag="0" rx="23.7" ry="23.7" sweep-flag="0" x="78" x-axis-rotation="0" y="55.5"/>
  1337. <arc large-arc-flag="1" rx="27" ry="27" sweep-flag="1" x="45" x-axis-rotation="0" y="22"/>
  1338. <close/>
  1339. </path>
  1340. <fill/>
  1341. </foreground>
  1342. </shape>
  1343. <shape aspect="variable" h="100" name="Notification" strokewidth="inherit" w="100">
  1344. <connections/>
  1345. <background>
  1346. <path>
  1347. <move x="0" y="20"/>
  1348. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  1349. <line x="80" y="0"/>
  1350. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  1351. <line x="100" y="80"/>
  1352. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  1353. <line x="20" y="100"/>
  1354. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  1355. <close/>
  1356. </path>
  1357. </background>
  1358. <foreground>
  1359. <fillstroke/>
  1360. <strokecolor color="none"/>
  1361. <fillcolor color="#ffffff"/>
  1362. <path>
  1363. <move x="72" y="46.5"/>
  1364. <line x="76" y="46.5"/>
  1365. <line x="76" y="68.5"/>
  1366. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="65" x-axis-rotation="0" y="79.5"/>
  1367. <line x="31.5" y="79.5"/>
  1368. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="20.5" x-axis-rotation="0" y="68.5"/>
  1369. <line x="20.5" y="35"/>
  1370. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="31.5" x-axis-rotation="0" y="24"/>
  1371. <line x="54" y="24"/>
  1372. <line x="54" y="28"/>
  1373. <line x="31.5" y="28"/>
  1374. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="24.5" x-axis-rotation="0" y="35"/>
  1375. <line x="24.5" y="68.5"/>
  1376. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="31.5" x-axis-rotation="0" y="75.5"/>
  1377. <line x="65" y="75.5"/>
  1378. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="72" x-axis-rotation="0" y="68.5"/>
  1379. <close/>
  1380. <close/>
  1381. </path>
  1382. <fill/>
  1383. <ellipse h="26" w="26" x="58.5" y="15.5"/>
  1384. <fill/>
  1385. </foreground>
  1386. </shape>
  1387. <shape aspect="variable" h="132" name="Number Pad" strokewidth="inherit" w="174">
  1388. <connections>
  1389. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1390. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1391. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1392. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1393. </connections>
  1394. <background>
  1395. <rect h="132" w="174" x="0" y="0"/>
  1396. </background>
  1397. <foreground>
  1398. <strokecolor color="#c0c0c0"/>
  1399. <fillcolor color="#e0e0e0"/>
  1400. <fillstroke/>
  1401. <fillcolor color="#c0c0c0"/>
  1402. <rect h="33" w="58" x="0" y="99"/>
  1403. <fill/>
  1404. <strokecolor color="#c0c0c0"/>
  1405. <path>
  1406. <move x="0" y="66"/>
  1407. <line x="174" y="66"/>
  1408. <move x="0" y="33"/>
  1409. <line x="174" y="33"/>
  1410. <move x="0" y="99"/>
  1411. <line x="174" y="99"/>
  1412. <move x="116" y="0"/>
  1413. <line x="116" y="132"/>
  1414. <move x="58" y="0"/>
  1415. <line x="58" y="132"/>
  1416. </path>
  1417. <stroke/>
  1418. <rect h="33" w="58" x="116" y="99"/>
  1419. <fill/>
  1420. <fontsize size="18"/>
  1421. <fontcolor color="#222222"/>
  1422. <text str="1" valign="middle" align="center" x="29" y="13"/>
  1423. <text str="2" valign="middle" align="center" x="87" y="13"/>
  1424. <text str="3" valign="middle" align="center" x="145" y="13"/>
  1425. <text str="4" valign="middle" align="center" x="29" y="47"/>
  1426. <text str="5" valign="middle" align="center" x="87" y="47"/>
  1427. <text str="6" valign="middle" align="center" x="145" y="47"/>
  1428. <text str="7" valign="middle" align="center" x="29" y="80"/>
  1429. <text str="8" valign="middle" align="center" x="87" y="80"/>
  1430. <text str="9" valign="middle" align="center" x="145" y="80"/>
  1431. <text str="0" valign="middle" align="center" x="87" y="112.5"/>
  1432. <fontsize size="10"/>
  1433. <fontcolor color="#c0c0c0"/>
  1434. <text str="ABC" valign="middle" align="center" x="87" y="26"/>
  1435. <text str="DEF" valign="middle" align="center" x="145" y="26"/>
  1436. <text str="GHI" valign="middle" align="center" x="29" y="59"/>
  1437. <text str="JKL" valign="middle" align="center" x="87" y="59"/>
  1438. <text str="MNO" valign="middle" align="center" x="145" y="59"/>
  1439. <text str="PQRS" valign="middle" align="center" x="29" y="92"/>
  1440. <text str="TUV" valign="middle" align="center" x="87" y="92"/>
  1441. <text str="WXYZ" valign="middle" align="center" x="145" y="92"/>
  1442. <strokecolor color="#222222"/>
  1443. <linejoin join="round"/>
  1444. <linecap cap="round"/>
  1445. <path>
  1446. <move x="143" y="111.5"/>
  1447. <line x="151" y="111.5"/>
  1448. <line x="151" y="119.5"/>
  1449. <line x="143" y="119.5"/>
  1450. <line x="139" y="115.5"/>
  1451. <close/>
  1452. <move x="145" y="113.5"/>
  1453. <line x="149" y="117.5"/>
  1454. <move x="149" y="113.5"/>
  1455. <line x="145" y="117.5"/>
  1456. </path>
  1457. <stroke/>
  1458. </foreground>
  1459. </shape>
  1460. <shape aspect="variable" h="50" name="Options" strokewidth="inherit" w="100">
  1461. <connections>
  1462. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1463. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1464. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1465. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1466. </connections>
  1467. <background>
  1468. <path>
  1469. <move x="0" y="0"/>
  1470. <line x="100" y="0"/>
  1471. <line x="100" y="10"/>
  1472. <line x="0" y="10"/>
  1473. <close/>
  1474. <move x="0" y="20"/>
  1475. <line x="100" y="20"/>
  1476. <line x="100" y="30"/>
  1477. <line x="0" y="30"/>
  1478. <close/>
  1479. <move x="0" y="40"/>
  1480. <line x="100" y="40"/>
  1481. <line x="100" y="50"/>
  1482. <line x="0" y="50"/>
  1483. <close/>
  1484. </path>
  1485. </background>
  1486. <foreground>
  1487. <fill/>
  1488. </foreground>
  1489. </shape>
  1490. <shape aspect="variable" h="100" name="Pause" strokewidth="inherit" w="100">
  1491. <connections>
  1492. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1493. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1494. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1495. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1496. </connections>
  1497. <background>
  1498. <ellipse h="100" w="100" x="0" y="0"/>
  1499. </background>
  1500. <foreground>
  1501. <fillstroke/>
  1502. <fillcolor color="#0080f0"/>
  1503. <rect h="50" w="10" x="35" y="25"/>
  1504. <fill/>
  1505. <rect h="50" w="10" x="55" y="25"/>
  1506. <fill/>
  1507. </foreground>
  1508. </shape>
  1509. <shape aspect="variable" h="71" name="Picker" strokewidth="inherit" w="174">
  1510. <connections>
  1511. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1512. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1513. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1514. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1515. </connections>
  1516. <background>
  1517. <path>
  1518. <move x="0" y="29"/>
  1519. <line x="174" y="29"/>
  1520. <move x="0" y="43"/>
  1521. <line x="174" y="43"/>
  1522. </path>
  1523. </background>
  1524. <foreground>
  1525. <stroke/>
  1526. <rect h="71" w="174" x="0" y="0"/>
  1527. </foreground>
  1528. </shape>
  1529. <shape aspect="variable" h="100.08" name="Remove" strokewidth="inherit" w="121">
  1530. <connections>
  1531. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1532. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1533. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1534. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1535. </connections>
  1536. <background>
  1537. <path>
  1538. <move x="0" y="50.04"/>
  1539. <line x="37" y="13.24"/>
  1540. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="71" x-axis-rotation="0" y="0.04"/>
  1541. <arc large-arc-flag="1" rx="50" ry="50" sweep-flag="1" x="71" x-axis-rotation="0" y="100.04"/>
  1542. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="37" x-axis-rotation="0" y="86.84"/>
  1543. <close/>
  1544. </path>
  1545. </background>
  1546. <foreground>
  1547. <fill/>
  1548. <strokewidth width="2"/>
  1549. <path>
  1550. <move x="51" y="30.04"/>
  1551. <line x="91" y="70.04"/>
  1552. <move x="91" y="30.04"/>
  1553. <line x="51" y="70.04"/>
  1554. </path>
  1555. <stroke/>
  1556. </foreground>
  1557. </shape>
  1558. <shape aspect="variable" h="100" name="Right" strokewidth="inherit" w="60">
  1559. <connections>
  1560. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1561. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1562. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1563. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1564. </connections>
  1565. <background>
  1566. <path>
  1567. <move x="0" y="0"/>
  1568. <line x="60" y="50"/>
  1569. <line x="0" y="100"/>
  1570. </path>
  1571. </background>
  1572. <foreground>
  1573. <fillcolor color="none"/>
  1574. <strokewidth width="2"/>
  1575. <stroke/>
  1576. </foreground>
  1577. </shape>
  1578. <shape aspect="variable" h="10" name="Scroll (Horizontal)" strokewidth="inherit" w="100">
  1579. <connections>
  1580. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1581. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1582. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1583. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1584. </connections>
  1585. <background>
  1586. <path>
  1587. <move x="95" y="0"/>
  1588. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="10"/>
  1589. <line x="5" y="10"/>
  1590. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  1591. <close/>
  1592. </path>
  1593. </background>
  1594. <foreground>
  1595. <fill/>
  1596. </foreground>
  1597. </shape>
  1598. <shape aspect="variable" h="100" name="Scroll (Vertical)" strokewidth="inherit" w="10">
  1599. <connections>
  1600. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1601. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1602. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1603. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1604. </connections>
  1605. <background>
  1606. <path>
  1607. <move x="0" y="95"/>
  1608. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="95"/>
  1609. <line x="10" y="5"/>
  1610. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="0" x-axis-rotation="0" y="5"/>
  1611. <close/>
  1612. </path>
  1613. </background>
  1614. <foreground>
  1615. <fill/>
  1616. </foreground>
  1617. </shape>
  1618. <shape aspect="variable" h="100" name="Select" strokewidth="inherit" w="100">
  1619. <connections>
  1620. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1621. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1622. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1623. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1624. </connections>
  1625. <background>
  1626. <ellipse h="100" w="100" x="0" y="0"/>
  1627. </background>
  1628. <foreground>
  1629. <fill/>
  1630. <strokewidth width="2"/>
  1631. <path>
  1632. <move x="20" y="55"/>
  1633. <line x="30" y="70"/>
  1634. <line x="85" y="25"/>
  1635. </path>
  1636. <stroke/>
  1637. </foreground>
  1638. </shape>
  1639. <shape aspect="variable" h="30" name="Select Bar 1" strokewidth="inherit" w="165">
  1640. <connections>
  1641. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1642. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1643. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1644. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1645. </connections>
  1646. <background>
  1647. <path>
  1648. <move x="0" y="5"/>
  1649. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  1650. <line x="160" y="0"/>
  1651. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="165" x-axis-rotation="0" y="5"/>
  1652. <line x="165" y="20"/>
  1653. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="160" x-axis-rotation="0" y="25"/>
  1654. <line x="125" y="25"/>
  1655. <line x="120" y="30"/>
  1656. <line x="115" y="25"/>
  1657. <line x="5" y="25"/>
  1658. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="20"/>
  1659. <close/>
  1660. <move x="65" y="0"/>
  1661. <line x="65" y="25"/>
  1662. <move x="145" y="0"/>
  1663. <line x="145" y="25"/>
  1664. </path>
  1665. </background>
  1666. <foreground>
  1667. <fillstroke/>
  1668. <fillcolor color="#ffffff"/>
  1669. <path>
  1670. <move x="152" y="8"/>
  1671. <line x="160" y="12.5"/>
  1672. <line x="152" y="17"/>
  1673. <close/>
  1674. </path>
  1675. <fill/>
  1676. </foreground>
  1677. </shape>
  1678. <shape aspect="variable" h="30" name="Select Bar 2" strokewidth="inherit" w="165">
  1679. <connections>
  1680. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1681. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1682. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1683. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1684. </connections>
  1685. <background>
  1686. <path>
  1687. <move x="0" y="5"/>
  1688. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  1689. <line x="160" y="0"/>
  1690. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="165" x-axis-rotation="0" y="5"/>
  1691. <line x="165" y="20"/>
  1692. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="160" x-axis-rotation="0" y="25"/>
  1693. <line x="125" y="25"/>
  1694. <line x="120" y="30"/>
  1695. <line x="115" y="25"/>
  1696. <line x="5" y="25"/>
  1697. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="20"/>
  1698. <close/>
  1699. <move x="42" y="0"/>
  1700. <line x="42" y="25"/>
  1701. <move x="145" y="0"/>
  1702. <line x="145" y="25"/>
  1703. <move x="100" y="0"/>
  1704. <line x="100" y="25"/>
  1705. </path>
  1706. </background>
  1707. <foreground>
  1708. <fillstroke/>
  1709. <fillcolor color="#ffffff"/>
  1710. <path>
  1711. <move x="152" y="8"/>
  1712. <line x="160" y="12.5"/>
  1713. <line x="152" y="17"/>
  1714. <close/>
  1715. </path>
  1716. <fill/>
  1717. </foreground>
  1718. </shape>
  1719. <shape aspect="variable" h="100" name="Settings" strokewidth="inherit" w="100">
  1720. <connections/>
  1721. <background>
  1722. <path>
  1723. <move x="0" y="20"/>
  1724. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  1725. <line x="80" y="0"/>
  1726. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  1727. <line x="100" y="80"/>
  1728. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  1729. <line x="20" y="100"/>
  1730. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  1731. <close/>
  1732. </path>
  1733. </background>
  1734. <foreground>
  1735. <fillstroke/>
  1736. <strokecolor color="none"/>
  1737. <fillcolor color="#ffffff"/>
  1738. <path>
  1739. <move x="36" y="30.4"/>
  1740. <arc large-arc-flag="0" rx="24" ry="24" sweep-flag="0" x="36" x-axis-rotation="0" y="69.6"/>
  1741. <line x="46.6" y="50"/>
  1742. <close/>
  1743. <move x="40" y="71.8"/>
  1744. <arc large-arc-flag="0" rx="24" ry="24" sweep-flag="0" x="74" x-axis-rotation="0" y="52"/>
  1745. <line x="50.7" y="52"/>
  1746. <close/>
  1747. <move x="74" y="48"/>
  1748. <arc large-arc-flag="0" rx="24" ry="24" sweep-flag="0" x="40" x-axis-rotation="0" y="28.2"/>
  1749. <line x="50.7" y="48"/>
  1750. <close/>
  1751. <move x="22.1" y="75.7"/>
  1752. <line x="19.2" y="72.4"/>
  1753. <line x="25.8" y="65.8"/>
  1754. <line x="24.4" y="63.7"/>
  1755. <line x="15" y="65"/>
  1756. <line x="13.5" y="60.5"/>
  1757. <line x="21.8" y="57"/>
  1758. <line x="21.3" y="53.7"/>
  1759. <line x="12" y="52.5"/>
  1760. <line x="12.1" y="48"/>
  1761. <line x="21.2" y="47.1"/>
  1762. <line x="21.7" y="44"/>
  1763. <line x="13.6" y="39.3"/>
  1764. <line x="15" y="35.3"/>
  1765. <line x="24.2" y="36.8"/>
  1766. <line x="25.7" y="34.3"/>
  1767. <line x="19" y="28"/>
  1768. <line x="22" y="24.4"/>
  1769. <line x="29.8" y="29.2"/>
  1770. <line x="32.3" y="27"/>
  1771. <line x="29" y="18.4"/>
  1772. <line x="32.5" y="16.3"/>
  1773. <line x="38" y="23.5"/>
  1774. <line x="41.6" y="22.3"/>
  1775. <line x="41.2" y="13"/>
  1776. <line x="45.7" y="12.3"/>
  1777. <line x="48.7" y="20.9"/>
  1778. <line x="51.8" y="21"/>
  1779. <line x="54.5" y="12.3"/>
  1780. <line x="58.7" y="13"/>
  1781. <line x="58.7" y="22.3"/>
  1782. <line x="62" y="23.6"/>
  1783. <line x="66.9" y="15.8"/>
  1784. <line x="70.5" y="18"/>
  1785. <line x="67.2" y="26.7"/>
  1786. <line x="70.2" y="29.2"/>
  1787. <line x="77.8" y="24"/>
  1788. <line x="80.3" y="27"/>
  1789. <line x="74.3" y="33.8"/>
  1790. <line x="75.9" y="36.8"/>
  1791. <line x="85.3" y="35.5"/>
  1792. <line x="86.6" y="39.4"/>
  1793. <line x="78.3" y="43"/>
  1794. <line x="78.7" y="45.8"/>
  1795. <line x="88" y="47"/>
  1796. <line x="88" y="51.6"/>
  1797. <line x="79" y="52.8"/>
  1798. <line x="78.4" y="56.5"/>
  1799. <line x="86.5" y="60.8"/>
  1800. <line x="85.1" y="65"/>
  1801. <line x="75.9" y="63.3"/>
  1802. <line x="74.6" y="65.5"/>
  1803. <line x="80.8" y="72.5"/>
  1804. <line x="77.8" y="76"/>
  1805. <line x="70.4" y="70.8"/>
  1806. <line x="67.5" y="73.3"/>
  1807. <line x="70.5" y="82"/>
  1808. <line x="67" y="84"/>
  1809. <line x="61.5" y="76.7"/>
  1810. <line x="58.2" y="77.9"/>
  1811. <line x="58.8" y="87"/>
  1812. <line x="55.2" y="87.7"/>
  1813. <line x="52" y="79.2"/>
  1814. <line x="48.3" y="79"/>
  1815. <line x="46.2" y="87.7"/>
  1816. <line x="41.2" y="87.2"/>
  1817. <line x="41.8" y="78"/>
  1818. <line x="38.6" y="76.8"/>
  1819. <line x="33.5" y="84.5"/>
  1820. <line x="29.6" y="82"/>
  1821. <line x="33" y="73.6"/>
  1822. <line x="29.5" y="70.6"/>
  1823. <close/>
  1824. </path>
  1825. <fill/>
  1826. </foreground>
  1827. </shape>
  1828. <shape aspect="variable" h="90" name="Star" strokewidth="inherit" w="100">
  1829. <connections>
  1830. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1831. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1832. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1833. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1834. </connections>
  1835. <background>
  1836. <path>
  1837. <move x="50" y="0"/>
  1838. <line x="63.7" y="35"/>
  1839. <line x="100" y="35"/>
  1840. <line x="71.1" y="53.9"/>
  1841. <line x="85" y="90"/>
  1842. <line x="50" y="67.4"/>
  1843. <line x="15" y="90"/>
  1844. <line x="28.9" y="53.9"/>
  1845. <line x="0" y="35"/>
  1846. <line x="36.4" y="35"/>
  1847. <close/>
  1848. </path>
  1849. </background>
  1850. <foreground>
  1851. <strokecolor color="none"/>
  1852. <fill/>
  1853. </foreground>
  1854. </shape>
  1855. <shape aspect="variable" h="100" name="Switch" strokewidth="inherit" w="100">
  1856. <connections/>
  1857. <background>
  1858. <path>
  1859. <move x="0" y="20"/>
  1860. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  1861. <line x="80" y="0"/>
  1862. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  1863. <line x="100" y="80"/>
  1864. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  1865. <line x="20" y="100"/>
  1866. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  1867. <close/>
  1868. </path>
  1869. </background>
  1870. <foreground>
  1871. <fillstroke/>
  1872. <strokecolor color="none"/>
  1873. <fillcolor color="#ffffff"/>
  1874. <path>
  1875. <move x="22" y="30"/>
  1876. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="38" x-axis-rotation="0" y="14"/>
  1877. <line x="62" y="14"/>
  1878. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="78" x-axis-rotation="0" y="30"/>
  1879. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="62" x-axis-rotation="0" y="46"/>
  1880. <line x="38" y="46"/>
  1881. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="22" x-axis-rotation="0" y="30"/>
  1882. <close/>
  1883. <move x="25.5" y="30"/>
  1884. <arc large-arc-flag="0" rx="12.5" ry="12.5" sweep-flag="0" x="38" x-axis-rotation="0" y="42.5"/>
  1885. <line x="62" y="42.5"/>
  1886. <arc large-arc-flag="0" rx="12.5" ry="12.5" sweep-flag="0" x="74.5" x-axis-rotation="0" y="30"/>
  1887. <arc large-arc-flag="0" rx="12.5" ry="12.5" sweep-flag="0" x="62" x-axis-rotation="0" y="17.5"/>
  1888. <line x="38" y="17.5"/>
  1889. <arc large-arc-flag="0" rx="12.5" ry="12.5" sweep-flag="0" x="25.5" x-axis-rotation="0" y="30"/>
  1890. <close/>
  1891. </path>
  1892. <fill/>
  1893. <path>
  1894. <move x="22" y="70"/>
  1895. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="38" x-axis-rotation="0" y="54"/>
  1896. <line x="62" y="54"/>
  1897. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="78" x-axis-rotation="0" y="70"/>
  1898. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="62" x-axis-rotation="0" y="86"/>
  1899. <line x="38" y="86"/>
  1900. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="22" x-axis-rotation="0" y="70"/>
  1901. <close/>
  1902. <move x="72" y="70"/>
  1903. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="62" x-axis-rotation="0" y="80"/>
  1904. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="52" x-axis-rotation="0" y="70"/>
  1905. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="62" x-axis-rotation="0" y="60"/>
  1906. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="72" x-axis-rotation="0" y="70"/>
  1907. <close/>
  1908. </path>
  1909. <fill/>
  1910. <ellipse h="20" w="20" x="28.5" y="20"/>
  1911. <fill/>
  1912. </foreground>
  1913. </shape>
  1914. <shape aspect="variable" h="100" name="Text Size" strokewidth="inherit" w="100">
  1915. <connections/>
  1916. <background>
  1917. <path>
  1918. <move x="0" y="20"/>
  1919. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  1920. <line x="80" y="0"/>
  1921. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  1922. <line x="100" y="80"/>
  1923. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  1924. <line x="20" y="100"/>
  1925. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  1926. <close/>
  1927. </path>
  1928. </background>
  1929. <foreground>
  1930. <fillstroke/>
  1931. <strokecolor color="none"/>
  1932. <fillcolor color="#ffffff"/>
  1933. <path>
  1934. <move x="16.5" y="64"/>
  1935. <line x="27" y="37.5"/>
  1936. <line x="32" y="37.5"/>
  1937. <line x="42.5" y="64"/>
  1938. <line x="37" y="64"/>
  1939. <line x="34" y="57"/>
  1940. <line x="25" y="57"/>
  1941. <line x="22.5" y="64"/>
  1942. <close/>
  1943. <move x="26" y="53"/>
  1944. <line x="33" y="53"/>
  1945. <line x="29.5" y="44"/>
  1946. <close/>
  1947. </path>
  1948. <fill/>
  1949. <path>
  1950. <move x="45.5" y="69"/>
  1951. <line x="61" y="29"/>
  1952. <line x="68" y="29"/>
  1953. <line x="83" y="69"/>
  1954. <line x="76" y="69"/>
  1955. <line x="71.5" y="57.5"/>
  1956. <line x="56.5" y="57.5"/>
  1957. <line x="52" y="69"/>
  1958. <close/>
  1959. <move x="58.5" y="52"/>
  1960. <line x="70" y="52"/>
  1961. <line x="64.5" y="37"/>
  1962. <close/>
  1963. </path>
  1964. <fill/>
  1965. </foreground>
  1966. </shape>
  1967. <shape aspect="variable" h="100" name="Travel" strokewidth="inherit" w="100">
  1968. <connections/>
  1969. <background>
  1970. <path>
  1971. <move x="0" y="20"/>
  1972. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  1973. <line x="80" y="0"/>
  1974. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  1975. <line x="100" y="80"/>
  1976. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  1977. <line x="20" y="100"/>
  1978. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  1979. <close/>
  1980. <close/>
  1981. </path>
  1982. </background>
  1983. <foreground>
  1984. <fillstroke/>
  1985. <strokecolor color="none"/>
  1986. <fillcolor color="#ffffff"/>
  1987. <path>
  1988. <move x="20" y="33"/>
  1989. <line x="26" y="43.5"/>
  1990. <line x="44.5" y="43.5"/>
  1991. <line x="32.5" y="21"/>
  1992. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="37.5" x-axis-rotation="0" y="18.5"/>
  1993. <line x="59" y="43.5"/>
  1994. <line x="80" y="43.5"/>
  1995. <arc large-arc-flag="0" rx="4.5" ry="5.5" sweep-flag="1" x="80" x-axis-rotation="0" y="54.5"/>
  1996. <line x="59" y="54.5"/>
  1997. <line x="37.5" y="79"/>
  1998. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="32.5" x-axis-rotation="0" y="76"/>
  1999. <line x="44.5" y="54.5"/>
  2000. <line x="26" y="54.5"/>
  2001. <line x="20" y="66"/>
  2002. <close/>
  2003. <close/>
  2004. </path>
  2005. <fill/>
  2006. </foreground>
  2007. </shape>
  2008. <shape aspect="variable" h="60" name="Up" strokewidth="inherit" w="100">
  2009. <connections>
  2010. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2011. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2012. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2013. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2014. </connections>
  2015. <background>
  2016. <path>
  2017. <move x="0" y="60"/>
  2018. <line x="50" y="0"/>
  2019. <line x="100" y="60"/>
  2020. </path>
  2021. </background>
  2022. <foreground>
  2023. <strokewidth width="2"/>
  2024. <stroke/>
  2025. </foreground>
  2026. </shape>
  2027. <shape aspect="variable" h="100" name="Volume Down" strokewidth="inherit" w="64">
  2028. <connections/>
  2029. <background>
  2030. <path>
  2031. <move x="0" y="32"/>
  2032. <line x="35" y="32"/>
  2033. <line x="64" y="0"/>
  2034. <line x="64" y="100"/>
  2035. <line x="35" y="68"/>
  2036. <line x="0" y="68"/>
  2037. <close/>
  2038. </path>
  2039. </background>
  2040. <foreground>
  2041. <fillstroke/>
  2042. </foreground>
  2043. </shape>
  2044. <shape aspect="variable" h="100" name="Volume Up" strokewidth="inherit" w="96.83">
  2045. <connections/>
  2046. <background>
  2047. <path>
  2048. <move x="0" y="39"/>
  2049. <line x="22" y="39"/>
  2050. <line x="41" y="18"/>
  2051. <line x="41" y="82"/>
  2052. <line x="22" y="61"/>
  2053. <line x="0" y="61"/>
  2054. <close/>
  2055. </path>
  2056. </background>
  2057. <foreground>
  2058. <fillstroke/>
  2059. <path>
  2060. <move x="47" y="38"/>
  2061. <line x="50" y="33"/>
  2062. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="1" x="50" x-axis-rotation="0" y="70"/>
  2063. <line x="47" y="65"/>
  2064. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="0" x="47" x-axis-rotation="0" y="38"/>
  2065. <close/>
  2066. </path>
  2067. <fillstroke/>
  2068. <path>
  2069. <move x="56.5" y="20"/>
  2070. <line x="60" y="14"/>
  2071. <arc large-arc-flag="0" rx="42" ry="42" sweep-flag="1" x="60" x-axis-rotation="0" y="86"/>
  2072. <line x="56.5" y="81"/>
  2073. <arc large-arc-flag="0" rx="36" ry="36" sweep-flag="0" x="56.5" x-axis-rotation="0" y="20"/>
  2074. <close/>
  2075. </path>
  2076. <fillstroke/>
  2077. <path>
  2078. <move x="66" y="5"/>
  2079. <line x="70" y="0"/>
  2080. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="70" x-axis-rotation="0" y="100"/>
  2081. <line x="66" y="95"/>
  2082. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="66" x-axis-rotation="0" y="5"/>
  2083. <close/>
  2084. </path>
  2085. <fillstroke/>
  2086. </foreground>
  2087. </shape>
  2088. <shape aspect="variable" h="100" name="VPN" strokewidth="inherit" w="100">
  2089. <connections/>
  2090. <background>
  2091. <path>
  2092. <move x="0" y="20"/>
  2093. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  2094. <line x="80" y="0"/>
  2095. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  2096. <line x="100" y="80"/>
  2097. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  2098. <line x="20" y="100"/>
  2099. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  2100. <close/>
  2101. </path>
  2102. </background>
  2103. <foreground>
  2104. <fillstroke/>
  2105. <strokecolor color="none"/>
  2106. <fillcolor color="#ffffff"/>
  2107. <path>
  2108. <move x="8" y="33.5"/>
  2109. <line x="12.5" y="33.5"/>
  2110. <line x="21.5" y="59"/>
  2111. <line x="30.5" y="33.5"/>
  2112. <line x="35" y="33.5"/>
  2113. <line x="24" y="65.5"/>
  2114. <line x="19" y="65.5"/>
  2115. <close/>
  2116. </path>
  2117. <fill/>
  2118. <path>
  2119. <move x="38" y="65.5"/>
  2120. <line x="38" y="33.5"/>
  2121. <line x="51" y="33.5"/>
  2122. <arc large-arc-flag="0" rx="9" ry="10" sweep-flag="1" x="51" x-axis-rotation="0" y="54"/>
  2123. <line x="42.5" y="54"/>
  2124. <line x="42.5" y="65.5"/>
  2125. <close/>
  2126. <move x="42.5" y="50"/>
  2127. <line x="51" y="50"/>
  2128. <arc large-arc-flag="0" rx="4" ry="5" sweep-flag="0" x="51" x-axis-rotation="0" y="38"/>
  2129. <line x="42.5" y="38"/>
  2130. <close/>
  2131. </path>
  2132. <fill/>
  2133. <path>
  2134. <move x="65" y="65.5"/>
  2135. <line x="65" y="33.5"/>
  2136. <line x="69" y="33.5"/>
  2137. <line x="86.5" y="58.5"/>
  2138. <line x="86.5" y="33.5"/>
  2139. <line x="91" y="33.5"/>
  2140. <line x="91" y="65.5"/>
  2141. <line x="86" y="65.5"/>
  2142. <line x="69.5" y="42"/>
  2143. <line x="69.5" y="65.5"/>
  2144. <close/>
  2145. </path>
  2146. <fill/>
  2147. </foreground>
  2148. </shape>
  2149. <shape aspect="variable" h="100" name="WiFi" strokewidth="inherit" w="100">
  2150. <connections/>
  2151. <background>
  2152. <path>
  2153. <move x="0" y="20"/>
  2154. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  2155. <line x="80" y="0"/>
  2156. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  2157. <line x="100" y="80"/>
  2158. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="100"/>
  2159. <line x="20" y="100"/>
  2160. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="0" x-axis-rotation="0" y="80"/>
  2161. <close/>
  2162. </path>
  2163. </background>
  2164. <foreground>
  2165. <fillstroke/>
  2166. <strokecolor color="none"/>
  2167. <fillcolor color="#ffffff"/>
  2168. <path>
  2169. <move x="19" y="42.5"/>
  2170. <arc large-arc-flag="0" rx="42" ry="42" sweep-flag="1" x="81" x-axis-rotation="0" y="42.5"/>
  2171. <line x="75.5" y="47"/>
  2172. <arc large-arc-flag="0" rx="35" ry="35" sweep-flag="0" x="24.5" x-axis-rotation="0" y="47"/>
  2173. <close/>
  2174. </path>
  2175. <fill/>
  2176. <path>
  2177. <move x="30.5" y="52"/>
  2178. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="69.5" x-axis-rotation="0" y="52"/>
  2179. <line x="64" y="57"/>
  2180. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="36" x-axis-rotation="0" y="57"/>
  2181. <close/>
  2182. </path>
  2183. <fill/>
  2184. <path>
  2185. <move x="42" y="63.5"/>
  2186. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="58" x-axis-rotation="0" y="63.5"/>
  2187. <line x="50" y="71.5"/>
  2188. <close/>
  2189. </path>
  2190. <fill/>
  2191. </foreground>
  2192. </shape>
  2193. </shapes>