com.github.artemanufrij.regextester.svg 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!-- Created with Inkscape (http://www.inkscape.org/) -->
  3. <svg
  4. xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
  5. xmlns:dc="http://purl.org/dc/elements/1.1/"
  6. xmlns:cc="http://creativecommons.org/ns#"
  7. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  8. xmlns:svg="http://www.w3.org/2000/svg"
  9. xmlns="http://www.w3.org/2000/svg"
  10. xmlns:xlink="http://www.w3.org/1999/xlink"
  11. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  12. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  13. width="48"
  14. height="48"
  15. viewBox="0 0 48 48.000001"
  16. id="svg4232"
  17. version="1.1"
  18. inkscape:version="0.92.1 r15371"
  19. sodipodi:docname="com.github.artemanufrij.regextester.svg">
  20. <defs
  21. id="defs4234">
  22. <radialGradient
  23. id="radial0"
  24. gradientUnits="userSpaceOnUse"
  25. cx="450.908936"
  26. cy="189.579361"
  27. fx="450.908936"
  28. fy="189.579361"
  29. r="21.166656"
  30. gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
  31. <stop
  32. offset="0"
  33. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  34. id="stop822" />
  35. <stop
  36. offset="0.222222"
  37. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  38. id="stop824" />
  39. <stop
  40. offset="1"
  41. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  42. id="stop826" />
  43. </radialGradient>
  44. <radialGradient
  45. id="radial1"
  46. gradientUnits="userSpaceOnUse"
  47. cx="450.908936"
  48. cy="189.579361"
  49. fx="450.908936"
  50. fy="189.579361"
  51. r="21.166656"
  52. gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
  53. <stop
  54. offset="0"
  55. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  56. id="stop829" />
  57. <stop
  58. offset="0.222222"
  59. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  60. id="stop831" />
  61. <stop
  62. offset="1"
  63. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  64. id="stop833" />
  65. </radialGradient>
  66. <radialGradient
  67. id="radial2"
  68. gradientUnits="userSpaceOnUse"
  69. cx="450.908936"
  70. cy="189.579361"
  71. fx="450.908936"
  72. fy="189.579361"
  73. r="21.166656"
  74. gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
  75. <stop
  76. offset="0"
  77. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  78. id="stop836" />
  79. <stop
  80. offset="0.222222"
  81. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  82. id="stop838" />
  83. <stop
  84. offset="1"
  85. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  86. id="stop840" />
  87. </radialGradient>
  88. <radialGradient
  89. id="radial3"
  90. gradientUnits="userSpaceOnUse"
  91. cx="450.908936"
  92. cy="189.579361"
  93. fx="450.908936"
  94. fy="189.579361"
  95. r="21.166656"
  96. gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
  97. <stop
  98. offset="0"
  99. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  100. id="stop843" />
  101. <stop
  102. offset="0.222222"
  103. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  104. id="stop845" />
  105. <stop
  106. offset="1"
  107. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  108. id="stop847" />
  109. </radialGradient>
  110. <linearGradient
  111. id="linear0"
  112. gradientUnits="userSpaceOnUse"
  113. x1="255.323059"
  114. y1="233.5"
  115. x2="255.323044"
  116. y2="254.666656"
  117. gradientTransform="matrix(0.0273881,0,0,0.082039,16.656575,23.142854)">
  118. <stop
  119. offset="0"
  120. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  121. id="stop850" />
  122. <stop
  123. offset="1"
  124. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  125. id="stop852" />
  126. </linearGradient>
  127. <linearGradient
  128. id="linear1"
  129. gradientUnits="userSpaceOnUse"
  130. x1="254"
  131. y1="233.5"
  132. x2="254"
  133. y2="-168.666672"
  134. gradientTransform="matrix(0.093759,0,0,0.093759,0,20.158175)">
  135. <stop
  136. offset="0"
  137. style="stop-color:rgb(100%,43.921569%,26.274511%);stop-opacity:1;"
  138. id="stop855" />
  139. <stop
  140. offset="1"
  141. style="stop-color:rgb(100%,54.11765%,39.607844%);stop-opacity:1;"
  142. id="stop857" />
  143. </linearGradient>
  144. <linearGradient
  145. id="linear2"
  146. gradientUnits="userSpaceOnUse"
  147. x1="254"
  148. y1="148.833328"
  149. x2="254"
  150. y2="-84"
  151. gradientTransform="matrix(0.093759,0,0,0.093759,0,20.158175)">
  152. <stop
  153. offset="0"
  154. style="stop-color:rgb(74.117649%,74.117649%,74.117649%);stop-opacity:1;"
  155. id="stop860" />
  156. <stop
  157. offset="1"
  158. style="stop-color:rgb(87.843138%,87.843138%,87.843138%);stop-opacity:1;"
  159. id="stop862" />
  160. </linearGradient>
  161. <linearGradient
  162. id="linear2-3"
  163. gradientUnits="userSpaceOnUse"
  164. x1="254"
  165. y1="148.83333"
  166. x2="254"
  167. y2="-84"
  168. gradientTransform="matrix(0.08461253,0,0,0.08461253,-19.162897,21.468351)">
  169. <stop
  170. offset="0"
  171. style="stop-color:rgb(74.117649%,74.117649%,74.117649%);stop-opacity:1;"
  172. id="stop860-6" />
  173. <stop
  174. offset="1"
  175. style="stop-color:rgb(87.843138%,87.843138%,87.843138%);stop-opacity:1;"
  176. id="stop862-7" />
  177. </linearGradient>
  178. <radialGradient
  179. id="radial0-1"
  180. gradientUnits="userSpaceOnUse"
  181. cx="450.908936"
  182. cy="189.579361"
  183. fx="450.908936"
  184. fy="189.579361"
  185. r="21.166656"
  186. gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
  187. <stop
  188. offset="0"
  189. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  190. id="stop822-2" />
  191. <stop
  192. offset="0.222222"
  193. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  194. id="stop824-7" />
  195. <stop
  196. offset="1"
  197. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  198. id="stop826-0" />
  199. </radialGradient>
  200. <radialGradient
  201. id="radial1-9"
  202. gradientUnits="userSpaceOnUse"
  203. cx="450.908936"
  204. cy="189.579361"
  205. fx="450.908936"
  206. fy="189.579361"
  207. r="21.166656"
  208. gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
  209. <stop
  210. offset="0"
  211. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  212. id="stop829-3" />
  213. <stop
  214. offset="0.222222"
  215. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  216. id="stop831-6" />
  217. <stop
  218. offset="1"
  219. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  220. id="stop833-0" />
  221. </radialGradient>
  222. <radialGradient
  223. id="radial2-6"
  224. gradientUnits="userSpaceOnUse"
  225. cx="450.908936"
  226. cy="189.579361"
  227. fx="450.908936"
  228. fy="189.579361"
  229. r="21.166656"
  230. gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
  231. <stop
  232. offset="0"
  233. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  234. id="stop836-2" />
  235. <stop
  236. offset="0.222222"
  237. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  238. id="stop838-6" />
  239. <stop
  240. offset="1"
  241. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  242. id="stop840-1" />
  243. </radialGradient>
  244. <radialGradient
  245. id="radial3-8"
  246. gradientUnits="userSpaceOnUse"
  247. cx="450.908936"
  248. cy="189.579361"
  249. fx="450.908936"
  250. fy="189.579361"
  251. r="21.166656"
  252. gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
  253. <stop
  254. offset="0"
  255. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  256. id="stop843-7" />
  257. <stop
  258. offset="0.222222"
  259. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  260. id="stop845-9" />
  261. <stop
  262. offset="1"
  263. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  264. id="stop847-2" />
  265. </radialGradient>
  266. <radialGradient
  267. id="radial0-3"
  268. gradientUnits="userSpaceOnUse"
  269. cx="450.908936"
  270. cy="189.579361"
  271. fx="450.908936"
  272. fy="189.579361"
  273. r="21.166656"
  274. gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
  275. <stop
  276. offset="0"
  277. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  278. id="stop822-6" />
  279. <stop
  280. offset="0.222222"
  281. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  282. id="stop824-75" />
  283. <stop
  284. offset="1"
  285. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  286. id="stop826-3" />
  287. </radialGradient>
  288. <radialGradient
  289. id="radial1-5"
  290. gradientUnits="userSpaceOnUse"
  291. cx="450.908936"
  292. cy="189.579361"
  293. fx="450.908936"
  294. fy="189.579361"
  295. r="21.166656"
  296. gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
  297. <stop
  298. offset="0"
  299. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  300. id="stop829-6" />
  301. <stop
  302. offset="0.222222"
  303. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  304. id="stop831-2" />
  305. <stop
  306. offset="1"
  307. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  308. id="stop833-9" />
  309. </radialGradient>
  310. <radialGradient
  311. id="radial2-1"
  312. gradientUnits="userSpaceOnUse"
  313. cx="450.908936"
  314. cy="189.579361"
  315. fx="450.908936"
  316. fy="189.579361"
  317. r="21.166656"
  318. gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
  319. <stop
  320. offset="0"
  321. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  322. id="stop836-27" />
  323. <stop
  324. offset="0.222222"
  325. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  326. id="stop838-0" />
  327. <stop
  328. offset="1"
  329. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  330. id="stop840-9" />
  331. </radialGradient>
  332. <radialGradient
  333. id="radial3-3"
  334. gradientUnits="userSpaceOnUse"
  335. cx="450.908936"
  336. cy="189.579361"
  337. fx="450.908936"
  338. fy="189.579361"
  339. r="21.166656"
  340. gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
  341. <stop
  342. offset="0"
  343. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  344. id="stop843-6" />
  345. <stop
  346. offset="0.222222"
  347. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  348. id="stop845-0" />
  349. <stop
  350. offset="1"
  351. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  352. id="stop847-6" />
  353. </radialGradient>
  354. <radialGradient
  355. id="radial0-7"
  356. gradientUnits="userSpaceOnUse"
  357. cx="450.908936"
  358. cy="189.579361"
  359. fx="450.908936"
  360. fy="189.579361"
  361. r="21.166656"
  362. gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
  363. <stop
  364. offset="0"
  365. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  366. id="stop822-5" />
  367. <stop
  368. offset="0.222222"
  369. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  370. id="stop824-9" />
  371. <stop
  372. offset="1"
  373. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  374. id="stop826-2" />
  375. </radialGradient>
  376. <radialGradient
  377. id="radial1-2"
  378. gradientUnits="userSpaceOnUse"
  379. cx="450.908936"
  380. cy="189.579361"
  381. fx="450.908936"
  382. fy="189.579361"
  383. r="21.166656"
  384. gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
  385. <stop
  386. offset="0"
  387. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  388. id="stop829-8" />
  389. <stop
  390. offset="0.222222"
  391. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  392. id="stop831-9" />
  393. <stop
  394. offset="1"
  395. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  396. id="stop833-7" />
  397. </radialGradient>
  398. <radialGradient
  399. id="radial2-3"
  400. gradientUnits="userSpaceOnUse"
  401. cx="450.908936"
  402. cy="189.579361"
  403. fx="450.908936"
  404. fy="189.579361"
  405. r="21.166656"
  406. gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
  407. <stop
  408. offset="0"
  409. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  410. id="stop836-6" />
  411. <stop
  412. offset="0.222222"
  413. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  414. id="stop838-1" />
  415. <stop
  416. offset="1"
  417. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  418. id="stop840-2" />
  419. </radialGradient>
  420. <radialGradient
  421. id="radial3-9"
  422. gradientUnits="userSpaceOnUse"
  423. cx="450.908936"
  424. cy="189.579361"
  425. fx="450.908936"
  426. fy="189.579361"
  427. r="21.166656"
  428. gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
  429. <stop
  430. offset="0"
  431. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  432. id="stop843-3" />
  433. <stop
  434. offset="0.222222"
  435. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  436. id="stop845-1" />
  437. <stop
  438. offset="1"
  439. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  440. id="stop847-9" />
  441. </radialGradient>
  442. <linearGradient
  443. id="linearGradient3866">
  444. <stop
  445. style="stop-color:#000000;stop-opacity:0.52083331"
  446. offset="0"
  447. id="stop3868" />
  448. <stop
  449. style="stop-color:#2883c3;stop-opacity:0;"
  450. offset="1"
  451. id="stop3870" />
  452. </linearGradient>
  453. <linearGradient
  454. id="linearGradient3874">
  455. <stop
  456. style="stop-color:#000d0e;stop-opacity:0.84105963;"
  457. offset="0"
  458. id="stop3876" />
  459. <stop
  460. style="stop-color:#000000;stop-opacity:0;"
  461. offset="1"
  462. id="stop3878" />
  463. </linearGradient>
  464. <clipPath
  465. id="clipPath892"
  466. clipPathUnits="userSpaceOnUse">
  467. <path
  468. inkscape:connector-curvature="0"
  469. id="path894"
  470. d="M 38.524123,20.232391 V 51.2388 h 3.597154 V 20.232391 Z M 14.125746,21.0025 V 52.010565 H 17.7229 V 21.0025 Z M 5.9924018,21.259203 V 52.267267 H 9.591212 V 21.259203 Z m 24.3983772,1.37129 v 31.006409 h 3.597153 V 22.630493 Z m -20.330877,1.626338 v 31.008065 h 3.597154 V 24.256831 Z m 24.396721,0.08612 v 31.008065 h 3.598809 V 24.342951 Z M 1.9265577,25.798705 V 56.80677 H 5.5237118 V 25.798705 Z m 16.2650323,0.08612 v 31.008064 h 3.597155 V 25.884825 Z m 24.398377,0 v 31.008064 h 3.597154 V 25.884825 Z m -16.265033,2.22752 v 31.006408 h 3.597155 V 28.112345 Z M 22.25909,30.76715 v 31.008065 h 3.597155 V 30.76715 Z"
  471. style="fill:#ffffff;fill-opacity:0.25520833;stroke:none;stroke-width:1.52630627;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
  472. </clipPath>
  473. <clipPath
  474. clipPathUnits="userSpaceOnUse"
  475. id="clipPath3881">
  476. <circle
  477. r="103.5"
  478. cy="152.5"
  479. cx="539.5"
  480. style="fill:#008dff;fill-opacity:1;fill-rule:evenodd;stroke:none"
  481. id="path3883"
  482. transform="translate(-412,-17)" />
  483. </clipPath>
  484. <linearGradient
  485. id="linearGradient4019">
  486. <stop
  487. offset="0"
  488. style="stop-color:#adcce1;stop-opacity:1;"
  489. id="stop4021" />
  490. <stop
  491. offset="0.26238"
  492. style="stop-color:#6bbfe1;stop-opacity:1;"
  493. id="stop4023" />
  494. <stop
  495. offset="0.74620908"
  496. style="stop-color:#2596d1;stop-opacity:1;"
  497. id="stop4025" />
  498. <stop
  499. offset="1"
  500. style="stop-color:#2372c0;stop-opacity:1;"
  501. id="stop4027" />
  502. </linearGradient>
  503. <linearGradient
  504. id="linearGradient4085">
  505. <stop
  506. offset="0"
  507. style="stop-color:#ffffff;stop-opacity:1"
  508. id="stop4087" />
  509. <stop
  510. offset="0.06316455"
  511. style="stop-color:#ffffff;stop-opacity:0.2"
  512. id="stop4089" />
  513. <stop
  514. offset="0.95056331"
  515. style="stop-color:#ffffff;stop-opacity:0.2"
  516. id="stop4091" />
  517. <stop
  518. offset="1"
  519. style="stop-color:#ffffff;stop-opacity:0.39215687"
  520. id="stop4093" />
  521. </linearGradient>
  522. <filter
  523. style="color-interpolation-filters:sRGB"
  524. id="filter3174">
  525. <feGaussianBlur
  526. stdDeviation="1.71"
  527. id="feGaussianBlur3176" />
  528. </filter>
  529. <linearGradient
  530. gradientTransform="scale(1.0058652,0.994169)"
  531. gradientUnits="userSpaceOnUse"
  532. id="ButtonShadow"
  533. y2="7.0165396"
  534. x2="45.447727"
  535. y1="92.539597"
  536. x1="45.447727">
  537. <stop
  538. offset="0"
  539. style="stop-color:#000000;stop-opacity:1"
  540. id="stop3750" />
  541. <stop
  542. offset="1"
  543. style="stop-color:#000000;stop-opacity:0.58823532"
  544. id="stop3752" />
  545. </linearGradient>
  546. <linearGradient
  547. id="linearGradient5048-8-7">
  548. <stop
  549. offset="0"
  550. style="stop-color:#000000;stop-opacity:0"
  551. id="stop5050-4-2" />
  552. <stop
  553. offset="0.5"
  554. style="stop-color:#000000;stop-opacity:1"
  555. id="stop5056-7-4" />
  556. <stop
  557. offset="1"
  558. style="stop-color:#000000;stop-opacity:0"
  559. id="stop5052-0-1-7" />
  560. </linearGradient>
  561. <linearGradient
  562. id="linearGradient5060-29-0">
  563. <stop
  564. offset="0"
  565. style="stop-color:#000000;stop-opacity:1"
  566. id="stop5062-9-7" />
  567. <stop
  568. offset="1"
  569. style="stop-color:#000000;stop-opacity:0"
  570. id="stop5064-08-2" />
  571. </linearGradient>
  572. <linearGradient
  573. id="linearGradient3851">
  574. <stop
  575. id="stop3853"
  576. style="stop-color:#5b8da7;stop-opacity:1;"
  577. offset="0" />
  578. <stop
  579. id="stop3855"
  580. style="stop-color:#1c3447;stop-opacity:1;"
  581. offset="1" />
  582. </linearGradient>
  583. <filter
  584. style="color-interpolation-filters:sRGB"
  585. id="filter3174-0">
  586. <feGaussianBlur
  587. stdDeviation="1.71"
  588. id="feGaussianBlur3176-9" />
  589. </filter>
  590. <clipPath
  591. id="clipPath916"
  592. clipPathUnits="userSpaceOnUse">
  593. <g
  594. id="g920"
  595. inkscape:label="circulo"
  596. style="display:inline;opacity:0.98999999;fill:#126136;fill-opacity:1"
  597. transform="matrix(1.1503549,0,0,1.1503549,-4.4861245,-7.5255648)">
  598. <path
  599. style="fill:#126136;fill-opacity:1;stroke:none;stroke-width:1.4909519"
  600. d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
  601. id="path918"
  602. inkscape:connector-curvature="0" />
  603. </g>
  604. </clipPath>
  605. <clipPath
  606. clipPathUnits="userSpaceOnUse"
  607. id="clipPath3866">
  608. <circle
  609. r="312"
  610. cy="449"
  611. cx="1132"
  612. id="path3868"
  613. style="fill:#44abb1;fill-opacity:1;fill-rule:evenodd;stroke:none"
  614. transform="matrix(0.68724124,0,0,0.68724124,-521.35527,-47.661719)" />
  615. </clipPath>
  616. <linearGradient
  617. inkscape:collect="always"
  618. id="linearGradient4118">
  619. <stop
  620. style="stop-color:#0eb474;stop-opacity:1;"
  621. offset="0"
  622. id="stop4120" />
  623. <stop
  624. style="stop-color:#0eb474;stop-opacity:0;"
  625. offset="1"
  626. id="stop4122" />
  627. </linearGradient>
  628. <linearGradient
  629. id="linearGradient3837"
  630. inkscape:collect="always">
  631. <stop
  632. id="stop3839"
  633. offset="0"
  634. style="stop-color:#7db257;stop-opacity:1;" />
  635. <stop
  636. id="stop3841"
  637. offset="1"
  638. style="stop-color:#7db257;stop-opacity:0;" />
  639. </linearGradient>
  640. <linearGradient
  641. gradientUnits="userSpaceOnUse"
  642. y2="356.66208"
  643. x2="316.05505"
  644. y1="546.63525"
  645. x1="502.83536"
  646. id="linearGradient3843"
  647. xlink:href="#linearGradient3837"
  648. inkscape:collect="always" />
  649. <clipPath
  650. id="clipPath3847"
  651. clipPathUnits="userSpaceOnUse">
  652. <circle
  653. r="260.2153"
  654. cy="342.29437"
  655. cx="322.4407"
  656. style="fill:url(#linearGradient3843);fill-opacity:1;fill-rule:evenodd;stroke:none"
  657. id="path3849"
  658. transform="matrix(0.88586957,0,0,0.88586957,-24.010886,495.98978)" />
  659. </clipPath>
  660. <clipPath
  661. clipPathUnits="userSpaceOnUse"
  662. id="clipPath3344">
  663. <circle
  664. r="260.2153"
  665. cy="342.29437"
  666. cx="322.4407"
  667. transform="matrix(0.09964174,0,0,0.09964174,-8.1283951,-10.106867)"
  668. id="path3346"
  669. style="fill:#0eb474;fill-opacity:1;fill-rule:evenodd;stroke:none" />
  670. </clipPath>
  671. <linearGradient
  672. inkscape:collect="always"
  673. xlink:href="#linearGradient4118"
  674. id="linearGradient4124"
  675. x1="62.225403"
  676. y1="342.29437"
  677. x2="582.65601"
  678. y2="342.29437"
  679. gradientUnits="userSpaceOnUse" />
  680. <clipPath
  681. id="clipPath932"
  682. clipPathUnits="userSpaceOnUse">
  683. <g
  684. id="g936"
  685. inkscape:label="circulo"
  686. style="display:inline;opacity:0.98999999;fill:#32b6a1;fill-opacity:1"
  687. transform="matrix(1.1503549,0,0,1.1503549,-4.4861245,-7.5255648)">
  688. <path
  689. style="fill:#32b6a1;fill-opacity:1;stroke:none;stroke-width:1.4909519"
  690. d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
  691. id="path934"
  692. inkscape:connector-curvature="0" />
  693. </g>
  694. </clipPath>
  695. <clipPath
  696. id="clipPath942"
  697. clipPathUnits="userSpaceOnUse">
  698. <g
  699. id="g946"
  700. inkscape:label="circulo"
  701. style="display:inline;opacity:0.98999999;fill:#32b6a1;fill-opacity:1"
  702. transform="matrix(1.1503549,0,0,1.1503549,-4.4861245,-7.5255648)">
  703. <path
  704. style="fill:#32b6a1;fill-opacity:1;stroke:none;stroke-width:1.4909519"
  705. d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
  706. id="path944"
  707. inkscape:connector-curvature="0" />
  708. </g>
  709. </clipPath>
  710. <linearGradient
  711. id="linearGradient3822">
  712. <stop
  713. id="stop3824"
  714. style="stop-color:#e6e6e6;stop-opacity:1"
  715. offset="0" />
  716. <stop
  717. id="stop3826"
  718. style="stop-color:#f5f5f5;stop-opacity:1"
  719. offset="1" />
  720. </linearGradient>
  721. <linearGradient
  722. id="linearGradient3737">
  723. <stop
  724. id="stop3739"
  725. style="stop-color:#ffffff;stop-opacity:1"
  726. offset="0" />
  727. <stop
  728. id="stop3741"
  729. style="stop-color:#ffffff;stop-opacity:0"
  730. offset="1" />
  731. </linearGradient>
  732. <linearGradient
  733. id="linearGradient3700">
  734. <stop
  735. id="stop3702"
  736. style="stop-color:#f05517;stop-opacity:1"
  737. offset="0" />
  738. <stop
  739. id="stop3704"
  740. style="stop-color:#f37340;stop-opacity:1"
  741. offset="1" />
  742. </linearGradient>
  743. <filter
  744. id="filter3174-7"
  745. style="color-interpolation-filters:sRGB">
  746. <feGaussianBlur
  747. id="feGaussianBlur3176-5"
  748. stdDeviation="1.71" />
  749. </filter>
  750. <linearGradient
  751. x1="36.357143"
  752. y1="6"
  753. x2="36.357143"
  754. y2="63.893143"
  755. id="linearGradient3188"
  756. xlink:href="#linearGradient3737"
  757. gradientUnits="userSpaceOnUse" />
  758. <filter
  759. x="-0.192"
  760. y="-0.192"
  761. width="1.3839999"
  762. height="1.3839999"
  763. id="filter3794"
  764. style="color-interpolation-filters:sRGB">
  765. <feGaussianBlur
  766. id="feGaussianBlur3796"
  767. stdDeviation="5.28" />
  768. </filter>
  769. <linearGradient
  770. x1="48"
  771. y1="20.220806"
  772. x2="48"
  773. y2="138.66119"
  774. id="linearGradient3613"
  775. xlink:href="#linearGradient3737"
  776. gradientUnits="userSpaceOnUse" />
  777. <radialGradient
  778. cx="48"
  779. cy="90.171875"
  780. r="42"
  781. fx="48"
  782. fy="90.171875"
  783. id="radialGradient3619"
  784. xlink:href="#linearGradient3737"
  785. gradientUnits="userSpaceOnUse"
  786. gradientTransform="matrix(1.1573129,0,0,0.99590774,-7.5510206,0.19713193)" />
  787. <clipPath
  788. id="clipPath3613">
  789. <rect
  790. width="84"
  791. height="84"
  792. rx="6"
  793. ry="6"
  794. x="6"
  795. y="6"
  796. id="rect3615"
  797. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  798. </clipPath>
  799. <linearGradient
  800. x1="48"
  801. y1="90"
  802. x2="48"
  803. y2="5.9877172"
  804. id="linearGradient3617"
  805. xlink:href="#linearGradient3822"
  806. gradientUnits="userSpaceOnUse" />
  807. <linearGradient
  808. x1="45.447727"
  809. y1="92.539597"
  810. x2="45.447727"
  811. y2="7.0165396"
  812. id="ButtonShadow-0"
  813. gradientUnits="userSpaceOnUse"
  814. gradientTransform="matrix(1.0058652,0,0,0.994169,100,0)">
  815. <stop
  816. id="stop3750-8"
  817. style="stop-color:#000000;stop-opacity:1"
  818. offset="0" />
  819. <stop
  820. id="stop3752-5"
  821. style="stop-color:#000000;stop-opacity:0.58823532"
  822. offset="1" />
  823. </linearGradient>
  824. <linearGradient
  825. x1="32.251034"
  826. y1="6.1317081"
  827. x2="32.251034"
  828. y2="90.238609"
  829. id="linearGradient3780"
  830. xlink:href="#ButtonShadow-0"
  831. gradientUnits="userSpaceOnUse"
  832. gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" />
  833. <linearGradient
  834. x1="32.251034"
  835. y1="6.1317081"
  836. x2="32.251034"
  837. y2="90.238609"
  838. id="linearGradient3721"
  839. xlink:href="#ButtonShadow-0"
  840. gradientUnits="userSpaceOnUse"
  841. gradientTransform="translate(0,-97)" />
  842. <linearGradient
  843. gradientTransform="matrix(3.6907816,0,0,3.6907816,86.006062,-394.23151)"
  844. x1="47.973103"
  845. y1="79.776169"
  846. x2="47.973103"
  847. y2="16.436062"
  848. id="linearGradient3067"
  849. xlink:href="#linearGradient3700"
  850. gradientUnits="userSpaceOnUse" />
  851. <clipPath
  852. id="clipPath1109"
  853. clipPathUnits="userSpaceOnUse">
  854. <g
  855. id="g1113"
  856. inkscape:label="circulo"
  857. style="display:inline;opacity:0.98999999;fill:#fa6e31;fill-opacity:1"
  858. transform="matrix(12.332308,0,0,12.332308,-47.545312,-534.58518)">
  859. <path
  860. style="fill:#fa6e31;fill-opacity:1;stroke:none;stroke-width:1.4909519"
  861. d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
  862. id="path1111"
  863. inkscape:connector-curvature="0" />
  864. </g>
  865. </clipPath>
  866. <linearGradient
  867. inkscape:collect="always"
  868. id="linearGradient3361">
  869. <stop
  870. style="stop-color:#0068e0;stop-opacity:1;"
  871. offset="0"
  872. id="stop3363" />
  873. <stop
  874. style="stop-color:#00acf4;stop-opacity:1"
  875. offset="1"
  876. id="stop3365" />
  877. </linearGradient>
  878. <linearGradient
  879. id="linearGradient3026"
  880. y2="40.495998"
  881. gradientUnits="userSpaceOnUse"
  882. x2="71.204002"
  883. gradientTransform="matrix(1.5564685,0,0,1.58743,-88.730662,-20.236087)"
  884. y1="15.369"
  885. x1="71.204002"
  886. xlink:href="#linearGradient3361">
  887. <stop
  888. id="stop4808-4"
  889. stop-color="#fff"
  890. offset="0" />
  891. <stop
  892. id="stop4810-0"
  893. stop-color="#fff"
  894. stop-opacity=".23529"
  895. offset=".42448" />
  896. <stop
  897. id="stop4812-8"
  898. stop-color="#fff"
  899. stop-opacity=".15686"
  900. offset=".82090" />
  901. <stop
  902. id="stop4814-0"
  903. stop-color="#fff"
  904. stop-opacity=".39216"
  905. offset="1" />
  906. </linearGradient>
  907. <radialGradient
  908. id="radialGradient3029"
  909. fx="4.4590001"
  910. fy="8.5088997"
  911. gradientUnits="userSpaceOnUse"
  912. cy="8.6258001"
  913. cx="15.026"
  914. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  915. r="20">
  916. <stop
  917. id="stop4170"
  918. stop-color="#c24251"
  919. offset="0" />
  920. <stop
  921. id="stop4172"
  922. stop-color="#c24251"
  923. offset=".26238" />
  924. <stop
  925. id="stop4174"
  926. stop-color="#a63643"
  927. offset=".66094" />
  928. <stop
  929. id="stop4176"
  930. stop-color="#a63643"
  931. offset="1" />
  932. </radialGradient>
  933. <radialGradient
  934. id="radialGradient3032"
  935. gradientUnits="userSpaceOnUse"
  936. cy="3.99"
  937. cx="23.896"
  938. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  939. r="20.396999">
  940. <stop
  941. id="stop3244-9-33-7-0-9"
  942. stop-color="#fff"
  943. offset="0" />
  944. <stop
  945. id="stop3246-3-5-0-8-5"
  946. stop-color="#ddd"
  947. offset=".26238" />
  948. <stop
  949. id="stop3248-1-7-8-8-1"
  950. stop-color="#abacae"
  951. offset=".66094" />
  952. <stop
  953. id="stop3250-9-3-0-5-1"
  954. stop-color="#89898b"
  955. offset="1" />
  956. </radialGradient>
  957. <radialGradient
  958. id="radialGradient3035"
  959. gradientUnits="userSpaceOnUse"
  960. cy="186.17"
  961. cx="99.156998"
  962. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  963. r="62.769001">
  964. <stop
  965. id="stop3822-2-6-3"
  966. stop-color="#3d3d3d"
  967. offset="0" />
  968. <stop
  969. id="stop3864-8-7-7"
  970. stop-color="#686868"
  971. stop-opacity=".49804"
  972. offset=".5" />
  973. <stop
  974. id="stop3824-1-2-5"
  975. stop-color="#686868"
  976. stop-opacity="0"
  977. offset="1" />
  978. </radialGradient>
  979. <linearGradient
  980. id="linearGradient4433"
  981. y2="25.611"
  982. gradientUnits="userSpaceOnUse"
  983. x2="23.077999"
  984. gradientTransform="matrix(1,0,0,1.0521,0,-0.90547)"
  985. y1="13.035"
  986. x1="22.759001">
  987. <stop
  988. id="stop6305-1-0-2"
  989. stop-color="#fff"
  990. offset="0" />
  991. <stop
  992. id="stop6307-5-0-6"
  993. stop-color="#fff"
  994. stop-opacity="0"
  995. offset="1" />
  996. </linearGradient>
  997. <linearGradient
  998. id="linearGradient4829">
  999. <stop
  1000. style="stop-color:#f4fbfc;stop-opacity:1;"
  1001. offset="0"
  1002. id="stop4831" />
  1003. <stop
  1004. style="stop-color:#d6d6d6;stop-opacity:1;"
  1005. offset="1"
  1006. id="stop4833" />
  1007. </linearGradient>
  1008. <radialGradient
  1009. id="SVGID_4_"
  1010. cx="224.50391"
  1011. cy="186.51421"
  1012. r="127.0051"
  1013. gradientUnits="userSpaceOnUse">
  1014. <stop
  1015. offset="0"
  1016. style="stop-color:#FFFFFF"
  1017. id="stop27" />
  1018. <stop
  1019. offset="0.3984"
  1020. style="stop-color:#FDFEFF"
  1021. id="stop29" />
  1022. <stop
  1023. offset="0.6131"
  1024. style="stop-color:#F5FAFF"
  1025. id="stop31" />
  1026. <stop
  1027. offset="0.7841"
  1028. style="stop-color:#E7F3FF"
  1029. id="stop33" />
  1030. <stop
  1031. offset="0.9311"
  1032. style="stop-color:#D4EAFF"
  1033. id="stop35" />
  1034. <stop
  1035. offset="1"
  1036. style="stop-color:#C8E4FF"
  1037. id="stop37" />
  1038. </radialGradient>
  1039. <radialGradient
  1040. gradientUnits="userSpaceOnUse"
  1041. r="26.769501"
  1042. cy="286.66409"
  1043. cx="324.69339"
  1044. id="SVGID_5_">
  1045. <stop
  1046. id="stop50"
  1047. style="stop-color:#FFFFFF"
  1048. offset="0" />
  1049. <stop
  1050. id="stop52"
  1051. style="stop-color:#FDFEFF"
  1052. offset="0.3984" />
  1053. <stop
  1054. id="stop54"
  1055. style="stop-color:#F5FAFF"
  1056. offset="0.6131" />
  1057. <stop
  1058. id="stop56"
  1059. style="stop-color:#E7F3FF"
  1060. offset="0.7841" />
  1061. <stop
  1062. id="stop58"
  1063. style="stop-color:#D4EAFF"
  1064. offset="0.9311" />
  1065. <stop
  1066. id="stop60"
  1067. style="stop-color:#C8E4FF"
  1068. offset="1" />
  1069. </radialGradient>
  1070. <radialGradient
  1071. gradientUnits="userSpaceOnUse"
  1072. r="46.444901"
  1073. cy="392.77249"
  1074. cx="325"
  1075. id="SVGID_6_">
  1076. <stop
  1077. id="stop73"
  1078. style="stop-color:#FFFFFF"
  1079. offset="0" />
  1080. <stop
  1081. id="stop75"
  1082. style="stop-color:#FDFEFF"
  1083. offset="0.3984" />
  1084. <stop
  1085. id="stop77"
  1086. style="stop-color:#F5FAFF"
  1087. offset="0.6131" />
  1088. <stop
  1089. id="stop79"
  1090. style="stop-color:#E7F3FF"
  1091. offset="0.7841" />
  1092. <stop
  1093. id="stop81"
  1094. style="stop-color:#D4EAFF"
  1095. offset="0.9311" />
  1096. <stop
  1097. id="stop83"
  1098. style="stop-color:#C8E4FF"
  1099. offset="1" />
  1100. </radialGradient>
  1101. <clipPath
  1102. id="clipPath-349538100">
  1103. <g
  1104. id="g17"
  1105. transform="translate(0,-1004.4)">
  1106. <path
  1107. style="fill:#1890d0"
  1108. inkscape:connector-curvature="0"
  1109. id="path19"
  1110. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1111. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1112. </g>
  1113. </clipPath>
  1114. <clipPath
  1115. id="clipPath3914">
  1116. <g
  1117. id="g3912"
  1118. transform="translate(0,-1004.4)">
  1119. <path
  1120. style="fill:#1890d0"
  1121. inkscape:connector-curvature="0"
  1122. id="path3910"
  1123. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1124. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1125. </g>
  1126. </clipPath>
  1127. <clipPath
  1128. id="clipPath3920">
  1129. <g
  1130. id="g3918"
  1131. transform="translate(0,-1004.4)">
  1132. <path
  1133. style="fill:#1890d0"
  1134. inkscape:connector-curvature="0"
  1135. id="path3916"
  1136. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1137. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1138. </g>
  1139. </clipPath>
  1140. <linearGradient
  1141. id="linearGradient6987"
  1142. osb:paint="solid">
  1143. <stop
  1144. style="stop-color:#77d2fb;stop-opacity:1;"
  1145. offset="0"
  1146. id="stop6985" />
  1147. </linearGradient>
  1148. <filter
  1149. y="0%"
  1150. x="0%"
  1151. height="100%"
  1152. width="100%"
  1153. id="alpha">
  1154. <feColorMatrix
  1155. id="feColorMatrix929"
  1156. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  1157. in="SourceGraphic" />
  1158. </filter>
  1159. <mask
  1160. id="mask0">
  1161. <g
  1162. id="g934"
  1163. filter="url(#alpha)">
  1164. <rect
  1165. id="rect932"
  1166. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1167. height="384"
  1168. width="384" />
  1169. </g>
  1170. </mask>
  1171. <clipPath
  1172. id="clip1">
  1173. <rect
  1174. id="rect937"
  1175. height="384"
  1176. width="384" />
  1177. </clipPath>
  1178. <g
  1179. clip-path="url(#clip1)"
  1180. id="surface5">
  1181. <path
  1182. id="path940"
  1183. style="fill:rgb(100%,100%,100%)"
  1184. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z" />
  1185. </g>
  1186. <mask
  1187. id="mask1">
  1188. <g
  1189. id="g945"
  1190. filter="url(#alpha)">
  1191. <rect
  1192. id="rect943"
  1193. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1194. height="384"
  1195. width="384" />
  1196. </g>
  1197. </mask>
  1198. <clipPath
  1199. id="clip2">
  1200. <rect
  1201. id="rect948"
  1202. height="384"
  1203. width="384" />
  1204. </clipPath>
  1205. <g
  1206. clip-path="url(#clip2)"
  1207. id="surface8">
  1208. <path
  1209. id="path951"
  1210. style="fill:rgb(0%,0%,0%)"
  1211. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z" />
  1212. </g>
  1213. <linearGradient
  1214. gradientUnits="userSpaceOnUse"
  1215. y2="249.017"
  1216. y1="515.328"
  1217. x2="249.882"
  1218. x1="-248.932"
  1219. id="linearGradient1117">
  1220. <stop
  1221. id="stop954"
  1222. offset="0"
  1223. style="stop-color:#aa75e6;stop-opacity:1" />
  1224. <stop
  1225. id="stop956"
  1226. offset="1"
  1227. style="stop-color:#8935f0;stop-opacity:1" />
  1228. </linearGradient>
  1229. <linearGradient
  1230. id="linearGradient-1"
  1231. y2="116.54461"
  1232. x2="186.14996"
  1233. y1="116.54461"
  1234. x1="0"
  1235. gradientTransform="scale(0.69850138,1.4316364)"
  1236. gradientUnits="userSpaceOnUse">
  1237. <stop
  1238. id="stop4511"
  1239. offset="0%"
  1240. stop-color="#FFFFFF" />
  1241. <stop
  1242. id="stop4513"
  1243. offset="14.13%"
  1244. stop-opacity="0.9576"
  1245. stop-color="#FFFFFF" />
  1246. <stop
  1247. id="stop4515"
  1248. offset="100%"
  1249. stop-opacity="0.7"
  1250. stop-color="#FFFFFF" />
  1251. </linearGradient>
  1252. <linearGradient
  1253. id="linearGradient-2"
  1254. y2="112.26521"
  1255. x2="373.38791"
  1256. y1="112.26521"
  1257. x1="187.35059"
  1258. gradientTransform="scale(0.68561406,1.4585465)"
  1259. gradientUnits="userSpaceOnUse">
  1260. <stop
  1261. id="stop4518"
  1262. offset="0%"
  1263. stop-color="#F1F1F2" />
  1264. <stop
  1265. id="stop4520"
  1266. offset="9.191442%"
  1267. stop-color="#E4E5E6" />
  1268. <stop
  1269. id="stop4522"
  1270. offset="23.57%"
  1271. stop-color="#D9DADB" />
  1272. <stop
  1273. id="stop4524"
  1274. offset="43.8%"
  1275. stop-color="#D2D4D5" />
  1276. <stop
  1277. id="stop4526"
  1278. offset="100%"
  1279. stop-color="#D0D2D3" />
  1280. </linearGradient>
  1281. <filter
  1282. style="color-interpolation-filters:sRGB"
  1283. id="c"
  1284. height="1.1655999"
  1285. width="1.1655999"
  1286. x="-0.082800001"
  1287. y="-0.082800001">
  1288. <feGaussianBlur
  1289. stdDeviation="2.1101835"
  1290. id="feGaussianBlur10" />
  1291. </filter>
  1292. <filter
  1293. style="color-interpolation-filters:sRGB"
  1294. id="a"
  1295. height="1.031026"
  1296. width="1.031376"
  1297. x="-0.015688"
  1298. y="-0.015513">
  1299. <feGaussianBlur
  1300. stdDeviation=".7986332"
  1301. id="feGaussianBlur2" />
  1302. </filter>
  1303. <clipPath
  1304. id="clip1-8">
  1305. <path
  1306. d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
  1307. id="path952" />
  1308. </clipPath>
  1309. <clipPath
  1310. id="clip2-3">
  1311. <path
  1312. d="M 515.4375 185.300781 C 515.4375 356.074219 370.535156 494.394531 192 494.394531 C 13.460938 494.394531 -131.4375 356.074219 -131.4375 185.300781 C -131.4375 14.523438 13.460938 -123.796875 192 -123.796875 C 370.535156 -123.796875 515.4375 14.523438 515.4375 185.300781 Z M 515.4375 185.300781"
  1313. id="path955" />
  1314. </clipPath>
  1315. <radialGradient
  1316. r="20"
  1317. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  1318. cx="15.026"
  1319. cy="8.6258001"
  1320. gradientUnits="userSpaceOnUse"
  1321. fy="8.5088997"
  1322. fx="4.4590001"
  1323. id="radialGradient3029-4">
  1324. <stop
  1325. offset="0"
  1326. stop-color="#c24251"
  1327. id="stop4170-8" />
  1328. <stop
  1329. offset=".26238"
  1330. stop-color="#c24251"
  1331. id="stop4172-6" />
  1332. <stop
  1333. offset=".66094"
  1334. stop-color="#a63643"
  1335. id="stop4174-1" />
  1336. <stop
  1337. offset="1"
  1338. stop-color="#a63643"
  1339. id="stop4176-3" />
  1340. </radialGradient>
  1341. <radialGradient
  1342. r="20.396999"
  1343. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  1344. cx="23.896"
  1345. cy="3.99"
  1346. gradientUnits="userSpaceOnUse"
  1347. id="radialGradient3032-3">
  1348. <stop
  1349. offset="0"
  1350. stop-color="#fff"
  1351. id="stop3244-9-33-7-0-9-4" />
  1352. <stop
  1353. offset=".26238"
  1354. stop-color="#ddd"
  1355. id="stop3246-3-5-0-8-5-0" />
  1356. <stop
  1357. offset=".66094"
  1358. stop-color="#abacae"
  1359. id="stop3248-1-7-8-8-1-8" />
  1360. <stop
  1361. offset="1"
  1362. stop-color="#89898b"
  1363. id="stop3250-9-3-0-5-1-4" />
  1364. </radialGradient>
  1365. <radialGradient
  1366. r="62.769001"
  1367. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  1368. cx="99.156998"
  1369. cy="186.17"
  1370. gradientUnits="userSpaceOnUse"
  1371. id="radialGradient3035-3">
  1372. <stop
  1373. offset="0"
  1374. stop-color="#3d3d3d"
  1375. id="stop3822-2-6-3-0" />
  1376. <stop
  1377. offset=".5"
  1378. stop-opacity=".49804"
  1379. stop-color="#686868"
  1380. id="stop3864-8-7-7-2" />
  1381. <stop
  1382. offset="1"
  1383. stop-opacity="0"
  1384. stop-color="#686868"
  1385. id="stop3824-1-2-5-4" />
  1386. </radialGradient>
  1387. <radialGradient
  1388. gradientUnits="userSpaceOnUse"
  1389. r="127.0051"
  1390. cy="186.51421"
  1391. cx="224.50391"
  1392. id="SVGID_4_-1">
  1393. <stop
  1394. id="stop27-7"
  1395. style="stop-color:#FFFFFF"
  1396. offset="0" />
  1397. <stop
  1398. id="stop29-6"
  1399. style="stop-color:#FDFEFF"
  1400. offset="0.3984" />
  1401. <stop
  1402. id="stop31-2"
  1403. style="stop-color:#F5FAFF"
  1404. offset="0.6131" />
  1405. <stop
  1406. id="stop33-6"
  1407. style="stop-color:#E7F3FF"
  1408. offset="0.7841" />
  1409. <stop
  1410. id="stop35-2"
  1411. style="stop-color:#D4EAFF"
  1412. offset="0.9311" />
  1413. <stop
  1414. id="stop37-5"
  1415. style="stop-color:#C8E4FF"
  1416. offset="1" />
  1417. </radialGradient>
  1418. <radialGradient
  1419. id="SVGID_5_-9"
  1420. cx="324.69339"
  1421. cy="286.66409"
  1422. r="26.769501"
  1423. gradientUnits="userSpaceOnUse">
  1424. <stop
  1425. offset="0"
  1426. style="stop-color:#FFFFFF"
  1427. id="stop50-2" />
  1428. <stop
  1429. offset="0.3984"
  1430. style="stop-color:#FDFEFF"
  1431. id="stop52-0" />
  1432. <stop
  1433. offset="0.6131"
  1434. style="stop-color:#F5FAFF"
  1435. id="stop54-5" />
  1436. <stop
  1437. offset="0.7841"
  1438. style="stop-color:#E7F3FF"
  1439. id="stop56-9" />
  1440. <stop
  1441. offset="0.9311"
  1442. style="stop-color:#D4EAFF"
  1443. id="stop58-7" />
  1444. <stop
  1445. offset="1"
  1446. style="stop-color:#C8E4FF"
  1447. id="stop60-2" />
  1448. </radialGradient>
  1449. <radialGradient
  1450. id="SVGID_6_-7"
  1451. cx="325"
  1452. cy="392.77249"
  1453. r="46.444901"
  1454. gradientUnits="userSpaceOnUse">
  1455. <stop
  1456. offset="0"
  1457. style="stop-color:#FFFFFF"
  1458. id="stop73-5" />
  1459. <stop
  1460. offset="0.3984"
  1461. style="stop-color:#FDFEFF"
  1462. id="stop75-3" />
  1463. <stop
  1464. offset="0.6131"
  1465. style="stop-color:#F5FAFF"
  1466. id="stop77-2" />
  1467. <stop
  1468. offset="0.7841"
  1469. style="stop-color:#E7F3FF"
  1470. id="stop79-0" />
  1471. <stop
  1472. offset="0.9311"
  1473. style="stop-color:#D4EAFF"
  1474. id="stop81-7" />
  1475. <stop
  1476. offset="1"
  1477. style="stop-color:#C8E4FF"
  1478. id="stop83-2" />
  1479. </radialGradient>
  1480. <clipPath
  1481. id="clipPath-349538100-0">
  1482. <g
  1483. transform="translate(0,-1004.4)"
  1484. id="g17-3">
  1485. <path
  1486. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1487. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1488. id="path19-8"
  1489. inkscape:connector-curvature="0"
  1490. style="fill:#1890d0" />
  1491. </g>
  1492. </clipPath>
  1493. <clipPath
  1494. id="clipPath3914-3">
  1495. <g
  1496. transform="translate(0,-1004.4)"
  1497. id="g3912-6">
  1498. <path
  1499. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1500. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1501. id="path3910-2"
  1502. inkscape:connector-curvature="0"
  1503. style="fill:#1890d0" />
  1504. </g>
  1505. </clipPath>
  1506. <clipPath
  1507. id="clipPath3920-2">
  1508. <g
  1509. transform="translate(0,-1004.4)"
  1510. id="g3918-2">
  1511. <path
  1512. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1513. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1514. id="path3916-9"
  1515. inkscape:connector-curvature="0"
  1516. style="fill:#1890d0" />
  1517. </g>
  1518. </clipPath>
  1519. <filter
  1520. id="alpha-3"
  1521. width="100%"
  1522. height="100%"
  1523. x="0%"
  1524. y="0%">
  1525. <feColorMatrix
  1526. in="SourceGraphic"
  1527. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  1528. id="feColorMatrix929-8" />
  1529. </filter>
  1530. <mask
  1531. id="mask0-2">
  1532. <g
  1533. filter="url(#alpha)"
  1534. id="g934-8"
  1535. style="filter:url(#alpha-3)">
  1536. <rect
  1537. width="384"
  1538. height="384"
  1539. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1540. id="rect932-5" />
  1541. </g>
  1542. </mask>
  1543. <clipPath
  1544. id="clip1-4">
  1545. <rect
  1546. width="384"
  1547. height="384"
  1548. id="rect937-5" />
  1549. </clipPath>
  1550. <g
  1551. id="surface5-6"
  1552. clip-path="url(#clip1-4)">
  1553. <path
  1554. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z"
  1555. style="fill:rgb(100%,100%,100%)"
  1556. id="path940-7" />
  1557. </g>
  1558. <mask
  1559. id="mask1-7">
  1560. <g
  1561. filter="url(#alpha)"
  1562. id="g945-3"
  1563. style="filter:url(#alpha-3)">
  1564. <rect
  1565. width="384"
  1566. height="384"
  1567. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1568. id="rect943-6" />
  1569. </g>
  1570. </mask>
  1571. <clipPath
  1572. id="clip2-4">
  1573. <rect
  1574. width="384"
  1575. height="384"
  1576. id="rect948-5" />
  1577. </clipPath>
  1578. <g
  1579. id="surface8-5"
  1580. clip-path="url(#clip2-4)">
  1581. <path
  1582. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z"
  1583. style="fill:rgb(0%,0%,0%)"
  1584. id="path951-0" />
  1585. </g>
  1586. <filter
  1587. y="-0.082800001"
  1588. x="-0.082800001"
  1589. width="1.1655999"
  1590. height="1.1655999"
  1591. id="c-3"
  1592. style="color-interpolation-filters:sRGB">
  1593. <feGaussianBlur
  1594. id="feGaussianBlur10-1"
  1595. stdDeviation="2.1101835" />
  1596. </filter>
  1597. <filter
  1598. y="-0.015513"
  1599. x="-0.015688"
  1600. width="1.031376"
  1601. height="1.031026"
  1602. id="a-2"
  1603. style="color-interpolation-filters:sRGB">
  1604. <feGaussianBlur
  1605. id="feGaussianBlur2-9"
  1606. stdDeviation=".7986332" />
  1607. </filter>
  1608. <linearGradient
  1609. gradientTransform="matrix(2.7297298,0,0,2.7297298,-1.5135184,-62.511679)"
  1610. gradientUnits="userSpaceOnUse"
  1611. xlink:href="#linearGradient3924"
  1612. id="linearGradient4136"
  1613. y2="42.261559"
  1614. x2="23.99999"
  1615. y1="5.5907431"
  1616. x1="23.99999" />
  1617. <linearGradient
  1618. id="linearGradient3924">
  1619. <stop
  1620. offset="0"
  1621. style="stop-color:#ffffff;stop-opacity:1"
  1622. id="stop3926" />
  1623. <stop
  1624. offset="0.03750312"
  1625. style="stop-color:#ffffff;stop-opacity:0.23529412"
  1626. id="stop3928" />
  1627. <stop
  1628. offset="0.96667296"
  1629. style="stop-color:#ffffff;stop-opacity:0.15686275"
  1630. id="stop3930" />
  1631. <stop
  1632. offset="1"
  1633. style="stop-color:#ffffff;stop-opacity:0.39215687"
  1634. id="stop3932" />
  1635. </linearGradient>
  1636. <linearGradient
  1637. gradientTransform="matrix(2.0808079,0,0,2.3409091,-2.5858604,-71.907281)"
  1638. gradientUnits="userSpaceOnUse"
  1639. xlink:href="#linearGradient27416-1-2-0"
  1640. id="linearGradient3913-9"
  1641. y2="55.052982"
  1642. x2="30.271185"
  1643. y1="10.028973"
  1644. x1="30.271185" />
  1645. <linearGradient
  1646. id="linearGradient27416-1-2-0">
  1647. <stop
  1648. offset="0"
  1649. style="stop-color:#55c1ec;stop-opacity:1"
  1650. id="stop27420-2-0-8" />
  1651. <stop
  1652. offset="1"
  1653. style="stop-color:#3689e6;stop-opacity:1"
  1654. id="stop27422-3-5-3" />
  1655. </linearGradient>
  1656. <linearGradient
  1657. id="linearGradient4632-92-3-0-8-1-9">
  1658. <stop
  1659. offset="0"
  1660. style="stop-color:#fafafa;stop-opacity:1"
  1661. id="stop4634-68-8-0-2-9-4" />
  1662. <stop
  1663. offset="1"
  1664. style="stop-color:#e1e1e1;stop-opacity:1"
  1665. id="stop4636-8-21-7-1-4-8" />
  1666. </linearGradient>
  1667. <radialGradient
  1668. gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
  1669. gradientUnits="userSpaceOnUse"
  1670. xlink:href="#linearGradient3688-166-749-5"
  1671. id="radialGradient4093"
  1672. fy="43.5"
  1673. fx="4.9929786"
  1674. r="2.5"
  1675. cy="43.5"
  1676. cx="4.9929786" />
  1677. <linearGradient
  1678. id="linearGradient3688-166-749-5">
  1679. <stop
  1680. offset="0"
  1681. style="stop-color:#181818;stop-opacity:1"
  1682. id="stop2883-0" />
  1683. <stop
  1684. offset="1"
  1685. style="stop-color:#181818;stop-opacity:0"
  1686. id="stop2885-5" />
  1687. </linearGradient>
  1688. <radialGradient
  1689. gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
  1690. gradientUnits="userSpaceOnUse"
  1691. xlink:href="#linearGradient3688-166-749-5"
  1692. id="radialGradient4095"
  1693. fy="43.5"
  1694. fx="4.9929786"
  1695. r="2.5"
  1696. cy="43.5"
  1697. cx="4.9929786" />
  1698. <linearGradient
  1699. gradientUnits="userSpaceOnUse"
  1700. xlink:href="#linearGradient3702-501-757-0"
  1701. id="linearGradient4097"
  1702. y2="39.999443"
  1703. x2="25.058096"
  1704. y1="47.027729"
  1705. x1="25.058096" />
  1706. <linearGradient
  1707. id="linearGradient3702-501-757-0">
  1708. <stop
  1709. offset="0"
  1710. style="stop-color:#181818;stop-opacity:0"
  1711. id="stop2895-0" />
  1712. <stop
  1713. offset="0.5"
  1714. style="stop-color:#181818;stop-opacity:1"
  1715. id="stop2897-2" />
  1716. <stop
  1717. offset="1"
  1718. style="stop-color:#181818;stop-opacity:0"
  1719. id="stop2899-6" />
  1720. </linearGradient>
  1721. <radialGradient
  1722. gradientTransform="matrix(1.5563924,0,0,0.16978827,70.270355,38.132101)"
  1723. gradientUnits="userSpaceOnUse"
  1724. xlink:href="#linearGradient5060-29-0"
  1725. id="radialGradient4432"
  1726. fy="93.467628"
  1727. fx="-4.0287771"
  1728. r="35.338131"
  1729. cy="93.467628"
  1730. cx="-4.0287771" />
  1731. <radialGradient
  1732. r="27.5"
  1733. fy="4.3419166"
  1734. fx="31.999998"
  1735. cy="4.3419166"
  1736. cx="31.999998"
  1737. gradientTransform="matrix(1.8994991e-8,4.3639682,-4.363968,1.8994991e-8,82.947989,-187.94014)"
  1738. gradientUnits="userSpaceOnUse"
  1739. id="radialGradient3044"
  1740. xlink:href="#linearGradient4632-92-3-0-8-1-9" />
  1741. <linearGradient
  1742. id="linearGradient4011-9-9-70-61-7">
  1743. <stop
  1744. offset="0"
  1745. style="stop-color:#ffffff;stop-opacity:1;"
  1746. id="stop4013-5-4-3-8-3" />
  1747. <stop
  1748. id="stop4015-1-5-70-9-5"
  1749. style="stop-color:#ffffff;stop-opacity:0.23529412;"
  1750. offset="0.507761" />
  1751. <stop
  1752. offset="0.83456558"
  1753. style="stop-color:#ffffff;stop-opacity:0.15686275;"
  1754. id="stop4017-7-0-13-0-1" />
  1755. <stop
  1756. offset="1"
  1757. style="stop-color:#ffffff;stop-opacity:0.39215687;"
  1758. id="stop4019-1-12-7-0-7" />
  1759. </linearGradient>
  1760. <linearGradient
  1761. id="linearGradient4215-8-4-07-7">
  1762. <stop
  1763. id="stop4217-1-2-1-2"
  1764. offset="0"
  1765. style="stop-color:#e9e9e9;stop-opacity:1;" />
  1766. <stop
  1767. id="stop4219-3-4-0-96"
  1768. offset="1"
  1769. style="stop-color:#ffffff;stop-opacity:1;" />
  1770. </linearGradient>
  1771. <linearGradient
  1772. y2="44.340794"
  1773. x2="71.204407"
  1774. y1="6.2375584"
  1775. x1="71.204407"
  1776. gradientTransform="matrix(-0.94594587,0,0,0.94594587,149.85603,-20.984768)"
  1777. gradientUnits="userSpaceOnUse"
  1778. id="linearGradient3882"
  1779. xlink:href="#linearGradient4011-9-9-70-61-7" />
  1780. <linearGradient
  1781. y2="8.0928917"
  1782. x2="38.976662"
  1783. y1="59.967686"
  1784. x1="38.976662"
  1785. gradientTransform="matrix(-0.70588238,0,0,0.70588238,104.58823,-20.99819)"
  1786. gradientUnits="userSpaceOnUse"
  1787. id="linearGradient3885"
  1788. xlink:href="#linearGradient4215-8-4-07-7" />
  1789. <linearGradient
  1790. spreadMethod="pad"
  1791. gradientTransform="matrix(0.87539065,-0.87968181,0.97932539,0.97445279,137.39425,31.066659)"
  1792. gradientUnits="userSpaceOnUse"
  1793. xlink:href="#linearGradient3155-40"
  1794. id="linearGradient3176"
  1795. y2="31.210939"
  1796. x2="23.575972"
  1797. y1="25.356892"
  1798. x1="23.575972" />
  1799. <linearGradient
  1800. id="linearGradient3155-40">
  1801. <stop
  1802. offset="0"
  1803. style="stop-color:#181818;stop-opacity:1"
  1804. id="stop2541" />
  1805. <stop
  1806. offset="0.13482948"
  1807. style="stop-color:#dbdbdb;stop-opacity:1"
  1808. id="stop2543" />
  1809. <stop
  1810. offset="0.20224422"
  1811. style="stop-color:#a4a4a4;stop-opacity:1"
  1812. id="stop2545" />
  1813. <stop
  1814. offset="0.26965895"
  1815. style="stop-color:#ffffff;stop-opacity:1"
  1816. id="stop2547" />
  1817. <stop
  1818. offset="0.44650277"
  1819. style="stop-color:#8d8d8d;stop-opacity:1"
  1820. id="stop2549" />
  1821. <stop
  1822. offset="0.57114136"
  1823. style="stop-color:#959595;stop-opacity:1"
  1824. id="stop2551" />
  1825. <stop
  1826. offset="0.72038066"
  1827. style="stop-color:#cecece;stop-opacity:1"
  1828. id="stop2553" />
  1829. <stop
  1830. offset="1"
  1831. style="stop-color:#181818;stop-opacity:1"
  1832. id="stop2555" />
  1833. </linearGradient>
  1834. <linearGradient
  1835. gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,134.1863,26.565393)"
  1836. gradientUnits="userSpaceOnUse"
  1837. xlink:href="#linearGradient3240-907"
  1838. id="linearGradient3171-9"
  1839. y2="30.000141"
  1840. x2="30.037716"
  1841. y1="24.989594"
  1842. x1="30.037716" />
  1843. <linearGradient
  1844. id="linearGradient3240-907">
  1845. <stop
  1846. offset="0"
  1847. style="stop-color:#565656;stop-opacity:1"
  1848. id="stop2591" />
  1849. <stop
  1850. offset="0.5"
  1851. style="stop-color:#9a9a9a;stop-opacity:1"
  1852. id="stop2593" />
  1853. <stop
  1854. offset="1"
  1855. style="stop-color:#545454;stop-opacity:1"
  1856. id="stop2595" />
  1857. </linearGradient>
  1858. <linearGradient
  1859. gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,133.94269,26.810201)"
  1860. gradientUnits="userSpaceOnUse"
  1861. xlink:href="#linearGradient3223-699"
  1862. id="linearGradient3168"
  1863. y2="30.000141"
  1864. x2="30.037716"
  1865. y1="24.989594"
  1866. x1="30.037716" />
  1867. <linearGradient
  1868. id="linearGradient3223-699">
  1869. <stop
  1870. offset="0"
  1871. style="stop-color:#b1b1b1;stop-opacity:1"
  1872. id="stop2599" />
  1873. <stop
  1874. offset="0.5"
  1875. style="stop-color:#ffffff;stop-opacity:1"
  1876. id="stop2601" />
  1877. <stop
  1878. offset="1"
  1879. style="stop-color:#8f8f8f;stop-opacity:1"
  1880. id="stop2603" />
  1881. </linearGradient>
  1882. <linearGradient
  1883. gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,135.03285,25.71469)"
  1884. gradientUnits="userSpaceOnUse"
  1885. xlink:href="#linearGradient3240-907"
  1886. id="linearGradient3165"
  1887. y2="30.000141"
  1888. x2="30.037716"
  1889. y1="24.989594"
  1890. x1="30.037716" />
  1891. <linearGradient
  1892. gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,134.78924,25.959496)"
  1893. gradientUnits="userSpaceOnUse"
  1894. xlink:href="#linearGradient3223-699"
  1895. id="linearGradient3162"
  1896. y2="30.000141"
  1897. x2="30.037716"
  1898. y1="24.989594"
  1899. x1="30.037716" />
  1900. <linearGradient
  1901. gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,135.8835,24.859875)"
  1902. gradientUnits="userSpaceOnUse"
  1903. xlink:href="#linearGradient3240-907"
  1904. id="linearGradient3159"
  1905. y2="30.000141"
  1906. x2="30.037716"
  1907. y1="24.989594"
  1908. x1="30.037716" />
  1909. <linearGradient
  1910. gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,135.63989,25.104684)"
  1911. gradientUnits="userSpaceOnUse"
  1912. xlink:href="#linearGradient3223-699"
  1913. id="linearGradient3156"
  1914. y2="30.000141"
  1915. x2="30.037716"
  1916. y1="24.989594"
  1917. x1="30.037716" />
  1918. <linearGradient
  1919. gradientTransform="matrix(0.85064445,-0.85481442,1.1461221,1.1404197,133.86321,26.890061)"
  1920. gradientUnits="userSpaceOnUse"
  1921. xlink:href="#linearGradient3290-678"
  1922. id="linearGradient3151"
  1923. y2="26.02973"
  1924. x2="9"
  1925. y1="29.056757"
  1926. x1="9" />
  1927. <linearGradient
  1928. id="linearGradient3290-678">
  1929. <stop
  1930. offset="0"
  1931. style="stop-color:#ece5a5;stop-opacity:1"
  1932. id="stop2607" />
  1933. <stop
  1934. offset="1"
  1935. style="stop-color:#fcfbf2;stop-opacity:1"
  1936. id="stop2609" />
  1937. </linearGradient>
  1938. <linearGradient
  1939. gradientTransform="matrix(0.74712277,0.03224699,0.03220731,0.74620134,164.80582,22.054915)"
  1940. gradientUnits="userSpaceOnUse"
  1941. xlink:href="#linearGradient3191-577"
  1942. id="linearGradient3153"
  1943. y2="41.391716"
  1944. x2="9.5220556"
  1945. y1="37.371799"
  1946. x1="5.5178981" />
  1947. <linearGradient
  1948. id="linearGradient3191-577">
  1949. <stop
  1950. offset="0"
  1951. style="stop-color:#dbce48;stop-opacity:1"
  1952. id="stop2613" />
  1953. <stop
  1954. offset="1"
  1955. style="stop-color:#c5b625;stop-opacity:1"
  1956. id="stop2615" />
  1957. </linearGradient>
  1958. <linearGradient
  1959. gradientTransform="matrix(0.68819266,0,0,0.68819266,-66.372441,271.1295)"
  1960. gradientUnits="userSpaceOnUse"
  1961. xlink:href="#linearGradient5060-29-0"
  1962. id="linearGradient3024-3"
  1963. y2="30.093096"
  1964. x2="30.643436"
  1965. y1="3.915791"
  1966. x1="30.643436" />
  1967. <linearGradient
  1968. gradientTransform="matrix(0.63721544,0,0,-0.63721544,-50.151075,311.70922)"
  1969. gradientUnits="userSpaceOnUse"
  1970. xlink:href="#linearGradient5060-29-0"
  1971. id="linearGradient3453-5"
  1972. y2="17.313972"
  1973. x2="19.868132"
  1974. y1="13.067885"
  1975. x1="19.868132" />
  1976. <clipPath
  1977. id="clipPath8125-5"
  1978. clipPathUnits="userSpaceOnUse">
  1979. <path
  1980. d="m 15,7.9999995 c -0.277,0 -0.5,0.223 -0.5,0.5 l 0,1.6875005 c -0.548639,0.140741 -1.055018,0.37601 -1.53125,0.65625 L 11.75,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 L 9.625,11.0625 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.21875,1.21875 C 10.56351,13.444982 10.328241,13.951361 10.1875,14.5 L 8.5,14.5 C 8.223,14.5 8,14.723 8,15 l 0,2 c 0,0.277 0.223,0.5 0.5,0.5 l 1.6875,0 c 0.140741,0.548639 0.37601,1.055018 0.65625,1.53125 L 9.625,20.25 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.4375,1.4375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.21875,-1.21875 c 0.476232,0.28024 0.982611,0.515509 1.53125,0.65625 l 0,1.6875 c 0,0.277 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-1.6875 c 0.548639,-0.140741 1.055018,-0.37601 1.53125,-0.65625 L 20.25,22.375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.4375,-1.4375 c 0.195869,-0.195869 0.195869,-0.491631 0,-0.6875 L 21.15625,19.03125 C 21.43649,18.555018 21.671759,18.048639 21.8125,17.5 l 1.6875,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-2 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -1.6875,0 C 21.671759,13.951361 21.43649,13.444982 21.15625,12.96875 L 22.375,11.75 c 0.195869,-0.19587 0.195869,-0.491631 0,-0.6875 L 20.9375,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 l -1.21875,1.21875 C 18.555018,10.56351 18.048639,10.328241 17.5,10.1875 l 0,-1.6875005 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -2,0 z M 16,13 c 1.656854,0 3,1.343146 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.656854 1.343146,-3 3,-3 z"
  1981. id="path8127-2"
  1982. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
  1983. inkscape:connector-curvature="0" />
  1984. </clipPath>
  1985. <clipPath
  1986. id="clipPath4340"
  1987. clipPathUnits="userSpaceOnUse">
  1988. <path
  1989. d="m 15,7.9999995 c -0.277,0 -0.5,0.223 -0.5,0.5 l 0,1.6875005 c -0.548639,0.140741 -1.055018,0.37601 -1.53125,0.65625 L 11.75,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 L 9.625,11.0625 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.21875,1.21875 C 10.56351,13.444982 10.328241,13.951361 10.1875,14.5 L 8.5,14.5 C 8.223,14.5 8,14.723 8,15 l 0,2 c 0,0.277 0.223,0.5 0.5,0.5 l 1.6875,0 c 0.140741,0.548639 0.37601,1.055018 0.65625,1.53125 L 9.625,20.25 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.4375,1.4375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.21875,-1.21875 c 0.476232,0.28024 0.982611,0.515509 1.53125,0.65625 l 0,1.6875 c 0,0.277 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-1.6875 c 0.548639,-0.140741 1.055018,-0.37601 1.53125,-0.65625 L 20.25,22.375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.4375,-1.4375 c 0.195869,-0.195869 0.195869,-0.491631 0,-0.6875 L 21.15625,19.03125 C 21.43649,18.555018 21.671759,18.048639 21.8125,17.5 l 1.6875,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-2 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -1.6875,0 C 21.671759,13.951361 21.43649,13.444982 21.15625,12.96875 L 22.375,11.75 c 0.195869,-0.19587 0.195869,-0.491631 0,-0.6875 L 20.9375,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 l -1.21875,1.21875 C 18.555018,10.56351 18.048639,10.328241 17.5,10.1875 l 0,-1.6875005 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -2,0 z M 16,13 c 1.656854,0 3,1.343146 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.656854 1.343146,-3 3,-3 z"
  1990. id="path4342"
  1991. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
  1992. inkscape:connector-curvature="0" />
  1993. </clipPath>
  1994. <clipPath
  1995. id="clipPath8125-5-7"
  1996. clipPathUnits="userSpaceOnUse">
  1997. <path
  1998. d="m 15,7.9999995 c -0.277,0 -0.5,0.223 -0.5,0.5 V 10.1875 c -0.548639,0.140741 -1.055018,0.37601 -1.53125,0.65625 L 11.75,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 L 9.625,11.0625 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.21875,1.21875 C 10.56351,13.444982 10.328241,13.951361 10.1875,14.5 H 8.5 C 8.223,14.5 8,14.723 8,15 v 2 c 0,0.277 0.223,0.5 0.5,0.5 h 1.6875 c 0.140741,0.548639 0.37601,1.055018 0.65625,1.53125 L 9.625,20.25 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.4375,1.4375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.21875,-1.21875 c 0.476232,0.28024 0.982611,0.515509 1.53125,0.65625 V 23.5 c 0,0.277 0.223,0.5 0.5,0.5 h 2 c 0.277,0 0.5,-0.223 0.5,-0.5 v -1.6875 c 0.548639,-0.140741 1.055018,-0.37601 1.53125,-0.65625 L 20.25,22.375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.4375,-1.4375 c 0.195869,-0.195869 0.195869,-0.491631 0,-0.6875 L 21.15625,19.03125 C 21.43649,18.555018 21.671759,18.048639 21.8125,17.5 H 23.5 c 0.277,0 0.5,-0.223 0.5,-0.5 v -2 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 H 21.8125 C 21.671759,13.951361 21.43649,13.444982 21.15625,12.96875 L 22.375,11.75 c 0.195869,-0.19587 0.195869,-0.491631 0,-0.6875 L 20.9375,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 l -1.21875,1.21875 C 18.555018,10.56351 18.048639,10.328241 17.5,10.1875 V 8.4999995 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 z M 16,13 c 1.656854,0 3,1.343146 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.656854 1.343146,-3 3,-3 z"
  1999. id="path8127-2-8"
  2000. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
  2001. inkscape:connector-curvature="0" />
  2002. </clipPath>
  2003. <filter
  2004. id="filter1712"
  2005. style="color-interpolation-filters:sRGB"
  2006. inkscape:menu-tooltip="Adds a small scale graininess"
  2007. inkscape:menu="Image Effects"
  2008. inkscape:label="Film Grain">
  2009. <feTurbulence
  2010. id="feTurbulence1702"
  2011. result="result0"
  2012. seed="0"
  2013. baseFrequency="1"
  2014. numOctaves="3"
  2015. type="fractalNoise" />
  2016. <feColorMatrix
  2017. id="feColorMatrix1704"
  2018. type="saturate"
  2019. values="0"
  2020. result="result4" />
  2021. <feComposite
  2022. k4="0"
  2023. id="feComposite1706"
  2024. result="result2"
  2025. k3="0.5"
  2026. k2="0.5"
  2027. k1="1.25"
  2028. operator="arithmetic"
  2029. in2="result4"
  2030. in="SourceGraphic" />
  2031. <feBlend
  2032. id="feBlend1708"
  2033. in2="SourceGraphic"
  2034. in="result2"
  2035. mode="normal"
  2036. result="result5" />
  2037. <feComposite
  2038. id="feComposite1710"
  2039. result="result3"
  2040. operator="in"
  2041. in2="SourceGraphic"
  2042. in="result5" />
  2043. </filter>
  2044. <radialGradient
  2045. id="radialGradient3029-6"
  2046. fx="4.4590001"
  2047. fy="8.5088997"
  2048. gradientUnits="userSpaceOnUse"
  2049. cy="8.6258001"
  2050. cx="15.026"
  2051. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  2052. r="20">
  2053. <stop
  2054. id="stop4170-2"
  2055. stop-color="#c24251"
  2056. offset="0" />
  2057. <stop
  2058. id="stop4172-9"
  2059. stop-color="#c24251"
  2060. offset=".26238" />
  2061. <stop
  2062. id="stop4174-12"
  2063. stop-color="#a63643"
  2064. offset=".66094" />
  2065. <stop
  2066. id="stop4176-7"
  2067. stop-color="#a63643"
  2068. offset="1" />
  2069. </radialGradient>
  2070. <radialGradient
  2071. id="radialGradient3032-0"
  2072. gradientUnits="userSpaceOnUse"
  2073. cy="3.99"
  2074. cx="23.896"
  2075. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  2076. r="20.396999">
  2077. <stop
  2078. id="stop3244-9-33-7-0-9-9"
  2079. stop-color="#fff"
  2080. offset="0" />
  2081. <stop
  2082. id="stop3246-3-5-0-8-5-3"
  2083. stop-color="#ddd"
  2084. offset=".26238" />
  2085. <stop
  2086. id="stop3248-1-7-8-8-1-6"
  2087. stop-color="#abacae"
  2088. offset=".66094" />
  2089. <stop
  2090. id="stop3250-9-3-0-5-1-0"
  2091. stop-color="#89898b"
  2092. offset="1" />
  2093. </radialGradient>
  2094. <radialGradient
  2095. id="radialGradient3035-6"
  2096. gradientUnits="userSpaceOnUse"
  2097. cy="186.17"
  2098. cx="99.156998"
  2099. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  2100. r="62.769001">
  2101. <stop
  2102. id="stop3822-2-6-3-2"
  2103. stop-color="#3d3d3d"
  2104. offset="0" />
  2105. <stop
  2106. id="stop3864-8-7-7-6"
  2107. stop-color="#686868"
  2108. stop-opacity=".49804"
  2109. offset=".5" />
  2110. <stop
  2111. id="stop3824-1-2-5-1"
  2112. stop-color="#686868"
  2113. stop-opacity="0"
  2114. offset="1" />
  2115. </radialGradient>
  2116. <radialGradient
  2117. id="SVGID_4_-0"
  2118. cx="224.50391"
  2119. cy="186.51421"
  2120. r="127.0051"
  2121. gradientUnits="userSpaceOnUse">
  2122. <stop
  2123. offset="0"
  2124. style="stop-color:#FFFFFF"
  2125. id="stop27-2" />
  2126. <stop
  2127. offset="0.3984"
  2128. style="stop-color:#FDFEFF"
  2129. id="stop29-3" />
  2130. <stop
  2131. offset="0.6131"
  2132. style="stop-color:#F5FAFF"
  2133. id="stop31-7" />
  2134. <stop
  2135. offset="0.7841"
  2136. style="stop-color:#E7F3FF"
  2137. id="stop33-5" />
  2138. <stop
  2139. offset="0.9311"
  2140. style="stop-color:#D4EAFF"
  2141. id="stop35-9" />
  2142. <stop
  2143. offset="1"
  2144. style="stop-color:#C8E4FF"
  2145. id="stop37-2" />
  2146. </radialGradient>
  2147. <radialGradient
  2148. gradientUnits="userSpaceOnUse"
  2149. r="26.769501"
  2150. cy="286.66409"
  2151. cx="324.69339"
  2152. id="SVGID_5_-2">
  2153. <stop
  2154. id="stop50-8"
  2155. style="stop-color:#FFFFFF"
  2156. offset="0" />
  2157. <stop
  2158. id="stop52-9"
  2159. style="stop-color:#FDFEFF"
  2160. offset="0.3984" />
  2161. <stop
  2162. id="stop54-7"
  2163. style="stop-color:#F5FAFF"
  2164. offset="0.6131" />
  2165. <stop
  2166. id="stop56-3"
  2167. style="stop-color:#E7F3FF"
  2168. offset="0.7841" />
  2169. <stop
  2170. id="stop58-6"
  2171. style="stop-color:#D4EAFF"
  2172. offset="0.9311" />
  2173. <stop
  2174. id="stop60-1"
  2175. style="stop-color:#C8E4FF"
  2176. offset="1" />
  2177. </radialGradient>
  2178. <radialGradient
  2179. gradientUnits="userSpaceOnUse"
  2180. r="46.444901"
  2181. cy="392.77249"
  2182. cx="325"
  2183. id="SVGID_6_-2">
  2184. <stop
  2185. id="stop73-9"
  2186. style="stop-color:#FFFFFF"
  2187. offset="0" />
  2188. <stop
  2189. id="stop75-31"
  2190. style="stop-color:#FDFEFF"
  2191. offset="0.3984" />
  2192. <stop
  2193. id="stop77-9"
  2194. style="stop-color:#F5FAFF"
  2195. offset="0.6131" />
  2196. <stop
  2197. id="stop79-4"
  2198. style="stop-color:#E7F3FF"
  2199. offset="0.7841" />
  2200. <stop
  2201. id="stop81-78"
  2202. style="stop-color:#D4EAFF"
  2203. offset="0.9311" />
  2204. <stop
  2205. id="stop83-4"
  2206. style="stop-color:#C8E4FF"
  2207. offset="1" />
  2208. </radialGradient>
  2209. <clipPath
  2210. id="clipPath-349538100-5">
  2211. <g
  2212. id="g17-0"
  2213. transform="translate(0,-1004.4)">
  2214. <path
  2215. style="fill:#1890d0"
  2216. inkscape:connector-curvature="0"
  2217. id="path19-3"
  2218. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2219. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  2220. </g>
  2221. </clipPath>
  2222. <clipPath
  2223. id="clipPath3914-6">
  2224. <g
  2225. id="g3912-1"
  2226. transform="translate(0,-1004.4)">
  2227. <path
  2228. style="fill:#1890d0"
  2229. inkscape:connector-curvature="0"
  2230. id="path3910-0"
  2231. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2232. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  2233. </g>
  2234. </clipPath>
  2235. <clipPath
  2236. id="clipPath3920-6">
  2237. <g
  2238. id="g3918-3"
  2239. transform="translate(0,-1004.4)">
  2240. <path
  2241. style="fill:#1890d0"
  2242. inkscape:connector-curvature="0"
  2243. id="path3916-2"
  2244. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2245. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  2246. </g>
  2247. </clipPath>
  2248. <filter
  2249. y="0%"
  2250. x="0%"
  2251. height="100%"
  2252. width="100%"
  2253. id="alpha-6">
  2254. <feColorMatrix
  2255. id="feColorMatrix929-1"
  2256. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  2257. in="SourceGraphic" />
  2258. </filter>
  2259. <mask
  2260. id="mask0-5">
  2261. <g
  2262. style="filter:url(#alpha-6)"
  2263. id="g934-5"
  2264. filter="url(#alpha)">
  2265. <rect
  2266. id="rect932-4"
  2267. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2268. height="384"
  2269. width="384" />
  2270. </g>
  2271. </mask>
  2272. <clipPath
  2273. id="clip1-7">
  2274. <rect
  2275. id="rect937-6"
  2276. height="384"
  2277. width="384" />
  2278. </clipPath>
  2279. <g
  2280. clip-path="url(#clip1-7)"
  2281. id="surface5-5">
  2282. <path
  2283. id="path940-6"
  2284. style="fill:rgb(100%,100%,100%)"
  2285. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z" />
  2286. </g>
  2287. <mask
  2288. id="mask1-9">
  2289. <g
  2290. style="filter:url(#alpha-6)"
  2291. id="g945-37"
  2292. filter="url(#alpha)">
  2293. <rect
  2294. id="rect943-4"
  2295. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2296. height="384"
  2297. width="384" />
  2298. </g>
  2299. </mask>
  2300. <clipPath
  2301. id="clip2-5">
  2302. <rect
  2303. id="rect948-2"
  2304. height="384"
  2305. width="384" />
  2306. </clipPath>
  2307. <g
  2308. clip-path="url(#clip2-5)"
  2309. id="surface8-54">
  2310. <path
  2311. id="path951-7"
  2312. style="fill:rgb(0%,0%,0%)"
  2313. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z" />
  2314. </g>
  2315. <filter
  2316. style="color-interpolation-filters:sRGB"
  2317. id="c-31"
  2318. height="1.1655999"
  2319. width="1.1655999"
  2320. x="-0.082800001"
  2321. y="-0.082800001">
  2322. <feGaussianBlur
  2323. stdDeviation="2.1101835"
  2324. id="feGaussianBlur10-4" />
  2325. </filter>
  2326. <filter
  2327. style="color-interpolation-filters:sRGB"
  2328. id="a-9"
  2329. height="1.031026"
  2330. width="1.031376"
  2331. x="-0.015688"
  2332. y="-0.015513">
  2333. <feGaussianBlur
  2334. stdDeviation=".7986332"
  2335. id="feGaussianBlur2-2" />
  2336. </filter>
  2337. <clipPath
  2338. id="clip1-8-0">
  2339. <path
  2340. d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
  2341. id="path952-6" />
  2342. </clipPath>
  2343. <clipPath
  2344. id="clip2-3-8">
  2345. <path
  2346. d="M 515.4375 185.300781 C 515.4375 356.074219 370.535156 494.394531 192 494.394531 C 13.460938 494.394531 -131.4375 356.074219 -131.4375 185.300781 C -131.4375 14.523438 13.460938 -123.796875 192 -123.796875 C 370.535156 -123.796875 515.4375 14.523438 515.4375 185.300781 Z M 515.4375 185.300781"
  2347. id="path955-9" />
  2348. </clipPath>
  2349. <radialGradient
  2350. r="20"
  2351. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  2352. cx="15.026"
  2353. cy="8.6258001"
  2354. gradientUnits="userSpaceOnUse"
  2355. fy="8.5088997"
  2356. fx="4.4590001"
  2357. id="radialGradient3029-4-2">
  2358. <stop
  2359. offset="0"
  2360. stop-color="#c24251"
  2361. id="stop4170-8-6" />
  2362. <stop
  2363. offset=".26238"
  2364. stop-color="#c24251"
  2365. id="stop4172-6-6" />
  2366. <stop
  2367. offset=".66094"
  2368. stop-color="#a63643"
  2369. id="stop4174-1-4" />
  2370. <stop
  2371. offset="1"
  2372. stop-color="#a63643"
  2373. id="stop4176-3-9" />
  2374. </radialGradient>
  2375. <radialGradient
  2376. r="20.396999"
  2377. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  2378. cx="23.896"
  2379. cy="3.99"
  2380. gradientUnits="userSpaceOnUse"
  2381. id="radialGradient3032-3-5">
  2382. <stop
  2383. offset="0"
  2384. stop-color="#fff"
  2385. id="stop3244-9-33-7-0-9-4-0" />
  2386. <stop
  2387. offset=".26238"
  2388. stop-color="#ddd"
  2389. id="stop3246-3-5-0-8-5-0-4" />
  2390. <stop
  2391. offset=".66094"
  2392. stop-color="#abacae"
  2393. id="stop3248-1-7-8-8-1-8-8" />
  2394. <stop
  2395. offset="1"
  2396. stop-color="#89898b"
  2397. id="stop3250-9-3-0-5-1-4-7" />
  2398. </radialGradient>
  2399. <radialGradient
  2400. r="62.769001"
  2401. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  2402. cx="99.156998"
  2403. cy="186.17"
  2404. gradientUnits="userSpaceOnUse"
  2405. id="radialGradient3035-3-1">
  2406. <stop
  2407. offset="0"
  2408. stop-color="#3d3d3d"
  2409. id="stop3822-2-6-3-0-7" />
  2410. <stop
  2411. offset=".5"
  2412. stop-opacity=".49804"
  2413. stop-color="#686868"
  2414. id="stop3864-8-7-7-2-2" />
  2415. <stop
  2416. offset="1"
  2417. stop-opacity="0"
  2418. stop-color="#686868"
  2419. id="stop3824-1-2-5-4-7" />
  2420. </radialGradient>
  2421. <radialGradient
  2422. gradientUnits="userSpaceOnUse"
  2423. r="127.0051"
  2424. cy="186.51421"
  2425. cx="224.50391"
  2426. id="SVGID_4_-1-2">
  2427. <stop
  2428. id="stop27-7-2"
  2429. style="stop-color:#FFFFFF"
  2430. offset="0" />
  2431. <stop
  2432. id="stop29-6-6"
  2433. style="stop-color:#FDFEFF"
  2434. offset="0.3984" />
  2435. <stop
  2436. id="stop31-2-1"
  2437. style="stop-color:#F5FAFF"
  2438. offset="0.6131" />
  2439. <stop
  2440. id="stop33-6-0"
  2441. style="stop-color:#E7F3FF"
  2442. offset="0.7841" />
  2443. <stop
  2444. id="stop35-2-6"
  2445. style="stop-color:#D4EAFF"
  2446. offset="0.9311" />
  2447. <stop
  2448. id="stop37-5-1"
  2449. style="stop-color:#C8E4FF"
  2450. offset="1" />
  2451. </radialGradient>
  2452. <radialGradient
  2453. id="SVGID_5_-9-5"
  2454. cx="324.69339"
  2455. cy="286.66409"
  2456. r="26.769501"
  2457. gradientUnits="userSpaceOnUse">
  2458. <stop
  2459. offset="0"
  2460. style="stop-color:#FFFFFF"
  2461. id="stop50-2-9" />
  2462. <stop
  2463. offset="0.3984"
  2464. style="stop-color:#FDFEFF"
  2465. id="stop52-0-4" />
  2466. <stop
  2467. offset="0.6131"
  2468. style="stop-color:#F5FAFF"
  2469. id="stop54-5-9" />
  2470. <stop
  2471. offset="0.7841"
  2472. style="stop-color:#E7F3FF"
  2473. id="stop56-9-0" />
  2474. <stop
  2475. offset="0.9311"
  2476. style="stop-color:#D4EAFF"
  2477. id="stop58-7-9" />
  2478. <stop
  2479. offset="1"
  2480. style="stop-color:#C8E4FF"
  2481. id="stop60-2-1" />
  2482. </radialGradient>
  2483. <radialGradient
  2484. id="SVGID_6_-7-7"
  2485. cx="325"
  2486. cy="392.77249"
  2487. r="46.444901"
  2488. gradientUnits="userSpaceOnUse">
  2489. <stop
  2490. offset="0"
  2491. style="stop-color:#FFFFFF"
  2492. id="stop73-5-7" />
  2493. <stop
  2494. offset="0.3984"
  2495. style="stop-color:#FDFEFF"
  2496. id="stop75-3-1" />
  2497. <stop
  2498. offset="0.6131"
  2499. style="stop-color:#F5FAFF"
  2500. id="stop77-2-1" />
  2501. <stop
  2502. offset="0.7841"
  2503. style="stop-color:#E7F3FF"
  2504. id="stop79-0-5" />
  2505. <stop
  2506. offset="0.9311"
  2507. style="stop-color:#D4EAFF"
  2508. id="stop81-7-9" />
  2509. <stop
  2510. offset="1"
  2511. style="stop-color:#C8E4FF"
  2512. id="stop83-2-7" />
  2513. </radialGradient>
  2514. <clipPath
  2515. id="clipPath-349538100-0-7">
  2516. <g
  2517. transform="translate(0,-1004.4)"
  2518. id="g17-3-6">
  2519. <path
  2520. transform="matrix(15.333,0,0,11.5,415,878.86)"
  2521. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2522. id="path19-8-7"
  2523. inkscape:connector-curvature="0"
  2524. style="fill:#1890d0" />
  2525. </g>
  2526. </clipPath>
  2527. <clipPath
  2528. id="clipPath3914-3-3">
  2529. <g
  2530. transform="translate(0,-1004.4)"
  2531. id="g3912-6-6">
  2532. <path
  2533. transform="matrix(15.333,0,0,11.5,415,878.86)"
  2534. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2535. id="path3910-2-5"
  2536. inkscape:connector-curvature="0"
  2537. style="fill:#1890d0" />
  2538. </g>
  2539. </clipPath>
  2540. <clipPath
  2541. id="clipPath3920-2-6">
  2542. <g
  2543. transform="translate(0,-1004.4)"
  2544. id="g3918-2-3">
  2545. <path
  2546. transform="matrix(15.333,0,0,11.5,415,878.86)"
  2547. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2548. id="path3916-9-9"
  2549. inkscape:connector-curvature="0"
  2550. style="fill:#1890d0" />
  2551. </g>
  2552. </clipPath>
  2553. <filter
  2554. id="alpha-3-4"
  2555. width="100%"
  2556. height="100%"
  2557. x="0%"
  2558. y="0%">
  2559. <feColorMatrix
  2560. in="SourceGraphic"
  2561. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  2562. id="feColorMatrix929-8-8" />
  2563. </filter>
  2564. <mask
  2565. id="mask0-2-1">
  2566. <g
  2567. filter="url(#alpha)"
  2568. id="g934-8-2"
  2569. style="filter:url(#alpha-3-4)">
  2570. <rect
  2571. width="384"
  2572. height="384"
  2573. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2574. id="rect932-5-9" />
  2575. </g>
  2576. </mask>
  2577. <clipPath
  2578. id="clip1-4-3">
  2579. <rect
  2580. width="384"
  2581. height="384"
  2582. id="rect937-5-9" />
  2583. </clipPath>
  2584. <g
  2585. id="surface5-6-0"
  2586. clip-path="url(#clip1-4-3)">
  2587. <path
  2588. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z"
  2589. style="fill:rgb(100%,100%,100%)"
  2590. id="path940-7-8" />
  2591. </g>
  2592. <mask
  2593. id="mask1-7-8">
  2594. <g
  2595. filter="url(#alpha)"
  2596. id="g945-3-5"
  2597. style="filter:url(#alpha-3-4)">
  2598. <rect
  2599. width="384"
  2600. height="384"
  2601. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2602. id="rect943-6-0" />
  2603. </g>
  2604. </mask>
  2605. <clipPath
  2606. id="clip2-4-9">
  2607. <rect
  2608. width="384"
  2609. height="384"
  2610. id="rect948-5-6" />
  2611. </clipPath>
  2612. <g
  2613. id="surface8-5-3"
  2614. clip-path="url(#clip2-4-9)">
  2615. <path
  2616. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z"
  2617. style="fill:rgb(0%,0%,0%)"
  2618. id="path951-0-8" />
  2619. </g>
  2620. <filter
  2621. y="-0.082800001"
  2622. x="-0.082800001"
  2623. width="1.1655999"
  2624. height="1.1655999"
  2625. id="c-3-5"
  2626. style="color-interpolation-filters:sRGB">
  2627. <feGaussianBlur
  2628. id="feGaussianBlur10-1-6"
  2629. stdDeviation="2.1101835" />
  2630. </filter>
  2631. <filter
  2632. y="-0.015513"
  2633. x="-0.015688"
  2634. width="1.031376"
  2635. height="1.031026"
  2636. id="a-2-1"
  2637. style="color-interpolation-filters:sRGB">
  2638. <feGaussianBlur
  2639. id="feGaussianBlur2-9-1"
  2640. stdDeviation=".7986332" />
  2641. </filter>
  2642. <radialGradient
  2643. id="radialGradient3029-62"
  2644. fx="4.4590001"
  2645. fy="8.5088997"
  2646. gradientUnits="userSpaceOnUse"
  2647. cy="8.6258001"
  2648. cx="15.026"
  2649. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  2650. r="20">
  2651. <stop
  2652. id="stop4170-9"
  2653. stop-color="#c24251"
  2654. offset="0" />
  2655. <stop
  2656. id="stop4172-1"
  2657. stop-color="#c24251"
  2658. offset=".26238" />
  2659. <stop
  2660. id="stop4174-2"
  2661. stop-color="#a63643"
  2662. offset=".66094" />
  2663. <stop
  2664. id="stop4176-70"
  2665. stop-color="#a63643"
  2666. offset="1" />
  2667. </radialGradient>
  2668. <radialGradient
  2669. id="radialGradient3032-9"
  2670. gradientUnits="userSpaceOnUse"
  2671. cy="3.99"
  2672. cx="23.896"
  2673. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  2674. r="20.396999">
  2675. <stop
  2676. id="stop3244-9-33-7-0-9-3"
  2677. stop-color="#fff"
  2678. offset="0" />
  2679. <stop
  2680. id="stop3246-3-5-0-8-5-6"
  2681. stop-color="#ddd"
  2682. offset=".26238" />
  2683. <stop
  2684. id="stop3248-1-7-8-8-1-0"
  2685. stop-color="#abacae"
  2686. offset=".66094" />
  2687. <stop
  2688. id="stop3250-9-3-0-5-1-6"
  2689. stop-color="#89898b"
  2690. offset="1" />
  2691. </radialGradient>
  2692. <radialGradient
  2693. id="radialGradient3035-2"
  2694. gradientUnits="userSpaceOnUse"
  2695. cy="186.17"
  2696. cx="99.156998"
  2697. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  2698. r="62.769001">
  2699. <stop
  2700. id="stop3822-2-6-3-6"
  2701. stop-color="#3d3d3d"
  2702. offset="0" />
  2703. <stop
  2704. id="stop3864-8-7-7-1"
  2705. stop-color="#686868"
  2706. stop-opacity=".49804"
  2707. offset=".5" />
  2708. <stop
  2709. id="stop3824-1-2-5-8"
  2710. stop-color="#686868"
  2711. stop-opacity="0"
  2712. offset="1" />
  2713. </radialGradient>
  2714. <radialGradient
  2715. id="SVGID_4_-2"
  2716. cx="224.50391"
  2717. cy="186.51421"
  2718. r="127.0051"
  2719. gradientUnits="userSpaceOnUse">
  2720. <stop
  2721. offset="0"
  2722. style="stop-color:#FFFFFF"
  2723. id="stop27-3" />
  2724. <stop
  2725. offset="0.3984"
  2726. style="stop-color:#FDFEFF"
  2727. id="stop29-7" />
  2728. <stop
  2729. offset="0.6131"
  2730. style="stop-color:#F5FAFF"
  2731. id="stop31-5" />
  2732. <stop
  2733. offset="0.7841"
  2734. style="stop-color:#E7F3FF"
  2735. id="stop33-9" />
  2736. <stop
  2737. offset="0.9311"
  2738. style="stop-color:#D4EAFF"
  2739. id="stop35-22" />
  2740. <stop
  2741. offset="1"
  2742. style="stop-color:#C8E4FF"
  2743. id="stop37-8" />
  2744. </radialGradient>
  2745. <radialGradient
  2746. gradientUnits="userSpaceOnUse"
  2747. r="26.769501"
  2748. cy="286.66409"
  2749. cx="324.69339"
  2750. id="SVGID_5_-97">
  2751. <stop
  2752. id="stop50-3"
  2753. style="stop-color:#FFFFFF"
  2754. offset="0" />
  2755. <stop
  2756. id="stop52-6"
  2757. style="stop-color:#FDFEFF"
  2758. offset="0.3984" />
  2759. <stop
  2760. id="stop54-1"
  2761. style="stop-color:#F5FAFF"
  2762. offset="0.6131" />
  2763. <stop
  2764. id="stop56-2"
  2765. style="stop-color:#E7F3FF"
  2766. offset="0.7841" />
  2767. <stop
  2768. id="stop58-9"
  2769. style="stop-color:#D4EAFF"
  2770. offset="0.9311" />
  2771. <stop
  2772. id="stop60-3"
  2773. style="stop-color:#C8E4FF"
  2774. offset="1" />
  2775. </radialGradient>
  2776. <radialGradient
  2777. gradientUnits="userSpaceOnUse"
  2778. r="46.444901"
  2779. cy="392.77249"
  2780. cx="325"
  2781. id="SVGID_6_-1">
  2782. <stop
  2783. id="stop73-94"
  2784. style="stop-color:#FFFFFF"
  2785. offset="0" />
  2786. <stop
  2787. id="stop75-7"
  2788. style="stop-color:#FDFEFF"
  2789. offset="0.3984" />
  2790. <stop
  2791. id="stop77-8"
  2792. style="stop-color:#F5FAFF"
  2793. offset="0.6131" />
  2794. <stop
  2795. id="stop79-45"
  2796. style="stop-color:#E7F3FF"
  2797. offset="0.7841" />
  2798. <stop
  2799. id="stop81-0"
  2800. style="stop-color:#D4EAFF"
  2801. offset="0.9311" />
  2802. <stop
  2803. id="stop83-3"
  2804. style="stop-color:#C8E4FF"
  2805. offset="1" />
  2806. </radialGradient>
  2807. <clipPath
  2808. id="clipPath-349538100-6">
  2809. <g
  2810. id="g17-1"
  2811. transform="translate(0,-1004.4)">
  2812. <path
  2813. style="fill:#1890d0"
  2814. inkscape:connector-curvature="0"
  2815. id="path19-0"
  2816. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2817. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  2818. </g>
  2819. </clipPath>
  2820. <clipPath
  2821. id="clipPath3914-63">
  2822. <g
  2823. id="g3912-2"
  2824. transform="translate(0,-1004.4)">
  2825. <path
  2826. style="fill:#1890d0"
  2827. inkscape:connector-curvature="0"
  2828. id="path3910-06"
  2829. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2830. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  2831. </g>
  2832. </clipPath>
  2833. <clipPath
  2834. id="clipPath3920-1">
  2835. <g
  2836. id="g3918-5"
  2837. transform="translate(0,-1004.4)">
  2838. <path
  2839. style="fill:#1890d0"
  2840. inkscape:connector-curvature="0"
  2841. id="path3916-5"
  2842. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  2843. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  2844. </g>
  2845. </clipPath>
  2846. <filter
  2847. y="0%"
  2848. x="0%"
  2849. height="100%"
  2850. width="100%"
  2851. id="alpha-7">
  2852. <feColorMatrix
  2853. id="feColorMatrix929-6"
  2854. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  2855. in="SourceGraphic" />
  2856. </filter>
  2857. <mask
  2858. id="mask0-56">
  2859. <g
  2860. style="filter:url(#alpha-7)"
  2861. id="g934-9"
  2862. filter="url(#alpha)">
  2863. <rect
  2864. id="rect932-3"
  2865. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2866. height="384"
  2867. width="384" />
  2868. </g>
  2869. </mask>
  2870. <clipPath
  2871. id="clip1-74">
  2872. <rect
  2873. id="rect937-52"
  2874. height="384"
  2875. width="384" />
  2876. </clipPath>
  2877. <g
  2878. clip-path="url(#clip1-74)"
  2879. id="surface5-54">
  2880. <path
  2881. id="path940-74"
  2882. style="fill:rgb(100%,100%,100%)"
  2883. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z" />
  2884. </g>
  2885. <mask
  2886. id="mask1-4">
  2887. <g
  2888. style="filter:url(#alpha-7)"
  2889. id="g945-30"
  2890. filter="url(#alpha)">
  2891. <rect
  2892. id="rect943-7"
  2893. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2894. height="384"
  2895. width="384" />
  2896. </g>
  2897. </mask>
  2898. <clipPath
  2899. id="clip2-8">
  2900. <rect
  2901. id="rect948-6"
  2902. height="384"
  2903. width="384" />
  2904. </clipPath>
  2905. <g
  2906. clip-path="url(#clip2-8)"
  2907. id="surface8-8">
  2908. <path
  2909. id="path951-8"
  2910. style="fill:rgb(0%,0%,0%)"
  2911. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z" />
  2912. </g>
  2913. <filter
  2914. style="color-interpolation-filters:sRGB"
  2915. id="c-2"
  2916. height="1.1655999"
  2917. width="1.1655999"
  2918. x="-0.082800001"
  2919. y="-0.082800001">
  2920. <feGaussianBlur
  2921. stdDeviation="2.1101835"
  2922. id="feGaussianBlur10-6" />
  2923. </filter>
  2924. <filter
  2925. style="color-interpolation-filters:sRGB"
  2926. id="a-6"
  2927. height="1.031026"
  2928. width="1.031376"
  2929. x="-0.015688"
  2930. y="-0.015513">
  2931. <feGaussianBlur
  2932. stdDeviation=".7986332"
  2933. id="feGaussianBlur2-4" />
  2934. </filter>
  2935. <clipPath
  2936. id="clip1-8-9">
  2937. <path
  2938. d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
  2939. id="path952-5" />
  2940. </clipPath>
  2941. <clipPath
  2942. id="clip2-3-0">
  2943. <path
  2944. d="M 515.4375 185.300781 C 515.4375 356.074219 370.535156 494.394531 192 494.394531 C 13.460938 494.394531 -131.4375 356.074219 -131.4375 185.300781 C -131.4375 14.523438 13.460938 -123.796875 192 -123.796875 C 370.535156 -123.796875 515.4375 14.523438 515.4375 185.300781 Z M 515.4375 185.300781"
  2945. id="path955-4" />
  2946. </clipPath>
  2947. <radialGradient
  2948. r="20"
  2949. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  2950. cx="15.026"
  2951. cy="8.6258001"
  2952. gradientUnits="userSpaceOnUse"
  2953. fy="8.5088997"
  2954. fx="4.4590001"
  2955. id="radialGradient3029-4-8">
  2956. <stop
  2957. style="stop-color:#1429d2;stop-opacity:1"
  2958. offset="0"
  2959. stop-color="#c24251"
  2960. id="stop4170-8-7" />
  2961. <stop
  2962. style="stop-color:#63c7e5;stop-opacity:1"
  2963. offset="1"
  2964. stop-color="#a63643"
  2965. id="stop4176-3-1" />
  2966. </radialGradient>
  2967. <radialGradient
  2968. r="20.396999"
  2969. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  2970. cx="23.896"
  2971. cy="3.99"
  2972. gradientUnits="userSpaceOnUse"
  2973. id="radialGradient3032-3-7">
  2974. <stop
  2975. offset="0"
  2976. stop-color="#fff"
  2977. id="stop3244-9-33-7-0-9-4-2" />
  2978. <stop
  2979. offset=".26238"
  2980. stop-color="#ddd"
  2981. id="stop3246-3-5-0-8-5-0-7" />
  2982. <stop
  2983. offset=".66094"
  2984. stop-color="#abacae"
  2985. id="stop3248-1-7-8-8-1-8-2" />
  2986. <stop
  2987. offset="1"
  2988. stop-color="#89898b"
  2989. id="stop3250-9-3-0-5-1-4-2" />
  2990. </radialGradient>
  2991. <radialGradient
  2992. r="62.769001"
  2993. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  2994. cx="99.156998"
  2995. cy="186.17"
  2996. gradientUnits="userSpaceOnUse"
  2997. id="radialGradient3035-3-6">
  2998. <stop
  2999. offset="0"
  3000. stop-color="#3d3d3d"
  3001. id="stop3822-2-6-3-0-1" />
  3002. <stop
  3003. offset=".5"
  3004. stop-opacity=".49804"
  3005. stop-color="#686868"
  3006. id="stop3864-8-7-7-2-0" />
  3007. <stop
  3008. offset="1"
  3009. stop-opacity="0"
  3010. stop-color="#686868"
  3011. id="stop3824-1-2-5-4-6" />
  3012. </radialGradient>
  3013. <radialGradient
  3014. gradientUnits="userSpaceOnUse"
  3015. r="127.0051"
  3016. cy="186.51421"
  3017. cx="224.50391"
  3018. id="SVGID_4_-1-1">
  3019. <stop
  3020. id="stop27-7-5"
  3021. style="stop-color:#FFFFFF"
  3022. offset="0" />
  3023. <stop
  3024. id="stop29-6-9"
  3025. style="stop-color:#FDFEFF"
  3026. offset="0.3984" />
  3027. <stop
  3028. id="stop31-2-4"
  3029. style="stop-color:#F5FAFF"
  3030. offset="0.6131" />
  3031. <stop
  3032. id="stop33-6-9"
  3033. style="stop-color:#E7F3FF"
  3034. offset="0.7841" />
  3035. <stop
  3036. id="stop35-2-0"
  3037. style="stop-color:#D4EAFF"
  3038. offset="0.9311" />
  3039. <stop
  3040. id="stop37-5-9"
  3041. style="stop-color:#C8E4FF"
  3042. offset="1" />
  3043. </radialGradient>
  3044. <radialGradient
  3045. id="SVGID_5_-9-1"
  3046. cx="324.69339"
  3047. cy="286.66409"
  3048. r="26.769501"
  3049. gradientUnits="userSpaceOnUse">
  3050. <stop
  3051. offset="0"
  3052. style="stop-color:#FFFFFF"
  3053. id="stop50-2-7" />
  3054. <stop
  3055. offset="0.3984"
  3056. style="stop-color:#FDFEFF"
  3057. id="stop52-0-7" />
  3058. <stop
  3059. offset="0.6131"
  3060. style="stop-color:#F5FAFF"
  3061. id="stop54-5-1" />
  3062. <stop
  3063. offset="0.7841"
  3064. style="stop-color:#E7F3FF"
  3065. id="stop56-9-1" />
  3066. <stop
  3067. offset="0.9311"
  3068. style="stop-color:#D4EAFF"
  3069. id="stop58-7-5" />
  3070. <stop
  3071. offset="1"
  3072. style="stop-color:#C8E4FF"
  3073. id="stop60-2-9" />
  3074. </radialGradient>
  3075. <radialGradient
  3076. id="SVGID_6_-7-77"
  3077. cx="325"
  3078. cy="392.77249"
  3079. r="46.444901"
  3080. gradientUnits="userSpaceOnUse">
  3081. <stop
  3082. offset="0"
  3083. style="stop-color:#FFFFFF"
  3084. id="stop73-5-6" />
  3085. <stop
  3086. offset="0.3984"
  3087. style="stop-color:#FDFEFF"
  3088. id="stop75-3-7" />
  3089. <stop
  3090. offset="0.6131"
  3091. style="stop-color:#F5FAFF"
  3092. id="stop77-2-3" />
  3093. <stop
  3094. offset="0.7841"
  3095. style="stop-color:#E7F3FF"
  3096. id="stop79-0-6" />
  3097. <stop
  3098. offset="0.9311"
  3099. style="stop-color:#D4EAFF"
  3100. id="stop81-7-5" />
  3101. <stop
  3102. offset="1"
  3103. style="stop-color:#C8E4FF"
  3104. id="stop83-2-6" />
  3105. </radialGradient>
  3106. <clipPath
  3107. id="clipPath-349538100-0-3">
  3108. <g
  3109. transform="translate(0,-1004.4)"
  3110. id="g17-3-9">
  3111. <path
  3112. transform="matrix(15.333,0,0,11.5,415,878.86)"
  3113. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  3114. id="path19-8-4"
  3115. inkscape:connector-curvature="0"
  3116. style="fill:#1890d0" />
  3117. </g>
  3118. </clipPath>
  3119. <clipPath
  3120. id="clipPath3914-3-8">
  3121. <g
  3122. transform="translate(0,-1004.4)"
  3123. id="g3912-6-1">
  3124. <path
  3125. transform="matrix(15.333,0,0,11.5,415,878.86)"
  3126. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  3127. id="path3910-2-2"
  3128. inkscape:connector-curvature="0"
  3129. style="fill:#1890d0" />
  3130. </g>
  3131. </clipPath>
  3132. <clipPath
  3133. id="clipPath3920-2-9">
  3134. <g
  3135. transform="translate(0,-1004.4)"
  3136. id="g3918-2-39">
  3137. <path
  3138. transform="matrix(15.333,0,0,11.5,415,878.86)"
  3139. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  3140. id="path3916-9-0"
  3141. inkscape:connector-curvature="0"
  3142. style="fill:#1890d0" />
  3143. </g>
  3144. </clipPath>
  3145. <filter
  3146. id="alpha-3-8"
  3147. width="100%"
  3148. height="100%"
  3149. x="0%"
  3150. y="0%">
  3151. <feColorMatrix
  3152. in="SourceGraphic"
  3153. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  3154. id="feColorMatrix929-8-85" />
  3155. </filter>
  3156. <mask
  3157. id="mask0-2-0">
  3158. <g
  3159. filter="url(#alpha)"
  3160. id="g934-8-9"
  3161. style="filter:url(#alpha-3-8)">
  3162. <rect
  3163. width="384"
  3164. height="384"
  3165. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  3166. id="rect932-5-6" />
  3167. </g>
  3168. </mask>
  3169. <clipPath
  3170. id="clip1-4-38">
  3171. <rect
  3172. width="384"
  3173. height="384"
  3174. id="rect937-5-5" />
  3175. </clipPath>
  3176. <g
  3177. id="surface5-6-6"
  3178. clip-path="url(#clip1-4-38)">
  3179. <path
  3180. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z"
  3181. style="fill:rgb(100%,100%,100%)"
  3182. id="path940-7-1" />
  3183. </g>
  3184. <mask
  3185. id="mask1-7-1">
  3186. <g
  3187. filter="url(#alpha)"
  3188. id="g945-3-59"
  3189. style="filter:url(#alpha-3-8)">
  3190. <rect
  3191. width="384"
  3192. height="384"
  3193. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  3194. id="rect943-6-8" />
  3195. </g>
  3196. </mask>
  3197. <clipPath
  3198. id="clip2-4-4">
  3199. <rect
  3200. width="384"
  3201. height="384"
  3202. id="rect948-5-8" />
  3203. </clipPath>
  3204. <g
  3205. id="surface8-5-1"
  3206. clip-path="url(#clip2-4-4)">
  3207. <path
  3208. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z"
  3209. style="fill:rgb(0%,0%,0%)"
  3210. id="path951-0-0" />
  3211. </g>
  3212. <filter
  3213. y="-0.082800001"
  3214. x="-0.082800001"
  3215. width="1.1655999"
  3216. height="1.1655999"
  3217. id="c-3-3"
  3218. style="color-interpolation-filters:sRGB">
  3219. <feGaussianBlur
  3220. id="feGaussianBlur10-1-0"
  3221. stdDeviation="2.1101835" />
  3222. </filter>
  3223. <filter
  3224. y="-0.015513"
  3225. x="-0.015688"
  3226. width="1.031376"
  3227. height="1.031026"
  3228. id="a-2-4"
  3229. style="color-interpolation-filters:sRGB">
  3230. <feGaussianBlur
  3231. id="feGaussianBlur2-9-4"
  3232. stdDeviation=".7986332" />
  3233. </filter>
  3234. <linearGradient
  3235. inkscape:collect="always"
  3236. id="linearGradient5329">
  3237. <stop
  3238. style="stop-color:#ffffff;stop-opacity:1"
  3239. offset="0"
  3240. id="stop5331" />
  3241. <stop
  3242. id="stop5355"
  3243. offset="0.13749628"
  3244. style="stop-color:#bfbfbf;stop-opacity:1" />
  3245. <stop
  3246. id="stop5353"
  3247. offset="0.15300073"
  3248. style="stop-color:#bfbfbf;stop-opacity:1" />
  3249. <stop
  3250. style="stop-color:#ffffff;stop-opacity:1"
  3251. offset="0.29217461"
  3252. id="stop5371" />
  3253. <stop
  3254. id="stop5351"
  3255. offset="0.31208521"
  3256. style="stop-color:#ffffff;stop-opacity:1" />
  3257. <stop
  3258. id="stop5349"
  3259. offset="0.41062522"
  3260. style="stop-color:#bfbfbf;stop-opacity:1" />
  3261. <stop
  3262. id="stop5347"
  3263. offset="0.42411265"
  3264. style="stop-color:#bfbfbf;stop-opacity:1" />
  3265. <stop
  3266. id="stop5345"
  3267. offset="0.61795777"
  3268. style="stop-color:#ffffff;stop-opacity:1" />
  3269. <stop
  3270. id="stop5343"
  3271. offset="0.64955771"
  3272. style="stop-color:#ffffff;stop-opacity:1" />
  3273. <stop
  3274. id="stop5341"
  3275. offset="0.79317099"
  3276. style="stop-color:#bfbfbf;stop-opacity:1" />
  3277. <stop
  3278. style="stop-color:#bfbfbf;stop-opacity:1"
  3279. offset="0.80776542"
  3280. id="stop5357" />
  3281. <stop
  3282. id="stop5339"
  3283. offset="0.86538237"
  3284. style="stop-color:#ffffff;stop-opacity:1" />
  3285. <stop
  3286. id="stop5337"
  3287. offset="0.87480235"
  3288. style="stop-color:#ffffff;stop-opacity:1" />
  3289. <stop
  3290. style="stop-color:#bfbfbf;stop-opacity:1"
  3291. offset="0.96387392"
  3292. id="stop5373" />
  3293. <stop
  3294. style="stop-color:#000000;stop-opacity:1"
  3295. offset="1"
  3296. id="stop5333" />
  3297. </linearGradient>
  3298. <linearGradient
  3299. inkscape:collect="always"
  3300. xlink:href="#linearGradient5329"
  3301. id="linearGradient5335"
  3302. x1="24.579426"
  3303. y1="1032.7341"
  3304. x2="24.525305"
  3305. y2="1015.5868"
  3306. gradientUnits="userSpaceOnUse"
  3307. gradientTransform="matrix(1.047359,0,0,1.047359,-1.2059832,-48.268841)" />
  3308. <filter
  3309. style="color-interpolation-filters:sRGB;"
  3310. inkscape:label="Drop Shadow"
  3311. id="filter4441">
  3312. <feFlood
  3313. flood-opacity="0.498039"
  3314. flood-color="rgb(0,0,0)"
  3315. result="flood"
  3316. id="feFlood4443" />
  3317. <feComposite
  3318. in="flood"
  3319. in2="SourceGraphic"
  3320. operator="in"
  3321. result="composite1"
  3322. id="feComposite4445" />
  3323. <feGaussianBlur
  3324. in="composite1"
  3325. stdDeviation="1"
  3326. result="blur"
  3327. id="feGaussianBlur4447" />
  3328. <feOffset
  3329. dx="1.38778e-16"
  3330. dy="1"
  3331. result="offset"
  3332. id="feOffset4449" />
  3333. <feComposite
  3334. in="SourceGraphic"
  3335. in2="offset"
  3336. operator="over"
  3337. result="composite2"
  3338. id="feComposite4451" />
  3339. </filter>
  3340. </defs>
  3341. <sodipodi:namedview
  3342. id="base"
  3343. pagecolor="#ffffff"
  3344. bordercolor="#666666"
  3345. borderopacity="1.0"
  3346. inkscape:pageopacity="0.0"
  3347. inkscape:pageshadow="2"
  3348. inkscape:zoom="5.6568543"
  3349. inkscape:cx="25.803571"
  3350. inkscape:cy="20"
  3351. inkscape:document-units="px"
  3352. inkscape:current-layer="layer1"
  3353. showgrid="true"
  3354. units="px"
  3355. inkscape:window-width="1920"
  3356. inkscape:window-height="1040"
  3357. inkscape:window-x="0"
  3358. inkscape:window-y="0"
  3359. inkscape:window-maximized="1">
  3360. <inkscape:grid
  3361. type="xygrid"
  3362. id="grid4780"
  3363. spacingx="0.1"
  3364. spacingy="0.1" />
  3365. </sodipodi:namedview>
  3366. <metadata
  3367. id="metadata4237">
  3368. <rdf:RDF>
  3369. <cc:Work
  3370. rdf:about="">
  3371. <dc:format>image/svg+xml</dc:format>
  3372. <dc:type
  3373. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  3374. <dc:title></dc:title>
  3375. </cc:Work>
  3376. </rdf:RDF>
  3377. </metadata>
  3378. <g
  3379. inkscape:label="Capa 1"
  3380. inkscape:groupmode="layer"
  3381. id="layer1"
  3382. transform="translate(0,-1004.3622)">
  3383. <path
  3384. id="path4322"
  3385. d="m 3.5830609,1008.3443 39.9999651,0 c 0.83101,0 1.500018,0.669 1.500018,1.5 l 0,20.0893 0,19.9107 c 0,0.831 -0.669008,1.5 -1.500018,1.5 l -39.9999651,0 c -0.8310097,0 -1.5000174,-0.669 -1.5000174,-1.5 l 0,-19.9554 0,-20.0446 c 0,-0.831 0.6690077,-1.5 1.5000174,-1.5 z"
  3386. style="opacity:1;fill:#749980;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
  3387. inkscape:connector-curvature="0"
  3388. sodipodi:nodetypes="ssscsssscss" />
  3389. <path
  3390. sodipodi:nodetypes="sssccccsscss"
  3391. inkscape:connector-curvature="0"
  3392. style="opacity:1;fill:#9bccaa;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
  3393. d="M 3.4433132,1008.3443 H 43.443278 c 0.83101,0 1.500018,0.669 1.500018,1.5 v 20.0893 6.5818 L 29.91229,1051.3443 H 23.443295 3.4433131 c -0.8310097,0 -1.5000174,-0.669 -1.5000174,-1.5 v -19.9554 -20.0446 c 0,-0.831 0.6690077,-1.5 1.5000175,-1.5 z"
  3394. id="path4377" />
  3395. <path
  3396. inkscape:connector-curvature="0"
  3397. id="path4224-7-7"
  3398. d="m 10.448023,1023.3819 5.1397,14.3536 2.515944,-0.3707 -5.192416,-14.3459 z m -1.8412315,0.2802 -2.1050109,15.2042 1.6768019,-0.247 2.0643345,-15.1981 z m 17.6387915,-2.5991 -2.106518,15.2044 1.676792,-0.2469 2.064343,-15.1982 z m 7.266119,2.7421 c -1.414588,0.2087 -2.404709,0.806 -2.971214,1.7939 -0.560556,0.9805 -0.704,2.3989 -0.430641,4.2534 0.269459,1.8286 0.787981,3.1223 1.555402,3.8806 0.77433,0.7574 1.847995,1.0346 3.221173,0.8322 0.821152,-0.1211 1.513866,-0.3955 2.078514,-0.8219 0.563673,-0.4329 0.972192,-1.0113 1.225102,-1.7352 h 0.02092 l 0.248625,1.6874 c 0.299933,2.0354 -0.478138,3.1891 -2.334363,3.4626 -0.690032,0.1016 -1.268561,0.051 -1.735419,-0.1509 -0.459012,-0.1962 -0.786486,-0.5264 -0.982112,-0.9928 l -1.837092,0.5278 c 0.328893,0.7965 0.889113,1.3637 1.679355,1.7028 0.791193,0.3455 1.796941,0.4295 3.018326,0.2493 3.125895,-0.4605 4.471256,-2.1645 4.03709,-5.111 l -1.181222,-8.0165 c -0.161903,-1.0985 -0.246623,-1.8252 -0.256642,-2.1803 l -1.770211,0.2608 c -0.02092,0.049 -0.01,0.3149 0.03278,0.7972 0.04276,0.4823 0.07801,0.8218 0.10656,1.0155 h -0.01952 c -0.409782,-0.58 -0.932752,-0.9954 -1.568792,-1.245 -0.630095,-0.2573 -1.343128,-0.327 -2.136688,-0.2098 z m 0.647839,1.2314 c 0.572747,-0.084 1.107932,0.01 1.605008,0.2682 0.503014,0.2561 0.923224,0.6756 1.263028,1.2593 0.338872,0.5772 0.572283,1.2931 0.697963,2.146 0.122825,0.8335 0.103612,1.5715 -0.05516,2.2154 -0.159871,0.6376 -0.442533,1.1513 -0.850356,1.5415 -0.407822,0.3902 -0.90579,0.6291 -1.492334,0.7155 -0.986743,0.145 -1.730126,-0.065 -2.229617,-0.6319 -0.49949,-0.5668 -0.854317,-1.5671 -1.06569,-3.0016 -0.213264,-1.4474 -0.149989,-2.5271 0.189494,-3.2372 0.339523,-0.7103 0.985556,-1.135 1.937821,-1.2753 z m -14.926004,8.7351 0.435551,2.9559 2.992024,-0.4409 -0.435545,-2.9559 z"
  3399. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75398415px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
  3400. </g>
  3401. </svg>