kindd.svg 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <svg
  3. xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
  4. xmlns:dc="http://purl.org/dc/elements/1.1/"
  5. xmlns:cc="http://creativecommons.org/ns#"
  6. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  7. xmlns:svg="http://www.w3.org/2000/svg"
  8. xmlns="http://www.w3.org/2000/svg"
  9. xmlns:xlink="http://www.w3.org/1999/xlink"
  10. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  11. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  12. height="48"
  13. width="48"
  14. version="1.1"
  15. id="svg10"
  16. sodipodi:docname="kindd.svg"
  17. inkscape:version="0.92.4 5da689c313, 2019-01-14">
  18. <metadata
  19. id="metadata16">
  20. <rdf:RDF>
  21. <cc:Work
  22. rdf:about="">
  23. <dc:format>image/svg+xml</dc:format>
  24. <dc:type
  25. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  26. <dc:title></dc:title>
  27. </cc:Work>
  28. </rdf:RDF>
  29. </metadata>
  30. <defs
  31. id="defs14">
  32. <filter
  33. filterUnits="objectBoundingBox"
  34. color-interpolation-filters="sRGB"
  35. y="-200%"
  36. x="-200%"
  37. height="400%"
  38. width="400%"
  39. id="xPHBR2KRsqNJJmxgfSMnWsjFL63MuKr0">
  40. <feGaussianBlur
  41. id="feGaussianBlur823"
  42. stdDeviation="4.294"
  43. in="SourceGraphic" />
  44. <feOffset
  45. id="feOffset825"
  46. result="pf_100_offsetBlur"
  47. dy="4"
  48. dx="0" />
  49. <feFlood
  50. id="feFlood827"
  51. flood-opacity=".4" />
  52. <feComposite
  53. id="feComposite829"
  54. result="pf_100_dropShadow"
  55. operator="in"
  56. in2="pf_100_offsetBlur" />
  57. <feBlend
  58. id="feBlend831"
  59. mode="normal"
  60. in2="pf_100_dropShadow"
  61. in="SourceGraphic" />
  62. </filter>
  63. <filter
  64. filterUnits="objectBoundingBox"
  65. color-interpolation-filters="sRGB"
  66. y="-200%"
  67. x="-200%"
  68. height="400%"
  69. width="400%"
  70. id="2JmMAOqgjSUXbdZfecnmpMzAW6swRgvN">
  71. <feGaussianBlur
  72. id="feGaussianBlur858"
  73. stdDeviation="4.294" />
  74. </filter>
  75. <linearGradient
  76. id="linearGradient991"
  77. inkscape:collect="always">
  78. <stop
  79. id="stop987"
  80. offset="0"
  81. style="stop-color:#52c1fa;stop-opacity:1" />
  82. <stop
  83. id="stop989"
  84. offset="1"
  85. style="stop-color:#1496ff;stop-opacity:1" />
  86. </linearGradient>
  87. <linearGradient
  88. inkscape:collect="always"
  89. id="linearGradient3361">
  90. <stop
  91. style="stop-color:#0068e0;stop-opacity:1;"
  92. offset="0"
  93. id="stop3363" />
  94. <stop
  95. style="stop-color:#00acf4;stop-opacity:1"
  96. offset="1"
  97. id="stop3365" />
  98. </linearGradient>
  99. <linearGradient
  100. id="linearGradient3026"
  101. y2="40.495998"
  102. gradientUnits="userSpaceOnUse"
  103. x2="71.204002"
  104. gradientTransform="matrix(1.5564685,0,0,1.58743,-88.730662,-20.236087)"
  105. y1="15.369"
  106. x1="71.204002"
  107. xlink:href="#linearGradient3361">
  108. <stop
  109. id="stop4808-4"
  110. stop-color="#fff"
  111. offset="0" />
  112. <stop
  113. id="stop4810-0"
  114. stop-color="#fff"
  115. stop-opacity=".23529"
  116. offset=".42448" />
  117. <stop
  118. id="stop4812-8"
  119. stop-color="#fff"
  120. stop-opacity=".15686"
  121. offset=".82090" />
  122. <stop
  123. id="stop4814-0"
  124. stop-color="#fff"
  125. stop-opacity=".39216"
  126. offset="1" />
  127. </linearGradient>
  128. <radialGradient
  129. id="radialGradient3029"
  130. fx="4.4590001"
  131. fy="8.5088997"
  132. gradientUnits="userSpaceOnUse"
  133. cy="8.6258001"
  134. cx="15.026"
  135. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  136. r="20">
  137. <stop
  138. id="stop4170"
  139. stop-color="#c24251"
  140. offset="0" />
  141. <stop
  142. id="stop4172"
  143. stop-color="#c24251"
  144. offset=".26238" />
  145. <stop
  146. id="stop4174"
  147. stop-color="#a63643"
  148. offset=".66094" />
  149. <stop
  150. id="stop4176"
  151. stop-color="#a63643"
  152. offset="1" />
  153. </radialGradient>
  154. <radialGradient
  155. id="radialGradient3032"
  156. gradientUnits="userSpaceOnUse"
  157. cy="3.99"
  158. cx="23.896"
  159. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  160. r="20.396999">
  161. <stop
  162. id="stop3244-9-33-7-0-9"
  163. stop-color="#fff"
  164. offset="0" />
  165. <stop
  166. id="stop3246-3-5-0-8-5"
  167. stop-color="#ddd"
  168. offset=".26238" />
  169. <stop
  170. id="stop3248-1-7-8-8-1"
  171. stop-color="#abacae"
  172. offset=".66094" />
  173. <stop
  174. id="stop3250-9-3-0-5-1"
  175. stop-color="#89898b"
  176. offset="1" />
  177. </radialGradient>
  178. <radialGradient
  179. id="radialGradient3035"
  180. gradientUnits="userSpaceOnUse"
  181. cy="186.17"
  182. cx="99.156998"
  183. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  184. r="62.769001">
  185. <stop
  186. id="stop3822-2-6-3"
  187. stop-color="#3d3d3d"
  188. offset="0" />
  189. <stop
  190. id="stop3864-8-7-7"
  191. stop-color="#686868"
  192. stop-opacity=".49804"
  193. offset=".5" />
  194. <stop
  195. id="stop3824-1-2-5"
  196. stop-color="#686868"
  197. stop-opacity="0"
  198. offset="1" />
  199. </radialGradient>
  200. <linearGradient
  201. id="linearGradient4433"
  202. y2="25.611"
  203. gradientUnits="userSpaceOnUse"
  204. x2="23.077999"
  205. gradientTransform="matrix(1,0,0,1.0521,0,-0.90547)"
  206. y1="13.035"
  207. x1="22.759001">
  208. <stop
  209. id="stop6305-1-0-2"
  210. stop-color="#fff"
  211. offset="0" />
  212. <stop
  213. id="stop6307-5-0-6"
  214. stop-color="#fff"
  215. stop-opacity="0"
  216. offset="1" />
  217. </linearGradient>
  218. <linearGradient
  219. id="linearGradient4829">
  220. <stop
  221. style="stop-color:#f4fbfc;stop-opacity:1;"
  222. offset="0"
  223. id="stop4831" />
  224. <stop
  225. style="stop-color:#d6d6d6;stop-opacity:1;"
  226. offset="1"
  227. id="stop4833" />
  228. </linearGradient>
  229. <radialGradient
  230. id="SVGID_4_"
  231. cx="224.50391"
  232. cy="186.51421"
  233. r="127.0051"
  234. gradientUnits="userSpaceOnUse">
  235. <stop
  236. offset="0"
  237. style="stop-color:#FFFFFF"
  238. id="stop27" />
  239. <stop
  240. offset="0.3984"
  241. style="stop-color:#FDFEFF"
  242. id="stop29" />
  243. <stop
  244. offset="0.6131"
  245. style="stop-color:#F5FAFF"
  246. id="stop31" />
  247. <stop
  248. offset="0.7841"
  249. style="stop-color:#E7F3FF"
  250. id="stop33" />
  251. <stop
  252. offset="0.9311"
  253. style="stop-color:#D4EAFF"
  254. id="stop35" />
  255. <stop
  256. offset="1"
  257. style="stop-color:#C8E4FF"
  258. id="stop37" />
  259. </radialGradient>
  260. <radialGradient
  261. gradientUnits="userSpaceOnUse"
  262. r="26.769501"
  263. cy="286.66409"
  264. cx="324.69339"
  265. id="SVGID_5_">
  266. <stop
  267. id="stop50"
  268. style="stop-color:#FFFFFF"
  269. offset="0" />
  270. <stop
  271. id="stop52"
  272. style="stop-color:#FDFEFF"
  273. offset="0.3984" />
  274. <stop
  275. id="stop54"
  276. style="stop-color:#F5FAFF"
  277. offset="0.6131" />
  278. <stop
  279. id="stop56"
  280. style="stop-color:#E7F3FF"
  281. offset="0.7841" />
  282. <stop
  283. id="stop58"
  284. style="stop-color:#D4EAFF"
  285. offset="0.9311" />
  286. <stop
  287. id="stop60"
  288. style="stop-color:#C8E4FF"
  289. offset="1" />
  290. </radialGradient>
  291. <radialGradient
  292. gradientUnits="userSpaceOnUse"
  293. r="46.444901"
  294. cy="392.77249"
  295. cx="325"
  296. id="SVGID_6_">
  297. <stop
  298. id="stop73"
  299. style="stop-color:#FFFFFF"
  300. offset="0" />
  301. <stop
  302. id="stop75"
  303. style="stop-color:#FDFEFF"
  304. offset="0.3984" />
  305. <stop
  306. id="stop77"
  307. style="stop-color:#F5FAFF"
  308. offset="0.6131" />
  309. <stop
  310. id="stop79"
  311. style="stop-color:#E7F3FF"
  312. offset="0.7841" />
  313. <stop
  314. id="stop81"
  315. style="stop-color:#D4EAFF"
  316. offset="0.9311" />
  317. <stop
  318. id="stop83"
  319. style="stop-color:#C8E4FF"
  320. offset="1" />
  321. </radialGradient>
  322. <clipPath
  323. id="clipPath-349538100">
  324. <g
  325. id="g17"
  326. transform="translate(0,-1004.4)">
  327. <path
  328. style="fill:#1890d0"
  329. inkscape:connector-curvature="0"
  330. id="path19"
  331. 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"
  332. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  333. </g>
  334. </clipPath>
  335. <clipPath
  336. id="clipPath3914">
  337. <g
  338. id="g3912"
  339. transform="translate(0,-1004.4)">
  340. <path
  341. style="fill:#1890d0"
  342. inkscape:connector-curvature="0"
  343. id="path3910"
  344. 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"
  345. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  346. </g>
  347. </clipPath>
  348. <clipPath
  349. id="clipPath3920">
  350. <g
  351. id="g3918"
  352. transform="translate(0,-1004.4)">
  353. <path
  354. style="fill:#1890d0"
  355. inkscape:connector-curvature="0"
  356. id="path3916"
  357. 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"
  358. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  359. </g>
  360. </clipPath>
  361. <linearGradient
  362. id="linearGradient6987"
  363. osb:paint="solid">
  364. <stop
  365. style="stop-color:#77d2fb;stop-opacity:1;"
  366. offset="0"
  367. id="stop6985" />
  368. </linearGradient>
  369. <filter
  370. y="0%"
  371. x="0%"
  372. height="100%"
  373. width="100%"
  374. id="alpha">
  375. <feColorMatrix
  376. id="feColorMatrix929"
  377. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  378. in="SourceGraphic" />
  379. </filter>
  380. <mask
  381. id="mask0">
  382. <g
  383. id="g934"
  384. filter="url(#alpha)">
  385. <rect
  386. id="rect932"
  387. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  388. height="384"
  389. width="384" />
  390. </g>
  391. </mask>
  392. <clipPath
  393. id="clip1">
  394. <rect
  395. id="rect937"
  396. height="384"
  397. width="384" />
  398. </clipPath>
  399. <g
  400. clip-path="url(#clip1)"
  401. id="surface5">
  402. <path
  403. id="path940"
  404. style="fill:rgb(100%,100%,100%)"
  405. 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" />
  406. </g>
  407. <mask
  408. id="mask1">
  409. <g
  410. id="g945"
  411. filter="url(#alpha)">
  412. <rect
  413. id="rect943"
  414. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  415. height="384"
  416. width="384" />
  417. </g>
  418. </mask>
  419. <clipPath
  420. id="clip2">
  421. <rect
  422. id="rect948"
  423. height="384"
  424. width="384" />
  425. </clipPath>
  426. <g
  427. clip-path="url(#clip2)"
  428. id="surface8">
  429. <path
  430. id="path951"
  431. style="fill:rgb(0%,0%,0%)"
  432. 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" />
  433. </g>
  434. <linearGradient
  435. gradientUnits="userSpaceOnUse"
  436. y2="249.017"
  437. y1="515.328"
  438. x2="249.882"
  439. x1="-248.932"
  440. id="linearGradient1117">
  441. <stop
  442. id="stop954"
  443. offset="0"
  444. style="stop-color:#aa75e6;stop-opacity:1" />
  445. <stop
  446. id="stop956"
  447. offset="1"
  448. style="stop-color:#8935f0;stop-opacity:1" />
  449. </linearGradient>
  450. <linearGradient
  451. id="linearGradient-1"
  452. y2="116.54461"
  453. x2="186.14996"
  454. y1="116.54461"
  455. x1="0"
  456. gradientTransform="scale(0.69850138,1.4316364)"
  457. gradientUnits="userSpaceOnUse">
  458. <stop
  459. id="stop4511"
  460. offset="0%"
  461. stop-color="#FFFFFF" />
  462. <stop
  463. id="stop4513"
  464. offset="14.13%"
  465. stop-opacity="0.9576"
  466. stop-color="#FFFFFF" />
  467. <stop
  468. id="stop4515"
  469. offset="100%"
  470. stop-opacity="0.7"
  471. stop-color="#FFFFFF" />
  472. </linearGradient>
  473. <linearGradient
  474. id="linearGradient-2"
  475. y2="112.26521"
  476. x2="373.38791"
  477. y1="112.26521"
  478. x1="187.35059"
  479. gradientTransform="scale(0.68561406,1.4585465)"
  480. gradientUnits="userSpaceOnUse">
  481. <stop
  482. id="stop4518"
  483. offset="0%"
  484. stop-color="#F1F1F2" />
  485. <stop
  486. id="stop4520"
  487. offset="9.191442%"
  488. stop-color="#E4E5E6" />
  489. <stop
  490. id="stop4522"
  491. offset="23.57%"
  492. stop-color="#D9DADB" />
  493. <stop
  494. id="stop4524"
  495. offset="43.8%"
  496. stop-color="#D2D4D5" />
  497. <stop
  498. id="stop4526"
  499. offset="100%"
  500. stop-color="#D0D2D3" />
  501. </linearGradient>
  502. <linearGradient
  503. gradientTransform="translate(-49.413969,39.769372)"
  504. inkscape:collect="always"
  505. xlink:href="#linearGradient944"
  506. id="linearGradient948"
  507. gradientUnits="userSpaceOnUse"
  508. x1="122.34071"
  509. y1="117.04197"
  510. x2="84.091423"
  511. y2="71.020111" />
  512. <linearGradient
  513. inkscape:collect="always"
  514. id="linearGradient944">
  515. <stop
  516. style="stop-color:#d5dada;stop-opacity:1"
  517. offset="0"
  518. id="stop940" />
  519. <stop
  520. style="stop-color:#f1f1f1;stop-opacity:1"
  521. offset="1"
  522. id="stop942" />
  523. </linearGradient>
  524. <filter
  525. style="color-interpolation-filters:sRGB"
  526. id="c"
  527. height="1.1655999"
  528. width="1.1655999"
  529. x="-0.082800001"
  530. y="-0.082800001">
  531. <feGaussianBlur
  532. stdDeviation="2.1101835"
  533. id="feGaussianBlur10" />
  534. </filter>
  535. <filter
  536. style="color-interpolation-filters:sRGB"
  537. id="a"
  538. height="1.031026"
  539. width="1.031376"
  540. x="-0.015688"
  541. y="-0.015513">
  542. <feGaussianBlur
  543. stdDeviation=".7986332"
  544. id="feGaussianBlur2" />
  545. </filter>
  546. <clipPath
  547. id="clip1-8">
  548. <path
  549. d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
  550. id="path952" />
  551. </clipPath>
  552. <clipPath
  553. id="clip2-3">
  554. <path
  555. 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"
  556. id="path955" />
  557. </clipPath>
  558. <linearGradient
  559. gradientUnits="userSpaceOnUse"
  560. y2="285.73337"
  561. x2="-21.756306"
  562. y1="267.25842"
  563. x1="-33.315849"
  564. id="linearGradient993"
  565. xlink:href="#linearGradient991"
  566. inkscape:collect="always"
  567. gradientTransform="matrix(3.7795276,0,0,3.7795276,373.62818,-931.73983)" />
  568. <radialGradient
  569. r="20"
  570. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  571. cx="15.026"
  572. cy="8.6258001"
  573. gradientUnits="userSpaceOnUse"
  574. fy="8.5088997"
  575. fx="4.4590001"
  576. id="radialGradient3029-4">
  577. <stop
  578. style="stop-color:#1429d2;stop-opacity:1"
  579. offset="0"
  580. stop-color="#c24251"
  581. id="stop4170-8" />
  582. <stop
  583. style="stop-color:#63c7e5;stop-opacity:1"
  584. offset="1"
  585. stop-color="#a63643"
  586. id="stop4176-3" />
  587. </radialGradient>
  588. <radialGradient
  589. r="20.396999"
  590. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  591. cx="23.896"
  592. cy="3.99"
  593. gradientUnits="userSpaceOnUse"
  594. id="radialGradient3032-3">
  595. <stop
  596. offset="0"
  597. stop-color="#fff"
  598. id="stop3244-9-33-7-0-9-4" />
  599. <stop
  600. offset=".26238"
  601. stop-color="#ddd"
  602. id="stop3246-3-5-0-8-5-0" />
  603. <stop
  604. offset=".66094"
  605. stop-color="#abacae"
  606. id="stop3248-1-7-8-8-1-8" />
  607. <stop
  608. offset="1"
  609. stop-color="#89898b"
  610. id="stop3250-9-3-0-5-1-4" />
  611. </radialGradient>
  612. <radialGradient
  613. r="62.769001"
  614. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  615. cx="99.156998"
  616. cy="186.17"
  617. gradientUnits="userSpaceOnUse"
  618. id="radialGradient3035-3">
  619. <stop
  620. offset="0"
  621. stop-color="#3d3d3d"
  622. id="stop3822-2-6-3-0" />
  623. <stop
  624. offset=".5"
  625. stop-opacity=".49804"
  626. stop-color="#686868"
  627. id="stop3864-8-7-7-2" />
  628. <stop
  629. offset="1"
  630. stop-opacity="0"
  631. stop-color="#686868"
  632. id="stop3824-1-2-5-4" />
  633. </radialGradient>
  634. <radialGradient
  635. gradientUnits="userSpaceOnUse"
  636. r="127.0051"
  637. cy="186.51421"
  638. cx="224.50391"
  639. id="SVGID_4_-1">
  640. <stop
  641. id="stop27-7"
  642. style="stop-color:#FFFFFF"
  643. offset="0" />
  644. <stop
  645. id="stop29-6"
  646. style="stop-color:#FDFEFF"
  647. offset="0.3984" />
  648. <stop
  649. id="stop31-2"
  650. style="stop-color:#F5FAFF"
  651. offset="0.6131" />
  652. <stop
  653. id="stop33-6"
  654. style="stop-color:#E7F3FF"
  655. offset="0.7841" />
  656. <stop
  657. id="stop35-2"
  658. style="stop-color:#D4EAFF"
  659. offset="0.9311" />
  660. <stop
  661. id="stop37-5"
  662. style="stop-color:#C8E4FF"
  663. offset="1" />
  664. </radialGradient>
  665. <radialGradient
  666. id="SVGID_5_-9"
  667. cx="324.69339"
  668. cy="286.66409"
  669. r="26.769501"
  670. gradientUnits="userSpaceOnUse">
  671. <stop
  672. offset="0"
  673. style="stop-color:#FFFFFF"
  674. id="stop50-2" />
  675. <stop
  676. offset="0.3984"
  677. style="stop-color:#FDFEFF"
  678. id="stop52-0" />
  679. <stop
  680. offset="0.6131"
  681. style="stop-color:#F5FAFF"
  682. id="stop54-5" />
  683. <stop
  684. offset="0.7841"
  685. style="stop-color:#E7F3FF"
  686. id="stop56-9" />
  687. <stop
  688. offset="0.9311"
  689. style="stop-color:#D4EAFF"
  690. id="stop58-7" />
  691. <stop
  692. offset="1"
  693. style="stop-color:#C8E4FF"
  694. id="stop60-2" />
  695. </radialGradient>
  696. <radialGradient
  697. id="SVGID_6_-7"
  698. cx="325"
  699. cy="392.77249"
  700. r="46.444901"
  701. gradientUnits="userSpaceOnUse">
  702. <stop
  703. offset="0"
  704. style="stop-color:#FFFFFF"
  705. id="stop73-5" />
  706. <stop
  707. offset="0.3984"
  708. style="stop-color:#FDFEFF"
  709. id="stop75-3" />
  710. <stop
  711. offset="0.6131"
  712. style="stop-color:#F5FAFF"
  713. id="stop77-2" />
  714. <stop
  715. offset="0.7841"
  716. style="stop-color:#E7F3FF"
  717. id="stop79-0" />
  718. <stop
  719. offset="0.9311"
  720. style="stop-color:#D4EAFF"
  721. id="stop81-7" />
  722. <stop
  723. offset="1"
  724. style="stop-color:#C8E4FF"
  725. id="stop83-2" />
  726. </radialGradient>
  727. <clipPath
  728. id="clipPath-349538100-0">
  729. <g
  730. transform="translate(0,-1004.4)"
  731. id="g17-3">
  732. <path
  733. transform="matrix(15.333,0,0,11.5,415,878.86)"
  734. 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"
  735. id="path19-8"
  736. inkscape:connector-curvature="0"
  737. style="fill:#1890d0" />
  738. </g>
  739. </clipPath>
  740. <clipPath
  741. id="clipPath3914-3">
  742. <g
  743. transform="translate(0,-1004.4)"
  744. id="g3912-6">
  745. <path
  746. transform="matrix(15.333,0,0,11.5,415,878.86)"
  747. 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"
  748. id="path3910-2"
  749. inkscape:connector-curvature="0"
  750. style="fill:#1890d0" />
  751. </g>
  752. </clipPath>
  753. <clipPath
  754. id="clipPath3920-2">
  755. <g
  756. transform="translate(0,-1004.4)"
  757. id="g3918-2">
  758. <path
  759. transform="matrix(15.333,0,0,11.5,415,878.86)"
  760. 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"
  761. id="path3916-9"
  762. inkscape:connector-curvature="0"
  763. style="fill:#1890d0" />
  764. </g>
  765. </clipPath>
  766. <filter
  767. id="alpha-3"
  768. width="100%"
  769. height="100%"
  770. x="0%"
  771. y="0%">
  772. <feColorMatrix
  773. in="SourceGraphic"
  774. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  775. id="feColorMatrix929-8" />
  776. </filter>
  777. <mask
  778. id="mask0-2">
  779. <g
  780. filter="url(#alpha)"
  781. id="g934-8"
  782. style="filter:url(#alpha-3)">
  783. <rect
  784. width="384"
  785. height="384"
  786. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  787. id="rect932-5" />
  788. </g>
  789. </mask>
  790. <clipPath
  791. id="clip1-4">
  792. <rect
  793. width="384"
  794. height="384"
  795. id="rect937-5" />
  796. </clipPath>
  797. <g
  798. id="surface5-6"
  799. clip-path="url(#clip1-4)">
  800. <path
  801. 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"
  802. style="fill:rgb(100%,100%,100%)"
  803. id="path940-7" />
  804. </g>
  805. <mask
  806. id="mask1-7">
  807. <g
  808. filter="url(#alpha)"
  809. id="g945-3"
  810. style="filter:url(#alpha-3)">
  811. <rect
  812. width="384"
  813. height="384"
  814. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  815. id="rect943-6" />
  816. </g>
  817. </mask>
  818. <clipPath
  819. id="clip2-4">
  820. <rect
  821. width="384"
  822. height="384"
  823. id="rect948-5" />
  824. </clipPath>
  825. <g
  826. id="surface8-5"
  827. clip-path="url(#clip2-4)">
  828. <path
  829. 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"
  830. style="fill:rgb(0%,0%,0%)"
  831. id="path951-0" />
  832. </g>
  833. <filter
  834. y="-0.082800001"
  835. x="-0.082800001"
  836. width="1.1655999"
  837. height="1.1655999"
  838. id="c-3"
  839. style="color-interpolation-filters:sRGB">
  840. <feGaussianBlur
  841. id="feGaussianBlur10-1"
  842. stdDeviation="2.1101835" />
  843. </filter>
  844. <filter
  845. y="-0.015513"
  846. x="-0.015688"
  847. width="1.031376"
  848. height="1.031026"
  849. id="a-2"
  850. style="color-interpolation-filters:sRGB">
  851. <feGaussianBlur
  852. id="feGaussianBlur2-9"
  853. stdDeviation=".7986332" />
  854. </filter>
  855. <linearGradient
  856. y2="71.020111"
  857. x2="84.091423"
  858. y1="117.04197"
  859. x1="122.34071"
  860. gradientTransform="translate(-204.4472,49.508307)"
  861. gradientUnits="userSpaceOnUse"
  862. id="linearGradient1194"
  863. xlink:href="#linearGradient944"
  864. inkscape:collect="always" />
  865. <linearGradient
  866. id="linearGradient10457">
  867. <stop
  868. id="stop10453"
  869. offset="0"
  870. style="stop-color:#000000;stop-opacity:1;" />
  871. <stop
  872. id="stop10455"
  873. offset="1"
  874. style="stop-color:#000000;stop-opacity:0;" />
  875. </linearGradient>
  876. <linearGradient
  877. id="linearGradient4187">
  878. <stop
  879. id="stop4189"
  880. offset="0"
  881. style="stop-color:#ffffff;stop-opacity:1" />
  882. <stop
  883. id="stop4191"
  884. offset="0.02099473"
  885. style="stop-color:#ffffff;stop-opacity:0.23529412" />
  886. <stop
  887. id="stop4193"
  888. offset="0.97696"
  889. style="stop-color:#ffffff;stop-opacity:0.15686275" />
  890. <stop
  891. id="stop4195"
  892. offset="1"
  893. style="stop-color:#ffffff;stop-opacity:0.39215687" />
  894. </linearGradient>
  895. <linearGradient
  896. id="linearGradient3702-501-757-6-946">
  897. <stop
  898. id="stop3228"
  899. offset="0"
  900. style="stop-color:#181818;stop-opacity:0" />
  901. <stop
  902. id="stop3230"
  903. offset="0.5"
  904. style="stop-color:#181818;stop-opacity:1" />
  905. <stop
  906. id="stop3232"
  907. offset="1"
  908. style="stop-color:#181818;stop-opacity:0" />
  909. </linearGradient>
  910. <linearGradient
  911. gradientTransform="matrix(2.7297298,0,0,2.7297298,-399.6245,-51.888255)"
  912. gradientUnits="userSpaceOnUse"
  913. xlink:href="#linearGradient4187"
  914. id="linearGradient3159"
  915. x1="23.999998"
  916. x2="23.99999"
  917. y1="5.3168221"
  918. y2="43" />
  919. <radialGradient
  920. cx="6.7304144"
  921. cy="9.9571075"
  922. fx="6.2001843"
  923. fy="9.9571075"
  924. gradientTransform="matrix(0,6.6366175,-8.147646,0,-66.832792,189.52692)"
  925. gradientUnits="userSpaceOnUse"
  926. xlink:href="#linearGradient27416-1-2-0-1"
  927. id="radialGradient3395"
  928. r="12.671875" />
  929. <radialGradient
  930. cx="4.9929786"
  931. cy="43.5"
  932. fx="4.9929786"
  933. fy="43.5"
  934. gradientTransform="matrix(5.694965,0,0,0.99999992,-322.77631,21.625258)"
  935. gradientUnits="userSpaceOnUse"
  936. xlink:href="#linearGradient10457"
  937. id="radialGradient2455-1"
  938. r="2.5" />
  939. <radialGradient
  940. cx="4.9929786"
  941. cy="43.5"
  942. fx="4.9929786"
  943. fy="43.5"
  944. gradientTransform="matrix(5.694965,0,0,0.99999992,345.44569,-108.62522)"
  945. gradientUnits="userSpaceOnUse"
  946. xlink:href="#linearGradient10457"
  947. id="radialGradient2457-5"
  948. r="2.5" />
  949. <linearGradient
  950. gradientTransform="matrix(2.8421052,0,0,0.71428566,-402.32153,34.053819)"
  951. gradientUnits="userSpaceOnUse"
  952. xlink:href="#linearGradient3702-501-757-6-946"
  953. id="linearGradient2459-7"
  954. x1="25.058096"
  955. x2="25.058096"
  956. y1="47.027729"
  957. y2="39.999443" />
  958. <radialGradient
  959. cx="-4.0287771"
  960. cy="93.467628"
  961. fx="-4.0287771"
  962. fy="93.467628"
  963. gradientTransform="matrix(1.5563924,0,0,0.16978829,-327.84065,48.755539)"
  964. gradientUnits="userSpaceOnUse"
  965. xlink:href="#linearGradient10457"
  966. id="radialGradient4377"
  967. r="35.338131" />
  968. <linearGradient
  969. id="linearGradient27416-1-2-0-1">
  970. <stop
  971. id="stop27420-2-0-8-7"
  972. offset="0"
  973. style="stop-color:#8cd5ff;stop-opacity:1" />
  974. <stop
  975. id="stop10017"
  976. offset="0.55456889"
  977. style="stop-color:#3689e6;stop-opacity:1" />
  978. <stop
  979. id="stop27422-3-5-3-3"
  980. offset="1"
  981. style="stop-color:#3689e6;stop-opacity:1" />
  982. </linearGradient>
  983. <linearGradient
  984. gradientTransform="matrix(0.41184377,0.00463472,-0.00463472,0.41184377,-113.88479,-40.401242)"
  985. gradientUnits="userSpaceOnUse"
  986. xlink:href="#linearGradient10457"
  987. id="linearGradient11309"
  988. x1="352"
  989. x2="352"
  990. y1="196"
  991. y2="132" />
  992. <linearGradient
  993. gradientTransform="matrix(0.41184377,0.00463472,-0.00463472,0.41184377,-113.87552,-41.224919)"
  994. gradientUnits="userSpaceOnUse"
  995. xlink:href="#linearGradient10457"
  996. id="linearGradient11319"
  997. x1="320"
  998. x2="320"
  999. y1="196"
  1000. y2="152" />
  1001. <linearGradient
  1002. gradientTransform="matrix(0.41184377,0.00463472,-0.00463472,0.41184377,-113.88015,-40.81308)"
  1003. gradientUnits="userSpaceOnUse"
  1004. xlink:href="#linearGradient10457"
  1005. id="linearGradient11321"
  1006. x1="352"
  1007. x2="352"
  1008. y1="196"
  1009. y2="131" />
  1010. <radialGradient
  1011. id="radialGradient3029-45"
  1012. fx="4.4590001"
  1013. fy="8.5088997"
  1014. gradientUnits="userSpaceOnUse"
  1015. cy="8.6258001"
  1016. cx="15.026"
  1017. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  1018. r="20">
  1019. <stop
  1020. id="stop4170-2"
  1021. stop-color="#c24251"
  1022. offset="0" />
  1023. <stop
  1024. id="stop4172-8"
  1025. stop-color="#c24251"
  1026. offset=".26238" />
  1027. <stop
  1028. id="stop4174-2"
  1029. stop-color="#a63643"
  1030. offset=".66094" />
  1031. <stop
  1032. id="stop4176-2"
  1033. stop-color="#a63643"
  1034. offset="1" />
  1035. </radialGradient>
  1036. <radialGradient
  1037. id="radialGradient3032-0"
  1038. gradientUnits="userSpaceOnUse"
  1039. cy="3.99"
  1040. cx="23.896"
  1041. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  1042. r="20.396999">
  1043. <stop
  1044. id="stop3244-9-33-7-0-9-9"
  1045. stop-color="#fff"
  1046. offset="0" />
  1047. <stop
  1048. id="stop3246-3-5-0-8-5-5"
  1049. stop-color="#ddd"
  1050. offset=".26238" />
  1051. <stop
  1052. id="stop3248-1-7-8-8-1-0"
  1053. stop-color="#abacae"
  1054. offset=".66094" />
  1055. <stop
  1056. id="stop3250-9-3-0-5-1-5"
  1057. stop-color="#89898b"
  1058. offset="1" />
  1059. </radialGradient>
  1060. <radialGradient
  1061. id="radialGradient3035-8"
  1062. gradientUnits="userSpaceOnUse"
  1063. cy="186.17"
  1064. cx="99.156998"
  1065. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  1066. r="62.769001">
  1067. <stop
  1068. id="stop3822-2-6-3-5"
  1069. stop-color="#3d3d3d"
  1070. offset="0" />
  1071. <stop
  1072. id="stop3864-8-7-7-29"
  1073. stop-color="#686868"
  1074. stop-opacity=".49804"
  1075. offset=".5" />
  1076. <stop
  1077. id="stop3824-1-2-5-9"
  1078. stop-color="#686868"
  1079. stop-opacity="0"
  1080. offset="1" />
  1081. </radialGradient>
  1082. <radialGradient
  1083. id="SVGID_4_-0"
  1084. cx="224.50391"
  1085. cy="186.51421"
  1086. r="127.0051"
  1087. gradientUnits="userSpaceOnUse">
  1088. <stop
  1089. offset="0"
  1090. style="stop-color:#FFFFFF"
  1091. id="stop27-2" />
  1092. <stop
  1093. offset="0.3984"
  1094. style="stop-color:#FDFEFF"
  1095. id="stop29-0" />
  1096. <stop
  1097. offset="0.6131"
  1098. style="stop-color:#F5FAFF"
  1099. id="stop31-4" />
  1100. <stop
  1101. offset="0.7841"
  1102. style="stop-color:#E7F3FF"
  1103. id="stop33-3" />
  1104. <stop
  1105. offset="0.9311"
  1106. style="stop-color:#D4EAFF"
  1107. id="stop35-3" />
  1108. <stop
  1109. offset="1"
  1110. style="stop-color:#C8E4FF"
  1111. id="stop37-8" />
  1112. </radialGradient>
  1113. <radialGradient
  1114. gradientUnits="userSpaceOnUse"
  1115. r="26.769501"
  1116. cy="286.66409"
  1117. cx="324.69339"
  1118. id="SVGID_5_-8">
  1119. <stop
  1120. id="stop50-7"
  1121. style="stop-color:#FFFFFF"
  1122. offset="0" />
  1123. <stop
  1124. id="stop52-7"
  1125. style="stop-color:#FDFEFF"
  1126. offset="0.3984" />
  1127. <stop
  1128. id="stop54-4"
  1129. style="stop-color:#F5FAFF"
  1130. offset="0.6131" />
  1131. <stop
  1132. id="stop56-4"
  1133. style="stop-color:#E7F3FF"
  1134. offset="0.7841" />
  1135. <stop
  1136. id="stop58-2"
  1137. style="stop-color:#D4EAFF"
  1138. offset="0.9311" />
  1139. <stop
  1140. id="stop60-6"
  1141. style="stop-color:#C8E4FF"
  1142. offset="1" />
  1143. </radialGradient>
  1144. <radialGradient
  1145. gradientUnits="userSpaceOnUse"
  1146. r="46.444901"
  1147. cy="392.77249"
  1148. cx="325"
  1149. id="SVGID_6_-2">
  1150. <stop
  1151. id="stop73-4"
  1152. style="stop-color:#FFFFFF"
  1153. offset="0" />
  1154. <stop
  1155. id="stop75-0"
  1156. style="stop-color:#FDFEFF"
  1157. offset="0.3984" />
  1158. <stop
  1159. id="stop77-4"
  1160. style="stop-color:#F5FAFF"
  1161. offset="0.6131" />
  1162. <stop
  1163. id="stop79-5"
  1164. style="stop-color:#E7F3FF"
  1165. offset="0.7841" />
  1166. <stop
  1167. id="stop81-8"
  1168. style="stop-color:#D4EAFF"
  1169. offset="0.9311" />
  1170. <stop
  1171. id="stop83-6"
  1172. style="stop-color:#C8E4FF"
  1173. offset="1" />
  1174. </radialGradient>
  1175. <clipPath
  1176. id="clipPath-349538100-3">
  1177. <g
  1178. id="g17-8"
  1179. transform="translate(0,-1004.4)">
  1180. <path
  1181. style="fill:#1890d0"
  1182. inkscape:connector-curvature="0"
  1183. id="path19-2"
  1184. 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"
  1185. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1186. </g>
  1187. </clipPath>
  1188. <clipPath
  1189. id="clipPath3914-7">
  1190. <g
  1191. id="g3912-7"
  1192. transform="translate(0,-1004.4)">
  1193. <path
  1194. style="fill:#1890d0"
  1195. inkscape:connector-curvature="0"
  1196. id="path3910-1"
  1197. 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"
  1198. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1199. </g>
  1200. </clipPath>
  1201. <clipPath
  1202. id="clipPath3920-7">
  1203. <g
  1204. id="g3918-7"
  1205. transform="translate(0,-1004.4)">
  1206. <path
  1207. style="fill:#1890d0"
  1208. inkscape:connector-curvature="0"
  1209. id="path3916-0"
  1210. 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"
  1211. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1212. </g>
  1213. </clipPath>
  1214. <filter
  1215. y="0%"
  1216. x="0%"
  1217. height="100%"
  1218. width="100%"
  1219. id="alpha-9">
  1220. <feColorMatrix
  1221. id="feColorMatrix929-4"
  1222. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  1223. in="SourceGraphic" />
  1224. </filter>
  1225. <mask
  1226. id="mask0-4">
  1227. <g
  1228. style="filter:url(#alpha-9)"
  1229. id="g934-4"
  1230. filter="url(#alpha)">
  1231. <rect
  1232. id="rect932-8"
  1233. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1234. height="384"
  1235. width="384" />
  1236. </g>
  1237. </mask>
  1238. <clipPath
  1239. id="clip1-9">
  1240. <rect
  1241. id="rect937-2"
  1242. height="384"
  1243. width="384" />
  1244. </clipPath>
  1245. <g
  1246. clip-path="url(#clip1-9)"
  1247. id="surface5-8">
  1248. <path
  1249. id="path940-6"
  1250. style="fill:rgb(100%,100%,100%)"
  1251. 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" />
  1252. </g>
  1253. <mask
  1254. id="mask1-0">
  1255. <g
  1256. style="filter:url(#alpha-9)"
  1257. id="g945-4"
  1258. filter="url(#alpha)">
  1259. <rect
  1260. id="rect943-2"
  1261. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1262. height="384"
  1263. width="384" />
  1264. </g>
  1265. </mask>
  1266. <clipPath
  1267. id="clip2-41">
  1268. <rect
  1269. id="rect948-4"
  1270. height="384"
  1271. width="384" />
  1272. </clipPath>
  1273. <g
  1274. clip-path="url(#clip2-41)"
  1275. id="surface8-1">
  1276. <path
  1277. id="path951-3"
  1278. style="fill:rgb(0%,0%,0%)"
  1279. 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" />
  1280. </g>
  1281. <filter
  1282. style="color-interpolation-filters:sRGB"
  1283. id="c-2"
  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-8" />
  1291. </filter>
  1292. <filter
  1293. style="color-interpolation-filters:sRGB"
  1294. id="a-0"
  1295. height="1.031026"
  1296. width="1.031376"
  1297. x="-0.015688"
  1298. y="-0.015513">
  1299. <feGaussianBlur
  1300. stdDeviation=".7986332"
  1301. id="feGaussianBlur2-8" />
  1302. </filter>
  1303. <clipPath
  1304. id="clip1-8-4">
  1305. <path
  1306. d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
  1307. id="path952-0" />
  1308. </clipPath>
  1309. <clipPath
  1310. id="clip2-3-7">
  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-7" />
  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-6">
  1324. <stop
  1325. style="stop-color:#354bf9;stop-opacity:1"
  1326. offset="0"
  1327. stop-color="#c24251"
  1328. id="stop4170-8-9" />
  1329. <stop
  1330. style="stop-color:#58cdf0;stop-opacity:1"
  1331. offset="1"
  1332. stop-color="#a63643"
  1333. id="stop4176-3-5" />
  1334. </radialGradient>
  1335. <radialGradient
  1336. r="20.396999"
  1337. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  1338. cx="23.896"
  1339. cy="3.99"
  1340. gradientUnits="userSpaceOnUse"
  1341. id="radialGradient3032-3-8">
  1342. <stop
  1343. offset="0"
  1344. stop-color="#fff"
  1345. id="stop3244-9-33-7-0-9-4-3" />
  1346. <stop
  1347. offset=".26238"
  1348. stop-color="#ddd"
  1349. id="stop3246-3-5-0-8-5-0-8" />
  1350. <stop
  1351. offset=".66094"
  1352. stop-color="#abacae"
  1353. id="stop3248-1-7-8-8-1-8-5" />
  1354. <stop
  1355. offset="1"
  1356. stop-color="#89898b"
  1357. id="stop3250-9-3-0-5-1-4-4" />
  1358. </radialGradient>
  1359. <radialGradient
  1360. r="62.769001"
  1361. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  1362. cx="99.156998"
  1363. cy="186.17"
  1364. gradientUnits="userSpaceOnUse"
  1365. id="radialGradient3035-3-1">
  1366. <stop
  1367. offset="0"
  1368. stop-color="#3d3d3d"
  1369. id="stop3822-2-6-3-0-6" />
  1370. <stop
  1371. offset=".5"
  1372. stop-opacity=".49804"
  1373. stop-color="#686868"
  1374. id="stop3864-8-7-7-2-3" />
  1375. <stop
  1376. offset="1"
  1377. stop-opacity="0"
  1378. stop-color="#686868"
  1379. id="stop3824-1-2-5-4-5" />
  1380. </radialGradient>
  1381. <radialGradient
  1382. gradientUnits="userSpaceOnUse"
  1383. r="127.0051"
  1384. cy="186.51421"
  1385. cx="224.50391"
  1386. id="SVGID_4_-1-5">
  1387. <stop
  1388. id="stop27-7-6"
  1389. style="stop-color:#FFFFFF"
  1390. offset="0" />
  1391. <stop
  1392. id="stop29-6-7"
  1393. style="stop-color:#FDFEFF"
  1394. offset="0.3984" />
  1395. <stop
  1396. id="stop31-2-5"
  1397. style="stop-color:#F5FAFF"
  1398. offset="0.6131" />
  1399. <stop
  1400. id="stop33-6-5"
  1401. style="stop-color:#E7F3FF"
  1402. offset="0.7841" />
  1403. <stop
  1404. id="stop35-2-8"
  1405. style="stop-color:#D4EAFF"
  1406. offset="0.9311" />
  1407. <stop
  1408. id="stop37-5-0"
  1409. style="stop-color:#C8E4FF"
  1410. offset="1" />
  1411. </radialGradient>
  1412. <radialGradient
  1413. id="SVGID_5_-9-4"
  1414. cx="324.69339"
  1415. cy="286.66409"
  1416. r="26.769501"
  1417. gradientUnits="userSpaceOnUse">
  1418. <stop
  1419. offset="0"
  1420. style="stop-color:#FFFFFF"
  1421. id="stop50-2-9" />
  1422. <stop
  1423. offset="0.3984"
  1424. style="stop-color:#FDFEFF"
  1425. id="stop52-0-5" />
  1426. <stop
  1427. offset="0.6131"
  1428. style="stop-color:#F5FAFF"
  1429. id="stop54-5-6" />
  1430. <stop
  1431. offset="0.7841"
  1432. style="stop-color:#E7F3FF"
  1433. id="stop56-9-8" />
  1434. <stop
  1435. offset="0.9311"
  1436. style="stop-color:#D4EAFF"
  1437. id="stop58-7-7" />
  1438. <stop
  1439. offset="1"
  1440. style="stop-color:#C8E4FF"
  1441. id="stop60-2-7" />
  1442. </radialGradient>
  1443. <radialGradient
  1444. id="SVGID_6_-7-4"
  1445. cx="325"
  1446. cy="392.77249"
  1447. r="46.444901"
  1448. gradientUnits="userSpaceOnUse">
  1449. <stop
  1450. offset="0"
  1451. style="stop-color:#FFFFFF"
  1452. id="stop73-5-7" />
  1453. <stop
  1454. offset="0.3984"
  1455. style="stop-color:#FDFEFF"
  1456. id="stop75-3-4" />
  1457. <stop
  1458. offset="0.6131"
  1459. style="stop-color:#F5FAFF"
  1460. id="stop77-2-1" />
  1461. <stop
  1462. offset="0.7841"
  1463. style="stop-color:#E7F3FF"
  1464. id="stop79-0-8" />
  1465. <stop
  1466. offset="0.9311"
  1467. style="stop-color:#D4EAFF"
  1468. id="stop81-7-2" />
  1469. <stop
  1470. offset="1"
  1471. style="stop-color:#C8E4FF"
  1472. id="stop83-2-2" />
  1473. </radialGradient>
  1474. <clipPath
  1475. id="clipPath-349538100-0-5">
  1476. <g
  1477. transform="translate(0,-1004.4)"
  1478. id="g17-3-3">
  1479. <path
  1480. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1481. 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"
  1482. id="path19-8-6"
  1483. inkscape:connector-curvature="0"
  1484. style="fill:#1890d0" />
  1485. </g>
  1486. </clipPath>
  1487. <clipPath
  1488. id="clipPath3914-3-3">
  1489. <g
  1490. transform="translate(0,-1004.4)"
  1491. id="g3912-6-0">
  1492. <path
  1493. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1494. 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"
  1495. id="path3910-2-2"
  1496. inkscape:connector-curvature="0"
  1497. style="fill:#1890d0" />
  1498. </g>
  1499. </clipPath>
  1500. <clipPath
  1501. id="clipPath3920-2-4">
  1502. <g
  1503. transform="translate(0,-1004.4)"
  1504. id="g3918-2-6">
  1505. <path
  1506. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1507. 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"
  1508. id="path3916-9-7"
  1509. inkscape:connector-curvature="0"
  1510. style="fill:#1890d0" />
  1511. </g>
  1512. </clipPath>
  1513. <filter
  1514. id="alpha-3-1"
  1515. width="100%"
  1516. height="100%"
  1517. x="0%"
  1518. y="0%">
  1519. <feColorMatrix
  1520. in="SourceGraphic"
  1521. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  1522. id="feColorMatrix929-8-3" />
  1523. </filter>
  1524. <mask
  1525. id="mask0-2-4">
  1526. <g
  1527. filter="url(#alpha)"
  1528. id="g934-8-8"
  1529. style="filter:url(#alpha-3-1)">
  1530. <rect
  1531. width="384"
  1532. height="384"
  1533. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1534. id="rect932-5-8" />
  1535. </g>
  1536. </mask>
  1537. <clipPath
  1538. id="clip1-4-1">
  1539. <rect
  1540. width="384"
  1541. height="384"
  1542. id="rect937-5-7" />
  1543. </clipPath>
  1544. <g
  1545. id="surface5-6-0"
  1546. clip-path="url(#clip1-4-1)">
  1547. <path
  1548. 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"
  1549. style="fill:rgb(100%,100%,100%)"
  1550. id="path940-7-5" />
  1551. </g>
  1552. <mask
  1553. id="mask1-7-6">
  1554. <g
  1555. filter="url(#alpha)"
  1556. id="g945-3-8"
  1557. style="filter:url(#alpha-3-1)">
  1558. <rect
  1559. width="384"
  1560. height="384"
  1561. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1562. id="rect943-6-4" />
  1563. </g>
  1564. </mask>
  1565. <clipPath
  1566. id="clip2-4-6">
  1567. <rect
  1568. width="384"
  1569. height="384"
  1570. id="rect948-5-5" />
  1571. </clipPath>
  1572. <g
  1573. id="surface8-5-1"
  1574. clip-path="url(#clip2-4-6)">
  1575. <path
  1576. 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"
  1577. style="fill:rgb(0%,0%,0%)"
  1578. id="path951-0-1" />
  1579. </g>
  1580. <filter
  1581. y="-0.082800001"
  1582. x="-0.082800001"
  1583. width="1.1655999"
  1584. height="1.1655999"
  1585. id="c-3-5"
  1586. style="color-interpolation-filters:sRGB">
  1587. <feGaussianBlur
  1588. id="feGaussianBlur10-1-7"
  1589. stdDeviation="2.1101835" />
  1590. </filter>
  1591. <filter
  1592. y="-0.015513"
  1593. x="-0.015688"
  1594. width="1.031376"
  1595. height="1.031026"
  1596. id="a-2-4"
  1597. style="color-interpolation-filters:sRGB">
  1598. <feGaussianBlur
  1599. id="feGaussianBlur2-9-3"
  1600. stdDeviation=".7986332" />
  1601. </filter>
  1602. <filter
  1603. id="Xz97CxlifTHANJtERI5kl0UUr7WfRYvq"
  1604. width="400%"
  1605. height="400%"
  1606. x="-200%"
  1607. y="-200%"
  1608. color-interpolation-filters="sRGB"
  1609. filterUnits="objectBoundingBox">
  1610. <feGaussianBlur
  1611. in="SourceGraphic"
  1612. stdDeviation="4.294"
  1613. id="feGaussianBlur1005" />
  1614. <feOffset
  1615. dx="0"
  1616. dy="4"
  1617. result="pf_100_offsetBlur"
  1618. id="feOffset1007" />
  1619. <feFlood
  1620. flood-opacity=".4"
  1621. id="feFlood1009" />
  1622. <feComposite
  1623. in2="pf_100_offsetBlur"
  1624. operator="in"
  1625. result="pf_100_dropShadow"
  1626. id="feComposite1011" />
  1627. <feBlend
  1628. in="SourceGraphic"
  1629. in2="pf_100_dropShadow"
  1630. mode="normal"
  1631. id="feBlend1013" />
  1632. </filter>
  1633. <filter
  1634. id="4Gm5ayg2wEcihmTWLHNpl5NooRhnv9nx"
  1635. width="400%"
  1636. height="400%"
  1637. x="-200%"
  1638. y="-200%"
  1639. color-interpolation-filters="sRGB"
  1640. filterUnits="objectBoundingBox">
  1641. <feGaussianBlur
  1642. stdDeviation="4.294"
  1643. id="feGaussianBlur1042" />
  1644. </filter>
  1645. <linearGradient
  1646. id="linearGradient4345"
  1647. inkscape:collect="always">
  1648. <stop
  1649. id="stop4347"
  1650. offset="0"
  1651. style="stop-color:#9bdb4d;stop-opacity:1" />
  1652. <stop
  1653. id="stop4349"
  1654. offset="1"
  1655. style="stop-color:#3a9104;stop-opacity:1" />
  1656. </linearGradient>
  1657. <linearGradient
  1658. inkscape:collect="always"
  1659. id="linearGradient4327">
  1660. <stop
  1661. style="stop-color:#d1ff82;stop-opacity:1"
  1662. offset="0"
  1663. id="stop4329" />
  1664. <stop
  1665. style="stop-color:#9bdb4d;stop-opacity:1"
  1666. offset="1"
  1667. id="stop4331" />
  1668. </linearGradient>
  1669. <linearGradient
  1670. inkscape:collect="always"
  1671. id="linearGradient4315">
  1672. <stop
  1673. style="stop-color:#fff394;stop-opacity:1"
  1674. offset="0"
  1675. id="stop4317" />
  1676. <stop
  1677. style="stop-color:#d1ff82;stop-opacity:1"
  1678. offset="1"
  1679. id="stop4319" />
  1680. </linearGradient>
  1681. <linearGradient
  1682. id="linearGradient3820-7-2-8-6">
  1683. <stop
  1684. id="stop3822-2-6-5-0"
  1685. style="stop-color:#3d3d3d;stop-opacity:1"
  1686. offset="0" />
  1687. <stop
  1688. id="stop3864-8-7-4-1"
  1689. style="stop-color:#686868;stop-opacity:0.49803922"
  1690. offset="0.5" />
  1691. <stop
  1692. id="stop3824-1-2-6-7"
  1693. style="stop-color:#686868;stop-opacity:0"
  1694. offset="1" />
  1695. </linearGradient>
  1696. <linearGradient
  1697. id="linearGradient4806">
  1698. <stop
  1699. offset="0"
  1700. style="stop-color:#ffffff;stop-opacity:1"
  1701. id="stop4808" />
  1702. <stop
  1703. offset="0.42447853"
  1704. style="stop-color:#ffffff;stop-opacity:0.23529412"
  1705. id="stop4810" />
  1706. <stop
  1707. offset="0.82089913"
  1708. style="stop-color:#ffffff;stop-opacity:0.15686275"
  1709. id="stop4812" />
  1710. <stop
  1711. offset="1"
  1712. style="stop-color:#ffffff;stop-opacity:0.39215687"
  1713. id="stop4814" />
  1714. </linearGradient>
  1715. <linearGradient
  1716. xlink:href="#linearGradient4806"
  1717. id="linearGradient3118"
  1718. gradientUnits="userSpaceOnUse"
  1719. gradientTransform="matrix(4.16388,0,0,4.16388,-236.03265,-50.534426)"
  1720. x1="71.204407"
  1721. y1="15.369057"
  1722. x2="71.204407"
  1723. y2="40.495617" />
  1724. <radialGradient
  1725. xlink:href="#linearGradient3820-7-2-8-6"
  1726. id="radialGradient3163"
  1727. gradientUnits="userSpaceOnUse"
  1728. gradientTransform="matrix(0.45008973,0.25985944,-0.10079159,0.17457619,20.093182,44.077587)"
  1729. cx="99.157013"
  1730. cy="186.17059"
  1731. fx="99.157013"
  1732. fy="186.17059"
  1733. r="62.769119" />
  1734. <linearGradient
  1735. id="linearGradient3242-7-3-8-0-4-58-06">
  1736. <stop
  1737. offset="0"
  1738. style="stop-color:#cdf87e;stop-opacity:1"
  1739. id="stop3244-5-8-5-6-4-3-8" />
  1740. <stop
  1741. offset="0.26238"
  1742. style="stop-color:#a2e34f;stop-opacity:1"
  1743. id="stop3246-9-5-1-5-3-0-7" />
  1744. <stop
  1745. offset="0.66093999"
  1746. style="stop-color:#68b723;stop-opacity:1"
  1747. id="stop3248-7-2-0-7-5-35-9" />
  1748. <stop
  1749. offset="1"
  1750. style="stop-color:#1d7e0d;stop-opacity:1"
  1751. id="stop3250-8-2-8-5-6-40-4" />
  1752. </linearGradient>
  1753. <radialGradient
  1754. gradientTransform="matrix(0,2.4235253,-2.6392787,0,226.36903,-84.88818)"
  1755. gradientUnits="userSpaceOnUse"
  1756. xlink:href="#linearGradient3242-7-3-8-0-4-58-06"
  1757. id="radialGradient3381"
  1758. fy="48.76759"
  1759. fx="66.127159"
  1760. r="31.000002"
  1761. cy="48.76759"
  1762. cx="66.127159" />
  1763. <linearGradient
  1764. gradientTransform="matrix(2.1134672,0,0,1.645562,50.724212,61.899946)"
  1765. gradientUnits="userSpaceOnUse"
  1766. xlink:href="#linearGradient4361"
  1767. id="linearGradient3030"
  1768. y2="37.130203"
  1769. x2="24.138529"
  1770. y1="9.1762295"
  1771. x1="24.138529" />
  1772. <linearGradient
  1773. id="linearGradient4361">
  1774. <stop
  1775. offset="0"
  1776. style="stop-color:#ffffff;stop-opacity:1"
  1777. id="stop4363" />
  1778. <stop
  1779. offset="0"
  1780. style="stop-color:#ffffff;stop-opacity:0.23529412"
  1781. id="stop4365" />
  1782. <stop
  1783. offset="1"
  1784. style="stop-color:#ffffff;stop-opacity:0.15686275"
  1785. id="stop4367" />
  1786. <stop
  1787. offset="1"
  1788. style="stop-color:#ffffff;stop-opacity:0.39215687"
  1789. id="stop4369" />
  1790. </linearGradient>
  1791. <linearGradient
  1792. gradientTransform="matrix(1.6592445,0,0,2.0928522,60.832154,51.571789)"
  1793. gradientUnits="userSpaceOnUse"
  1794. xlink:href="#linearGradient4351"
  1795. id="linearGradient3030-1"
  1796. y2="26.484531"
  1797. x2="24.138529"
  1798. y1="19.795095"
  1799. x1="24.138529" />
  1800. <linearGradient
  1801. id="linearGradient4351">
  1802. <stop
  1803. offset="0"
  1804. style="stop-color:#ffffff;stop-opacity:1"
  1805. id="stop4353" />
  1806. <stop
  1807. offset="0.00000015"
  1808. style="stop-color:#ffffff;stop-opacity:0.23529412"
  1809. id="stop4355" />
  1810. <stop
  1811. offset="1"
  1812. style="stop-color:#ffffff;stop-opacity:0.15686275"
  1813. id="stop4357" />
  1814. <stop
  1815. offset="1"
  1816. style="stop-color:#ffffff;stop-opacity:0.39215687"
  1817. id="stop4359" />
  1818. </linearGradient>
  1819. <radialGradient
  1820. cx="-14.890854"
  1821. cy="11.546391"
  1822. r="19.99999"
  1823. fx="-14.890854"
  1824. fy="11.546391"
  1825. id="radialGradient3183"
  1826. xlink:href="#linearGradient4330"
  1827. gradientUnits="userSpaceOnUse"
  1828. gradientTransform="matrix(-9.9735355e-6,17.900638,18.571439,0,-152.28499,218.151)" />
  1829. <linearGradient
  1830. id="linearGradient4330">
  1831. <stop
  1832. offset="0"
  1833. style="stop-color:#95a3ab;stop-opacity:1"
  1834. id="stop4332" />
  1835. <stop
  1836. offset="0.26238"
  1837. style="stop-color:#667885;stop-opacity:1"
  1838. id="stop4334" />
  1839. <stop
  1840. offset="0.704952"
  1841. style="stop-color:#485a6c;stop-opacity:1"
  1842. id="stop4336" />
  1843. <stop
  1844. offset="1"
  1845. style="stop-color:#273445;stop-opacity:1"
  1846. id="stop4338" />
  1847. </linearGradient>
  1848. <linearGradient
  1849. inkscape:collect="always"
  1850. id="linearGradient4272">
  1851. <stop
  1852. style="stop-color:#d1ff82;stop-opacity:1"
  1853. offset="0"
  1854. id="stop4274" />
  1855. <stop
  1856. style="stop-color:#68b723;stop-opacity:1"
  1857. offset="1"
  1858. id="stop4276" />
  1859. </linearGradient>
  1860. <linearGradient
  1861. inkscape:collect="always"
  1862. id="linearGradient4246">
  1863. <stop
  1864. style="stop-color:#9bdb4d;stop-opacity:1"
  1865. offset="0"
  1866. id="stop4248" />
  1867. <stop
  1868. style="stop-color:#206b00;stop-opacity:1"
  1869. offset="1"
  1870. id="stop4250" />
  1871. </linearGradient>
  1872. <linearGradient
  1873. inkscape:collect="always"
  1874. id="linearGradient4352">
  1875. <stop
  1876. style="stop-color:#ffffff;stop-opacity:1"
  1877. offset="0"
  1878. id="stop4354" />
  1879. <stop
  1880. style="stop-color:#ffffff;stop-opacity:0.37820512"
  1881. offset="1"
  1882. id="stop4356" />
  1883. </linearGradient>
  1884. <radialGradient
  1885. inkscape:collect="always"
  1886. xlink:href="#linearGradient4315"
  1887. id="radialGradient4254-3"
  1888. cx="31.953705"
  1889. cy="12.999992"
  1890. fx="31.953705"
  1891. fy="12.999992"
  1892. r="5.5"
  1893. gradientUnits="userSpaceOnUse"
  1894. gradientTransform="matrix(-6.7294293,0,0,-3.2049303,225.03535,33.731874)" />
  1895. <radialGradient
  1896. inkscape:collect="always"
  1897. xlink:href="#linearGradient4327"
  1898. id="radialGradient4252-3"
  1899. cx="31.999998"
  1900. cy="-4.0714331"
  1901. fx="31.999998"
  1902. fy="-4.0714331"
  1903. r="5.5"
  1904. gradientUnits="userSpaceOnUse"
  1905. gradientTransform="matrix(2.1418729,3.7095783,-3.0530017,1.7625305,-85.054065,-120.36629)" />
  1906. <radialGradient
  1907. inkscape:collect="always"
  1908. xlink:href="#linearGradient4327"
  1909. id="radialGradient4252-0"
  1910. cx="31.999998"
  1911. cy="-4.0714331"
  1912. fx="31.999998"
  1913. fy="-4.0714331"
  1914. r="5.5"
  1915. gradientUnits="userSpaceOnUse"
  1916. gradientTransform="matrix(2.1418729,3.7095783,-3.0530017,1.7625305,-85.054065,-120.36629)" />
  1917. <radialGradient
  1918. inkscape:collect="always"
  1919. xlink:href="#linearGradient4327"
  1920. id="radialGradient4681-0"
  1921. gradientUnits="userSpaceOnUse"
  1922. gradientTransform="matrix(2.4302854,4.2093776,-3.4641016,2,-154.64665,-95.784643)"
  1923. cx="30.854206"
  1924. cy="-20.571434"
  1925. fx="30.854206"
  1926. fy="-20.571434"
  1927. r="5.5" />
  1928. <radialGradient
  1929. inkscape:collect="always"
  1930. xlink:href="#linearGradient4272"
  1931. id="radialGradient4278-1"
  1932. cx="32"
  1933. cy="27"
  1934. fx="32"
  1935. fy="27"
  1936. r="5.5"
  1937. gradientUnits="userSpaceOnUse"
  1938. gradientTransform="matrix(1.3779312e-6,3.2049304,-5.1271858,2.2049922e-6,148.12754,-101.67648)" />
  1939. <radialGradient
  1940. inkscape:collect="always"
  1941. xlink:href="#linearGradient4345"
  1942. id="radialGradient4262-2"
  1943. cx="27.562176"
  1944. cy="-10.313467"
  1945. fx="27.562176"
  1946. fy="-10.313467"
  1947. r="5.5"
  1948. gradientUnits="userSpaceOnUse"
  1949. gradientTransform="matrix(-2.0831333,3.6078455,-3.0530015,-1.7625302,31.349364,-125.24363)" />
  1950. <radialGradient
  1951. inkscape:collect="always"
  1952. xlink:href="#linearGradient4345"
  1953. id="radialGradient4262-28"
  1954. cx="27.562176"
  1955. cy="-10.313467"
  1956. fx="27.562176"
  1957. fy="-10.313467"
  1958. r="5.5"
  1959. gradientUnits="userSpaceOnUse"
  1960. gradientTransform="matrix(-2.0831333,3.6078455,-3.0530015,-1.7625302,31.349364,-125.24363)" />
  1961. <radialGradient
  1962. inkscape:collect="always"
  1963. xlink:href="#linearGradient4246"
  1964. id="radialGradient4260-6"
  1965. cx="32.000004"
  1966. cy="51"
  1967. fx="32.000004"
  1968. fy="51"
  1969. r="5.5"
  1970. gradientUnits="userSpaceOnUse"
  1971. gradientTransform="matrix(-5.0426854e-8,6.7303541,-7.049879,-5.2835362e-8,369.2374,-214.49)" />
  1972. <linearGradient
  1973. inkscape:collect="always"
  1974. xlink:href="#linearGradient4352"
  1975. id="linearGradient4358-3"
  1976. x1="32"
  1977. y1="3"
  1978. x2="32"
  1979. y2="13"
  1980. gradientUnits="userSpaceOnUse"
  1981. gradientTransform="matrix(1.7624701,0,0,1.7627118,-47.967977,-5.6694573)" />
  1982. <radialGradient
  1983. id="radialGradient3029-7"
  1984. fx="4.4590001"
  1985. fy="8.5088997"
  1986. gradientUnits="userSpaceOnUse"
  1987. cy="8.6258001"
  1988. cx="15.026"
  1989. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  1990. r="20">
  1991. <stop
  1992. id="stop4170-85"
  1993. stop-color="#c24251"
  1994. offset="0" />
  1995. <stop
  1996. id="stop4172-3"
  1997. stop-color="#c24251"
  1998. offset=".26238" />
  1999. <stop
  2000. id="stop4174-9"
  2001. stop-color="#a63643"
  2002. offset=".66094" />
  2003. <stop
  2004. id="stop4176-8"
  2005. stop-color="#a63643"
  2006. offset="1" />
  2007. </radialGradient>
  2008. <radialGradient
  2009. id="radialGradient3032-8"
  2010. gradientUnits="userSpaceOnUse"
  2011. cy="3.99"
  2012. cx="23.896"
  2013. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  2014. r="20.396999">
  2015. <stop
  2016. id="stop3244-9-33-7-0-9-8"
  2017. stop-color="#fff"
  2018. offset="0" />
  2019. <stop
  2020. id="stop3246-3-5-0-8-5-3"
  2021. stop-color="#ddd"
  2022. offset=".26238" />
  2023. <stop
  2024. id="stop3248-1-7-8-8-1-3"
  2025. stop-color="#abacae"
  2026. offset=".66094" />
  2027. <stop
  2028. id="stop3250-9-3-0-5-1-0"
  2029. stop-color="#89898b"
  2030. offset="1" />
  2031. </radialGradient>
  2032. <radialGradient
  2033. id="radialGradient3035-2"
  2034. gradientUnits="userSpaceOnUse"
  2035. cy="186.17"
  2036. cx="99.156998"
  2037. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  2038. r="62.769001">
  2039. <stop
  2040. id="stop3822-2-6-3-3"
  2041. stop-color="#3d3d3d"
  2042. offset="0" />
  2043. <stop
  2044. id="stop3864-8-7-7-7"
  2045. stop-color="#686868"
  2046. stop-opacity=".49804"
  2047. offset=".5" />
  2048. <stop
  2049. id="stop3824-1-2-5-98"
  2050. stop-color="#686868"
  2051. stop-opacity="0"
  2052. offset="1" />
  2053. </radialGradient>
  2054. <radialGradient
  2055. id="SVGID_4_-7"
  2056. cx="224.50391"
  2057. cy="186.51421"
  2058. r="127.0051"
  2059. gradientUnits="userSpaceOnUse">
  2060. <stop
  2061. offset="0"
  2062. style="stop-color:#FFFFFF"
  2063. id="stop27-0" />
  2064. <stop
  2065. offset="0.3984"
  2066. style="stop-color:#FDFEFF"
  2067. id="stop29-60" />
  2068. <stop
  2069. offset="0.6131"
  2070. style="stop-color:#F5FAFF"
  2071. id="stop31-23" />
  2072. <stop
  2073. offset="0.7841"
  2074. style="stop-color:#E7F3FF"
  2075. id="stop33-7" />
  2076. <stop
  2077. offset="0.9311"
  2078. style="stop-color:#D4EAFF"
  2079. id="stop35-0" />
  2080. <stop
  2081. offset="1"
  2082. style="stop-color:#C8E4FF"
  2083. id="stop37-2" />
  2084. </radialGradient>
  2085. <radialGradient
  2086. gradientUnits="userSpaceOnUse"
  2087. r="26.769501"
  2088. cy="286.66409"
  2089. cx="324.69339"
  2090. id="SVGID_5_-1">
  2091. <stop
  2092. id="stop50-9"
  2093. style="stop-color:#FFFFFF"
  2094. offset="0" />
  2095. <stop
  2096. id="stop52-09"
  2097. style="stop-color:#FDFEFF"
  2098. offset="0.3984" />
  2099. <stop
  2100. id="stop54-7"
  2101. style="stop-color:#F5FAFF"
  2102. offset="0.6131" />
  2103. <stop
  2104. id="stop56-5"
  2105. style="stop-color:#E7F3FF"
  2106. offset="0.7841" />
  2107. <stop
  2108. id="stop58-8"
  2109. style="stop-color:#D4EAFF"
  2110. offset="0.9311" />
  2111. <stop
  2112. id="stop60-5"
  2113. style="stop-color:#C8E4FF"
  2114. offset="1" />
  2115. </radialGradient>
  2116. <radialGradient
  2117. gradientUnits="userSpaceOnUse"
  2118. r="46.444901"
  2119. cy="392.77249"
  2120. cx="325"
  2121. id="SVGID_6_-3">
  2122. <stop
  2123. id="stop73-8"
  2124. style="stop-color:#FFFFFF"
  2125. offset="0" />
  2126. <stop
  2127. id="stop75-8"
  2128. style="stop-color:#FDFEFF"
  2129. offset="0.3984" />
  2130. <stop
  2131. id="stop77-8"
  2132. style="stop-color:#F5FAFF"
  2133. offset="0.6131" />
  2134. <stop
  2135. id="stop79-1"
  2136. style="stop-color:#E7F3FF"
  2137. offset="0.7841" />
  2138. <stop
  2139. id="stop81-2"
  2140. style="stop-color:#D4EAFF"
  2141. offset="0.9311" />
  2142. <stop
  2143. id="stop83-1"
  2144. style="stop-color:#C8E4FF"
  2145. offset="1" />
  2146. </radialGradient>
  2147. <clipPath
  2148. id="clipPath-349538100-8">
  2149. <g
  2150. id="g17-1"
  2151. transform="translate(0,-1004.4)">
  2152. <path
  2153. style="fill:#1890d0"
  2154. inkscape:connector-curvature="0"
  2155. id="path19-1"
  2156. 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"
  2157. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  2158. </g>
  2159. </clipPath>
  2160. <clipPath
  2161. id="clipPath3914-32">
  2162. <g
  2163. id="g3912-8"
  2164. transform="translate(0,-1004.4)">
  2165. <path
  2166. style="fill:#1890d0"
  2167. inkscape:connector-curvature="0"
  2168. id="path3910-29"
  2169. 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"
  2170. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  2171. </g>
  2172. </clipPath>
  2173. <clipPath
  2174. id="clipPath3920-9">
  2175. <g
  2176. id="g3918-8"
  2177. transform="translate(0,-1004.4)">
  2178. <path
  2179. style="fill:#1890d0"
  2180. inkscape:connector-curvature="0"
  2181. id="path3916-2"
  2182. 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"
  2183. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  2184. </g>
  2185. </clipPath>
  2186. <filter
  2187. y="0%"
  2188. x="0%"
  2189. height="100%"
  2190. width="100%"
  2191. id="alpha-31">
  2192. <feColorMatrix
  2193. id="feColorMatrix929-3"
  2194. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  2195. in="SourceGraphic" />
  2196. </filter>
  2197. <mask
  2198. id="mask0-8">
  2199. <g
  2200. style="filter:url(#alpha-31)"
  2201. id="g934-2"
  2202. filter="url(#alpha)">
  2203. <rect
  2204. id="rect932-58"
  2205. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2206. height="384"
  2207. width="384" />
  2208. </g>
  2209. </mask>
  2210. <clipPath
  2211. id="clip1-1">
  2212. <rect
  2213. id="rect937-25"
  2214. height="384"
  2215. width="384" />
  2216. </clipPath>
  2217. <g
  2218. clip-path="url(#clip1-1)"
  2219. id="surface5-1">
  2220. <path
  2221. id="path940-78"
  2222. style="fill:rgb(100%,100%,100%)"
  2223. 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" />
  2224. </g>
  2225. <mask
  2226. id="mask1-1">
  2227. <g
  2228. style="filter:url(#alpha-31)"
  2229. id="g945-8"
  2230. filter="url(#alpha)">
  2231. <rect
  2232. id="rect943-62"
  2233. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2234. height="384"
  2235. width="384" />
  2236. </g>
  2237. </mask>
  2238. <clipPath
  2239. id="clip2-0">
  2240. <rect
  2241. id="rect948-9"
  2242. height="384"
  2243. width="384" />
  2244. </clipPath>
  2245. <g
  2246. clip-path="url(#clip2-0)"
  2247. id="surface8-3">
  2248. <path
  2249. id="path951-4"
  2250. style="fill:rgb(0%,0%,0%)"
  2251. 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" />
  2252. </g>
  2253. <filter
  2254. style="color-interpolation-filters:sRGB"
  2255. id="c-4"
  2256. height="1.1655999"
  2257. width="1.1655999"
  2258. x="-0.082800001"
  2259. y="-0.082800001">
  2260. <feGaussianBlur
  2261. stdDeviation="2.1101835"
  2262. id="feGaussianBlur10-2" />
  2263. </filter>
  2264. <filter
  2265. style="color-interpolation-filters:sRGB"
  2266. id="a-3"
  2267. height="1.031026"
  2268. width="1.031376"
  2269. x="-0.015688"
  2270. y="-0.015513">
  2271. <feGaussianBlur
  2272. stdDeviation=".7986332"
  2273. id="feGaussianBlur2-4" />
  2274. </filter>
  2275. <clipPath
  2276. id="clip1-8-5">
  2277. <path
  2278. d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
  2279. id="path952-5" />
  2280. </clipPath>
  2281. <clipPath
  2282. id="clip2-3-9">
  2283. <path
  2284. 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"
  2285. id="path955-6" />
  2286. </clipPath>
  2287. <radialGradient
  2288. r="20"
  2289. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  2290. cx="15.026"
  2291. cy="8.6258001"
  2292. gradientUnits="userSpaceOnUse"
  2293. fy="8.5088997"
  2294. fx="4.4590001"
  2295. id="radialGradient3029-4-7">
  2296. <stop
  2297. style="stop-color:#354bf9;stop-opacity:1"
  2298. offset="0"
  2299. stop-color="#c24251"
  2300. id="stop4170-8-8" />
  2301. <stop
  2302. style="stop-color:#58cdf0;stop-opacity:1"
  2303. offset="1"
  2304. stop-color="#a63643"
  2305. id="stop4176-3-2" />
  2306. </radialGradient>
  2307. <radialGradient
  2308. r="20.396999"
  2309. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  2310. cx="23.896"
  2311. cy="3.99"
  2312. gradientUnits="userSpaceOnUse"
  2313. id="radialGradient3032-3-5">
  2314. <stop
  2315. offset="0"
  2316. stop-color="#fff"
  2317. id="stop3244-9-33-7-0-9-4-2" />
  2318. <stop
  2319. offset=".26238"
  2320. stop-color="#ddd"
  2321. id="stop3246-3-5-0-8-5-0-5" />
  2322. <stop
  2323. offset=".66094"
  2324. stop-color="#abacae"
  2325. id="stop3248-1-7-8-8-1-8-6" />
  2326. <stop
  2327. offset="1"
  2328. stop-color="#89898b"
  2329. id="stop3250-9-3-0-5-1-4-5" />
  2330. </radialGradient>
  2331. <radialGradient
  2332. r="62.769001"
  2333. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  2334. cx="99.156998"
  2335. cy="186.17"
  2336. gradientUnits="userSpaceOnUse"
  2337. id="radialGradient3035-3-9">
  2338. <stop
  2339. offset="0"
  2340. stop-color="#3d3d3d"
  2341. id="stop3822-2-6-3-0-8" />
  2342. <stop
  2343. offset=".5"
  2344. stop-opacity=".49804"
  2345. stop-color="#686868"
  2346. id="stop3864-8-7-7-2-35" />
  2347. <stop
  2348. offset="1"
  2349. stop-opacity="0"
  2350. stop-color="#686868"
  2351. id="stop3824-1-2-5-4-9" />
  2352. </radialGradient>
  2353. <radialGradient
  2354. gradientUnits="userSpaceOnUse"
  2355. r="127.0051"
  2356. cy="186.51421"
  2357. cx="224.50391"
  2358. id="SVGID_4_-1-6">
  2359. <stop
  2360. id="stop27-7-2"
  2361. style="stop-color:#FFFFFF"
  2362. offset="0" />
  2363. <stop
  2364. id="stop29-6-0"
  2365. style="stop-color:#FDFEFF"
  2366. offset="0.3984" />
  2367. <stop
  2368. id="stop31-2-7"
  2369. style="stop-color:#F5FAFF"
  2370. offset="0.6131" />
  2371. <stop
  2372. id="stop33-6-2"
  2373. style="stop-color:#E7F3FF"
  2374. offset="0.7841" />
  2375. <stop
  2376. id="stop35-2-5"
  2377. style="stop-color:#D4EAFF"
  2378. offset="0.9311" />
  2379. <stop
  2380. id="stop37-5-3"
  2381. style="stop-color:#C8E4FF"
  2382. offset="1" />
  2383. </radialGradient>
  2384. <radialGradient
  2385. id="SVGID_5_-9-45"
  2386. cx="324.69339"
  2387. cy="286.66409"
  2388. r="26.769501"
  2389. gradientUnits="userSpaceOnUse">
  2390. <stop
  2391. offset="0"
  2392. style="stop-color:#FFFFFF"
  2393. id="stop50-2-8" />
  2394. <stop
  2395. offset="0.3984"
  2396. style="stop-color:#FDFEFF"
  2397. id="stop52-0-9" />
  2398. <stop
  2399. offset="0.6131"
  2400. style="stop-color:#F5FAFF"
  2401. id="stop54-5-0" />
  2402. <stop
  2403. offset="0.7841"
  2404. style="stop-color:#E7F3FF"
  2405. id="stop56-9-2" />
  2406. <stop
  2407. offset="0.9311"
  2408. style="stop-color:#D4EAFF"
  2409. id="stop58-7-4" />
  2410. <stop
  2411. offset="1"
  2412. style="stop-color:#C8E4FF"
  2413. id="stop60-2-72" />
  2414. </radialGradient>
  2415. <radialGradient
  2416. id="SVGID_6_-7-3"
  2417. cx="325"
  2418. cy="392.77249"
  2419. r="46.444901"
  2420. gradientUnits="userSpaceOnUse">
  2421. <stop
  2422. offset="0"
  2423. style="stop-color:#FFFFFF"
  2424. id="stop73-5-1" />
  2425. <stop
  2426. offset="0.3984"
  2427. style="stop-color:#FDFEFF"
  2428. id="stop75-3-1" />
  2429. <stop
  2430. offset="0.6131"
  2431. style="stop-color:#F5FAFF"
  2432. id="stop77-2-3" />
  2433. <stop
  2434. offset="0.7841"
  2435. style="stop-color:#E7F3FF"
  2436. id="stop79-0-6" />
  2437. <stop
  2438. offset="0.9311"
  2439. style="stop-color:#D4EAFF"
  2440. id="stop81-7-9" />
  2441. <stop
  2442. offset="1"
  2443. style="stop-color:#C8E4FF"
  2444. id="stop83-2-5" />
  2445. </radialGradient>
  2446. <clipPath
  2447. id="clipPath-349538100-0-1">
  2448. <g
  2449. transform="translate(0,-1004.4)"
  2450. id="g17-3-5">
  2451. <path
  2452. transform="matrix(15.333,0,0,11.5,415,878.86)"
  2453. 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"
  2454. id="path19-8-3"
  2455. inkscape:connector-curvature="0"
  2456. style="fill:#1890d0" />
  2457. </g>
  2458. </clipPath>
  2459. <clipPath
  2460. id="clipPath3914-3-2">
  2461. <g
  2462. transform="translate(0,-1004.4)"
  2463. id="g3912-6-4">
  2464. <path
  2465. transform="matrix(15.333,0,0,11.5,415,878.86)"
  2466. 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"
  2467. id="path3910-2-6"
  2468. inkscape:connector-curvature="0"
  2469. style="fill:#1890d0" />
  2470. </g>
  2471. </clipPath>
  2472. <clipPath
  2473. id="clipPath3920-2-7">
  2474. <g
  2475. transform="translate(0,-1004.4)"
  2476. id="g3918-2-5">
  2477. <path
  2478. transform="matrix(15.333,0,0,11.5,415,878.86)"
  2479. 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"
  2480. id="path3916-9-2"
  2481. inkscape:connector-curvature="0"
  2482. style="fill:#1890d0" />
  2483. </g>
  2484. </clipPath>
  2485. <filter
  2486. id="alpha-3-17"
  2487. width="100%"
  2488. height="100%"
  2489. x="0%"
  2490. y="0%">
  2491. <feColorMatrix
  2492. in="SourceGraphic"
  2493. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  2494. id="feColorMatrix929-8-1" />
  2495. </filter>
  2496. <mask
  2497. id="mask0-2-3">
  2498. <g
  2499. filter="url(#alpha)"
  2500. id="g934-8-2"
  2501. style="filter:url(#alpha-3-17)">
  2502. <rect
  2503. width="384"
  2504. height="384"
  2505. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2506. id="rect932-5-5" />
  2507. </g>
  2508. </mask>
  2509. <clipPath
  2510. id="clip1-4-0">
  2511. <rect
  2512. width="384"
  2513. height="384"
  2514. id="rect937-5-9" />
  2515. </clipPath>
  2516. <g
  2517. id="surface5-6-5"
  2518. clip-path="url(#clip1-4-0)">
  2519. <path
  2520. 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"
  2521. style="fill:rgb(100%,100%,100%)"
  2522. id="path940-7-9" />
  2523. </g>
  2524. <mask
  2525. id="mask1-7-9">
  2526. <g
  2527. filter="url(#alpha)"
  2528. id="g945-3-9"
  2529. style="filter:url(#alpha-3-17)">
  2530. <rect
  2531. width="384"
  2532. height="384"
  2533. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2534. id="rect943-6-5" />
  2535. </g>
  2536. </mask>
  2537. <clipPath
  2538. id="clip2-4-61">
  2539. <rect
  2540. width="384"
  2541. height="384"
  2542. id="rect948-5-8" />
  2543. </clipPath>
  2544. <g
  2545. id="surface8-5-0"
  2546. clip-path="url(#clip2-4-61)">
  2547. <path
  2548. 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"
  2549. style="fill:rgb(0%,0%,0%)"
  2550. id="path951-0-5" />
  2551. </g>
  2552. <filter
  2553. y="-0.082800001"
  2554. x="-0.082800001"
  2555. width="1.1655999"
  2556. height="1.1655999"
  2557. id="c-3-3"
  2558. style="color-interpolation-filters:sRGB">
  2559. <feGaussianBlur
  2560. id="feGaussianBlur10-1-6"
  2561. stdDeviation="2.1101835" />
  2562. </filter>
  2563. <filter
  2564. y="-0.015513"
  2565. x="-0.015688"
  2566. width="1.031376"
  2567. height="1.031026"
  2568. id="a-2-6"
  2569. style="color-interpolation-filters:sRGB">
  2570. <feGaussianBlur
  2571. id="feGaussianBlur2-9-9"
  2572. stdDeviation=".7986332" />
  2573. </filter>
  2574. <filter
  2575. id="Xz97CxlifTHANJtERI5kl0UUr7WfRYvq-1"
  2576. width="400%"
  2577. height="400%"
  2578. x="-200%"
  2579. y="-200%"
  2580. color-interpolation-filters="sRGB"
  2581. filterUnits="objectBoundingBox">
  2582. <feGaussianBlur
  2583. in="SourceGraphic"
  2584. stdDeviation="4.294"
  2585. id="feGaussianBlur1005-4" />
  2586. <feOffset
  2587. dx="0"
  2588. dy="4"
  2589. result="pf_100_offsetBlur"
  2590. id="feOffset1007-1" />
  2591. <feFlood
  2592. flood-opacity=".4"
  2593. id="feFlood1009-7" />
  2594. <feComposite
  2595. in2="pf_100_offsetBlur"
  2596. operator="in"
  2597. result="pf_100_dropShadow"
  2598. id="feComposite1011-2" />
  2599. <feBlend
  2600. in="SourceGraphic"
  2601. in2="pf_100_dropShadow"
  2602. mode="normal"
  2603. id="feBlend1013-0" />
  2604. </filter>
  2605. <filter
  2606. id="4Gm5ayg2wEcihmTWLHNpl5NooRhnv9nx-2"
  2607. width="400%"
  2608. height="400%"
  2609. x="-200%"
  2610. y="-200%"
  2611. color-interpolation-filters="sRGB"
  2612. filterUnits="objectBoundingBox">
  2613. <feGaussianBlur
  2614. stdDeviation="4.294"
  2615. id="feGaussianBlur1042-5" />
  2616. </filter>
  2617. <clipPath
  2618. id="clipPath849">
  2619. <rect
  2620. width="384"
  2621. height="384"
  2622. id="rect847" />
  2623. </clipPath>
  2624. <clipPath
  2625. id="clipPath853">
  2626. <rect
  2627. width="384"
  2628. height="384"
  2629. id="rect851" />
  2630. </clipPath>
  2631. <clipPath
  2632. id="clipPath857">
  2633. <rect
  2634. width="384"
  2635. height="384"
  2636. id="rect855" />
  2637. </clipPath>
  2638. <filter
  2639. filterUnits="objectBoundingBox"
  2640. color-interpolation-filters="sRGB"
  2641. y="-200%"
  2642. x="-200%"
  2643. height="400%"
  2644. width="400%"
  2645. id="xPHBR2KRsqNJJmxgfSMnWsjFL63MuKr0-5">
  2646. <feGaussianBlur
  2647. id="feGaussianBlur823-5"
  2648. stdDeviation="4.294"
  2649. in="SourceGraphic" />
  2650. <feOffset
  2651. id="feOffset825-5"
  2652. result="pf_100_offsetBlur"
  2653. dy="4"
  2654. dx="0" />
  2655. <feFlood
  2656. id="feFlood827-1"
  2657. flood-opacity=".4" />
  2658. <feComposite
  2659. id="feComposite829-3"
  2660. result="pf_100_dropShadow"
  2661. operator="in"
  2662. in2="pf_100_offsetBlur" />
  2663. <feBlend
  2664. id="feBlend831-9"
  2665. mode="normal"
  2666. in2="pf_100_dropShadow"
  2667. in="SourceGraphic" />
  2668. </filter>
  2669. <filter
  2670. filterUnits="objectBoundingBox"
  2671. color-interpolation-filters="sRGB"
  2672. y="-200%"
  2673. x="-200%"
  2674. height="400%"
  2675. width="400%"
  2676. id="2JmMAOqgjSUXbdZfecnmpMzAW6swRgvN-1">
  2677. <feGaussianBlur
  2678. id="feGaussianBlur858-5"
  2679. stdDeviation="4.294" />
  2680. </filter>
  2681. <linearGradient
  2682. id="linearGradient1225">
  2683. <stop
  2684. id="stop1221"
  2685. offset="0"
  2686. style="stop-color:#f37329;stop-opacity:1" />
  2687. <stop
  2688. id="stop1223"
  2689. offset="1"
  2690. style="stop-color:#e95420;stop-opacity:1" />
  2691. </linearGradient>
  2692. <linearGradient
  2693. xlink:href="#linearGradient4806"
  2694. id="linearGradient3118-0"
  2695. gradientUnits="userSpaceOnUse"
  2696. gradientTransform="matrix(4.16388,0,0,4.16388,-236.03265,-50.036246)"
  2697. x1="71.204407"
  2698. y1="15.369057"
  2699. x2="71.204407"
  2700. y2="40.495617" />
  2701. <radialGradient
  2702. xlink:href="#linearGradient3820-7-2-8-6"
  2703. id="radialGradient3163-3"
  2704. gradientUnits="userSpaceOnUse"
  2705. gradientTransform="matrix(0.6869404,0,0,0.21461693,-4.02174,68.573331)"
  2706. cx="99.157013"
  2707. cy="186.17059"
  2708. fx="99.157013"
  2709. fy="186.17059"
  2710. r="62.769119" />
  2711. <linearGradient
  2712. gradientUnits="userSpaceOnUse"
  2713. y2="118.04783"
  2714. x2="64.5"
  2715. y1="13.998179"
  2716. x1="64.5"
  2717. id="linearGradient1227"
  2718. xlink:href="#linearGradient1225" />
  2719. </defs>
  2720. <sodipodi:namedview
  2721. pagecolor="#ffffff"
  2722. bordercolor="#666666"
  2723. borderopacity="1"
  2724. objecttolerance="10"
  2725. gridtolerance="10"
  2726. guidetolerance="10"
  2727. inkscape:pageopacity="0"
  2728. inkscape:pageshadow="2"
  2729. inkscape:window-width="1920"
  2730. inkscape:window-height="1030"
  2731. id="namedview12"
  2732. showgrid="false"
  2733. inkscape:zoom="3.4766084"
  2734. inkscape:cx="-57.568505"
  2735. inkscape:cy="15.480172"
  2736. inkscape:window-x="0"
  2737. inkscape:window-y="26"
  2738. inkscape:window-maximized="1"
  2739. inkscape:current-layer="svg10" />
  2740. <g
  2741. fill="#c185b1"
  2742. opacity=".99"
  2743. transform="matrix(1.1503549 0 0 1.1503549 -4.486125 -7.525565)"
  2744. id="g6"
  2745. style="fill:#83a2d1;fill-opacity:1">
  2746. <path
  2747. d="m44.322082 27.405077a19.729762 19.729765 0 0 1 -19.729762 19.729765 19.729762 19.729765 0 0 1 -19.7297621-19.729765 19.729762 19.729765 0 0 1 19.7297621-19.7297632 19.729762 19.729765 0 0 1 19.729762 19.7297632z"
  2748. id="path2"
  2749. style="fill:#83a2d1;fill-opacity:1" />
  2750. <path
  2751. d="m44.322082 27.405077a19.729762 19.729765 0 0 1 -19.729762 19.729765 19.729762 19.729765 0 0 1 -19.7297621-19.729765 19.729762 19.729765 0 0 1 19.7297621-19.7297632 19.729762 19.729765 0 0 1 19.729762 19.7297632z"
  2752. id="path4"
  2753. style="fill:#83a2d1;fill-opacity:1" />
  2754. </g>
  2755. <path
  2756. inkscape:connector-curvature="0"
  2757. d=""
  2758. style="opacity:1;fill:url(#linearGradient948);fill-opacity:1;stroke:none;stroke-width:2.16342402;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03831416;paint-order:fill markers stroke"
  2759. id="path864"
  2760. r="28.431282"
  2761. cy="97.610519"
  2762. cx="103.31834" />
  2763. <g
  2764. id="g4866"
  2765. transform="matrix(3.6852994,-0.56691334,0.56691334,3.6852994,312.53184,-937.29284)"
  2766. style="opacity:0.38900003">
  2767. <rect
  2768. style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.15000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03921569;paint-order:fill markers stroke"
  2769. id="rect4848"
  2770. width="25.830492"
  2771. height="29.56739"
  2772. x="-61.94516"
  2773. y="253.76543"
  2774. rx="1.4423118"
  2775. ry="1.4423118"
  2776. transform="rotate(-0.01865124)" />
  2777. <rect
  2778. transform="rotate(-0.01865124)"
  2779. ry="1.4423118"
  2780. rx="1.4423118"
  2781. y="253.76543"
  2782. x="-61.94516"
  2783. height="29.56739"
  2784. width="25.830492"
  2785. id="rect4850"
  2786. style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.30000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03921569;paint-order:fill markers stroke" />
  2787. <rect
  2788. style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.44999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03921569;paint-order:fill markers stroke"
  2789. id="rect4852"
  2790. width="25.830492"
  2791. height="29.56739"
  2792. x="-61.94516"
  2793. y="253.76543"
  2794. rx="1.4423118"
  2795. ry="1.4423118"
  2796. transform="rotate(-0.01865124)" />
  2797. <rect
  2798. transform="rotate(-0.01865124)"
  2799. ry="1.4423118"
  2800. rx="1.4423118"
  2801. y="253.76543"
  2802. x="-61.94516"
  2803. height="29.56739"
  2804. width="25.830492"
  2805. id="rect4854"
  2806. style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.60000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03921569;paint-order:fill markers stroke" />
  2807. <rect
  2808. style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.85000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03921569;paint-order:fill markers stroke"
  2809. id="rect4856"
  2810. width="25.830492"
  2811. height="29.56739"
  2812. x="-61.94516"
  2813. y="253.76543"
  2814. rx="1.4423118"
  2815. ry="1.4423118"
  2816. transform="rotate(-0.01865124)" />
  2817. <rect
  2818. transform="rotate(-0.01865124)"
  2819. ry="1.4423118"
  2820. rx="1.4423118"
  2821. y="253.76543"
  2822. x="-61.94516"
  2823. height="29.56739"
  2824. width="25.830492"
  2825. id="rect4858"
  2826. style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03921569;paint-order:fill markers stroke" />
  2827. </g>
  2828. <rect
  2829. style="opacity:1;fill:url(#linearGradient993);fill-opacity:1;stroke:none;stroke-width:1.37192309;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.14828898;paint-order:fill markers stroke"
  2830. id="rect4587"
  2831. width="96.312836"
  2832. height="110.24642"
  2833. x="220.72105"
  2834. y="67.471504"
  2835. rx="5.3778739"
  2836. ry="5.3778739"
  2837. transform="rotate(-8.7639662)" />
  2838. <path
  2839. inkscape:connector-curvature="0"
  2840. d=""
  2841. style="opacity:1;fill:url(#linearGradient1194);fill-opacity:1;stroke:none;stroke-width:2.16342402;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.03831416;paint-order:fill markers stroke"
  2842. id="path864-2"
  2843. r="28.431282"
  2844. cy="97.610519"
  2845. cx="103.31834" />
  2846. <path
  2847. inkscape:connector-curvature="0"
  2848. style="opacity:0.2;fill:#ffffff"
  2849. d="m -28.044573,0.7624215 c -11.110903,0 -20,8.889222 -20,19.9999995 0,0.167705 0.0077,0.33333 0.01172,0.5 0.262786,-10.875512 9.045085,-19.4999995 19.988281,-19.4999995 1.641784,0 3.076508,1.3304884 3.289062,2.9335938 0.02844,-0.1901595 0.04297,-0.387083 0.04297,-0.5996094 -10e-7,-1.7776644 -1.554264,-3.3339844 -3.332032,-3.3339844 z m 1.613281,8.308594 c -0.02818,0.152235 -0.05664,0.304379 -0.05664,0.470703 0,1.7777655 1.554363,3.3320315 3.332031,3.3320315 h 4 c 6.099753,0 10.906921,4.702909 11.09375,10.749999 0.00848,-0.212636 0.017578,-0.42426 0.017578,-0.638672 0,-6.221876 -4.889438,-11.111327 -11.111328,-11.111327 h -4 c -1.597388,0 -3.004199,-1.258095 -3.275391,-2.8027345 z"
  2850. id="path1040" />
  2851. <path
  2852. inkscape:connector-curvature="0"
  2853. id="path851-3"
  2854. d="m 30.06098,7.2715132 c -0.497868,0.5740046 -0.742456,1.2813716 -0.742456,1.9860716 0,0.522416 0.134711,1.0428692 0.399133,1.5058212 -0.795629,-0.590754 -1.665525,-1.0973402 -2.60018,-1.5027392 -0.187616,-0.08144 -0.40592,0.0046 -0.487302,0.192413 -0.08144,0.187671 0.0046,0.40597 0.19241,0.48741 1.777272,0.7708862 3.307091,1.9286162 4.512727,3.3457152 -0.513749,-0.354576 -1.116664,-0.536173 -1.722445,-0.536173 -0.702621,0 -1.4079,0.243217 -1.981232,0.738379 1.067601,1.234413 2.913008,1.397018 4.178539,0.391095 1.09301,1.455242 1.864496,3.142938 2.241559,4.943998 -0.499391,-0.09907 -1.104492,-0.343348 -1.659155,-0.905032 0,0 -0.494833,-0.417542 -1.237126,-0.56193 l -7.24e-4,3.15e-4 c -0.14646,-0.02869 -0.302438,-0.04652 -0.465947,-0.04843 -0.09811,-0.0011 -0.19891,0.0033 -0.302044,0.01487 -0.962767,0.107193 -2.129661,0.811778 -3.167946,3.041139 -0.0025,0.0045 -0.0046,0.0093 -0.007,0.01422 0,0 -2.356924,-2.081317 -4.848121,-2.096702 -1.615282,-0.0097 -3.97599,0.818209 -6.425825,0.784169 -1.329715,-0.01899 -2.685527,-0.292512 -3.963672,-1.091277 0,0 -0.125743,0.80948 -0.05141,1.995651 0.01881,0.315041 0.05312,0.656429 0.106994,1.015658 0.07896,0.529033 0.201551,1.097825 0.386802,1.680288 0.0225,0.07 0.04595,0.140354 0.06979,0.210464 0.10618,0.30946 0.229781,0.621097 0.375352,0.933208 l 3.61e-4,3.62e-4 c 0.235432,0.505125 0.525654,1.008901 0.883237,1.494593 0.729108,0.0018 1.790631,-0.06196 2.434298,-0.341782 0.04046,-0.01758 0.07938,-0.03589 0.116461,-0.05526 0.06969,-0.03649 0.144329,-0.05306 0.217507,-0.05185 0.160996,0.0025 0.314998,0.09151 0.394507,0.244255 0.116323,0.221881 0.03031,0.496092 -0.19186,0.611793 -0.05354,0.02858 -0.10937,0.05477 -0.167644,0.08014 -0.590917,0.256879 -1.376016,0.361464 -2.048709,0.399903 5.8e-5,5.4e-5 5.8e-5,1.56e-4 1.12e-4,1.56e-4 0.476927,0.488593 1.039562,0.945193 1.703292,1.350613 0.656519,-0.216805 1.46444,-0.52387 1.842209,-0.806843 0.07672,-0.05763 0.165723,-0.08726 0.254821,-0.09059 0.01273,-3.62e-4 0.0255,-3.62e-4 0.0382,1.59e-4 0.130573,0.0061 0.25747,0.06834 0.342111,0.181072 0.150476,0.200408 0.109823,0.484488 -0.0907,0.635018 -0.235746,0.177024 -0.567671,0.348441 -0.923854,0.503374 -0.122639,0.05331 -0.248096,0.104519 -0.373152,0.153662 -0.390346,-0.177223 -0.753153,-0.369784 -1.089519,-0.575799 0.336402,0.206044 0.699126,0.398663 1.089519,0.575908 0.496852,0.224645 1.038853,0.424321 1.629542,0.591763 0.427194,0.122354 0.879551,0.227861 1.358539,0.314481 0.25891,0.04774 0.525727,0.08941 0.800133,0.125815 0,0 -0.0056,0.007 -0.01606,0.0208 -0.01508,0.01838 -0.03964,0.04955 -0.07441,0.09103 -0.02402,0.02959 -0.05387,0.06434 -0.0874,0.104021 -0.498429,0.580205 -2.009658,2.178684 -4.065601,2.874594 -0.458981,0.155269 -0.661852,0.690071 -0.42357,1.112306 0.576096,1.021547 1.872502,2.580194 4.478167,2.770794 0.373257,0.02699 0.714847,-0.213126 0.807726,-0.576128 0.211231,-0.826718 0.788955,-2.364387 2.313214,-3.604943 0.106238,-0.08645 0.222753,-0.156915 0.346517,-0.210681 0.1959,-0.08516 0.409841,-0.128709 0.626766,-0.127356 2.185626,0.01364 4.150728,-0.842646 5.593326,-2.227137 1.76756,-1.696046 2.751601,-4.185441 2.398854,-6.840473 -0.158314,-1.193446 0.30886,-2.352833 1.184294,-3.105646 0.141291,0.895735 0.186094,1.815389 0.124825,2.745151 -0.01346,0.204184 0.141226,0.380705 0.345414,0.394177 0.0083,3.62e-4 0.01653,7.23e-4 0.02478,7.23e-4 0.19348,0 0.356451,-0.150229 0.369412,-0.346072 0.07267,-1.102991 0.0046,-2.192629 -0.19043,-3.248192 0.06824,-0.0352 0.137622,-0.06889 0.208811,-0.09984 0.02496,-0.01082 0.05021,-0.02116 0.0754,-0.03147 0,0 -0.11459,0.02384 -0.302377,0.03346 -0.173121,-0.898901 -0.438607,-1.772563 -0.788792,-2.607665 1.388369,-0.691349 2.044881,-2.340986 1.470377,-3.813863 -1.198513,0.467547 -1.930927,1.612902 -1.930927,2.825502 0,0.0022 1.05e-4,0.0043 1.08e-4,0.0064 -0.766502,-1.476365 -1.808361,-2.804883 -3.076312,-3.904488 0.953423,-1.261265 0.779213,-3.0627382 -0.432374,-4.1149148 z M 14.499961,26.192446 c -0.209976,-0.214411 -0.403218,-0.435434 -0.581306,-0.660556 0.178081,0.225129 0.371337,0.446138 0.581306,0.660556 z M 30.740579,19.21669 a 0.4537396,0.4537396 0 0 1 0.453728,0.453728 0.4537396,0.4537396 0 0 1 -0.453728,0.453728 0.4537396,0.4537396 0 0 1 -0.453836,-0.453728 0.4537396,0.4537396 0 0 1 0.453836,-0.453728 z m -18.817683,0.753461 c 0.191107,0.07856 0.432707,0.170053 0.714272,0.262089 0.734744,0.239353 1.744284,0.479274 2.85082,0.485757 0.249837,0.0014 0.452173,0.205906 0.450426,0.456698 -0.0015,0.18525 -0.112988,0.343952 -0.272765,0.413444 -0.05658,0.02456 -0.118284,0.03759 -0.183604,0.03764 -1.398527,-0.0089 -2.634684,-0.345559 -3.452159,-0.639973 -0.05388,-0.359226 -0.08817,-0.700617 -0.10699,-1.015658 z m 3.815403,2.7457 v 1.09e-4 c 0.193552,-0.0029 0.374288,0.119456 0.437435,0.312835 0.07332,0.224756 -0.03734,0.464934 -0.249869,0.557306 -0.01273,0.0055 -0.02626,0.01074 -0.04029,0.01487 -0.79262,0.258852 -2.038895,0.261605 -3.023525,0.209361 l -3.18e-4,-7.23e-4 c -0.145575,-0.312112 -0.269176,-0.623749 -0.375356,-0.933213 1.016815,0.07315 2.382463,0.102165 3.117203,-0.138031 0.04474,-0.01461 0.09006,-0.02192 0.134732,-0.02257 z m 5.086986,4.943337 c 0.116135,7.23e-4 0.231876,0.04596 0.319766,0.135061 0.176232,0.178038 0.174416,0.465055 -0.0041,0.641627 -0.182823,0.180399 -0.515048,0.393432 -0.859901,0.589556 -0.478989,-0.08662 -0.931345,-0.192127 -1.358539,-0.314481 0.557213,-0.270629 1.350552,-0.693312 1.580887,-0.920775 0.08928,-0.08828 0.205729,-0.131795 0.32186,-0.130988 z"
  2855. style="fill:#ffffff;stroke-width:0.05635817" />
  2856. </svg>