snowsnail1.svg 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306
  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. id="svg16197"
  13. version="1.1"
  14. inkscape:version="0.47 r22583"
  15. width="42"
  16. height="34"
  17. sodipodi:docname="snowsnail1.svg"
  18. style="display:inline"
  19. inkscape:export-filename="/usr/share/supertux2/images/creatures/snail/snowsnail1.png"
  20. inkscape:export-xdpi="90"
  21. inkscape:export-ydpi="90">
  22. <title
  23. id="title24510">Snow Snail - 1</title>
  24. <sodipodi:namedview
  25. pagecolor="#ffffff"
  26. bordercolor="#666666"
  27. borderopacity="1"
  28. objecttolerance="10"
  29. gridtolerance="10"
  30. guidetolerance="10"
  31. inkscape:pageopacity="0"
  32. inkscape:pageshadow="2"
  33. inkscape:window-width="1680"
  34. inkscape:window-height="1025"
  35. id="namedview16199"
  36. showgrid="false"
  37. inkscape:zoom="2.828427"
  38. inkscape:cx="-74.31127"
  39. inkscape:cy="27.109996"
  40. inkscape:window-x="-2"
  41. inkscape:window-y="0"
  42. inkscape:window-maximized="1"
  43. inkscape:current-layer="svg16197" />
  44. <metadata
  45. id="metadata16203">
  46. <rdf:RDF>
  47. <cc:Work
  48. rdf:about="">
  49. <dc:format>image/svg+xml</dc:format>
  50. <dc:type
  51. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  52. <dc:title>Snow Snail - 1</dc:title>
  53. <cc:license
  54. rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
  55. <dc:creator>
  56. <cc:Agent>
  57. <dc:title>James Corley (adamorjames)</dc:title>
  58. </cc:Agent>
  59. </dc:creator>
  60. </cc:Work>
  61. <cc:License
  62. rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
  63. <cc:permits
  64. rdf:resource="http://creativecommons.org/ns#Reproduction" />
  65. <cc:permits
  66. rdf:resource="http://creativecommons.org/ns#Distribution" />
  67. <cc:requires
  68. rdf:resource="http://creativecommons.org/ns#Notice" />
  69. <cc:requires
  70. rdf:resource="http://creativecommons.org/ns#Attribution" />
  71. <cc:permits
  72. rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
  73. <cc:requires
  74. rdf:resource="http://creativecommons.org/ns#ShareAlike" />
  75. </cc:License>
  76. </rdf:RDF>
  77. </metadata>
  78. <defs
  79. id="defs16201">
  80. <inkscape:perspective
  81. sodipodi:type="inkscape:persp3d"
  82. inkscape:vp_x="0 : 17 : 1"
  83. inkscape:vp_y="0 : 1000 : 0"
  84. inkscape:vp_z="42 : 17 : 1"
  85. inkscape:persp3d-origin="21 : 11.333333 : 1"
  86. id="perspective24508" />
  87. <linearGradient
  88. inkscape:collect="always"
  89. id="linearGradient13393">
  90. <stop
  91. style="stop-color:#55e248;stop-opacity:1;"
  92. offset="0"
  93. id="stop13395" />
  94. <stop
  95. style="stop-color:#55e248;stop-opacity:0;"
  96. offset="1"
  97. id="stop13397" />
  98. </linearGradient>
  99. <linearGradient
  100. inkscape:collect="always"
  101. id="linearGradient13385">
  102. <stop
  103. style="stop-color:#55e248;stop-opacity:1;"
  104. offset="0"
  105. id="stop13387" />
  106. <stop
  107. style="stop-color:#55e248;stop-opacity:0;"
  108. offset="1"
  109. id="stop13389" />
  110. </linearGradient>
  111. <linearGradient
  112. inkscape:collect="always"
  113. id="linearGradient13371">
  114. <stop
  115. style="stop-color:#55e248;stop-opacity:1;"
  116. offset="0"
  117. id="stop13373" />
  118. <stop
  119. style="stop-color:#55e248;stop-opacity:0;"
  120. offset="1"
  121. id="stop13375" />
  122. </linearGradient>
  123. <linearGradient
  124. inkscape:collect="always"
  125. id="linearGradient13363">
  126. <stop
  127. style="stop-color:#55e248;stop-opacity:1;"
  128. offset="0"
  129. id="stop13365" />
  130. <stop
  131. style="stop-color:#55e248;stop-opacity:0;"
  132. offset="1"
  133. id="stop13367" />
  134. </linearGradient>
  135. <linearGradient
  136. inkscape:collect="always"
  137. id="linearGradient11749">
  138. <stop
  139. style="stop-color:#58a4b6;stop-opacity:1;"
  140. offset="0"
  141. id="stop11751" />
  142. <stop
  143. style="stop-color:#58a4b6;stop-opacity:0;"
  144. offset="1"
  145. id="stop11753" />
  146. </linearGradient>
  147. <linearGradient
  148. inkscape:collect="always"
  149. id="linearGradient7646">
  150. <stop
  151. style="stop-color:#5c41ad;stop-opacity:1;"
  152. offset="0"
  153. id="stop7648" />
  154. <stop
  155. style="stop-color:#5c41ad;stop-opacity:0;"
  156. offset="1"
  157. id="stop7650" />
  158. </linearGradient>
  159. <linearGradient
  160. inkscape:collect="always"
  161. id="linearGradient7600">
  162. <stop
  163. style="stop-color:#58a4b6;stop-opacity:1;"
  164. offset="0"
  165. id="stop7602" />
  166. <stop
  167. style="stop-color:#58a4b6;stop-opacity:0;"
  168. offset="1"
  169. id="stop7604" />
  170. </linearGradient>
  171. <linearGradient
  172. inkscape:collect="always"
  173. id="linearGradient7523">
  174. <stop
  175. style="stop-color:#58a4b6;stop-opacity:1;"
  176. offset="0"
  177. id="stop7525" />
  178. <stop
  179. style="stop-color:#58a4b6;stop-opacity:0;"
  180. offset="1"
  181. id="stop7527" />
  182. </linearGradient>
  183. <linearGradient
  184. inkscape:collect="always"
  185. id="linearGradient3792">
  186. <stop
  187. style="stop-color:#ffffff;stop-opacity:1;"
  188. offset="0"
  189. id="stop3794" />
  190. <stop
  191. style="stop-color:#ffffff;stop-opacity:0;"
  192. offset="1"
  193. id="stop3796" />
  194. </linearGradient>
  195. <linearGradient
  196. inkscape:collect="always"
  197. xlink:href="#linearGradient3792"
  198. id="linearGradient3798"
  199. x1="9.9349766"
  200. y1="15.025248"
  201. x2="7.3988338"
  202. y2="15.025248"
  203. gradientUnits="userSpaceOnUse" />
  204. <linearGradient
  205. inkscape:collect="always"
  206. xlink:href="#linearGradient3802-3"
  207. id="linearGradient3808-1"
  208. x1="12.27263"
  209. y1="14.641027"
  210. x2="-3.5898149"
  211. y2="14.641027"
  212. gradientUnits="userSpaceOnUse" />
  213. <linearGradient
  214. inkscape:collect="always"
  215. id="linearGradient3802-3">
  216. <stop
  217. style="stop-color:#ffffff;stop-opacity:1;"
  218. offset="0"
  219. id="stop3804-1" />
  220. <stop
  221. style="stop-color:#ffffff;stop-opacity:0;"
  222. offset="1"
  223. id="stop3806-2" />
  224. </linearGradient>
  225. <linearGradient
  226. inkscape:collect="always"
  227. xlink:href="#linearGradient3802-8"
  228. id="linearGradient3808-6"
  229. x1="12.27263"
  230. y1="14.641027"
  231. x2="-3.5898149"
  232. y2="14.641027"
  233. gradientUnits="userSpaceOnUse" />
  234. <linearGradient
  235. inkscape:collect="always"
  236. id="linearGradient3802-8">
  237. <stop
  238. style="stop-color:#ffffff;stop-opacity:1;"
  239. offset="0"
  240. id="stop3804-7" />
  241. <stop
  242. style="stop-color:#ffffff;stop-opacity:0;"
  243. offset="1"
  244. id="stop3806-4" />
  245. </linearGradient>
  246. <linearGradient
  247. inkscape:collect="always"
  248. xlink:href="#linearGradient4240"
  249. id="linearGradient4246"
  250. x1="8.6928434"
  251. y1="13.939294"
  252. x2="5.0954299"
  253. y2="13.939294"
  254. gradientUnits="userSpaceOnUse" />
  255. <linearGradient
  256. inkscape:collect="always"
  257. id="linearGradient4240">
  258. <stop
  259. style="stop-color:#321d8c;stop-opacity:1;"
  260. offset="0"
  261. id="stop4242" />
  262. <stop
  263. style="stop-color:#6d656e;stop-opacity:1"
  264. offset="1"
  265. id="stop4244" />
  266. </linearGradient>
  267. <linearGradient
  268. y2="13.939294"
  269. x2="5.0954299"
  270. y1="13.939294"
  271. x1="8.6928434"
  272. gradientUnits="userSpaceOnUse"
  273. id="linearGradient4263-6"
  274. xlink:href="#linearGradient4240-3"
  275. inkscape:collect="always" />
  276. <linearGradient
  277. inkscape:collect="always"
  278. id="linearGradient4240-3">
  279. <stop
  280. style="stop-color:#321d8c;stop-opacity:1;"
  281. offset="0"
  282. id="stop4242-9" />
  283. <stop
  284. style="stop-color:#6d656e;stop-opacity:1"
  285. offset="1"
  286. id="stop4244-9" />
  287. </linearGradient>
  288. <linearGradient
  289. y2="13.939294"
  290. x2="5.0954299"
  291. y1="13.939294"
  292. x1="8.6928434"
  293. gradientUnits="userSpaceOnUse"
  294. id="linearGradient4263-5"
  295. xlink:href="#linearGradient4240-2"
  296. inkscape:collect="always" />
  297. <linearGradient
  298. inkscape:collect="always"
  299. id="linearGradient4240-2">
  300. <stop
  301. style="stop-color:#321d8c;stop-opacity:1;"
  302. offset="0"
  303. id="stop4242-1" />
  304. <stop
  305. style="stop-color:#6d656e;stop-opacity:1"
  306. offset="1"
  307. id="stop4244-3" />
  308. </linearGradient>
  309. <linearGradient
  310. y2="13.939294"
  311. x2="5.0954299"
  312. y1="13.939294"
  313. x1="8.6928434"
  314. gradientUnits="userSpaceOnUse"
  315. id="linearGradient4297-0-9"
  316. xlink:href="#linearGradient4240-2-1"
  317. inkscape:collect="always" />
  318. <linearGradient
  319. inkscape:collect="always"
  320. id="linearGradient4240-2-1">
  321. <stop
  322. style="stop-color:#321d8c;stop-opacity:1;"
  323. offset="0"
  324. id="stop4242-1-3" />
  325. <stop
  326. style="stop-color:#6d656e;stop-opacity:1"
  327. offset="1"
  328. id="stop4244-3-4" />
  329. </linearGradient>
  330. <linearGradient
  331. inkscape:collect="always"
  332. xlink:href="#linearGradient4369-8"
  333. id="linearGradient4375-5"
  334. x1="15.733126"
  335. y1="25.603107"
  336. x2="15.114408"
  337. y2="25.956659"
  338. gradientUnits="userSpaceOnUse" />
  339. <linearGradient
  340. inkscape:collect="always"
  341. id="linearGradient4369-8">
  342. <stop
  343. style="stop-color:#e6d510;stop-opacity:1;"
  344. offset="0"
  345. id="stop4371-5" />
  346. <stop
  347. style="stop-color:#e6d510;stop-opacity:0;"
  348. offset="1"
  349. id="stop4373-7" />
  350. </linearGradient>
  351. <linearGradient
  352. inkscape:collect="always"
  353. xlink:href="#linearGradient4199-3"
  354. id="linearGradient4219-3"
  355. gradientUnits="userSpaceOnUse"
  356. x1="41.194828"
  357. y1="31.847464"
  358. x2="-56.009686"
  359. y2="31.847464" />
  360. <linearGradient
  361. inkscape:collect="always"
  362. id="linearGradient4199-3">
  363. <stop
  364. style="stop-color:#288c11;stop-opacity:1;"
  365. offset="0"
  366. id="stop4201-8" />
  367. <stop
  368. style="stop-color:#288c11;stop-opacity:0;"
  369. offset="1"
  370. id="stop4203-9" />
  371. </linearGradient>
  372. <linearGradient
  373. y2="31.847464"
  374. x2="-56.009686"
  375. y1="31.847464"
  376. x1="41.194828"
  377. gradientUnits="userSpaceOnUse"
  378. id="linearGradient4448-8"
  379. xlink:href="#linearGradient4199-3-6"
  380. inkscape:collect="always" />
  381. <linearGradient
  382. inkscape:collect="always"
  383. id="linearGradient4199-3-6">
  384. <stop
  385. style="stop-color:#288c11;stop-opacity:1;"
  386. offset="0"
  387. id="stop4201-8-0" />
  388. <stop
  389. style="stop-color:#288c11;stop-opacity:0;"
  390. offset="1"
  391. id="stop4203-9-3" />
  392. </linearGradient>
  393. <linearGradient
  394. inkscape:collect="always"
  395. xlink:href="#linearGradient7523"
  396. id="linearGradient7529"
  397. x1="25.5"
  398. y1="2.875"
  399. x2="21"
  400. y2="11.5"
  401. gradientUnits="userSpaceOnUse" />
  402. <linearGradient
  403. inkscape:collect="always"
  404. xlink:href="#linearGradient7600"
  405. id="linearGradient7606"
  406. x1="18.561552"
  407. y1="11.726136"
  408. x2="23.246136"
  409. y2="4.0363503"
  410. gradientUnits="userSpaceOnUse" />
  411. <linearGradient
  412. inkscape:collect="always"
  413. xlink:href="#linearGradient7646"
  414. id="linearGradient7652"
  415. x1="22.875"
  416. y1="10.625"
  417. x2="26.125"
  418. y2="7.875"
  419. gradientUnits="userSpaceOnUse" />
  420. <linearGradient
  421. inkscape:collect="always"
  422. xlink:href="#linearGradient7646-4"
  423. id="linearGradient7662-5"
  424. gradientUnits="userSpaceOnUse"
  425. x1="24.5"
  426. y1="9.5"
  427. x2="27.25"
  428. y2="7" />
  429. <linearGradient
  430. inkscape:collect="always"
  431. id="linearGradient7646-4">
  432. <stop
  433. style="stop-color:#5c41ad;stop-opacity:1;"
  434. offset="0"
  435. id="stop7648-2" />
  436. <stop
  437. style="stop-color:#5c41ad;stop-opacity:0;"
  438. offset="1"
  439. id="stop7650-4" />
  440. </linearGradient>
  441. <linearGradient
  442. y2="7"
  443. x2="27.25"
  444. y1="9.5"
  445. x1="24.5"
  446. gradientUnits="userSpaceOnUse"
  447. id="linearGradient7683"
  448. xlink:href="#linearGradient7646-4"
  449. inkscape:collect="always" />
  450. <linearGradient
  451. y2="7"
  452. x2="27.25"
  453. y1="9.5"
  454. x1="24.5"
  455. gradientUnits="userSpaceOnUse"
  456. id="linearGradient7683-9"
  457. xlink:href="#linearGradient7646-4-4"
  458. inkscape:collect="always" />
  459. <linearGradient
  460. inkscape:collect="always"
  461. id="linearGradient7646-4-4">
  462. <stop
  463. style="stop-color:#5c41ad;stop-opacity:1;"
  464. offset="0"
  465. id="stop7648-2-9" />
  466. <stop
  467. style="stop-color:#5c41ad;stop-opacity:0;"
  468. offset="1"
  469. id="stop7650-4-8" />
  470. </linearGradient>
  471. <linearGradient
  472. inkscape:collect="always"
  473. xlink:href="#linearGradient7646-1"
  474. id="linearGradient7662-56"
  475. gradientUnits="userSpaceOnUse"
  476. x1="24.5"
  477. y1="9.5"
  478. x2="26.366116"
  479. y2="6.6464467" />
  480. <linearGradient
  481. inkscape:collect="always"
  482. id="linearGradient7646-1">
  483. <stop
  484. style="stop-color:#5c41ad;stop-opacity:1;"
  485. offset="0"
  486. id="stop7648-7" />
  487. <stop
  488. style="stop-color:#5c41ad;stop-opacity:0;"
  489. offset="1"
  490. id="stop7650-2" />
  491. </linearGradient>
  492. <linearGradient
  493. inkscape:collect="always"
  494. xlink:href="#linearGradient9350-6"
  495. id="linearGradient9356-8"
  496. x1="30.798098"
  497. y1="12.720563"
  498. x2="27.937185"
  499. y2="12.923097"
  500. gradientUnits="userSpaceOnUse" />
  501. <linearGradient
  502. inkscape:collect="always"
  503. id="linearGradient9350-6">
  504. <stop
  505. style="stop-color:#ffffff;stop-opacity:1;"
  506. offset="0"
  507. id="stop9352-3" />
  508. <stop
  509. style="stop-color:#ffffff;stop-opacity:0;"
  510. offset="1"
  511. id="stop9354-7" />
  512. </linearGradient>
  513. <linearGradient
  514. inkscape:collect="always"
  515. xlink:href="#linearGradient7795-3"
  516. id="linearGradient7801-5"
  517. x1="44.901279"
  518. y1="15.26167"
  519. x2="16.61701"
  520. y2="7.1299424"
  521. gradientUnits="userSpaceOnUse" />
  522. <linearGradient
  523. inkscape:collect="always"
  524. id="linearGradient7795-3">
  525. <stop
  526. style="stop-color:#000000;stop-opacity:1;"
  527. offset="0"
  528. id="stop7797-7" />
  529. <stop
  530. style="stop-color:#000000;stop-opacity:0;"
  531. offset="1"
  532. id="stop7799-6" />
  533. </linearGradient>
  534. <linearGradient
  535. inkscape:collect="always"
  536. xlink:href="#linearGradient9459-0"
  537. id="linearGradient9465-4"
  538. x1="15.202796"
  539. y1="-2.9096537"
  540. x2="15.202796"
  541. y2="4.3498468"
  542. gradientUnits="userSpaceOnUse" />
  543. <linearGradient
  544. inkscape:collect="always"
  545. id="linearGradient9459-0">
  546. <stop
  547. style="stop-color:#ffffff;stop-opacity:1;"
  548. offset="0"
  549. id="stop9461-3" />
  550. <stop
  551. style="stop-color:#ffffff;stop-opacity:0;"
  552. offset="1"
  553. id="stop9463-5" />
  554. </linearGradient>
  555. <linearGradient
  556. inkscape:collect="always"
  557. xlink:href="#linearGradient7563-5"
  558. id="linearGradient7569-8"
  559. x1="12.048728"
  560. y1="9.7531071"
  561. x2="12.304115"
  562. y2="11.128107"
  563. gradientUnits="userSpaceOnUse" />
  564. <linearGradient
  565. inkscape:collect="always"
  566. id="linearGradient7563-5">
  567. <stop
  568. style="stop-color:#502779;stop-opacity:1"
  569. offset="0"
  570. id="stop7565-0" />
  571. <stop
  572. style="stop-color:#561579;stop-opacity:1"
  573. offset="1"
  574. id="stop7567-9" />
  575. </linearGradient>
  576. <linearGradient
  577. inkscape:collect="always"
  578. xlink:href="#linearGradient7563-8"
  579. id="linearGradient7569-9"
  580. x1="12.048728"
  581. y1="9.7531071"
  582. x2="12.304115"
  583. y2="11.128107"
  584. gradientUnits="userSpaceOnUse" />
  585. <linearGradient
  586. inkscape:collect="always"
  587. id="linearGradient7563-8">
  588. <stop
  589. style="stop-color:#502779;stop-opacity:1"
  590. offset="0"
  591. id="stop7565-02" />
  592. <stop
  593. style="stop-color:#561579;stop-opacity:1"
  594. offset="1"
  595. id="stop7567-4" />
  596. </linearGradient>
  597. <linearGradient
  598. inkscape:collect="always"
  599. xlink:href="#linearGradient9324-2"
  600. id="linearGradient9330-1"
  601. x1="12.909496"
  602. y1="11.372578"
  603. x2="18.340702"
  604. y2="11.372578"
  605. gradientUnits="userSpaceOnUse" />
  606. <linearGradient
  607. inkscape:collect="always"
  608. id="linearGradient9324-2">
  609. <stop
  610. style="stop-color:#ffffff;stop-opacity:1;"
  611. offset="0"
  612. id="stop9326-0" />
  613. <stop
  614. style="stop-color:#ffffff;stop-opacity:0;"
  615. offset="1"
  616. id="stop9328-0" />
  617. </linearGradient>
  618. <linearGradient
  619. inkscape:collect="always"
  620. xlink:href="#linearGradient9324-3"
  621. id="linearGradient9330-6"
  622. x1="12.909496"
  623. y1="11.372578"
  624. x2="18.340702"
  625. y2="11.372578"
  626. gradientUnits="userSpaceOnUse" />
  627. <linearGradient
  628. inkscape:collect="always"
  629. id="linearGradient9324-3">
  630. <stop
  631. style="stop-color:#ffffff;stop-opacity:1;"
  632. offset="0"
  633. id="stop9326-9" />
  634. <stop
  635. style="stop-color:#ffffff;stop-opacity:0;"
  636. offset="1"
  637. id="stop9328-08" />
  638. </linearGradient>
  639. <linearGradient
  640. inkscape:collect="always"
  641. xlink:href="#linearGradient9787-0"
  642. id="linearGradient9797-0"
  643. gradientUnits="userSpaceOnUse"
  644. x1="8.058341"
  645. y1="16.147028"
  646. x2="8.058341"
  647. y2="18.229885" />
  648. <linearGradient
  649. inkscape:collect="always"
  650. id="linearGradient9787-0">
  651. <stop
  652. style="stop-color:#000000;stop-opacity:1;"
  653. offset="0"
  654. id="stop9789-5" />
  655. <stop
  656. style="stop-color:#000000;stop-opacity:0;"
  657. offset="1"
  658. id="stop9791-0" />
  659. </linearGradient>
  660. <linearGradient
  661. inkscape:collect="always"
  662. xlink:href="#linearGradient9709-1"
  663. id="linearGradient9715-3"
  664. x1="17.625"
  665. y1="-7.5"
  666. x2="15.125"
  667. y2="5.125"
  668. gradientUnits="userSpaceOnUse" />
  669. <linearGradient
  670. inkscape:collect="always"
  671. id="linearGradient9709-1">
  672. <stop
  673. style="stop-color:#ffffff;stop-opacity:1;"
  674. offset="0"
  675. id="stop9711-8" />
  676. <stop
  677. style="stop-color:#ffffff;stop-opacity:0;"
  678. offset="1"
  679. id="stop9713-0" />
  680. </linearGradient>
  681. <linearGradient
  682. inkscape:collect="always"
  683. xlink:href="#linearGradient9375-9"
  684. id="linearGradient9381-5"
  685. x1="-0.53033018"
  686. y1="15.746952"
  687. x2="6.7692909"
  688. y2="3.8820977"
  689. gradientUnits="userSpaceOnUse" />
  690. <linearGradient
  691. inkscape:collect="always"
  692. id="linearGradient9375-9">
  693. <stop
  694. style="stop-color:#ffffff;stop-opacity:1;"
  695. offset="0"
  696. id="stop9377-4" />
  697. <stop
  698. style="stop-color:#ffffff;stop-opacity:0;"
  699. offset="1"
  700. id="stop9379-8" />
  701. </linearGradient>
  702. <linearGradient
  703. y2="7.1299424"
  704. x2="16.61701"
  705. y1="15.26167"
  706. x1="44.901279"
  707. gradientUnits="userSpaceOnUse"
  708. id="linearGradient9434-4"
  709. xlink:href="#linearGradient7795-3-9"
  710. inkscape:collect="always" />
  711. <linearGradient
  712. inkscape:collect="always"
  713. id="linearGradient7795-3-9">
  714. <stop
  715. style="stop-color:#000000;stop-opacity:1;"
  716. offset="0"
  717. id="stop7797-7-9" />
  718. <stop
  719. style="stop-color:#000000;stop-opacity:0;"
  720. offset="1"
  721. id="stop7799-6-1" />
  722. </linearGradient>
  723. <linearGradient
  724. y2="11.372578"
  725. x2="18.340702"
  726. y1="11.372578"
  727. x1="12.909496"
  728. gradientUnits="userSpaceOnUse"
  729. id="linearGradient9649-5"
  730. xlink:href="#linearGradient9324-2-7"
  731. inkscape:collect="always" />
  732. <linearGradient
  733. inkscape:collect="always"
  734. id="linearGradient9324-2-7">
  735. <stop
  736. style="stop-color:#ffffff;stop-opacity:1;"
  737. offset="0"
  738. id="stop9326-0-3" />
  739. <stop
  740. style="stop-color:#ffffff;stop-opacity:0;"
  741. offset="1"
  742. id="stop9328-0-9" />
  743. </linearGradient>
  744. <linearGradient
  745. y2="3.8820977"
  746. x2="6.7692909"
  747. y1="15.746952"
  748. x1="-0.53033018"
  749. gradientUnits="userSpaceOnUse"
  750. id="linearGradient10344-0"
  751. xlink:href="#linearGradient9375-9-5"
  752. inkscape:collect="always" />
  753. <linearGradient
  754. inkscape:collect="always"
  755. id="linearGradient9375-9-5">
  756. <stop
  757. style="stop-color:#ffffff;stop-opacity:1;"
  758. offset="0"
  759. id="stop9377-4-0" />
  760. <stop
  761. style="stop-color:#ffffff;stop-opacity:0;"
  762. offset="1"
  763. id="stop9379-8-4" />
  764. </linearGradient>
  765. <linearGradient
  766. inkscape:collect="always"
  767. xlink:href="#linearGradient9787-7-3"
  768. id="linearGradient9793-3-5"
  769. x1="8.058341"
  770. y1="16.147028"
  771. x2="8.058341"
  772. y2="18.229885"
  773. gradientUnits="userSpaceOnUse" />
  774. <linearGradient
  775. inkscape:collect="always"
  776. id="linearGradient9787-7-3">
  777. <stop
  778. style="stop-color:#000000;stop-opacity:1;"
  779. offset="0"
  780. id="stop9789-2-9" />
  781. <stop
  782. style="stop-color:#000000;stop-opacity:0;"
  783. offset="1"
  784. id="stop9791-7-1" />
  785. </linearGradient>
  786. <linearGradient
  787. y2="18.229885"
  788. x2="8.058341"
  789. y1="16.147028"
  790. x1="8.058341"
  791. gradientUnits="userSpaceOnUse"
  792. id="linearGradient10863-8"
  793. xlink:href="#linearGradient9787-7-3-8"
  794. inkscape:collect="always" />
  795. <linearGradient
  796. inkscape:collect="always"
  797. id="linearGradient9787-7-3-8">
  798. <stop
  799. style="stop-color:#000000;stop-opacity:1;"
  800. offset="0"
  801. id="stop9789-2-9-7" />
  802. <stop
  803. style="stop-color:#000000;stop-opacity:0;"
  804. offset="1"
  805. id="stop9791-7-1-0" />
  806. </linearGradient>
  807. <linearGradient
  808. y2="18.229885"
  809. x2="8.058341"
  810. y1="16.147028"
  811. x1="8.058341"
  812. gradientUnits="userSpaceOnUse"
  813. id="linearGradient10984-5"
  814. xlink:href="#linearGradient9787-7-3-8-2"
  815. inkscape:collect="always" />
  816. <linearGradient
  817. inkscape:collect="always"
  818. id="linearGradient9787-7-3-8-2">
  819. <stop
  820. style="stop-color:#000000;stop-opacity:1;"
  821. offset="0"
  822. id="stop9789-2-9-7-7" />
  823. <stop
  824. style="stop-color:#000000;stop-opacity:0;"
  825. offset="1"
  826. id="stop9791-7-1-0-9" />
  827. </linearGradient>
  828. <linearGradient
  829. y2="18.229885"
  830. x2="8.058341"
  831. y1="16.147028"
  832. x1="8.058341"
  833. gradientUnits="userSpaceOnUse"
  834. id="linearGradient11020-1"
  835. xlink:href="#linearGradient9787-7-3-8-2-9"
  836. inkscape:collect="always" />
  837. <linearGradient
  838. inkscape:collect="always"
  839. id="linearGradient9787-7-3-8-2-9">
  840. <stop
  841. style="stop-color:#000000;stop-opacity:1;"
  842. offset="0"
  843. id="stop9789-2-9-7-7-6" />
  844. <stop
  845. style="stop-color:#000000;stop-opacity:0;"
  846. offset="1"
  847. id="stop9791-7-1-0-9-3" />
  848. </linearGradient>
  849. <linearGradient
  850. y2="18.229885"
  851. x2="8.058341"
  852. y1="16.147028"
  853. x1="8.058341"
  854. gradientUnits="userSpaceOnUse"
  855. id="linearGradient11054"
  856. xlink:href="#linearGradient9787-7-3-8-2-9"
  857. inkscape:collect="always" />
  858. <linearGradient
  859. inkscape:collect="always"
  860. xlink:href="#linearGradient9787-7-3-84"
  861. id="linearGradient10937-6"
  862. gradientUnits="userSpaceOnUse"
  863. x1="8.058341"
  864. y1="16.147028"
  865. x2="8.058341"
  866. y2="18.229885" />
  867. <linearGradient
  868. inkscape:collect="always"
  869. id="linearGradient9787-7-3-84">
  870. <stop
  871. style="stop-color:#000000;stop-opacity:1;"
  872. offset="0"
  873. id="stop9789-2-9-6" />
  874. <stop
  875. style="stop-color:#000000;stop-opacity:0;"
  876. offset="1"
  877. id="stop9791-7-1-6" />
  878. </linearGradient>
  879. <linearGradient
  880. y2="18.229885"
  881. x2="8.058341"
  882. y1="16.147028"
  883. x1="8.058341"
  884. gradientUnits="userSpaceOnUse"
  885. id="linearGradient11088"
  886. xlink:href="#linearGradient9787-7-3-84"
  887. inkscape:collect="always" />
  888. <linearGradient
  889. inkscape:collect="always"
  890. xlink:href="#linearGradient3881-1-2-2"
  891. id="linearGradient10939-7"
  892. gradientUnits="userSpaceOnUse"
  893. x1="-0.2806088"
  894. y1="14.52101"
  895. x2="6.451941"
  896. y2="14.52101" />
  897. <linearGradient
  898. inkscape:collect="always"
  899. id="linearGradient3881-1-2-2">
  900. <stop
  901. style="stop-color:#000000;stop-opacity:1;"
  902. offset="0"
  903. id="stop3883-1-1-7" />
  904. <stop
  905. style="stop-color:#000000;stop-opacity:0;"
  906. offset="1"
  907. id="stop3885-4-2-4" />
  908. </linearGradient>
  909. <linearGradient
  910. inkscape:collect="always"
  911. xlink:href="#linearGradient3881-1-2-2"
  912. id="linearGradient3907-4-6-4"
  913. gradientUnits="userSpaceOnUse"
  914. x1="-0.2806088"
  915. y1="14.52101"
  916. x2="6.451941"
  917. y2="14.52101" />
  918. <linearGradient
  919. y2="3.8820977"
  920. x2="6.7692909"
  921. y1="15.746952"
  922. x1="-0.53033018"
  923. gradientUnits="userSpaceOnUse"
  924. id="linearGradient10773-7"
  925. xlink:href="#linearGradient9375-9-5-2"
  926. inkscape:collect="always" />
  927. <linearGradient
  928. inkscape:collect="always"
  929. id="linearGradient9375-9-5-2">
  930. <stop
  931. style="stop-color:#ffffff;stop-opacity:1;"
  932. offset="0"
  933. id="stop9377-4-0-1" />
  934. <stop
  935. style="stop-color:#ffffff;stop-opacity:0;"
  936. offset="1"
  937. id="stop9379-8-4-7" />
  938. </linearGradient>
  939. <linearGradient
  940. y2="11.372578"
  941. x2="18.340702"
  942. y1="11.372578"
  943. x1="12.909496"
  944. gradientUnits="userSpaceOnUse"
  945. id="linearGradient9649-7-4-5"
  946. xlink:href="#linearGradient9324-3-3-2"
  947. inkscape:collect="always" />
  948. <linearGradient
  949. inkscape:collect="always"
  950. id="linearGradient9324-3-3-2">
  951. <stop
  952. style="stop-color:#ffffff;stop-opacity:1;"
  953. offset="0"
  954. id="stop9326-9-9-1" />
  955. <stop
  956. style="stop-color:#ffffff;stop-opacity:0;"
  957. offset="1"
  958. id="stop9328-08-4-5" />
  959. </linearGradient>
  960. <linearGradient
  961. y2="11.372578"
  962. x2="18.340702"
  963. y1="11.372578"
  964. x1="12.909496"
  965. gradientUnits="userSpaceOnUse"
  966. id="linearGradient10712-9-1"
  967. xlink:href="#linearGradient9324-2-7-5-6"
  968. inkscape:collect="always" />
  969. <linearGradient
  970. inkscape:collect="always"
  971. id="linearGradient9324-2-7-5-6">
  972. <stop
  973. style="stop-color:#ffffff;stop-opacity:1;"
  974. offset="0"
  975. id="stop9326-0-3-6-2" />
  976. <stop
  977. style="stop-color:#ffffff;stop-opacity:0;"
  978. offset="1"
  979. id="stop9328-0-9-8-1" />
  980. </linearGradient>
  981. <linearGradient
  982. y2="11.372578"
  983. x2="18.340702"
  984. y1="11.372578"
  985. x1="12.909496"
  986. gradientUnits="userSpaceOnUse"
  987. id="linearGradient11331-3"
  988. xlink:href="#linearGradient9324-3-3-2-2"
  989. inkscape:collect="always" />
  990. <linearGradient
  991. inkscape:collect="always"
  992. id="linearGradient9324-3-3-2-2">
  993. <stop
  994. style="stop-color:#ffffff;stop-opacity:1;"
  995. offset="0"
  996. id="stop9326-9-9-1-1" />
  997. <stop
  998. style="stop-color:#ffffff;stop-opacity:0;"
  999. offset="1"
  1000. id="stop9328-08-4-5-9" />
  1001. </linearGradient>
  1002. <linearGradient
  1003. y2="11.372578"
  1004. x2="18.340702"
  1005. y1="11.372578"
  1006. x1="12.909496"
  1007. gradientUnits="userSpaceOnUse"
  1008. id="linearGradient11395"
  1009. xlink:href="#linearGradient9324-3-3-2-2"
  1010. inkscape:collect="always" />
  1011. <linearGradient
  1012. y2="11.128107"
  1013. x2="12.304115"
  1014. y1="9.7531071"
  1015. x1="12.048728"
  1016. gradientUnits="userSpaceOnUse"
  1017. id="linearGradient9596-4-3"
  1018. xlink:href="#linearGradient7563-5-4-6"
  1019. inkscape:collect="always" />
  1020. <linearGradient
  1021. inkscape:collect="always"
  1022. id="linearGradient7563-5-4-6">
  1023. <stop
  1024. style="stop-color:#502779;stop-opacity:1"
  1025. offset="0"
  1026. id="stop7565-0-9-9" />
  1027. <stop
  1028. style="stop-color:#561579;stop-opacity:1"
  1029. offset="1"
  1030. id="stop7567-9-9-0" />
  1031. </linearGradient>
  1032. <linearGradient
  1033. y2="11.128107"
  1034. x2="12.304115"
  1035. y1="9.7531071"
  1036. x1="12.048728"
  1037. gradientUnits="userSpaceOnUse"
  1038. id="linearGradient11464"
  1039. xlink:href="#linearGradient7563-5-4-6"
  1040. inkscape:collect="always" />
  1041. <linearGradient
  1042. y2="5.125"
  1043. x2="15.125"
  1044. y1="-7.5"
  1045. x1="17.625"
  1046. gradientUnits="userSpaceOnUse"
  1047. id="linearGradient10302-3-4"
  1048. xlink:href="#linearGradient9709-1-3-8"
  1049. inkscape:collect="always" />
  1050. <linearGradient
  1051. inkscape:collect="always"
  1052. id="linearGradient9709-1-3-8">
  1053. <stop
  1054. style="stop-color:#ffffff;stop-opacity:1;"
  1055. offset="0"
  1056. id="stop9711-8-7-5" />
  1057. <stop
  1058. style="stop-color:#ffffff;stop-opacity:0;"
  1059. offset="1"
  1060. id="stop9713-0-9-1" />
  1061. </linearGradient>
  1062. <linearGradient
  1063. y2="5.125"
  1064. x2="15.125"
  1065. y1="-7.5"
  1066. x1="17.625"
  1067. gradientUnits="userSpaceOnUse"
  1068. id="linearGradient11517"
  1069. xlink:href="#linearGradient9709-1-3-8"
  1070. inkscape:collect="always" />
  1071. <linearGradient
  1072. inkscape:collect="always"
  1073. xlink:href="#linearGradient7882-9"
  1074. id="linearGradient7888-2"
  1075. x1="13.157767"
  1076. y1="28.115461"
  1077. x2="13.157767"
  1078. y2="25.977585"
  1079. gradientUnits="userSpaceOnUse" />
  1080. <linearGradient
  1081. inkscape:collect="always"
  1082. id="linearGradient7882-9">
  1083. <stop
  1084. style="stop-color:#000000;stop-opacity:1;"
  1085. offset="0"
  1086. id="stop7884-7" />
  1087. <stop
  1088. style="stop-color:#000000;stop-opacity:0;"
  1089. offset="1"
  1090. id="stop7886-3" />
  1091. </linearGradient>
  1092. <linearGradient
  1093. y2="26.045048"
  1094. x2="14.893436"
  1095. y1="25.603107"
  1096. x1="15.733126"
  1097. gradientUnits="userSpaceOnUse"
  1098. id="linearGradient4392-9"
  1099. xlink:href="#linearGradient4369-8-2"
  1100. inkscape:collect="always"
  1101. gradientTransform="matrix(1,0,0,0.90664161,0,2.5689381)" />
  1102. <linearGradient
  1103. inkscape:collect="always"
  1104. id="linearGradient4369-8-2">
  1105. <stop
  1106. style="stop-color:#e6d510;stop-opacity:1;"
  1107. offset="0"
  1108. id="stop4371-5-3" />
  1109. <stop
  1110. style="stop-color:#e6d510;stop-opacity:0;"
  1111. offset="1"
  1112. id="stop4373-7-1" />
  1113. </linearGradient>
  1114. <linearGradient
  1115. y2="31.847464"
  1116. x2="-56.009686"
  1117. y1="31.847464"
  1118. x1="41.194828"
  1119. gradientUnits="userSpaceOnUse"
  1120. id="linearGradient6961-8"
  1121. xlink:href="#linearGradient4199-3-6-7"
  1122. inkscape:collect="always" />
  1123. <linearGradient
  1124. inkscape:collect="always"
  1125. id="linearGradient4199-3-6-7">
  1126. <stop
  1127. style="stop-color:#288c11;stop-opacity:1;"
  1128. offset="0"
  1129. id="stop4201-8-0-4" />
  1130. <stop
  1131. style="stop-color:#288c11;stop-opacity:0;"
  1132. offset="1"
  1133. id="stop4203-9-3-1" />
  1134. </linearGradient>
  1135. <linearGradient
  1136. y2="31.847464"
  1137. x2="-56.009686"
  1138. y1="31.847464"
  1139. x1="41.194828"
  1140. gradientUnits="userSpaceOnUse"
  1141. id="linearGradient4448-85"
  1142. xlink:href="#linearGradient4199-3-5"
  1143. inkscape:collect="always" />
  1144. <linearGradient
  1145. inkscape:collect="always"
  1146. id="linearGradient4199-3-5">
  1147. <stop
  1148. style="stop-color:#288c11;stop-opacity:1;"
  1149. offset="0"
  1150. id="stop4201-8-01" />
  1151. <stop
  1152. style="stop-color:#288c11;stop-opacity:0;"
  1153. offset="1"
  1154. id="stop4203-9-2" />
  1155. </linearGradient>
  1156. <linearGradient
  1157. gradientTransform="matrix(1,0,0,0.9904631,0,-0.0554916)"
  1158. inkscape:collect="always"
  1159. xlink:href="#linearGradient4004-5"
  1160. id="linearGradient4010-8"
  1161. x1="21.760899"
  1162. y1="16.637894"
  1163. x2="17.708237"
  1164. y2="16.637894"
  1165. gradientUnits="userSpaceOnUse" />
  1166. <linearGradient
  1167. inkscape:collect="always"
  1168. id="linearGradient4004-5">
  1169. <stop
  1170. style="stop-color:#9cd127;stop-opacity:1;"
  1171. offset="0"
  1172. id="stop4006-6" />
  1173. <stop
  1174. style="stop-color:#9cd127;stop-opacity:0;"
  1175. offset="1"
  1176. id="stop4008-2" />
  1177. </linearGradient>
  1178. <linearGradient
  1179. inkscape:collect="always"
  1180. xlink:href="#linearGradient3977-2"
  1181. id="linearGradient3983-5"
  1182. x1="9.4593296"
  1183. y1="12.941784"
  1184. x2="10.374183"
  1185. y2="12.941784"
  1186. gradientUnits="userSpaceOnUse"
  1187. gradientTransform="matrix(1.2887099,0,0,1,-2.149922,-4.9590376e-7)" />
  1188. <linearGradient
  1189. inkscape:collect="always"
  1190. id="linearGradient3977-2">
  1191. <stop
  1192. style="stop-color:#78d855;stop-opacity:1;"
  1193. offset="0"
  1194. id="stop3979-6" />
  1195. <stop
  1196. style="stop-color:#78d855;stop-opacity:0;"
  1197. offset="1"
  1198. id="stop3981-9" />
  1199. </linearGradient>
  1200. <linearGradient
  1201. inkscape:collect="always"
  1202. xlink:href="#linearGradient4413-3"
  1203. id="linearGradient4419-1"
  1204. x1="4.375"
  1205. y1="25.75"
  1206. x2="3.8125"
  1207. y2="26.125"
  1208. gradientUnits="userSpaceOnUse"
  1209. gradientTransform="matrix(1,0,0,0.81515371,0,5.086406)" />
  1210. <linearGradient
  1211. inkscape:collect="always"
  1212. id="linearGradient4413-3">
  1213. <stop
  1214. style="stop-color:#e6d50f;stop-opacity:1;"
  1215. offset="0"
  1216. id="stop4415-3" />
  1217. <stop
  1218. style="stop-color:#e6d50f;stop-opacity:0;"
  1219. offset="1"
  1220. id="stop4417-1" />
  1221. </linearGradient>
  1222. <linearGradient
  1223. y2="5.125"
  1224. x2="15.125"
  1225. y1="-7.5"
  1226. x1="17.625"
  1227. gradientUnits="userSpaceOnUse"
  1228. id="linearGradient11517-5"
  1229. xlink:href="#linearGradient9709-1-3-8-2"
  1230. inkscape:collect="always" />
  1231. <linearGradient
  1232. inkscape:collect="always"
  1233. id="linearGradient9709-1-3-8-2">
  1234. <stop
  1235. style="stop-color:#ffffff;stop-opacity:1;"
  1236. offset="0"
  1237. id="stop9711-8-7-5-6" />
  1238. <stop
  1239. style="stop-color:#ffffff;stop-opacity:0;"
  1240. offset="1"
  1241. id="stop9713-0-9-1-9" />
  1242. </linearGradient>
  1243. <linearGradient
  1244. y2="5.125"
  1245. x2="15.125"
  1246. y1="-7.5"
  1247. x1="17.625"
  1248. gradientUnits="userSpaceOnUse"
  1249. id="linearGradient11722"
  1250. xlink:href="#linearGradient9709-1-3-8-2"
  1251. inkscape:collect="always"
  1252. gradientTransform="translate(73.715882,47.199378)" />
  1253. <linearGradient
  1254. inkscape:collect="always"
  1255. xlink:href="#linearGradient11749"
  1256. id="linearGradient11755"
  1257. x1="5.5"
  1258. y1="6"
  1259. x2="13.5"
  1260. y2="-0.5"
  1261. gradientUnits="userSpaceOnUse" />
  1262. <linearGradient
  1263. y2="7.1299424"
  1264. x2="16.61701"
  1265. y1="15.26167"
  1266. x1="44.901279"
  1267. gradientUnits="userSpaceOnUse"
  1268. id="linearGradient9434-4-6"
  1269. xlink:href="#linearGradient7795-3-9-0"
  1270. inkscape:collect="always" />
  1271. <linearGradient
  1272. inkscape:collect="always"
  1273. id="linearGradient7795-3-9-0">
  1274. <stop
  1275. style="stop-color:#000000;stop-opacity:1;"
  1276. offset="0"
  1277. id="stop7797-7-9-7" />
  1278. <stop
  1279. style="stop-color:#000000;stop-opacity:0;"
  1280. offset="1"
  1281. id="stop7799-6-1-4" />
  1282. </linearGradient>
  1283. <linearGradient
  1284. y2="7.1299424"
  1285. x2="16.61701"
  1286. y1="15.26167"
  1287. x1="44.901279"
  1288. gradientUnits="userSpaceOnUse"
  1289. id="linearGradient11774"
  1290. xlink:href="#linearGradient7795-3-9-0"
  1291. inkscape:collect="always" />
  1292. <linearGradient
  1293. inkscape:collect="always"
  1294. xlink:href="#linearGradient13363"
  1295. id="linearGradient13369"
  1296. x1="3.4012833"
  1297. y1="31.442818"
  1298. x2="3.4012833"
  1299. y2="27.421736"
  1300. gradientUnits="userSpaceOnUse" />
  1301. <linearGradient
  1302. inkscape:collect="always"
  1303. xlink:href="#linearGradient13371"
  1304. id="linearGradient13377"
  1305. x1="4.0437641"
  1306. y1="30.324961"
  1307. x2="4.0437641"
  1308. y2="27.91979"
  1309. gradientUnits="userSpaceOnUse" />
  1310. <linearGradient
  1311. inkscape:collect="always"
  1312. xlink:href="#linearGradient13385"
  1313. id="linearGradient13391"
  1314. x1="3.3182564"
  1315. y1="30.267725"
  1316. x2="3.3182564"
  1317. y2="28.05056"
  1318. gradientUnits="userSpaceOnUse" />
  1319. <linearGradient
  1320. inkscape:collect="always"
  1321. xlink:href="#linearGradient13393"
  1322. id="linearGradient13399"
  1323. x1="2.9776075"
  1324. y1="30.338846"
  1325. x2="6.7118478"
  1326. y2="30.338846"
  1327. gradientUnits="userSpaceOnUse" />
  1328. <linearGradient
  1329. inkscape:collect="always"
  1330. xlink:href="#linearGradient7882-9-5"
  1331. id="linearGradient7888-2-0"
  1332. x1="13.157767"
  1333. y1="28.115461"
  1334. x2="13.157767"
  1335. y2="25.977585"
  1336. gradientUnits="userSpaceOnUse" />
  1337. <linearGradient
  1338. inkscape:collect="always"
  1339. id="linearGradient7882-9-5">
  1340. <stop
  1341. style="stop-color:#000000;stop-opacity:1;"
  1342. offset="0"
  1343. id="stop7884-7-7" />
  1344. <stop
  1345. style="stop-color:#000000;stop-opacity:0;"
  1346. offset="1"
  1347. id="stop7886-3-4" />
  1348. </linearGradient>
  1349. <linearGradient
  1350. y2="26.045048"
  1351. x2="14.893436"
  1352. y1="25.603107"
  1353. x1="15.733126"
  1354. gradientUnits="userSpaceOnUse"
  1355. id="linearGradient4392-9-0"
  1356. xlink:href="#linearGradient4369-8-2-3"
  1357. inkscape:collect="always"
  1358. gradientTransform="matrix(1,0,0,0.90664161,0,2.568938)" />
  1359. <linearGradient
  1360. inkscape:collect="always"
  1361. id="linearGradient4369-8-2-3">
  1362. <stop
  1363. style="stop-color:#e6d510;stop-opacity:1;"
  1364. offset="0"
  1365. id="stop4371-5-3-3" />
  1366. <stop
  1367. style="stop-color:#e6d510;stop-opacity:0;"
  1368. offset="1"
  1369. id="stop4373-7-1-9" />
  1370. </linearGradient>
  1371. <linearGradient
  1372. inkscape:collect="always"
  1373. xlink:href="#linearGradient4413-3-4"
  1374. id="linearGradient4419-1-0"
  1375. x1="4.375"
  1376. y1="25.75"
  1377. x2="3.8125"
  1378. y2="26.125"
  1379. gradientUnits="userSpaceOnUse"
  1380. gradientTransform="matrix(1,0,0,0.81515371,0,5.086406)" />
  1381. <linearGradient
  1382. inkscape:collect="always"
  1383. id="linearGradient4413-3-4">
  1384. <stop
  1385. style="stop-color:#e6d50f;stop-opacity:1;"
  1386. offset="0"
  1387. id="stop4415-3-3" />
  1388. <stop
  1389. style="stop-color:#e6d50f;stop-opacity:0;"
  1390. offset="1"
  1391. id="stop4417-1-3" />
  1392. </linearGradient>
  1393. <linearGradient
  1394. inkscape:collect="always"
  1395. xlink:href="#linearGradient3977-2-2"
  1396. id="linearGradient3983-5-4"
  1397. x1="9.4593296"
  1398. y1="12.941784"
  1399. x2="10.374183"
  1400. y2="12.941784"
  1401. gradientUnits="userSpaceOnUse"
  1402. gradientTransform="matrix(1.2887099,0,0,1,-2.149922,-4.9590376e-7)" />
  1403. <linearGradient
  1404. inkscape:collect="always"
  1405. id="linearGradient3977-2-2">
  1406. <stop
  1407. style="stop-color:#78d855;stop-opacity:1;"
  1408. offset="0"
  1409. id="stop3979-6-4" />
  1410. <stop
  1411. style="stop-color:#78d855;stop-opacity:0;"
  1412. offset="1"
  1413. id="stop3981-9-5" />
  1414. </linearGradient>
  1415. <linearGradient
  1416. y2="12.941784"
  1417. x2="10.374183"
  1418. y1="12.941784"
  1419. x1="9.4593296"
  1420. gradientTransform="matrix(1.2887099,0,0,1,-2.149922,0)"
  1421. gradientUnits="userSpaceOnUse"
  1422. id="linearGradient16794"
  1423. xlink:href="#linearGradient3977-2-2"
  1424. inkscape:collect="always" />
  1425. <linearGradient
  1426. gradientTransform="matrix(1,0,0,0.9904631,0,-0.0554916)"
  1427. inkscape:collect="always"
  1428. xlink:href="#linearGradient4004-5-8"
  1429. id="linearGradient4010-8-3"
  1430. x1="21.760899"
  1431. y1="16.637894"
  1432. x2="17.708237"
  1433. y2="16.637894"
  1434. gradientUnits="userSpaceOnUse" />
  1435. <linearGradient
  1436. inkscape:collect="always"
  1437. id="linearGradient4004-5-8">
  1438. <stop
  1439. style="stop-color:#9cd127;stop-opacity:1;"
  1440. offset="0"
  1441. id="stop4006-6-1" />
  1442. <stop
  1443. style="stop-color:#9cd127;stop-opacity:0;"
  1444. offset="1"
  1445. id="stop4008-2-1" />
  1446. </linearGradient>
  1447. <linearGradient
  1448. y2="16.637894"
  1449. x2="17.708237"
  1450. y1="16.637894"
  1451. x1="21.760899"
  1452. gradientTransform="matrix(1,0,0,0.9904631,0,-0.0554912)"
  1453. gradientUnits="userSpaceOnUse"
  1454. id="linearGradient16829"
  1455. xlink:href="#linearGradient4004-5-8"
  1456. inkscape:collect="always" />
  1457. <linearGradient
  1458. inkscape:collect="always"
  1459. xlink:href="#linearGradient13371-1"
  1460. id="linearGradient13377-3"
  1461. x1="4.0437641"
  1462. y1="30.324961"
  1463. x2="4.0437641"
  1464. y2="27.91979"
  1465. gradientUnits="userSpaceOnUse" />
  1466. <linearGradient
  1467. inkscape:collect="always"
  1468. id="linearGradient13371-1">
  1469. <stop
  1470. style="stop-color:#55e248;stop-opacity:1;"
  1471. offset="0"
  1472. id="stop13373-5" />
  1473. <stop
  1474. style="stop-color:#55e248;stop-opacity:0;"
  1475. offset="1"
  1476. id="stop13375-8" />
  1477. </linearGradient>
  1478. <linearGradient
  1479. inkscape:collect="always"
  1480. xlink:href="#linearGradient13385-3"
  1481. id="linearGradient13391-1"
  1482. x1="3.3182564"
  1483. y1="30.267725"
  1484. x2="3.3182564"
  1485. y2="28.05056"
  1486. gradientUnits="userSpaceOnUse" />
  1487. <linearGradient
  1488. inkscape:collect="always"
  1489. id="linearGradient13385-3">
  1490. <stop
  1491. style="stop-color:#55e248;stop-opacity:1;"
  1492. offset="0"
  1493. id="stop13387-3" />
  1494. <stop
  1495. style="stop-color:#55e248;stop-opacity:0;"
  1496. offset="1"
  1497. id="stop13389-9" />
  1498. </linearGradient>
  1499. <linearGradient
  1500. inkscape:collect="always"
  1501. xlink:href="#linearGradient13363-5"
  1502. id="linearGradient13369-7"
  1503. x1="3.4012833"
  1504. y1="31.442818"
  1505. x2="3.4012833"
  1506. y2="27.421736"
  1507. gradientUnits="userSpaceOnUse" />
  1508. <linearGradient
  1509. inkscape:collect="always"
  1510. id="linearGradient13363-5">
  1511. <stop
  1512. style="stop-color:#55e248;stop-opacity:1;"
  1513. offset="0"
  1514. id="stop13365-4" />
  1515. <stop
  1516. style="stop-color:#55e248;stop-opacity:0;"
  1517. offset="1"
  1518. id="stop13367-4" />
  1519. </linearGradient>
  1520. <linearGradient
  1521. inkscape:collect="always"
  1522. xlink:href="#linearGradient13393-6"
  1523. id="linearGradient13399-9"
  1524. x1="2.9776075"
  1525. y1="30.338846"
  1526. x2="6.7118478"
  1527. y2="30.338846"
  1528. gradientUnits="userSpaceOnUse" />
  1529. <linearGradient
  1530. inkscape:collect="always"
  1531. id="linearGradient13393-6">
  1532. <stop
  1533. style="stop-color:#55e248;stop-opacity:1;"
  1534. offset="0"
  1535. id="stop13395-7" />
  1536. <stop
  1537. style="stop-color:#55e248;stop-opacity:0;"
  1538. offset="1"
  1539. id="stop13397-2" />
  1540. </linearGradient>
  1541. <linearGradient
  1542. y2="30.338846"
  1543. x2="6.7118478"
  1544. y1="30.338846"
  1545. x1="2.9776075"
  1546. gradientUnits="userSpaceOnUse"
  1547. id="linearGradient16881"
  1548. xlink:href="#linearGradient13393-6"
  1549. inkscape:collect="always" />
  1550. <linearGradient
  1551. y2="31.847464"
  1552. x2="-56.009686"
  1553. y1="31.847464"
  1554. x1="41.194828"
  1555. gradientUnits="userSpaceOnUse"
  1556. id="linearGradient6961-8-1"
  1557. xlink:href="#linearGradient4199-3-6-7-0"
  1558. inkscape:collect="always" />
  1559. <linearGradient
  1560. inkscape:collect="always"
  1561. id="linearGradient4199-3-6-7-0">
  1562. <stop
  1563. style="stop-color:#288c11;stop-opacity:1;"
  1564. offset="0"
  1565. id="stop4201-8-0-4-1" />
  1566. <stop
  1567. style="stop-color:#288c11;stop-opacity:0;"
  1568. offset="1"
  1569. id="stop4203-9-3-1-3" />
  1570. </linearGradient>
  1571. <filter
  1572. color-interpolation-filters="sRGB"
  1573. inkscape:collect="always"
  1574. id="filter4479-3-6-7"
  1575. x="-0.012759615"
  1576. width="1.0255193"
  1577. y="-0.20156962"
  1578. height="1.4031392">
  1579. <feGaussianBlur
  1580. inkscape:collect="always"
  1581. stdDeviation="0.20734375"
  1582. id="feGaussianBlur4481-6-3-7" />
  1583. </filter>
  1584. <linearGradient
  1585. y2="31.847464"
  1586. x2="-56.009686"
  1587. y1="31.847464"
  1588. x1="41.194828"
  1589. gradientUnits="userSpaceOnUse"
  1590. id="linearGradient17008"
  1591. xlink:href="#linearGradient4199-3-6-7-0"
  1592. inkscape:collect="always" />
  1593. <linearGradient
  1594. y2="31.847464"
  1595. x2="-56.009686"
  1596. y1="31.847464"
  1597. x1="41.194828"
  1598. gradientUnits="userSpaceOnUse"
  1599. id="linearGradient4448-85-6"
  1600. xlink:href="#linearGradient4199-3-5-3"
  1601. inkscape:collect="always" />
  1602. <linearGradient
  1603. inkscape:collect="always"
  1604. id="linearGradient4199-3-5-3">
  1605. <stop
  1606. style="stop-color:#288c11;stop-opacity:1;"
  1607. offset="0"
  1608. id="stop4201-8-01-9" />
  1609. <stop
  1610. style="stop-color:#288c11;stop-opacity:0;"
  1611. offset="1"
  1612. id="stop4203-9-2-1" />
  1613. </linearGradient>
  1614. <filter
  1615. inkscape:collect="always"
  1616. id="filter4479-6-0"
  1617. x="-0.012759615"
  1618. width="1.0255193"
  1619. y="-0.20156962"
  1620. height="1.4031392"
  1621. color-interpolation-filters="sRGB">
  1622. <feGaussianBlur
  1623. inkscape:collect="always"
  1624. stdDeviation="0.20734375"
  1625. id="feGaussianBlur4481-4-4" />
  1626. </filter>
  1627. <linearGradient
  1628. y2="31.847464"
  1629. x2="-56.009686"
  1630. y1="31.847464"
  1631. x1="41.194828"
  1632. gradientUnits="userSpaceOnUse"
  1633. id="linearGradient17049"
  1634. xlink:href="#linearGradient4199-3-5-3"
  1635. inkscape:collect="always" />
  1636. <linearGradient
  1637. inkscape:collect="always"
  1638. xlink:href="#linearGradient4413-3-4-1"
  1639. id="linearGradient4419-1-0-1"
  1640. x1="4.375"
  1641. y1="25.75"
  1642. x2="3.8125"
  1643. y2="26.125"
  1644. gradientUnits="userSpaceOnUse"
  1645. gradientTransform="matrix(1,0,0,0.81515371,0,5.086406)" />
  1646. <linearGradient
  1647. inkscape:collect="always"
  1648. id="linearGradient4413-3-4-1">
  1649. <stop
  1650. style="stop-color:#e6d50f;stop-opacity:1;"
  1651. offset="0"
  1652. id="stop4415-3-3-8" />
  1653. <stop
  1654. style="stop-color:#e6d50f;stop-opacity:0;"
  1655. offset="1"
  1656. id="stop4417-1-3-6" />
  1657. </linearGradient>
  1658. <linearGradient
  1659. y2="26.045048"
  1660. x2="14.893436"
  1661. y1="25.603107"
  1662. x1="15.733126"
  1663. gradientUnits="userSpaceOnUse"
  1664. id="linearGradient4392-9-0-4"
  1665. xlink:href="#linearGradient4369-8-2-3-3"
  1666. inkscape:collect="always"
  1667. gradientTransform="matrix(1,0,0,0.90664161,0,2.568938)" />
  1668. <linearGradient
  1669. inkscape:collect="always"
  1670. id="linearGradient4369-8-2-3-3">
  1671. <stop
  1672. style="stop-color:#e6d510;stop-opacity:1;"
  1673. offset="0"
  1674. id="stop4371-5-3-3-4" />
  1675. <stop
  1676. style="stop-color:#e6d510;stop-opacity:0;"
  1677. offset="1"
  1678. id="stop4373-7-1-9-7" />
  1679. </linearGradient>
  1680. <linearGradient
  1681. inkscape:collect="always"
  1682. xlink:href="#linearGradient7882-9-5-0"
  1683. id="linearGradient7888-2-0-7"
  1684. x1="13.157767"
  1685. y1="28.115461"
  1686. x2="13.157767"
  1687. y2="25.977585"
  1688. gradientUnits="userSpaceOnUse" />
  1689. <linearGradient
  1690. inkscape:collect="always"
  1691. id="linearGradient7882-9-5-0">
  1692. <stop
  1693. style="stop-color:#000000;stop-opacity:1;"
  1694. offset="0"
  1695. id="stop7884-7-7-7" />
  1696. <stop
  1697. style="stop-color:#000000;stop-opacity:0;"
  1698. offset="1"
  1699. id="stop7886-3-4-4" />
  1700. </linearGradient>
  1701. <linearGradient
  1702. y2="25.977585"
  1703. x2="13.157767"
  1704. y1="28.115461"
  1705. x1="13.157767"
  1706. gradientUnits="userSpaceOnUse"
  1707. id="linearGradient17103"
  1708. xlink:href="#linearGradient7882-9-5-0"
  1709. inkscape:collect="always" />
  1710. <linearGradient
  1711. y2="25.977585"
  1712. x2="13.157767"
  1713. y1="28.115461"
  1714. x1="13.157767"
  1715. gradientUnits="userSpaceOnUse"
  1716. id="linearGradient17103-0"
  1717. xlink:href="#linearGradient7882-9-5-0-7"
  1718. inkscape:collect="always" />
  1719. <linearGradient
  1720. inkscape:collect="always"
  1721. id="linearGradient7882-9-5-0-7">
  1722. <stop
  1723. style="stop-color:#000000;stop-opacity:1;"
  1724. offset="0"
  1725. id="stop7884-7-7-7-2" />
  1726. <stop
  1727. style="stop-color:#000000;stop-opacity:0;"
  1728. offset="1"
  1729. id="stop7886-3-4-4-9" />
  1730. </linearGradient>
  1731. <filter
  1732. inkscape:collect="always"
  1733. id="filter7878-8-2-5-9"
  1734. color-interpolation-filters="sRGB">
  1735. <feGaussianBlur
  1736. inkscape:collect="always"
  1737. stdDeviation="0.32853498"
  1738. id="feGaussianBlur7880-0-0-3-3" />
  1739. </filter>
  1740. <linearGradient
  1741. y2="25.977585"
  1742. x2="13.157767"
  1743. y1="28.115461"
  1744. x1="13.157767"
  1745. gradientUnits="userSpaceOnUse"
  1746. id="linearGradient17189"
  1747. xlink:href="#linearGradient7882-9-5-0-7"
  1748. inkscape:collect="always" />
  1749. <linearGradient
  1750. inkscape:collect="always"
  1751. xlink:href="#linearGradient11741-8"
  1752. id="linearGradient11747-1"
  1753. x1="9.625"
  1754. y1="8.5"
  1755. x2="10.25"
  1756. y2="6.25"
  1757. gradientUnits="userSpaceOnUse" />
  1758. <linearGradient
  1759. inkscape:collect="always"
  1760. id="linearGradient11741-8">
  1761. <stop
  1762. style="stop-color:#58a4b6;stop-opacity:1;"
  1763. offset="0"
  1764. id="stop11743-7" />
  1765. <stop
  1766. style="stop-color:#58a4b6;stop-opacity:0;"
  1767. offset="1"
  1768. id="stop11745-9" />
  1769. </linearGradient>
  1770. <linearGradient
  1771. y2="6.25"
  1772. x2="10.25"
  1773. y1="8.5"
  1774. x1="9.625"
  1775. gradientUnits="userSpaceOnUse"
  1776. id="linearGradient3660"
  1777. xlink:href="#linearGradient11741-8"
  1778. inkscape:collect="always" />
  1779. <linearGradient
  1780. inkscape:collect="always"
  1781. xlink:href="#linearGradient4240-2-1-3-7-0-0"
  1782. id="linearGradient11803-2"
  1783. gradientUnits="userSpaceOnUse"
  1784. x1="8.6928434"
  1785. y1="13.939294"
  1786. x2="5.0954299"
  1787. y2="13.939294" />
  1788. <linearGradient
  1789. inkscape:collect="always"
  1790. id="linearGradient4240-2-1-3-7-0-0">
  1791. <stop
  1792. style="stop-color:#321d8c;stop-opacity:1;"
  1793. offset="0"
  1794. id="stop4242-1-3-9-9-0-2" />
  1795. <stop
  1796. style="stop-color:#6d656e;stop-opacity:1"
  1797. offset="1"
  1798. id="stop4244-3-4-2-3-6-3" />
  1799. </linearGradient>
  1800. <linearGradient
  1801. y2="13.939294"
  1802. x2="5.0954299"
  1803. y1="13.939294"
  1804. x1="8.6928434"
  1805. gradientUnits="userSpaceOnUse"
  1806. id="linearGradient4464"
  1807. xlink:href="#linearGradient4240-2-1-3-7-0-0"
  1808. inkscape:collect="always" />
  1809. <linearGradient
  1810. inkscape:collect="always"
  1811. xlink:href="#linearGradient4240-2-1-3-7-0-5"
  1812. id="linearGradient11797-7"
  1813. gradientUnits="userSpaceOnUse"
  1814. x1="8.6928434"
  1815. y1="13.939294"
  1816. x2="5.0954299"
  1817. y2="13.939294" />
  1818. <linearGradient
  1819. inkscape:collect="always"
  1820. id="linearGradient4240-2-1-3-7-0-5">
  1821. <stop
  1822. style="stop-color:#321d8c;stop-opacity:1;"
  1823. offset="0"
  1824. id="stop4242-1-3-9-9-0-9" />
  1825. <stop
  1826. style="stop-color:#6d656e;stop-opacity:1"
  1827. offset="1"
  1828. id="stop4244-3-4-2-3-6-2" />
  1829. </linearGradient>
  1830. <linearGradient
  1831. y2="13.939294"
  1832. x2="5.0954299"
  1833. y1="13.939294"
  1834. x1="8.6928434"
  1835. gradientUnits="userSpaceOnUse"
  1836. id="linearGradient4503"
  1837. xlink:href="#linearGradient4240-2-1-3-7-0-5"
  1838. inkscape:collect="always" />
  1839. <linearGradient
  1840. y2="11.128107"
  1841. x2="12.304115"
  1842. y1="9.7531071"
  1843. x1="12.048728"
  1844. gradientUnits="userSpaceOnUse"
  1845. id="linearGradient11464-1"
  1846. xlink:href="#linearGradient7563-5-4-6-8"
  1847. inkscape:collect="always" />
  1848. <linearGradient
  1849. inkscape:collect="always"
  1850. id="linearGradient7563-5-4-6-8">
  1851. <stop
  1852. style="stop-color:#502779;stop-opacity:1"
  1853. offset="0"
  1854. id="stop7565-0-9-9-7" />
  1855. <stop
  1856. style="stop-color:#561579;stop-opacity:1"
  1857. offset="1"
  1858. id="stop7567-9-9-0-9" />
  1859. </linearGradient>
  1860. <linearGradient
  1861. inkscape:collect="always"
  1862. xlink:href="#linearGradient11749-0"
  1863. id="linearGradient11755-2"
  1864. x1="5.5"
  1865. y1="6"
  1866. x2="13.5"
  1867. y2="-0.5"
  1868. gradientUnits="userSpaceOnUse"
  1869. gradientTransform="translate(54,0)" />
  1870. <linearGradient
  1871. inkscape:collect="always"
  1872. id="linearGradient11749-0">
  1873. <stop
  1874. style="stop-color:#58a4b6;stop-opacity:1;"
  1875. offset="0"
  1876. id="stop11751-2" />
  1877. <stop
  1878. style="stop-color:#58a4b6;stop-opacity:0;"
  1879. offset="1"
  1880. id="stop11753-3" />
  1881. </linearGradient>
  1882. <linearGradient
  1883. y2="6.25"
  1884. x2="10.25"
  1885. y1="8.5"
  1886. x1="9.625"
  1887. gradientUnits="userSpaceOnUse"
  1888. id="linearGradient3660-7"
  1889. xlink:href="#linearGradient11741-8-5"
  1890. inkscape:collect="always"
  1891. gradientTransform="translate(54,0)" />
  1892. <linearGradient
  1893. inkscape:collect="always"
  1894. id="linearGradient11741-8-5">
  1895. <stop
  1896. style="stop-color:#58a4b6;stop-opacity:1;"
  1897. offset="0"
  1898. id="stop11743-7-9" />
  1899. <stop
  1900. style="stop-color:#58a4b6;stop-opacity:0;"
  1901. offset="1"
  1902. id="stop11745-9-2" />
  1903. </linearGradient>
  1904. <linearGradient
  1905. y2="7.1299424"
  1906. x2="16.61701"
  1907. y1="15.26167"
  1908. x1="44.901279"
  1909. gradientUnits="userSpaceOnUse"
  1910. id="linearGradient11774-2"
  1911. xlink:href="#linearGradient7795-3-9-0-8"
  1912. inkscape:collect="always"
  1913. gradientTransform="translate(54,0)" />
  1914. <linearGradient
  1915. inkscape:collect="always"
  1916. id="linearGradient7795-3-9-0-8">
  1917. <stop
  1918. style="stop-color:#000000;stop-opacity:1;"
  1919. offset="0"
  1920. id="stop7797-7-9-7-9" />
  1921. <stop
  1922. style="stop-color:#000000;stop-opacity:0;"
  1923. offset="1"
  1924. id="stop7799-6-1-4-7" />
  1925. </linearGradient>
  1926. <linearGradient
  1927. y2="13.939294"
  1928. x2="5.0954299"
  1929. y1="13.939294"
  1930. x1="8.6928434"
  1931. gradientUnits="userSpaceOnUse"
  1932. id="linearGradient4503-3"
  1933. xlink:href="#linearGradient4240-2-1-3-7-0-5-6"
  1934. inkscape:collect="always" />
  1935. <linearGradient
  1936. inkscape:collect="always"
  1937. id="linearGradient4240-2-1-3-7-0-5-6">
  1938. <stop
  1939. style="stop-color:#321d8c;stop-opacity:1;"
  1940. offset="0"
  1941. id="stop4242-1-3-9-9-0-9-1" />
  1942. <stop
  1943. style="stop-color:#6d656e;stop-opacity:1"
  1944. offset="1"
  1945. id="stop4244-3-4-2-3-6-2-2" />
  1946. </linearGradient>
  1947. <linearGradient
  1948. y2="13.939294"
  1949. x2="5.0954299"
  1950. y1="13.939294"
  1951. x1="8.6928434"
  1952. gradientUnits="userSpaceOnUse"
  1953. id="linearGradient4464-9"
  1954. xlink:href="#linearGradient4240-2-1-3-7-0-0-3"
  1955. inkscape:collect="always" />
  1956. <linearGradient
  1957. inkscape:collect="always"
  1958. id="linearGradient4240-2-1-3-7-0-0-3">
  1959. <stop
  1960. style="stop-color:#321d8c;stop-opacity:1;"
  1961. offset="0"
  1962. id="stop4242-1-3-9-9-0-2-1" />
  1963. <stop
  1964. style="stop-color:#6d656e;stop-opacity:1"
  1965. offset="1"
  1966. id="stop4244-3-4-2-3-6-3-9" />
  1967. </linearGradient>
  1968. <linearGradient
  1969. inkscape:collect="always"
  1970. xlink:href="#linearGradient3881-1-2-2-7"
  1971. id="linearGradient10939-7-4"
  1972. gradientUnits="userSpaceOnUse"
  1973. x1="-0.2806088"
  1974. y1="14.52101"
  1975. x2="6.451941"
  1976. y2="14.52101" />
  1977. <linearGradient
  1978. inkscape:collect="always"
  1979. id="linearGradient3881-1-2-2-7">
  1980. <stop
  1981. style="stop-color:#000000;stop-opacity:1;"
  1982. offset="0"
  1983. id="stop3883-1-1-7-8" />
  1984. <stop
  1985. style="stop-color:#000000;stop-opacity:0;"
  1986. offset="1"
  1987. id="stop3885-4-2-4-4" />
  1988. </linearGradient>
  1989. <linearGradient
  1990. inkscape:collect="always"
  1991. xlink:href="#linearGradient3881-1-2-2-7"
  1992. id="linearGradient3907-4-6-4-5"
  1993. gradientUnits="userSpaceOnUse"
  1994. x1="-0.2806088"
  1995. y1="14.52101"
  1996. x2="6.451941"
  1997. y2="14.52101" />
  1998. <linearGradient
  1999. inkscape:collect="always"
  2000. xlink:href="#linearGradient4413-3-4-1-3"
  2001. id="linearGradient4419-1-0-1-0"
  2002. x1="4.375"
  2003. y1="25.75"
  2004. x2="3.8125"
  2005. y2="26.125"
  2006. gradientUnits="userSpaceOnUse"
  2007. gradientTransform="matrix(1,0,0,0.81515371,0,5.086406)" />
  2008. <linearGradient
  2009. inkscape:collect="always"
  2010. id="linearGradient4413-3-4-1-3">
  2011. <stop
  2012. style="stop-color:#e6d50f;stop-opacity:1;"
  2013. offset="0"
  2014. id="stop4415-3-3-8-6" />
  2015. <stop
  2016. style="stop-color:#e6d50f;stop-opacity:0;"
  2017. offset="1"
  2018. id="stop4417-1-3-6-1" />
  2019. </linearGradient>
  2020. <linearGradient
  2021. y2="26.045048"
  2022. x2="14.893436"
  2023. y1="25.603107"
  2024. x1="15.733126"
  2025. gradientUnits="userSpaceOnUse"
  2026. id="linearGradient4392-9-0-4-0"
  2027. xlink:href="#linearGradient4369-8-2-3-3-6"
  2028. inkscape:collect="always"
  2029. gradientTransform="matrix(1,0,0,0.90664161,0,2.568938)" />
  2030. <linearGradient
  2031. inkscape:collect="always"
  2032. id="linearGradient4369-8-2-3-3-6">
  2033. <stop
  2034. style="stop-color:#e6d510;stop-opacity:1;"
  2035. offset="0"
  2036. id="stop4371-5-3-3-4-3" />
  2037. <stop
  2038. style="stop-color:#e6d510;stop-opacity:0;"
  2039. offset="1"
  2040. id="stop4373-7-1-9-7-2" />
  2041. </linearGradient>
  2042. <linearGradient
  2043. y2="25.977585"
  2044. x2="13.157767"
  2045. y1="28.115461"
  2046. x1="13.157767"
  2047. gradientUnits="userSpaceOnUse"
  2048. id="linearGradient17189-0"
  2049. xlink:href="#linearGradient7882-9-5-0-7-6"
  2050. inkscape:collect="always" />
  2051. <linearGradient
  2052. inkscape:collect="always"
  2053. id="linearGradient7882-9-5-0-7-6">
  2054. <stop
  2055. style="stop-color:#000000;stop-opacity:1;"
  2056. offset="0"
  2057. id="stop7884-7-7-7-2-1" />
  2058. <stop
  2059. style="stop-color:#000000;stop-opacity:0;"
  2060. offset="1"
  2061. id="stop7886-3-4-4-9-5" />
  2062. </linearGradient>
  2063. <linearGradient
  2064. y2="31.847464"
  2065. x2="-56.009686"
  2066. y1="31.847464"
  2067. x1="41.194828"
  2068. gradientUnits="userSpaceOnUse"
  2069. id="linearGradient17049-7"
  2070. xlink:href="#linearGradient4199-3-5-3-6"
  2071. inkscape:collect="always" />
  2072. <linearGradient
  2073. inkscape:collect="always"
  2074. id="linearGradient4199-3-5-3-6">
  2075. <stop
  2076. style="stop-color:#288c11;stop-opacity:1;"
  2077. offset="0"
  2078. id="stop4201-8-01-9-5" />
  2079. <stop
  2080. style="stop-color:#288c11;stop-opacity:0;"
  2081. offset="1"
  2082. id="stop4203-9-2-1-6" />
  2083. </linearGradient>
  2084. <linearGradient
  2085. inkscape:collect="always"
  2086. xlink:href="#linearGradient13371-1-4"
  2087. id="linearGradient13377-3-7"
  2088. x1="4.0437641"
  2089. y1="30.324961"
  2090. x2="4.0437641"
  2091. y2="27.91979"
  2092. gradientUnits="userSpaceOnUse" />
  2093. <linearGradient
  2094. inkscape:collect="always"
  2095. id="linearGradient13371-1-4">
  2096. <stop
  2097. style="stop-color:#55e248;stop-opacity:1;"
  2098. offset="0"
  2099. id="stop13373-5-5" />
  2100. <stop
  2101. style="stop-color:#55e248;stop-opacity:0;"
  2102. offset="1"
  2103. id="stop13375-8-2" />
  2104. </linearGradient>
  2105. <linearGradient
  2106. inkscape:collect="always"
  2107. xlink:href="#linearGradient13385-3-4"
  2108. id="linearGradient13391-1-5"
  2109. x1="3.3182564"
  2110. y1="30.267725"
  2111. x2="3.3182564"
  2112. y2="28.05056"
  2113. gradientUnits="userSpaceOnUse" />
  2114. <linearGradient
  2115. inkscape:collect="always"
  2116. id="linearGradient13385-3-4">
  2117. <stop
  2118. style="stop-color:#55e248;stop-opacity:1;"
  2119. offset="0"
  2120. id="stop13387-3-7" />
  2121. <stop
  2122. style="stop-color:#55e248;stop-opacity:0;"
  2123. offset="1"
  2124. id="stop13389-9-4" />
  2125. </linearGradient>
  2126. <linearGradient
  2127. inkscape:collect="always"
  2128. xlink:href="#linearGradient13363-5-3"
  2129. id="linearGradient13369-7-4"
  2130. x1="3.4012833"
  2131. y1="31.442818"
  2132. x2="3.4012833"
  2133. y2="27.421736"
  2134. gradientUnits="userSpaceOnUse" />
  2135. <linearGradient
  2136. inkscape:collect="always"
  2137. id="linearGradient13363-5-3">
  2138. <stop
  2139. style="stop-color:#55e248;stop-opacity:1;"
  2140. offset="0"
  2141. id="stop13365-4-0" />
  2142. <stop
  2143. style="stop-color:#55e248;stop-opacity:0;"
  2144. offset="1"
  2145. id="stop13367-4-7" />
  2146. </linearGradient>
  2147. <linearGradient
  2148. y2="30.338846"
  2149. x2="6.7118478"
  2150. y1="30.338846"
  2151. x1="2.9776075"
  2152. gradientUnits="userSpaceOnUse"
  2153. id="linearGradient16881-8"
  2154. xlink:href="#linearGradient13393-6-6"
  2155. inkscape:collect="always" />
  2156. <linearGradient
  2157. inkscape:collect="always"
  2158. id="linearGradient13393-6-6">
  2159. <stop
  2160. style="stop-color:#55e248;stop-opacity:1;"
  2161. offset="0"
  2162. id="stop13395-7-8" />
  2163. <stop
  2164. style="stop-color:#55e248;stop-opacity:0;"
  2165. offset="1"
  2166. id="stop13397-2-8" />
  2167. </linearGradient>
  2168. <linearGradient
  2169. y2="31.847464"
  2170. x2="-56.009686"
  2171. y1="31.847464"
  2172. x1="41.194828"
  2173. gradientUnits="userSpaceOnUse"
  2174. id="linearGradient17008-4"
  2175. xlink:href="#linearGradient4199-3-6-7-0-3"
  2176. inkscape:collect="always" />
  2177. <linearGradient
  2178. inkscape:collect="always"
  2179. id="linearGradient4199-3-6-7-0-3">
  2180. <stop
  2181. style="stop-color:#288c11;stop-opacity:1;"
  2182. offset="0"
  2183. id="stop4201-8-0-4-1-1" />
  2184. <stop
  2185. style="stop-color:#288c11;stop-opacity:0;"
  2186. offset="1"
  2187. id="stop4203-9-3-1-3-4" />
  2188. </linearGradient>
  2189. <linearGradient
  2190. y2="16.637894"
  2191. x2="17.708237"
  2192. y1="16.637894"
  2193. x1="21.760899"
  2194. gradientTransform="matrix(1,0,0,0.9904631,54,-0.0554912)"
  2195. gradientUnits="userSpaceOnUse"
  2196. id="linearGradient16829-0"
  2197. xlink:href="#linearGradient4004-5-8-6"
  2198. inkscape:collect="always" />
  2199. <linearGradient
  2200. inkscape:collect="always"
  2201. id="linearGradient4004-5-8-6">
  2202. <stop
  2203. style="stop-color:#9cd127;stop-opacity:1;"
  2204. offset="0"
  2205. id="stop4006-6-1-8" />
  2206. <stop
  2207. style="stop-color:#9cd127;stop-opacity:0;"
  2208. offset="1"
  2209. id="stop4008-2-1-9" />
  2210. </linearGradient>
  2211. <linearGradient
  2212. y2="12.941784"
  2213. x2="10.374183"
  2214. y1="12.941784"
  2215. x1="9.4593296"
  2216. gradientTransform="matrix(1.2887099,0,0,1,51.850078,0)"
  2217. gradientUnits="userSpaceOnUse"
  2218. id="linearGradient16794-2"
  2219. xlink:href="#linearGradient3977-2-2-6"
  2220. inkscape:collect="always" />
  2221. <linearGradient
  2222. inkscape:collect="always"
  2223. id="linearGradient3977-2-2-6">
  2224. <stop
  2225. style="stop-color:#78d855;stop-opacity:1;"
  2226. offset="0"
  2227. id="stop3979-6-4-6" />
  2228. <stop
  2229. style="stop-color:#78d855;stop-opacity:0;"
  2230. offset="1"
  2231. id="stop3981-9-5-4" />
  2232. </linearGradient>
  2233. <linearGradient
  2234. y2="11.128107"
  2235. x2="12.304115"
  2236. y1="9.7531071"
  2237. x1="12.048728"
  2238. gradientUnits="userSpaceOnUse"
  2239. id="linearGradient11464-8"
  2240. xlink:href="#linearGradient7563-5-4-6-85"
  2241. inkscape:collect="always" />
  2242. <linearGradient
  2243. inkscape:collect="always"
  2244. id="linearGradient7563-5-4-6-85">
  2245. <stop
  2246. style="stop-color:#502779;stop-opacity:1"
  2247. offset="0"
  2248. id="stop7565-0-9-9-0" />
  2249. <stop
  2250. style="stop-color:#561579;stop-opacity:1"
  2251. offset="1"
  2252. id="stop7567-9-9-0-96" />
  2253. </linearGradient>
  2254. <linearGradient
  2255. inkscape:collect="always"
  2256. xlink:href="#linearGradient11749-8"
  2257. id="linearGradient11755-3"
  2258. x1="5.5"
  2259. y1="6"
  2260. x2="13.5"
  2261. y2="-0.5"
  2262. gradientUnits="userSpaceOnUse" />
  2263. <linearGradient
  2264. inkscape:collect="always"
  2265. id="linearGradient11749-8">
  2266. <stop
  2267. style="stop-color:#58a4b6;stop-opacity:1;"
  2268. offset="0"
  2269. id="stop11751-5" />
  2270. <stop
  2271. style="stop-color:#58a4b6;stop-opacity:0;"
  2272. offset="1"
  2273. id="stop11753-6" />
  2274. </linearGradient>
  2275. <linearGradient
  2276. y2="6.25"
  2277. x2="10.25"
  2278. y1="8.5"
  2279. x1="9.625"
  2280. gradientUnits="userSpaceOnUse"
  2281. id="linearGradient3660-1"
  2282. xlink:href="#linearGradient11741-8-1"
  2283. inkscape:collect="always" />
  2284. <linearGradient
  2285. inkscape:collect="always"
  2286. id="linearGradient11741-8-1">
  2287. <stop
  2288. style="stop-color:#58a4b6;stop-opacity:1;"
  2289. offset="0"
  2290. id="stop11743-7-5" />
  2291. <stop
  2292. style="stop-color:#58a4b6;stop-opacity:0;"
  2293. offset="1"
  2294. id="stop11745-9-9" />
  2295. </linearGradient>
  2296. <linearGradient
  2297. y2="7.1299424"
  2298. x2="16.61701"
  2299. y1="15.26167"
  2300. x1="44.901279"
  2301. gradientUnits="userSpaceOnUse"
  2302. id="linearGradient11774-8"
  2303. xlink:href="#linearGradient7795-3-9-0-4"
  2304. inkscape:collect="always" />
  2305. <linearGradient
  2306. inkscape:collect="always"
  2307. id="linearGradient7795-3-9-0-4">
  2308. <stop
  2309. style="stop-color:#000000;stop-opacity:1;"
  2310. offset="0"
  2311. id="stop7797-7-9-7-8" />
  2312. <stop
  2313. style="stop-color:#000000;stop-opacity:0;"
  2314. offset="1"
  2315. id="stop7799-6-1-4-1" />
  2316. </linearGradient>
  2317. <linearGradient
  2318. y2="13.939294"
  2319. x2="5.0954299"
  2320. y1="13.939294"
  2321. x1="8.6928434"
  2322. gradientUnits="userSpaceOnUse"
  2323. id="linearGradient4503-0"
  2324. xlink:href="#linearGradient4240-2-1-3-7-0-5-3"
  2325. inkscape:collect="always" />
  2326. <linearGradient
  2327. inkscape:collect="always"
  2328. id="linearGradient4240-2-1-3-7-0-5-3">
  2329. <stop
  2330. style="stop-color:#321d8c;stop-opacity:1;"
  2331. offset="0"
  2332. id="stop4242-1-3-9-9-0-9-0" />
  2333. <stop
  2334. style="stop-color:#6d656e;stop-opacity:1"
  2335. offset="1"
  2336. id="stop4244-3-4-2-3-6-2-4" />
  2337. </linearGradient>
  2338. <linearGradient
  2339. y2="13.939294"
  2340. x2="5.0954299"
  2341. y1="13.939294"
  2342. x1="8.6928434"
  2343. gradientUnits="userSpaceOnUse"
  2344. id="linearGradient4464-4"
  2345. xlink:href="#linearGradient4240-2-1-3-7-0-0-4"
  2346. inkscape:collect="always" />
  2347. <linearGradient
  2348. inkscape:collect="always"
  2349. id="linearGradient4240-2-1-3-7-0-0-4">
  2350. <stop
  2351. style="stop-color:#321d8c;stop-opacity:1;"
  2352. offset="0"
  2353. id="stop4242-1-3-9-9-0-2-4" />
  2354. <stop
  2355. style="stop-color:#6d656e;stop-opacity:1"
  2356. offset="1"
  2357. id="stop4244-3-4-2-3-6-3-7" />
  2358. </linearGradient>
  2359. <linearGradient
  2360. inkscape:collect="always"
  2361. xlink:href="#linearGradient3881-1-2-2-3"
  2362. id="linearGradient10939-7-6"
  2363. gradientUnits="userSpaceOnUse"
  2364. x1="-0.2806088"
  2365. y1="14.52101"
  2366. x2="6.451941"
  2367. y2="14.52101" />
  2368. <linearGradient
  2369. inkscape:collect="always"
  2370. id="linearGradient3881-1-2-2-3">
  2371. <stop
  2372. style="stop-color:#000000;stop-opacity:1;"
  2373. offset="0"
  2374. id="stop3883-1-1-7-1" />
  2375. <stop
  2376. style="stop-color:#000000;stop-opacity:0;"
  2377. offset="1"
  2378. id="stop3885-4-2-4-7" />
  2379. </linearGradient>
  2380. <linearGradient
  2381. inkscape:collect="always"
  2382. xlink:href="#linearGradient3881-1-2-2-3"
  2383. id="linearGradient3907-4-6-4-59"
  2384. gradientUnits="userSpaceOnUse"
  2385. x1="-0.2806088"
  2386. y1="14.52101"
  2387. x2="6.451941"
  2388. y2="14.52101" />
  2389. <linearGradient
  2390. inkscape:collect="always"
  2391. xlink:href="#linearGradient4413-3-4-1-2"
  2392. id="linearGradient4419-1-0-1-6"
  2393. x1="4.375"
  2394. y1="25.75"
  2395. x2="3.8125"
  2396. y2="26.125"
  2397. gradientUnits="userSpaceOnUse"
  2398. gradientTransform="matrix(1,0,0,0.81515371,0,5.086406)" />
  2399. <linearGradient
  2400. inkscape:collect="always"
  2401. id="linearGradient4413-3-4-1-2">
  2402. <stop
  2403. style="stop-color:#e6d50f;stop-opacity:1;"
  2404. offset="0"
  2405. id="stop4415-3-3-8-1" />
  2406. <stop
  2407. style="stop-color:#e6d50f;stop-opacity:0;"
  2408. offset="1"
  2409. id="stop4417-1-3-6-7" />
  2410. </linearGradient>
  2411. <linearGradient
  2412. y2="26.045048"
  2413. x2="14.893436"
  2414. y1="25.603107"
  2415. x1="15.733126"
  2416. gradientUnits="userSpaceOnUse"
  2417. id="linearGradient4392-9-0-4-8"
  2418. xlink:href="#linearGradient4369-8-2-3-3-5"
  2419. inkscape:collect="always"
  2420. gradientTransform="matrix(1,0,0,0.90664161,0,2.568938)" />
  2421. <linearGradient
  2422. inkscape:collect="always"
  2423. id="linearGradient4369-8-2-3-3-5">
  2424. <stop
  2425. style="stop-color:#e6d510;stop-opacity:1;"
  2426. offset="0"
  2427. id="stop4371-5-3-3-4-7" />
  2428. <stop
  2429. style="stop-color:#e6d510;stop-opacity:0;"
  2430. offset="1"
  2431. id="stop4373-7-1-9-7-4" />
  2432. </linearGradient>
  2433. <linearGradient
  2434. y2="25.977585"
  2435. x2="13.157767"
  2436. y1="28.115461"
  2437. x1="13.157767"
  2438. gradientUnits="userSpaceOnUse"
  2439. id="linearGradient17189-1"
  2440. xlink:href="#linearGradient7882-9-5-0-7-8"
  2441. inkscape:collect="always" />
  2442. <linearGradient
  2443. inkscape:collect="always"
  2444. id="linearGradient7882-9-5-0-7-8">
  2445. <stop
  2446. style="stop-color:#000000;stop-opacity:1;"
  2447. offset="0"
  2448. id="stop7884-7-7-7-2-5" />
  2449. <stop
  2450. style="stop-color:#000000;stop-opacity:0;"
  2451. offset="1"
  2452. id="stop7886-3-4-4-9-9" />
  2453. </linearGradient>
  2454. <linearGradient
  2455. y2="31.847464"
  2456. x2="-56.009686"
  2457. y1="31.847464"
  2458. x1="41.194828"
  2459. gradientUnits="userSpaceOnUse"
  2460. id="linearGradient17049-3"
  2461. xlink:href="#linearGradient4199-3-5-3-8"
  2462. inkscape:collect="always" />
  2463. <linearGradient
  2464. inkscape:collect="always"
  2465. id="linearGradient4199-3-5-3-8">
  2466. <stop
  2467. style="stop-color:#288c11;stop-opacity:1;"
  2468. offset="0"
  2469. id="stop4201-8-01-9-8" />
  2470. <stop
  2471. style="stop-color:#288c11;stop-opacity:0;"
  2472. offset="1"
  2473. id="stop4203-9-2-1-3" />
  2474. </linearGradient>
  2475. <linearGradient
  2476. inkscape:collect="always"
  2477. xlink:href="#linearGradient13371-1-6"
  2478. id="linearGradient13377-3-9"
  2479. x1="4.0437641"
  2480. y1="30.324961"
  2481. x2="4.0437641"
  2482. y2="27.91979"
  2483. gradientUnits="userSpaceOnUse" />
  2484. <linearGradient
  2485. inkscape:collect="always"
  2486. id="linearGradient13371-1-6">
  2487. <stop
  2488. style="stop-color:#55e248;stop-opacity:1;"
  2489. offset="0"
  2490. id="stop13373-5-4" />
  2491. <stop
  2492. style="stop-color:#55e248;stop-opacity:0;"
  2493. offset="1"
  2494. id="stop13375-8-3" />
  2495. </linearGradient>
  2496. <linearGradient
  2497. inkscape:collect="always"
  2498. xlink:href="#linearGradient13385-3-3"
  2499. id="linearGradient13391-1-3"
  2500. x1="3.3182564"
  2501. y1="30.267725"
  2502. x2="3.3182564"
  2503. y2="28.05056"
  2504. gradientUnits="userSpaceOnUse" />
  2505. <linearGradient
  2506. inkscape:collect="always"
  2507. id="linearGradient13385-3-3">
  2508. <stop
  2509. style="stop-color:#55e248;stop-opacity:1;"
  2510. offset="0"
  2511. id="stop13387-3-8" />
  2512. <stop
  2513. style="stop-color:#55e248;stop-opacity:0;"
  2514. offset="1"
  2515. id="stop13389-9-6" />
  2516. </linearGradient>
  2517. <linearGradient
  2518. inkscape:collect="always"
  2519. xlink:href="#linearGradient13363-5-4"
  2520. id="linearGradient13369-7-0"
  2521. x1="3.4012833"
  2522. y1="31.442818"
  2523. x2="3.4012833"
  2524. y2="27.421736"
  2525. gradientUnits="userSpaceOnUse" />
  2526. <linearGradient
  2527. inkscape:collect="always"
  2528. id="linearGradient13363-5-4">
  2529. <stop
  2530. style="stop-color:#55e248;stop-opacity:1;"
  2531. offset="0"
  2532. id="stop13365-4-8" />
  2533. <stop
  2534. style="stop-color:#55e248;stop-opacity:0;"
  2535. offset="1"
  2536. id="stop13367-4-8" />
  2537. </linearGradient>
  2538. <linearGradient
  2539. y2="30.338846"
  2540. x2="6.7118478"
  2541. y1="30.338846"
  2542. x1="2.9776075"
  2543. gradientUnits="userSpaceOnUse"
  2544. id="linearGradient16881-89"
  2545. xlink:href="#linearGradient13393-6-7"
  2546. inkscape:collect="always" />
  2547. <linearGradient
  2548. inkscape:collect="always"
  2549. id="linearGradient13393-6-7">
  2550. <stop
  2551. style="stop-color:#55e248;stop-opacity:1;"
  2552. offset="0"
  2553. id="stop13395-7-7" />
  2554. <stop
  2555. style="stop-color:#55e248;stop-opacity:0;"
  2556. offset="1"
  2557. id="stop13397-2-6" />
  2558. </linearGradient>
  2559. <linearGradient
  2560. y2="31.847464"
  2561. x2="-56.009686"
  2562. y1="31.847464"
  2563. x1="41.194828"
  2564. gradientUnits="userSpaceOnUse"
  2565. id="linearGradient17008-43"
  2566. xlink:href="#linearGradient4199-3-6-7-0-0"
  2567. inkscape:collect="always" />
  2568. <linearGradient
  2569. inkscape:collect="always"
  2570. id="linearGradient4199-3-6-7-0-0">
  2571. <stop
  2572. style="stop-color:#288c11;stop-opacity:1;"
  2573. offset="0"
  2574. id="stop4201-8-0-4-1-3" />
  2575. <stop
  2576. style="stop-color:#288c11;stop-opacity:0;"
  2577. offset="1"
  2578. id="stop4203-9-3-1-3-0" />
  2579. </linearGradient>
  2580. <linearGradient
  2581. y2="16.637894"
  2582. x2="17.708237"
  2583. y1="16.637894"
  2584. x1="21.760899"
  2585. gradientTransform="matrix(1,0,0,0.9904631,0,-0.0554912)"
  2586. gradientUnits="userSpaceOnUse"
  2587. id="linearGradient16829-4"
  2588. xlink:href="#linearGradient4004-5-8-0"
  2589. inkscape:collect="always" />
  2590. <linearGradient
  2591. inkscape:collect="always"
  2592. id="linearGradient4004-5-8-0">
  2593. <stop
  2594. style="stop-color:#9cd127;stop-opacity:1;"
  2595. offset="0"
  2596. id="stop4006-6-1-5" />
  2597. <stop
  2598. style="stop-color:#9cd127;stop-opacity:0;"
  2599. offset="1"
  2600. id="stop4008-2-1-94" />
  2601. </linearGradient>
  2602. <linearGradient
  2603. y2="12.941784"
  2604. x2="10.374183"
  2605. y1="12.941784"
  2606. x1="9.4593296"
  2607. gradientTransform="matrix(1.2887099,0,0,1,-2.149922,0)"
  2608. gradientUnits="userSpaceOnUse"
  2609. id="linearGradient16794-6"
  2610. xlink:href="#linearGradient3977-2-2-9"
  2611. inkscape:collect="always" />
  2612. <linearGradient
  2613. inkscape:collect="always"
  2614. id="linearGradient3977-2-2-9">
  2615. <stop
  2616. style="stop-color:#78d855;stop-opacity:1;"
  2617. offset="0"
  2618. id="stop3979-6-4-2" />
  2619. <stop
  2620. style="stop-color:#78d855;stop-opacity:0;"
  2621. offset="1"
  2622. id="stop3981-9-5-2" />
  2623. </linearGradient>
  2624. <linearGradient
  2625. inkscape:collect="always"
  2626. xlink:href="#linearGradient3977-2-2-9"
  2627. id="linearGradient5414"
  2628. gradientUnits="userSpaceOnUse"
  2629. gradientTransform="matrix(1.2887099,0,0,1,-2.149922,0)"
  2630. x1="9.4593296"
  2631. y1="12.941784"
  2632. x2="10.374183"
  2633. y2="12.941784" />
  2634. <linearGradient
  2635. inkscape:collect="always"
  2636. xlink:href="#linearGradient4004-5-8-0"
  2637. id="linearGradient5416"
  2638. gradientUnits="userSpaceOnUse"
  2639. gradientTransform="matrix(1,0,0,0.9904631,0,-0.0554912)"
  2640. x1="21.760899"
  2641. y1="16.637894"
  2642. x2="17.708237"
  2643. y2="16.637894" />
  2644. <linearGradient
  2645. inkscape:collect="always"
  2646. xlink:href="#linearGradient4199-3-6-7-0-0"
  2647. id="linearGradient5418"
  2648. gradientUnits="userSpaceOnUse"
  2649. x1="41.194828"
  2650. y1="31.847464"
  2651. x2="-56.009686"
  2652. y2="31.847464" />
  2653. <linearGradient
  2654. inkscape:collect="always"
  2655. xlink:href="#linearGradient13393-6-7"
  2656. id="linearGradient5420"
  2657. gradientUnits="userSpaceOnUse"
  2658. x1="2.9776075"
  2659. y1="30.338846"
  2660. x2="6.7118478"
  2661. y2="30.338846" />
  2662. <linearGradient
  2663. inkscape:collect="always"
  2664. xlink:href="#linearGradient13363-5-4"
  2665. id="linearGradient5422"
  2666. gradientUnits="userSpaceOnUse"
  2667. x1="3.4012833"
  2668. y1="31.442818"
  2669. x2="3.4012833"
  2670. y2="27.421736" />
  2671. <linearGradient
  2672. inkscape:collect="always"
  2673. xlink:href="#linearGradient13385-3-3"
  2674. id="linearGradient5424"
  2675. gradientUnits="userSpaceOnUse"
  2676. x1="3.3182564"
  2677. y1="30.267725"
  2678. x2="3.3182564"
  2679. y2="28.05056" />
  2680. <linearGradient
  2681. inkscape:collect="always"
  2682. xlink:href="#linearGradient13371-1-6"
  2683. id="linearGradient5426"
  2684. gradientUnits="userSpaceOnUse"
  2685. x1="4.0437641"
  2686. y1="30.324961"
  2687. x2="4.0437641"
  2688. y2="27.91979" />
  2689. <linearGradient
  2690. inkscape:collect="always"
  2691. xlink:href="#linearGradient4199-3-5-3-8"
  2692. id="linearGradient5428"
  2693. gradientUnits="userSpaceOnUse"
  2694. x1="41.194828"
  2695. y1="31.847464"
  2696. x2="-56.009686"
  2697. y2="31.847464" />
  2698. <linearGradient
  2699. inkscape:collect="always"
  2700. xlink:href="#linearGradient7882-9-5-0-7-8"
  2701. id="linearGradient5430"
  2702. gradientUnits="userSpaceOnUse"
  2703. x1="13.157767"
  2704. y1="28.115461"
  2705. x2="13.157767"
  2706. y2="25.977585" />
  2707. <linearGradient
  2708. inkscape:collect="always"
  2709. xlink:href="#linearGradient4413-3-4-1-2"
  2710. id="linearGradient5432"
  2711. gradientUnits="userSpaceOnUse"
  2712. gradientTransform="matrix(1,0,0,0.81515371,0,5.086406)"
  2713. x1="4.375"
  2714. y1="25.75"
  2715. x2="3.8125"
  2716. y2="26.125" />
  2717. <linearGradient
  2718. inkscape:collect="always"
  2719. xlink:href="#linearGradient4369-8-2-3-3-5"
  2720. id="linearGradient5434"
  2721. gradientUnits="userSpaceOnUse"
  2722. gradientTransform="matrix(1,0,0,0.90664161,0,2.568938)"
  2723. x1="15.733126"
  2724. y1="25.603107"
  2725. x2="14.893436"
  2726. y2="26.045048" />
  2727. <linearGradient
  2728. inkscape:collect="always"
  2729. xlink:href="#linearGradient3881-1-2-2-3"
  2730. id="linearGradient5436"
  2731. gradientUnits="userSpaceOnUse"
  2732. x1="-0.2806088"
  2733. y1="14.52101"
  2734. x2="6.451941"
  2735. y2="14.52101" />
  2736. <linearGradient
  2737. inkscape:collect="always"
  2738. xlink:href="#linearGradient3881-1-2-2-3"
  2739. id="linearGradient5438"
  2740. gradientUnits="userSpaceOnUse"
  2741. x1="-0.2806088"
  2742. y1="14.52101"
  2743. x2="6.451941"
  2744. y2="14.52101" />
  2745. <linearGradient
  2746. inkscape:collect="always"
  2747. xlink:href="#linearGradient4240-2-1-3-7-0-0-4"
  2748. id="linearGradient5440"
  2749. gradientUnits="userSpaceOnUse"
  2750. x1="8.6928434"
  2751. y1="13.939294"
  2752. x2="5.0954299"
  2753. y2="13.939294" />
  2754. <linearGradient
  2755. inkscape:collect="always"
  2756. xlink:href="#linearGradient4240-2-1-3-7-0-5-3"
  2757. id="linearGradient5442"
  2758. gradientUnits="userSpaceOnUse"
  2759. x1="8.6928434"
  2760. y1="13.939294"
  2761. x2="5.0954299"
  2762. y2="13.939294" />
  2763. <linearGradient
  2764. inkscape:collect="always"
  2765. xlink:href="#linearGradient7795-3-9-0-4"
  2766. id="linearGradient5444"
  2767. gradientUnits="userSpaceOnUse"
  2768. x1="44.901279"
  2769. y1="15.26167"
  2770. x2="16.61701"
  2771. y2="7.1299424" />
  2772. <linearGradient
  2773. inkscape:collect="always"
  2774. xlink:href="#linearGradient11741-8-1"
  2775. id="linearGradient5446"
  2776. gradientUnits="userSpaceOnUse"
  2777. x1="9.625"
  2778. y1="8.5"
  2779. x2="10.25"
  2780. y2="6.25" />
  2781. <linearGradient
  2782. inkscape:collect="always"
  2783. xlink:href="#linearGradient11749-8"
  2784. id="linearGradient5448"
  2785. gradientUnits="userSpaceOnUse"
  2786. x1="5.5"
  2787. y1="6"
  2788. x2="13.5"
  2789. y2="-0.5" />
  2790. <linearGradient
  2791. inkscape:collect="always"
  2792. xlink:href="#linearGradient7563-5-4-6-85"
  2793. id="linearGradient5450"
  2794. gradientUnits="userSpaceOnUse"
  2795. x1="12.048728"
  2796. y1="9.7531071"
  2797. x2="12.304115"
  2798. y2="11.128107" />
  2799. </defs>
  2800. <g
  2801. inkscape:groupmode="layer"
  2802. id="layer1"
  2803. inkscape:label="Body"
  2804. style="display:inline">
  2805. <path
  2806. style="fill:#00bf48;fill-opacity:1;stroke:none;display:inline"
  2807. d="m 3.7692387,32.415254 31.6819793,0 c 5.420983,-0.02952 5.786764,-3.821775 4.760094,-6.895076 -0.622619,-2.039416 -1.843426,-3.355096 -3.546833,-4.122903 -0.820315,-0.257253 -1.826462,-0.36627 -3.148817,-0.363377 l -6.719053,0 c -0.03272,-2.321075 -0.07676,-4.65032 -0.192867,-6.899596 -0.147828,-2.8254 -0.0738,-5.2641454 -1.744158,-7.3426476 C 22.962673,4.7782599 20.03523,4.1015973 17.360843,4.0480641 11.901804,3.9845229 6.8615019,7.0140119 7.4915244,13.014509 l 0,14.50244 -3.824157,0 c -2.83680737,-0.07124 -3.87761595,4.775157 0.1018713,4.898305 z"
  2808. id="path16207"
  2809. inkscape:connector-curvature="0"
  2810. sodipodi:nodetypes="ccccccccccccc" />
  2811. <g
  2812. inkscape:groupmode="layer"
  2813. id="layer40"
  2814. inkscape:label="Shine 2"
  2815. style="display:inline">
  2816. <path
  2817. inkscape:connector-curvature="0"
  2818. style="fill:url(#linearGradient16794);fill-opacity:1;stroke:none;display:inline"
  2819. d="m 7.5079754,13 0,14 4.2746866,-0.03125 0,-14.002648"
  2820. id="path16207-4"
  2821. sodipodi:nodetypes="cccc" />
  2822. </g>
  2823. <g
  2824. inkscape:groupmode="layer"
  2825. id="layer41"
  2826. inkscape:label="Shine"
  2827. style="display:inline">
  2828. <path
  2829. sodipodi:nodetypes="cccccccccc"
  2830. inkscape:connector-curvature="0"
  2831. id="path2979"
  2832. d="m 37.058308,23.524024 c -0.520803,-0.696187 -1.1601,-1.247135 -1.905191,-1.597411 -0.715958,-0.234172 -1.594109,-0.333407 -2.748238,-0.330775 l -5.864286,0 c -0.02855,-2.112825 -0.067,-5.154954 -0.168331,-7.202418 -0.01974,-4.5382918 -0.731823,-9.9865925 -9.346769,-9.8434415 -0.05515,0.913194 3.619555,0.5401345 3.893276,19.4646875 -0.164217,1.669746 1.418814,1.859054 2.81564,1.868369 l 12.226774,0.08154 c 1.70723,-0.07249 2.160923,-0.685097 1.097125,-2.440556 z"
  2833. style="opacity:0.9;fill:url(#linearGradient16829);fill-opacity:1;stroke:none;display:inline" />
  2834. </g>
  2835. <g
  2836. inkscape:groupmode="layer"
  2837. id="layer43"
  2838. inkscape:label="Outline"
  2839. style="display:inline">
  2840. <path
  2841. sodipodi:nodetypes="ccccccccccccc"
  2842. inkscape:connector-curvature="0"
  2843. id="path3975"
  2844. d="m 3.7692387,32.415254 31.6819793,0 c 5.420983,-0.02952 5.786764,-3.821775 4.760094,-6.895076 -0.622619,-2.039416 -1.843426,-3.355096 -3.546833,-4.122903 -0.820315,-0.257253 -1.826462,-0.36627 -3.148817,-0.363377 l -6.719053,0 c -0.03272,-2.321075 -0.07676,-4.65032 -0.192867,-6.899596 -0.147828,-2.8254 -0.0738,-5.2641454 -1.744158,-7.3426476 C 22.962673,4.7782599 20.03523,4.1015973 17.360843,4.0480641 11.901804,3.9845229 6.8615019,7.0140119 7.4915244,13.014509 l 0,14.50244 -3.824157,0 c -2.83680738,-0.07124 -3.87761596,4.775157 0.1018713,4.898305 z"
  2845. style="fill:none;stroke:#1f4906;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
  2846. </g>
  2847. <g
  2848. inkscape:groupmode="layer"
  2849. id="layer44"
  2850. inkscape:label="Shade 2"
  2851. style="display:inline">
  2852. <path
  2853. id="path4207"
  2854. d="m 40.3125,29.9375 -39,1.03125 c 0.3040251,0.781887 1.0822318,1.394593 2.46875,1.4375 l 31.65625,0 c 2.81724,-0.01534 4.274276,-1.049975 4.875,-2.46875 z"
  2855. style="opacity:0.8;fill:url(#linearGradient17008);fill-opacity:1;stroke:none;display:inline;filter:url(#filter4479-3-6-7)"
  2856. inkscape:connector-curvature="0" />
  2857. </g>
  2858. <g
  2859. inkscape:groupmode="layer"
  2860. id="layer42"
  2861. inkscape:label="Spots"
  2862. style="display:inline">
  2863. <path
  2864. sodipodi:type="arc"
  2865. style="color:#000000;fill:url(#linearGradient16881);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  2866. id="path3923"
  2867. sodipodi:cx="3.412689"
  2868. sodipodi:cy="30.383568"
  2869. sodipodi:rx="1.5790054"
  2870. sodipodi:ry="1.5790054"
  2871. d="m 4.9916943,30.383568 a 1.5790054,1.5790054 0 1 1 -3.1580107,0 1.5790054,1.5790054 0 1 1 3.1580107,0 z"
  2872. transform="matrix(0.87096774,0,0,0.87096774,17.6566,-6.6741567)" />
  2873. <path
  2874. sodipodi:type="arc"
  2875. style="color:#000000;fill:#55e248;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  2876. id="path3913"
  2877. sodipodi:cx="3.412689"
  2878. sodipodi:cy="30.383568"
  2879. sodipodi:rx="1.5790054"
  2880. sodipodi:ry="1.5790054"
  2881. d="m 4.9916943,30.383568 a 1.5790054,1.5790054 0 1 1 -3.1580107,0 1.5790054,1.5790054 0 1 1 3.1580107,0 z"
  2882. transform="matrix(0.88125436,0,0,0.88125436,0.83585592,2.9504313)" />
  2883. <path
  2884. transform="matrix(0.67741935,0,0,0.67741935,8.7412161,8.3749533)"
  2885. d="m 4.9916943,30.383568 a 1.5790054,1.5790054 0 1 1 -3.1580107,0 1.5790054,1.5790054 0 1 1 3.1580107,0 z"
  2886. sodipodi:ry="1.5790054"
  2887. sodipodi:rx="1.5790054"
  2888. sodipodi:cy="30.383568"
  2889. sodipodi:cx="3.412689"
  2890. id="path3915"
  2891. style="color:#000000;fill:#55e248;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  2892. sodipodi:type="arc" />
  2893. <path
  2894. transform="matrix(0.87096774,0,0,0.87096774,24.787592,0.86432134)"
  2895. d="m 4.9916943,30.383568 a 1.5790054,1.5790054 0 1 1 -3.1580107,0 1.5790054,1.5790054 0 1 1 3.1580107,0 z"
  2896. sodipodi:ry="1.5790054"
  2897. sodipodi:rx="1.5790054"
  2898. sodipodi:cy="30.383568"
  2899. sodipodi:cx="3.412689"
  2900. id="path3919"
  2901. style="color:#000000;fill:url(#linearGradient13369-7);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  2902. sodipodi:type="arc" />
  2903. <path
  2904. sodipodi:type="arc"
  2905. style="color:#000000;fill:url(#linearGradient13391-1);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  2906. id="path3917"
  2907. sodipodi:cx="3.412689"
  2908. sodipodi:cy="30.383568"
  2909. sodipodi:rx="1.5790054"
  2910. sodipodi:ry="1.5790054"
  2911. d="m 4.9916943,30.383568 a 1.5790054,1.5790054 0 1 1 -3.1580107,0 1.5790054,1.5790054 0 1 1 3.1580107,0 z"
  2912. transform="matrix(0.67741935,0,0,0.67741935,17.502149,10.310509)" />
  2913. <path
  2914. sodipodi:type="arc"
  2915. style="color:#000000;fill:url(#linearGradient13377-3);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  2916. id="path3921"
  2917. sodipodi:cx="3.412689"
  2918. sodipodi:cy="30.383568"
  2919. sodipodi:rx="1.5790054"
  2920. sodipodi:ry="1.5790054"
  2921. d="m 4.9916943,30.383568 a 1.5790054,1.5790054 0 1 1 -3.1580107,0 1.5790054,1.5790054 0 1 1 3.1580107,0 z"
  2922. transform="matrix(0.93548387,0,0,0.93548387,32.717124,1.7564883)" />
  2923. </g>
  2924. <g
  2925. inkscape:groupmode="layer"
  2926. id="layer45"
  2927. inkscape:label="Shade"
  2928. style="display:inline">
  2929. <path
  2930. inkscape:connector-curvature="0"
  2931. style="opacity:0.8;fill:url(#linearGradient17049);fill-opacity:1;stroke:none;display:inline;filter:url(#filter4479-6-0)"
  2932. d="m 40.3125,29.9375 -39,1.03125 c 0.3040251,0.781887 1.0822318,1.394593 2.46875,1.4375 l 31.65625,0 c 2.81724,-0.01534 4.274276,-1.049975 4.875,-2.46875 z"
  2933. id="path4483" />
  2934. </g>
  2935. </g>
  2936. <g
  2937. inkscape:groupmode="layer"
  2938. id="layer39"
  2939. inkscape:label="Mouth"
  2940. style="display:inline">
  2941. <g
  2942. inkscape:groupmode="layer"
  2943. id="layer48"
  2944. inkscape:label="Shadow"
  2945. style="display:inline">
  2946. <path
  2947. transform="matrix(0.71174515,0,0,1.1840727,1.8425006,-4.8751557)"
  2948. style="opacity:0.80000000000000004;fill:none;stroke:url(#linearGradient17189);stroke-width:1.08930264000000010;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7878-8-2-5-9);stroke-miterlimit:4;stroke-dasharray:none"
  2949. d="m 7.6403487,26.507964 18.9781123,0"
  2950. id="path7872"
  2951. inkscape:connector-curvature="0"
  2952. sodipodi:nodetypes="cc" />
  2953. </g>
  2954. <g
  2955. inkscape:groupmode="layer"
  2956. id="layer46"
  2957. inkscape:label="Teeth"
  2958. style="display:inline">
  2959. <g
  2960. style="display:inline"
  2961. id="g16754">
  2962. <path
  2963. sodipodi:nodetypes="cccc"
  2964. inkscape:connector-curvature="0"
  2965. id="path3772"
  2966. d="m 2.5932203,27.516949 0.3305514,-4.454981 3.6087154,4.454981 z"
  2967. style="fill:#e4c14b;fill-opacity:1;stroke:#413b12;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
  2968. <path
  2969. style="fill:url(#linearGradient4419-1-0-1);fill-opacity:1;stroke:#413b12;stroke-width:0.99999988px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline"
  2970. d="m 2.5932203,27.516949 0.3305514,-4.039071 3.6087154,4.039071 z"
  2971. id="path4411"
  2972. inkscape:connector-curvature="0"
  2973. sodipodi:nodetypes="cccc" />
  2974. <path
  2975. sodipodi:nodetypes="cccc"
  2976. inkscape:connector-curvature="0"
  2977. id="path3774"
  2978. d="m 12.919163,27.396254 2.113718,-4.73501 2.329989,4.737886 z"
  2979. style="fill:#e4c14b;fill-opacity:1;stroke:#413b12;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
  2980. <path
  2981. style="fill:url(#linearGradient4392-9-0-4);fill-opacity:1;stroke:#413b12;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
  2982. d="m 12.919163,27.396254 2.113718,-4.73501 2.329989,4.737886 z"
  2983. id="path4367"
  2984. inkscape:connector-curvature="0"
  2985. sodipodi:nodetypes="cccc" />
  2986. </g>
  2987. </g>
  2988. <g
  2989. inkscape:groupmode="layer"
  2990. id="layer47"
  2991. inkscape:label="Opening"
  2992. style="display:inline">
  2993. <path
  2994. style="fill:none;stroke:#1f4906;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
  2995. d="m 1.6520379,28.572146 c 0.3837227,-0.576619 1.0737478,-0.91809 1.9718845,-1.06066 l 17.1578256,0"
  2996. id="path16209"
  2997. inkscape:connector-curvature="0"
  2998. sodipodi:nodetypes="ccc" />
  2999. </g>
  3000. </g>
  3001. <g
  3002. inkscape:groupmode="layer"
  3003. id="layer5"
  3004. inkscape:label="Eyes"
  3005. style="display:inline">
  3006. <g
  3007. inkscape:groupmode="layer"
  3008. id="layer9"
  3009. inkscape:label="Bags"
  3010. style="display:inline">
  3011. <g
  3012. style="display:inline"
  3013. id="g3891"
  3014. transform="matrix(1.04889,0,0,1,-0.13981297,-0.14812897)">
  3015. <g
  3016. id="g3909"
  3017. transform="matrix(0.71075699,0,0,1,2.4597998,0)">
  3018. <path
  3019. d="m 10.390874,13.676673 c 0,2.447396 -1.641936,4.431402 -3.6673671,4.431402 -2.0254311,0 -3.6673674,-1.984006 -3.6673674,-4.431402 0,-2.447396 1.6419363,-4.4314023 3.6673674,-4.4314023 2.0254311,0 3.6673671,1.9840063 3.6673671,4.4314023 z"
  3020. sodipodi:ry="4.4314022"
  3021. sodipodi:rx="3.6673675"
  3022. sodipodi:cy="13.676673"
  3023. sodipodi:cx="6.7235069"
  3024. id="path3893"
  3025. style="color:#000000;fill:#338600;fill-opacity:1;stroke:#1f4906;stroke-width:1.35034299;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3026. sodipodi:type="arc"
  3027. transform="matrix(1,0,0,0.77011494,0,6.2002023)" />
  3028. <path
  3029. transform="matrix(1,0,0,0.77011494,0,4.6211954)"
  3030. sodipodi:type="arc"
  3031. style="color:#000000;fill:#338600;fill-opacity:1;stroke:#1f4906;stroke-width:1.35034299;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3032. id="path3895"
  3033. sodipodi:cx="6.7235069"
  3034. sodipodi:cy="13.676673"
  3035. sodipodi:rx="3.6673675"
  3036. sodipodi:ry="4.4314022"
  3037. d="m 10.390874,13.676673 c 0,2.447396 -1.641936,4.431402 -3.6673671,4.431402 -2.0254311,0 -3.6673674,-1.984006 -3.6673674,-4.431402 0,-2.447396 1.6419363,-4.4314023 3.6673674,-4.4314023 2.0254311,0 3.6673671,1.9840063 3.6673671,4.4314023 z" />
  3038. </g>
  3039. </g>
  3040. <g
  3041. style="display:inline"
  3042. transform="matrix(1.04889,0,0,1,8.4322209,-0.14812897)"
  3043. id="g16227">
  3044. <path
  3045. d="m 10.390874,13.676673 c 0,2.447396 -1.641936,4.431402 -3.6673671,4.431402 -2.0254311,0 -3.6673674,-1.984006 -3.6673674,-4.431402 0,-2.447396 1.6419363,-4.4314023 3.6673674,-4.4314023 2.0254311,0 3.6673671,1.9840063 3.6673671,4.4314023 z"
  3046. sodipodi:ry="4.4314022"
  3047. sodipodi:rx="3.6673675"
  3048. sodipodi:cy="13.676673"
  3049. sodipodi:cx="6.7235069"
  3050. id="path16233"
  3051. style="color:#000000;fill:#338600;fill-opacity:1;stroke:#1f4906;stroke-width:1.13842559;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3052. sodipodi:type="arc"
  3053. transform="matrix(1,0,0,0.77011494,0,6.2002023)" />
  3054. <path
  3055. transform="matrix(1,0,0,0.77011494,0,4.6211954)"
  3056. sodipodi:type="arc"
  3057. style="color:#000000;fill:#338600;fill-opacity:1;stroke:#1f4906;stroke-width:1.13842559;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3058. id="path3780"
  3059. sodipodi:cx="6.7235069"
  3060. sodipodi:cy="13.676673"
  3061. sodipodi:rx="3.6673675"
  3062. sodipodi:ry="4.4314022"
  3063. d="m 10.390874,13.676673 c 0,2.447396 -1.641936,4.431402 -3.6673671,4.431402 -2.0254311,0 -3.6673674,-1.984006 -3.6673674,-4.431402 0,-2.447396 1.6419363,-4.4314023 3.6673674,-4.4314023 2.0254311,0 3.6673671,1.9840063 3.6673671,4.4314023 z" />
  3064. </g>
  3065. </g>
  3066. <g
  3067. inkscape:groupmode="layer"
  3068. id="layer7"
  3069. inkscape:label="Shadow"
  3070. style="display:none">
  3071. <path
  3072. d="m 10.390874,13.676673 a 3.6673675,4.4314022 0 1 1 -7.3347345,0 3.6673675,4.4314022 0 1 1 7.3347345,0 z"
  3073. sodipodi:ry="4.4314022"
  3074. sodipodi:rx="3.6673675"
  3075. sodipodi:cy="13.676673"
  3076. sodipodi:cx="6.7235069"
  3077. id="path4084-1"
  3078. style="color:#000000;fill:url(#linearGradient11054);fill-opacity:1;stroke:none;stroke-width:0.97641635;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3079. sodipodi:type="arc"
  3080. transform="matrix(1.04889,0,0,1,0.04768697,1.3259833)" />
  3081. <path
  3082. transform="matrix(1.04889,0,0,1,8.7097449,1.3259833)"
  3083. sodipodi:type="arc"
  3084. style="color:#000000;fill:url(#linearGradient11088);fill-opacity:1;stroke:none;stroke-width:0.97641635;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3085. id="path10923"
  3086. sodipodi:cx="6.7235069"
  3087. sodipodi:cy="13.676673"
  3088. sodipodi:rx="3.6673675"
  3089. sodipodi:ry="4.4314022"
  3090. d="m 10.390874,13.676673 a 3.6673675,4.4314022 0 1 1 -7.3347345,0 3.6673675,4.4314022 0 1 1 7.3347345,0 z" />
  3091. </g>
  3092. <g
  3093. inkscape:groupmode="layer"
  3094. id="layer8"
  3095. inkscape:label="Eyeballs"
  3096. style="display:inline">
  3097. <g
  3098. style="display:inline"
  3099. id="g10912">
  3100. <path
  3101. sodipodi:type="arc"
  3102. style="color:#000000;fill:#bbff00;fill-opacity:1;stroke:none;stroke-width:0.97641635;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3103. id="path3897"
  3104. sodipodi:cx="6.7235069"
  3105. sodipodi:cy="13.676673"
  3106. sodipodi:rx="3.6673675"
  3107. sodipodi:ry="4.4314022"
  3108. d="m 10.390874,13.676673 a 3.6673675,4.4314022 0 1 1 -7.3347345,0 3.6673675,4.4314022 0 1 1 7.3347345,0 z"
  3109. transform="matrix(1.04889,0,0,1,-0.13981301,0.10187129)" />
  3110. <path
  3111. d="m 10.390874,13.676673 a 3.6673675,4.4314022 0 1 1 -7.3347345,0 3.6673675,4.4314022 0 1 1 7.3347345,0 z"
  3112. sodipodi:ry="4.4314022"
  3113. sodipodi:rx="3.6673675"
  3114. sodipodi:cy="13.676673"
  3115. sodipodi:cx="6.7235069"
  3116. id="path3903"
  3117. style="color:#000000;fill:url(#linearGradient3907-4-6-4);fill-opacity:1;stroke:none;stroke-width:0.97641635;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3118. sodipodi:type="arc"
  3119. transform="matrix(1.04889,0,0,1,-0.13981301,0.10187129)" />
  3120. <path
  3121. d="m 10.390874,13.676673 a 3.6673675,4.4314022 0 1 1 -7.3347345,0 3.6673675,4.4314022 0 1 1 7.3347345,0 z"
  3122. sodipodi:ry="4.4314022"
  3123. sodipodi:rx="3.6673675"
  3124. sodipodi:cy="13.676673"
  3125. sodipodi:cx="6.7235069"
  3126. id="path4084"
  3127. style="color:#000000;fill:none;stroke:#455e01;stroke-width:0.97641635;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3128. sodipodi:type="arc"
  3129. transform="matrix(1.04889,0,0,1,-0.13981301,0.10187129)" />
  3130. </g>
  3131. <g
  3132. style="display:inline"
  3133. id="g10921"
  3134. transform="translate(8.6620581,0)">
  3135. <path
  3136. transform="matrix(1.04889,0,0,1,-0.13981301,0.10187129)"
  3137. d="m 10.390874,13.676673 c 0,2.447396 -1.641936,4.431402 -3.6673671,4.431402 -2.0254311,0 -3.6673674,-1.984006 -3.6673674,-4.431402 0,-2.447396 1.6419363,-4.4314023 3.6673674,-4.4314023 2.0254311,0 3.6673671,1.9840063 3.6673671,4.4314023 z"
  3138. sodipodi:ry="4.4314022"
  3139. sodipodi:rx="3.6673675"
  3140. sodipodi:cy="13.676673"
  3141. sodipodi:cx="6.7235069"
  3142. id="path10925"
  3143. style="color:#000000;fill:#bbff00;fill-opacity:1;stroke:none;stroke-width:0.97641635;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3144. sodipodi:type="arc" />
  3145. <path
  3146. transform="matrix(1.04889,0,0,1,-0.13981301,0.10187129)"
  3147. sodipodi:type="arc"
  3148. style="color:#000000;fill:url(#linearGradient10939-7);fill-opacity:1;stroke:none;stroke-width:0.97641635;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3149. id="path10927"
  3150. sodipodi:cx="6.7235069"
  3151. sodipodi:cy="13.676673"
  3152. sodipodi:rx="3.6673675"
  3153. sodipodi:ry="4.4314022"
  3154. d="m 10.390874,13.676673 c 0,2.447396 -1.641936,4.431402 -3.6673671,4.431402 -2.0254311,0 -3.6673674,-1.984006 -3.6673674,-4.431402 0,-2.447396 1.6419363,-4.4314023 3.6673674,-4.4314023 2.0254311,0 3.6673671,1.9840063 3.6673671,4.4314023 z" />
  3155. <path
  3156. transform="matrix(1.04889,0,0,1,-0.13981301,0.10187129)"
  3157. sodipodi:type="arc"
  3158. style="color:#000000;fill:none;stroke:#455e01;stroke-width:0.97641635;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3159. id="path10933"
  3160. sodipodi:cx="6.7235069"
  3161. sodipodi:cy="13.676673"
  3162. sodipodi:rx="3.6673675"
  3163. sodipodi:ry="4.4314022"
  3164. d="m 10.390874,13.676673 c 0,2.447396 -1.641936,4.431402 -3.6673671,4.431402 -2.0254311,0 -3.6673674,-1.984006 -3.6673674,-4.431402 0,-2.447396 1.6419363,-4.4314023 3.6673674,-4.4314023 2.0254311,0 3.6673671,1.9840063 3.6673671,4.4314023 z" />
  3165. </g>
  3166. <g
  3167. inkscape:groupmode="layer"
  3168. id="layer6"
  3169. inkscape:label="Left Pupil">
  3170. <g
  3171. style="display:inline"
  3172. id="g11799"
  3173. transform="translate(8.5736696,0.1767762)">
  3174. <path
  3175. transform="matrix(0.27267516,0,0,0.27428843,4.2066531,11.368668)"
  3176. sodipodi:type="arc"
  3177. style="color:#000000;fill:url(#linearGradient4464);fill-opacity:1;stroke:#201459;stroke-width:3.65656638;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3178. id="path10929"
  3179. sodipodi:cx="6.7235069"
  3180. sodipodi:cy="13.676673"
  3181. sodipodi:rx="3.6673675"
  3182. sodipodi:ry="4.4314022"
  3183. d="m 10.390874,13.676673 c 0,2.447396 -1.641936,4.431402 -3.6673671,4.431402 -2.0254311,0 -3.6673674,-1.984006 -3.6673674,-4.431402 0,-2.447396 1.6419363,-4.4314023 3.6673674,-4.4314023 2.0254311,0 3.6673671,1.9840063 3.6673671,4.4314023 z" />
  3184. </g>
  3185. </g>
  3186. <g
  3187. inkscape:groupmode="layer"
  3188. id="layer11"
  3189. inkscape:label="Right pupil"
  3190. style="display:inline">
  3191. <g
  3192. style="display:inline"
  3193. id="g11793"
  3194. transform="translate(-0.44194172,-0.4419418)">
  3195. <path
  3196. d="m 10.390874,13.676673 c 0,2.447396 -1.641936,4.431402 -3.6673671,4.431402 -2.0254311,0 -3.6673674,-1.984006 -3.6673674,-4.431402 0,-2.447396 1.6419363,-4.4314023 3.6673674,-4.4314023 2.0254311,0 3.6673671,1.9840063 3.6673671,4.4314023 z"
  3197. sodipodi:ry="4.4314022"
  3198. sodipodi:rx="3.6673675"
  3199. sodipodi:cy="13.676673"
  3200. sodipodi:cx="6.7235069"
  3201. id="path16231-6-9"
  3202. style="color:#000000;fill:url(#linearGradient4503);fill-opacity:1;stroke:#201459;stroke-width:3.65656638;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3203. sodipodi:type="arc"
  3204. transform="matrix(0.27267516,0,0,0.27428843,4.2066531,11.368668)" />
  3205. </g>
  3206. </g>
  3207. <g
  3208. inkscape:groupmode="layer"
  3209. id="layer13"
  3210. inkscape:label="Shine"
  3211. style="display:inline">
  3212. <path
  3213. sodipodi:type="arc"
  3214. style="color:#000000;fill:#edff78;fill-opacity:1;stroke:none;stroke-width:1.95984209;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3215. id="path3901"
  3216. sodipodi:cx="6.7235069"
  3217. sodipodi:cy="13.676673"
  3218. sodipodi:rx="3.6673675"
  3219. sodipodi:ry="4.4314022"
  3220. d="m 10.390874,13.676673 a 3.6673675,4.4314022 0 1 1 -7.3347345,0 3.6673675,4.4314022 0 1 1 7.3347345,0 z"
  3221. transform="matrix(0.2757088,0,0,0.50206373,7.4288432,7.0359809)" />
  3222. <path
  3223. transform="matrix(0.2757088,0,0,0.50206373,16.090901,7.0359809)"
  3224. d="m 10.390874,13.676673 a 3.6673675,4.4314022 0 1 1 -7.3347345,0 3.6673675,4.4314022 0 1 1 7.3347345,0 z"
  3225. sodipodi:ry="4.4314022"
  3226. sodipodi:rx="3.6673675"
  3227. sodipodi:cy="13.676673"
  3228. sodipodi:cx="6.7235069"
  3229. id="path10931"
  3230. style="color:#000000;fill:#edff78;fill-opacity:1;stroke:none;stroke-width:1.95984209;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
  3231. sodipodi:type="arc" />
  3232. </g>
  3233. </g>
  3234. </g>
  3235. <g
  3236. inkscape:groupmode="layer"
  3237. id="layer2"
  3238. inkscape:label="Hat"
  3239. style="display:inline">
  3240. <path
  3241. style="fill:#5c41ad;fill-opacity:1;stroke:none"
  3242. d="M 0.43254446,13.398305 16.287403,12.677966 c 1.930286,-0.09846 3.936686,-0.128807 5.495426,0.759383 2.649594,2.127428 2.041129,8.123698 2.14109,10.477905 l 6.577588,-1.773881 C 30.643953,18.053577 30.524127,14.91313 29.98333,12.447491 29.09104,8.6434275 26.738583,6.2210345 23.675833,4.4158461 18.298744,1.2790543 11.309639,0.5207762 6.1055353,2.9235193 1.5433394,5.0259755 0.14555242,9.4534961 0.43254446,13.398305 z"
  3243. id="path3776"
  3244. inkscape:connector-curvature="0"
  3245. sodipodi:nodetypes="ccccccccc" />
  3246. <path
  3247. sodipodi:nodetypes="ccccccccc"
  3248. inkscape:connector-curvature="0"
  3249. id="path7521"
  3250. d="M 0.43254446,13.398305 16.287403,12.677966 c 1.930286,-0.09846 3.936686,-0.128807 5.495426,0.759383 2.649594,2.127428 2.041129,8.123698 2.14109,10.477905 l 6.577588,-1.773881 C 30.643953,18.053577 30.524127,14.91313 29.98333,12.447491 29.09104,8.6434274 26.738583,6.2210344 23.675833,4.415846 18.298744,1.2790542 11.309639,0.52077615 6.1055353,2.9235192 1.5433394,5.0259754 0.14555242,9.453496 0.43254446,13.398305 z"
  3251. style="fill:url(#linearGradient11774);fill-opacity:1;stroke:none;display:inline" />
  3252. <path
  3253. sodipodi:nodetypes="cccccccc"
  3254. inkscape:connector-curvature="0"
  3255. id="path4150"
  3256. d="M 0.43254446,13.398305 16.287403,12.677966 c 1.930286,-0.09846 3.936686,-0.128807 5.495426,0.759383 2.649594,2.127428 2.041129,8.123698 2.14109,10.477905 l 6.577588,-1.773881 C 30.643953,18.053577 30.524127,14.91313 29.98333,12.447491 27.066792,2.0565993 13.653125,-0.4398127 6.1055353,2.9235193 1.5433394,5.0259755 0.14555242,9.4534961 0.43254446,13.398305 z"
  3257. style="fill:none;stroke:#350e4b;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.96078431" />
  3258. <g
  3259. inkscape:groupmode="layer"
  3260. id="layer3"
  3261. inkscape:label="Shine 2"
  3262. style="display:inline">
  3263. <path
  3264. sodipodi:nodetypes="cccc"
  3265. inkscape:connector-curvature="0"
  3266. id="path4082"
  3267. d="M 10.726445,12.500291 10.303146,5.565207 7.5639414,12.588679 z"
  3268. style="fill:url(#linearGradient3660);fill-opacity:1;stroke:none;display:inline" />
  3269. </g>
  3270. <g
  3271. inkscape:groupmode="layer"
  3272. id="layer10"
  3273. inkscape:label="Shine"
  3274. style="display:inline">
  3275. <path
  3276. style="fill:url(#linearGradient11755);fill-opacity:1;stroke:none;display:inline"
  3277. d="M 5.3360001,12.623375 C 4.7881458,8.1106976 7.4149359,4.9742623 9.9833888,2.6745877 7.1149698,2.6480005 0.94221204,5.3352632 1.2433758,12.650296 c 0.5515671,-0.0056 2.1505437,0.02682 4.0926243,-0.02692 z"
  3278. id="path4078"
  3279. inkscape:connector-curvature="0"
  3280. sodipodi:nodetypes="cccc" />
  3281. </g>
  3282. <g
  3283. inkscape:groupmode="layer"
  3284. id="layer12"
  3285. inkscape:label="Decoration"
  3286. style="display:inline">
  3287. <g
  3288. style="display:inline"
  3289. id="g11435">
  3290. <path
  3291. id="path3776-8"
  3292. d="m 17.5625,9.8124996 c -0.777872,-0.0187 -1.569452,0.015046 -2.375,0.125 L 0.53125,10.78125 c -0.1140411,0.879999 -0.1565488,1.761808 -0.09375,2.625 L 16.28125,12.6875 c 1.930286,-0.09846 3.94126,-0.13819 5.5,0.75 2.649594,2.127428 2.056289,8.114543 2.15625,10.46875 L 29.15625,22.5 C 27.580956,17.010564 25.999706,14.120261 23.625,11.9375 22.051076,10.522401 19.896116,9.8686004 17.5625,9.8124996 z"
  3293. style="fill:#34b996;fill-opacity:1;stroke:#350e4b;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.96078431"
  3294. inkscape:connector-curvature="0" />
  3295. <path
  3296. sodipodi:nodetypes="ccccc"
  3297. inkscape:connector-curvature="0"
  3298. id="path4055"
  3299. d="M 0.9237278,10.77334 15.178444,9.9515998 c 2.34232,-0.092551 4.627602,0.00489 6.507147,0.7897992 1.34387,0.5534 2.255027,1.496392 3.160851,2.456839 1.968124,2.226503 3.416421,5.099071 3.957673,9.010157"
  3300. style="fill:none;stroke:url(#linearGradient11464);stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
  3301. </g>
  3302. </g>
  3303. </g>
  3304. </svg>