wcmd.svg 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!-- Created with Inkscape (http://www.inkscape.org/) -->
  3. <svg
  4. xmlns:dc="http://purl.org/dc/elements/1.1/"
  5. xmlns:cc="http://creativecommons.org/ns#"
  6. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  7. xmlns:svg="http://www.w3.org/2000/svg"
  8. xmlns="http://www.w3.org/2000/svg"
  9. xmlns:xlink="http://www.w3.org/1999/xlink"
  10. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  11. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  12. height="272"
  13. width="632"
  14. version="1.1"
  15. id="svg2"
  16. inkscape:version="0.48.3.1 r9886"
  17. sodipodi:docname="wcmd.svg">
  18. <metadata
  19. id="metadata251">
  20. <rdf:RDF>
  21. <cc:Work
  22. rdf:about="">
  23. <dc:format>image/svg+xml</dc:format>
  24. <dc:type
  25. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  26. </cc:Work>
  27. </rdf:RDF>
  28. </metadata>
  29. <sodipodi:namedview
  30. pagecolor="#ffffff"
  31. bordercolor="#666666"
  32. borderopacity="1"
  33. objecttolerance="10"
  34. gridtolerance="10"
  35. guidetolerance="10"
  36. inkscape:pageopacity="0"
  37. inkscape:pageshadow="2"
  38. inkscape:window-width="931"
  39. inkscape:window-height="789"
  40. id="namedview249"
  41. showgrid="false"
  42. inkscape:zoom="1"
  43. inkscape:cx="387.5"
  44. inkscape:cy="74.981207"
  45. inkscape:window-x="221"
  46. inkscape:window-y="105"
  47. inkscape:window-maximized="0"
  48. inkscape:current-layer="svg2" />
  49. <defs
  50. id="defs4">
  51. <linearGradient
  52. id="linearGradient5060">
  53. <stop
  54. id="stop5062"
  55. stop-color="#000"
  56. offset="0" />
  57. <stop
  58. id="stop5064"
  59. stop-color="#000"
  60. stop-opacity="0"
  61. offset="1" />
  62. </linearGradient>
  63. <filter
  64. id="filter3436"
  65. height="1.2801698"
  66. width="1.1580106"
  67. color-interpolation-filters="sRGB"
  68. y="-0.14008497"
  69. x="-0.079005308">
  70. <feGaussianBlur
  71. id="feGaussianBlur3438"
  72. stdDeviation="0.3190069" />
  73. </filter>
  74. <linearGradient
  75. id="linearGradient3346">
  76. <stop
  77. id="stop3348"
  78. stop-color="#737373"
  79. offset="0" />
  80. <stop
  81. id="stop3350"
  82. stop-color="#000"
  83. stop-opacity="0"
  84. offset="1" />
  85. </linearGradient>
  86. <linearGradient
  87. id="linearGradient3228">
  88. <stop
  89. id="stop3230"
  90. stop-color="#373737"
  91. offset="0" />
  92. <stop
  93. id="stop3232"
  94. stop-color="#cfcfcf"
  95. stop-opacity="0.67826086"
  96. offset="1" />
  97. </linearGradient>
  98. <linearGradient
  99. id="linearGradient3198">
  100. <stop
  101. id="stop3200"
  102. stop-color="#FFF"
  103. offset="0" />
  104. <stop
  105. id="stop3202"
  106. stop-color="#FFF"
  107. stop-opacity="0"
  108. offset="1" />
  109. </linearGradient>
  110. <linearGradient
  111. id="linearGradient3220">
  112. <stop
  113. id="stop3222"
  114. stop-color="#373737"
  115. offset="0" />
  116. <stop
  117. id="stop3224"
  118. stop-color="#FFF"
  119. offset="1" />
  120. </linearGradient>
  121. <linearGradient
  122. id="linearGradient3189">
  123. <stop
  124. id="stop3191"
  125. stop-color="#e40000"
  126. offset="0" />
  127. <stop
  128. id="stop3193"
  129. stop-color="#490000"
  130. offset="1" />
  131. </linearGradient>
  132. <linearGradient
  133. id="linearGradient3171">
  134. <stop
  135. id="stop3173"
  136. stop-color="#fd0000"
  137. offset="0" />
  138. <stop
  139. id="stop3175"
  140. stop-color="#6a0000"
  141. offset="1" />
  142. </linearGradient>
  143. <linearGradient
  144. id="linearGradient4402">
  145. <stop
  146. id="stop4404"
  147. stop-color="#e80000"
  148. offset="0" />
  149. <stop
  150. id="stop4406"
  151. stop-color="#490000"
  152. offset="1" />
  153. </linearGradient>
  154. <linearGradient
  155. id="linearGradient3373">
  156. <stop
  157. id="stop3375"
  158. stop-color="#000"
  159. offset="0" />
  160. <stop
  161. id="stop3377"
  162. stop-color="#373737"
  163. stop-opacity="0"
  164. offset="1" />
  165. </linearGradient>
  166. <filter
  167. id="filter3391"
  168. height="1.336"
  169. width="1.1344"
  170. color-interpolation-filters="sRGB"
  171. y="-0.168"
  172. x="-0.067199998">
  173. <feGaussianBlur
  174. id="feGaussianBlur3393"
  175. stdDeviation="0.14" />
  176. </filter>
  177. <linearGradient
  178. id="linearGradient3409"
  179. y2="609.51001"
  180. gradientUnits="userSpaceOnUse"
  181. y1="366.64999"
  182. gradientTransform="matrix(0.06809735,0,0,0.041103,-0.29982463,21.126084)"
  183. x2="302.85999"
  184. x1="302.85999">
  185. <stop
  186. id="stop5050"
  187. stop-color="#000"
  188. stop-opacity="0"
  189. offset="0" />
  190. <stop
  191. id="stop5056"
  192. stop-color="#000"
  193. offset="0.5" />
  194. <stop
  195. id="stop5052"
  196. stop-color="#000"
  197. stop-opacity="0"
  198. offset="1" />
  199. </linearGradient>
  200. <radialGradient
  201. id="radialGradient3411"
  202. gradientUnits="userSpaceOnUse"
  203. xlink:href="#linearGradient5060"
  204. cx="605.71002"
  205. cy="486.64999"
  206. r="117.14"
  207. gradientTransform="matrix(0.06809735,0,0,0.041103,-0.28642307,21.126084)" />
  208. <radialGradient
  209. id="radialGradient3413"
  210. gradientUnits="userSpaceOnUse"
  211. xlink:href="#linearGradient5060"
  212. cx="605.71002"
  213. cy="486.64999"
  214. r="117.14"
  215. gradientTransform="matrix(-0.06809735,0,0,0.041103,48.91144,21.126084)" />
  216. <linearGradient
  217. id="linearGradient3415"
  218. y2="14.158"
  219. gradientUnits="userSpaceOnUse"
  220. y1="32.285999"
  221. gradientTransform="matrix(0.957412,0,0,0.952331,1.022766,0.133307)"
  222. x2="24.841999"
  223. x1="29.870001">
  224. <stop
  225. id="stop2208"
  226. stop-color="#777973"
  227. offset="0" />
  228. <stop
  229. id="stop2210"
  230. stop-color="#cbccca"
  231. offset="1" />
  232. </linearGradient>
  233. <linearGradient
  234. id="linearGradient3417"
  235. y2="32.498001"
  236. gradientUnits="userSpaceOnUse"
  237. y1="9.5865002"
  238. gradientTransform="matrix(0.957412,0,0,0.952331,1.022766,0.133307)"
  239. x2="21.305"
  240. x1="8.6528997">
  241. <stop
  242. id="stop5178"
  243. stop-color="#a2a59c"
  244. offset="0" />
  245. <stop
  246. id="stop5180"
  247. stop-color="#535750"
  248. offset="1" />
  249. </linearGradient>
  250. <linearGradient
  251. id="linearGradient3419"
  252. y2="34.226002"
  253. gradientUnits="userSpaceOnUse"
  254. y1="9.5830002"
  255. gradientTransform="matrix(0.950085,0,0,0.965659,1.243978,0.255342)"
  256. x2="22.441"
  257. x1="23.118999">
  258. <stop
  259. id="stop2200"
  260. stop-color="#748f48"
  261. offset="0" />
  262. <stop
  263. id="stop2202"
  264. stop-color="#1f2816"
  265. offset="1" />
  266. </linearGradient>
  267. <linearGradient
  268. id="linearGradient3421"
  269. y2="30.343"
  270. gradientUnits="userSpaceOnUse"
  271. y1="9.1463003"
  272. gradientTransform="matrix(0.997583,0,0,0.989941,0.104141,0.07028871)"
  273. x2="26.177999"
  274. x1="11.048">
  275. <stop
  276. id="stop4256"
  277. stop-color="#616161"
  278. offset="0" />
  279. <stop
  280. id="stop4258"
  281. stop-color="#a0a0a0"
  282. offset="1" />
  283. </linearGradient>
  284. <linearGradient
  285. id="linearGradient3423"
  286. y2="49.730999"
  287. gradientUnits="userSpaceOnUse"
  288. y1="19.636999"
  289. gradientTransform="matrix(0.953506,0,0,0.947873,1.141528,1.205591)"
  290. x2="48.845001"
  291. x1="20.339001">
  292. <stop
  293. id="stop2240"
  294. stop-color="#FFF"
  295. offset="0" />
  296. <stop
  297. id="stop2242"
  298. stop-color="#FFF"
  299. stop-opacity="0"
  300. offset="1" />
  301. </linearGradient>
  302. <linearGradient
  303. id="linearGradient3425"
  304. y2="26.729"
  305. gradientUnits="userSpaceOnUse"
  306. y1="1.6538"
  307. gradientTransform="matrix(1.236157,0,0,0.896051,-1.08182,2.830699)"
  308. x2="17.198999"
  309. x1="11.492">
  310. <stop
  311. id="stop2669"
  312. stop-color="#FFF"
  313. offset="0" />
  314. <stop
  315. id="stop2671"
  316. stop-color="#fcfcff"
  317. stop-opacity="0"
  318. offset="1" />
  319. </linearGradient>
  320. <radialGradient
  321. id="radialGradient3427"
  322. gradientUnits="userSpaceOnUse"
  323. cx="37.495998"
  324. cy="39.509998"
  325. r="2.51"
  326. gradientTransform="matrix(1,0,0,0.73779,0,9.844321)">
  327. <stop
  328. id="stop6449"
  329. stop-color="#777973"
  330. offset="0" />
  331. <stop
  332. id="stop6451"
  333. stop-color="#777973"
  334. stop-opacity="0"
  335. offset="1" />
  336. </radialGradient>
  337. <linearGradient
  338. id="linearGradient3429"
  339. y2="38"
  340. gradientUnits="userSpaceOnUse"
  341. y1="42.319"
  342. gradientTransform="matrix(1,0,0,0.744756,0,9.569132)"
  343. x2="36.452"
  344. x1="40.252998">
  345. <stop
  346. id="stop2216"
  347. stop-color="#a9aaa7"
  348. offset="0" />
  349. <stop
  350. id="stop2218"
  351. stop-color="#676964"
  352. offset="1" />
  353. </linearGradient>
  354. <radialGradient
  355. id="radialGradient3431"
  356. gradientUnits="userSpaceOnUse"
  357. xlink:href="#linearGradient5060"
  358. cx="37.375"
  359. cy="33.188"
  360. r="14.625"
  361. gradientTransform="matrix(0.4206982,0,0,0.10417298,22.599585,24.664379)" />
  362. <radialGradient
  363. id="radialGradient3433"
  364. gradientUnits="userSpaceOnUse"
  365. xlink:href="#linearGradient3346"
  366. cx="27.5"
  367. cy="22.614"
  368. r="6.5"
  369. gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,-3.381692,-11.515501)" />
  370. <linearGradient
  371. id="linearGradient3435"
  372. y2="9.2770004"
  373. xlink:href="#linearGradient3228"
  374. gradientUnits="userSpaceOnUse"
  375. y1="14.243"
  376. gradientTransform="matrix(1.2744752,0,0,1.0288787,9.68707,31.233392)"
  377. x2="21.440001"
  378. x1="27.681" />
  379. <linearGradient
  380. id="linearGradient3437"
  381. y2="5.0353999"
  382. xlink:href="#linearGradient3198"
  383. gradientUnits="userSpaceOnUse"
  384. y1="12.038"
  385. gradientTransform="matrix(1.2818465,0,0,0.9398128,9.517531,32.213117)"
  386. x2="17.799"
  387. x1="25.268999" />
  388. <linearGradient
  389. id="linearGradient3439"
  390. y2="27"
  391. xlink:href="#linearGradient3220"
  392. gradientUnits="userSpaceOnUse"
  393. y1="33"
  394. gradientTransform="matrix(1.0342194,0,0,1.0195661,14.178737,6.1424369)"
  395. x2="19"
  396. x1="29" />
  397. <radialGradient
  398. id="radialGradient3441"
  399. gradientUnits="userSpaceOnUse"
  400. xlink:href="#linearGradient3189"
  401. cx="26.625"
  402. cy="26.577"
  403. r="12.5"
  404. gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,12.430811,30.803565)" />
  405. <radialGradient
  406. id="radialGradient3443"
  407. gradientUnits="userSpaceOnUse"
  408. xlink:href="#linearGradient3171"
  409. cx="25.017"
  410. cy="13.192"
  411. r="9.7512999"
  412. gradientTransform="matrix(1.2818465,0,0,0.46520969,9.51753,20.396884)" />
  413. <linearGradient
  414. id="linearGradient3445"
  415. y2="7.1352"
  416. xlink:href="#linearGradient4402"
  417. gradientUnits="userSpaceOnUse"
  418. y1="15.984"
  419. gradientTransform="matrix(1.2818465,0,0,0.9398128,9.51753,15.17625)"
  420. x2="22.035999"
  421. x1="27.216999" />
  422. <linearGradient
  423. id="linearGradient3447"
  424. y2="19"
  425. xlink:href="#linearGradient3198"
  426. gradientUnits="userSpaceOnUse"
  427. y1="25.27"
  428. gradientTransform="matrix(1.0293043,0,0,1.0285483,14.331497,6.1942056)"
  429. x2="22"
  430. x1="30.375999" />
  431. <linearGradient
  432. id="linearGradient3449"
  433. y2="18.312"
  434. xlink:href="#linearGradient3198"
  435. gradientUnits="userSpaceOnUse"
  436. y1="18.312"
  437. gradientTransform="matrix(1.0342194,0,0,1.019566,15.063398,5.4633669)"
  438. x2="23"
  439. x1="17.605" />
  440. <radialGradient
  441. id="radialGradient3451"
  442. gradientUnits="userSpaceOnUse"
  443. xlink:href="#linearGradient3198"
  444. cx="18"
  445. cy="14.19"
  446. r="5.5054998"
  447. gradientTransform="matrix(1.0342194,0,0,0.1874519,22.439811,23.744069)" />
  448. <linearGradient
  449. id="linearGradient3453"
  450. y2="25.5"
  451. xlink:href="#linearGradient3373"
  452. gradientUnits="userSpaceOnUse"
  453. y1="27.5"
  454. gradientTransform="translate(-8.0000004,15.967633)"
  455. x2="20.5"
  456. x1="16" />
  457. <linearGradient
  458. id="linearGradient3455"
  459. y2="27"
  460. xlink:href="#linearGradient5060"
  461. gradientUnits="userSpaceOnUse"
  462. y1="27"
  463. gradientTransform="translate(-8.0000004,15.967633)"
  464. x2="21.5"
  465. x1="16" />
  466. <linearGradient
  467. id="linearGradient3465"
  468. y2="27"
  469. xlink:href="#linearGradient3220"
  470. gradientUnits="userSpaceOnUse"
  471. y1="33"
  472. gradientTransform="matrix(1.0342194,0,0,1.0195661,14.178737,6.1424371)"
  473. x2="19"
  474. x1="29" />
  475. <linearGradient
  476. id="linearGradient3473"
  477. y2="18.312"
  478. xlink:href="#linearGradient3198"
  479. gradientUnits="userSpaceOnUse"
  480. y1="18.312"
  481. gradientTransform="matrix(1.0342194,0,0,1.019566,15.063398,5.4633671)"
  482. x2="23"
  483. x1="17.605" />
  484. <filter
  485. id="filter3391-4"
  486. height="1.336"
  487. width="1.1344"
  488. color-interpolation-filters="sRGB"
  489. y="-0.168"
  490. x="-0.067199998">
  491. <feGaussianBlur
  492. id="feGaussianBlur3393-3"
  493. stdDeviation="0.14" />
  494. </filter>
  495. <radialGradient
  496. id="radialGradient4589"
  497. gradientUnits="userSpaceOnUse"
  498. cy="14.19"
  499. cx="18"
  500. gradientTransform="matrix(0.7756645,0,0,0.1405889,190.08112,37.813815)"
  501. r="5.5054998">
  502. <stop
  503. id="stop3454-4"
  504. stop-color="#FFF"
  505. offset="0" />
  506. <stop
  507. id="stop3456-3"
  508. stop-color="#FFF"
  509. stop-opacity="0"
  510. offset="1" />
  511. </radialGradient>
  512. <linearGradient
  513. id="linearGradient4592"
  514. y2="18.312"
  515. xlink:href="#linearGradient3198"
  516. gradientUnits="userSpaceOnUse"
  517. x2="23"
  518. gradientTransform="matrix(0.7756645,0,0,0.7646744,184.54881,24.103289)"
  519. y1="18.312"
  520. x1="17.605" />
  521. <linearGradient
  522. id="linearGradient4595"
  523. y2="19"
  524. xlink:href="#linearGradient3198"
  525. gradientUnits="userSpaceOnUse"
  526. x2="22"
  527. gradientTransform="matrix(0.7719782,0,0,0.7714112,183.99988,24.651418)"
  528. y1="25.27"
  529. x1="30.375999" />
  530. <radialGradient
  531. id="radialGradient4598"
  532. gradientUnits="userSpaceOnUse"
  533. cy="13.192"
  534. cx="25.017"
  535. gradientTransform="matrix(0.9613848,0,0,0.34890721,180.38941,35.303426)"
  536. r="9.7512999">
  537. <stop
  538. id="stop3173-8"
  539. stop-color="#fd0000"
  540. offset="0" />
  541. <stop
  542. id="stop3175-8"
  543. stop-color="#6a0000"
  544. offset="1" />
  545. </radialGradient>
  546. <linearGradient
  547. id="linearGradient4600"
  548. y2="7.1352"
  549. gradientUnits="userSpaceOnUse"
  550. x2="22.035999"
  551. gradientTransform="matrix(0.9613848,0,0,0.7048595,180.38941,31.387951)"
  552. y1="15.984"
  553. x1="27.216999">
  554. <stop
  555. id="stop4404-7"
  556. stop-color="#e80000"
  557. offset="0" />
  558. <stop
  559. id="stop4406-7"
  560. stop-color="#490000"
  561. offset="1" />
  562. </linearGradient>
  563. <radialGradient
  564. id="radialGradient4603"
  565. gradientUnits="userSpaceOnUse"
  566. cy="26.577"
  567. cx="26.625"
  568. gradientTransform="matrix(0.73586,-0.2418113,0.0892014,0.2638127,182.57437,43.108436)"
  569. r="12.5">
  570. <stop
  571. id="stop3191-0"
  572. stop-color="#e40000"
  573. offset="0" />
  574. <stop
  575. id="stop3193-4"
  576. stop-color="#490000"
  577. offset="1" />
  578. </radialGradient>
  579. <linearGradient
  580. id="linearGradient4606"
  581. y2="27"
  582. gradientUnits="userSpaceOnUse"
  583. x2="19"
  584. gradientTransform="matrix(0.7756645,0,0,0.7646745,183.88532,24.612857)"
  585. y1="33"
  586. x1="29">
  587. <stop
  588. id="stop3222-3"
  589. stop-color="#373737"
  590. offset="0" />
  591. <stop
  592. id="stop3224-8"
  593. stop-color="#FFF"
  594. offset="1" />
  595. </linearGradient>
  596. <radialGradient
  597. id="radialGradient4614"
  598. gradientUnits="userSpaceOnUse"
  599. cy="22.614"
  600. cx="27.5"
  601. gradientTransform="matrix(1.1933298,-0.058821,0.07448995,1.468693,170.715,11.369139)"
  602. r="6.5">
  603. <stop
  604. id="stop3348-1"
  605. stop-color="#737373"
  606. offset="0" />
  607. <stop
  608. id="stop3350-8"
  609. stop-color="#000"
  610. stop-opacity="0"
  611. offset="1" />
  612. </radialGradient>
  613. <radialGradient
  614. id="radialGradient4617"
  615. gradientUnits="userSpaceOnUse"
  616. cy="33.188"
  617. cx="37.375"
  618. gradientTransform="matrix(0.3155237,0,0,0.07812973,190.20095,38.504047)"
  619. r="14.625">
  620. <stop
  621. id="stop4335-5"
  622. stop-color="#000"
  623. offset="0" />
  624. <stop
  625. id="stop4337-7"
  626. stop-color="#000"
  627. stop-opacity="0"
  628. offset="1" />
  629. </radialGradient>
  630. <radialGradient
  631. id="radialGradient4646"
  632. gradientUnits="userSpaceOnUse"
  633. cy="39.509998"
  634. cx="37.495998"
  635. gradientTransform="matrix(0.497503,0,0,0.249336,182.83949,40.14873)"
  636. r="2.51">
  637. <stop
  638. id="stop6449-9"
  639. stop-color="#777973"
  640. offset="0" />
  641. <stop
  642. id="stop6451-6"
  643. stop-color="#777973"
  644. stop-opacity="0"
  645. offset="1" />
  646. </radialGradient>
  647. <linearGradient
  648. id="linearGradient4648"
  649. y2="38"
  650. gradientUnits="userSpaceOnUse"
  651. x2="36.452"
  652. gradientTransform="matrix(0.497503,0,0,0.25169,182.83949,40.05573)"
  653. y1="42.319"
  654. x1="40.252998">
  655. <stop
  656. id="stop2216-1"
  657. stop-color="#a9aaa7"
  658. offset="0" />
  659. <stop
  660. id="stop2218-7"
  661. stop-color="#676964"
  662. offset="1" />
  663. </linearGradient>
  664. <linearGradient
  665. id="linearGradient4652"
  666. y2="26.729"
  667. gradientUnits="userSpaceOnUse"
  668. x2="17.198999"
  669. gradientTransform="matrix(0.789718,0,0,0.612946,175.47085,26.463931)"
  670. y1="1.6538"
  671. x1="11.492">
  672. <stop
  673. id="stop2669-1"
  674. stop-color="#FFF"
  675. offset="0" />
  676. <stop
  677. id="stop2671-7"
  678. stop-color="#fcfcff"
  679. stop-opacity="0"
  680. offset="1" />
  681. </linearGradient>
  682. <linearGradient
  683. id="linearGradient4656"
  684. y2="49.730999"
  685. gradientUnits="userSpaceOnUse"
  686. x2="48.845001"
  687. gradientTransform="matrix(0.621662,0,0,0.614827,176.57343,25.36266)"
  688. y1="19.636999"
  689. x1="20.339001">
  690. <stop
  691. id="stop2240-7"
  692. stop-color="#FFF"
  693. offset="0" />
  694. <stop
  695. id="stop2242-6"
  696. stop-color="#FFF"
  697. stop-opacity="0"
  698. offset="1" />
  699. </linearGradient>
  700. <linearGradient
  701. id="linearGradient4668"
  702. y2="34.226002"
  703. gradientUnits="userSpaceOnUse"
  704. x2="22.441"
  705. gradientTransform="matrix(0.615842,0,0,0.632354,176.69951,24.764695)"
  706. y1="9.5830002"
  707. x1="23.118999">
  708. <stop
  709. id="stop2200-3"
  710. stop-color="#748f48"
  711. offset="0" />
  712. <stop
  713. id="stop2202-0"
  714. stop-color="#1f2816"
  715. offset="1" />
  716. </linearGradient>
  717. <linearGradient
  718. id="linearGradient4670"
  719. y2="30.343"
  720. gradientUnits="userSpaceOnUse"
  721. x2="26.177999"
  722. gradientTransform="matrix(0.646631,0,0,0.648255,175.96067,24.643515)"
  723. y1="9.1463003"
  724. x1="11.048">
  725. <stop
  726. id="stop4256-4"
  727. stop-color="#616161"
  728. offset="0" />
  729. <stop
  730. id="stop4258-4"
  731. stop-color="#a0a0a0"
  732. offset="1" />
  733. </linearGradient>
  734. <linearGradient
  735. id="linearGradient4673"
  736. y2="14.158"
  737. gradientUnits="userSpaceOnUse"
  738. x2="24.841999"
  739. gradientTransform="matrix(0.638331,0,0,0.634908,176.17371,24.25443)"
  740. y1="32.285999"
  741. x1="29.870001">
  742. <stop
  743. id="stop2208-9"
  744. stop-color="#777973"
  745. offset="0" />
  746. <stop
  747. id="stop2210-8"
  748. stop-color="#cbccca"
  749. offset="1" />
  750. </linearGradient>
  751. <linearGradient
  752. id="linearGradient4675"
  753. y2="32.498001"
  754. gradientUnits="userSpaceOnUse"
  755. x2="21.305"
  756. gradientTransform="matrix(0.638331,0,0,0.634908,176.17371,24.25443)"
  757. y1="9.5865002"
  758. x1="8.6528997">
  759. <stop
  760. id="stop5178-8"
  761. stop-color="#a2a59c"
  762. offset="0" />
  763. <stop
  764. id="stop5180-1"
  765. stop-color="#535750"
  766. offset="1" />
  767. </linearGradient>
  768. <radialGradient
  769. id="radialGradient4696"
  770. xlink:href="#linearGradient5060"
  771. gradientUnits="userSpaceOnUse"
  772. cy="486.64999"
  773. cx="605.71002"
  774. gradientTransform="matrix(-0.04539824,0,0,0.02740202,208.3993,38.084044)"
  775. r="117.14" />
  776. <radialGradient
  777. id="radialGradient4699"
  778. xlink:href="#linearGradient5060"
  779. gradientUnits="userSpaceOnUse"
  780. cy="486.64999"
  781. cx="605.71002"
  782. gradientTransform="matrix(0.04539824,0,0,0.02740202,175.60071,38.084044)"
  783. r="117.14" />
  784. <linearGradient
  785. id="linearGradient4702"
  786. y2="609.51001"
  787. gradientUnits="userSpaceOnUse"
  788. x2="302.85999"
  789. gradientTransform="matrix(0.04539824,0,0,0.02740202,175.59178,38.084044)"
  790. y1="366.64999"
  791. x1="302.85999">
  792. <stop
  793. id="stop5050-3"
  794. stop-color="#000"
  795. stop-opacity="0"
  796. offset="0" />
  797. <stop
  798. id="stop5056-8"
  799. stop-color="#000"
  800. offset="0.5" />
  801. <stop
  802. id="stop5052-5"
  803. stop-color="#000"
  804. stop-opacity="0"
  805. offset="1" />
  806. </linearGradient>
  807. <linearGradient
  808. id="linearGradient4708"
  809. y2="25.5"
  810. gradientUnits="userSpaceOnUse"
  811. x2="20.5"
  812. gradientTransform="translate(-8.0000004,15.967633)"
  813. y1="27.5"
  814. x1="16">
  815. <stop
  816. id="stop3375-3"
  817. stop-color="#000"
  818. offset="0" />
  819. <stop
  820. id="stop3377-1"
  821. stop-color="#373737"
  822. stop-opacity="0"
  823. offset="1" />
  824. </linearGradient>
  825. <linearGradient
  826. id="linearGradient4710"
  827. y2="27"
  828. gradientUnits="userSpaceOnUse"
  829. x2="21.5"
  830. gradientTransform="translate(-8.0000004,15.967633)"
  831. y1="27"
  832. x1="16">
  833. <stop
  834. id="stop3444-9"
  835. stop-color="#000"
  836. offset="0" />
  837. <stop
  838. id="stop3446-6"
  839. stop-color="#000"
  840. stop-opacity="0"
  841. offset="1" />
  842. </linearGradient>
  843. <linearGradient
  844. id="linearGradient4714"
  845. y2="5.0353999"
  846. xlink:href="#linearGradient3198"
  847. gradientUnits="userSpaceOnUse"
  848. x2="17.799"
  849. gradientTransform="matrix(0.9670244,0,0,0.5702668,180.4877,45.721459)"
  850. y1="12.038"
  851. x1="25.268999" />
  852. <linearGradient
  853. id="linearGradient4717"
  854. y2="9.2770004"
  855. gradientUnits="userSpaceOnUse"
  856. x2="21.440001"
  857. gradientTransform="matrix(1.012819,0,0,0.6841522,179.44027,44.46872)"
  858. y1="19.122"
  859. x1="29.455">
  860. <stop
  861. id="stop3230-9"
  862. stop-color="#373737"
  863. offset="0" />
  864. <stop
  865. id="stop3232-7"
  866. stop-color="#373737"
  867. stop-opacity="0"
  868. offset="1" />
  869. </linearGradient>
  870. <linearGradient
  871. inkscape:collect="always"
  872. xlink:href="#linearGradient3409"
  873. id="linearGradient3343"
  874. gradientUnits="userSpaceOnUse"
  875. gradientTransform="matrix(0.06809735,0,0,0.041103,-0.29982463,21.126084)"
  876. x1="302.85999"
  877. y1="366.64999"
  878. x2="302.85999"
  879. y2="609.51001" />
  880. <radialGradient
  881. inkscape:collect="always"
  882. xlink:href="#linearGradient5060"
  883. id="radialGradient3345"
  884. gradientUnits="userSpaceOnUse"
  885. gradientTransform="matrix(0.06809735,0,0,0.041103,-0.28642307,21.126084)"
  886. cx="605.71002"
  887. cy="486.64999"
  888. r="117.14" />
  889. <radialGradient
  890. inkscape:collect="always"
  891. xlink:href="#linearGradient5060"
  892. id="radialGradient3347"
  893. gradientUnits="userSpaceOnUse"
  894. gradientTransform="matrix(-0.06809735,0,0,0.041103,48.91144,21.126084)"
  895. cx="605.71002"
  896. cy="486.64999"
  897. r="117.14" />
  898. <linearGradient
  899. inkscape:collect="always"
  900. xlink:href="#linearGradient3415"
  901. id="linearGradient3349"
  902. gradientUnits="userSpaceOnUse"
  903. gradientTransform="matrix(0.957412,0,0,0.952331,1.022766,0.133307)"
  904. x1="29.870001"
  905. y1="32.285999"
  906. x2="24.841999"
  907. y2="14.158" />
  908. <linearGradient
  909. inkscape:collect="always"
  910. xlink:href="#linearGradient3417"
  911. id="linearGradient3351"
  912. gradientUnits="userSpaceOnUse"
  913. gradientTransform="matrix(0.957412,0,0,0.952331,1.022766,0.133307)"
  914. x1="8.6528997"
  915. y1="9.5865002"
  916. x2="21.305"
  917. y2="32.498001" />
  918. <linearGradient
  919. inkscape:collect="always"
  920. xlink:href="#linearGradient3419"
  921. id="linearGradient3353"
  922. gradientUnits="userSpaceOnUse"
  923. gradientTransform="matrix(0.950085,0,0,0.965659,1.243978,0.255342)"
  924. x1="23.118999"
  925. y1="9.5830002"
  926. x2="22.441"
  927. y2="34.226002" />
  928. <linearGradient
  929. inkscape:collect="always"
  930. xlink:href="#linearGradient3421"
  931. id="linearGradient3355"
  932. gradientUnits="userSpaceOnUse"
  933. gradientTransform="matrix(0.997583,0,0,0.989941,0.104141,0.07028871)"
  934. x1="11.048"
  935. y1="9.1463003"
  936. x2="26.177999"
  937. y2="30.343" />
  938. <linearGradient
  939. inkscape:collect="always"
  940. xlink:href="#linearGradient3423"
  941. id="linearGradient3357"
  942. gradientUnits="userSpaceOnUse"
  943. gradientTransform="matrix(0.953506,0,0,0.947873,1.141528,1.205591)"
  944. x1="20.339001"
  945. y1="19.636999"
  946. x2="48.845001"
  947. y2="49.730999" />
  948. <linearGradient
  949. inkscape:collect="always"
  950. xlink:href="#linearGradient3425"
  951. id="linearGradient3359"
  952. gradientUnits="userSpaceOnUse"
  953. gradientTransform="matrix(1.236157,0,0,0.896051,-1.08182,2.830699)"
  954. x1="11.492"
  955. y1="1.6538"
  956. x2="17.198999"
  957. y2="26.729" />
  958. <radialGradient
  959. inkscape:collect="always"
  960. xlink:href="#radialGradient3427"
  961. id="radialGradient3361"
  962. gradientUnits="userSpaceOnUse"
  963. gradientTransform="matrix(1,0,0,0.73779,0,9.844321)"
  964. cx="37.495998"
  965. cy="39.509998"
  966. r="2.51" />
  967. <linearGradient
  968. inkscape:collect="always"
  969. xlink:href="#linearGradient3429"
  970. id="linearGradient3363"
  971. gradientUnits="userSpaceOnUse"
  972. gradientTransform="matrix(1,0,0,0.744756,0,9.569132)"
  973. x1="40.252998"
  974. y1="42.319"
  975. x2="36.452"
  976. y2="38" />
  977. <radialGradient
  978. inkscape:collect="always"
  979. xlink:href="#linearGradient5060"
  980. id="radialGradient3365"
  981. gradientUnits="userSpaceOnUse"
  982. gradientTransform="matrix(0.4206982,0,0,0.10417298,22.599585,24.664379)"
  983. cx="37.375"
  984. cy="33.188"
  985. r="14.625" />
  986. <radialGradient
  987. inkscape:collect="always"
  988. xlink:href="#linearGradient3346"
  989. id="radialGradient3367"
  990. gradientUnits="userSpaceOnUse"
  991. gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,-3.381692,-11.515501)"
  992. cx="27.5"
  993. cy="22.614"
  994. r="6.5" />
  995. <linearGradient
  996. inkscape:collect="always"
  997. xlink:href="#linearGradient3228"
  998. id="linearGradient3369"
  999. gradientUnits="userSpaceOnUse"
  1000. gradientTransform="matrix(1.2744752,0,0,1.0288787,9.68707,31.233392)"
  1001. x1="27.681"
  1002. y1="14.243"
  1003. x2="21.440001"
  1004. y2="9.2770004" />
  1005. <linearGradient
  1006. inkscape:collect="always"
  1007. xlink:href="#linearGradient3198"
  1008. id="linearGradient3371"
  1009. gradientUnits="userSpaceOnUse"
  1010. gradientTransform="matrix(1.2818465,0,0,0.9398128,9.517531,32.213117)"
  1011. x1="25.268999"
  1012. y1="12.038"
  1013. x2="17.799"
  1014. y2="5.0353999" />
  1015. <linearGradient
  1016. inkscape:collect="always"
  1017. xlink:href="#linearGradient3220"
  1018. id="linearGradient3374"
  1019. gradientUnits="userSpaceOnUse"
  1020. gradientTransform="matrix(1.0342194,0,0,1.0195661,14.178737,6.1424369)"
  1021. x1="29"
  1022. y1="33"
  1023. x2="19"
  1024. y2="27" />
  1025. <radialGradient
  1026. inkscape:collect="always"
  1027. xlink:href="#linearGradient3189"
  1028. id="radialGradient3376"
  1029. gradientUnits="userSpaceOnUse"
  1030. gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,12.430811,30.803565)"
  1031. cx="26.625"
  1032. cy="26.577"
  1033. r="12.5" />
  1034. <radialGradient
  1035. inkscape:collect="always"
  1036. xlink:href="#linearGradient3171"
  1037. id="radialGradient3378"
  1038. gradientUnits="userSpaceOnUse"
  1039. gradientTransform="matrix(1.2818465,0,0,0.46520969,9.51753,20.396884)"
  1040. cx="25.017"
  1041. cy="13.192"
  1042. r="9.7512999" />
  1043. <linearGradient
  1044. inkscape:collect="always"
  1045. xlink:href="#linearGradient4402"
  1046. id="linearGradient3380"
  1047. gradientUnits="userSpaceOnUse"
  1048. gradientTransform="matrix(1.2818465,0,0,0.9398128,9.51753,15.17625)"
  1049. x1="27.216999"
  1050. y1="15.984"
  1051. x2="22.035999"
  1052. y2="7.1352" />
  1053. <linearGradient
  1054. inkscape:collect="always"
  1055. xlink:href="#linearGradient3198"
  1056. id="linearGradient3382"
  1057. gradientUnits="userSpaceOnUse"
  1058. gradientTransform="matrix(1.0293043,0,0,1.0285483,14.331497,6.1942056)"
  1059. x1="30.375999"
  1060. y1="25.27"
  1061. x2="22"
  1062. y2="19" />
  1063. <linearGradient
  1064. inkscape:collect="always"
  1065. xlink:href="#linearGradient3198"
  1066. id="linearGradient3384"
  1067. gradientUnits="userSpaceOnUse"
  1068. gradientTransform="matrix(1.0342194,0,0,1.019566,15.063398,5.4633669)"
  1069. x1="17.605"
  1070. y1="18.312"
  1071. x2="23"
  1072. y2="18.312" />
  1073. <radialGradient
  1074. inkscape:collect="always"
  1075. xlink:href="#linearGradient3198"
  1076. id="radialGradient3386"
  1077. gradientUnits="userSpaceOnUse"
  1078. gradientTransform="matrix(1.0342194,0,0,0.1874519,22.439811,23.744069)"
  1079. cx="18"
  1080. cy="14.19"
  1081. r="5.5054998" />
  1082. <linearGradient
  1083. inkscape:collect="always"
  1084. xlink:href="#linearGradient3373"
  1085. id="linearGradient3388"
  1086. gradientUnits="userSpaceOnUse"
  1087. gradientTransform="translate(-8.0000004,15.967633)"
  1088. x1="16"
  1089. y1="27.5"
  1090. x2="20.5"
  1091. y2="25.5" />
  1092. <linearGradient
  1093. inkscape:collect="always"
  1094. xlink:href="#linearGradient5060"
  1095. id="linearGradient3390"
  1096. gradientUnits="userSpaceOnUse"
  1097. gradientTransform="translate(-8.0000004,15.967633)"
  1098. x1="16"
  1099. y1="27"
  1100. x2="21.5"
  1101. y2="27" />
  1102. <radialGradient
  1103. inkscape:collect="always"
  1104. xlink:href="#linearGradient3346"
  1105. id="radialGradient3392"
  1106. gradientUnits="userSpaceOnUse"
  1107. gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,-3.381692,-11.515501)"
  1108. cx="27.5"
  1109. cy="22.614"
  1110. r="6.5" />
  1111. <radialGradient
  1112. inkscape:collect="always"
  1113. xlink:href="#linearGradient5060"
  1114. id="radialGradient3394"
  1115. gradientUnits="userSpaceOnUse"
  1116. gradientTransform="matrix(0.4206982,0,0,0.10417298,22.599585,24.664379)"
  1117. cx="37.375"
  1118. cy="33.188"
  1119. r="14.625" />
  1120. <linearGradient
  1121. inkscape:collect="always"
  1122. xlink:href="#linearGradient3228"
  1123. id="linearGradient3396"
  1124. gradientUnits="userSpaceOnUse"
  1125. gradientTransform="matrix(1.2744752,0,0,1.0288787,9.68707,31.233392)"
  1126. x1="27.681"
  1127. y1="14.243"
  1128. x2="21.440001"
  1129. y2="9.2770004" />
  1130. <linearGradient
  1131. inkscape:collect="always"
  1132. xlink:href="#linearGradient3198"
  1133. id="linearGradient3398"
  1134. gradientUnits="userSpaceOnUse"
  1135. gradientTransform="matrix(1.2818465,0,0,0.9398128,9.517531,32.213117)"
  1136. x1="25.268999"
  1137. y1="12.038"
  1138. x2="17.799"
  1139. y2="5.0353999" />
  1140. <linearGradient
  1141. inkscape:collect="always"
  1142. xlink:href="#linearGradient3220"
  1143. id="linearGradient3400"
  1144. gradientUnits="userSpaceOnUse"
  1145. gradientTransform="matrix(1.0342194,0,0,1.0195661,14.178737,6.1424371)"
  1146. x1="29"
  1147. y1="33"
  1148. x2="19"
  1149. y2="27" />
  1150. <radialGradient
  1151. inkscape:collect="always"
  1152. xlink:href="#linearGradient3189"
  1153. id="radialGradient3402"
  1154. gradientUnits="userSpaceOnUse"
  1155. gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,12.430811,30.803565)"
  1156. cx="26.625"
  1157. cy="26.577"
  1158. r="12.5" />
  1159. <radialGradient
  1160. inkscape:collect="always"
  1161. xlink:href="#linearGradient3171"
  1162. id="radialGradient3404"
  1163. gradientUnits="userSpaceOnUse"
  1164. gradientTransform="matrix(1.2818465,0,0,0.46520969,9.51753,20.396884)"
  1165. cx="25.017"
  1166. cy="13.192"
  1167. r="9.7512999" />
  1168. <linearGradient
  1169. inkscape:collect="always"
  1170. xlink:href="#linearGradient4402"
  1171. id="linearGradient3406"
  1172. gradientUnits="userSpaceOnUse"
  1173. gradientTransform="matrix(1.2818465,0,0,0.9398128,9.51753,15.17625)"
  1174. x1="27.216999"
  1175. y1="15.984"
  1176. x2="22.035999"
  1177. y2="7.1352" />
  1178. <linearGradient
  1179. inkscape:collect="always"
  1180. xlink:href="#linearGradient3198"
  1181. id="linearGradient3408"
  1182. gradientUnits="userSpaceOnUse"
  1183. gradientTransform="matrix(1.0342194,0,0,1.019566,15.063398,5.4633671)"
  1184. x1="17.605"
  1185. y1="18.312"
  1186. x2="23"
  1187. y2="18.312" />
  1188. <radialGradient
  1189. inkscape:collect="always"
  1190. xlink:href="#linearGradient3198"
  1191. id="radialGradient3410"
  1192. gradientUnits="userSpaceOnUse"
  1193. gradientTransform="matrix(1.0342194,0,0,0.1874519,22.439811,23.744069)"
  1194. cx="18"
  1195. cy="14.19"
  1196. r="5.5054998" />
  1197. <linearGradient
  1198. inkscape:collect="always"
  1199. xlink:href="#linearGradient3373"
  1200. id="linearGradient3412"
  1201. gradientUnits="userSpaceOnUse"
  1202. gradientTransform="translate(-8.0000004,15.967633)"
  1203. x1="16"
  1204. y1="27.5"
  1205. x2="20.5"
  1206. y2="25.5" />
  1207. <linearGradient
  1208. inkscape:collect="always"
  1209. xlink:href="#linearGradient5060"
  1210. id="linearGradient3414"
  1211. gradientUnits="userSpaceOnUse"
  1212. gradientTransform="translate(-8.0000004,15.967633)"
  1213. x1="16"
  1214. y1="27"
  1215. x2="21.5"
  1216. y2="27" />
  1217. <linearGradient
  1218. inkscape:collect="always"
  1219. xlink:href="#linearGradient3409"
  1220. id="linearGradient3416"
  1221. gradientUnits="userSpaceOnUse"
  1222. gradientTransform="matrix(0.06809735,0,0,0.041103,-0.29982463,21.126084)"
  1223. x1="302.85999"
  1224. y1="366.64999"
  1225. x2="302.85999"
  1226. y2="609.51001" />
  1227. <linearGradient
  1228. inkscape:collect="always"
  1229. xlink:href="#linearGradient3415"
  1230. id="linearGradient3418"
  1231. gradientUnits="userSpaceOnUse"
  1232. gradientTransform="matrix(0.957412,0,0,0.952331,1.022766,0.133307)"
  1233. x1="29.870001"
  1234. y1="32.285999"
  1235. x2="24.841999"
  1236. y2="14.158" />
  1237. <linearGradient
  1238. inkscape:collect="always"
  1239. xlink:href="#linearGradient3417"
  1240. id="linearGradient3420"
  1241. gradientUnits="userSpaceOnUse"
  1242. gradientTransform="matrix(0.957412,0,0,0.952331,1.022766,0.133307)"
  1243. x1="8.6528997"
  1244. y1="9.5865002"
  1245. x2="21.305"
  1246. y2="32.498001" />
  1247. <linearGradient
  1248. inkscape:collect="always"
  1249. xlink:href="#linearGradient3419"
  1250. id="linearGradient3422"
  1251. gradientUnits="userSpaceOnUse"
  1252. gradientTransform="matrix(0.950085,0,0,0.965659,1.243978,0.255342)"
  1253. x1="23.118999"
  1254. y1="9.5830002"
  1255. x2="22.441"
  1256. y2="34.226002" />
  1257. <linearGradient
  1258. inkscape:collect="always"
  1259. xlink:href="#linearGradient3421"
  1260. id="linearGradient3424"
  1261. gradientUnits="userSpaceOnUse"
  1262. gradientTransform="matrix(0.997583,0,0,0.989941,0.104141,0.07028871)"
  1263. x1="11.048"
  1264. y1="9.1463003"
  1265. x2="26.177999"
  1266. y2="30.343" />
  1267. <linearGradient
  1268. inkscape:collect="always"
  1269. xlink:href="#linearGradient3423"
  1270. id="linearGradient3426"
  1271. gradientUnits="userSpaceOnUse"
  1272. gradientTransform="matrix(0.953506,0,0,0.947873,1.141528,1.205591)"
  1273. x1="20.339001"
  1274. y1="19.636999"
  1275. x2="48.845001"
  1276. y2="49.730999" />
  1277. <linearGradient
  1278. inkscape:collect="always"
  1279. xlink:href="#linearGradient3425"
  1280. id="linearGradient3428"
  1281. gradientUnits="userSpaceOnUse"
  1282. gradientTransform="matrix(1.236157,0,0,0.896051,-1.08182,2.830699)"
  1283. x1="11.492"
  1284. y1="1.6538"
  1285. x2="17.198999"
  1286. y2="26.729" />
  1287. <radialGradient
  1288. inkscape:collect="always"
  1289. xlink:href="#radialGradient3427"
  1290. id="radialGradient3430"
  1291. gradientUnits="userSpaceOnUse"
  1292. gradientTransform="matrix(1,0,0,0.73779,0,9.844321)"
  1293. cx="37.495998"
  1294. cy="39.509998"
  1295. r="2.51" />
  1296. <linearGradient
  1297. inkscape:collect="always"
  1298. xlink:href="#linearGradient3429"
  1299. id="linearGradient3432"
  1300. gradientUnits="userSpaceOnUse"
  1301. gradientTransform="matrix(1,0,0,0.744756,0,9.569132)"
  1302. x1="40.252998"
  1303. y1="42.319"
  1304. x2="36.452"
  1305. y2="38" />
  1306. <radialGradient
  1307. inkscape:collect="always"
  1308. xlink:href="#linearGradient5060"
  1309. id="radialGradient3434"
  1310. gradientUnits="userSpaceOnUse"
  1311. gradientTransform="matrix(0.4206982,0,0,0.10417298,22.599585,24.664379)"
  1312. cx="37.375"
  1313. cy="33.188"
  1314. r="14.625" />
  1315. <radialGradient
  1316. inkscape:collect="always"
  1317. xlink:href="#linearGradient3346"
  1318. id="radialGradient3436"
  1319. gradientUnits="userSpaceOnUse"
  1320. gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,-3.381692,-11.515501)"
  1321. cx="27.5"
  1322. cy="22.614"
  1323. r="6.5" />
  1324. <linearGradient
  1325. inkscape:collect="always"
  1326. xlink:href="#linearGradient3228"
  1327. id="linearGradient3438"
  1328. gradientUnits="userSpaceOnUse"
  1329. gradientTransform="matrix(1.2744752,0,0,1.0288787,9.68707,31.233392)"
  1330. x1="27.681"
  1331. y1="14.243"
  1332. x2="21.440001"
  1333. y2="9.2770004" />
  1334. <linearGradient
  1335. inkscape:collect="always"
  1336. xlink:href="#linearGradient3198"
  1337. id="linearGradient3440"
  1338. gradientUnits="userSpaceOnUse"
  1339. gradientTransform="matrix(1.2818465,0,0,0.9398128,9.517531,32.213117)"
  1340. x1="25.268999"
  1341. y1="12.038"
  1342. x2="17.799"
  1343. y2="5.0353999" />
  1344. <radialGradient
  1345. inkscape:collect="always"
  1346. xlink:href="#linearGradient3189"
  1347. id="radialGradient3442"
  1348. gradientUnits="userSpaceOnUse"
  1349. gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,12.430811,30.803565)"
  1350. cx="26.625"
  1351. cy="26.577"
  1352. r="12.5" />
  1353. <radialGradient
  1354. inkscape:collect="always"
  1355. xlink:href="#linearGradient3171"
  1356. id="radialGradient3444"
  1357. gradientUnits="userSpaceOnUse"
  1358. gradientTransform="matrix(1.2818465,0,0,0.46520969,9.51753,20.396884)"
  1359. cx="25.017"
  1360. cy="13.192"
  1361. r="9.7512999" />
  1362. <linearGradient
  1363. inkscape:collect="always"
  1364. xlink:href="#linearGradient4402"
  1365. id="linearGradient3446"
  1366. gradientUnits="userSpaceOnUse"
  1367. gradientTransform="matrix(1.2818465,0,0,0.9398128,9.51753,15.17625)"
  1368. x1="27.216999"
  1369. y1="15.984"
  1370. x2="22.035999"
  1371. y2="7.1352" />
  1372. <radialGradient
  1373. inkscape:collect="always"
  1374. xlink:href="#linearGradient3198"
  1375. id="radialGradient3448"
  1376. gradientUnits="userSpaceOnUse"
  1377. gradientTransform="matrix(1.0342194,0,0,0.1874519,22.439811,23.744069)"
  1378. cx="18"
  1379. cy="14.19"
  1380. r="5.5054998" />
  1381. <linearGradient
  1382. inkscape:collect="always"
  1383. xlink:href="#linearGradient3373"
  1384. id="linearGradient3450"
  1385. gradientUnits="userSpaceOnUse"
  1386. gradientTransform="translate(-8.0000004,15.967633)"
  1387. x1="16"
  1388. y1="27.5"
  1389. x2="20.5"
  1390. y2="25.5" />
  1391. <linearGradient
  1392. inkscape:collect="always"
  1393. xlink:href="#linearGradient5060"
  1394. id="linearGradient3452"
  1395. gradientUnits="userSpaceOnUse"
  1396. gradientTransform="translate(-8.0000004,15.967633)"
  1397. x1="16"
  1398. y1="27"
  1399. x2="21.5"
  1400. y2="27" />
  1401. </defs>
  1402. <image
  1403. id="icon:16-4"
  1404. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAAXNSR0IArs4c6QAAADBQTFRFfwAA AAAAAH8Af38AAAB/fwB/AH9/wMDAf39//wAAAP8A//8AAAD//wD/AP//////LRS/BQAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH2QwFDhwU/fhe XgAAADNJREFUCNdj4OgAgwaG9nIwqGBoFwQD/Az5RihD4gdMqr8RTQSuRlBQ/v9H7ObALIU5AwA7 0yVhGrIDjgAAAABJRU5ErkJggg== "
  1405. height="16"
  1406. width="16"
  1407. y="248"
  1408. x="344" />
  1409. <image
  1410. id="icon:16-8"
  1411. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAAXNSR0IArs4c6QAAAelQTFRFAAAh AAAAAQIBAgMCBgYGBgcGBwcGBwgGCAgHCQkICgsJCwwKDQ4MDxANExQSGB8RGCARGSARIyQjJzAZ JjEaJzEZJzEaJzIaJzIbKDIaKDMbKTMdKDQbKTQcLzEtKTUcNDYzNkMjNkQjNkUjN0UjN0UlO0om O0onPEsnPEwnRlYrRlcsTFY9TFo6VFhRVVlSTl42TmEyT2IyT2MyWl5XU2U3X2JbYmVeY2ZgYWpV ZGhgZWlhYW5NZHFRZXFSam5manVZb3NraXhQZXxBdHdydHhwdnlyd3pzc31keHx0eX11c4JffX95 fYB5doVgfoB6foF6eoRsdYlUeYdkgYN9gYN+e4hlfIlngoV+g4Z+hIaBfotphoeCf4xrgI1th4mD h4qCgo5wiIuDhJBxioyHi4yHhJB0jI+HjY+KjZCIj5GMhZhpkZKNkpWNk5WQjJ1ylpiTjp90mJmV mJmWl5qSkKB2mpuXmZyUkqJ5lKJ9laR/naCYmaOKl6aBoKGdoqWco6ado6aeorOHpLWKpbaNsLGu qLiOqbmQsrSxqrqStLaxrLyUrr2Xr76Yt7m0sb+bwMG+zM3Lzc7MztHIzdLGz9PL09bN1tfV19fV 19jW19jX29vZ2d7U3d3c3d7c3d7d4OPb7O3q8vPx6MWZegAAAAF0Uk5TAEDm2GYAAAABYktHRACI BR1IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH2QwFDhg3O/PqKAAAAPJJREFUGNNjYKgu z81MigzwcnW0tzY3YWBo6Joxf95cMJg9scNFn6FhugIHFLCxyRXrM9TP4u3v7enubG9raW5iLNMD CvCkJSfGxUaHhwX7MRaABLhrqyorSgvzs4OcGfNAAlwOcwLtbG0MtLS0GXNAApzeNQumOJkaGhkZ M2aABNh1LKdOU1VUUlJWYUwBCbDpTvZQV1NT09DQZIwHC0iLCYsuWrRooaQkYxRIgFVEXEJCSkpG VlaeMQQkwMIPAQKCgoz+egwNM4WYmWCAz02fobFv0oTWuqK8rNSYUB93C30GhuqS3PSECF9PoPet zEwYANj9SWxq1mEXAAAAAElFTkSuQmCC "
  1412. height="16"
  1413. width="16"
  1414. y="248"
  1415. x="320" />
  1416. <image
  1417. id="icon:16-32"
  1418. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1QoSFSUbRvzYGQAAAilJREFUOMt9k89LVFEUxz93fDMq ZEGG0cLAEgpXrly1qEXLNu2C0mqRuggXQWCtgja1DkqwRWKC/gG1LSUIwqI0UCOdsRgrHX2Ome/d X6fFG2dGLQ8c7r3ccz/3ew7nqKHngweNsf3W2u44jhuMMVTcYmz1OXFn3XoUx4+11g8CpdT9o03H ek62tKYztXWAgPBP896xXiySX8o3jk+8vp1bzKYD4PqJltb0la5Opj9Ns5+JJOTTbafo7enN5Baz PYGI1CmV4svcHKMvH+HFISJ4cXjvEUnceUHE4b2j80I/qZRCRA4FFXnC1MdZwOG9lEDJ422QF8F5 C4B1yVoF8DQ2NSTB3uOxeO/wJUBstgjXlwk3CwA453YCRISpDzP09d7l2cgTlgt5BME5SyH8SRRt JoFKJR/uAXihviHDqzcvuNHVR2FtmcGRh6wVfkGNpf5AbQlAKYVdAC+e2el5Vn/8oaP9HJmglveT nxHvy49Qle2eFBAgcNzsvsXw2ABvJycI0gqoKSlXOxS43UUE+Dr7jUtXL4IIKHg3PlO+0zrmzPn2 8tk5v6sGgPMuqZFKAdBxtq1KukKlUvsoECiubv2/Davy31EDpZQGqW8+3szCwkK5XfezxiOHieII pdTvANRwNjd/bWxsNNjYKBKGIWG4RhRFGGuw1mK3J9FarDVoo1lZKWjgaSDi7+SXvpPNzV82xmS0 1pVRNqYM2R5lrTVGm9hYOyQi9/4C16KCF5hN9R0AAAAASUVORK5CYII= "
  1419. height="16"
  1420. width="16"
  1421. y="248"
  1422. x="296" />
  1423. <image
  1424. id="icon:32-4"
  1425. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAAXNSR0IArs4c6QAAADBQTFRFAAB/ AAAAAH8AAH9/fwAAfwB/f38AwMDAf39/AAD/AP8AAP///wAA/wD///8A////GNcbwAAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwaEjoVVGfw MQAAAK5JREFUKM+V0TEOwyAMBVCPjOnGgRgycB+jLglSJLzlGL1Kh16mG1tqcJPYWar+jSdiBxvg d0hnBnCbTgVYUScNDOqL0iDdzvh/oVXR4PmcZg1rpdphy1/gtgIiDCjgRTwVRKnB0pqUEAKpG0uD p6qxUIivUXcZ+Yb5Dz7HA3g474VLDBp8iGRfy2+x4Gkf4T7RPsJjwNPjAncBZxaVeXNnzYKZzFIL TtWA67u95gPomJ5K/cPWXwAAAABJRU5ErkJggg== "
  1426. height="32"
  1427. width="32"
  1428. y="232"
  1429. x="256" />
  1430. <image
  1431. id="icon:32-8"
  1432. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IArs4c6QAAAvdQTFRFAAAA CAsHCxIGDxENXAQAawACFRkReAEAfQAAggEAiAABHB8TGyAYkwABhQYIGycUHyYUIiUZISYepAMA pAMEVhobtwAAIyoYsAMAIS0aKCsfehQXJC8WIzAcng0Rnw4KKzAoKTIkMDMmaiQjygsBMjUoLTgf NDcqLjogMDocLj0eMjwdMz0uNEMjPEAyOEgoO0kkNkwqP00nPkw3jTc5ziYmQVAqPVIqOVQrRk9A bUZFQ1YpRVU0RVgqRVkxTFg9U1RSTlhImkJEZlFKe0xIUlhPTV074zMzVVtSVV5PUmMwUWU2VmQ9 VWVDXGJY2z8+YGJfYmRhZGZjilxcaGdfY2lfXW1LYGxQwVBPZ2lmnVpcW3BHV3JIamxp6UtIXXRQ bm1l6ExNbG5rcXBoxFlaZXZTcHJvY3pWpWZlZntRaXpXc3Vyb3lXWoBYbnxUdXhpb3ppdHpwtWhn d3l2enlxzmJiXoRccn9ig3h4b4JScoFYnXNxdoFee316coNfgX5weoB2foB9gYB4dYZihYB/eYZp foR6gYOAao5gq3p6eYxbeotmhId4hIaDgoh+iId/goxpeo9knoKBgI5lh4mGkoaGvHt6jYiHgo5x hoyCiYuIhJJo13h2hJFziY+Fl4uLjY6Lko2MgJZqkZCIj5GOipZ4h5hziZhukZOQgJ1wf593kJp3 lJaTkZiOhp53iJ5yj5qJlpiVmZmQjaFvkaB1lpySjKJ2lZ97mZuYg6aDlKN4laKEiad4nJ6bm6GX hqmGn6Cdl6Z7n6OTi6uDoaOgj6uJmKmEk6yEoKacjbCNpaekqKeepKqgnbF+m7GEwaSjqauoo7KG lreNy6eorrCsqLeLsbOwp7mTksdQrrmnjstTtri137Gup8Ohury5v761vcGwvsC9rcmnwcPAs8yj xMbDwsi+x8nGwcy6ys3Jvta6y9HGud2R0tXF0tTRyNvHxt3C0+fS4eTg2e3Y5ujl6uzo3/Le7vDt 8fPw6/rt9Prv8vz3/v/8GKc6kQAAAAF0Uk5TAEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3X AAAN1wFCKJt4AAAAB3RJTUUH2QwFDiQM+Qt68wAAAsNJREFUOMtjYKACOH0CAfbt27R17drFi+fN 7Otra2sDy5959/UHVvD9y9MGkP53X9+9xA7efXlcyMBw4uu7jYEBQBAYFBQZm5SUlp1dXFvb2N7b O+XCu0/JQAU/XgbqqcOAKggoQYDOgqdfEkAKngeoXr9+9SoQXQSDcxfPnj137uxZxQUPP4VAFCjs 3r0dBFYDwbLVy4Bg6YolQLDiAMSEQKVjx44dBIFdQLBly7Ytm5esOXNz8e0ra5YwMOz78TxIau66 uTNmTACCbiBobm5uXfP1y7un7z59XcHAsPXH80ip5U8erZ8NAZMnTu6qrNn64u2DA9cu3F7AwLDp x/NYofJHvz8er8vJyslKTU31sbUt2Prs2YbkjSsOAE1Y/ONpkmDdoruff75aWZWXlxft7eXl1XPo 9f1654oWoEOBCh6m8YSHh6cfff/tsK+bmREI9LtcniYnLCIvl7GQYeb329ncYWFhmYc/fNtjZw0B C6XvzDF1j0v0T1nI0Pf9WjGbffzJjz8fxejrQsEU0fMZ7JycnBxRCxnavl4oZrO59OtDh7mBvr6+ ARjkWwVXs7Cyc/F2LmRo+Hqqlklt1SpDTTU1NRBW09TUNJ6ubMLHKywRsZCBofDLgUZmDQstDQ0N TRDQ0gYCLc/pTiJiKqXzk0AKNrYzysjIyMrIlO2HgDIg13LqpKJJUze6MjAkf1nSyyguCQL7/0DA fhlZWRnH3oW9TTuAChI+LZjCKAAGuTshIJcfyBFvX7OgBGRC6Kf+WcyMWEDakgUla8AKmtoXrFiz ccfeA6hgxawpJSuACvxeLijBAG9ulUTWTmlqmgVSsOMxpopbN5qmLJmyYkk7MMkxeGx8/PLl86eP H967d/vatStXLpw6cuTAgmv3rkxxcDhyBJRzXLGAxgtXjkw58PzLKZz5ccqCHUcOrJlCjawNAFEy wdh5APi1AAAAAElFTkSuQmCC "
  1433. height="32"
  1434. width="32"
  1435. y="232"
  1436. x="216" />
  1437. <image
  1438. id="icon:48-4"
  1439. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAAXNSR0IArs4c6QAAADBQTFRFAAB/ AAAAAH8AAH9/fwAAfwB/f38AwMDAf39/AAD/AP8AAP///wAA/wD///8A////GNcbwAAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwaEjoew7Up uQAAAO9JREFUOMvdlDsOgzAMhhk7li0bl7FEBo5TKWykElKycY+egzGX6UTUJbVLUSh2lqpTPfrT 72ecqvqlecHIf0qCWQSTESyiYJFAfybAU6ygr5m5fwDUoQSUScn4N2jiTuC2WRFI8SNSzjFlQhl2 Q8yEBPuqpnRfc6OgN8YyhSJBBjmS8o7SW1YVRgIA7VkfY3sJIcyadT62pAAB6AJQ4NE/2wya1xNE oNEvAoCuA8vHPlIkLe1jhKC9tEEMVtj5to/io+Y34CTwKIHbBoRTQ3Cl45Su9kxneyx2iPV6zwdz acFypf9gwDS+9FN888M8AQuKNEUITzvFAAAAAElFTkSuQmCC "
  1440. height="48"
  1441. width="48"
  1442. y="216"
  1443. x="120" />
  1444. <image
  1445. id="icon:48-8"
  1446. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAAXNSR0IArs4c6QAAAwBQTFRFAAAA CQwIDRMHTQEAXQAAagABFBkQbgAAeAAAhwABGx8TlQACjwMAmAEAIyIcoAABHiUTogAAYBMPIiUY rAAAkAgPeBEQIyoYHywYvAACJSoiwwAAKCwf0AAAJzIaLTAj3AABJDUbKjMlMDMmiRoaKzYdkBgd LTgfMzYpaCcoVS0qMDocLzkqNjksMzweLz8fTDo4PT88NUQkNkYmYjg4tyIhqCcmPkkvNk0liDM2 P00ntSsnR0lGRFIsP1QsgUFEoTk4S1JDTFM/RVgrTVVAvjU0QFsvTFZGuTk4T1k5UlZSUlhOT1tA RWAzbVJNTl49TWAyWVxOU2E6XFxXWV5VYVxbd1dYVmk1YGJfgVlXx0ZIX2RVY2NbX2VcXWhLXGtD kVpYWW1CZWdkT3FCW21KaWpoXXM3Zmxje2dkZnBPbWxkZ29ZZXRLbnBtZ3ZNbHJoa3VTYnpEZXpN aHlWcnRxjm1ucXhj1ltclm1qX4BRaX9ChnJvcnxapGxpbX5adHpwXYNbd3l2enlxcYBXcINTcoNf eYBqfH57lXd3dYRaf392eYNhaYhgtnByfIJ4dIlSd4hk2GtqgYR1xnBxgYOAg4Z3q3p6eI5jgYto hYeEfI1piYiAcJJnf45khIqAg41zcpRgk4eHiYuIdJZrhJNpgpNv5XZ1ko2MjpCNipVxhJhmkpGJ jJR9iJdtjZOJhphzhJpwkZOQjJeGd591f550ipt3jZp8jpxy4oKAlZeUkpx5mJiPk5qQmJqX1IuM kKF8hKV4lqB8k6J3kKRym52atJiXlqOEm6CWkah7oaOgiq2KzJmYoKacj66EnKuAn6qYm698yZ6h nK6Ip6mm3pqZqKqhnbF+mLOIpLOHlbiUrrCtp7aLp7iSsbWljcpStLWyoMCXt7m2pcGflc1cqMWi vb+8vcGwwsTBsc+uxsjFy8rByszJzc/Muti40tTR2NvRyeHFyuSn2dzY3+He1O3T5efj6Orm3O/a 7e/r8PPv5fjj6/rt9Pfz9Prv8/34/P76GEV+GgAAAAF0Uk5TAEDm2GYAAAABYktHRACIBR1IAAAA CXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwFDiIApueRXgAABJlJREFUSMfN1n1cE2UAwHEB 5R2loJwyxCASEaEgy4wosywRoxcqSoGYEGWSJLO0TNtKTwfhrCu8EIwT2kO8XiJ2wMJsikvtxWXW pM6lc8Bw0s4NZCE+z902oE8Sf/q93Xa33W97Pve5+zybMOHGxJw6Plp7e0t7Sytc6qrhUlIGFRWR Ksfxp0zWK/+rv9/SVcIff9xqMRnHwcSyMm48JotxnFgDjQZkNRkZcaqDSCTKzs7ORcRiCYRhGA4R lM7YwxahEfX3GMUPz+VFOIWNEIrWRyij0brGHqRGRMwdJSqKf46y70XBLwAGg2WVIwiL6OjoONNx 5sxv//Ir9BMSGkLp9ZYcZxB2BPqW09zW3La/eT9S71BRGRJK6fRsmiMICTt58odRjsIH8p2dUEgx OvNwENKEVNVX1VdWVfI+cyqVy+VCIc0w5hUwaEeBMORQ2yHkgFPDgYbahtovOTt2vO3vT2u15hR7 IBIK9+ziyXfJkQL5Ft6m1VuBnUpjGhHU1lbUVtiVVpQWl5bCtfiDN14uA6CupqkJwylA9yyFQSsM sgOEWwoKGiu3bEQ2bczPz8uHMhZBQA0oqrqaBJSaMqKghQsC5PLtZ/s6DxZv57wPrX0eyQRWdKVa rNYrVmBAQR0McgMC8vLyfr86ZOtsXJv1Klyynn4ASkhIeA3UWC5dqNma8oxSDbR8YDTAAI7gRN/g 0JDt4tHC11dnPOnwUfWR/kt/bH0zMREngQoF1f0Gg9jbOz09PSu/8a9e21Vbb2PCAiey7kdrd+vy p+LjxRKCQkFZv14PgywoIyNz7eenLw+cXbbICXx1wdL9CQpEIhxwgVWvk7h7JyUtWZKcWXiis2+g 72BCnBPY080yT0RGRt75bKoEJHKBjpG4uycnJ+8+32e7Onj59MrFwyNKUtz86c8f3uI3xc/H1/cO Bbo0iqyMFgbRMTH74FnqbVwWBzedlr/j9c0vO4OCg2dCQevEXKDVYK6usbGx+wYu7l28IG6Uzc9N Onbs48ff+uLrnS/O83sBQ4FFg4Lw8FkbNsyfM2vYHLST84rb+sMvTZwEeXh4rpPAYLNFo8ZdXaOj o+fHRPP40XCv9yrcZh9e7zZxkqeXl6+PIoUL1CrcxWXGdRB3uz347q2evn5TAgMfUqDTuplVKUcH KwudssIfU8z2uN3LL3BaUND9CiUK1rBKinBxmQoJpnL22gbtbN/PECxU3OdzU2BQ8MxHFbiKD2gA A/5gAfLeeafdMwSCheXb7pkWNG9bOS7lfmEVS5Gki4v/sNtGEKA3yHKFopygZXyQw4ISGIxlMkZg 2GSlTEpzgbkEJ6aPXWAqWjKdlkq5qzXNXCLDCQDvQ4qmlUql6j8AGn6O24MVZpl0bLkiDJA42uKC HAMY6+i/z0lFUowkMLgtI9DViquZsYJzf0rFUhlJoGGUSLkpKM3AEGMlMoIEJAlyczE8hZ/k0lT6 nh5jV1eXwaDX63U6HcMwWq1Wo9GoIYrSm1ki/q5EHJc6plEsben1kSZWr6Xg/cyyxLgmcZUSTp9m s+Ufi4oe57xPU0q1RgnoG/RvyYRrqMrAplybagcAAAAASUVORK5CYII= "
  1447. height="48"
  1448. width="48"
  1449. y="216"
  1450. x="64" />
  1451. <g
  1452. id="g3405"
  1453. transform="translate(7.9879866,216)">
  1454. <rect
  1455. id="rect4173"
  1456. style="opacity:0.40206;color:#000000;fill:url(#linearGradient3416);fill-rule:nonzero"
  1457. height="9.9821997"
  1458. width="32.881001"
  1459. y="36.195999"
  1460. x="7.8719001" />
  1461. <path
  1462. id="path5058"
  1463. style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3411);fill-rule:nonzero"
  1464. d="m 40.753,36.197 v 9.9816 c 3.5068,0.01879 8.4778,-2.2364 8.4778,-4.9914 0,-2.7551 -3.9134,-4.9902 -8.4778,-4.9902 z"
  1465. inkscape:connector-curvature="0" />
  1466. <path
  1467. id="path5018"
  1468. style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3413);fill-rule:nonzero"
  1469. d="m 7.8719,36.197 v 9.9816 c -3.5068,0.01879 -8.4778,-2.2364 -8.4778,-4.9914 0,-2.7551 3.9134,-4.9902 8.4778,-4.9902 z"
  1470. inkscape:connector-curvature="0" />
  1471. <rect
  1472. id="rect1316"
  1473. style="fill:url(#linearGradient3418);fill-rule:evenodd;stroke:url(#linearGradient3420);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1474. rx="4.8516998"
  1475. ry="4.8516998"
  1476. height="38.999001"
  1477. width="44.995998"
  1478. stroke-miterlimit="4"
  1479. y="3.5016"
  1480. x="1.5026" />
  1481. <rect
  1482. id="rect1314"
  1483. style="fill:url(#linearGradient3422);fill-rule:evenodd;stroke:url(#linearGradient3424);stroke-width:0.99496001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1484. rx="1.6452"
  1485. ry="1.6452"
  1486. height="29.021999"
  1487. width="37.088001"
  1488. stroke-miterlimit="4"
  1489. y="7.4826999"
  1490. x="5.4963002" />
  1491. <path
  1492. id="path1345"
  1493. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1494. d="m 8.0152,11.5 31.979,0"
  1495. stroke-miterlimit="4"
  1496. inkscape:connector-curvature="0" />
  1497. <path
  1498. id="path2264"
  1499. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1500. d="m 8.0152,13.5 31.979,0"
  1501. stroke-miterlimit="4"
  1502. inkscape:connector-curvature="0" />
  1503. <path
  1504. id="path2266"
  1505. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1506. d="m 8.0152,15.5 31.979,0"
  1507. stroke-miterlimit="4"
  1508. inkscape:connector-curvature="0" />
  1509. <path
  1510. id="path2268"
  1511. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1512. d="m 8.0152,17.5 31.979,0"
  1513. stroke-miterlimit="4"
  1514. inkscape:connector-curvature="0" />
  1515. <path
  1516. id="path2270"
  1517. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1518. d="m 8.0152,19.5 31.979,0"
  1519. stroke-miterlimit="4"
  1520. inkscape:connector-curvature="0" />
  1521. <path
  1522. id="path2272"
  1523. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1524. d="m 8.0152,21.5 31.979,0"
  1525. stroke-miterlimit="4"
  1526. inkscape:connector-curvature="0" />
  1527. <path
  1528. id="path2274"
  1529. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1530. d="m 8.0152,23.5 31.979,0"
  1531. stroke-miterlimit="4"
  1532. inkscape:connector-curvature="0" />
  1533. <path
  1534. id="path2276"
  1535. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1536. d="m 8.0152,25.5 31.979,0"
  1537. stroke-miterlimit="4"
  1538. inkscape:connector-curvature="0" />
  1539. <path
  1540. id="path2278"
  1541. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1542. d="m 8.0152,27.5 31.979,0"
  1543. stroke-miterlimit="4"
  1544. inkscape:connector-curvature="0" />
  1545. <path
  1546. id="path2280"
  1547. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1548. d="m 8.0152,29.5 31.979,0"
  1549. stroke-miterlimit="4"
  1550. inkscape:connector-curvature="0" />
  1551. <path
  1552. id="path2282"
  1553. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1554. d="m 8.0152,31.5 31.979,0"
  1555. stroke-miterlimit="4"
  1556. inkscape:connector-curvature="0" />
  1557. <path
  1558. id="path2284"
  1559. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1560. d="m 8.0152,33.5 31.979,0"
  1561. stroke-miterlimit="4"
  1562. inkscape:connector-curvature="0" />
  1563. <rect
  1564. id="rect2232"
  1565. style="opacity:0.76374003;fill:none;stroke:url(#linearGradient3426);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1566. rx="3.7909999"
  1567. ry="3.7909999"
  1568. height="37.000999"
  1569. width="42.945"
  1570. stroke-miterlimit="4"
  1571. y="4.5007"
  1572. x="2.5543001" />
  1573. <path
  1574. id="text1340"
  1575. style="text-align:start;fill:#ffffff;stroke:#6ed66e;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.27868856"
  1576. d="m 11.625,20.679 0,-3.0544 8.9848,4.0608 0,1.8559 -8.9848,4.0874 0,-3.0453 6.9644,-1.8539 -6.964,-2.051 z m 18.893,10.026 0,1.9742 -10.903,0 0,-1.9742 10.903,0"
  1577. inkscape:connector-curvature="0" />
  1578. <path
  1579. id="path2443"
  1580. d="M 7.6254,8 C 7.1021,8 6.0515,8.1902 6.0515,9.026 l 0.1181,16.517 c 17.672,-0.964 14.124,-8.257 35.83,-11.91 l -0.063,-4.3416 c -0.078,-1.1251 -0.539,-1.2319 -1.61,-1.2253 L 7.6246,8 z"
  1581. inkscape:connector-curvature="0"
  1582. style="opacity:0.53142856;fill:url(#linearGradient3428);fill-rule:evenodd" />
  1583. <rect
  1584. id="rect1340"
  1585. style="opacity:0.71429001;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1586. rx="0.11773"
  1587. ry="0.11773"
  1588. height="26.056999"
  1589. width="34.026001"
  1590. stroke-miterlimit="4"
  1591. y="8.9805002"
  1592. x="6.9895" />
  1593. <rect
  1594. id="rect5025"
  1595. style="fill:url(#radialGradient3430);fill-rule:evenodd;stroke:url(#linearGradient3432);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1596. rx="0.35819"
  1597. ry="0.56023002"
  1598. height="2.9590001"
  1599. width="4.0201001"
  1600. stroke-miterlimit="4"
  1601. y="37.514999"
  1602. x="35.486" />
  1603. <rect
  1604. id="rect6458"
  1605. rx="0.56023002"
  1606. ry="0.56023002"
  1607. height="2"
  1608. width="2"
  1609. y="38"
  1610. x="32"
  1611. style="fill:#93d94c;fill-rule:evenodd" />
  1612. <path
  1613. id="path2300"
  1614. style="color:#000000;fill:#ffffff;fill-rule:nonzero"
  1615. d="m 33.25,38.688 a 0.5625,0.5625 0 0 1 -1.125,0 0.5625,0.5625 0 1 1 1.125,0 z"
  1616. inkscape:connector-curvature="0" />
  1617. <path
  1618. id="path11959"
  1619. d="m 44.171,16.848 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
  1620. inkscape:connector-curvature="0"
  1621. style="fill:#ffffff;fill-opacity:0.38020833;fill-rule:evenodd" />
  1622. <path
  1623. id="path10590"
  1624. d="m 44.476,28.122 a 6.1527,1.5235 0 0 1 -12.305,0 6.1527,1.5235 0 1 1 12.305,0 z"
  1625. inkscape:connector-curvature="0"
  1626. style="opacity:0.07000002;fill:url(#radialGradient3434)" />
  1627. <path
  1628. id="path10592"
  1629. style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436)"
  1630. d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
  1631. transform="matrix(1.2818465,0,0,0.9398128,9.51753,33.032356)"
  1632. stroke-miterlimit="0"
  1633. inkscape:connector-curvature="0" />
  1634. <path
  1635. id="path10594"
  1636. d="m 44.171,16.848 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
  1637. inkscape:connector-curvature="0"
  1638. style="fill:url(#radialGradient3436);fill-rule:evenodd" />
  1639. <path
  1640. id="path10596"
  1641. style="fill:url(#linearGradient3438);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1642. d="m 44.478,42.551 a 5.4785,1.9784361 0 1 1 -10.957,0 5.4785,1.9784361 0 1 1 10.957,0 z"
  1643. stroke-miterlimit="0"
  1644. inkscape:connector-curvature="0" />
  1645. <path
  1646. id="path10598"
  1647. style="fill:none;stroke:url(#linearGradient3440);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1648. d="m 43.5,42.551 a 4.5,1.2723 0 1 1 -9,0 4.5,1.2723 0 1 1 9,0 z"
  1649. stroke-miterlimit="0"
  1650. inkscape:connector-curvature="0" />
  1651. <path
  1652. id="path10600"
  1653. d="m 36.414,32.651 c 1.0342,1.0196 2.0684,2.5489 2.0684,8.1565 0,1.0196 0.13988,1.5293 0.51711,1.5293 0.37723,0 0.51711,-0.50978 0.51711,-1.5293 0,-5.6076 1.0342,-7.137 2.0684,-8.1565"
  1654. inkscape:connector-curvature="0"
  1655. style="fill:url(#linearGradient3439);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  1656. <path
  1657. id="path10602"
  1658. d="m 32,25.551 c 0,6 5.4487,8.1197 7,8.1197 1.551,0 7,-2.12 7,-8.12"
  1659. inkscape:connector-curvature="0"
  1660. style="fill:url(#radialGradient3442);fill-rule:evenodd" />
  1661. <path
  1662. id="path10604"
  1663. style="fill:url(#radialGradient3444);stroke:url(#linearGradient3446);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1664. d="m 45.333,25.514 a 6.3335,1.5293483 0 0 1 -12.667,0 6.3335,1.5293483 0 1 1 12.667,0 z"
  1665. stroke-miterlimit="0"
  1666. inkscape:connector-curvature="0" />
  1667. <path
  1668. id="path10606"
  1669. d="m 43.594,18.864 -10.5,6.9062 c -0.47185,2.1071 0.57612,3.8839 1.9688,5.1562 0.69977,0.63931 1.4779,1.1545 2.1875,1.5 0.70965,0.3455 1.3655,0.53125 1.75,0.53125 0.38459,0 1.0458,-0.20765 1.7812,-0.5625 0.73541,-0.35485 1.5613,-0.85244 2.2812,-1.5312 1.4399,-1.3576 2.4993,-3.3228 1.8438,-5.7812 a 0.10694,0.10694 0 0 1 0,-0.03125 C 44.58022,22.4413 44.23507,21.1135 43.594,18.864 z"
  1670. inkscape:connector-curvature="0"
  1671. style="fill:none;stroke:url(#linearGradient3447);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  1672. <path
  1673. id="path10608"
  1674. d="m 35.231,18.718 3.1027,0 c 0,0 -1.5513,6.1174 -1.5513,8.6663 0,1.5293 1.0342,2.5489 0.51711,3.0587 -0.51711,0.50978 -3.1027,-1.4789 -3.1027,-4.0783 0,-1.0196 0.51711,-4.0783 1.0342,-7.6467 z"
  1675. inkscape:connector-curvature="0"
  1676. style="fill:url(#linearGradient3449);fill-rule:evenodd" />
  1677. <path
  1678. id="path10610"
  1679. style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1680. d="m 44.184,16.778 a 5.1841,1.2399 0 1 1 -7.84e-4,-0.02154"
  1681. stroke-miterlimit="0"
  1682. inkscape:connector-curvature="0" />
  1683. <path
  1684. id="path10612"
  1685. d="m 44,18.016 c -0.33333,0.33333 -2.3078,0.69994 -5.1622,0.69994 -2.8544,0 -4.5044,-0.3666 -4.8378,-0.69994"
  1686. stroke-miterlimit="0"
  1687. inkscape:connector-curvature="0"
  1688. style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  1689. <path
  1690. id="path10614"
  1691. d="m 45,25.051 c 0,0.57036 -2.3333,1.3333 -6.0127,1.3666 -3.679,0.033 -5.987,-0.797 -5.987,-1.367"
  1692. stroke-miterlimit="0"
  1693. inkscape:connector-curvature="0"
  1694. style="fill:none;stroke:url(#radialGradient3448);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  1695. <path
  1696. id="path10616"
  1697. d="m 37.667,34.051 c 0,0 0.33333,0.66667 1.3333,0.63923 1,-0.02744 1.3333,-0.63923 1.3333,-0.63923"
  1698. inkscape:connector-curvature="0"
  1699. style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
  1700. <path
  1701. id="path10618"
  1702. d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
  1703. transform="matrix(1.0342194,0,0,1.019566,30.726246,-2.267061)"
  1704. inkscape:connector-curvature="0"
  1705. style="fill:url(#linearGradient3450);fill-rule:evenodd;stroke:url(#linearGradient3452);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391)" />
  1706. <path
  1707. id="path10620"
  1708. d="m 44.171,16.848 c -0.671,-1.797 -9.671,-1.797 -10.342,0 0,1.529 -1.829,6.125 -1.829,10.203 0,4.078 5.449,6.62 7,6.62 1.551,0 7,-2.542 7,-6.62 0,-4.078 -1.829,-8.674 -1.829,-10.203 z"
  1709. inkscape:connector-curvature="0"
  1710. style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  1711. <path
  1712. id="path11877"
  1713. d="m 44.171,16.848 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
  1714. inkscape:connector-curvature="0"
  1715. style="fill:url(#radialGradient3433);fill-rule:evenodd" />
  1716. <path
  1717. id="path11873"
  1718. d="m 44.476,28.122 a 6.1527,1.5235 0 0 1 -12.305,0 6.1527,1.5235 0 1 1 12.305,0 z"
  1719. inkscape:connector-curvature="0"
  1720. style="opacity:0.07000002;fill:url(#radialGradient3431)" />
  1721. <path
  1722. id="path11875"
  1723. style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436)"
  1724. d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
  1725. transform="matrix(1.2818465,0,0,0.9398128,9.51753,33.032356)"
  1726. stroke-miterlimit="0"
  1727. inkscape:connector-curvature="0" />
  1728. <path
  1729. id="path11879"
  1730. style="fill:url(#linearGradient3435);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1731. d="m 44.478,42.551 a 5.4785,1.9784361 0 1 1 -10.957,0 5.4785,1.9784361 0 1 1 10.957,0 z"
  1732. stroke-miterlimit="0"
  1733. inkscape:connector-curvature="0" />
  1734. <path
  1735. id="path11881"
  1736. style="fill:none;stroke:url(#linearGradient3437);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1737. d="m 43.5,42.551 a 4.5,1.2723 0 1 1 -9,0 4.5,1.2723 0 1 1 9,0 z"
  1738. stroke-miterlimit="0"
  1739. inkscape:connector-curvature="0" />
  1740. <path
  1741. id="path11883"
  1742. d="m 36.414,32.651 c 1.0342,1.0196 2.0684,2.5489 2.0684,8.1565 0,1.0196 0.13988,1.5293 0.51711,1.5293 0.37723,0 0.51711,-0.50978 0.51711,-1.5293 0,-5.6076 1.0342,-7.137 2.0684,-8.1565"
  1743. inkscape:connector-curvature="0"
  1744. style="fill:url(#linearGradient3465);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  1745. <path
  1746. id="path11885"
  1747. d="m 32,25.551 c 0,6 5.4487,8.1197 7,8.1197 1.551,0 7,-2.12 7,-8.12"
  1748. inkscape:connector-curvature="0"
  1749. style="fill:url(#radialGradient3441);fill-rule:evenodd" />
  1750. <path
  1751. id="path11887"
  1752. style="fill:url(#radialGradient3443);stroke:url(#linearGradient3445);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1753. d="m 45.333,25.514 a 6.3335,1.5293483 0 0 1 -12.667,0 6.3335,1.5293483 0 1 1 12.667,0 z"
  1754. stroke-miterlimit="0"
  1755. inkscape:connector-curvature="0" />
  1756. <path
  1757. id="path11891"
  1758. d="m 35.231,18.718 3.1027,0 c 0,0 -1.5513,6.1174 -1.5513,8.6663 0,1.5293 1.0342,2.5489 0.51711,3.0587 -0.51711,0.50978 -3.1027,-1.4789 -3.1027,-4.0783 0,-1.0196 0.51711,-4.0783 1.0342,-7.6467 z"
  1759. inkscape:connector-curvature="0"
  1760. style="fill:url(#linearGradient3473);fill-rule:evenodd" />
  1761. <path
  1762. id="path11893"
  1763. style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1764. d="m 44.184,16.778 a 5.1841,1.2399 0 1 1 -7.84e-4,-0.02154"
  1765. stroke-miterlimit="0"
  1766. inkscape:connector-curvature="0" />
  1767. <path
  1768. id="path11895"
  1769. d="m 44,18.016 c -0.33333,0.33333 -2.3078,0.69993 -5.1622,0.69993 -2.8544,0 -4.5044,-0.3666 -4.8378,-0.69993"
  1770. stroke-miterlimit="0"
  1771. inkscape:connector-curvature="0"
  1772. style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  1773. <path
  1774. id="path11897"
  1775. d="m 45,25.051 c 0,0.57036 -2.3333,1.3333 -6.0127,1.3666 -3.679,0.033 -5.987,-0.797 -5.987,-1.367"
  1776. stroke-miterlimit="0"
  1777. inkscape:connector-curvature="0"
  1778. style="fill:none;stroke:url(#radialGradient3451);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  1779. <path
  1780. id="path11899"
  1781. d="m 37.667,34.051 c 0,0 0.33333,0.66667 1.3333,0.63923 1,-0.02744 1.3333,-0.63923 1.3333,-0.63923"
  1782. inkscape:connector-curvature="0"
  1783. style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
  1784. <path
  1785. id="path11901"
  1786. d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
  1787. transform="matrix(1.0342194,0,0,1.019566,30.726246,-2.2670609)"
  1788. inkscape:connector-curvature="0"
  1789. style="fill:url(#linearGradient3453);fill-rule:evenodd;stroke:url(#linearGradient3455);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391)" />
  1790. <path
  1791. id="path11903"
  1792. d="m 44.171,16.848 c -0.671,-1.797 -9.671,-1.797 -10.342,0 0,1.529 -1.829,6.125 -1.829,10.203 0,4.078 5.449,6.62 7,6.62 1.551,0 7,-2.542 7,-6.62 0,-4.078 -1.829,-8.674 -1.829,-10.203 z"
  1793. inkscape:connector-curvature="0"
  1794. style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  1795. </g>
  1796. <rect
  1797. id="icon:48-32"
  1798. height="48"
  1799. width="48"
  1800. y="216"
  1801. x="8"
  1802. style="fill:none" />
  1803. <g
  1804. id="g4719"
  1805. transform="translate(0,208)">
  1806. <rect
  1807. id="rect4173-0"
  1808. style="opacity:0.40206;color:#000000;fill:url(#linearGradient4702);fill-rule:nonzero"
  1809. height="6.6547999"
  1810. width="21.921"
  1811. y="48.131001"
  1812. x="181.03999" />
  1813. <path
  1814. id="path5058-3"
  1815. style="opacity:0.40206185;color:#000000;fill:url(#radialGradient4699);fill-rule:nonzero"
  1816. d="m 202.96,48.131 v 6.6544 c 2.3379,0.01253 5.6519,-1.4909 5.6519,-3.3276 0,-1.8367 -2.6089,-3.3268 -5.6519,-3.3268 z"
  1817. inkscape:connector-curvature="0" />
  1818. <path
  1819. id="path5018-0"
  1820. style="opacity:0.40206185;color:#000000;fill:url(#radialGradient4696);fill-rule:nonzero"
  1821. d="m 181.04,48.131 v 6.6544 c -2.3379,0.01253 -5.6519,-1.4909 -5.6519,-3.3276 0,-1.8367 2.6089,-3.3268 5.6519,-3.3268 z"
  1822. inkscape:connector-curvature="0" />
  1823. <rect
  1824. id="rect1316-9"
  1825. style="fill:url(#linearGradient4673);fill-rule:evenodd;stroke:url(#linearGradient4675);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1826. rx="3.2348001"
  1827. ry="3.2346001"
  1828. height="26"
  1829. width="30"
  1830. stroke-miterlimit="4"
  1831. y="26.5"
  1832. x="176.49001" />
  1833. <rect
  1834. id="rect1314-2"
  1835. style="fill:url(#linearGradient4668);fill-rule:evenodd;stroke:url(#linearGradient4670);stroke-width:0.99496001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1836. rx="1.0664001"
  1837. ry="1.0774"
  1838. height="19.004999"
  1839. width="24.040001"
  1840. stroke-miterlimit="4"
  1841. y="29.497"
  1842. x="179.46001" />
  1843. <path
  1844. id="path1345-5"
  1845. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1846. d="m 180.49,32.5 21.944,0"
  1847. stroke-miterlimit="4"
  1848. inkscape:connector-curvature="0" />
  1849. <path
  1850. id="path3032"
  1851. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1852. d="m 180.49,34.5 21.944,0"
  1853. stroke-miterlimit="4"
  1854. inkscape:connector-curvature="0" />
  1855. <path
  1856. id="path3034"
  1857. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1858. d="m 180.49,36.5 21.944,0"
  1859. stroke-miterlimit="4"
  1860. inkscape:connector-curvature="0" />
  1861. <path
  1862. id="path3036"
  1863. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1864. d="m 180.49,38.5 21.944,0"
  1865. stroke-miterlimit="4"
  1866. inkscape:connector-curvature="0" />
  1867. <path
  1868. id="path3038"
  1869. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1870. d="m 180.49,40.5 21.944,0"
  1871. stroke-miterlimit="4"
  1872. inkscape:connector-curvature="0" />
  1873. <path
  1874. id="path3040"
  1875. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1876. d="m 180.49,42.5 21.944,0"
  1877. stroke-miterlimit="4"
  1878. inkscape:connector-curvature="0" />
  1879. <path
  1880. id="path3042"
  1881. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1882. d="m 180.49,44.5 21.944,0"
  1883. stroke-miterlimit="4"
  1884. inkscape:connector-curvature="0" />
  1885. <path
  1886. id="path3044"
  1887. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  1888. d="m 180.49,46.5 21.944,0"
  1889. stroke-miterlimit="4"
  1890. inkscape:connector-curvature="0" />
  1891. <rect
  1892. id="rect2232-4"
  1893. style="opacity:0.76374003;fill:none;stroke:url(#linearGradient4656);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1894. rx="2.4717"
  1895. ry="2.4590001"
  1896. height="24"
  1897. width="27.999001"
  1898. stroke-miterlimit="4"
  1899. y="27.5"
  1900. x="177.49001" />
  1901. <path
  1902. id="text1340-0"
  1903. style="text-align:start;fill:#ffffff;stroke:#6ed66e;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.2786885;stroke-dasharray:none"
  1904. d="m 182.49,37 0,-2 6,3.5 0,1 -6,3.5 0,-2 4.5,-2 -4.5,-2 z m 5,7.5 8,0 0,2 -8,0 0,-2 z"
  1905. stroke-miterlimit="4"
  1906. inkscape:connector-curvature="0" />
  1907. <path
  1908. id="path2443-5"
  1909. d="m 181.03,30 c -0.3343,0 -1.0055,0.1301 -1.0055,0.70182 l 0.08,11.298 c 11.29,-0.65901 9.0236,-5.6476 22.89,-8.1465 l -0.0401,-2.9701 c -0.05,-0.76962 -0.34454,-0.8427 -1.0286,-0.83818 l -20.89,-0.046 z"
  1910. inkscape:connector-curvature="0"
  1911. style="opacity:0.53142856;fill:url(#linearGradient4652);fill-rule:evenodd" />
  1912. <rect
  1913. id="rect1340-9"
  1914. style="opacity:0.71429001;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1915. rx="0.076121002"
  1916. ry="0.076808996"
  1917. height="17"
  1918. width="22"
  1919. stroke-miterlimit="4"
  1920. y="30.5"
  1921. x="180.49001" />
  1922. <rect
  1923. id="rect5025-4"
  1924. style="fill:url(#radialGradient4646);fill-rule:evenodd;stroke:url(#linearGradient4648);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1925. rx="0.17820001"
  1926. ry="0.18933"
  1927. height="1"
  1928. width="2"
  1929. stroke-miterlimit="4"
  1930. y="49.5"
  1931. x="200.49001" />
  1932. <rect
  1933. id="rect6458-6"
  1934. rx="0.56023002"
  1935. ry="0.56023002"
  1936. height="2"
  1937. width="2"
  1938. y="49"
  1939. x="196.99001"
  1940. style="fill:#93d94c;fill-rule:evenodd" />
  1941. <path
  1942. id="path2300-9"
  1943. style="color:#000000;fill:#ffffff;fill-rule:nonzero"
  1944. d="m 198.15,49.57 a 0.42969,0.42969 0 0 1 -0.85937,0 0.42969,0.42969 0 1 1 0.85937,0 z"
  1945. inkscape:connector-curvature="0" />
  1946. <path
  1947. id="path10475"
  1948. d="m 206.35,33.017 c -0.38783,-0.76468 -7.3688,-0.76468 -7.7566,0 0,1.147 -1.1322,4.213 -1.1322,7.2717 0,3.0587 3.8783,4.9704 5.0418,4.9704 1.1635,0 5.0418,-1.9117 5.0418,-4.9704 0,-3.0587 -1.1948,-6.1247 -1.1948,-7.2717 z"
  1949. inkscape:connector-curvature="0"
  1950. style="fill:#eeeeec;fill-opacity:0.52263375;fill-rule:evenodd" />
  1951. <path
  1952. id="path4331"
  1953. d="m 206.61,41.097 a 4.61455,1.1426124 0 0 1 -9.2291,0 4.61455,1.1426124 0 1 1 9.2291,0 z"
  1954. inkscape:connector-curvature="0"
  1955. style="opacity:0.07000002;fill:url(#radialGradient4617)" />
  1956. <path
  1957. id="path3159"
  1958. d="m 206.38,32.642 c -0.38783,-0.76468 -7.3688,-0.76468 -7.7566,0 0,1.147 -1.1635,4.588 -1.1635,7.6467 0,3.0587 3.8783,4.9704 5.0418,4.9704 1.1635,0 5.0418,-1.9117 5.0418,-4.9704 0,-3.0587 -1.1635,-6.4997 -1.1635,-7.6467 z"
  1959. inkscape:connector-curvature="0"
  1960. style="fill:url(#radialGradient4614);fill-rule:evenodd" />
  1961. <path
  1962. id="path2385"
  1963. style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1964. d="m 206.5,33.526 a 4,1 0 1 1 -8,0 4,1 0 1 1 8,0 z"
  1965. stroke-miterlimit="0"
  1966. inkscape:connector-curvature="0" />
  1967. <path
  1968. id="path3157"
  1969. style="fill:url(#linearGradient4717);stroke:#888a85;stroke-width:1.01121235;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1970. d="m 207.23,51.994 a 4.4944,1.4944 0 0 1 -8.9888,0 4.4944,1.4944 0 1 1 8.9888,0 z"
  1971. stroke-miterlimit="0"
  1972. inkscape:connector-curvature="0" />
  1973. <path
  1974. id="path3236"
  1975. style="fill:none;stroke:url(#linearGradient4714);stroke-width:0.74999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1976. d="m 206.32,51.994 a 3.5954,0.90458 0 1 1 -7.1908,0 3.5954,0.90458 0 1 1 7.1908,0 z"
  1977. stroke-miterlimit="0"
  1978. inkscape:connector-curvature="0" />
  1979. <path
  1980. id="path3363"
  1981. d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
  1982. transform="matrix(0.7756645,0,0,0.7646744,196.29594,18.755806)"
  1983. inkscape:connector-curvature="0"
  1984. style="fill:url(#linearGradient4708);fill-rule:evenodd;stroke:url(#linearGradient4710);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391-4)" />
  1985. <path
  1986. id="path3163"
  1987. d="m 200.56,44.494 c 0.77567,0.76467 1.5513,1.9117 1.5513,6.1174 0,0.76468 0.10491,1.147 0.38783,1.147 0.28293,0 0.38783,-0.38234 0.38783,-1.147 0,-4.2057 0.77567,-5.3527 1.5513,-6.1174"
  1988. inkscape:connector-curvature="0"
  1989. style="fill:url(#linearGradient4606);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  1990. <path
  1991. id="path3179"
  1992. d="m 197.5,39.044 c 0,4.5 3.8365,6.2147 5,6.2147 1.1635,0 5,-1.7147 5,-6.2147"
  1993. inkscape:connector-curvature="0"
  1994. style="fill:url(#radialGradient4603);fill-rule:evenodd" />
  1995. <path
  1996. id="path5788"
  1997. style="fill:url(#radialGradient4598);stroke:url(#linearGradient4600);stroke-width:0.50549006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1998. d="m 207.25,39.141 a 4.75,1.147 0 0 1 -9.5,0 4.75,1.147 0 1 1 9.5,0 z"
  1999. stroke-miterlimit="0"
  2000. inkscape:connector-curvature="0" />
  2001. <path
  2002. id="path9912"
  2003. d="m 205.88,34.357 -7.6875,5.0312 c -0.32309,1.5166 0.41911,2.7902 1.4375,3.7188 0.51582,0.4703 1.1023,0.87123 1.625,1.125 0.5227,0.25377 0.99517,0.375 1.25,0.375 0.25483,0 0.73952,-0.14486 1.2812,-0.40625 0.54173,-0.26139 1.1572,-0.62499 1.6875,-1.125 1.0606,-1 1.8238,-2.4185 1.3438,-4.2188 a 0.19227,0.19227 0 0 1 0,-0.03125 c -0.23524,-1.8819 -0.49159,-2.8929 -0.9375,-4.4688 z"
  2004. inkscape:connector-curvature="0"
  2005. style="fill:none;stroke:url(#linearGradient4595);stroke-width:0.49999997px;stroke-linecap:round;stroke-linejoin:miter" />
  2006. <path
  2007. id="path3266"
  2008. d="m 199.67,34.526 2.327,0 c 0,0 -1.1635,4.1065 -1.1635,6.0182 0,1.147 0.77566,1.9117 0.38783,2.294 -0.38783,0.38234 -2.327,-1.1092 -2.327,-3.0587 0,-0.76467 0.38784,-2.5772 0.77567,-5.2535 z"
  2009. inkscape:connector-curvature="0"
  2010. style="fill:url(#linearGradient4592);fill-rule:evenodd" />
  2011. <path
  2012. id="path3450"
  2013. d="m 207,38.794 c 0,0.42777 -1.75,1 -4.5095,1.025 C 199.731,39.84395 198,39.22182 198,38.794"
  2014. stroke-miterlimit="0"
  2015. inkscape:connector-curvature="0"
  2016. style="fill:none;stroke:url(#radialGradient4589);stroke-width:0.50549001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  2017. <path
  2018. id="path3358"
  2019. d="m 206.21,34.407 c -0.25,0.25 -1.7308,0.52495 -3.8717,0.52495 -2.1408,0 -3.3783,-0.27495 -3.6283,-0.52495"
  2020. stroke-miterlimit="0"
  2021. inkscape:connector-curvature="0"
  2022. style="fill:none;stroke:#ffffff;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  2023. <path
  2024. id="path3395"
  2025. d="m 201.5,45.515 c 0,0 0.25,0.5 1,0.47942 0.75,-0.02058 1,-0.47942 1,-0.47942"
  2026. inkscape:connector-curvature="0"
  2027. style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.49999997px;stroke-linecap:round;stroke-linejoin:round" />
  2028. <path
  2029. id="path3354"
  2030. d="m 206.5,33.526 c -0.35936,-1.3412 -7.6317,-1.3746 -8,0 0,1.147 -1,3.4598 -1,6.5185 0,3.0587 3.8365,5.2147 5,5.2147 1.1635,0 5,-2.156 5,-5.2147 0,-3.0587 -1,-5.3715 -1,-6.5185 z"
  2031. inkscape:connector-curvature="0"
  2032. style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  2033. </g>
  2034. <rect
  2035. id="icon:32-32"
  2036. height="32"
  2037. width="32"
  2038. y="232"
  2039. x="176"
  2040. style="fill:none" />
  2041. <g
  2042. transform="matrix(5.1367767,0,0,5.1367767,371.11237,8.7243673)"
  2043. id="g3228">
  2044. <rect
  2045. x="7.8719001"
  2046. y="36.195999"
  2047. width="32.881001"
  2048. height="9.9821997"
  2049. style="opacity:0.40206;color:#000000;fill:url(#linearGradient3343);fill-rule:nonzero"
  2050. id="rect3230" />
  2051. <path
  2052. d="m 40.753,36.197 v 9.9816 c 3.5068,0.01879 8.4778,-2.2364 8.4778,-4.9914 0,-2.7551 -3.9134,-4.9902 -8.4778,-4.9902 z"
  2053. style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3345);fill-rule:nonzero"
  2054. id="path3232"
  2055. inkscape:connector-curvature="0" />
  2056. <path
  2057. d="m 7.8719,36.197 v 9.9816 c -3.5068,0.01879 -8.4778,-2.2364 -8.4778,-4.9914 0,-2.7551 3.9134,-4.9902 8.4778,-4.9902 z"
  2058. style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3347);fill-rule:nonzero"
  2059. id="path3234"
  2060. inkscape:connector-curvature="0" />
  2061. <rect
  2062. x="1.5026"
  2063. y="3.5016"
  2064. stroke-miterlimit="4"
  2065. width="44.995998"
  2066. height="38.999001"
  2067. ry="4.8516998"
  2068. rx="4.8516998"
  2069. style="fill:url(#linearGradient3349);fill-rule:evenodd;stroke:url(#linearGradient3351);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  2070. id="rect3236" />
  2071. <rect
  2072. x="5.4963002"
  2073. y="7.4826999"
  2074. stroke-miterlimit="4"
  2075. width="37.088001"
  2076. height="29.021999"
  2077. ry="1.6452"
  2078. rx="1.6452"
  2079. style="fill:url(#linearGradient3353);fill-rule:evenodd;stroke:url(#linearGradient3355);stroke-width:0.99496001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  2080. id="rect3238" />
  2081. <path
  2082. stroke-miterlimit="4"
  2083. d="m 8.0152,11.5 31.979,0"
  2084. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  2085. id="path3240"
  2086. inkscape:connector-curvature="0" />
  2087. <path
  2088. stroke-miterlimit="4"
  2089. d="m 8.0152,13.5 31.979,0"
  2090. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  2091. id="path3242"
  2092. inkscape:connector-curvature="0" />
  2093. <path
  2094. stroke-miterlimit="4"
  2095. d="m 8.0152,15.5 31.979,0"
  2096. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  2097. id="path3244"
  2098. inkscape:connector-curvature="0" />
  2099. <path
  2100. stroke-miterlimit="4"
  2101. d="m 8.0152,17.5 31.979,0"
  2102. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  2103. id="path3246"
  2104. inkscape:connector-curvature="0" />
  2105. <path
  2106. stroke-miterlimit="4"
  2107. d="m 8.0152,19.5 31.979,0"
  2108. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  2109. id="path3248"
  2110. inkscape:connector-curvature="0" />
  2111. <path
  2112. stroke-miterlimit="4"
  2113. d="m 8.0152,21.5 31.979,0"
  2114. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  2115. id="path3250"
  2116. inkscape:connector-curvature="0" />
  2117. <path
  2118. stroke-miterlimit="4"
  2119. d="m 8.0152,23.5 31.979,0"
  2120. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  2121. id="path3252"
  2122. inkscape:connector-curvature="0" />
  2123. <path
  2124. stroke-miterlimit="4"
  2125. d="m 8.0152,25.5 31.979,0"
  2126. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  2127. id="path3254"
  2128. inkscape:connector-curvature="0" />
  2129. <path
  2130. stroke-miterlimit="4"
  2131. d="m 8.0152,27.5 31.979,0"
  2132. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  2133. id="path3256"
  2134. inkscape:connector-curvature="0" />
  2135. <path
  2136. stroke-miterlimit="4"
  2137. d="m 8.0152,29.5 31.979,0"
  2138. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  2139. id="path3258"
  2140. inkscape:connector-curvature="0" />
  2141. <path
  2142. stroke-miterlimit="4"
  2143. d="m 8.0152,31.5 31.979,0"
  2144. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  2145. id="path3260"
  2146. inkscape:connector-curvature="0" />
  2147. <path
  2148. stroke-miterlimit="4"
  2149. d="m 8.0152,33.5 31.979,0"
  2150. style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
  2151. id="path3262"
  2152. inkscape:connector-curvature="0" />
  2153. <rect
  2154. x="2.5543001"
  2155. y="4.5007"
  2156. stroke-miterlimit="4"
  2157. width="42.945"
  2158. height="37.000999"
  2159. ry="3.7909999"
  2160. rx="3.7909999"
  2161. style="opacity:0.76374003;fill:none;stroke:url(#linearGradient3357);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  2162. id="rect3264" />
  2163. <path
  2164. d="m 11.625,20.679 0,-3.0544 8.9848,4.0608 0,1.8559 -8.9848,4.0874 0,-3.0453 6.9644,-1.8539 -6.964,-2.051 z m 18.893,10.026 0,1.9742 -10.903,0 0,-1.9742 10.903,0"
  2165. style="text-align:start;fill:#ffffff;stroke:#6ed66e;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.27868856"
  2166. id="path3267"
  2167. inkscape:connector-curvature="0" />
  2168. <path
  2169. d="M 7.6254,8 C 7.1021,8 6.0515,8.1902 6.0515,9.026 l 0.1181,16.517 c 17.672,-0.964 14.124,-8.257 35.83,-11.91 l -0.063,-4.3416 c -0.078,-1.1251 -0.539,-1.2319 -1.61,-1.2253 L 7.6246,8 z"
  2170. id="path3269"
  2171. style="opacity:0.53142856;fill:url(#linearGradient3359);fill-rule:evenodd"
  2172. inkscape:connector-curvature="0" />
  2173. <rect
  2174. x="6.9895"
  2175. y="8.9805002"
  2176. stroke-miterlimit="4"
  2177. width="34.026001"
  2178. height="26.056999"
  2179. ry="0.11773"
  2180. rx="0.11773"
  2181. style="opacity:0.71429001;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  2182. id="rect3271" />
  2183. <rect
  2184. x="35.486"
  2185. y="37.514999"
  2186. stroke-miterlimit="4"
  2187. width="4.0201001"
  2188. height="2.9590001"
  2189. ry="0.56023002"
  2190. rx="0.35819"
  2191. style="fill:url(#radialGradient3361);fill-rule:evenodd;stroke:url(#linearGradient3363);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  2192. id="rect3273" />
  2193. <rect
  2194. x="32"
  2195. y="38"
  2196. width="2"
  2197. height="2"
  2198. ry="0.56023002"
  2199. rx="0.56023002"
  2200. id="rect3275"
  2201. style="fill:#93d94c;fill-rule:evenodd" />
  2202. <path
  2203. d="m 33.25,38.688 a 0.5625,0.5625 0 0 1 -1.125,0 0.5625,0.5625 0 1 1 1.125,0 z"
  2204. style="color:#000000;fill:#ffffff;fill-rule:nonzero"
  2205. id="path3277"
  2206. inkscape:connector-curvature="0" />
  2207. <path
  2208. d="m 44.171,16.848 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
  2209. id="path3279"
  2210. inkscape:connector-curvature="0"
  2211. style="fill:#ffffff;fill-opacity:0.38020833;fill-rule:evenodd" />
  2212. <path
  2213. d="m 44.476,28.122 a 6.1527,1.5235 0 0 1 -12.305,0 6.1527,1.5235 0 1 1 12.305,0 z"
  2214. id="path3281"
  2215. style="opacity:0.07000002;fill:url(#radialGradient3365)"
  2216. inkscape:connector-curvature="0" />
  2217. <path
  2218. stroke-miterlimit="0"
  2219. transform="matrix(1.2818465,0,0,0.9398128,9.51753,33.032356)"
  2220. d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
  2221. style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436)"
  2222. id="path3283"
  2223. inkscape:connector-curvature="0" />
  2224. <path
  2225. d="m 44.171,16.848 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
  2226. id="path3285"
  2227. style="fill:url(#radialGradient3367);fill-rule:evenodd"
  2228. inkscape:connector-curvature="0" />
  2229. <path
  2230. stroke-miterlimit="0"
  2231. d="m 44.478,42.551 a 5.4785,1.9784361 0 1 1 -10.957,0 5.4785,1.9784361 0 1 1 10.957,0 z"
  2232. style="fill:url(#linearGradient3369);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  2233. id="path3287"
  2234. inkscape:connector-curvature="0" />
  2235. <path
  2236. stroke-miterlimit="0"
  2237. d="m 43.5,42.551 a 4.5,1.2723 0 1 1 -9,0 4.5,1.2723 0 1 1 9,0 z"
  2238. style="fill:none;stroke:url(#linearGradient3371);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  2239. id="path3289"
  2240. inkscape:connector-curvature="0" />
  2241. <path
  2242. d="m 36.414,32.651 c 1.0342,1.0196 2.0684,2.5489 2.0684,8.1565 0,1.0196 0.13988,1.5293 0.51711,1.5293 0.37723,0 0.51711,-0.50978 0.51711,-1.5293 0,-5.6076 1.0342,-7.137 2.0684,-8.1565"
  2243. id="path3291"
  2244. style="fill:url(#linearGradient3374);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter"
  2245. inkscape:connector-curvature="0" />
  2246. <path
  2247. d="m 32,25.551 c 0,6 5.4487,8.1197 7,8.1197 1.551,0 7,-2.12 7,-8.12"
  2248. id="path3293"
  2249. style="fill:url(#radialGradient3376);fill-rule:evenodd"
  2250. inkscape:connector-curvature="0" />
  2251. <path
  2252. stroke-miterlimit="0"
  2253. d="m 45.333,25.514 a 6.3335,1.5293483 0 0 1 -12.667,0 6.3335,1.5293483 0 1 1 12.667,0 z"
  2254. style="fill:url(#radialGradient3378);stroke:url(#linearGradient3380);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  2255. id="path3295"
  2256. inkscape:connector-curvature="0" />
  2257. <path
  2258. d="m 43.594,18.864 -10.5,6.9062 c -0.47185,2.1071 0.57612,3.8839 1.9688,5.1562 0.69977,0.63931 1.4779,1.1545 2.1875,1.5 0.70965,0.3455 1.3655,0.53125 1.75,0.53125 0.38459,0 1.0458,-0.20765 1.7812,-0.5625 0.73541,-0.35485 1.5613,-0.85244 2.2812,-1.5312 1.4399,-1.3576 2.4993,-3.3228 1.8438,-5.7812 a 0.10694,0.10694 0 0 1 0,-0.03125 C 44.58022,22.4413 44.23507,21.1135 43.594,18.864 z"
  2259. id="path3297"
  2260. style="fill:none;stroke:url(#linearGradient3382);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter"
  2261. inkscape:connector-curvature="0" />
  2262. <path
  2263. d="m 35.231,18.718 3.1027,0 c 0,0 -1.5513,6.1174 -1.5513,8.6663 0,1.5293 1.0342,2.5489 0.51711,3.0587 -0.51711,0.50978 -3.1027,-1.4789 -3.1027,-4.0783 0,-1.0196 0.51711,-4.0783 1.0342,-7.6467 z"
  2264. id="path3299"
  2265. style="fill:url(#linearGradient3384);fill-rule:evenodd"
  2266. inkscape:connector-curvature="0" />
  2267. <path
  2268. stroke-miterlimit="0"
  2269. d="m 44.184,16.778 a 5.1841,1.2399 0 1 1 -7.84e-4,-0.02154"
  2270. style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  2271. id="path3301"
  2272. inkscape:connector-curvature="0" />
  2273. <path
  2274. stroke-miterlimit="0"
  2275. d="m 44,18.016 c -0.33333,0.33333 -2.3078,0.69994 -5.1622,0.69994 -2.8544,0 -4.5044,-0.3666 -4.8378,-0.69994"
  2276. id="path3303"
  2277. inkscape:connector-curvature="0"
  2278. style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  2279. <path
  2280. stroke-miterlimit="0"
  2281. d="m 45,25.051 c 0,0.57036 -2.3333,1.3333 -6.0127,1.3666 -3.679,0.033 -5.987,-0.797 -5.987,-1.367"
  2282. id="path3305"
  2283. style="fill:none;stroke:url(#radialGradient3386);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
  2284. inkscape:connector-curvature="0" />
  2285. <path
  2286. d="m 37.667,34.051 c 0,0 0.33333,0.66667 1.3333,0.63923 1,-0.02744 1.3333,-0.63923 1.3333,-0.63923"
  2287. id="path3307"
  2288. inkscape:connector-curvature="0"
  2289. style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
  2290. <path
  2291. transform="matrix(1.0342194,0,0,1.019566,30.726246,-2.267061)"
  2292. d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
  2293. id="path3309"
  2294. style="fill:url(#linearGradient3388);fill-rule:evenodd;stroke:url(#linearGradient3390);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391)"
  2295. inkscape:connector-curvature="0" />
  2296. <path
  2297. d="m 44.171,16.848 c -0.671,-1.797 -9.671,-1.797 -10.342,0 0,1.529 -1.829,6.125 -1.829,10.203 0,4.078 5.449,6.62 7,6.62 1.551,0 7,-2.542 7,-6.62 0,-4.078 -1.829,-8.674 -1.829,-10.203 z"
  2298. id="path3311"
  2299. inkscape:connector-curvature="0"
  2300. style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  2301. <path
  2302. d="m 44.171,16.848 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
  2303. id="path3313"
  2304. style="fill:url(#radialGradient3392);fill-rule:evenodd"
  2305. inkscape:connector-curvature="0" />
  2306. <path
  2307. d="m 44.476,28.122 a 6.1527,1.5235 0 0 1 -12.305,0 6.1527,1.5235 0 1 1 12.305,0 z"
  2308. id="path3315"
  2309. style="opacity:0.07000002;fill:url(#radialGradient3394)"
  2310. inkscape:connector-curvature="0" />
  2311. <path
  2312. stroke-miterlimit="0"
  2313. transform="matrix(1.2818465,0,0,0.9398128,9.51753,33.032356)"
  2314. d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
  2315. style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436)"
  2316. id="path3317"
  2317. inkscape:connector-curvature="0" />
  2318. <path
  2319. stroke-miterlimit="0"
  2320. d="m 44.478,42.551 a 5.4785,1.9784361 0 1 1 -10.957,0 5.4785,1.9784361 0 1 1 10.957,0 z"
  2321. style="fill:url(#linearGradient3396);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  2322. id="path3319"
  2323. inkscape:connector-curvature="0" />
  2324. <path
  2325. stroke-miterlimit="0"
  2326. d="m 43.5,42.551 a 4.5,1.2723 0 1 1 -9,0 4.5,1.2723 0 1 1 9,0 z"
  2327. style="fill:none;stroke:url(#linearGradient3398);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  2328. id="path3321"
  2329. inkscape:connector-curvature="0" />
  2330. <path
  2331. d="m 36.414,32.651 c 1.0342,1.0196 2.0684,2.5489 2.0684,8.1565 0,1.0196 0.13988,1.5293 0.51711,1.5293 0.37723,0 0.51711,-0.50978 0.51711,-1.5293 0,-5.6076 1.0342,-7.137 2.0684,-8.1565"
  2332. id="path3323"
  2333. style="fill:url(#linearGradient3400);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter"
  2334. inkscape:connector-curvature="0" />
  2335. <path
  2336. d="m 32,25.551 c 0,6 5.4487,8.1197 7,8.1197 1.551,0 7,-2.12 7,-8.12"
  2337. id="path3325"
  2338. style="fill:url(#radialGradient3402);fill-rule:evenodd"
  2339. inkscape:connector-curvature="0" />
  2340. <path
  2341. stroke-miterlimit="0"
  2342. d="m 45.333,25.514 a 6.3335,1.5293483 0 0 1 -12.667,0 6.3335,1.5293483 0 1 1 12.667,0 z"
  2343. style="fill:url(#radialGradient3404);stroke:url(#linearGradient3406);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  2344. id="path3327"
  2345. inkscape:connector-curvature="0" />
  2346. <path
  2347. d="m 35.231,18.718 3.1027,0 c 0,0 -1.5513,6.1174 -1.5513,8.6663 0,1.5293 1.0342,2.5489 0.51711,3.0587 -0.51711,0.50978 -3.1027,-1.4789 -3.1027,-4.0783 0,-1.0196 0.51711,-4.0783 1.0342,-7.6467 z"
  2348. id="path3329"
  2349. style="fill:url(#linearGradient3408);fill-rule:evenodd"
  2350. inkscape:connector-curvature="0" />
  2351. <path
  2352. stroke-miterlimit="0"
  2353. d="m 44.184,16.778 a 5.1841,1.2399 0 1 1 -7.84e-4,-0.02154"
  2354. style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  2355. id="path3331"
  2356. inkscape:connector-curvature="0" />
  2357. <path
  2358. stroke-miterlimit="0"
  2359. d="m 44,18.016 c -0.33333,0.33333 -2.3078,0.69993 -5.1622,0.69993 -2.8544,0 -4.5044,-0.3666 -4.8378,-0.69993"
  2360. id="path3333"
  2361. inkscape:connector-curvature="0"
  2362. style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  2363. <path
  2364. stroke-miterlimit="0"
  2365. d="m 45,25.051 c 0,0.57036 -2.3333,1.3333 -6.0127,1.3666 -3.679,0.033 -5.987,-0.797 -5.987,-1.367"
  2366. id="path3335"
  2367. style="fill:none;stroke:url(#radialGradient3410);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
  2368. inkscape:connector-curvature="0" />
  2369. <path
  2370. d="m 37.667,34.051 c 0,0 0.33333,0.66667 1.3333,0.63923 1,-0.02744 1.3333,-0.63923 1.3333,-0.63923"
  2371. id="path3337"
  2372. inkscape:connector-curvature="0"
  2373. style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
  2374. <path
  2375. transform="matrix(1.0342194,0,0,1.019566,30.726246,-2.2670609)"
  2376. d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
  2377. id="path3339"
  2378. style="fill:url(#linearGradient3412);fill-rule:evenodd;stroke:url(#linearGradient3414);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391)"
  2379. inkscape:connector-curvature="0" />
  2380. <path
  2381. d="m 44.171,16.848 c -0.671,-1.797 -9.671,-1.797 -10.342,0 0,1.529 -1.829,6.125 -1.829,10.203 0,4.078 5.449,6.62 7,6.62 1.551,0 7,-2.542 7,-6.62 0,-4.078 -1.829,-8.674 -1.829,-10.203 z"
  2382. id="path3341"
  2383. inkscape:connector-curvature="0"
  2384. style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  2385. </g>
  2386. <rect
  2387. id="icon:256-32"
  2388. height="256"
  2389. width="256"
  2390. y="8"
  2391. x="368"
  2392. style="fill:none" />
  2393. </svg>