business_icons.xml 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947
  1. <shapes name="mxgraph.cisco_safe.business_icons">
  2. <shape aspect="variable" h="98.82" name="icon1" strokewidth="inherit" w="98.82">
  3. <connections/>
  4. <foreground>
  5. <path>
  6. <move x="49.41" y="0"/>
  7. <arc large-arc-flag="0" rx="49.41" ry="49.41" sweep-flag="0" x="16.95" x-axis-rotation="0" y="12.24"/>
  8. <line x="49.53" y="44.91"/>
  9. <line x="82.1" y="12.43"/>
  10. <arc large-arc-flag="0" rx="49.41" ry="49.41" sweep-flag="0" x="49.41" x-axis-rotation="0" y="0"/>
  11. <close/>
  12. <move x="12.38" y="16.76"/>
  13. <arc large-arc-flag="0" rx="49.41" ry="49.41" sweep-flag="0" x="1.78" x-axis-rotation="0" y="36.48"/>
  14. <line x="16.95" y="21.35"/>
  15. <close/>
  16. <move x="86.62" y="17"/>
  17. <line x="16.88" y="86.55"/>
  18. <arc large-arc-flag="0" rx="49.41" ry="49.41" sweep-flag="0" x="49.41" x-axis-rotation="0" y="98.82"/>
  19. <arc large-arc-flag="0" rx="49.41" ry="49.41" sweep-flag="0" x="98.82" x-axis-rotation="0" y="49.41"/>
  20. <arc large-arc-flag="0" rx="49.41" ry="49.41" sweep-flag="0" x="86.62" x-axis-rotation="0" y="17"/>
  21. <close/>
  22. <move x="21.49" y="25.9"/>
  23. <line x="0.11" y="47.22"/>
  24. <arc large-arc-flag="0" rx="49.41" ry="49.41" sweep-flag="0" x="0" x-axis-rotation="0" y="49.41"/>
  25. <arc large-arc-flag="0" rx="49.41" ry="49.41" sweep-flag="0" x="0.55" x-axis-rotation="0" y="56.42"/>
  26. <line x="26.31" y="30.73"/>
  27. <close/>
  28. <move x="30.85" y="35.28"/>
  29. <line x="2.21" y="63.85"/>
  30. <arc large-arc-flag="0" rx="49.41" ry="49.41" sweep-flag="0" x="4.86" x-axis-rotation="0" y="70.68"/>
  31. <line x="35.59" y="40.04"/>
  32. <close/>
  33. <move x="40.13" y="44.58"/>
  34. <line x="8.12" y="76.51"/>
  35. <arc large-arc-flag="0" rx="49.41" ry="49.41" sweep-flag="0" x="12.35" x-axis-rotation="0" y="81.99"/>
  36. <line x="44.98" y="49.45"/>
  37. <close/>
  38. </path>
  39. <fill/>
  40. </foreground>
  41. </shape>
  42. <shape aspect="variable" h="86.72" name="icon10" strokewidth="inherit" w="98.98">
  43. <connections/>
  44. <foreground>
  45. <path>
  46. <move x="86.65" y="33.88"/>
  47. <line x="78.33" y="42.19"/>
  48. <line x="78.33" y="86.72"/>
  49. <line x="86.65" y="86.72"/>
  50. <close/>
  51. <move x="73.62" y="46.9"/>
  52. <line x="65.3" y="55.21"/>
  53. <line x="65.3" y="86.72"/>
  54. <line x="73.62" y="86.72"/>
  55. <close/>
  56. <move x="60.59" y="59.93"/>
  57. <line x="52.27" y="68.24"/>
  58. <line x="52.27" y="86.72"/>
  59. <line x="60.59" y="86.72"/>
  60. <close/>
  61. <move x="39.24" y="60.27"/>
  62. <line x="39.24" y="86.72"/>
  63. <line x="47.56" y="86.72"/>
  64. <line x="47.56" y="68.44"/>
  65. <close/>
  66. <move x="34.53" y="61.43"/>
  67. <line x="26.21" y="69.7"/>
  68. <line x="26.21" y="86.72"/>
  69. <line x="34.53" y="86.72"/>
  70. <close/>
  71. <move x="21.5" y="74.4"/>
  72. <line x="13.18" y="82.67"/>
  73. <line x="13.18" y="86.72"/>
  74. <line x="21.5" y="86.72"/>
  75. <close/>
  76. <move x="62.1" y="0"/>
  77. <line x="74.61" y="12.51"/>
  78. <line x="49.7" y="37.41"/>
  79. <line x="37.35" y="25.27"/>
  80. <line x="0" y="62.54"/>
  81. <line x="12.02" y="74.58"/>
  82. <line x="37.44" y="49.21"/>
  83. <line x="49.79" y="61.36"/>
  84. <line x="86.64" y="24.54"/>
  85. <line x="98.98" y="36.88"/>
  86. <line x="98.98" y="4.69"/>
  87. <curve x1="98.98" x2="96.83" x3="94.5" y1="1.55" y2="0.02" y3="0.02"/>
  88. <close/>
  89. </path>
  90. <fill/>
  91. </foreground>
  92. </shape>
  93. <shape aspect="variable" h="63.24" name="icon11" strokewidth="inherit" w="75">
  94. <connections/>
  95. <foreground>
  96. <path>
  97. <move x="61.21" y="6.01"/>
  98. <line x="68.31" y="6.01"/>
  99. <line x="68.31" y="13.65"/>
  100. <line x="61.21" y="13.65"/>
  101. <close/>
  102. <move x="49.69" y="6.01"/>
  103. <line x="56.8" y="6.01"/>
  104. <line x="56.8" y="13.65"/>
  105. <line x="49.69" y="13.65"/>
  106. <close/>
  107. <move x="6.39" y="0"/>
  108. <curve x1="2.85" x2="0" x3="0" y1="0" y2="2.85" y3="6.39"/>
  109. <line x="0" y="56.86"/>
  110. <curve x1="0" x2="2.85" x3="6.39" y1="60.39" y2="63.24" y3="63.24"/>
  111. <line x="29.03" y="63.24"/>
  112. <curve x1="30.26" x2="31.24" x3="31.24" y1="63.24" y2="62.58" y3="60.98"/>
  113. <curve x1="31.24" x2="30.32" x3="29.03" y1="59.62" y2="58.78" y3="58.78"/>
  114. <line x="7.44" y="58.74"/>
  115. <curve x1="5.32" x2="4.32" x3="4.32" y1="58.74" y2="56.78" y3="55.2"/>
  116. <line x="4.28" y="18.86"/>
  117. <line x="73.17" y="18.88"/>
  118. <curve x1="74.13" x2="75" x3="75" y1="18.88" y2="17.88" y3="16.65"/>
  119. <line x="75" y="6.39"/>
  120. <curve x1="75" x2="72.15" x3="68.61" y1="2.85" y2="0" y3="0"/>
  121. <close/>
  122. </path>
  123. <fill/>
  124. </foreground>
  125. </shape>
  126. <shape aspect="variable" h="65.62" name="icon12" strokewidth="inherit" w="73.81">
  127. <connections/>
  128. <foreground>
  129. <path>
  130. <move x="44.38" y="0.03"/>
  131. <arc large-arc-flag="0" rx="3.26" ry="3.26" sweep-flag="0" x="41.98" x-axis-rotation="0" y="5.57"/>
  132. <line x="67.16" y="31.9"/>
  133. <curve x1="67.18" x2="67.25" x3="67.24" y1="31.95" y2="32.09" y3="32.28"/>
  134. <curve x1="67.22" x2="66.91" x3="67.3" y1="32.66" y2="33.06" y3="32.6"/>
  135. <line x="41.88" y="59.95"/>
  136. <arc large-arc-flag="1" rx="3.26" ry="3.26" sweep-flag="0" x="46.66" x-axis-rotation="0" y="64.39"/>
  137. <line x="72.21" y="36.9"/>
  138. <arc large-arc-flag="0" rx="3.26" ry="3.26" sweep-flag="0" x="72.31" x-axis-rotation="0" y="36.79"/>
  139. <curve x1="73.62" x2="73.69" x3="73.75" y1="35.24" y2="33.99" y3="32.55"/>
  140. <curve x1="73.81" x2="73.77" x3="72.27" y1="31.12" y2="29.45" y3="27.8"/>
  141. <arc large-arc-flag="0" rx="3.26" ry="3.26" sweep-flag="0" x="72.22" x-axis-rotation="0" y="27.75"/>
  142. <line x="46.7" y="1.07"/>
  143. <arc large-arc-flag="0" rx="3.26" ry="3.26" sweep-flag="0" x="44.38" x-axis-rotation="0" y="0.03"/>
  144. <close/>
  145. <move x="29.81" y="2.22"/>
  146. <arc large-arc-flag="0" rx="2.83" ry="2.83" sweep-flag="0" x="26.94" x-axis-rotation="0" y="5.06"/>
  147. <line x="26.94" y="13.03"/>
  148. <line x="1.63" y="13.03"/>
  149. <curve x1="0.73" x2="0" x3="0" y1="13.03" y2="13.76" y3="14.66"/>
  150. <line x="0" y="50.63"/>
  151. <curve x1="0" x2="0.73" x3="1.63" y1="51.54" y2="52.26" y3="52.26"/>
  152. <line x="26.94" y="52.26"/>
  153. <line x="26.94" y="60.24"/>
  154. <arc large-arc-flag="0" rx="2.83" ry="2.83" sweep-flag="0" x="31.83" x-axis-rotation="0" y="62.18"/>
  155. <line x="57.88" y="34.59"/>
  156. <arc large-arc-flag="0" rx="2.83" ry="2.83" sweep-flag="0" x="57.88" x-axis-rotation="0" y="30.7"/>
  157. <line x="31.83" y="3.11"/>
  158. <arc large-arc-flag="0" rx="2.83" ry="2.83" sweep-flag="0" x="29.81" x-axis-rotation="0" y="2.22"/>
  159. <close/>
  160. <move x="27.79" y="20.6"/>
  161. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="32.69" x-axis-rotation="0" y="25.5"/>
  162. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="32.02" x-axis-rotation="0" y="27.95"/>
  163. <line x="38.09" y="34.05"/>
  164. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="40.6" x-axis-rotation="0" y="33.35"/>
  165. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="45.5" x-axis-rotation="0" y="38.25"/>
  166. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="40.6" x-axis-rotation="0" y="43.15"/>
  167. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="35.7" x-axis-rotation="0" y="38.25"/>
  168. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="36.32" x-axis-rotation="0" y="35.88"/>
  169. <line x="30.22" y="29.75"/>
  170. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="27.79" x-axis-rotation="0" y="30.4"/>
  171. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="24.68" x-axis-rotation="0" y="29.28"/>
  172. <line x="17.83" y="34.08"/>
  173. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="18.14" x-axis-rotation="0" y="35.79"/>
  174. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="13.24" x-axis-rotation="0" y="40.68"/>
  175. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="8.34" x-axis-rotation="0" y="35.79"/>
  176. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="13.24" x-axis-rotation="0" y="30.89"/>
  177. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="16.35" x-axis-rotation="0" y="32"/>
  178. <line x="23.2" y="27.2"/>
  179. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="22.89" x-axis-rotation="0" y="25.5"/>
  180. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="1" x="27.79" x-axis-rotation="0" y="20.6"/>
  181. <close/>
  182. </path>
  183. <fill/>
  184. </foreground>
  185. </shape>
  186. <shape aspect="variable" h="55.34" name="icon13" strokewidth="inherit" w="99.37">
  187. <connections/>
  188. <foreground>
  189. <path>
  190. <move x="7.86" y="0"/>
  191. <curve x1="5.71" x2="3.63" x3="2.16" y1="0" y2="0.63" y3="2.1"/>
  192. <curve x1="0.69" x2="0" x3="0" y1="3.57" y2="5.7" y3="8.06"/>
  193. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="0" x-axis-rotation="0" y="8.06"/>
  194. <line x="0.04" y="29.04"/>
  195. <curve x1="0.05" x2="2.79" x3="6.82" y1="32.49" y2="35.84" y3="36.13"/>
  196. <line x="4.67" y="38.48"/>
  197. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="7.06" x-axis-rotation="0" y="42.16"/>
  198. <line x="25.3" y="36.16"/>
  199. <line x="39.1" y="36.16"/>
  200. <line x="39.1" y="42.77"/>
  201. <curve x1="39.1" x2="40.21" x3="41.59" y1="44.86" y2="46.65" y3="47.64"/>
  202. <curve x1="42.96" x2="44.52" x3="45.98" y1="48.63" y2="49.01" y3="49.01"/>
  203. <line x="74.07" y="49.01"/>
  204. <line x="92.31" y="55.02"/>
  205. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="94.7" x-axis-rotation="0" y="51.33"/>
  206. <line x="92.55" y="48.98"/>
  207. <curve x1="96.58" x2="99.33" x3="99.33" y1="48.69" y2="45.34" y3="41.89"/>
  208. <line x="99.33" y="41.88"/>
  209. <line x="99.37" y="20.91"/>
  210. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="99.37" x-axis-rotation="0" y="20.91"/>
  211. <curve x1="99.37" x2="98.69" x3="97.21" y1="18.55" y2="16.42" y3="14.95"/>
  212. <curve x1="95.74" x2="93.66" x3="91.51" y1="13.48" y2="12.85" y3="12.85"/>
  213. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="91.51" x-axis-rotation="0" y="12.85"/>
  214. <line x="60.27" y="12.88"/>
  215. <line x="60.27" y="6.71"/>
  216. <curve x1="60.27" x2="57.02" x3="53.23" y1="2.99" y2="0.04" y3="0.04"/>
  217. <line x="53.22" y="0.04"/>
  218. <line x="7.86" y="0"/>
  219. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="7.86" x-axis-rotation="0" y="0"/>
  220. <close/>
  221. <move x="7.86" y="4.53"/>
  222. <line x="53.22" y="4.58"/>
  223. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="53.22" x-axis-rotation="0" y="4.58"/>
  224. <curve x1="54.96" x2="55.73" x3="55.73" y1="4.58" y2="5.39" y3="6.71"/>
  225. <line x="55.73" y="12.88"/>
  226. <line x="46.14" y="12.89"/>
  227. <curve x1="42.35" x2="39.11" x3="39.11" y1="12.9" y2="15.84" y3="19.56"/>
  228. <line x="39.1" y="31.62"/>
  229. <line x="24.94" y="31.62"/>
  230. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="24.23" x-axis-rotation="0" y="31.73"/>
  231. <line x="13.8" y="35.17"/>
  232. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="11.89" x-axis-rotation="0" y="31.6"/>
  233. <line x="7.33" y="31.7"/>
  234. <curve x1="7.33" x2="7.33" x3="7.32" y1="31.7" y2="31.7" y3="31.7"/>
  235. <curve x1="5.48" x2="4.58" x3="4.58" y1="31.7" y2="30.2" y3="29.03"/>
  236. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="4.58" x-axis-rotation="0" y="29.03"/>
  237. <line x="4.54" y="8.05"/>
  238. <curve x1="4.54" x2="4.91" x3="5.36" y1="6.53" y2="5.76" y3="5.31"/>
  239. <curve x1="5.82" x2="6.54" x3="7.86" y1="4.86" y2="4.53" y3="4.53"/>
  240. <close/>
  241. <move x="91.51" y="17.38"/>
  242. <curve x1="92.83" x2="93.55" x3="94" y1="17.38" y2="17.71" y3="18.16"/>
  243. <curve x1="94.46" x2="94.84" x3="94.84" y1="18.61" y2="19.38" y3="20.91"/>
  244. <line x="94.79" y="41.88"/>
  245. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="94.79" x-axis-rotation="0" y="41.88"/>
  246. <curve x1="94.79" x2="93.89" x3="92.05" y1="43.05" y2="44.55" y3="44.55"/>
  247. <line x="87.47" y="44.45"/>
  248. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="85.56" x-axis-rotation="0" y="48.02"/>
  249. <line x="75.14" y="44.59"/>
  250. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="74.43" x-axis-rotation="0" y="44.47"/>
  251. <line x="45.98" y="44.48"/>
  252. <curve x1="45.41" x2="44.66" x3="44.24" y1="44.48" y2="44.26" y3="43.96"/>
  253. <curve x1="43.82" x2="43.64" x3="43.64" y1="43.66" y2="43.46" y3="42.77"/>
  254. <line x="43.64" y="42.77"/>
  255. <line x="43.64" y="36.16"/>
  256. <line x="53.39" y="36.16"/>
  257. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="53.39" x-axis-rotation="0" y="36.16"/>
  258. <curve x1="54.85" x2="56.41" x3="57.78" y1="36.16" y2="35.78" y3="34.79"/>
  259. <curve x1="59.16" x2="60.27" x3="60.27" y1="33.8" y2="32.01" y3="29.92"/>
  260. <line x="60.27" y="17.42"/>
  261. <close/>
  262. <move x="55.73" y="17.42"/>
  263. <line x="55.73" y="29.92"/>
  264. <curve x1="55.73" x2="55.55" x3="55.13" y1="30.61" y2="30.81" y3="31.11"/>
  265. <curve x1="54.71" x2="53.96" x3="53.39" y1="31.41" y2="31.63" y3="31.63"/>
  266. <line x="43.64" y="31.62"/>
  267. <line x="43.64" y="19.56"/>
  268. <curve x1="43.64" x2="44.4" x3="46.14" y1="18.24" y2="17.43" y3="17.43"/>
  269. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="0" x="46.15" x-axis-rotation="0" y="17.43"/>
  270. <close/>
  271. </path>
  272. <fill/>
  273. </foreground>
  274. </shape>
  275. <shape aspect="variable" h="98.82" name="icon14" strokewidth="inherit" w="98.82">
  276. <connections/>
  277. <foreground>
  278. <path>
  279. <move x="49.41" y="0"/>
  280. <curve x1="22.16" x2="0" x3="0" y1="0" y2="22.16" y3="49.41"/>
  281. <curve x1="0" x2="22.16" x3="49.41" y1="76.66" y2="98.82" y3="98.82"/>
  282. <curve x1="76.66" x2="98.82" x3="98.82" y1="98.82" y2="76.66" y3="49.41"/>
  283. <curve x1="98.82" x2="76.66" x3="49.41" y1="22.16" y2="0" y3="0"/>
  284. <close/>
  285. <move x="47.79" y="6.57"/>
  286. <line x="47.79" y="28.65"/>
  287. <curve x1="42.76" x2="38.01" x3="33.61" y1="28.47" y2="27.56" y3="26.08"/>
  288. <curve x1="36.74" x2="41.44" x3="47.79" y1="18.76" y2="12.07" y3="6.57"/>
  289. <close/>
  290. <move x="51.19" y="6.83"/>
  291. <curve x1="56.25" x2="61.58" x3="65.27" y1="10.94" y2="17.42" y3="26"/>
  292. <curve x1="60.94" x2="56.13" x3="51.19" y1="27.46" y2="28.46" y3="28.64"/>
  293. <close/>
  294. <move x="42.35" y="7.01"/>
  295. <curve x1="37.17" x2="33.22" x3="30.44" y1="12.26" y2="18.34" y3="24.87"/>
  296. <curve x1="26.42" x2="22.75" x3="19.51" y1="23.19" y2="21.02" y3="18.51"/>
  297. <curve x1="25.64" x2="33.54" x3="42.35" y1="12.58" y2="8.46" y3="7.01"/>
  298. <close/>
  299. <move x="56.52" y="7.02"/>
  300. <curve x1="65.29" x2="73.16" x3="79.28" y1="8.47" y2="12.58" y3="18.48"/>
  301. <curve x1="76.9" x2="73.31" x3="69.02" y1="20.52" y2="22.76" y3="24.58"/>
  302. <curve x1="68.85" x2="68.66" x3="68.48" y1="24.65" y2="24.72" y3="24.79"/>
  303. <curve x1="65.33" x2="61" x3="56.52" y1="17.4" y2="11.42" y3="7.02"/>
  304. <close/>
  305. <move x="81.64" y="20.95"/>
  306. <curve x1="88" x2="91.98" x3="92.35" y1="28.16" y2="37.52" y3="47.83"/>
  307. <line x="73.38" y="47.81"/>
  308. <curve x1="73.2" x2="71.83" x3="69.73" y1="40.45" y2="33.81" y3="27.96"/>
  309. <curve x1="69.93" x2="70.15" x3="70.35" y1="27.88" y2="27.8" y3="27.71"/>
  310. <curve x1="75.01" x2="78.89" x3="81.64" y1="25.73" y2="23.36" y3="20.95"/>
  311. <close/>
  312. <move x="17.15" y="20.98"/>
  313. <curve x1="20.71" x2="24.75" x3="29.2" y1="23.78" y2="26.19" y3="28.04"/>
  314. <curve x1="26.93" x2="25.72" x3="25.54" y1="34.36" y2="41.05" y3="47.78"/>
  315. <line x="6.47" y="47.77"/>
  316. <curve x1="6.85" x2="10.81" x3="17.15" y1="37.5" y2="28.17" y3="20.98"/>
  317. <close/>
  318. <move x="66.52" y="29.17"/>
  319. <curve x1="68.5" x2="69.79" x3="69.97" y1="34.65" y2="40.89" y3="47.81"/>
  320. <line x="51.19" y="47.8"/>
  321. <line x="51.19" y="32.04"/>
  322. <curve x1="56.61" x2="61.84" x3="66.52" y1="31.86" y2="30.76" y3="29.17"/>
  323. <close/>
  324. <move x="32.37" y="29.24"/>
  325. <curve x1="37.15" x2="42.32" x3="47.79" y1="30.88" y2="31.87" y3="32.05"/>
  326. <line x="47.79" y="47.8"/>
  327. <line x="28.95" y="47.78"/>
  328. <curve x1="29.12" x2="30.25" x3="32.37" y1="41.44" y2="35.17" y3="29.24"/>
  329. <close/>
  330. <move x="6.47" y="51.17"/>
  331. <line x="25.53" y="51.18"/>
  332. <curve x1="25.74" x2="27.52" x3="30.28" y1="59.58" y2="67.15" y3="73.77"/>
  333. <curve x1="25.96" x2="22.25" x3="19.12" y1="75.5" y2="77.67" y3="79.93"/>
  334. <curve x1="11.66" x2="6.92" x3="6.47" y1="72.53" y2="62.41" y3="51.17"/>
  335. <close/>
  336. <move x="28.93" y="51.18"/>
  337. <line x="47.79" y="51.2"/>
  338. <line x="47.79" y="70.15"/>
  339. <curve x1="42.5" x2="37.73" x3="33.48" y1="70.32" y2="71.23" y3="72.61"/>
  340. <curve x1="30.85" x2="29.14" x3="28.93" y1="66.36" y2="59.18" y3="51.18"/>
  341. <close/>
  342. <move x="51.19" y="51.2"/>
  343. <line x="69.96" y="51.21"/>
  344. <curve x1="69.76" x2="68.19" x3="65.46" y1="58.97" y2="66.14" y3="72.63"/>
  345. <curve x1="60.94" x2="56.09" x3="51.19" y1="71.17" y2="70.28" y3="70.14"/>
  346. <close/>
  347. <move x="73.36" y="51.21"/>
  348. <line x="92.35" y="51.23"/>
  349. <curve x1="91.88" x2="87.14" x3="79.71" y1="62.44" y2="72.53" y3="79.92"/>
  350. <curve x1="76.55" x2="72.78" x3="68.64" y1="77.51" y2="75.41" y3="73.78"/>
  351. <curve x1="71.52" x2="73.16" x3="73.36" y1="66.92" y2="59.34" y3="51.21"/>
  352. <close/>
  353. <move x="51.19" y="73.54"/>
  354. <curve x1="55.56" x2="59.93" x3="64.01" y1="73.69" y2="74.49" y3="75.77"/>
  355. <curve x1="60.88" x2="56.61" x3="51.42" y1="82.06" y2="87.62" y3="92.34"/>
  356. <curve x1="51.34" x2="51.26" x3="51.19" y1="92.35" y2="92.34" y3="92.35"/>
  357. <close/>
  358. <move x="47.79" y="73.55"/>
  359. <line x="47.79" y="92.35"/>
  360. <curve x1="47.73" x2="47.68" x3="47.63" y1="92.35" y2="92.35" y3="92.35"/>
  361. <curve x1="42.83" x2="38.3" x3="34.9" y1="88.22" y2="82.62" y3="75.72"/>
  362. <curve x1="38.74" x2="43.03" x3="47.79" y1="74.51" y2="73.71" y3="73.55"/>
  363. <close/>
  364. <move x="31.67" y="76.86"/>
  365. <curve x1="34.51" x2="38.12" x3="42.06" y1="82.7" y2="87.69" y3="91.76"/>
  366. <curve x1="34.37" x2="27.39" x3="21.69" y1="90.44" y2="87.09" y3="82.27"/>
  367. <curve x1="24.53" x2="27.84" x3="31.67" y1="80.28" y2="78.38" y3="76.86"/>
  368. <close/>
  369. <move x="67.22" y="76.91"/>
  370. <curve x1="70.94" x2="74.33" x3="77.15" y1="78.36" y2="80.2" y3="82.26"/>
  371. <curve x1="71.48" x2="64.54" x3="56.9" y1="87.05" y2="90.39" y3="91.73"/>
  372. <curve x1="61.05" x2="64.55" x3="67.22" y1="87.35" y2="82.39" y3="76.91"/>
  373. <close/>
  374. </path>
  375. <fill/>
  376. </foreground>
  377. </shape>
  378. <shape aspect="variable" h="98.6" name="icon15" strokewidth="inherit" w="75.04">
  379. <connections/>
  380. <foreground>
  381. <path>
  382. <move x="32.05" y="0"/>
  383. <curve x1="30.92" x2="30.01" x3="30.01" y1="0" y2="0.91" y3="2.04"/>
  384. <line x="30.01" y="7.44"/>
  385. <curve x1="27.51" x2="25.08" x3="22.83" y1="7.72" y2="8.14" y3="8.69"/>
  386. <curve x1="10.96" x2="3.11" x3="3.07" y1="11.21" y2="20.15" y3="29.79"/>
  387. <curve x1="3.09" x2="12.13" x3="23.36" y1="42.04" y2="49.28" y3="52.51"/>
  388. <curve x1="25.72" x2="27.91" x3="30.01" y1="53.21" y2="53.78" y3="54.32"/>
  389. <line x="30.01" y="77.29"/>
  390. <curve x1="23.21" x2="19.67" x3="18.12" y1="75.31" y2="70.38" y3="64.26"/>
  391. <curve x1="17.87" x2="16.91" x3="15.73" y1="63.12" y2="62.57" y3="62.67"/>
  392. <line x="2.21" y="63.92"/>
  393. <curve x1="0.62" x2="0" x3="0.22" y1="64.02" y2="65.22" y3="66.65"/>
  394. <curve x1="2.16" x2="8.09" x3="21.04" y1="76.85" y2="86.4" y3="90.26"/>
  395. <curve x1="23.68" x2="26.73" x3="30.01" y1="91.08" y2="91.69" y3="92.06"/>
  396. <line x="30.01" y="96.56"/>
  397. <curve x1="30.01" x2="30.92" x3="32.05" y1="97.69" y2="98.6" y3="98.6"/>
  398. <line x="41.69" y="98.6"/>
  399. <curve x1="42.82" x2="43.73" x3="43.73" y1="98.6" y2="97.69" y3="96.56"/>
  400. <line x="43.73" y="92.21"/>
  401. <curve x1="47.38" x2="51.06" x3="54.58" y1="91.89" y2="91.28" y3="90.33"/>
  402. <curve x1="66.77" x2="72.57" x3="73.82" y1="86.83" y2="78.56" y3="69.72"/>
  403. <curve x1="75.04" x2="71.59" x3="64.44" y1="60.68" y2="52.93" y3="47.86"/>
  404. <curve x1="58.07" x2="50.67" x3="43.73" y1="43.55" y2="41.74" y3="40.14"/>
  405. <line x="43.73" y="21.87"/>
  406. <curve x1="48.35" x2="51.17" x3="52.55" y1="23.23" y2="25.79" y3="31.12"/>
  407. <curve x1="52.85" x2="53.71" x3="55.03" y1="32.21" y2="32.84" y3="32.78"/>
  408. <line x="68.64" y="32.23"/>
  409. <curve x1="70.37" x2="71.25" x3="71.13" y1="32.15" y2="31.62" y3="29.76"/>
  410. <curve x1="70.64" x2="64.88" x3="54.56" y1="21.83" y2="13.24" y3="9.81"/>
  411. <curve x1="51.22" x2="47.53" x3="43.73" y1="8.6" y2="7.83" y3="7.41"/>
  412. <line x="43.73" y="2.04"/>
  413. <curve x1="43.73" x2="42.82" x3="41.69" y1="0.91" y2="0" y3="0"/>
  414. <close/>
  415. <move x="30.01" y="21.51"/>
  416. <line x="30.01" y="36.79"/>
  417. <curve x1="25.63" x2="21.53" x3="20.84" y1="35.54" y2="33.71" y3="30.04"/>
  418. <curve x1="20.32" x2="21.95" x3="24.86" y1="26.97" y2="24.47" y3="23.21"/>
  419. <curve x1="26.57" x2="28.29" x3="30.01" y1="22.44" y2="21.89" y3="21.51"/>
  420. <close/>
  421. <move x="43.73" y="57.54"/>
  422. <curve x1="47.5" x2="50.41" x3="52.3" y1="58.47" y2="59.39" y3="60.82"/>
  423. <curve x1="56.12" x2="56.16" x3="54.43" y1="63.63" y2="67.71" y3="71.47"/>
  424. <curve x1="51.99" x2="48.49" x3="43.73" y1="75.01" y2="76.98" y3="77.8"/>
  425. <close/>
  426. </path>
  427. <fill/>
  428. </foreground>
  429. </shape>
  430. <shape aspect="variable" h="55.62" name="icon16" strokewidth="inherit" w="74.18">
  431. <connections/>
  432. <foreground>
  433. <path>
  434. <move x="49.85" y="8.16"/>
  435. <line x="69.4" y="8.16"/>
  436. <line x="69.4" y="47.58"/>
  437. <line x="49.85" y="47.58"/>
  438. <close/>
  439. <move x="26.52" y="0"/>
  440. <line x="46.07" y="0"/>
  441. <line x="46.07" y="47.58"/>
  442. <line x="26.52" y="47.58"/>
  443. <close/>
  444. <move x="3.19" y="16.5"/>
  445. <line x="22.73" y="16.5"/>
  446. <line x="22.73" y="47.58"/>
  447. <line x="3.19" y="47.58"/>
  448. <close/>
  449. <move x="0" y="49.23"/>
  450. <line x="74.18" y="49.23"/>
  451. <line x="74.18" y="55.62"/>
  452. <line x="0" y="55.62"/>
  453. <close/>
  454. </path>
  455. <fill/>
  456. </foreground>
  457. </shape>
  458. <shape aspect="variable" h="67.52" name="icon17" strokewidth="inherit" w="98.86">
  459. <connections/>
  460. <foreground>
  461. <path>
  462. <move x="8.95" y="0"/>
  463. <line x="8.95" y="4.54"/>
  464. <line x="89.91" y="4.54"/>
  465. <line x="89.91" y="0"/>
  466. <close/>
  467. <move x="4.45" y="9.02"/>
  468. <line x="4.45" y="13.56"/>
  469. <line x="94.41" y="13.56"/>
  470. <line x="94.41" y="9.02"/>
  471. <close/>
  472. <move x="0" y="17.93"/>
  473. <line x="0" y="67.52"/>
  474. <line x="98.86" y="67.52"/>
  475. <line x="98.86" y="17.93"/>
  476. <close/>
  477. <move x="47.37" y="27.03"/>
  478. <line x="50.02" y="27.03"/>
  479. <line x="50.02" y="30.04"/>
  480. <curve x1="52.74" x2="53.94" x3="55.15" y1="30.39" y2="31.91" y3="33.96"/>
  481. <line x="52.2" y="35.64"/>
  482. <curve x1="51.4" x2="50.26" x3="48.7" y1="34.13" y2="33.18" y3="33.18"/>
  483. <curve x1="46.98" x2="45.53" x3="45.53" y1="33.18" y2="34.13" y3="35.99"/>
  484. <curve x1="45.53" x2="46.23" x3="48.13" y1="37.36" y2="38.07" y3="39"/>
  485. <curve x1="50.39" x2="52.06" x3="53.84" y1="40.13" y2="40.73" y3="42.3"/>
  486. <curve x1="55.03" x2="55.96" x3="55.62" y1="43.42" y2="45.63" y3="47.87"/>
  487. <curve x1="55.23" x2="52.99" x3="50.02" y1="51.16" y2="53.38" y3="54.15"/>
  488. <line x="50.02" y="57.33"/>
  489. <line x="47.37" y="57.33"/>
  490. <line x="47.37" y="54.29"/>
  491. <curve x1="43.09" x2="41.52" x3="40.46" y1="53.45" y2="51.61" y3="47.34"/>
  492. <line x="43.85" y="46.62"/>
  493. <curve x1="44.33" x2="45.13" x3="48.2" y1="48.53" y2="50.9" y3="50.9"/>
  494. <curve x1="50.45" x2="52.22" x3="52.22" y1="50.9" y2="49.58" y3="47.01"/>
  495. <curve x1="52.22" x2="50.19" x3="48.25" y1="44.61" y2="43.78" y3="42.74"/>
  496. <curve x1="45.12" x2="42.13" x3="42.11" y1="41.3" y2="40.06" y3="35.84"/>
  497. <curve x1="42.11" x2="43.89" x3="47.37" y1="33.34" y2="30.9" y3="30.05"/>
  498. <close/>
  499. </path>
  500. <fill/>
  501. </foreground>
  502. </shape>
  503. <shape aspect="variable" h="74.13" name="icon18" strokewidth="inherit" w="60.8">
  504. <connections/>
  505. <foreground>
  506. <path>
  507. <move x="35.55" y="20.99"/>
  508. <line x="25.23" y="21.02"/>
  509. <curve x1="23.84" x2="23.15" x3="24.15" y1="21.03" y2="22.72" y3="23.69"/>
  510. <line x="29.26" y="28.71"/>
  511. <curve x1="29.87" x2="30.83" x3="31.44" y1="29.3" y2="29.3" y3="28.71"/>
  512. <line x="36.64" y="23.67"/>
  513. <curve x1="37.65" x2="36.95" x3="35.55" y1="22.7" y2="20.99" y3="20.99"/>
  514. <close/>
  515. <move x="30.4" y="48.74"/>
  516. <curve x1="29.96" x2="29.53" x3="29.22" y1="48.74" y2="48.92" y3="49.24"/>
  517. <line x="18.38" y="60.13"/>
  518. <curve x1="17.31" x2="18.07" x3="19.58" y1="61.2" y2="63.04" y3="63.04"/>
  519. <line x="41.21" y="63.04"/>
  520. <curve x1="42.72" x2="43.48" x3="42.42" y1="63.04" y2="61.22" y3="60.15"/>
  521. <line x="31.63" y="49.24"/>
  522. <curve x1="31.31" x2="30.86" x3="30.4" y1="48.92" y2="48.73" y3="48.74"/>
  523. <close/>
  524. <move x="3.68" y="0"/>
  525. <arc large-arc-flag="0" rx="3.69" ry="3.69" sweep-flag="0" x="3.68" x-axis-rotation="0" y="7.37"/>
  526. <line x="5.08" y="7.37"/>
  527. <curve x1="5.22" x2="6.04" x3="7.48" y1="11.07" y2="14.93" y3="18.52"/>
  528. <curve x1="9.37" x2="12.33" x3="16.54" y1="23.21" y2="27.48" y3="29.93"/>
  529. <line x="16.59" y="29.96"/>
  530. <line x="16.63" y="29.98"/>
  531. <curve x1="18.67" x2="20.19" x3="21.12" y1="31.05" y2="32.15" y3="33.22"/>
  532. <curve x1="22.04" x2="22.43" x3="22.43" y1="34.28" y2="35.22" y3="36.48"/>
  533. <curve x1="22.43" x2="22.17" x3="21.57" y1="37.91" y2="38.62" y3="39.44"/>
  534. <curve x1="20.97" x2="19.86" x3="18.15" y1="40.25" y2="41.17" y3="42.31"/>
  535. <line x="18.13" y="42.33"/>
  536. <line x="18.11" y="42.34"/>
  537. <curve x1="7.97" x2="5.16" x3="5.01" y1="49.42" y2="57.82" y3="66.76"/>
  538. <line x="3.68" y="66.76"/>
  539. <arc large-arc-flag="0" rx="3.69" ry="3.69" sweep-flag="0" x="3.68" x-axis-rotation="0" y="74.13"/>
  540. <line x="57.11" y="74.13"/>
  541. <arc large-arc-flag="0" rx="3.69" ry="3.69" sweep-flag="0" x="57.11" x-axis-rotation="0" y="66.76"/>
  542. <line x="55.78" y="66.76"/>
  543. <curve x1="55.64" x2="52.82" x3="42.69" y1="57.82" y2="49.42" y3="42.34"/>
  544. <line x="42.67" y="42.33"/>
  545. <line x="42.64" y="42.31"/>
  546. <curve x1="40.94" x2="39.83" x3="39.22" y1="41.17" y2="40.25" y3="39.44"/>
  547. <curve x1="38.62" x2="38.36" x3="38.36" y1="38.62" y2="37.91" y3="36.48"/>
  548. <curve x1="38.37" x2="38.75" x3="39.68" y1="35.22" y2="34.28" y3="33.22"/>
  549. <curve x1="40.6" x2="42.13" x3="44.16" y1="32.15" y2="31.05" y3="29.98"/>
  550. <line x="44.21" y="29.96"/>
  551. <line x="44.25" y="29.93"/>
  552. <curve x1="48.46" x2="51.42" x3="53.31" y1="27.48" y2="23.21" y3="18.52"/>
  553. <curve x1="54.75" x2="55.57" x3="55.72" y1="14.93" y2="11.07" y3="7.37"/>
  554. <line x="57.11" y="7.37"/>
  555. <arc large-arc-flag="0" rx="3.69" ry="3.69" sweep-flag="0" x="57.11" x-axis-rotation="0" y="0"/>
  556. <close/>
  557. <move x="9.9" y="7.37"/>
  558. <line x="50.89" y="7.37"/>
  559. <curve x1="50.74" x2="50.04" x3="48.84" y1="10.43" y2="13.73" y3="16.72"/>
  560. <curve x1="47.24" x2="44.75" x3="41.83" y1="20.71" y2="24.07" y3="25.77"/>
  561. <curve x1="39.53" x2="37.54" x3="36.04" y1="26.98" y2="28.33" y3="30.05"/>
  562. <curve x1="34.52" x2="33.55" x3="33.54" y1="31.8" y2="34.03" y3="36.46"/>
  563. <line x="33.54" y="36.47"/>
  564. <line x="33.54" y="36.47"/>
  565. <curve x1="33.54" x2="34.17" x3="35.35" y1="38.69" y2="40.71" y3="42.31"/>
  566. <curve x1="36.52" x2="38.08" x3="39.93" y1="43.89" y2="45.06" y3="46.29"/>
  567. <curve x1="49.01" x2="50.93" x3="50.97" y1="52.64" y2="58.77" y3="66.76"/>
  568. <line x="9.82" y="66.76"/>
  569. <curve x1="9.86" x2="11.79" x3="20.87" y1="58.77" y2="52.64" y3="46.29"/>
  570. <curve x1="22.71" x2="24.27" x3="25.44" y1="45.06" y2="43.89" y3="42.31"/>
  571. <curve x1="26.62" x2="27.26" x3="27.26" y1="40.71" y2="38.69" y3="36.47"/>
  572. <line x="27.26" y="36.47"/>
  573. <line x="27.26" y="36.46"/>
  574. <curve x1="27.24" x2="26.27" x3="24.75" y1="34.03" y2="31.8" y3="30.05"/>
  575. <curve x1="23.25" x2="21.27" x3="18.97" y1="28.33" y2="26.98" y3="25.77"/>
  576. <curve x1="16.05" x2="13.56" x3="11.95" y1="24.07" y2="20.71" y3="16.72"/>
  577. <curve x1="10.75" x2="10.05" x3="9.9" y1="13.73" y2="10.43" y3="7.37"/>
  578. <close/>
  579. </path>
  580. <fill/>
  581. </foreground>
  582. </shape>
  583. <shape aspect="variable" h="98.99" name="icon19" strokewidth="inherit" w="98.82">
  584. <connections/>
  585. <foreground>
  586. <path>
  587. <move x="49.41" y="0"/>
  588. <curve x1="42.49" x2="36.83" x3="36.83" y1="0" y2="5.66" y3="12.58"/>
  589. <curve x1="36.83" x2="40" x3="44.5" y1="17.76" y2="22.24" y3="24.16"/>
  590. <line x="44.48" y="38.94"/>
  591. <curve x1="44.3" x2="41.54" x3="37.98" y1="41.3" y2="44.52" y3="44.52"/>
  592. <line x="37.97" y="44.52"/>
  593. <line x="25.32" y="44.59"/>
  594. <curve x1="19.39" x2="14.56" x3="11.68" y1="44.59" y2="47.21" y3="50.7"/>
  595. <curve x1="8.79" x2="7.61" x3="7.61" y1="54.18" y2="58.22" y3="61.88"/>
  596. <line x="7.54" y="74.89"/>
  597. <curve x1="3.11" x2="0" x3="0" y1="76.84" y2="81.28" y3="86.4"/>
  598. <curve x1="0" x2="5.66" x3="12.58" y1="93.32" y2="98.99" y3="98.99"/>
  599. <curve x1="19.5" x2="25.17" x3="25.17" y1="98.99" y2="93.32" y3="86.4"/>
  600. <curve x1="25.17" x2="21.93" x3="17.37" y1="81.18" y2="76.67" y3="74.77"/>
  601. <line x="17.43" y="61.89"/>
  602. <line x="17.43" y="61.88"/>
  603. <curve x1="17.43" x2="18.03" x3="19.24" y1="60.57" y2="58.42" y3="56.96"/>
  604. <curve x1="20.45" x2="22.02" x3="25.32" y1="55.5" y2="54.42" y3="54.42"/>
  605. <line x="25.34" y="54.42"/>
  606. <line x="37.98" y="54.35"/>
  607. <curve x1="40.3" x2="42.49" x3="44.47" y1="54.35" y2="53.88" y3="53.04"/>
  608. <line x="44.44" y="74.85"/>
  609. <curve x1="39.97" x2="36.83" x3="36.83" y1="76.79" y2="81.25" y3="86.4"/>
  610. <curve x1="36.83" x2="42.49" x3="49.41" y1="93.32" y2="98.99" y3="98.99"/>
  611. <curve x1="56.33" x2="62" x3="62" y1="98.99" y2="93.32" y3="86.4"/>
  612. <curve x1="62" x2="58.79" x3="54.27" y1="81.2" y2="76.71" y3="74.8"/>
  613. <line x="54.29" y="53.04"/>
  614. <curve x1="56.27" x2="58.46" x3="60.78" y1="53.87" y2="54.35" y3="54.35"/>
  615. <line x="73.43" y="54.42"/>
  616. <line x="73.44" y="54.42"/>
  617. <curve x1="76.74" x2="78.31" x3="79.52" y1="54.42" y2="55.5" y3="56.96"/>
  618. <curve x1="80.73" x2="81.33" x3="81.33" y1="58.42" y2="60.57" y3="61.88"/>
  619. <line x="81.33" y="61.89"/>
  620. <line x="81.39" y="74.8"/>
  621. <curve x1="76.86" x2="73.65" x3="73.65" y1="76.71" y2="81.2" y3="86.4"/>
  622. <curve x1="73.65" x2="79.32" x3="86.24" y1="93.32" y2="98.99" y3="98.99"/>
  623. <curve x1="93.16" x2="98.82" x3="98.82" y1="98.99" y2="93.32" y3="86.4"/>
  624. <curve x1="98.82" x2="95.68" x3="91.22" y1="81.25" y2="76.8" y3="74.86"/>
  625. <line x="91.16" y="61.88"/>
  626. <curve x1="91.16" x2="89.97" x3="87.09" y1="58.22" y2="54.18" y3="50.7"/>
  627. <curve x1="84.2" x2="79.37" x3="73.44" y1="47.21" y2="44.59" y3="44.59"/>
  628. <line x="60.79" y="44.52"/>
  629. <line x="60.78" y="44.52"/>
  630. <curve x1="57.37" x2="54.69" x3="54.31" y1="44.52" y2="41.56" y3="39.24"/>
  631. <line x="54.33" y="24.16"/>
  632. <curve x1="58.83" x2="62" x3="62" y1="22.23" y2="17.76" y3="12.58"/>
  633. <curve x1="62" x2="56.33" x3="49.41" y1="5.66" y2="0" y3="0"/>
  634. <close/>
  635. <move x="49.41" y="5.29"/>
  636. <curve x1="53.47" x2="56.71" x3="56.71" y1="5.29" y2="8.52" y3="12.58"/>
  637. <curve x1="56.71" x2="53.47" x3="49.41" y1="16.64" y2="19.88" y3="19.88"/>
  638. <curve x1="45.35" x2="42.12" x3="42.12" y1="19.88" y2="16.64" y3="12.58"/>
  639. <curve x1="42.12" x2="45.35" x3="49.41" y1="8.52" y2="5.29" y3="5.29"/>
  640. <close/>
  641. <move x="12.58" y="79.11"/>
  642. <curve x1="16.64" x2="19.88" x3="19.88" y1="79.11" y2="82.34" y3="86.4"/>
  643. <curve x1="19.88" x2="16.64" x3="12.58" y1="90.46" y2="93.7" y3="93.7"/>
  644. <curve x1="8.52" x2="5.29" x3="5.29" y1="93.7" y2="90.46" y3="86.4"/>
  645. <curve x1="5.29" x2="8.52" x3="12.58" y1="82.34" y2="79.11" y3="79.11"/>
  646. <close/>
  647. <move x="49.41" y="79.11"/>
  648. <curve x1="53.47" x2="56.71" x3="56.71" y1="79.11" y2="82.34" y3="86.4"/>
  649. <curve x1="56.71" x2="53.47" x3="49.41" y1="90.46" y2="93.7" y3="93.7"/>
  650. <curve x1="45.35" x2="42.12" x3="42.12" y1="93.7" y2="90.46" y3="86.4"/>
  651. <curve x1="42.12" x2="45.35" x3="49.41" y1="82.34" y2="79.11" y3="79.11"/>
  652. <close/>
  653. <move x="86.24" y="79.11"/>
  654. <curve x1="90.3" x2="93.53" x3="93.53" y1="79.11" y2="82.34" y3="86.4"/>
  655. <curve x1="93.53" x2="90.3" x3="86.24" y1="90.46" y2="93.7" y3="93.7"/>
  656. <curve x1="82.18" x2="78.95" x3="78.95" y1="93.7" y2="90.46" y3="86.4"/>
  657. <curve x1="78.95" x2="82.18" x3="86.24" y1="82.34" y2="79.11" y3="79.11"/>
  658. <close/>
  659. </path>
  660. <fill/>
  661. </foreground>
  662. </shape>
  663. <shape aspect="variable" h="98.55" name="icon2" strokewidth="inherit" w="98.6">
  664. <connections/>
  665. <foreground>
  666. <path>
  667. <move x="53.06" y="0"/>
  668. <line x="53.06" y="45.4"/>
  669. <line x="98.6" y="45.4"/>
  670. <curve x1="98.6" x2="78.14" x3="53.06" y1="20.32" y2="0" y3="0"/>
  671. <close/>
  672. <move x="45.32" y="7.76"/>
  673. <curve x1="41.01" x2="36.85" x3="32.9" y1="7.76" y2="8.38" y3="9.5"/>
  674. <line x="45.32" y="21.86"/>
  675. <close/>
  676. <move x="27.37" y="11.46"/>
  677. <curve x1="24.63" x2="22.03" x3="19.61" y1="12.65" y2="14.09" y3="15.77"/>
  678. <line x="45.32" y="41.35"/>
  679. <line x="45.32" y="29.32"/>
  680. <close/>
  681. <move x="15.41" y="19.05"/>
  682. <curve x1="13.3" x2="11.37" x3="9.63" y1="20.91" y2="22.96" y3="25.18"/>
  683. <line x="41.54" y="56.91"/>
  684. <line x="37.81" y="60.66"/>
  685. <line x="6.57" y="29.59"/>
  686. <curve x1="5.02" x2="3.72" x3="2.69" y1="32.15" y2="34.87" y3="37.72"/>
  687. <line x="31.79" y="66.66"/>
  688. <line x="28.06" y="70.41"/>
  689. <line x="1.03" y="43.53"/>
  690. <curve x1="0.36" x2="0" x3="0" y1="46.63" y2="49.85" y3="53.16"/>
  691. <curve x1="0" x2="0.02" x3="0.04" y1="53.63" y2="54.09" y3="54.56"/>
  692. <line x="22.04" y="76.44"/>
  693. <line x="18.31" y="80.19"/>
  694. <line x="1.1" y="63.08"/>
  695. <curve x1="5.63" x2="23.73" x3="45.4" y1="83.38" y2="98.55" y3="98.55"/>
  696. <curve x1="70.47" x2="90.79" x3="90.79" y1="98.55" y2="78.24" y3="53.17"/>
  697. <line x="45.32" y="53.17"/>
  698. <line x="45.32" y="48.8"/>
  699. <close/>
  700. <move x="48.52" y="61"/>
  701. <line x="82.18" y="61"/>
  702. <curve x1="79.62" x2="73.63" x3="61.65" y1="71.51" y2="81" y3="87.14"/>
  703. <curve x1="47.64" x2="35.19" x3="24.83" y1="93.2" y2="91.34" y3="84.75"/>
  704. <close/>
  705. </path>
  706. <fill/>
  707. </foreground>
  708. </shape>
  709. <shape aspect="variable" h="74.52" name="icon20" strokewidth="inherit" w="66.58">
  710. <connections/>
  711. <foreground>
  712. <path>
  713. <move x="50.78" y="37.01"/>
  714. <curve x1="50.36" x2="48.93" x3="47.02" y1="38.01" y2="38.03" y3="37.85"/>
  715. <curve x1="43.48" x2="41" x3="38.14" y1="37.55" y2="36.27" y3="34.48"/>
  716. <curve x1="36.22" x2="34.3" x3="32.98" y1="33.21" y2="31.55" y3="29.69"/>
  717. <curve x1="32.2" x2="31.49" x3="32.23" y1="28.63" y2="27.12" y3="26.04"/>
  718. <line x="47.48" y="6.06"/>
  719. <curve x1="48.78" x2="50.77" x3="54.15" y1="4.33" y2="3.37" y3="3.55"/>
  720. <curve x1="54.62" x2="55.12" x3="55.71" y1="2.69" y2="1.87" y3="1.25"/>
  721. <curve x1="56.47" x2="57.97" x3="59.28" y1="0.46" y2="0" y3="0.66"/>
  722. <curve x1="60.26" x2="60.93" x3="60.9" y1="1.16" y2="2.17" y3="3.4"/>
  723. <curve x1="60.84" x2="60.15" x3="59.53" y1="4.72" y2="5.62" y3="6.5"/>
  724. <curve x1="61.21" x2="63.12" x3="64.26" y1="7.48" y2="8.43" y3="9.49"/>
  725. <curve x1="66.44" x2="66.58" x3="65.65" y1="11.6" y2="13.94" y3="16.4"/>
  726. <line x="59.74" y="30.92"/>
  727. <curve x1="58.93" x2="57.43" x3="56.17" y1="32.81" y2="33.14" y3="32.59"/>
  728. <curve x1="54.91" x2="54.36" x3="54.91" y1="31.97" y2="30.74" y3="29.07"/>
  729. <line x="55.71" y="27.06"/>
  730. <curve x1="56.09" x2="57.34" x3="58.75" y1="26.13" y2="25.18" y3="25.51"/>
  731. <line x="62.8" y="15.65"/>
  732. <curve x1="63.42" x2="63.21" x3="61.11" y1="14.05" y2="11.9" y3="10.89"/>
  733. <curve x1="60.99" x2="60.79" x3="60.48" y1="12.29" y2="13.41" y3="14"/>
  734. <close/>
  735. <move x="47.88" y="41.58"/>
  736. <curve x1="45.7" x2="43.32" x3="39.92" y1="44.84" y2="47" y3="49.6"/>
  737. <curve x1="37.48" x2="33.57" x3="30.64" y1="51.39" y2="50.94" y3="49.07"/>
  738. <curve x1="27.91" x2="25.9" x3="26.89" y1="47.27" y2="43.48" y3="40.06"/>
  739. <curve x1="27.77" x2="28.64" x3="29.64" y1="36.77" y2="33.42" y3="31.35"/>
  740. <curve x1="31.91" x2="34.56" x3="37.58" y1="34.42" y2="36.78" y3="38.41"/>
  741. <curve x1="40.73" x2="44.94" x3="47.88" y1="40.17" y2="41.97" y3="41.58"/>
  742. <close/>
  743. <move x="31.57" y="53.91"/>
  744. <line x="28.54" y="56.18"/>
  745. <curve x1="28.06" x2="27.28" x3="26.99" y1="56.56" y2="56.68" y3="56.38"/>
  746. <curve x1="26.66" x2="26.64" x3="26.7" y1="56.01" y2="55.78" y3="55.22"/>
  747. <line x="27.14" y="51.22"/>
  748. <curve x1="28.51" x2="29.9" x3="31.57" y1="52.28" y2="53.16" y3="53.91"/>
  749. <close/>
  750. <move x="2.86" y="74.52"/>
  751. <curve x1="1.11" x2="0" x3="0" y1="74.52" y2="73.45" y3="71.93"/>
  752. <line x="0" y="33.87"/>
  753. <curve x1="0" x2="1.57" x3="4.1" y1="29.89" y2="27.98" y3="25.28"/>
  754. <line x="14.89" y="14.39"/>
  755. <curve x1="16.58" x2="19.81" x3="22.68" y1="12.49" y2="10.8" y3="10.8"/>
  756. <line x="39.01" y="10.8"/>
  757. <line x="33.73" y="17.91"/>
  758. <line x="24.94" y="17.91"/>
  759. <curve x1="22.84" x2="21.47" x3="21.47" y1="17.91" y2="19.44" y3="21.6"/>
  760. <line x="21.47" y="31.04"/>
  761. <curve x1="21.47" x2="21.07" x3="20.44" y1="31.87" y2="32.2" y3="32.2"/>
  762. <line x="11.55" y="32.2"/>
  763. <curve x1="8.73" x2="7.13" x3="7.13" y1="32.2" y2="33.66" y3="36.43"/>
  764. <line x="7.13" y="67.37"/>
  765. <line x="46.05" y="67.37"/>
  766. <line x="46.05" y="49.23"/>
  767. <curve x1="48.32" x2="50.82" x3="53.24" y1="47.47" y2="44.37" y3="41.01"/>
  768. <line x="53.24" y="72.07"/>
  769. <curve x1="53.24" x2="52.01" x3="50.57" y1="73.25" y2="74.52" y3="74.52"/>
  770. <close/>
  771. </path>
  772. <fill/>
  773. </foreground>
  774. </shape>
  775. <shape aspect="variable" h="74.16" name="icon21" strokewidth="inherit" w="73.27">
  776. <connections/>
  777. <foreground>
  778. <path>
  779. <move x="69.86" y="74.14"/>
  780. <arc large-arc-flag="0" rx="3.4" ry="3.4" sweep-flag="0" x="73.27" x-axis-rotation="0" y="70.74"/>
  781. <line x="73.27" y="51.12"/>
  782. <arc large-arc-flag="0" rx="3.4" ry="3.4" sweep-flag="0" x="66.46" x-axis-rotation="0" y="51.12"/>
  783. <line x="66.46" y="62.56"/>
  784. <line x="47.74" y="43.95"/>
  785. <arc large-arc-flag="1" rx="3.4" ry="3.4" sweep-flag="0" x="42.95" x-axis-rotation="0" y="48.78"/>
  786. <line x="61.62" y="67.33"/>
  787. <line x="50.14" y="67.33"/>
  788. <arc large-arc-flag="1" rx="3.4" ry="3.4" sweep-flag="0" x="50.14" x-axis-rotation="0" y="74.14"/>
  789. <close/>
  790. <move x="69.86" y="0.02"/>
  791. <arc large-arc-flag="0" rx="3.4" ry="3.4" sweep-flag="1" x="73.27" x-axis-rotation="0" y="3.42"/>
  792. <line x="73.27" y="23.04"/>
  793. <arc large-arc-flag="0" rx="3.4" ry="3.4" sweep-flag="1" x="66.46" x-axis-rotation="0" y="23.04"/>
  794. <line x="66.46" y="11.6"/>
  795. <line x="47.74" y="30.21"/>
  796. <arc large-arc-flag="1" rx="3.4" ry="3.4" sweep-flag="1" x="42.95" x-axis-rotation="0" y="25.38"/>
  797. <line x="61.62" y="6.82"/>
  798. <line x="50.14" y="6.82"/>
  799. <arc large-arc-flag="1" rx="3.4" ry="3.4" sweep-flag="1" x="50.14" x-axis-rotation="0" y="0.02"/>
  800. <close/>
  801. <move x="3.4" y="74.14"/>
  802. <arc large-arc-flag="0" rx="3.4" ry="3.4" sweep-flag="1" x="0" x-axis-rotation="0" y="70.74"/>
  803. <line x="0" y="51.12"/>
  804. <arc large-arc-flag="0" rx="3.4" ry="3.4" sweep-flag="1" x="6.8" x-axis-rotation="0" y="51.12"/>
  805. <line x="6.8" y="62.56"/>
  806. <line x="25.52" y="43.95"/>
  807. <arc large-arc-flag="1" rx="3.4" ry="3.4" sweep-flag="1" x="30.32" x-axis-rotation="0" y="48.78"/>
  808. <line x="11.65" y="67.33"/>
  809. <line x="23.13" y="67.33"/>
  810. <arc large-arc-flag="1" rx="3.4" ry="3.4" sweep-flag="1" x="23.13" x-axis-rotation="0" y="74.14"/>
  811. <close/>
  812. <move x="3.4" y="0.02"/>
  813. <arc large-arc-flag="0" rx="3.4" ry="3.4" sweep-flag="0" x="0" x-axis-rotation="0" y="3.42"/>
  814. <line x="0" y="23.04"/>
  815. <arc large-arc-flag="0" rx="3.4" ry="3.4" sweep-flag="0" x="6.8" x-axis-rotation="0" y="23.04"/>
  816. <line x="6.8" y="11.6"/>
  817. <line x="25.52" y="30.2"/>
  818. <arc large-arc-flag="1" rx="3.4" ry="3.4" sweep-flag="0" x="30.32" x-axis-rotation="0" y="25.38"/>
  819. <line x="11.65" y="6.82"/>
  820. <line x="23.13" y="6.82"/>
  821. <arc large-arc-flag="1" rx="3.4" ry="3.4" sweep-flag="0" x="23.13" x-axis-rotation="0" y="0.02"/>
  822. <close/>
  823. </path>
  824. <fill/>
  825. </foreground>
  826. </shape>
  827. <shape aspect="variable" h="99.43" name="icon22" strokewidth="inherit" w="92.07">
  828. <connections/>
  829. <foreground>
  830. <path>
  831. <move x="46.3" y="0"/>
  832. <line x="25.2" y="11.86"/>
  833. <line x="46" y="24.18"/>
  834. <line x="67.23" y="12.12"/>
  835. <close/>
  836. <move x="22.61" y="14.27"/>
  837. <line x="22.61" y="41.24"/>
  838. <line x="44.28" y="53.84"/>
  839. <line x="44.28" y="27.11"/>
  840. <close/>
  841. <move x="69.29" y="14.87"/>
  842. <line x="47.68" y="27.13"/>
  843. <line x="47.68" y="54.19"/>
  844. <line x="69.29" y="41.32"/>
  845. <close/>
  846. <move x="21.62" y="44.61"/>
  847. <line x="1.9" y="56.97"/>
  848. <line x="22.54" y="69.17"/>
  849. <line x="42.96" y="57.01"/>
  850. <close/>
  851. <move x="70.36" y="44.64"/>
  852. <line x="49.66" y="56.97"/>
  853. <line x="69.55" y="68.53"/>
  854. <line x="89.94" y="56.84"/>
  855. <close/>
  856. <move x="92.07" y="59.54"/>
  857. <line x="71.24" y="71.48"/>
  858. <line x="71.24" y="99.13"/>
  859. <line x="92.07" y="87.14"/>
  860. <close/>
  861. <move x="47.68" y="59.76"/>
  862. <line x="47.68" y="87.93"/>
  863. <line x="67.84" y="99.43"/>
  864. <line x="67.84" y="71.47"/>
  865. <close/>
  866. <move x="0" y="59.8"/>
  867. <line x="0" y="87.14"/>
  868. <line x="20.84" y="99.23"/>
  869. <line x="20.84" y="72.12"/>
  870. <close/>
  871. <move x="44.28" y="60.18"/>
  872. <line x="24.24" y="72.11"/>
  873. <line x="24.24" y="99.35"/>
  874. <line x="44.28" y="88.26"/>
  875. <close/>
  876. </path>
  877. <fill/>
  878. </foreground>
  879. </shape>
  880. <shape aspect="variable" h="98.77" name="icon23" strokewidth="inherit" w="85.95">
  881. <connections/>
  882. <foreground>
  883. <path>
  884. <move x="75.22" y="0"/>
  885. <curve x1="74.48" x2="73.79" x3="73.37" y1="0" y2="0.36" y3="0.96"/>
  886. <line x="62.23" y="16.68"/>
  887. <line x="18.16" y="16.68"/>
  888. <curve x1="14.23" x2="10.91" x3="10.91" y1="16.68" y2="20" y3="23.93"/>
  889. <line x="10.91" y="39.21"/>
  890. <line x="20.37" y="39.21"/>
  891. <line x="20.37" y="26.13"/>
  892. <line x="59.95" y="26.13"/>
  893. <line x="59.95" y="83.64"/>
  894. <line x="20.37" y="83.64"/>
  895. <line x="20.37" y="70.65"/>
  896. <line x="10.91" y="70.65"/>
  897. <line x="10.91" y="85.84"/>
  898. <curve x1="10.91" x2="14.23" x3="18.16" y1="89.78" y2="93.09" y3="93.09"/>
  899. <line x="64.21" y="93.09"/>
  900. <line x="74.6" y="98.52"/>
  901. <curve x1="74.93" x2="75.29" x3="75.65" y1="98.68" y2="98.77" y3="98.77"/>
  902. <line x="83.68" y="98.77"/>
  903. <curve x1="84.93" x2="85.95" x3="85.95" y1="98.77" y2="97.76" y3="96.5"/>
  904. <line x="85.95" y="2.27"/>
  905. <curve x1="85.95" x2="84.93" x3="83.68" y1="1.01" y2="0" y3="0"/>
  906. <close/>
  907. <move x="28.5" y="32.59"/>
  908. <curve x1="27.97" x2="27.54" x3="27.54" y1="32.58" y2="33.01" y3="33.53"/>
  909. <line x="27.54" y="43.97"/>
  910. <line x="1.31" y="43.97"/>
  911. <curve x1="0.58" x2="0" x3="0" y1="43.97" y2="44.56" y3="45.28"/>
  912. <line x="0" y="64.65"/>
  913. <curve x1="0" x2="0.58" x3="1.31" y1="65.38" y2="65.96" y3="65.96"/>
  914. <line x="27.54" y="65.96"/>
  915. <line x="27.54" y="76.32"/>
  916. <curve x1="27.54" x2="28.5" x3="29.11" y1="77.14" y2="77.57" y3="77.04"/>
  917. <line x="53.64" y="55.64"/>
  918. <curve x1="54.07" x2="54.07" x3="53.64" y1="55.26" y2="54.59" y3="54.21"/>
  919. <line x="29.11" y="32.82"/>
  920. <curve x1="28.94" x2="28.72" x3="28.5" y1="32.67" y2="32.59" y3="32.59"/>
  921. <close/>
  922. </path>
  923. <fill/>
  924. </foreground>
  925. </shape>
  926. <shape aspect="variable" h="61.17" name="icon24" strokewidth="inherit" w="99.01">
  927. <connections/>
  928. <foreground>
  929. <path>
  930. <move x="0" y="0"/>
  931. <line x="0" y="61.17"/>
  932. <line x="98.93" y="61.17"/>
  933. <line x="98.93" y="57.2"/>
  934. <line x="3.97" y="57.2"/>
  935. <line x="3.97" y="39.75"/>
  936. <line x="12.3" y="26.23"/>
  937. <line x="24.95" y="50.69"/>
  938. <line x="29.09" y="42.26"/>
  939. <line x="40.92" y="49.9"/>
  940. <line x="49.61" y="25.12"/>
  941. <line x="59.7" y="41.53"/>
  942. <line x="69.52" y="32.62"/>
  943. <line x="75.16" y="51.72"/>
  944. <line x="99.01" y="6.79"/>
  945. <line x="94.34" y="4.3"/>
  946. <line x="76.57" y="37.79"/>
  947. <line x="72.21" y="23.05"/>
  948. <line x="60.87" y="33.33"/>
  949. <line x="48.29" y="12.88"/>
  950. <line x="38.15" y="41.81"/>
  951. <line x="26.96" y="34.58"/>
  952. <line x="24.82" y="38.93"/>
  953. <line x="12.7" y="15.49"/>
  954. <line x="3.97" y="29.67"/>
  955. <line x="3.97" y="0"/>
  956. <close/>
  957. </path>
  958. <fill/>
  959. </foreground>
  960. </shape>
  961. <shape aspect="variable" h="80.22" name="icon25" strokewidth="inherit" w="98.87">
  962. <connections/>
  963. <foreground>
  964. <path>
  965. <move x="0" y="0"/>
  966. <line x="0" y="80.22"/>
  967. <line x="98.87" y="80.22"/>
  968. <line x="98.87" y="0"/>
  969. <close/>
  970. <move x="2.95" y="13.57"/>
  971. <line x="12.47" y="13.57"/>
  972. <line x="12.47" y="24.36"/>
  973. <line x="2.95" y="24.36"/>
  974. <close/>
  975. <move x="15.5" y="13.57"/>
  976. <line x="30.14" y="13.57"/>
  977. <line x="30.14" y="24.36"/>
  978. <line x="15.5" y="24.36"/>
  979. <close/>
  980. <move x="33.17" y="13.57"/>
  981. <line x="47.82" y="13.57"/>
  982. <line x="47.82" y="24.36"/>
  983. <line x="33.17" y="24.36"/>
  984. <close/>
  985. <move x="50.84" y="13.57"/>
  986. <line x="65.49" y="13.57"/>
  987. <line x="65.49" y="24.36"/>
  988. <line x="50.84" y="24.36"/>
  989. <close/>
  990. <move x="68.51" y="13.57"/>
  991. <line x="83.16" y="13.57"/>
  992. <line x="83.16" y="24.36"/>
  993. <line x="68.51" y="24.36"/>
  994. <close/>
  995. <move x="86.18" y="13.57"/>
  996. <line x="95.71" y="13.57"/>
  997. <line x="95.71" y="24.36"/>
  998. <line x="86.18" y="24.36"/>
  999. <close/>
  1000. <move x="2.95" y="27.38"/>
  1001. <line x="12.47" y="27.38"/>
  1002. <line x="12.47" y="43.31"/>
  1003. <line x="2.95" y="43.31"/>
  1004. <close/>
  1005. <move x="15.5" y="27.38"/>
  1006. <line x="30.14" y="27.38"/>
  1007. <line x="30.14" y="43.31"/>
  1008. <line x="15.5" y="43.31"/>
  1009. <close/>
  1010. <move x="33.17" y="27.38"/>
  1011. <line x="47.82" y="27.38"/>
  1012. <line x="47.82" y="43.31"/>
  1013. <line x="33.17" y="43.31"/>
  1014. <close/>
  1015. <move x="50.84" y="27.38"/>
  1016. <line x="65.49" y="27.38"/>
  1017. <line x="65.49" y="43.31"/>
  1018. <line x="50.84" y="43.31"/>
  1019. <close/>
  1020. <move x="68.51" y="27.38"/>
  1021. <line x="83.16" y="27.38"/>
  1022. <line x="83.16" y="43.31"/>
  1023. <line x="68.51" y="43.31"/>
  1024. <close/>
  1025. <move x="86.18" y="27.38"/>
  1026. <line x="95.71" y="27.38"/>
  1027. <line x="95.71" y="43.31"/>
  1028. <line x="86.18" y="43.31"/>
  1029. <close/>
  1030. <move x="2.95" y="46.33"/>
  1031. <line x="12.47" y="46.33"/>
  1032. <line x="12.47" y="62.26"/>
  1033. <line x="2.95" y="62.26"/>
  1034. <close/>
  1035. <move x="15.5" y="46.33"/>
  1036. <line x="30.14" y="46.33"/>
  1037. <line x="30.14" y="62.26"/>
  1038. <line x="15.5" y="62.26"/>
  1039. <close/>
  1040. <move x="33.17" y="46.33"/>
  1041. <line x="47.82" y="46.33"/>
  1042. <line x="47.82" y="62.26"/>
  1043. <line x="33.17" y="62.26"/>
  1044. <close/>
  1045. <move x="50.84" y="46.33"/>
  1046. <line x="65.49" y="46.33"/>
  1047. <line x="65.49" y="62.26"/>
  1048. <line x="50.84" y="62.26"/>
  1049. <close/>
  1050. <move x="68.51" y="46.33"/>
  1051. <line x="83.16" y="46.33"/>
  1052. <line x="83.16" y="62.26"/>
  1053. <line x="68.51" y="62.26"/>
  1054. <close/>
  1055. <move x="86.18" y="46.33"/>
  1056. <line x="95.71" y="46.33"/>
  1057. <line x="95.71" y="62.26"/>
  1058. <line x="86.18" y="62.26"/>
  1059. <close/>
  1060. <move x="2.95" y="65.29"/>
  1061. <line x="12.47" y="65.29"/>
  1062. <line x="12.47" y="76.07"/>
  1063. <line x="2.95" y="76.07"/>
  1064. <close/>
  1065. <move x="15.5" y="65.29"/>
  1066. <line x="30.14" y="65.29"/>
  1067. <line x="30.14" y="76.07"/>
  1068. <line x="15.5" y="76.07"/>
  1069. <close/>
  1070. <move x="33.17" y="65.29"/>
  1071. <line x="47.82" y="65.29"/>
  1072. <line x="47.82" y="76.07"/>
  1073. <line x="33.17" y="76.07"/>
  1074. <close/>
  1075. <move x="50.84" y="65.29"/>
  1076. <line x="65.49" y="65.29"/>
  1077. <line x="65.49" y="76.07"/>
  1078. <line x="50.84" y="76.07"/>
  1079. <close/>
  1080. <move x="68.51" y="65.29"/>
  1081. <line x="83.16" y="65.29"/>
  1082. <line x="83.16" y="76.07"/>
  1083. <line x="68.51" y="76.07"/>
  1084. <close/>
  1085. <move x="86.18" y="65.29"/>
  1086. <line x="95.71" y="65.29"/>
  1087. <line x="95.71" y="76.07"/>
  1088. <line x="86.18" y="76.07"/>
  1089. <close/>
  1090. </path>
  1091. <fill/>
  1092. </foreground>
  1093. </shape>
  1094. <shape aspect="variable" h="52.78" name="icon26" strokewidth="inherit" w="74.2">
  1095. <connections/>
  1096. <foreground>
  1097. <path>
  1098. <move x="52.6" y="9.31"/>
  1099. <curve x1="64.53" x2="74.2" x3="74.19" y1="9.31" y2="16.9" y3="26.25"/>
  1100. <curve x1="74.19" x2="66.42" x3="56.21" y1="34.63" y2="41.6" y3="42.94"/>
  1101. <curve x1="56.26" x2="57.71" x3="59.38" y1="47.91" y2="50.78" y3="52.78"/>
  1102. <curve x1="55.6" x2="50.62" x3="49.48" y1="52.15" y2="48.83" y3="43"/>
  1103. <curve x1="44.5" x2="40.07" x3="36.8" y1="42.44" y2="40.54" y3="37.78"/>
  1104. <curve x1="42.09" x2="48.31" x3="51.3" y1="36.07" y2="31.97" y3="25.18"/>
  1105. <curve x1="53.13" x2="53.37" x3="49.77" y1="20.36" y2="15.1" y3="9.46"/>
  1106. <curve x1="50.7" x2="51.64" x3="52.6" y1="9.36" y2="9.31" y3="9.31"/>
  1107. <close/>
  1108. <move x="23.62" y="0"/>
  1109. <curve x1="10.58" x2="0" x3="0" y1="0" y2="8.13" y3="18.16"/>
  1110. <curve x1="0" x2="8.51" x3="19.67" y1="27.15" y2="34.62" y3="36.06"/>
  1111. <curve x1="19.62" x2="18.03" x3="16.21" y1="41.38" y2="44.47" y3="46.61"/>
  1112. <curve x1="20.34" x2="25.79" x3="27.04" y1="45.93" y2="42.38" y3="36.13"/>
  1113. <curve x1="38.47" x2="47.25" x3="47.25" y1="34.85" y2="27.29" y3="18.16"/>
  1114. <curve x1="47.25" x2="36.67" x3="23.62" y1="8.13" y2="0" y3="0"/>
  1115. <close/>
  1116. <move x="12.62" y="14.85"/>
  1117. <curve x1="14.66" x2="16.3" x3="16.3" y1="14.85" y2="16.5" y3="18.53"/>
  1118. <curve x1="16.3" x2="14.66" x3="12.62" y1="20.56" y2="22.21" y3="22.21"/>
  1119. <curve x1="10.59" x2="8.94" x3="8.94" y1="22.21" y2="20.56" y3="18.53"/>
  1120. <curve x1="8.94" x2="10.59" x3="12.62" y1="16.5" y2="14.85" y3="14.85"/>
  1121. <close/>
  1122. <move x="23.57" y="14.85"/>
  1123. <curve x1="25.6" x2="27.25" x3="27.25" y1="14.85" y2="16.5" y3="18.53"/>
  1124. <curve x1="27.25" x2="25.6" x3="23.57" y1="20.56" y2="22.21" y3="22.21"/>
  1125. <curve x1="21.53" x2="19.88" x3="19.88" y1="22.21" y2="20.56" y3="18.53"/>
  1126. <curve x1="19.88" x2="21.53" x3="23.57" y1="16.5" y2="14.85" y3="14.85"/>
  1127. <close/>
  1128. <move x="34.51" y="14.85"/>
  1129. <curve x1="36.54" x2="38.19" x3="38.19" y1="14.85" y2="16.5" y3="18.53"/>
  1130. <curve x1="38.19" x2="36.54" x3="34.51" y1="20.56" y2="22.21" y3="22.21"/>
  1131. <curve x1="32.47" x2="30.83" x3="30.83" y1="22.21" y2="20.56" y3="18.53"/>
  1132. <curve x1="30.83" x2="32.47" x3="34.51" y1="16.5" y2="14.85" y3="14.85"/>
  1133. <close/>
  1134. </path>
  1135. <fill/>
  1136. </foreground>
  1137. </shape>
  1138. <shape aspect="variable" h="99.77" name="icon27" strokewidth="inherit" w="100.66">
  1139. <connections/>
  1140. <foreground>
  1141. <path>
  1142. <move x="53.46" y="11.36"/>
  1143. <line x="11.75" y="53.02"/>
  1144. <line x="55.01" y="96.22"/>
  1145. <curve x1="58.52" x2="62.59" x3="65.89" y1="99.77" y2="99.48" y3="96.22"/>
  1146. <line x="97.16" y="65.01"/>
  1147. <curve x1="99" x2="100.66" x3="97" y1="62.94" y2="58.72" y3="54.87"/>
  1148. <close/>
  1149. <move x="56.23" y="35.17"/>
  1150. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="1" x="57.86" x-axis-rotation="0" y="35.86"/>
  1151. <line x="81.88" y="59.97"/>
  1152. <arc large-arc-flag="1" rx="2.27" ry="2.27" sweep-flag="1" x="78.67" x-axis-rotation="0" y="63.17"/>
  1153. <line x="54.64" y="39.06"/>
  1154. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="1" x="56.23" x-axis-rotation="0" y="35.17"/>
  1155. <close/>
  1156. <move x="47.06" y="44.26"/>
  1157. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="1" x="48.69" x-axis-rotation="0" y="44.94"/>
  1158. <line x="72.71" y="69.06"/>
  1159. <arc large-arc-flag="1" rx="2.27" ry="2.27" sweep-flag="1" x="69.5" x-axis-rotation="0" y="72.26"/>
  1160. <line x="45.48" y="48.15"/>
  1161. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="1" x="47.06" x-axis-rotation="0" y="44.26"/>
  1162. <close/>
  1163. <move x="37.9" y="53.34"/>
  1164. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="1" x="39.52" x-axis-rotation="0" y="54.03"/>
  1165. <line x="63.55" y="78.14"/>
  1166. <arc large-arc-flag="1" rx="2.27" ry="2.27" sweep-flag="1" x="60.33" x-axis-rotation="0" y="81.34"/>
  1167. <line x="36.31" y="57.23"/>
  1168. <arc large-arc-flag="0" rx="2.27" ry="2.27" sweep-flag="1" x="37.9" x-axis-rotation="0" y="53.34"/>
  1169. <close/>
  1170. <move x="4.07" y="0"/>
  1171. <arc large-arc-flag="0" rx="3.78" ry="3.78" sweep-flag="0" x="1.46" x-axis-rotation="0" y="6.5"/>
  1172. <line x="9.22" y="14.22"/>
  1173. <line x="9.22" y="50.47"/>
  1174. <line x="50.81" y="8.94"/>
  1175. <line x="14.64" y="8.94"/>
  1176. <line x="6.78" y="1.14"/>
  1177. <arc large-arc-flag="0" rx="3.78" ry="3.78" sweep-flag="0" x="4.07" x-axis-rotation="0" y="0"/>
  1178. <close/>
  1179. <move x="21.33" y="15.04"/>
  1180. <arc large-arc-flag="0" rx="5.94" ry="5.94" sweep-flag="1" x="27.28" x-axis-rotation="0" y="20.98"/>
  1181. <arc large-arc-flag="0" rx="5.94" ry="5.94" sweep-flag="1" x="21.33" x-axis-rotation="0" y="26.93"/>
  1182. <arc large-arc-flag="0" rx="5.94" ry="5.94" sweep-flag="1" x="15.39" x-axis-rotation="0" y="20.98"/>
  1183. <arc large-arc-flag="0" rx="5.94" ry="5.94" sweep-flag="1" x="15.44" x-axis-rotation="0" y="20.27"/>
  1184. <arc large-arc-flag="0" rx="3.78" ry="3.78" sweep-flag="0" x="20.67" x-axis-rotation="0" y="15.09"/>
  1185. <arc large-arc-flag="0" rx="5.94" ry="5.94" sweep-flag="1" x="21.33" x-axis-rotation="0" y="15.04"/>
  1186. <close/>
  1187. </path>
  1188. <fill/>
  1189. </foreground>
  1190. </shape>
  1191. <shape aspect="variable" h="98.81" name="icon28" strokewidth="inherit" w="93.28">
  1192. <connections/>
  1193. <foreground>
  1194. <path>
  1195. <move x="65.31" y="0"/>
  1196. <line x="58.37" y="5.82"/>
  1197. <line x="62.69" y="5.82"/>
  1198. <line x="62.69" y="16.17"/>
  1199. <line x="18.82" y="16.17"/>
  1200. <line x="18.82" y="9.16"/>
  1201. <line x="23.19" y="9.16"/>
  1202. <line x="16.25" y="3.35"/>
  1203. <line x="9.31" y="9.16"/>
  1204. <line x="13.53" y="9.16"/>
  1205. <line x="13.53" y="16.17"/>
  1206. <line x="5.82" y="16.17"/>
  1207. <line x="5.82" y="11.91"/>
  1208. <line x="0" y="18.85"/>
  1209. <line x="5.82" y="25.8"/>
  1210. <line x="5.82" y="21.46"/>
  1211. <line x="13.53" y="21.46"/>
  1212. <line x="13.53" y="53.61"/>
  1213. <line x="43.94" y="53.61"/>
  1214. <line x="43.94" y="67.22"/>
  1215. <line x="5.88" y="67.22"/>
  1216. <line x="5.88" y="62.96"/>
  1217. <line x="0.06" y="69.9"/>
  1218. <line x="5.88" y="76.84"/>
  1219. <line x="5.88" y="72.51"/>
  1220. <line x="43.94" y="72.51"/>
  1221. <line x="43.94" y="89.25"/>
  1222. <line x="17.36" y="89.25"/>
  1223. <line x="17.36" y="84.93"/>
  1224. <line x="11.54" y="91.87"/>
  1225. <line x="17.36" y="98.81"/>
  1226. <line x="17.36" y="94.54"/>
  1227. <line x="49.23" y="94.54"/>
  1228. <line x="49.23" y="72.51"/>
  1229. <line x="87.46" y="72.51"/>
  1230. <line x="87.46" y="76.85"/>
  1231. <line x="93.28" y="69.91"/>
  1232. <line x="87.46" y="62.97"/>
  1233. <line x="87.46" y="67.22"/>
  1234. <line x="49.23" y="67.22"/>
  1235. <line x="49.23" y="53.61"/>
  1236. <line x="81.73" y="53.61"/>
  1237. <line x="81.73" y="58"/>
  1238. <line x="87.55" y="51.06"/>
  1239. <line x="81.73" y="44.12"/>
  1240. <line x="81.73" y="48.31"/>
  1241. <line x="67.98" y="48.31"/>
  1242. <line x="67.98" y="33.46"/>
  1243. <line x="87.43" y="33.46"/>
  1244. <line x="87.43" y="37.72"/>
  1245. <line x="93.24" y="30.78"/>
  1246. <line x="87.43" y="23.84"/>
  1247. <line x="87.43" y="28.17"/>
  1248. <line x="67.98" y="28.17"/>
  1249. <line x="67.98" y="5.82"/>
  1250. <line x="72.25" y="5.82"/>
  1251. <close/>
  1252. <move x="18.82" y="21.46"/>
  1253. <line x="62.69" y="21.46"/>
  1254. <line x="62.69" y="28.17"/>
  1255. <line x="43.94" y="28.17"/>
  1256. <line x="43.94" y="48.31"/>
  1257. <line x="18.82" y="48.31"/>
  1258. <line x="18.82" y="39.38"/>
  1259. <line x="31.87" y="39.38"/>
  1260. <line x="31.87" y="43.64"/>
  1261. <line x="37.68" y="36.7"/>
  1262. <line x="31.87" y="29.76"/>
  1263. <line x="31.87" y="34.09"/>
  1264. <line x="18.82" y="34.09"/>
  1265. <close/>
  1266. <move x="49.23" y="33.46"/>
  1267. <line x="62.69" y="33.46"/>
  1268. <line x="62.69" y="48.31"/>
  1269. <line x="49.23" y="48.31"/>
  1270. <close/>
  1271. </path>
  1272. <fill/>
  1273. </foreground>
  1274. </shape>
  1275. <shape aspect="variable" h="62.93" name="icon29" strokewidth="inherit" w="75.14">
  1276. <connections/>
  1277. <foreground>
  1278. <path>
  1279. <move x="31.32" y="0.09"/>
  1280. <arc large-arc-flag="0" rx="6.24" ry="6.24" sweep-flag="0" x="27.04" x-axis-rotation="0" y="2"/>
  1281. <line x="2.4" y="26.94"/>
  1282. <arc large-arc-flag="0" rx="6.24" ry="6.24" sweep-flag="0" x="2.41" x-axis-rotation="0" y="35.72"/>
  1283. <line x="27.14" y="60.66"/>
  1284. <arc large-arc-flag="1" rx="6.24" ry="6.24" sweep-flag="0" x="36" x-axis-rotation="0" y="51.87"/>
  1285. <line x="21.8" y="37.56"/>
  1286. <line x="68.54" y="37.56"/>
  1287. <arc large-arc-flag="1" rx="6.24" ry="6.24" sweep-flag="0" x="68.54" x-axis-rotation="0" y="25.09"/>
  1288. <line x="21.77" y="25.09"/>
  1289. <line x="35.92" y="10.77"/>
  1290. <arc large-arc-flag="0" rx="6.24" ry="6.24" sweep-flag="0" x="31.32" x-axis-rotation="0" y="0.09"/>
  1291. <close/>
  1292. </path>
  1293. <fill/>
  1294. </foreground>
  1295. </shape>
  1296. <shape aspect="variable" h="97.76" name="icon3" strokewidth="inherit" w="88.27">
  1297. <connections/>
  1298. <foreground>
  1299. <path>
  1300. <move x="6.22" y="52.51"/>
  1301. <curve x1="2.78" x2="0" x3="0" y1="52.51" y2="55.28" y3="58.73"/>
  1302. <line x="0" y="81.06"/>
  1303. <curve x1="0" x2="2.78" x3="6.22" y1="84.51" y2="87.28" y3="87.28"/>
  1304. <line x="71.81" y="87.28"/>
  1305. <curve x1="75.26" x2="78.03" x3="78.03" y1="87.28" y2="84.51" y3="81.06"/>
  1306. <line x="78.03" y="58.73"/>
  1307. <curve x1="78.03" x2="75.26" x3="71.81" y1="55.28" y2="52.51" y3="52.51"/>
  1308. <close/>
  1309. <move x="40.42" y="58.91"/>
  1310. <curve x1="43.59" x2="46.12" x3="48.01" y1="58.91" y2="59.9" y3="61.89"/>
  1311. <curve x1="49.92" x2="50.87" x3="50.87" y1="63.88" y2="66.65" y3="70.19"/>
  1312. <curve x1="50.87" x2="49.93" x3="48.04" y1="73.7" y2="76.46" y3="78.44"/>
  1313. <curve x1="46.16" x2="43.64" x3="40.48" y1="80.42" y2="81.41" y3="81.41"/>
  1314. <curve x1="37.29" x2="34.75" x3="32.87" y1="81.41" y2="80.43" y3="78.46"/>
  1315. <curve x1="30.98" x2="30.04" x3="30.04" y1="76.48" y2="73.76" y3="70.29"/>
  1316. <curve x1="30.04" x2="30.37" x3="31.02" y1="68.08" y2="66.21" y3="64.71"/>
  1317. <curve x1="31.51" x2="32.17" x3="33.01" y1="63.6" y2="62.61" y3="61.73"/>
  1318. <curve x1="33.86" x2="34.79" x3="35.79" y1="60.85" y2="60.19" y3="59.77"/>
  1319. <curve x1="37.13" x2="38.68" x3="40.42" y1="59.19" y2="58.91" y3="58.91"/>
  1320. <close/>
  1321. <move x="63.52" y="58.91"/>
  1322. <curve x1="66.15" x2="68.28" x3="69.92" y1="58.91" y2="59.69" y3="61.27"/>
  1323. <curve x1="70.9" x2="71.63" x3="72.12" y1="62.2" y2="63.53" y3="65.27"/>
  1324. <line x="67.83" y="66.31"/>
  1325. <curve x1="67.57" x2="67.04" x3="66.23" y1="65.19" y2="64.3" y3="63.64"/>
  1326. <curve x1="65.43" x2="64.46" x3="63.3" y1="62.99" y2="62.66" y3="62.66"/>
  1327. <curve x1="61.71" x2="60.42" x3="59.42" y1="62.66" y2="63.24" y3="64.4"/>
  1328. <curve x1="58.44" x2="57.94" x3="57.94" y1="65.56" y2="67.43" y3="70.03"/>
  1329. <curve x1="57.94" x2="58.43" x3="59.41" y1="72.78" y2="74.74" y3="75.91"/>
  1330. <curve x1="60.38" x2="61.65" x3="63.21" y1="77.07" y2="77.66" y3="77.66"/>
  1331. <curve x1="64.37" x2="65.36" x3="66.19" y1="77.66" y2="77.29" y3="76.54"/>
  1332. <curve x1="67.02" x2="67.61" x3="67.97" y1="75.8" y2="74.63" y3="73.04"/>
  1333. <line x="72.18" y="74.39"/>
  1334. <curve x1="71.54" x2="70.46" x3="68.96" y1="76.77" y2="78.53" y3="79.69"/>
  1335. <curve x1="67.46" x2="65.56" x3="63.26" y1="80.84" y2="81.41" y3="81.41"/>
  1336. <curve x1="60.41" x2="58.06" x3="56.23" y1="81.41" y2="80.43" y3="78.46"/>
  1337. <curve x1="54.39" x2="53.47" x3="53.47" y1="76.48" y2="73.78" y3="70.35"/>
  1338. <curve x1="53.47" x2="54.4" x3="56.24" y1="66.73" y2="63.92" y3="61.92"/>
  1339. <curve x1="58.09" x2="60.52" x3="63.52" y1="59.91" y2="58.91" y3="58.91"/>
  1340. <close/>
  1341. <move x="9.22" y="59.28"/>
  1342. <line x="17.15" y="59.28"/>
  1343. <curve x1="18.94" x2="20.3" x3="21.24" y1="59.28" y2="59.42" y3="59.69"/>
  1344. <curve x1="22.5" x2="23.57" x3="24.47" y1="60.07" y2="60.74" y3="61.7"/>
  1345. <curve x1="25.37" x2="26.05" x3="26.52" y1="62.66" y2="63.83" y3="65.23"/>
  1346. <curve x1="26.99" x2="27.23" x3="27.23" y1="66.62" y2="68.33" y3="70.37"/>
  1347. <curve x1="27.23" x2="27.01" x3="26.57" y1="72.16" y2="73.7" y3="75"/>
  1348. <curve x1="26.03" x2="25.26" x3="24.27" y1="76.58" y2="77.87" y3="78.85"/>
  1349. <curve x1="23.52" x2="22.5" x3="21.22" y1="79.59" y2="80.17" y3="80.58"/>
  1350. <curve x1="20.26" x2="18.98" x3="17.38" y1="80.89" y2="81.04" y3="81.04"/>
  1351. <line x="9.22" y="81.04"/>
  1352. <close/>
  1353. <move x="40.47" y="62.66"/>
  1354. <curve x1="38.68" x2="37.24" x3="36.15" y1="62.66" y2="63.29" y3="64.53"/>
  1355. <curve x1="35.05" x2="34.51" x3="34.51" y1="65.77" y2="67.64" y3="70.14"/>
  1356. <curve x1="34.51" x2="35.07" x3="36.19" y1="72.61" y2="74.48" y3="75.76"/>
  1357. <curve x1="37.31" x2="38.74" x3="40.47" y1="77.02" y2="77.66" y3="77.66"/>
  1358. <curve x1="42.2" x2="43.61" x3="44.71" y1="77.66" y2="77.03" y3="75.77"/>
  1359. <curve x1="45.83" x2="46.38" x3="46.38" y1="74.5" y2="72.61" y3="70.09"/>
  1360. <curve x1="46.38" x2="45.84" x3="44.76" y1="67.59" y2="65.73" y3="64.5"/>
  1361. <curve x1="43.69" x2="42.25" x3="40.47" y1="63.28" y2="62.66" y3="62.66"/>
  1362. <close/>
  1363. <move x="13.56" y="62.96"/>
  1364. <line x="13.56" y="77.37"/>
  1365. <line x="16.8" y="77.37"/>
  1366. <curve x1="18.01" x2="18.88" x3="19.42" y1="77.37" y2="77.31" y3="77.17"/>
  1367. <curve x1="20.12" x2="20.7" x3="21.16" y1="76.99" y2="76.69" y3="76.26"/>
  1368. <curve x1="21.63" x2="22.01" x3="22.3" y1="75.84" y2="75.14" y3="74.17"/>
  1369. <curve x1="22.6" x2="22.74" x3="22.74" y1="73.19" y2="71.86" y3="70.18"/>
  1370. <curve x1="22.74" x2="22.6" x3="22.3" y1="68.49" y2="67.2" y3="66.3"/>
  1371. <curve x1="22.01" x2="21.6" x3="21.07" y1="65.4" y2="64.7" y3="64.19"/>
  1372. <curve x1="20.55" x2="19.88" x3="19.07" y1="63.69" y2="63.35" y3="63.17"/>
  1373. <curve x1="18.46" x2="17.28" x3="15.51" y1="63.03" y2="62.96" y3="62.96"/>
  1374. <close/>
  1375. <move x="59.29" y="0.01"/>
  1376. <arc large-arc-flag="0" rx="2.83" ry="2.83" sweep-flag="0" x="58.88" x-axis-rotation="0" y="0.05"/>
  1377. <line x="21.77" y="0.05"/>
  1378. <curve x1="18.43" x2="15.37" x3="13.32" y1="0.05" y2="1.62" y3="4.1"/>
  1379. <curve x1="11.28" x2="10.17" x3="10.17" y1="6.59" y2="9.93" y3="13.65"/>
  1380. <line x="10.17" y="40.24"/>
  1381. <arc large-arc-flag="1" rx="2.83" ry="2.83" sweep-flag="0" x="15.84" x-axis-rotation="0" y="40.24"/>
  1382. <line x="15.84" y="13.65"/>
  1383. <curve x1="15.84" x2="16.61" x3="17.7" y1="11.06" y2="9.02" y3="7.7"/>
  1384. <curve x1="18.78" x2="20.1" x3="21.77" y1="6.38" y2="5.72" y3="5.72"/>
  1385. <line x="56.49" y="5.72"/>
  1386. <line x="56.49" y="21.72"/>
  1387. <curve x1="56.49" x2="62.27" x3="68.51" y1="28.63" y2="33.72" y3="33.72"/>
  1388. <line x="82.43" y="33.72"/>
  1389. <line x="82.43" y="84.73"/>
  1390. <curve x1="82.43" x2="79.18" x3="76.2" y1="89.25" y2="92.08" y3="92.08"/>
  1391. <line x="13" y="92.08"/>
  1392. <arc large-arc-flag="1" rx="2.83" ry="2.83" sweep-flag="0" x="13" x-axis-rotation="0" y="97.75"/>
  1393. <line x="76.2" y="97.75"/>
  1394. <curve x1="82.61" x2="88.1" x3="88.1" y1="97.75" y2="92.05" y3="84.73"/>
  1395. <line x="88.1" y="31.35"/>
  1396. <arc large-arc-flag="0" rx="2.83" ry="2.83" sweep-flag="0" x="87.1" x-axis-rotation="0" y="28.69"/>
  1397. <line x="61.64" y="1.21"/>
  1398. <arc large-arc-flag="0" rx="2.83" ry="2.83" sweep-flag="0" x="59.29" x-axis-rotation="0" y="0.01"/>
  1399. <close/>
  1400. <move x="62.16" y="10.11"/>
  1401. <line x="78.78" y="28.05"/>
  1402. <line x="68.51" y="28.05"/>
  1403. <curve x1="65.38" x2="62.16" x3="62.16" y1="28.05" y2="25.44" y3="21.72"/>
  1404. <close/>
  1405. </path>
  1406. <fill/>
  1407. </foreground>
  1408. </shape>
  1409. <shape aspect="variable" h="71.46" name="icon30" strokewidth="inherit" w="73.92">
  1410. <connections/>
  1411. <foreground>
  1412. <path>
  1413. <move x="51.62" y="0"/>
  1414. <line x="51.63" y="11.75"/>
  1415. <curve x1="63.18" x2="73.92" x3="73.92" y1="11.75" y2="20.74" y3="32.38"/>
  1416. <curve x1="73.92" x2="63.05" x3="55.51" y1="45.7" y2="51.59" y3="51.59"/>
  1417. <curve x1="53.76" x2="52.82" x3="51.84" y1="51.59" y2="51.55" y3="51.26"/>
  1418. <curve x1="58.69" x2="64.12" x3="64.12" y1="51.21" y2="45.38" y3="38.68"/>
  1419. <curve x1="64.12" x2="57.46" x3="51.62" y1="31.28" y2="25.96" y3="26.26"/>
  1420. <line x="51.62" y="39.35"/>
  1421. <line x="25.98" y="19.67"/>
  1422. <close/>
  1423. <move x="22.3" y="71.46"/>
  1424. <line x="22.29" y="59.71"/>
  1425. <curve x1="10.74" x2="0" x3="0" y1="59.71" y2="50.72" y3="39.08"/>
  1426. <curve x1="0" x2="10.87" x3="18.41" y1="25.76" y2="19.87" y3="19.87"/>
  1427. <curve x1="20.16" x2="21.1" x3="22.08" y1="19.87" y2="19.9" y3="20.2"/>
  1428. <curve x1="15.23" x2="9.8" x3="9.8" y1="20.25" y2="26.08" y3="32.77"/>
  1429. <curve x1="9.8" x2="16.46" x3="22.31" y1="40.17" y2="45.5" y3="45.2"/>
  1430. <line x="22.3" y="32.1"/>
  1431. <line x="47.94" y="51.79"/>
  1432. <close/>
  1433. </path>
  1434. <fill/>
  1435. </foreground>
  1436. </shape>
  1437. <shape aspect="variable" h="73.74" name="icon4" strokewidth="inherit" w="73.81">
  1438. <connections/>
  1439. <foreground>
  1440. <path>
  1441. <move x="27.99" y="12.07"/>
  1442. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="25.89" x-axis-rotation="0" y="12.94"/>
  1443. <line x="13.02" y="25.76"/>
  1444. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="12.15" x-axis-rotation="0" y="27.87"/>
  1445. <line x="12.15" y="45.94"/>
  1446. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="13.02" x-axis-rotation="0" y="48.04"/>
  1447. <line x="25.76" y="60.79"/>
  1448. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="27.86" x-axis-rotation="0" y="61.67"/>
  1449. <line x="45.98" y="61.67"/>
  1450. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="48.09" x-axis-rotation="0" y="60.79"/>
  1451. <line x="60.84" y="48.02"/>
  1452. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="61.71" x-axis-rotation="0" y="45.92"/>
  1453. <line x="61.71" y="27.85"/>
  1454. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="60.84" x-axis-rotation="0" y="25.75"/>
  1455. <line x="48.09" y="12.95"/>
  1456. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="45.98" x-axis-rotation="0" y="12.07"/>
  1457. <close/>
  1458. <move x="26.94" y="22.62"/>
  1459. <arc large-arc-flag="0" rx="4.25" ry="4.25" sweep-flag="1" x="30" x-axis-rotation="0" y="23.91"/>
  1460. <line x="36.93" y="30.84"/>
  1461. <line x="43.86" y="23.91"/>
  1462. <arc large-arc-flag="0" rx="4.25" ry="4.25" sweep-flag="1" x="46.78" x-axis-rotation="0" y="22.62"/>
  1463. <arc large-arc-flag="0" rx="4.25" ry="4.25" sweep-flag="1" x="49.87" x-axis-rotation="0" y="29.92"/>
  1464. <line x="42.94" y="36.85"/>
  1465. <line x="49.87" y="43.78"/>
  1466. <arc large-arc-flag="1" rx="4.25" ry="4.25" sweep-flag="1" x="43.86" x-axis-rotation="0" y="49.8"/>
  1467. <line x="36.93" y="42.87"/>
  1468. <line x="30" y="49.8"/>
  1469. <arc large-arc-flag="1" rx="4.25" ry="4.25" sweep-flag="1" x="23.98" x-axis-rotation="0" y="43.78"/>
  1470. <line x="30.92" y="36.85"/>
  1471. <line x="23.98" y="29.92"/>
  1472. <arc large-arc-flag="0" rx="4.25" ry="4.25" sweep-flag="1" x="26.94" x-axis-rotation="0" y="22.62"/>
  1473. <close/>
  1474. <move x="25.31" y="0"/>
  1475. <curve x1="23.78" x2="21.61" x3="19.87" y1="0" y2="0.03" y3="1.75"/>
  1476. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="19.86" x-axis-rotation="0" y="1.76"/>
  1477. <line x="2.67" y="18.9"/>
  1478. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="2.62" x-axis-rotation="0" y="18.96"/>
  1479. <curve x1="1.19" x2="0.08" x3="0.08" y1="20.46" y2="22.27" y3="24.22"/>
  1480. <line x="0.05" y="47.96"/>
  1481. <line x="0.05" y="47.89"/>
  1482. <curve x1="0" x2="0.15" x3="1.61" y1="49.91" y2="51.97" y3="53.61"/>
  1483. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="1.73" x-axis-rotation="0" y="53.73"/>
  1484. <line x="18.34" y="70.37"/>
  1485. <line x="18.22" y="70.24"/>
  1486. <curve x1="19.82" x2="21.91" x3="24.71" y1="72.04" y2="73.74" y3="73.74"/>
  1487. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="24.71" x-axis-rotation="0" y="73.74"/>
  1488. <line x="48.24" y="73.72"/>
  1489. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="48.3" x-axis-rotation="0" y="73.72"/>
  1490. <curve x1="50.3" x2="52.62" x3="54.33" y1="73.68" y2="73.23" y3="71.62"/>
  1491. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="54.41" x-axis-rotation="0" y="71.54"/>
  1492. <line x="70.97" y="54.79"/>
  1493. <curve x1="72.18" x2="73.75" x3="73.75" y1="53.58" y2="51.29" y3="48.23"/>
  1494. <line x="73.81" y="25.31"/>
  1495. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="73.81" x-axis-rotation="0" y="25.3"/>
  1496. <curve x1="73.81" x2="72.87" x3="71.06" y1="23.01" y2="20.58" y3="18.79"/>
  1497. <line x="55.15" y="2.96"/>
  1498. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="55.11" x-axis-rotation="0" y="2.92"/>
  1499. <curve x1="54.64" x2="54.13" x3="53.26" y1="2.47" y2="1.86" y3="1.22"/>
  1500. <curve x1="52.39" x2="51.03" x3="49.61" y1="0.58" y2="0" y3="0"/>
  1501. <line x="49.61" y="0"/>
  1502. <close/>
  1503. <move x="25.31" y="5.95"/>
  1504. <line x="49.61" y="5.96"/>
  1505. <curve x1="49.75" x2="49.54" x3="49.72" y1="5.96" y2="5.88" y3="6.01"/>
  1506. <curve x1="49.9" x2="50.33" x3="50.99" y1="6.14" y2="6.58" y3="7.21"/>
  1507. <line x="66.87" y="23.02"/>
  1508. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="66.88" x-axis-rotation="0" y="23.02"/>
  1509. <curve x1="67.74" x2="67.86" x3="67.86" y1="23.87" y2="24.27" y3="25.3"/>
  1510. <line x="67.79" y="48.22"/>
  1511. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="67.79" x-axis-rotation="0" y="48.23"/>
  1512. <curve x1="67.79" x2="67.8" x3="66.75" y1="50.01" y2="49.54" y3="50.59"/>
  1513. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="66.75" x-axis-rotation="0" y="50.6"/>
  1514. <line x="50.25" y="67.28"/>
  1515. <curve x1="49.77" x2="49.72" x3="48.17" y1="67.74" y2="67.74" y3="67.77"/>
  1516. <line x="24.71" y="67.79"/>
  1517. <curve x1="24.41" x2="23.79" x3="22.67" y1="67.79" y2="67.55" y3="66.29"/>
  1518. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="22.55" x-axis-rotation="0" y="66.16"/>
  1519. <line x="6.05" y="49.64"/>
  1520. <curve x1="6.16" x2="5.96" x3="6" y1="49.75" y2="49.61" y3="48.05"/>
  1521. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="6" x-axis-rotation="0" y="47.97"/>
  1522. <line x="6.03" y="24.23"/>
  1523. <arc large-arc-flag="0" rx="2.98" ry="2.98" sweep-flag="0" x="6.03" x-axis-rotation="0" y="24.22"/>
  1524. <curve x1="6.03" x2="5.9" x3="6.92" y1="24.08" y2="24.15" y3="23.07"/>
  1525. <line x="24.06" y="5.98"/>
  1526. <line x="24.05" y="5.99"/>
  1527. <curve x1="23.91" x2="24.08" x3="25.31" y1="6.12" y2="5.95" y3="5.95"/>
  1528. <close/>
  1529. </path>
  1530. <fill/>
  1531. </foreground>
  1532. </shape>
  1533. <shape aspect="variable" h="99.27" name="icon5" strokewidth="inherit" w="99.27">
  1534. <connections/>
  1535. <foreground>
  1536. <path>
  1537. <move x="49.59" y="0"/>
  1538. <curve x1="22.19" x2="0" x3="0" y1="0" y2="22.24" y3="49.64"/>
  1539. <curve x1="0" x2="22.24" x3="49.64" y1="77.03" y2="99.27" y3="99.27"/>
  1540. <curve x1="77.03" x2="99.27" x3="99.27" y1="99.27" y2="77.03" y3="49.64"/>
  1541. <line x="96.61" y="49.64"/>
  1542. <curve x1="96.61" x2="78.37" x3="49.59" y1="26.76" y2="3.3" y3="3.3"/>
  1543. <line x="49.59" y="17.42"/>
  1544. <curve x1="44.08" x2="38.4" x3="33.89" y1="17.52" y2="18.84" y3="21.36"/>
  1545. <line x="33.72" y="21.07"/>
  1546. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="34.67" x-axis-rotation="0" y="19.17"/>
  1547. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="32.28" x-axis-rotation="0" y="16.78"/>
  1548. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="31.34" x-axis-rotation="0" y="16.97"/>
  1549. <line x="26.73" y="9.04"/>
  1550. <curve x1="33.34" x2="41.47" x3="49.59" y1="5.3" y2="3.05" y3="2.95"/>
  1551. <close/>
  1552. <move x="25.75" y="9.6"/>
  1553. <line x="30.43" y="17.66"/>
  1554. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="29.89" x-axis-rotation="0" y="19.17"/>
  1555. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="32.28" x-axis-rotation="0" y="21.55"/>
  1556. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="32.67" x-axis-rotation="0" y="21.52"/>
  1557. <line x="32.9" y="21.93"/>
  1558. <curve x1="28.32" x2="24.49" x3="21.77" y1="24.7" y2="28.58" y3="33.19"/>
  1559. <line x="9.36" y="26.16"/>
  1560. <curve x1="13.34" x2="18.98" x3="25.75" y1="19.35" y2="13.64" y3="9.6"/>
  1561. <close/>
  1562. <move x="49.57" y="17.85"/>
  1563. <curve x1="68.77" x2="82.03" x3="82.03" y1="17.85" y2="33.47" y3="49.64"/>
  1564. <line x="80.1" y="49.63"/>
  1565. <curve x1="80.01" x2="78.7" x3="76.44" y1="54.68" y2="60.01" y3="64.17"/>
  1566. <line x="50.88" y="49.68"/>
  1567. <line x="80.1" y="49.63"/>
  1568. <curve x1="80.1" x2="66.87" x3="49.59" y1="32.98" y2="19.17" y3="19.17"/>
  1569. <line x="49.59" y="48.37"/>
  1570. <line x="34.83" y="22.99"/>
  1571. <curve x1="39.06" x2="44.42" x3="49.59" y1="20.64" y2="19.27" y3="19.17"/>
  1572. <close/>
  1573. <move x="33.85" y="23.56"/>
  1574. <line x="48.1" y="48.11"/>
  1575. <line x="23.4" y="34.12"/>
  1576. <curve x1="25.96" x2="29.55" x3="33.85" y1="29.8" y2="26.16" y3="23.56"/>
  1577. <close/>
  1578. <move x="8.8" y="27.14"/>
  1579. <line x="21.2" y="34.17"/>
  1580. <curve x1="18.78" x2="17.37" x3="17.28" y1="38.61" y2="43.68" y3="49.07"/>
  1581. <line x="3.04" y="49.07"/>
  1582. <curve x1="3.13" x2="5.21" x3="8.8" y1="41.12" y2="33.66" y3="27.14"/>
  1583. <close/>
  1584. <move x="70.69" y="34.4"/>
  1585. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="1" x="73.08" x-axis-rotation="0" y="36.79"/>
  1586. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="1" x="70.69" x-axis-rotation="0" y="39.18"/>
  1587. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="1" x="68.31" x-axis-rotation="0" y="36.79"/>
  1588. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="1" x="70.69" x-axis-rotation="0" y="34.4"/>
  1589. <close/>
  1590. <move x="22.84" y="35.1"/>
  1591. <line x="47.48" y="49.07"/>
  1592. <line x="19.17" y="49.07"/>
  1593. <curve x1="19.26" x2="20.57" x3="22.84" y1="44.02" y2="39.26" y3="35.1"/>
  1594. <close/>
  1595. <move x="3.04" y="50.2"/>
  1596. <line x="17.28" y="50.2"/>
  1597. <curve x1="17.38" x2="18.85" x3="21.37" y1="55.71" y2="60.88" y3="65.38"/>
  1598. <line x="9.04" y="72.54"/>
  1599. <curve x1="5.3" x2="3.13" x3="3.04" y1="65.93" y2="58.32" y3="50.2"/>
  1600. <close/>
  1601. <move x="19.17" y="50.2"/>
  1602. <line x="47.53" y="50.2"/>
  1603. <line x="22.99" y="64.44"/>
  1604. <curve x1="20.64" x2="19.27" x3="19.17" y1="60.21" y2="55.37" y3="50.2"/>
  1605. <close/>
  1606. <move x="81.99" y="50.2"/>
  1607. <line x="96.24" y="50.2"/>
  1608. <curve x1="96.14" x2="94.07" x3="90.47" y1="58.15" y2="65.62" y3="72.13"/>
  1609. <line x="78.07" y="65.1"/>
  1610. <curve x1="80.49" x2="81.9" x3="81.99" y1="60.66" y2="55.59" y3="50.2"/>
  1611. <close/>
  1612. <move x="51.18" y="51.16"/>
  1613. <line x="75.87" y="65.16"/>
  1614. <curve x1="73.31" x2="69.72" x3="65.43" y1="69.48" y2="73.12" y3="75.72"/>
  1615. <close/>
  1616. <move x="48.11" y="51.18"/>
  1617. <line x="34.12" y="75.87"/>
  1618. <curve x1="29.79" x2="26.16" x3="23.55" y1="73.31" y2="69.72" y3="65.42"/>
  1619. <line x="27.58" y="63.09"/>
  1620. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="27.54" x-axis-rotation="0" y="63.51"/>
  1621. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="29.93" x-axis-rotation="0" y="65.89"/>
  1622. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="32.31" x-axis-rotation="0" y="63.51"/>
  1623. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="30.73" x-axis-rotation="0" y="61.26"/>
  1624. <close/>
  1625. <move x="50.2" y="51.74"/>
  1626. <line x="64.44" y="76.28"/>
  1627. <curve x1="60.21" x2="55.37" x3="50.2" y1="78.64" y2="80.01" y3="80.1"/>
  1628. <close/>
  1629. <move x="49.07" y="51.78"/>
  1630. <line x="49.07" y="80.1"/>
  1631. <curve x1="44.02" x2="39.26" x3="35.1" y1="80.01" y2="78.7" y3="76.44"/>
  1632. <close/>
  1633. <move x="77.51" y="66.08"/>
  1634. <line x="89.91" y="73.11"/>
  1635. <curve x1="85.94" x2="80.29" x3="73.52" y1="79.92" y2="85.63" y3="89.67"/>
  1636. <line x="66.37" y="77.34"/>
  1637. <curve x1="70.95" x2="74.78" x3="77.51" y1="74.57" y2="70.69" y3="66.08"/>
  1638. <close/>
  1639. <move x="21.93" y="66.37"/>
  1640. <curve x1="24.7" x2="28.58" x3="33.19" y1="70.95" y2="74.78" y3="77.51"/>
  1641. <line x="26.16" y="89.91"/>
  1642. <curve x1="19.35" x2="13.64" x3="9.6" y1="85.93" y2="80.29" y3="73.52"/>
  1643. <close/>
  1644. <move x="65.39" y="77.91"/>
  1645. <line x="72.54" y="90.24"/>
  1646. <curve x1="65.93" x2="58.32" x3="50.2" y1="93.97" y2="96.14" y3="96.24"/>
  1647. <line x="50.2" y="81.99"/>
  1648. <curve x1="55.71" x2="60.88" x3="65.39" y1="81.9" y2="80.43" y3="77.91"/>
  1649. <close/>
  1650. <move x="34.17" y="78.07"/>
  1651. <curve x1="38.61" x2="43.68" x3="49.07" y1="80.49" y2="81.9" y3="81.99"/>
  1652. <line x="49.07" y="96.24"/>
  1653. <curve x1="41.12" x2="33.66" x3="27.14" y1="96.14" y2="94.07" y3="90.47"/>
  1654. <close/>
  1655. <move x="65.08" y="88.51"/>
  1656. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="62.7" x-axis-rotation="0" y="90.89"/>
  1657. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="65.08" x-axis-rotation="0" y="93.28"/>
  1658. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="67.47" x-axis-rotation="0" y="90.89"/>
  1659. <arc large-arc-flag="0" rx="2.39" ry="2.39" sweep-flag="0" x="65.08" x-axis-rotation="0" y="88.51"/>
  1660. <close/>
  1661. </path>
  1662. <fill/>
  1663. </foreground>
  1664. </shape>
  1665. <shape aspect="variable" h="98.85" name="icon6" strokewidth="inherit" w="99.12">
  1666. <connections/>
  1667. <foreground>
  1668. <path>
  1669. <move x="21.81" y="0"/>
  1670. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="12" x-axis-rotation="0" y="9.81"/>
  1671. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="16.87" x-axis-rotation="0" y="18.28"/>
  1672. <line x="7.23" y="47.38"/>
  1673. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="0" x-axis-rotation="0" y="56.84"/>
  1674. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="9.81" x-axis-rotation="0" y="66.66"/>
  1675. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="12.16" x-axis-rotation="0" y="66.36"/>
  1676. <line x="46.18" y="89.31"/>
  1677. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="55.98" x-axis-rotation="0" y="98.85"/>
  1678. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="65.79" x-axis-rotation="0" y="89.03"/>
  1679. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="64.77" x-axis-rotation="0" y="84.69"/>
  1680. <line x="86.59" y="66.32"/>
  1681. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="89.3" x-axis-rotation="0" y="66.71"/>
  1682. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="99.12" x-axis-rotation="0" y="56.9"/>
  1683. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="92.65" x-axis-rotation="0" y="47.69"/>
  1684. <line x="88.18" y="18.72"/>
  1685. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="91.28" x-axis-rotation="0" y="11.57"/>
  1686. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="81.46" x-axis-rotation="0" y="1.76"/>
  1687. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="71.91" x-axis-rotation="0" y="9.38"/>
  1688. <line x="31.61" y="9.38"/>
  1689. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="21.81" x-axis-rotation="0" y="0"/>
  1690. <close/>
  1691. <move x="30.73" y="13.88"/>
  1692. <line x="71.94" y="13.88"/>
  1693. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="74.85" x-axis-rotation="0" y="18.8"/>
  1694. <line x="45.76" y="42.91"/>
  1695. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="40.88" x-axis-rotation="0" y="41.59"/>
  1696. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="39.5" x-axis-rotation="0" y="41.7"/>
  1697. <line x="28.34" y="17.12"/>
  1698. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="30.73" x-axis-rotation="0" y="13.88"/>
  1699. <close/>
  1700. <move x="24.38" y="19.28"/>
  1701. <line x="35.3" y="43.34"/>
  1702. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="31.08" x-axis-rotation="0" y="51.01"/>
  1703. <line x="18.73" y="52.79"/>
  1704. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="12" x-axis-rotation="0" y="47.29"/>
  1705. <line x="21.17" y="19.59"/>
  1706. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="21.81" x-axis-rotation="0" y="19.63"/>
  1707. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="24.38" x-axis-rotation="0" y="19.28"/>
  1708. <close/>
  1709. <move x="83.99" y="21.05"/>
  1710. <line x="88.02" y="47.18"/>
  1711. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="80.5" x-axis-rotation="0" y="52.59"/>
  1712. <line x="50.58" y="50.01"/>
  1713. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="49.07" x-axis-rotation="0" y="46.01"/>
  1714. <line x="79.13" y="21.09"/>
  1715. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="81.46" x-axis-rotation="0" y="21.39"/>
  1716. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="83.99" x-axis-rotation="0" y="21.05"/>
  1717. <close/>
  1718. <move x="50.18" y="54.49"/>
  1719. <line x="79.49" y="57.02"/>
  1720. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="82.46" x-axis-rotation="0" y="63.92"/>
  1721. <line x="61.9" y="81.23"/>
  1722. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="56.41" x-axis-rotation="0" y="79.24"/>
  1723. <line x="47.32" y="58.79"/>
  1724. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="50.18" x-axis-rotation="0" y="54.49"/>
  1725. <close/>
  1726. <move x="31.94" y="55.44"/>
  1727. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="40.88" x-axis-rotation="0" y="61.22"/>
  1728. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="43.33" x-axis-rotation="0" y="60.9"/>
  1729. <line x="51.88" y="80.13"/>
  1730. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="47.24" x-axis-rotation="0" y="84.6"/>
  1731. <line x="16.6" y="63.93"/>
  1732. <arc large-arc-flag="0" rx="9.81" ry="9.81" sweep-flag="0" x="19.61" x-axis-rotation="0" y="57.21"/>
  1733. <close/>
  1734. </path>
  1735. <fill/>
  1736. </foreground>
  1737. </shape>
  1738. <shape aspect="variable" h="52.27" name="icon7" strokewidth="inherit" w="75.2">
  1739. <connections/>
  1740. <foreground>
  1741. <path>
  1742. <move x="8.62" y="29.76"/>
  1743. <curve x1="3.84" x2="0" x3="0.93" y1="29.76" y2="25.41" y3="20.56"/>
  1744. <curve x1="1.43" x2="3.3" x3="8.46" y1="18.12" y2="14.53" y3="14.22"/>
  1745. <curve x1="7.83" x2="11.38" x3="18.25" y1="9.3" y2="2.92" y3="1.43"/>
  1746. <curve x1="24.66" x2="30.25" x3="32.14" y1="0" y2="4.04" y3="8.59"/>
  1747. <curve x1="34.74" x2="37.31" x3="39.2" y1="7.55" y2="7.79" y3="9.54"/>
  1748. <line x="29.11" y="16.78"/>
  1749. <line x="29.11" y="29.76"/>
  1750. <close/>
  1751. <move x="27.81" y="52.27"/>
  1752. <line x="27.81" y="47.91"/>
  1753. <line x="31.7" y="47.91"/>
  1754. <line x="31.7" y="18.22"/>
  1755. <line x="51.54" y="4.03"/>
  1756. <line x="71.41" y="18.22"/>
  1757. <line x="71.41" y="22.18"/>
  1758. <line x="51.54" y="10.66"/>
  1759. <line x="51.54" y="14.75"/>
  1760. <line x="71.41" y="25.39"/>
  1761. <line x="71.41" y="29.81"/>
  1762. <line x="51.54" y="21.95"/>
  1763. <line x="51.54" y="25.73"/>
  1764. <line x="71.41" y="32.76"/>
  1765. <line x="71.41" y="37.39"/>
  1766. <line x="51.54" y="33.07"/>
  1767. <line x="51.54" y="36.7"/>
  1768. <line x="71.41" y="40.37"/>
  1769. <line x="71.41" y="44.87"/>
  1770. <line x="51.54" y="44.18"/>
  1771. <line x="51.54" y="47.91"/>
  1772. <line x="75.2" y="47.91"/>
  1773. <line x="75.2" y="52.27"/>
  1774. <close/>
  1775. </path>
  1776. <fill/>
  1777. </foreground>
  1778. </shape>
  1779. <shape aspect="variable" h="99.26" name="icon8" strokewidth="inherit" w="76.75">
  1780. <connections/>
  1781. <foreground>
  1782. <path>
  1783. <move x="37.56" y="0"/>
  1784. <curve x1="29.69" x2="23.24" x3="23.24" y1="0" y2="6.45" y3="14.32"/>
  1785. <curve x1="23.24" x2="24.76" x3="27.21" y1="18.14" y2="21.6" y3="24.18"/>
  1786. <curve x1="11.49" x2="0" x3="0" y1="28.98" y2="43.63" y3="60.89"/>
  1787. <curve x1="0" x2="17.23" x3="38.38" y1="82.03" y2="99.26" y3="99.26"/>
  1788. <curve x1="59.52" x2="76.75" x3="76.75" y1="99.26" y2="82.03" y3="60.89"/>
  1789. <curve x1="76.75" x2="70.99" x3="62.07" y1="48.68" y2="37.78" y3="30.75"/>
  1790. <line x="63.49" y="28.47"/>
  1791. <line x="64.01" y="28.8"/>
  1792. <curve x1="65.03" x2="66.37" x3="67.01" y1="29.44" y2="29.13" y3="28.11"/>
  1793. <line x="68.24" y="26.15"/>
  1794. <curve x1="68.88" x2="68.57" x3="67.55" y1="25.13" y2="23.8" y3="23.16"/>
  1795. <line x="62.02" y="19.69"/>
  1796. <curve x1="61.64" x2="61.21" x3="60.79" y1="19.45" y2="19.34" y3="19.36"/>
  1797. <curve x1="60.1" x2="59.43" x3="59.03" y1="19.38" y2="19.74" y3="20.38"/>
  1798. <line x="57.8" y="22.34"/>
  1799. <curve x1="57.16" x2="57.46" x3="58.48" y1="23.36" y2="24.7" y3="25.34"/>
  1800. <line x="58.91" y="25.61"/>
  1801. <line x="57.6" y="27.71"/>
  1802. <curve x1="54.7" x2="51.56" x3="48.25" y1="26.02" y2="24.7" y3="23.81"/>
  1803. <curve x1="50.5" x2="51.89" x3="51.89" y1="21.28" y2="17.96" y3="14.32"/>
  1804. <curve x1="51.89" x2="45.44" x3="37.56" y1="6.45" y2="0" y3="0"/>
  1805. <close/>
  1806. <move x="37.56" y="5.67"/>
  1807. <curve x1="42.38" x2="46.22" x3="46.22" y1="5.67" y2="9.51" y3="14.32"/>
  1808. <curve x1="46.22" x2="43.79" x3="40.37" y1="18.15" y2="21.36" y3="22.51"/>
  1809. <line x="40.37" y="18.22"/>
  1810. <line x="41" y="18.22"/>
  1811. <curve x1="42.21" x2="43.18" x3="43.18" y1="18.23" y2="17.26" y3="16.06"/>
  1812. <line x="43.18" y="13.74"/>
  1813. <curve x1="43.19" x2="42.23" x3="41.02" y1="12.54" y2="11.56" y3="11.56"/>
  1814. <line x="34.49" y="11.56"/>
  1815. <curve x1="33.29" x2="32.31" x3="32.31" y1="11.56" y2="12.51" y3="13.71"/>
  1816. <line x="32.31" y="16.03"/>
  1817. <curve x1="32.31" x2="33.27" x3="34.48" y1="17.23" y2="18.2" y3="18.21"/>
  1818. <line x="34.97" y="18.21"/>
  1819. <line x="34.97" y="22.59"/>
  1820. <curve x1="31.44" x2="28.91" x3="28.91" y1="21.5" y2="18.23" y3="14.32"/>
  1821. <curve x1="28.91" x2="32.75" x3="37.56" y1="9.51" y2="5.67" y3="5.67"/>
  1822. <close/>
  1823. <move x="38.38" y="31.51"/>
  1824. <curve x1="54.65" x2="67.75" x3="67.75" y1="31.51" y2="44.61" y3="60.89"/>
  1825. <curve x1="67.75" x2="54.65" x3="38.38" y1="77.16" y2="90.26" y3="90.26"/>
  1826. <curve x1="22.1" x2="9" x3="9" y1="90.26" y2="77.16" y3="60.89"/>
  1827. <curve x1="9" x2="22.1" x3="38.38" y1="44.61" y2="31.51" y3="31.51"/>
  1828. <close/>
  1829. <move x="37.21" y="34.96"/>
  1830. <line x="37.21" y="41.95"/>
  1831. <line x="38.81" y="41.95"/>
  1832. <line x="38.81" y="34.96"/>
  1833. <close/>
  1834. <move x="55.83" y="41.88"/>
  1835. <line x="53.54" y="44.24"/>
  1836. <line x="35.17" y="55.01"/>
  1837. <arc large-arc-flag="0" rx="6.32" ry="6.32" sweep-flag="0" x="31.65" x-axis-rotation="0" y="60.67"/>
  1838. <arc large-arc-flag="0" rx="6.32" ry="6.32" sweep-flag="0" x="37.97" x-axis-rotation="0" y="67"/>
  1839. <arc large-arc-flag="0" rx="6.32" ry="6.32" sweep-flag="0" x="43.57" x-axis-rotation="0" y="63.61"/>
  1840. <line x="54.39" y="45.65"/>
  1841. <line x="56.98" y="43"/>
  1842. <close/>
  1843. <move x="19.67" y="42.37"/>
  1844. <line x="18.55" y="43.52"/>
  1845. <line x="23.56" y="48.38"/>
  1846. <line x="24.67" y="47.24"/>
  1847. <close/>
  1848. <move x="11.64" y="60.54"/>
  1849. <line x="11.64" y="62.14"/>
  1850. <line x="18.62" y="62.14"/>
  1851. <line x="18.62" y="60.54"/>
  1852. <close/>
  1853. <move x="57.4" y="60.54"/>
  1854. <line x="57.4" y="62.14"/>
  1855. <line x="64.38" y="62.14"/>
  1856. <line x="64.38" y="60.54"/>
  1857. <close/>
  1858. <move x="52.47" y="74.29"/>
  1859. <line x="51.35" y="75.43"/>
  1860. <line x="56.35" y="80.3"/>
  1861. <line x="57.47" y="79.15"/>
  1862. <close/>
  1863. <move x="23.91" y="74.67"/>
  1864. <line x="19.05" y="79.67"/>
  1865. <line x="20.2" y="80.79"/>
  1866. <line x="25.06" y="75.79"/>
  1867. <close/>
  1868. <move x="37.21" y="80.73"/>
  1869. <line x="37.21" y="87.71"/>
  1870. <line x="38.81" y="87.71"/>
  1871. <line x="38.81" y="80.73"/>
  1872. <close/>
  1873. </path>
  1874. <fill/>
  1875. </foreground>
  1876. </shape>
  1877. <shape aspect="variable" h="100.18" name="icon9" strokewidth="inherit" w="81.06">
  1878. <connections/>
  1879. <foreground>
  1880. <path>
  1881. <move x="40.68" y="0"/>
  1882. <curve x1="35.08" x2="30.55" x3="30.55" y1="0" y2="4.54" y3="10.13"/>
  1883. <curve x1="30.55" x2="30.55" x3="30.55" y1="10.15" y2="10.17" y3="10.18"/>
  1884. <curve x1="27.19" x2="25.35" x3="25.35" y1="10.42" y2="12.24" y3="14.73"/>
  1885. <curve x1="25.35" x2="28.75" x3="30.44" y1="18.19" y2="19.21" y3="19.21"/>
  1886. <line x="50.7" y="19.21"/>
  1887. <curve x1="54.18" x2="55.89" x3="55.89" y1="19.21" y2="17.49" y3="14.82"/>
  1888. <curve x1="55.89" x2="53.94" x3="50.81" y1="11.71" y2="10.33" y3="10.24"/>
  1889. <curve x1="50.81" x2="50.81" x3="50.81" y1="10.21" y2="10.17" y3="10.13"/>
  1890. <curve x1="50.81" x2="46.28" x3="40.68" y1="4.54" y2="0" y3="0"/>
  1891. <close/>
  1892. <move x="40.68" y="5.06"/>
  1893. <curve x1="43.48" x2="45.75" x3="45.75" y1="5.06" y2="7.33" y3="10.13"/>
  1894. <curve x1="45.75" x2="43.48" x3="40.68" y1="12.93" y2="15.2" y3="15.21"/>
  1895. <curve x1="37.88" x2="35.61" x3="35.61" y1="15.21" y2="12.93" y3="10.13"/>
  1896. <curve x1="35.61" x2="37.88" x3="40.68" y1="7.33" y2="5.06" y3="5.06"/>
  1897. <close/>
  1898. <move x="10.63" y="10.09"/>
  1899. <curve x1="4.74" x2="0" x3="0" y1="10.09" y2="14.83" y3="20.72"/>
  1900. <line x="0" y="89.55"/>
  1901. <curve x1="0" x2="4.74" x3="10.63" y1="95.44" y2="100.18" y3="100.18"/>
  1902. <line x="70.43" y="100.18"/>
  1903. <curve x1="76.32" x2="81.06" x3="81.06" y1="100.18" y2="95.44" y3="89.55"/>
  1904. <line x="81.06" y="20.72"/>
  1905. <curve x1="81.06" x2="76.32" x3="70.43" y1="14.83" y2="10.09" y3="10.09"/>
  1906. <line x="60.97" y="10.09"/>
  1907. <line x="60.97" y="17.33"/>
  1908. <curve x1="60.97" x2="58.9" x3="56.32" y1="19.91" y2="21.99" y3="21.99"/>
  1909. <line x="24.74" y="21.99"/>
  1910. <curve x1="22.16" x2="20.08" x3="20.08" y1="21.99" y2="19.91" y3="17.33"/>
  1911. <line x="20.08" y="10.09"/>
  1912. <close/>
  1913. <move x="24.11" y="35.29"/>
  1914. <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="25.58" x-axis-rotation="0" y="38.22"/>
  1915. <line x="18.25" y="47.49"/>
  1916. <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="15.67" x-axis-rotation="0" y="47.73"/>
  1917. <line x="10" y="42.82"/>
  1918. <arc large-arc-flag="1" rx="1.8" ry="1.8" sweep-flag="1" x="12.36" x-axis-rotation="0" y="40.11"/>
  1919. <line x="16.6" y="43.79"/>
  1920. <line x="22.76" y="36"/>
  1921. <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="24.11" x-axis-rotation="0" y="35.29"/>
  1922. <close/>
  1923. <move x="24.11" y="51.98"/>
  1924. <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="25.58" x-axis-rotation="0" y="54.91"/>
  1925. <line x="18.25" y="64.17"/>
  1926. <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="15.67" x-axis-rotation="0" y="64.42"/>
  1927. <line x="10" y="59.51"/>
  1928. <arc large-arc-flag="1" rx="1.8" ry="1.8" sweep-flag="1" x="12.36" x-axis-rotation="0" y="56.8"/>
  1929. <line x="16.6" y="60.47"/>
  1930. <line x="22.76" y="52.68"/>
  1931. <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="24.11" x-axis-rotation="0" y="51.98"/>
  1932. <close/>
  1933. <move x="24.11" y="68.67"/>
  1934. <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="25.58" x-axis-rotation="0" y="71.6"/>
  1935. <line x="18.25" y="80.86"/>
  1936. <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="15.67" x-axis-rotation="0" y="81.11"/>
  1937. <line x="10" y="76.2"/>
  1938. <arc large-arc-flag="1" rx="1.8" ry="1.8" sweep-flag="1" x="12.36" x-axis-rotation="0" y="73.49"/>
  1939. <line x="16.6" y="77.16"/>
  1940. <line x="22.76" y="69.37"/>
  1941. <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="24.11" x-axis-rotation="0" y="68.67"/>
  1942. <close/>
  1943. </path>
  1944. <fill/>
  1945. </foreground>
  1946. </shape>
  1947. </shapes>