slack.svg 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319
  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="svg16"
  16. sodipodi:docname="slack.svg"
  17. inkscape:version="0.92.1 r15371">
  18. <metadata
  19. id="metadata22">
  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="defs20">
  32. <linearGradient
  33. gradientTransform="matrix(0.89553576,0,0,-0.89663265,6.6836208,69.705837)"
  34. gradientUnits="userSpaceOnUse"
  35. xlink:href="#linearGradient4113"
  36. id="linearGradient3149"
  37. y2="3.4508991"
  38. x2="76.523361"
  39. y1="-9.023138"
  40. x1="76.523361" />
  41. <linearGradient
  42. id="linearGradient4113">
  43. <stop
  44. offset="0"
  45. style="stop-color:#000000;stop-opacity:1"
  46. id="stop4115" />
  47. <stop
  48. offset="1"
  49. style="stop-color:#000000;stop-opacity:0"
  50. id="stop4117" />
  51. </linearGradient>
  52. <linearGradient
  53. gradientTransform="matrix(2.7297298,0,0,2.7297298,-544.90791,-119.49824)"
  54. gradientUnits="userSpaceOnUse"
  55. xlink:href="#linearGradient3924-776"
  56. id="linearGradient3159"
  57. y2="43"
  58. x2="23.99999"
  59. y1="4.999989"
  60. x1="23.99999" />
  61. <linearGradient
  62. id="linearGradient3924-776">
  63. <stop
  64. offset="0"
  65. style="stop-color:#ffffff;stop-opacity:1"
  66. id="stop3124" />
  67. <stop
  68. offset="0.06316455"
  69. style="stop-color:#ffffff;stop-opacity:0.23529412"
  70. id="stop3126" />
  71. <stop
  72. offset="0.95056331"
  73. style="stop-color:#ffffff;stop-opacity:0.15686275"
  74. id="stop3128" />
  75. <stop
  76. offset="1"
  77. style="stop-color:#ffffff;stop-opacity:0.39215687"
  78. id="stop3130" />
  79. </linearGradient>
  80. <radialGradient
  81. gradientTransform="matrix(0,25.083279,-30.794253,0,372.81658,-208.0918)"
  82. gradientUnits="userSpaceOnUse"
  83. xlink:href="#linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-8-3-3-6-4-8-8-8-5"
  84. id="radialGradient3395"
  85. fy="9.9571075"
  86. fx="6.2001843"
  87. r="12.671875"
  88. cy="9.9571075"
  89. cx="6.7304144" />
  90. <linearGradient
  91. id="linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-8-3-3-6-4-8-8-8-5">
  92. <stop
  93. offset="0"
  94. style="stop-color:#919caf;stop-opacity:1"
  95. id="stop3750-1-0-7-6-6-1-3-9-3" />
  96. <stop
  97. offset="0.26238"
  98. style="stop-color:#68758e;stop-opacity:1"
  99. id="stop3752-3-7-4-0-32-8-923-0-7" />
  100. <stop
  101. offset="0.704952"
  102. style="stop-color:#485a6c;stop-opacity:1"
  103. id="stop3754-1-8-5-2-7-6-7-1-9" />
  104. <stop
  105. offset="1"
  106. style="stop-color:#444c5c;stop-opacity:1"
  107. id="stop3756-1-6-2-6-6-1-96-6-0" />
  108. </linearGradient>
  109. <radialGradient
  110. gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
  111. gradientUnits="userSpaceOnUse"
  112. xlink:href="#linearGradient3688-166-749-5"
  113. id="radialGradient2455-1"
  114. fy="43.5"
  115. fx="4.9929786"
  116. r="2.5"
  117. cy="43.5"
  118. cx="4.9929786" />
  119. <linearGradient
  120. id="linearGradient3688-166-749-5">
  121. <stop
  122. offset="0"
  123. style="stop-color:#181818;stop-opacity:1"
  124. id="stop2883-0" />
  125. <stop
  126. offset="1"
  127. style="stop-color:#181818;stop-opacity:0"
  128. id="stop2885-5" />
  129. </linearGradient>
  130. <radialGradient
  131. gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
  132. gradientUnits="userSpaceOnUse"
  133. xlink:href="#linearGradient3688-166-749-5"
  134. id="radialGradient2457-5"
  135. fy="43.5"
  136. fx="4.9929786"
  137. r="2.5"
  138. cy="43.5"
  139. cx="4.9929786" />
  140. <linearGradient
  141. gradientUnits="userSpaceOnUse"
  142. xlink:href="#linearGradient3702-501-757-0"
  143. id="linearGradient2459-7"
  144. y2="39.999443"
  145. x2="25.058096"
  146. y1="47.027729"
  147. x1="25.058096" />
  148. <linearGradient
  149. id="linearGradient3702-501-757-0">
  150. <stop
  151. offset="0"
  152. style="stop-color:#181818;stop-opacity:0"
  153. id="stop2895-0" />
  154. <stop
  155. offset="0.5"
  156. style="stop-color:#181818;stop-opacity:1"
  157. id="stop2897-2" />
  158. <stop
  159. offset="1"
  160. style="stop-color:#181818;stop-opacity:0"
  161. id="stop2899-6" />
  162. </linearGradient>
  163. <radialGradient
  164. gradientTransform="matrix(1.5563924,0,0,0.16978827,70.270358,102.13029)"
  165. gradientUnits="userSpaceOnUse"
  166. xlink:href="#linearGradient4113"
  167. id="radialGradient4377"
  168. fy="93.467628"
  169. fx="-4.0287771"
  170. r="35.338131"
  171. cy="93.467628"
  172. cx="-4.0287771" />
  173. <filter
  174. style="color-interpolation-filters:sRGB;"
  175. inkscape:label="Colorize"
  176. id="filter3907">
  177. <feComposite
  178. in2="SourceGraphic"
  179. operator="arithmetic"
  180. k1="0"
  181. k2="1"
  182. result="composite1"
  183. id="feComposite3909" />
  184. <feColorMatrix
  185. in="composite1"
  186. values="1"
  187. type="saturate"
  188. result="colormatrix1"
  189. id="feColorMatrix3911" />
  190. <feFlood
  191. flood-opacity="0.854902"
  192. flood-color="rgb(23,141,46)"
  193. result="flood1"
  194. id="feFlood3913" />
  195. <feBlend
  196. in="flood1"
  197. in2="colormatrix1"
  198. mode="multiply"
  199. result="blend1"
  200. id="feBlend3915" />
  201. <feBlend
  202. in2="blend1"
  203. mode="screen"
  204. result="blend2"
  205. id="feBlend3917" />
  206. <feColorMatrix
  207. in="blend2"
  208. values="1"
  209. type="saturate"
  210. result="colormatrix2"
  211. id="feColorMatrix3919" />
  212. <feComposite
  213. in="colormatrix2"
  214. in2="SourceGraphic"
  215. operator="in"
  216. k2="1"
  217. result="composite2"
  218. id="feComposite3921" />
  219. </filter>
  220. <radialGradient
  221. gradientTransform="matrix(0,25.083279,-30.794253,0,-170.57782,-329.07655)"
  222. gradientUnits="userSpaceOnUse"
  223. xlink:href="#linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-8-3-3-6-4-8-8-8-5-2"
  224. id="radialGradient3395-6"
  225. fy="9.9571075"
  226. fx="6.2001843"
  227. r="12.671875"
  228. cy="9.9571075"
  229. cx="6.7304144" />
  230. <linearGradient
  231. id="linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-8-3-3-6-4-8-8-8-5-2">
  232. <stop
  233. offset="0"
  234. style="stop-color:#95a3ab;stop-opacity:1"
  235. id="stop3750-1-0-7-6-6-1-3-9-3-9" />
  236. <stop
  237. offset="0.26238"
  238. style="stop-color:#8a715e;stop-opacity:1"
  239. id="stop3752-3-7-4-0-32-8-923-0-7-1" />
  240. <stop
  241. offset="0.704952"
  242. style="stop-color:#715344;stop-opacity:1"
  243. id="stop3754-1-8-5-2-7-6-7-1-9-2" />
  244. <stop
  245. offset="1"
  246. style="stop-color:#273445;stop-opacity:1"
  247. id="stop3756-1-6-2-6-6-1-96-6-0-7" />
  248. </linearGradient>
  249. <radialGradient
  250. gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
  251. gradientUnits="userSpaceOnUse"
  252. xlink:href="#linearGradient3688-166-749-5"
  253. id="radialGradient2455-1-0"
  254. fy="43.5"
  255. fx="4.9929786"
  256. r="2.5"
  257. cy="43.5"
  258. cx="4.9929786" />
  259. <radialGradient
  260. gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
  261. gradientUnits="userSpaceOnUse"
  262. xlink:href="#linearGradient3688-166-749-5"
  263. id="radialGradient2457-5-6"
  264. fy="43.5"
  265. fx="4.9929786"
  266. r="2.5"
  267. cy="43.5"
  268. cx="4.9929786" />
  269. <radialGradient
  270. gradientTransform="matrix(1.5563924,0,0,0.16978827,-473.12404,-18.85446)"
  271. gradientUnits="userSpaceOnUse"
  272. xlink:href="#linearGradient4113"
  273. id="radialGradient4377-6"
  274. fy="93.467628"
  275. fx="-4.0287771"
  276. r="35.338131"
  277. cy="93.467628"
  278. cx="-4.0287771" />
  279. <style
  280. type="text/css"
  281. id="current-color-scheme">
  282. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  283. </style>
  284. <style
  285. type="text/css"
  286. id="current-color-scheme-3">
  287. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  288. </style>
  289. <style
  290. type="text/css"
  291. id="current-color-scheme-7">
  292. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  293. </style>
  294. <style
  295. type="text/css"
  296. id="current-color-scheme-35">
  297. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  298. </style>
  299. <style
  300. type="text/css"
  301. id="current-color-scheme-9">
  302. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  303. </style>
  304. <style
  305. type="text/css"
  306. id="current-color-scheme-2">
  307. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  308. </style>
  309. <style
  310. type="text/css"
  311. id="current-color-scheme-0">
  312. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  313. </style>
  314. <style
  315. type="text/css"
  316. id="current-color-scheme-36">
  317. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  318. </style>
  319. <style
  320. type="text/css"
  321. id="current-color-scheme-6">
  322. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  323. </style>
  324. <style
  325. type="text/css"
  326. id="current-color-scheme-61">
  327. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  328. </style>
  329. <style
  330. type="text/css"
  331. id="current-color-scheme-79">
  332. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  333. </style>
  334. <style
  335. type="text/css"
  336. id="current-color-scheme-23">
  337. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  338. </style>
  339. <style
  340. type="text/css"
  341. id="current-color-scheme-92">
  342. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  343. </style>
  344. <style
  345. type="text/css"
  346. id="current-color-scheme-97">
  347. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  348. </style>
  349. <style
  350. type="text/css"
  351. id="current-color-scheme-612">
  352. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  353. </style>
  354. <style
  355. id="current-color-scheme-1"
  356. type="text/css">
  357. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  358. </style>
  359. <style
  360. id="current-color-scheme-3-0"
  361. type="text/css">
  362. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  363. </style>
  364. <style
  365. id="current-color-scheme-7-6"
  366. type="text/css">
  367. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  368. </style>
  369. <style
  370. id="current-color-scheme-35-3"
  371. type="text/css">
  372. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  373. </style>
  374. <style
  375. id="current-color-scheme-9-2"
  376. type="text/css">
  377. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  378. </style>
  379. <style
  380. id="current-color-scheme-2-0"
  381. type="text/css">
  382. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  383. </style>
  384. <style
  385. id="current-color-scheme-0-6"
  386. type="text/css">
  387. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  388. </style>
  389. <style
  390. id="current-color-scheme-36-1"
  391. type="text/css">
  392. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  393. </style>
  394. <style
  395. id="current-color-scheme-6-5"
  396. type="text/css">
  397. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  398. </style>
  399. <style
  400. id="current-color-scheme-61-5"
  401. type="text/css">
  402. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  403. </style>
  404. <style
  405. id="current-color-scheme-79-4"
  406. type="text/css">
  407. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  408. </style>
  409. <style
  410. id="current-color-scheme-23-7"
  411. type="text/css">
  412. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  413. </style>
  414. <style
  415. id="current-color-scheme-92-6"
  416. type="text/css">
  417. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  418. </style>
  419. <style
  420. id="current-color-scheme-97-5"
  421. type="text/css">
  422. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  423. </style>
  424. <style
  425. id="current-color-scheme-612-6"
  426. type="text/css">
  427. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  428. </style>
  429. <linearGradient
  430. inkscape:collect="always"
  431. id="linearGradient3361">
  432. <stop
  433. style="stop-color:#0068e0;stop-opacity:1;"
  434. offset="0"
  435. id="stop3363" />
  436. <stop
  437. style="stop-color:#00acf4;stop-opacity:1"
  438. offset="1"
  439. id="stop3365" />
  440. </linearGradient>
  441. <linearGradient
  442. id="linearGradient3026"
  443. y2="40.495998"
  444. gradientUnits="userSpaceOnUse"
  445. x2="71.204002"
  446. gradientTransform="matrix(1.5564685,0,0,1.58743,-88.730662,-20.236087)"
  447. y1="15.369"
  448. x1="71.204002"
  449. xlink:href="#linearGradient3361">
  450. <stop
  451. id="stop4808-4"
  452. stop-color="#fff"
  453. offset="0" />
  454. <stop
  455. id="stop4810-0"
  456. stop-color="#fff"
  457. stop-opacity=".23529"
  458. offset=".42448" />
  459. <stop
  460. id="stop4812-8"
  461. stop-color="#fff"
  462. stop-opacity=".15686"
  463. offset=".82090" />
  464. <stop
  465. id="stop4814-0"
  466. stop-color="#fff"
  467. stop-opacity=".39216"
  468. offset="1" />
  469. </linearGradient>
  470. <radialGradient
  471. id="radialGradient3029"
  472. fx="4.4590001"
  473. fy="8.5088997"
  474. gradientUnits="userSpaceOnUse"
  475. cy="8.6258001"
  476. cx="15.026"
  477. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  478. r="20">
  479. <stop
  480. id="stop4170"
  481. stop-color="#c24251"
  482. offset="0" />
  483. <stop
  484. id="stop4172"
  485. stop-color="#c24251"
  486. offset=".26238" />
  487. <stop
  488. id="stop4174"
  489. stop-color="#a63643"
  490. offset=".66094" />
  491. <stop
  492. id="stop4176"
  493. stop-color="#a63643"
  494. offset="1" />
  495. </radialGradient>
  496. <radialGradient
  497. id="radialGradient3032"
  498. gradientUnits="userSpaceOnUse"
  499. cy="3.99"
  500. cx="23.896"
  501. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  502. r="20.396999">
  503. <stop
  504. id="stop3244-9-33-7-0-9"
  505. stop-color="#fff"
  506. offset="0" />
  507. <stop
  508. id="stop3246-3-5-0-8-5"
  509. stop-color="#ddd"
  510. offset=".26238" />
  511. <stop
  512. id="stop3248-1-7-8-8-1"
  513. stop-color="#abacae"
  514. offset=".66094" />
  515. <stop
  516. id="stop3250-9-3-0-5-1"
  517. stop-color="#89898b"
  518. offset="1" />
  519. </radialGradient>
  520. <radialGradient
  521. id="radialGradient3035"
  522. gradientUnits="userSpaceOnUse"
  523. cy="186.17"
  524. cx="99.156998"
  525. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  526. r="62.769001">
  527. <stop
  528. id="stop3822-2-6-3"
  529. stop-color="#3d3d3d"
  530. offset="0" />
  531. <stop
  532. id="stop3864-8-7-7"
  533. stop-color="#686868"
  534. stop-opacity=".49804"
  535. offset=".5" />
  536. <stop
  537. id="stop3824-1-2-5"
  538. stop-color="#686868"
  539. stop-opacity="0"
  540. offset="1" />
  541. </radialGradient>
  542. <linearGradient
  543. id="linearGradient4433"
  544. y2="25.611"
  545. gradientUnits="userSpaceOnUse"
  546. x2="23.077999"
  547. gradientTransform="matrix(1,0,0,1.0521,0,-0.90547)"
  548. y1="13.035"
  549. x1="22.759001">
  550. <stop
  551. id="stop6305-1-0-2"
  552. stop-color="#fff"
  553. offset="0" />
  554. <stop
  555. id="stop6307-5-0-6"
  556. stop-color="#fff"
  557. stop-opacity="0"
  558. offset="1" />
  559. </linearGradient>
  560. <linearGradient
  561. id="linearGradient4829">
  562. <stop
  563. style="stop-color:#f4fbfc;stop-opacity:1;"
  564. offset="0"
  565. id="stop4831" />
  566. <stop
  567. style="stop-color:#d6d6d6;stop-opacity:1;"
  568. offset="1"
  569. id="stop4833" />
  570. </linearGradient>
  571. <radialGradient
  572. id="SVGID_4_"
  573. cx="224.50391"
  574. cy="186.51421"
  575. r="127.0051"
  576. gradientUnits="userSpaceOnUse">
  577. <stop
  578. offset="0"
  579. style="stop-color:#FFFFFF"
  580. id="stop27" />
  581. <stop
  582. offset="0.3984"
  583. style="stop-color:#FDFEFF"
  584. id="stop29" />
  585. <stop
  586. offset="0.6131"
  587. style="stop-color:#F5FAFF"
  588. id="stop31" />
  589. <stop
  590. offset="0.7841"
  591. style="stop-color:#E7F3FF"
  592. id="stop33" />
  593. <stop
  594. offset="0.9311"
  595. style="stop-color:#D4EAFF"
  596. id="stop35" />
  597. <stop
  598. offset="1"
  599. style="stop-color:#C8E4FF"
  600. id="stop37" />
  601. </radialGradient>
  602. <radialGradient
  603. gradientUnits="userSpaceOnUse"
  604. r="26.769501"
  605. cy="286.66409"
  606. cx="324.69339"
  607. id="SVGID_5_">
  608. <stop
  609. id="stop50"
  610. style="stop-color:#FFFFFF"
  611. offset="0" />
  612. <stop
  613. id="stop52"
  614. style="stop-color:#FDFEFF"
  615. offset="0.3984" />
  616. <stop
  617. id="stop54"
  618. style="stop-color:#F5FAFF"
  619. offset="0.6131" />
  620. <stop
  621. id="stop56"
  622. style="stop-color:#E7F3FF"
  623. offset="0.7841" />
  624. <stop
  625. id="stop58"
  626. style="stop-color:#D4EAFF"
  627. offset="0.9311" />
  628. <stop
  629. id="stop60"
  630. style="stop-color:#C8E4FF"
  631. offset="1" />
  632. </radialGradient>
  633. <radialGradient
  634. gradientUnits="userSpaceOnUse"
  635. r="46.444901"
  636. cy="392.77249"
  637. cx="325"
  638. id="SVGID_6_">
  639. <stop
  640. id="stop73"
  641. style="stop-color:#FFFFFF"
  642. offset="0" />
  643. <stop
  644. id="stop75"
  645. style="stop-color:#FDFEFF"
  646. offset="0.3984" />
  647. <stop
  648. id="stop77"
  649. style="stop-color:#F5FAFF"
  650. offset="0.6131" />
  651. <stop
  652. id="stop79"
  653. style="stop-color:#E7F3FF"
  654. offset="0.7841" />
  655. <stop
  656. id="stop81"
  657. style="stop-color:#D4EAFF"
  658. offset="0.9311" />
  659. <stop
  660. id="stop83"
  661. style="stop-color:#C8E4FF"
  662. offset="1" />
  663. </radialGradient>
  664. <clipPath
  665. id="clipPath-349538100">
  666. <g
  667. id="g17"
  668. transform="translate(0,-1004.4)">
  669. <path
  670. style="fill:#1890d0"
  671. inkscape:connector-curvature="0"
  672. id="path19"
  673. 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"
  674. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  675. </g>
  676. </clipPath>
  677. <clipPath
  678. id="clipPath3914">
  679. <g
  680. id="g3912"
  681. transform="translate(0,-1004.4)">
  682. <path
  683. style="fill:#1890d0"
  684. inkscape:connector-curvature="0"
  685. id="path3910"
  686. 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"
  687. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  688. </g>
  689. </clipPath>
  690. <clipPath
  691. id="clipPath3920">
  692. <g
  693. id="g3918"
  694. transform="translate(0,-1004.4)">
  695. <path
  696. style="fill:#1890d0"
  697. inkscape:connector-curvature="0"
  698. id="path3916"
  699. 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"
  700. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  701. </g>
  702. </clipPath>
  703. <linearGradient
  704. id="linearGradient6987"
  705. osb:paint="solid">
  706. <stop
  707. style="stop-color:#77d2fb;stop-opacity:1;"
  708. offset="0"
  709. id="stop6985" />
  710. </linearGradient>
  711. <filter
  712. y="0%"
  713. x="0%"
  714. height="100%"
  715. width="100%"
  716. id="alpha">
  717. <feColorMatrix
  718. id="feColorMatrix929"
  719. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  720. in="SourceGraphic" />
  721. </filter>
  722. <mask
  723. id="mask0">
  724. <g
  725. id="g934"
  726. filter="url(#alpha)">
  727. <rect
  728. id="rect932"
  729. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  730. height="384"
  731. width="384" />
  732. </g>
  733. </mask>
  734. <clipPath
  735. id="clip1">
  736. <rect
  737. id="rect937"
  738. height="384"
  739. width="384" />
  740. </clipPath>
  741. <g
  742. clip-path="url(#clip1)"
  743. id="surface5">
  744. <path
  745. id="path940"
  746. style="fill:rgb(100%,100%,100%)"
  747. 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" />
  748. </g>
  749. <mask
  750. id="mask1">
  751. <g
  752. id="g945"
  753. filter="url(#alpha)">
  754. <rect
  755. id="rect943"
  756. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  757. height="384"
  758. width="384" />
  759. </g>
  760. </mask>
  761. <clipPath
  762. id="clip2">
  763. <rect
  764. id="rect948"
  765. height="384"
  766. width="384" />
  767. </clipPath>
  768. <g
  769. clip-path="url(#clip2)"
  770. id="surface8">
  771. <path
  772. id="path951"
  773. style="fill:rgb(0%,0%,0%)"
  774. 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" />
  775. </g>
  776. <linearGradient
  777. gradientUnits="userSpaceOnUse"
  778. y2="249.017"
  779. y1="515.328"
  780. x2="249.882"
  781. x1="-248.932"
  782. id="linearGradient1117">
  783. <stop
  784. id="stop954"
  785. offset="0"
  786. style="stop-color:#aa75e6;stop-opacity:1" />
  787. <stop
  788. id="stop956"
  789. offset="1"
  790. style="stop-color:#8935f0;stop-opacity:1" />
  791. </linearGradient>
  792. <linearGradient
  793. id="linearGradient-1"
  794. y2="116.54461"
  795. x2="186.14996"
  796. y1="116.54461"
  797. x1="0"
  798. gradientTransform="scale(0.69850138,1.4316364)"
  799. gradientUnits="userSpaceOnUse">
  800. <stop
  801. id="stop4511"
  802. offset="0%"
  803. stop-color="#FFFFFF" />
  804. <stop
  805. id="stop4513"
  806. offset="14.13%"
  807. stop-opacity="0.9576"
  808. stop-color="#FFFFFF" />
  809. <stop
  810. id="stop4515"
  811. offset="100%"
  812. stop-opacity="0.7"
  813. stop-color="#FFFFFF" />
  814. </linearGradient>
  815. <linearGradient
  816. id="linearGradient-2"
  817. y2="112.26521"
  818. x2="373.38791"
  819. y1="112.26521"
  820. x1="187.35059"
  821. gradientTransform="scale(0.68561406,1.4585465)"
  822. gradientUnits="userSpaceOnUse">
  823. <stop
  824. id="stop4518"
  825. offset="0%"
  826. stop-color="#F1F1F2" />
  827. <stop
  828. id="stop4520"
  829. offset="9.191442%"
  830. stop-color="#E4E5E6" />
  831. <stop
  832. id="stop4522"
  833. offset="23.57%"
  834. stop-color="#D9DADB" />
  835. <stop
  836. id="stop4524"
  837. offset="43.8%"
  838. stop-color="#D2D4D5" />
  839. <stop
  840. id="stop4526"
  841. offset="100%"
  842. stop-color="#D0D2D3" />
  843. </linearGradient>
  844. <filter
  845. style="color-interpolation-filters:sRGB"
  846. id="c"
  847. height="1.1655999"
  848. width="1.1655999"
  849. x="-0.082800001"
  850. y="-0.082800001">
  851. <feGaussianBlur
  852. stdDeviation="2.1101835"
  853. id="feGaussianBlur10" />
  854. </filter>
  855. <filter
  856. style="color-interpolation-filters:sRGB"
  857. id="a"
  858. height="1.031026"
  859. width="1.031376"
  860. x="-0.015688"
  861. y="-0.015513">
  862. <feGaussianBlur
  863. stdDeviation=".7986332"
  864. id="feGaussianBlur2" />
  865. </filter>
  866. <clipPath
  867. id="clip1-8">
  868. <path
  869. d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
  870. id="path952" />
  871. </clipPath>
  872. <clipPath
  873. id="clip2-3">
  874. <path
  875. 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"
  876. id="path955" />
  877. </clipPath>
  878. <radialGradient
  879. r="20"
  880. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  881. cx="15.026"
  882. cy="8.6258001"
  883. gradientUnits="userSpaceOnUse"
  884. fy="8.5088997"
  885. fx="4.4590001"
  886. id="radialGradient3029-4">
  887. <stop
  888. style="stop-color:#1429d2;stop-opacity:1"
  889. offset="0"
  890. stop-color="#c24251"
  891. id="stop4170-8" />
  892. <stop
  893. style="stop-color:#63c7e5;stop-opacity:1"
  894. offset="1"
  895. stop-color="#a63643"
  896. id="stop4176-3" />
  897. </radialGradient>
  898. <radialGradient
  899. r="20.396999"
  900. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  901. cx="23.896"
  902. cy="3.99"
  903. gradientUnits="userSpaceOnUse"
  904. id="radialGradient3032-3">
  905. <stop
  906. offset="0"
  907. stop-color="#fff"
  908. id="stop3244-9-33-7-0-9-4" />
  909. <stop
  910. offset=".26238"
  911. stop-color="#ddd"
  912. id="stop3246-3-5-0-8-5-0" />
  913. <stop
  914. offset=".66094"
  915. stop-color="#abacae"
  916. id="stop3248-1-7-8-8-1-8" />
  917. <stop
  918. offset="1"
  919. stop-color="#89898b"
  920. id="stop3250-9-3-0-5-1-4" />
  921. </radialGradient>
  922. <radialGradient
  923. r="62.769001"
  924. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  925. cx="99.156998"
  926. cy="186.17"
  927. gradientUnits="userSpaceOnUse"
  928. id="radialGradient3035-3">
  929. <stop
  930. offset="0"
  931. stop-color="#3d3d3d"
  932. id="stop3822-2-6-3-0" />
  933. <stop
  934. offset=".5"
  935. stop-opacity=".49804"
  936. stop-color="#686868"
  937. id="stop3864-8-7-7-2" />
  938. <stop
  939. offset="1"
  940. stop-opacity="0"
  941. stop-color="#686868"
  942. id="stop3824-1-2-5-4" />
  943. </radialGradient>
  944. <radialGradient
  945. gradientUnits="userSpaceOnUse"
  946. r="127.0051"
  947. cy="186.51421"
  948. cx="224.50391"
  949. id="SVGID_4_-1">
  950. <stop
  951. id="stop27-7"
  952. style="stop-color:#FFFFFF"
  953. offset="0" />
  954. <stop
  955. id="stop29-6"
  956. style="stop-color:#FDFEFF"
  957. offset="0.3984" />
  958. <stop
  959. id="stop31-2"
  960. style="stop-color:#F5FAFF"
  961. offset="0.6131" />
  962. <stop
  963. id="stop33-6"
  964. style="stop-color:#E7F3FF"
  965. offset="0.7841" />
  966. <stop
  967. id="stop35-2"
  968. style="stop-color:#D4EAFF"
  969. offset="0.9311" />
  970. <stop
  971. id="stop37-5"
  972. style="stop-color:#C8E4FF"
  973. offset="1" />
  974. </radialGradient>
  975. <radialGradient
  976. id="SVGID_5_-9"
  977. cx="324.69339"
  978. cy="286.66409"
  979. r="26.769501"
  980. gradientUnits="userSpaceOnUse">
  981. <stop
  982. offset="0"
  983. style="stop-color:#FFFFFF"
  984. id="stop50-2" />
  985. <stop
  986. offset="0.3984"
  987. style="stop-color:#FDFEFF"
  988. id="stop52-0" />
  989. <stop
  990. offset="0.6131"
  991. style="stop-color:#F5FAFF"
  992. id="stop54-5" />
  993. <stop
  994. offset="0.7841"
  995. style="stop-color:#E7F3FF"
  996. id="stop56-9" />
  997. <stop
  998. offset="0.9311"
  999. style="stop-color:#D4EAFF"
  1000. id="stop58-7" />
  1001. <stop
  1002. offset="1"
  1003. style="stop-color:#C8E4FF"
  1004. id="stop60-2" />
  1005. </radialGradient>
  1006. <radialGradient
  1007. id="SVGID_6_-7"
  1008. cx="325"
  1009. cy="392.77249"
  1010. r="46.444901"
  1011. gradientUnits="userSpaceOnUse">
  1012. <stop
  1013. offset="0"
  1014. style="stop-color:#FFFFFF"
  1015. id="stop73-5" />
  1016. <stop
  1017. offset="0.3984"
  1018. style="stop-color:#FDFEFF"
  1019. id="stop75-3" />
  1020. <stop
  1021. offset="0.6131"
  1022. style="stop-color:#F5FAFF"
  1023. id="stop77-2" />
  1024. <stop
  1025. offset="0.7841"
  1026. style="stop-color:#E7F3FF"
  1027. id="stop79-0" />
  1028. <stop
  1029. offset="0.9311"
  1030. style="stop-color:#D4EAFF"
  1031. id="stop81-7" />
  1032. <stop
  1033. offset="1"
  1034. style="stop-color:#C8E4FF"
  1035. id="stop83-2" />
  1036. </radialGradient>
  1037. <clipPath
  1038. id="clipPath-349538100-0">
  1039. <g
  1040. transform="translate(0,-1004.4)"
  1041. id="g17-3">
  1042. <path
  1043. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1044. 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"
  1045. id="path19-8"
  1046. inkscape:connector-curvature="0"
  1047. style="fill:#1890d0" />
  1048. </g>
  1049. </clipPath>
  1050. <clipPath
  1051. id="clipPath3914-3">
  1052. <g
  1053. transform="translate(0,-1004.4)"
  1054. id="g3912-6">
  1055. <path
  1056. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1057. 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"
  1058. id="path3910-2"
  1059. inkscape:connector-curvature="0"
  1060. style="fill:#1890d0" />
  1061. </g>
  1062. </clipPath>
  1063. <clipPath
  1064. id="clipPath3920-2">
  1065. <g
  1066. transform="translate(0,-1004.4)"
  1067. id="g3918-2">
  1068. <path
  1069. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1070. 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"
  1071. id="path3916-9"
  1072. inkscape:connector-curvature="0"
  1073. style="fill:#1890d0" />
  1074. </g>
  1075. </clipPath>
  1076. <filter
  1077. id="alpha-3"
  1078. width="100%"
  1079. height="100%"
  1080. x="0%"
  1081. y="0%">
  1082. <feColorMatrix
  1083. in="SourceGraphic"
  1084. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  1085. id="feColorMatrix929-8" />
  1086. </filter>
  1087. <mask
  1088. id="mask0-2">
  1089. <g
  1090. filter="url(#alpha)"
  1091. id="g934-8"
  1092. style="filter:url(#alpha-3)">
  1093. <rect
  1094. width="384"
  1095. height="384"
  1096. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1097. id="rect932-5" />
  1098. </g>
  1099. </mask>
  1100. <clipPath
  1101. id="clip1-4">
  1102. <rect
  1103. width="384"
  1104. height="384"
  1105. id="rect937-5" />
  1106. </clipPath>
  1107. <g
  1108. id="surface5-6"
  1109. clip-path="url(#clip1-4)">
  1110. <path
  1111. 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"
  1112. style="fill:rgb(100%,100%,100%)"
  1113. id="path940-7" />
  1114. </g>
  1115. <mask
  1116. id="mask1-7">
  1117. <g
  1118. filter="url(#alpha)"
  1119. id="g945-3"
  1120. style="filter:url(#alpha-3)">
  1121. <rect
  1122. width="384"
  1123. height="384"
  1124. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1125. id="rect943-6" />
  1126. </g>
  1127. </mask>
  1128. <clipPath
  1129. id="clip2-4">
  1130. <rect
  1131. width="384"
  1132. height="384"
  1133. id="rect948-5" />
  1134. </clipPath>
  1135. <g
  1136. id="surface8-5"
  1137. clip-path="url(#clip2-4)">
  1138. <path
  1139. 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"
  1140. style="fill:rgb(0%,0%,0%)"
  1141. id="path951-0" />
  1142. </g>
  1143. <filter
  1144. y="-0.082800001"
  1145. x="-0.082800001"
  1146. width="1.1655999"
  1147. height="1.1655999"
  1148. id="c-3"
  1149. style="color-interpolation-filters:sRGB">
  1150. <feGaussianBlur
  1151. id="feGaussianBlur10-1"
  1152. stdDeviation="2.1101835" />
  1153. </filter>
  1154. <filter
  1155. y="-0.015513"
  1156. x="-0.015688"
  1157. width="1.031376"
  1158. height="1.031026"
  1159. id="a-2"
  1160. style="color-interpolation-filters:sRGB">
  1161. <feGaussianBlur
  1162. id="feGaussianBlur2-9"
  1163. stdDeviation=".7986332" />
  1164. </filter>
  1165. <linearGradient
  1166. x1="511.60999"
  1167. y1="1026.9"
  1168. x2="511.60999"
  1169. gradientUnits="userSpaceOnUse"
  1170. y2="-0.32418999"
  1171. id="l"
  1172. gradientTransform="translate(0.00124066,-5.1299999e-6)">
  1173. <stop
  1174. id="stop6"
  1175. offset="0"
  1176. stop-color="#096fd2" />
  1177. <stop
  1178. id="stop8"
  1179. offset="1"
  1180. stop-color="#0e8ee9" />
  1181. </linearGradient>
  1182. <linearGradient
  1183. x1="412.95001"
  1184. y1="648.08002"
  1185. x2="412.85999"
  1186. gradientUnits="userSpaceOnUse"
  1187. y2="376.45001"
  1188. id="k"
  1189. gradientTransform="translate(0.00124066,-5.1299999e-6)">
  1190. <stop
  1191. id="stop11"
  1192. offset="0"
  1193. stop-color="#096fd2" />
  1194. <stop
  1195. id="stop13"
  1196. offset="1"
  1197. stop-color="#0e8ee9" />
  1198. </linearGradient>
  1199. <linearGradient
  1200. x1="1391.7"
  1201. y1="728.90997"
  1202. x2="1391.7"
  1203. gradientUnits="userSpaceOnUse"
  1204. y2="293.06"
  1205. id="j">
  1206. <stop
  1207. id="stop16"
  1208. offset="0"
  1209. stop-color="#096fd2" />
  1210. <stop
  1211. id="stop18"
  1212. offset="1"
  1213. stop-color="#0e8ee9" />
  1214. </linearGradient>
  1215. <linearGradient
  1216. x1="2429.5"
  1217. y1="728.29999"
  1218. x2="2429.5"
  1219. gradientUnits="userSpaceOnUse"
  1220. y2="414.01001"
  1221. id="i">
  1222. <stop
  1223. id="stop21"
  1224. offset="0"
  1225. stop-color="#096fd2" />
  1226. <stop
  1227. id="stop23"
  1228. offset="1"
  1229. stop-color="#0e8ee9" />
  1230. </linearGradient>
  1231. <linearGradient
  1232. x1="2006.5"
  1233. y1="735.19"
  1234. x2="2006.5"
  1235. gradientUnits="userSpaceOnUse"
  1236. y2="411.59"
  1237. id="h">
  1238. <stop
  1239. id="stop26"
  1240. offset="0"
  1241. stop-color="#096fd2" />
  1242. <stop
  1243. id="stop28"
  1244. offset="1"
  1245. stop-color="#0e8ee9" />
  1246. </linearGradient>
  1247. <linearGradient
  1248. x1="1678.1"
  1249. y1="739.54999"
  1250. x2="1680.3"
  1251. gradientUnits="userSpaceOnUse"
  1252. y2="410.57999"
  1253. id="g">
  1254. <stop
  1255. id="stop31-7"
  1256. offset="0"
  1257. stop-color="#096fd2" />
  1258. <stop
  1259. id="stop33-5"
  1260. offset="1"
  1261. stop-color="#0e8ee9" />
  1262. </linearGradient>
  1263. <linearGradient
  1264. x1="4382"
  1265. y1="728.37"
  1266. x2="4382"
  1267. gradientUnits="userSpaceOnUse"
  1268. y2="413.31"
  1269. id="f">
  1270. <stop
  1271. id="stop36"
  1272. offset="0"
  1273. stop-color="#096fd2" />
  1274. <stop
  1275. id="stop38"
  1276. offset="1"
  1277. stop-color="#0e8ee9" />
  1278. </linearGradient>
  1279. <linearGradient
  1280. x1="4142.2998"
  1281. y1="737.34003"
  1282. x2="4142.2998"
  1283. gradientUnits="userSpaceOnUse"
  1284. y2="413.59"
  1285. id="e">
  1286. <stop
  1287. id="stop41"
  1288. offset="0"
  1289. stop-color="#096fd2" />
  1290. <stop
  1291. id="stop43"
  1292. offset="1"
  1293. stop-color="#0e8ee9" />
  1294. </linearGradient>
  1295. <linearGradient
  1296. x1="3643.8999"
  1297. y1="728.65997"
  1298. x2="3643.8999"
  1299. gradientUnits="userSpaceOnUse"
  1300. y2="422.85999"
  1301. id="d">
  1302. <stop
  1303. id="stop46"
  1304. offset="0"
  1305. stop-color="#096fd2" />
  1306. <stop
  1307. id="stop48"
  1308. offset="1"
  1309. stop-color="#0e8ee9" />
  1310. </linearGradient>
  1311. <linearGradient
  1312. x1="3319.3"
  1313. y1="737.35999"
  1314. x2="3319.3"
  1315. gradientUnits="userSpaceOnUse"
  1316. y2="413.51999"
  1317. id="c-35">
  1318. <stop
  1319. id="stop51"
  1320. offset="0"
  1321. stop-color="#096fd2" />
  1322. <stop
  1323. id="stop53"
  1324. offset="1"
  1325. stop-color="#0e8ee9" />
  1326. </linearGradient>
  1327. <linearGradient
  1328. x1="2894.1001"
  1329. y1="728.59003"
  1330. x2="2894.1001"
  1331. gradientUnits="userSpaceOnUse"
  1332. y2="293.70999"
  1333. id="b">
  1334. <stop
  1335. id="stop56-6"
  1336. offset="0"
  1337. stop-color="#096fd2" />
  1338. <stop
  1339. id="stop58-2"
  1340. offset="1"
  1341. stop-color="#0e8ee9" />
  1342. </linearGradient>
  1343. <linearGradient
  1344. x1="3135.1001"
  1345. y1="728.29999"
  1346. x2="3135.1001"
  1347. gradientUnits="userSpaceOnUse"
  1348. y2="293.10001"
  1349. id="a-9">
  1350. <stop
  1351. id="stop61"
  1352. offset="0"
  1353. stop-color="#096fd2" />
  1354. <stop
  1355. id="stop63"
  1356. offset="1"
  1357. stop-color="#0e8ee9" />
  1358. </linearGradient>
  1359. <linearGradient
  1360. x1="412.95001"
  1361. y1="648.08002"
  1362. x2="412.85999"
  1363. gradientUnits="userSpaceOnUse"
  1364. y2="376.45001"
  1365. id="k-1"
  1366. gradientTransform="matrix(0.11137191,0,0,0.11137191,6.6051094,7.2583312)">
  1367. <stop
  1368. style="stop-color:#1ea5f3;stop-opacity:1"
  1369. id="stop11-2"
  1370. offset="0"
  1371. stop-color="#096fd2" />
  1372. <stop
  1373. style="stop-color:#2fb5f8;stop-opacity:1"
  1374. id="stop13-7"
  1375. offset="1"
  1376. stop-color="#0e8ee9" />
  1377. </linearGradient>
  1378. <clipPath
  1379. id="clipPath18-3"
  1380. clipPathUnits="userSpaceOnUse">
  1381. <path
  1382. inkscape:connector-curvature="0"
  1383. id="path16-6"
  1384. d="M 0,407.675 H 407.675 V 0 H 0 Z" />
  1385. </clipPath>
  1386. <radialGradient
  1387. gradientTransform="matrix(0,25.083279,-30.794253,0,372.81658,-208.0918)"
  1388. gradientUnits="userSpaceOnUse"
  1389. xlink:href="#linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-8-3-3-6-4-8-8-8-5"
  1390. id="radialGradient3395-62"
  1391. fy="9.9571075"
  1392. fx="6.2001843"
  1393. r="12.671875"
  1394. cy="9.9571075"
  1395. cx="6.7304144" />
  1396. <radialGradient
  1397. gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
  1398. gradientUnits="userSpaceOnUse"
  1399. xlink:href="#linearGradient3688-166-749-5"
  1400. id="radialGradient2455-1-9"
  1401. fy="43.5"
  1402. fx="4.9929786"
  1403. r="2.5"
  1404. cy="43.5"
  1405. cx="4.9929786" />
  1406. <radialGradient
  1407. gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
  1408. gradientUnits="userSpaceOnUse"
  1409. xlink:href="#linearGradient3688-166-749-5"
  1410. id="radialGradient2457-5-0"
  1411. fy="43.5"
  1412. fx="4.9929786"
  1413. r="2.5"
  1414. cy="43.5"
  1415. cx="4.9929786" />
  1416. <radialGradient
  1417. gradientTransform="matrix(1.5563924,0,0,0.16978827,70.270358,102.13029)"
  1418. gradientUnits="userSpaceOnUse"
  1419. xlink:href="#linearGradient4113"
  1420. id="radialGradient4377-1"
  1421. fy="93.467628"
  1422. fx="-4.0287771"
  1423. r="35.338131"
  1424. cy="93.467628"
  1425. cx="-4.0287771" />
  1426. <filter
  1427. style="color-interpolation-filters:sRGB;"
  1428. inkscape:label="Colorize"
  1429. id="filter3907-8">
  1430. <feComposite
  1431. in2="SourceGraphic"
  1432. operator="arithmetic"
  1433. k1="0"
  1434. k2="1"
  1435. result="composite1"
  1436. id="feComposite3909-7" />
  1437. <feColorMatrix
  1438. in="composite1"
  1439. values="1"
  1440. type="saturate"
  1441. result="colormatrix1"
  1442. id="feColorMatrix3911-9" />
  1443. <feFlood
  1444. flood-opacity="0.854902"
  1445. flood-color="rgb(23,141,46)"
  1446. result="flood1"
  1447. id="feFlood3913-2" />
  1448. <feBlend
  1449. in="flood1"
  1450. in2="colormatrix1"
  1451. mode="multiply"
  1452. result="blend1"
  1453. id="feBlend3915-0" />
  1454. <feBlend
  1455. in2="blend1"
  1456. mode="screen"
  1457. result="blend2"
  1458. id="feBlend3917-2" />
  1459. <feColorMatrix
  1460. in="blend2"
  1461. values="1"
  1462. type="saturate"
  1463. result="colormatrix2"
  1464. id="feColorMatrix3919-3" />
  1465. <feComposite
  1466. in="colormatrix2"
  1467. in2="SourceGraphic"
  1468. operator="in"
  1469. k2="1"
  1470. result="composite2"
  1471. id="feComposite3921-7" />
  1472. </filter>
  1473. <radialGradient
  1474. gradientTransform="matrix(0,25.083279,-30.794253,0,-170.57782,-329.07655)"
  1475. gradientUnits="userSpaceOnUse"
  1476. xlink:href="#linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-8-3-3-6-4-8-8-8-5-2"
  1477. id="radialGradient3395-6-5"
  1478. fy="9.9571075"
  1479. fx="6.2001843"
  1480. r="12.671875"
  1481. cy="9.9571075"
  1482. cx="6.7304144" />
  1483. <radialGradient
  1484. gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
  1485. gradientUnits="userSpaceOnUse"
  1486. xlink:href="#linearGradient3688-166-749-5"
  1487. id="radialGradient2455-1-0-9"
  1488. fy="43.5"
  1489. fx="4.9929786"
  1490. r="2.5"
  1491. cy="43.5"
  1492. cx="4.9929786" />
  1493. <radialGradient
  1494. gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
  1495. gradientUnits="userSpaceOnUse"
  1496. xlink:href="#linearGradient3688-166-749-5"
  1497. id="radialGradient2457-5-6-7"
  1498. fy="43.5"
  1499. fx="4.9929786"
  1500. r="2.5"
  1501. cy="43.5"
  1502. cx="4.9929786" />
  1503. <radialGradient
  1504. gradientTransform="matrix(1.5563924,0,0,0.16978827,-473.12404,-18.85446)"
  1505. gradientUnits="userSpaceOnUse"
  1506. xlink:href="#linearGradient4113"
  1507. id="radialGradient4377-6-3"
  1508. fy="93.467628"
  1509. fx="-4.0287771"
  1510. r="35.338131"
  1511. cy="93.467628"
  1512. cx="-4.0287771" />
  1513. <style
  1514. type="text/css"
  1515. id="current-color-scheme-6129">
  1516. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1517. </style>
  1518. <style
  1519. type="text/css"
  1520. id="current-color-scheme-3-3">
  1521. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1522. </style>
  1523. <style
  1524. type="text/css"
  1525. id="current-color-scheme-7-1">
  1526. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1527. </style>
  1528. <style
  1529. type="text/css"
  1530. id="current-color-scheme-35-9">
  1531. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1532. </style>
  1533. <style
  1534. type="text/css"
  1535. id="current-color-scheme-9-4">
  1536. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1537. </style>
  1538. <style
  1539. type="text/css"
  1540. id="current-color-scheme-2-7">
  1541. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1542. </style>
  1543. <style
  1544. type="text/css"
  1545. id="current-color-scheme-0-8">
  1546. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1547. </style>
  1548. <style
  1549. type="text/css"
  1550. id="current-color-scheme-36-4">
  1551. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1552. </style>
  1553. <style
  1554. type="text/css"
  1555. id="current-color-scheme-6-50">
  1556. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1557. </style>
  1558. <style
  1559. type="text/css"
  1560. id="current-color-scheme-61-3">
  1561. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1562. </style>
  1563. <style
  1564. type="text/css"
  1565. id="current-color-scheme-79-6">
  1566. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1567. </style>
  1568. <style
  1569. type="text/css"
  1570. id="current-color-scheme-23-1">
  1571. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1572. </style>
  1573. <style
  1574. type="text/css"
  1575. id="current-color-scheme-92-0">
  1576. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1577. </style>
  1578. <style
  1579. type="text/css"
  1580. id="current-color-scheme-97-6">
  1581. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1582. </style>
  1583. <style
  1584. type="text/css"
  1585. id="current-color-scheme-612-3">
  1586. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1587. </style>
  1588. <style
  1589. id="current-color-scheme-1-2"
  1590. type="text/css">
  1591. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1592. </style>
  1593. <style
  1594. id="current-color-scheme-3-0-0"
  1595. type="text/css">
  1596. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1597. </style>
  1598. <style
  1599. id="current-color-scheme-7-6-6"
  1600. type="text/css">
  1601. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1602. </style>
  1603. <style
  1604. id="current-color-scheme-35-3-1"
  1605. type="text/css">
  1606. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1607. </style>
  1608. <style
  1609. id="current-color-scheme-9-2-5"
  1610. type="text/css">
  1611. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1612. </style>
  1613. <style
  1614. id="current-color-scheme-2-0-5"
  1615. type="text/css">
  1616. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1617. </style>
  1618. <style
  1619. id="current-color-scheme-0-6-4"
  1620. type="text/css">
  1621. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1622. </style>
  1623. <style
  1624. id="current-color-scheme-36-1-7"
  1625. type="text/css">
  1626. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1627. </style>
  1628. <style
  1629. id="current-color-scheme-6-5-6"
  1630. type="text/css">
  1631. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1632. </style>
  1633. <style
  1634. id="current-color-scheme-61-5-5"
  1635. type="text/css">
  1636. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1637. </style>
  1638. <style
  1639. id="current-color-scheme-79-4-6"
  1640. type="text/css">
  1641. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1642. </style>
  1643. <style
  1644. id="current-color-scheme-23-7-9"
  1645. type="text/css">
  1646. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1647. </style>
  1648. <style
  1649. id="current-color-scheme-92-6-3"
  1650. type="text/css">
  1651. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1652. </style>
  1653. <style
  1654. id="current-color-scheme-97-5-7"
  1655. type="text/css">
  1656. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1657. </style>
  1658. <style
  1659. id="current-color-scheme-612-6-4"
  1660. type="text/css">
  1661. .ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#5294e2; }
  1662. </style>
  1663. <radialGradient
  1664. id="radialGradient3029-43"
  1665. fx="4.4590001"
  1666. fy="8.5088997"
  1667. gradientUnits="userSpaceOnUse"
  1668. cy="8.6258001"
  1669. cx="15.026"
  1670. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  1671. r="20">
  1672. <stop
  1673. id="stop4170-0"
  1674. stop-color="#c24251"
  1675. offset="0" />
  1676. <stop
  1677. id="stop4172-7"
  1678. stop-color="#c24251"
  1679. offset=".26238" />
  1680. <stop
  1681. id="stop4174-8"
  1682. stop-color="#a63643"
  1683. offset=".66094" />
  1684. <stop
  1685. id="stop4176-6"
  1686. stop-color="#a63643"
  1687. offset="1" />
  1688. </radialGradient>
  1689. <radialGradient
  1690. id="radialGradient3032-8"
  1691. gradientUnits="userSpaceOnUse"
  1692. cy="3.99"
  1693. cx="23.896"
  1694. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  1695. r="20.396999">
  1696. <stop
  1697. id="stop3244-9-33-7-0-9-8"
  1698. stop-color="#fff"
  1699. offset="0" />
  1700. <stop
  1701. id="stop3246-3-5-0-8-5-4"
  1702. stop-color="#ddd"
  1703. offset=".26238" />
  1704. <stop
  1705. id="stop3248-1-7-8-8-1-3"
  1706. stop-color="#abacae"
  1707. offset=".66094" />
  1708. <stop
  1709. id="stop3250-9-3-0-5-1-1"
  1710. stop-color="#89898b"
  1711. offset="1" />
  1712. </radialGradient>
  1713. <radialGradient
  1714. id="radialGradient3035-4"
  1715. gradientUnits="userSpaceOnUse"
  1716. cy="186.17"
  1717. cx="99.156998"
  1718. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  1719. r="62.769001">
  1720. <stop
  1721. id="stop3822-2-6-3-9"
  1722. stop-color="#3d3d3d"
  1723. offset="0" />
  1724. <stop
  1725. id="stop3864-8-7-7-20"
  1726. stop-color="#686868"
  1727. stop-opacity=".49804"
  1728. offset=".5" />
  1729. <stop
  1730. id="stop3824-1-2-5-6"
  1731. stop-color="#686868"
  1732. stop-opacity="0"
  1733. offset="1" />
  1734. </radialGradient>
  1735. <radialGradient
  1736. id="SVGID_4_-6"
  1737. cx="224.50391"
  1738. cy="186.51421"
  1739. r="127.0051"
  1740. gradientUnits="userSpaceOnUse">
  1741. <stop
  1742. offset="0"
  1743. style="stop-color:#FFFFFF"
  1744. id="stop27-4" />
  1745. <stop
  1746. offset="0.3984"
  1747. style="stop-color:#FDFEFF"
  1748. id="stop29-9" />
  1749. <stop
  1750. offset="0.6131"
  1751. style="stop-color:#F5FAFF"
  1752. id="stop31-5" />
  1753. <stop
  1754. offset="0.7841"
  1755. style="stop-color:#E7F3FF"
  1756. id="stop33-0" />
  1757. <stop
  1758. offset="0.9311"
  1759. style="stop-color:#D4EAFF"
  1760. id="stop35-4" />
  1761. <stop
  1762. offset="1"
  1763. style="stop-color:#C8E4FF"
  1764. id="stop37-8" />
  1765. </radialGradient>
  1766. <radialGradient
  1767. gradientUnits="userSpaceOnUse"
  1768. r="26.769501"
  1769. cy="286.66409"
  1770. cx="324.69339"
  1771. id="SVGID_5_-7">
  1772. <stop
  1773. id="stop50-1"
  1774. style="stop-color:#FFFFFF"
  1775. offset="0" />
  1776. <stop
  1777. id="stop52-7"
  1778. style="stop-color:#FDFEFF"
  1779. offset="0.3984" />
  1780. <stop
  1781. id="stop54-2"
  1782. style="stop-color:#F5FAFF"
  1783. offset="0.6131" />
  1784. <stop
  1785. id="stop56-7"
  1786. style="stop-color:#E7F3FF"
  1787. offset="0.7841" />
  1788. <stop
  1789. id="stop58-22"
  1790. style="stop-color:#D4EAFF"
  1791. offset="0.9311" />
  1792. <stop
  1793. id="stop60-6"
  1794. style="stop-color:#C8E4FF"
  1795. offset="1" />
  1796. </radialGradient>
  1797. <radialGradient
  1798. gradientUnits="userSpaceOnUse"
  1799. r="46.444901"
  1800. cy="392.77249"
  1801. cx="325"
  1802. id="SVGID_6_-1">
  1803. <stop
  1804. id="stop73-0"
  1805. style="stop-color:#FFFFFF"
  1806. offset="0" />
  1807. <stop
  1808. id="stop75-6"
  1809. style="stop-color:#FDFEFF"
  1810. offset="0.3984" />
  1811. <stop
  1812. id="stop77-1"
  1813. style="stop-color:#F5FAFF"
  1814. offset="0.6131" />
  1815. <stop
  1816. id="stop79-5"
  1817. style="stop-color:#E7F3FF"
  1818. offset="0.7841" />
  1819. <stop
  1820. id="stop81-9"
  1821. style="stop-color:#D4EAFF"
  1822. offset="0.9311" />
  1823. <stop
  1824. id="stop83-4"
  1825. style="stop-color:#C8E4FF"
  1826. offset="1" />
  1827. </radialGradient>
  1828. <clipPath
  1829. id="clipPath-349538100-9">
  1830. <g
  1831. id="g17-0"
  1832. transform="translate(0,-1004.4)">
  1833. <path
  1834. style="fill:#1890d0"
  1835. inkscape:connector-curvature="0"
  1836. id="path19-9"
  1837. 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"
  1838. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1839. </g>
  1840. </clipPath>
  1841. <clipPath
  1842. id="clipPath3914-1">
  1843. <g
  1844. id="g3912-7"
  1845. transform="translate(0,-1004.4)">
  1846. <path
  1847. style="fill:#1890d0"
  1848. inkscape:connector-curvature="0"
  1849. id="path3910-7"
  1850. 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"
  1851. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1852. </g>
  1853. </clipPath>
  1854. <clipPath
  1855. id="clipPath3920-1">
  1856. <g
  1857. id="g3918-1"
  1858. transform="translate(0,-1004.4)">
  1859. <path
  1860. style="fill:#1890d0"
  1861. inkscape:connector-curvature="0"
  1862. id="path3916-5"
  1863. 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"
  1864. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1865. </g>
  1866. </clipPath>
  1867. <filter
  1868. y="0%"
  1869. x="0%"
  1870. height="100%"
  1871. width="100%"
  1872. id="alpha-7">
  1873. <feColorMatrix
  1874. id="feColorMatrix929-7"
  1875. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  1876. in="SourceGraphic" />
  1877. </filter>
  1878. <mask
  1879. id="mask0-6">
  1880. <g
  1881. style="filter:url(#alpha-7)"
  1882. id="g934-7"
  1883. filter="url(#alpha)">
  1884. <rect
  1885. id="rect932-3"
  1886. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1887. height="384"
  1888. width="384" />
  1889. </g>
  1890. </mask>
  1891. <clipPath
  1892. id="clip1-6">
  1893. <rect
  1894. id="rect937-56"
  1895. height="384"
  1896. width="384" />
  1897. </clipPath>
  1898. <g
  1899. clip-path="url(#clip1-6)"
  1900. id="surface5-3">
  1901. <path
  1902. id="path940-9"
  1903. style="fill:rgb(100%,100%,100%)"
  1904. 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" />
  1905. </g>
  1906. <mask
  1907. id="mask1-4">
  1908. <g
  1909. style="filter:url(#alpha-7)"
  1910. id="g945-8"
  1911. filter="url(#alpha)">
  1912. <rect
  1913. id="rect943-1"
  1914. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1915. height="384"
  1916. width="384" />
  1917. </g>
  1918. </mask>
  1919. <clipPath
  1920. id="clip2-2">
  1921. <rect
  1922. id="rect948-9"
  1923. height="384"
  1924. width="384" />
  1925. </clipPath>
  1926. <g
  1927. clip-path="url(#clip2-2)"
  1928. id="surface8-3">
  1929. <path
  1930. id="path951-9"
  1931. style="fill:rgb(0%,0%,0%)"
  1932. 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" />
  1933. </g>
  1934. <filter
  1935. style="color-interpolation-filters:sRGB"
  1936. id="c-6"
  1937. height="1.1655999"
  1938. width="1.1655999"
  1939. x="-0.082800001"
  1940. y="-0.082800001">
  1941. <feGaussianBlur
  1942. stdDeviation="2.1101835"
  1943. id="feGaussianBlur10-11" />
  1944. </filter>
  1945. <filter
  1946. style="color-interpolation-filters:sRGB"
  1947. id="a-5"
  1948. height="1.031026"
  1949. width="1.031376"
  1950. x="-0.015688"
  1951. y="-0.015513">
  1952. <feGaussianBlur
  1953. stdDeviation=".7986332"
  1954. id="feGaussianBlur2-98" />
  1955. </filter>
  1956. <clipPath
  1957. id="clip1-8-4">
  1958. <path
  1959. d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
  1960. id="path952-8" />
  1961. </clipPath>
  1962. <clipPath
  1963. id="clip2-3-1">
  1964. <path
  1965. 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"
  1966. id="path955-0" />
  1967. </clipPath>
  1968. <radialGradient
  1969. r="20"
  1970. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  1971. cx="15.026"
  1972. cy="8.6258001"
  1973. gradientUnits="userSpaceOnUse"
  1974. fy="8.5088997"
  1975. fx="4.4590001"
  1976. id="radialGradient3029-4-3">
  1977. <stop
  1978. style="stop-color:#1429d2;stop-opacity:1"
  1979. offset="0"
  1980. stop-color="#c24251"
  1981. id="stop4170-8-0" />
  1982. <stop
  1983. style="stop-color:#63c7e5;stop-opacity:1"
  1984. offset="1"
  1985. stop-color="#a63643"
  1986. id="stop4176-3-4" />
  1987. </radialGradient>
  1988. <radialGradient
  1989. r="20.396999"
  1990. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  1991. cx="23.896"
  1992. cy="3.99"
  1993. gradientUnits="userSpaceOnUse"
  1994. id="radialGradient3032-3-4">
  1995. <stop
  1996. offset="0"
  1997. stop-color="#fff"
  1998. id="stop3244-9-33-7-0-9-4-4" />
  1999. <stop
  2000. offset=".26238"
  2001. stop-color="#ddd"
  2002. id="stop3246-3-5-0-8-5-0-4" />
  2003. <stop
  2004. offset=".66094"
  2005. stop-color="#abacae"
  2006. id="stop3248-1-7-8-8-1-8-7" />
  2007. <stop
  2008. offset="1"
  2009. stop-color="#89898b"
  2010. id="stop3250-9-3-0-5-1-4-6" />
  2011. </radialGradient>
  2012. <radialGradient
  2013. r="62.769001"
  2014. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  2015. cx="99.156998"
  2016. cy="186.17"
  2017. gradientUnits="userSpaceOnUse"
  2018. id="radialGradient3035-3-3">
  2019. <stop
  2020. offset="0"
  2021. stop-color="#3d3d3d"
  2022. id="stop3822-2-6-3-0-1" />
  2023. <stop
  2024. offset=".5"
  2025. stop-opacity=".49804"
  2026. stop-color="#686868"
  2027. id="stop3864-8-7-7-2-7" />
  2028. <stop
  2029. offset="1"
  2030. stop-opacity="0"
  2031. stop-color="#686868"
  2032. id="stop3824-1-2-5-4-5" />
  2033. </radialGradient>
  2034. <radialGradient
  2035. gradientUnits="userSpaceOnUse"
  2036. r="127.0051"
  2037. cy="186.51421"
  2038. cx="224.50391"
  2039. id="SVGID_4_-1-9">
  2040. <stop
  2041. id="stop27-7-6"
  2042. style="stop-color:#FFFFFF"
  2043. offset="0" />
  2044. <stop
  2045. id="stop29-6-2"
  2046. style="stop-color:#FDFEFF"
  2047. offset="0.3984" />
  2048. <stop
  2049. id="stop31-2-1"
  2050. style="stop-color:#F5FAFF"
  2051. offset="0.6131" />
  2052. <stop
  2053. id="stop33-6-7"
  2054. style="stop-color:#E7F3FF"
  2055. offset="0.7841" />
  2056. <stop
  2057. id="stop35-2-8"
  2058. style="stop-color:#D4EAFF"
  2059. offset="0.9311" />
  2060. <stop
  2061. id="stop37-5-5"
  2062. style="stop-color:#C8E4FF"
  2063. offset="1" />
  2064. </radialGradient>
  2065. <radialGradient
  2066. id="SVGID_5_-9-7"
  2067. cx="324.69339"
  2068. cy="286.66409"
  2069. r="26.769501"
  2070. gradientUnits="userSpaceOnUse">
  2071. <stop
  2072. offset="0"
  2073. style="stop-color:#FFFFFF"
  2074. id="stop50-2-4" />
  2075. <stop
  2076. offset="0.3984"
  2077. style="stop-color:#FDFEFF"
  2078. id="stop52-0-1" />
  2079. <stop
  2080. offset="0.6131"
  2081. style="stop-color:#F5FAFF"
  2082. id="stop54-5-8" />
  2083. <stop
  2084. offset="0.7841"
  2085. style="stop-color:#E7F3FF"
  2086. id="stop56-9-5" />
  2087. <stop
  2088. offset="0.9311"
  2089. style="stop-color:#D4EAFF"
  2090. id="stop58-7-9" />
  2091. <stop
  2092. offset="1"
  2093. style="stop-color:#C8E4FF"
  2094. id="stop60-2-7" />
  2095. </radialGradient>
  2096. <radialGradient
  2097. id="SVGID_6_-7-5"
  2098. cx="325"
  2099. cy="392.77249"
  2100. r="46.444901"
  2101. gradientUnits="userSpaceOnUse">
  2102. <stop
  2103. offset="0"
  2104. style="stop-color:#FFFFFF"
  2105. id="stop73-5-3" />
  2106. <stop
  2107. offset="0.3984"
  2108. style="stop-color:#FDFEFF"
  2109. id="stop75-3-8" />
  2110. <stop
  2111. offset="0.6131"
  2112. style="stop-color:#F5FAFF"
  2113. id="stop77-2-8" />
  2114. <stop
  2115. offset="0.7841"
  2116. style="stop-color:#E7F3FF"
  2117. id="stop79-0-3" />
  2118. <stop
  2119. offset="0.9311"
  2120. style="stop-color:#D4EAFF"
  2121. id="stop81-7-1" />
  2122. <stop
  2123. offset="1"
  2124. style="stop-color:#C8E4FF"
  2125. id="stop83-2-8" />
  2126. </radialGradient>
  2127. <clipPath
  2128. id="clipPath-349538100-0-9">
  2129. <g
  2130. transform="translate(0,-1004.4)"
  2131. id="g17-3-6">
  2132. <path
  2133. transform="matrix(15.333,0,0,11.5,415,878.86)"
  2134. 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"
  2135. id="path19-8-4"
  2136. inkscape:connector-curvature="0"
  2137. style="fill:#1890d0" />
  2138. </g>
  2139. </clipPath>
  2140. <clipPath
  2141. id="clipPath3914-3-3">
  2142. <g
  2143. transform="translate(0,-1004.4)"
  2144. id="g3912-6-3">
  2145. <path
  2146. transform="matrix(15.333,0,0,11.5,415,878.86)"
  2147. 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"
  2148. id="path3910-2-3"
  2149. inkscape:connector-curvature="0"
  2150. style="fill:#1890d0" />
  2151. </g>
  2152. </clipPath>
  2153. <clipPath
  2154. id="clipPath3920-2-8">
  2155. <g
  2156. transform="translate(0,-1004.4)"
  2157. id="g3918-2-6">
  2158. <path
  2159. transform="matrix(15.333,0,0,11.5,415,878.86)"
  2160. 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"
  2161. id="path3916-9-0"
  2162. inkscape:connector-curvature="0"
  2163. style="fill:#1890d0" />
  2164. </g>
  2165. </clipPath>
  2166. <filter
  2167. id="alpha-3-4"
  2168. width="100%"
  2169. height="100%"
  2170. x="0%"
  2171. y="0%">
  2172. <feColorMatrix
  2173. in="SourceGraphic"
  2174. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  2175. id="feColorMatrix929-8-8" />
  2176. </filter>
  2177. <mask
  2178. id="mask0-2-8">
  2179. <g
  2180. filter="url(#alpha)"
  2181. id="g934-8-8"
  2182. style="filter:url(#alpha-3-4)">
  2183. <rect
  2184. width="384"
  2185. height="384"
  2186. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2187. id="rect932-5-9" />
  2188. </g>
  2189. </mask>
  2190. <clipPath
  2191. id="clip1-4-7">
  2192. <rect
  2193. width="384"
  2194. height="384"
  2195. id="rect937-5-7" />
  2196. </clipPath>
  2197. <g
  2198. id="surface5-6-6"
  2199. clip-path="url(#clip1-4-7)">
  2200. <path
  2201. 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"
  2202. style="fill:rgb(100%,100%,100%)"
  2203. id="path940-7-4" />
  2204. </g>
  2205. <mask
  2206. id="mask1-7-3">
  2207. <g
  2208. filter="url(#alpha)"
  2209. id="g945-3-0"
  2210. style="filter:url(#alpha-3-4)">
  2211. <rect
  2212. width="384"
  2213. height="384"
  2214. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  2215. id="rect943-6-3" />
  2216. </g>
  2217. </mask>
  2218. <clipPath
  2219. id="clip2-4-0">
  2220. <rect
  2221. width="384"
  2222. height="384"
  2223. id="rect948-5-9" />
  2224. </clipPath>
  2225. <g
  2226. id="surface8-5-2"
  2227. clip-path="url(#clip2-4-0)">
  2228. <path
  2229. 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"
  2230. style="fill:rgb(0%,0%,0%)"
  2231. id="path951-0-5" />
  2232. </g>
  2233. <filter
  2234. y="-0.082800001"
  2235. x="-0.082800001"
  2236. width="1.1655999"
  2237. height="1.1655999"
  2238. id="c-3-4"
  2239. style="color-interpolation-filters:sRGB">
  2240. <feGaussianBlur
  2241. id="feGaussianBlur10-1-0"
  2242. stdDeviation="2.1101835" />
  2243. </filter>
  2244. <filter
  2245. y="-0.015513"
  2246. x="-0.015688"
  2247. width="1.031376"
  2248. height="1.031026"
  2249. id="a-2-5"
  2250. style="color-interpolation-filters:sRGB">
  2251. <feGaussianBlur
  2252. id="feGaussianBlur2-9-9"
  2253. stdDeviation=".7986332" />
  2254. </filter>
  2255. <clipPath
  2256. id="clipPath18-3-8"
  2257. clipPathUnits="userSpaceOnUse">
  2258. <path
  2259. inkscape:connector-curvature="0"
  2260. id="path16-6-5"
  2261. d="M 0,407.675 H 407.675 V 0 H 0 Z" />
  2262. </clipPath>
  2263. </defs>
  2264. <sodipodi:namedview
  2265. pagecolor="#ffffff"
  2266. bordercolor="#666666"
  2267. borderopacity="1"
  2268. objecttolerance="10"
  2269. gridtolerance="10"
  2270. guidetolerance="10"
  2271. inkscape:pageopacity="0"
  2272. inkscape:pageshadow="2"
  2273. inkscape:window-width="1920"
  2274. inkscape:window-height="1040"
  2275. id="namedview18"
  2276. showgrid="false"
  2277. inkscape:zoom="4.9166667"
  2278. inkscape:cx="13.220339"
  2279. inkscape:cy="5.0847464"
  2280. inkscape:window-x="0"
  2281. inkscape:window-y="0"
  2282. inkscape:window-maximized="1"
  2283. inkscape:current-layer="svg16" />
  2284. <path
  2285. inkscape:connector-curvature="0"
  2286. d="M 46.499999,24 A 22.696228,22.696232 0 0 1 23.803767,46.696232 22.696228,22.696232 0 0 1 1.1075382,24 22.696228,22.696232 0 0 1 23.803767,1.3037694 22.696228,22.696232 0 0 1 46.499999,24 Z"
  2287. id="path2-0"
  2288. style="opacity:0.98999999;fill:#b7c8c4;stroke-width:1.15035486" />
  2289. <circle
  2290. style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:11.97478962;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  2291. id="path5277"
  2292. cx="23.80377"
  2293. cy="24"
  2294. r="19.322035" />
  2295. <path
  2296. style="fill:#e9ddaf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06524103"
  2297. d="m 27.101956,24.677789 c -1.454941,0 -2.630561,1.175686 -2.630561,2.630561 0,1.45494 1.17562,2.631288 2.630561,2.631288 h 6.597096 c 1.45494,0 2.631287,-1.176348 2.631287,-2.631288 0,-1.454875 -1.176347,-2.630561 -2.631287,-2.630561 z m -2.630561,6.576766 v 2.631288 c 0,1.454875 1.17562,2.630561 2.630561,2.630561 1.45494,0 2.631287,-1.175686 2.631287,-2.630561 0,-1.45494 -1.176347,-2.631288 -2.631287,-2.631288 z"
  2298. id="path22-5-3"
  2299. inkscape:connector-curvature="0"
  2300. sodipodi:nodetypes="ssssssscssssc" />
  2301. <path
  2302. inkscape:connector-curvature="0"
  2303. id="path5271"
  2304. d="m 27.101956,11.484324 c -1.454875,0 -2.630561,1.175621 -2.630561,2.630561 v 6.597096 c 0,1.45494 1.175686,2.630561 2.630561,2.630561 1.45494,0 2.631287,-1.175621 2.631287,-2.630561 v -6.597096 c 0,-1.45494 -1.176347,-2.630561 -2.631287,-2.630561 z m 6.577491,6.59637 c -1.45494,0 -2.631287,1.176347 -2.631287,2.631287 v 2.630561 h 2.631287 c 1.454875,0 2.630562,-1.175621 2.630562,-2.630561 0,-1.45494 -1.175687,-2.631287 -2.630562,-2.631287 z"
  2305. style="fill:#5fd3bc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06524103"
  2306. sodipodi:nodetypes="ssssssssscsss" />
  2307. <path
  2308. inkscape:connector-curvature="0"
  2309. id="path5273"
  2310. d="m 20.505586,11.483598 c -1.454941,0 -2.631287,1.176412 -2.631287,2.631287 0,1.45494 1.176346,2.630561 2.631287,2.630561 h 2.630561 v -2.630561 c 0,-1.454875 -1.175621,-2.631287 -2.630561,-2.631287 z m -6.597096,6.597096 c -1.45494,0 -2.631287,1.176347 -2.631287,2.631287 0,1.454875 1.176347,2.630561 2.631287,2.630561 h 6.597096 c 1.45494,0 2.630561,-1.175686 2.630561,-2.630561 0,-1.45494 -1.175621,-2.631287 -2.630561,-2.631287 z"
  2311. style="fill:#80b3ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06524103"
  2312. sodipodi:nodetypes="ssscsssssssss" />
  2313. <path
  2314. inkscape:connector-curvature="0"
  2315. id="path5275"
  2316. d="m 13.928094,24.677789 c -1.454875,0 -2.630561,1.175621 -2.630561,2.630561 0,1.45494 1.175686,2.631288 2.630561,2.631288 1.45494,0 2.631287,-1.176348 2.631287,-2.631288 v -2.630561 z m 6.577492,0 c -1.45494,0 -2.631287,1.175621 -2.631287,2.630561 v 6.577493 c 0,1.45494 1.176347,2.630561 2.631287,2.630561 1.454875,0 2.630561,-1.175621 2.630561,-2.630561 V 27.30835 c 0,-1.45494 -1.175686,-2.630561 -2.630561,-2.630561 z"
  2317. style="fill:#de87aa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06524103"
  2318. sodipodi:nodetypes="sssscssssssss" />
  2319. </svg>