com.github.mdh34.quickdocs.svg 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!-- Created with Inkscape (http://www.inkscape.org/) -->
  3. <svg
  4. xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
  5. xmlns:dc="http://purl.org/dc/elements/1.1/"
  6. xmlns:cc="http://creativecommons.org/ns#"
  7. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  8. xmlns:svg="http://www.w3.org/2000/svg"
  9. xmlns="http://www.w3.org/2000/svg"
  10. xmlns:xlink="http://www.w3.org/1999/xlink"
  11. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  12. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  13. width="48"
  14. height="48"
  15. viewBox="0 0 48 48.000001"
  16. id="svg4232"
  17. version="1.1"
  18. inkscape:version="0.92.1 r15371"
  19. sodipodi:docname="com.github.mdh34.quickdocs.svg">
  20. <defs
  21. id="defs4234">
  22. <radialGradient
  23. id="radial0"
  24. gradientUnits="userSpaceOnUse"
  25. cx="450.908936"
  26. cy="189.579361"
  27. fx="450.908936"
  28. fy="189.579361"
  29. r="21.166656"
  30. gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
  31. <stop
  32. offset="0"
  33. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  34. id="stop822" />
  35. <stop
  36. offset="0.222222"
  37. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  38. id="stop824" />
  39. <stop
  40. offset="1"
  41. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  42. id="stop826" />
  43. </radialGradient>
  44. <radialGradient
  45. id="radial1"
  46. gradientUnits="userSpaceOnUse"
  47. cx="450.908936"
  48. cy="189.579361"
  49. fx="450.908936"
  50. fy="189.579361"
  51. r="21.166656"
  52. gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
  53. <stop
  54. offset="0"
  55. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  56. id="stop829" />
  57. <stop
  58. offset="0.222222"
  59. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  60. id="stop831" />
  61. <stop
  62. offset="1"
  63. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  64. id="stop833" />
  65. </radialGradient>
  66. <radialGradient
  67. id="radial2"
  68. gradientUnits="userSpaceOnUse"
  69. cx="450.908936"
  70. cy="189.579361"
  71. fx="450.908936"
  72. fy="189.579361"
  73. r="21.166656"
  74. gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
  75. <stop
  76. offset="0"
  77. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  78. id="stop836" />
  79. <stop
  80. offset="0.222222"
  81. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  82. id="stop838" />
  83. <stop
  84. offset="1"
  85. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  86. id="stop840" />
  87. </radialGradient>
  88. <radialGradient
  89. id="radial3"
  90. gradientUnits="userSpaceOnUse"
  91. cx="450.908936"
  92. cy="189.579361"
  93. fx="450.908936"
  94. fy="189.579361"
  95. r="21.166656"
  96. gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
  97. <stop
  98. offset="0"
  99. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  100. id="stop843" />
  101. <stop
  102. offset="0.222222"
  103. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  104. id="stop845" />
  105. <stop
  106. offset="1"
  107. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  108. id="stop847" />
  109. </radialGradient>
  110. <linearGradient
  111. id="linear0"
  112. gradientUnits="userSpaceOnUse"
  113. x1="255.323059"
  114. y1="233.5"
  115. x2="255.323044"
  116. y2="254.666656"
  117. gradientTransform="matrix(0.0273881,0,0,0.082039,16.656575,23.142854)">
  118. <stop
  119. offset="0"
  120. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  121. id="stop850" />
  122. <stop
  123. offset="1"
  124. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  125. id="stop852" />
  126. </linearGradient>
  127. <linearGradient
  128. id="linear1"
  129. gradientUnits="userSpaceOnUse"
  130. x1="254"
  131. y1="233.5"
  132. x2="254"
  133. y2="-168.666672"
  134. gradientTransform="matrix(0.093759,0,0,0.093759,0,20.158175)">
  135. <stop
  136. offset="0"
  137. style="stop-color:rgb(100%,43.921569%,26.274511%);stop-opacity:1;"
  138. id="stop855" />
  139. <stop
  140. offset="1"
  141. style="stop-color:rgb(100%,54.11765%,39.607844%);stop-opacity:1;"
  142. id="stop857" />
  143. </linearGradient>
  144. <linearGradient
  145. id="linear2"
  146. gradientUnits="userSpaceOnUse"
  147. x1="254"
  148. y1="148.833328"
  149. x2="254"
  150. y2="-84"
  151. gradientTransform="matrix(0.093759,0,0,0.093759,0,20.158175)">
  152. <stop
  153. offset="0"
  154. style="stop-color:rgb(74.117649%,74.117649%,74.117649%);stop-opacity:1;"
  155. id="stop860" />
  156. <stop
  157. offset="1"
  158. style="stop-color:rgb(87.843138%,87.843138%,87.843138%);stop-opacity:1;"
  159. id="stop862" />
  160. </linearGradient>
  161. <linearGradient
  162. id="linear2-3"
  163. gradientUnits="userSpaceOnUse"
  164. x1="254"
  165. y1="148.83333"
  166. x2="254"
  167. y2="-84"
  168. gradientTransform="matrix(0.08461253,0,0,0.08461253,-19.162897,21.468351)">
  169. <stop
  170. offset="0"
  171. style="stop-color:rgb(74.117649%,74.117649%,74.117649%);stop-opacity:1;"
  172. id="stop860-6" />
  173. <stop
  174. offset="1"
  175. style="stop-color:rgb(87.843138%,87.843138%,87.843138%);stop-opacity:1;"
  176. id="stop862-7" />
  177. </linearGradient>
  178. <radialGradient
  179. id="radial0-1"
  180. gradientUnits="userSpaceOnUse"
  181. cx="450.908936"
  182. cy="189.579361"
  183. fx="450.908936"
  184. fy="189.579361"
  185. r="21.166656"
  186. gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
  187. <stop
  188. offset="0"
  189. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  190. id="stop822-2" />
  191. <stop
  192. offset="0.222222"
  193. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  194. id="stop824-7" />
  195. <stop
  196. offset="1"
  197. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  198. id="stop826-0" />
  199. </radialGradient>
  200. <radialGradient
  201. id="radial1-9"
  202. gradientUnits="userSpaceOnUse"
  203. cx="450.908936"
  204. cy="189.579361"
  205. fx="450.908936"
  206. fy="189.579361"
  207. r="21.166656"
  208. gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
  209. <stop
  210. offset="0"
  211. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  212. id="stop829-3" />
  213. <stop
  214. offset="0.222222"
  215. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  216. id="stop831-6" />
  217. <stop
  218. offset="1"
  219. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  220. id="stop833-0" />
  221. </radialGradient>
  222. <radialGradient
  223. id="radial2-6"
  224. gradientUnits="userSpaceOnUse"
  225. cx="450.908936"
  226. cy="189.579361"
  227. fx="450.908936"
  228. fy="189.579361"
  229. r="21.166656"
  230. gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
  231. <stop
  232. offset="0"
  233. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  234. id="stop836-2" />
  235. <stop
  236. offset="0.222222"
  237. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  238. id="stop838-6" />
  239. <stop
  240. offset="1"
  241. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  242. id="stop840-1" />
  243. </radialGradient>
  244. <radialGradient
  245. id="radial3-8"
  246. gradientUnits="userSpaceOnUse"
  247. cx="450.908936"
  248. cy="189.579361"
  249. fx="450.908936"
  250. fy="189.579361"
  251. r="21.166656"
  252. gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
  253. <stop
  254. offset="0"
  255. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  256. id="stop843-7" />
  257. <stop
  258. offset="0.222222"
  259. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  260. id="stop845-9" />
  261. <stop
  262. offset="1"
  263. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  264. id="stop847-2" />
  265. </radialGradient>
  266. <radialGradient
  267. id="radial0-3"
  268. gradientUnits="userSpaceOnUse"
  269. cx="450.908936"
  270. cy="189.579361"
  271. fx="450.908936"
  272. fy="189.579361"
  273. r="21.166656"
  274. gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
  275. <stop
  276. offset="0"
  277. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  278. id="stop822-6" />
  279. <stop
  280. offset="0.222222"
  281. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  282. id="stop824-75" />
  283. <stop
  284. offset="1"
  285. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  286. id="stop826-3" />
  287. </radialGradient>
  288. <radialGradient
  289. id="radial1-5"
  290. gradientUnits="userSpaceOnUse"
  291. cx="450.908936"
  292. cy="189.579361"
  293. fx="450.908936"
  294. fy="189.579361"
  295. r="21.166656"
  296. gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
  297. <stop
  298. offset="0"
  299. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  300. id="stop829-6" />
  301. <stop
  302. offset="0.222222"
  303. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  304. id="stop831-2" />
  305. <stop
  306. offset="1"
  307. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  308. id="stop833-9" />
  309. </radialGradient>
  310. <radialGradient
  311. id="radial2-1"
  312. gradientUnits="userSpaceOnUse"
  313. cx="450.908936"
  314. cy="189.579361"
  315. fx="450.908936"
  316. fy="189.579361"
  317. r="21.166656"
  318. gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
  319. <stop
  320. offset="0"
  321. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  322. id="stop836-27" />
  323. <stop
  324. offset="0.222222"
  325. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  326. id="stop838-0" />
  327. <stop
  328. offset="1"
  329. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  330. id="stop840-9" />
  331. </radialGradient>
  332. <radialGradient
  333. id="radial3-3"
  334. gradientUnits="userSpaceOnUse"
  335. cx="450.908936"
  336. cy="189.579361"
  337. fx="450.908936"
  338. fy="189.579361"
  339. r="21.166656"
  340. gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
  341. <stop
  342. offset="0"
  343. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  344. id="stop843-6" />
  345. <stop
  346. offset="0.222222"
  347. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  348. id="stop845-0" />
  349. <stop
  350. offset="1"
  351. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  352. id="stop847-6" />
  353. </radialGradient>
  354. <radialGradient
  355. id="radial0-7"
  356. gradientUnits="userSpaceOnUse"
  357. cx="450.908936"
  358. cy="189.579361"
  359. fx="450.908936"
  360. fy="189.579361"
  361. r="21.166656"
  362. gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
  363. <stop
  364. offset="0"
  365. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  366. id="stop822-5" />
  367. <stop
  368. offset="0.222222"
  369. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  370. id="stop824-9" />
  371. <stop
  372. offset="1"
  373. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  374. id="stop826-2" />
  375. </radialGradient>
  376. <radialGradient
  377. id="radial1-2"
  378. gradientUnits="userSpaceOnUse"
  379. cx="450.908936"
  380. cy="189.579361"
  381. fx="450.908936"
  382. fy="189.579361"
  383. r="21.166656"
  384. gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
  385. <stop
  386. offset="0"
  387. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  388. id="stop829-8" />
  389. <stop
  390. offset="0.222222"
  391. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  392. id="stop831-9" />
  393. <stop
  394. offset="1"
  395. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  396. id="stop833-7" />
  397. </radialGradient>
  398. <radialGradient
  399. id="radial2-3"
  400. gradientUnits="userSpaceOnUse"
  401. cx="450.908936"
  402. cy="189.579361"
  403. fx="450.908936"
  404. fy="189.579361"
  405. r="21.166656"
  406. gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
  407. <stop
  408. offset="0"
  409. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  410. id="stop836-6" />
  411. <stop
  412. offset="0.222222"
  413. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  414. id="stop838-1" />
  415. <stop
  416. offset="1"
  417. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  418. id="stop840-2" />
  419. </radialGradient>
  420. <radialGradient
  421. id="radial3-9"
  422. gradientUnits="userSpaceOnUse"
  423. cx="450.908936"
  424. cy="189.579361"
  425. fx="450.908936"
  426. fy="189.579361"
  427. r="21.166656"
  428. gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
  429. <stop
  430. offset="0"
  431. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
  432. id="stop843-3" />
  433. <stop
  434. offset="0.222222"
  435. style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
  436. id="stop845-1" />
  437. <stop
  438. offset="1"
  439. style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
  440. id="stop847-9" />
  441. </radialGradient>
  442. <linearGradient
  443. id="linearGradient3866">
  444. <stop
  445. style="stop-color:#000000;stop-opacity:0.52083331"
  446. offset="0"
  447. id="stop3868" />
  448. <stop
  449. style="stop-color:#2883c3;stop-opacity:0;"
  450. offset="1"
  451. id="stop3870" />
  452. </linearGradient>
  453. <linearGradient
  454. id="linearGradient3874">
  455. <stop
  456. style="stop-color:#000d0e;stop-opacity:0.84105963;"
  457. offset="0"
  458. id="stop3876" />
  459. <stop
  460. style="stop-color:#000000;stop-opacity:0;"
  461. offset="1"
  462. id="stop3878" />
  463. </linearGradient>
  464. <clipPath
  465. id="clipPath892"
  466. clipPathUnits="userSpaceOnUse">
  467. <path
  468. inkscape:connector-curvature="0"
  469. id="path894"
  470. d="M 38.524123,20.232391 V 51.2388 h 3.597154 V 20.232391 Z M 14.125746,21.0025 V 52.010565 H 17.7229 V 21.0025 Z M 5.9924018,21.259203 V 52.267267 H 9.591212 V 21.259203 Z m 24.3983772,1.37129 v 31.006409 h 3.597153 V 22.630493 Z m -20.330877,1.626338 v 31.008065 h 3.597154 V 24.256831 Z m 24.396721,0.08612 v 31.008065 h 3.598809 V 24.342951 Z M 1.9265577,25.798705 V 56.80677 H 5.5237118 V 25.798705 Z m 16.2650323,0.08612 v 31.008064 h 3.597155 V 25.884825 Z m 24.398377,0 v 31.008064 h 3.597154 V 25.884825 Z m -16.265033,2.22752 v 31.006408 h 3.597155 V 28.112345 Z M 22.25909,30.76715 v 31.008065 h 3.597155 V 30.76715 Z"
  471. style="fill:#ffffff;fill-opacity:0.25520833;stroke:none;stroke-width:1.52630627;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
  472. </clipPath>
  473. <clipPath
  474. clipPathUnits="userSpaceOnUse"
  475. id="clipPath3881">
  476. <circle
  477. r="103.5"
  478. cy="152.5"
  479. cx="539.5"
  480. style="fill:#008dff;fill-opacity:1;fill-rule:evenodd;stroke:none"
  481. id="path3883"
  482. transform="translate(-412,-17)" />
  483. </clipPath>
  484. <linearGradient
  485. id="linearGradient4019">
  486. <stop
  487. offset="0"
  488. style="stop-color:#adcce1;stop-opacity:1;"
  489. id="stop4021" />
  490. <stop
  491. offset="0.26238"
  492. style="stop-color:#6bbfe1;stop-opacity:1;"
  493. id="stop4023" />
  494. <stop
  495. offset="0.74620908"
  496. style="stop-color:#2596d1;stop-opacity:1;"
  497. id="stop4025" />
  498. <stop
  499. offset="1"
  500. style="stop-color:#2372c0;stop-opacity:1;"
  501. id="stop4027" />
  502. </linearGradient>
  503. <linearGradient
  504. id="linearGradient4085">
  505. <stop
  506. offset="0"
  507. style="stop-color:#ffffff;stop-opacity:1"
  508. id="stop4087" />
  509. <stop
  510. offset="0.06316455"
  511. style="stop-color:#ffffff;stop-opacity:0.2"
  512. id="stop4089" />
  513. <stop
  514. offset="0.95056331"
  515. style="stop-color:#ffffff;stop-opacity:0.2"
  516. id="stop4091" />
  517. <stop
  518. offset="1"
  519. style="stop-color:#ffffff;stop-opacity:0.39215687"
  520. id="stop4093" />
  521. </linearGradient>
  522. <filter
  523. style="color-interpolation-filters:sRGB"
  524. id="filter3174">
  525. <feGaussianBlur
  526. stdDeviation="1.71"
  527. id="feGaussianBlur3176" />
  528. </filter>
  529. <linearGradient
  530. gradientTransform="scale(1.0058652,0.994169)"
  531. gradientUnits="userSpaceOnUse"
  532. id="ButtonShadow"
  533. y2="7.0165396"
  534. x2="45.447727"
  535. y1="92.539597"
  536. x1="45.447727">
  537. <stop
  538. offset="0"
  539. style="stop-color:#000000;stop-opacity:1"
  540. id="stop3750" />
  541. <stop
  542. offset="1"
  543. style="stop-color:#000000;stop-opacity:0.58823532"
  544. id="stop3752" />
  545. </linearGradient>
  546. <linearGradient
  547. id="linearGradient5048-8-7">
  548. <stop
  549. offset="0"
  550. style="stop-color:#000000;stop-opacity:0"
  551. id="stop5050-4-2" />
  552. <stop
  553. offset="0.5"
  554. style="stop-color:#000000;stop-opacity:1"
  555. id="stop5056-7-4" />
  556. <stop
  557. offset="1"
  558. style="stop-color:#000000;stop-opacity:0"
  559. id="stop5052-0-1-7" />
  560. </linearGradient>
  561. <linearGradient
  562. id="linearGradient5060-29-0">
  563. <stop
  564. offset="0"
  565. style="stop-color:#000000;stop-opacity:1"
  566. id="stop5062-9-7" />
  567. <stop
  568. offset="1"
  569. style="stop-color:#000000;stop-opacity:0"
  570. id="stop5064-08-2" />
  571. </linearGradient>
  572. <linearGradient
  573. id="linearGradient3851">
  574. <stop
  575. id="stop3853"
  576. style="stop-color:#5b8da7;stop-opacity:1;"
  577. offset="0" />
  578. <stop
  579. id="stop3855"
  580. style="stop-color:#1c3447;stop-opacity:1;"
  581. offset="1" />
  582. </linearGradient>
  583. <filter
  584. style="color-interpolation-filters:sRGB"
  585. id="filter3174-0">
  586. <feGaussianBlur
  587. stdDeviation="1.71"
  588. id="feGaussianBlur3176-9" />
  589. </filter>
  590. <clipPath
  591. id="clipPath916"
  592. clipPathUnits="userSpaceOnUse">
  593. <g
  594. id="g920"
  595. inkscape:label="circulo"
  596. style="display:inline;opacity:0.98999999;fill:#126136;fill-opacity:1"
  597. transform="matrix(1.1503549,0,0,1.1503549,-4.4861245,-7.5255648)">
  598. <path
  599. style="fill:#126136;fill-opacity:1;stroke:none;stroke-width:1.4909519"
  600. d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
  601. id="path918"
  602. inkscape:connector-curvature="0" />
  603. </g>
  604. </clipPath>
  605. <clipPath
  606. clipPathUnits="userSpaceOnUse"
  607. id="clipPath3866">
  608. <circle
  609. r="312"
  610. cy="449"
  611. cx="1132"
  612. id="path3868"
  613. style="fill:#44abb1;fill-opacity:1;fill-rule:evenodd;stroke:none"
  614. transform="matrix(0.68724124,0,0,0.68724124,-521.35527,-47.661719)" />
  615. </clipPath>
  616. <linearGradient
  617. inkscape:collect="always"
  618. id="linearGradient4118">
  619. <stop
  620. style="stop-color:#0eb474;stop-opacity:1;"
  621. offset="0"
  622. id="stop4120" />
  623. <stop
  624. style="stop-color:#0eb474;stop-opacity:0;"
  625. offset="1"
  626. id="stop4122" />
  627. </linearGradient>
  628. <linearGradient
  629. id="linearGradient3837"
  630. inkscape:collect="always">
  631. <stop
  632. id="stop3839"
  633. offset="0"
  634. style="stop-color:#7db257;stop-opacity:1;" />
  635. <stop
  636. id="stop3841"
  637. offset="1"
  638. style="stop-color:#7db257;stop-opacity:0;" />
  639. </linearGradient>
  640. <linearGradient
  641. gradientUnits="userSpaceOnUse"
  642. y2="356.66208"
  643. x2="316.05505"
  644. y1="546.63525"
  645. x1="502.83536"
  646. id="linearGradient3843"
  647. xlink:href="#linearGradient3837"
  648. inkscape:collect="always" />
  649. <clipPath
  650. id="clipPath3847"
  651. clipPathUnits="userSpaceOnUse">
  652. <circle
  653. r="260.2153"
  654. cy="342.29437"
  655. cx="322.4407"
  656. style="fill:url(#linearGradient3843);fill-opacity:1;fill-rule:evenodd;stroke:none"
  657. id="path3849"
  658. transform="matrix(0.88586957,0,0,0.88586957,-24.010886,495.98978)" />
  659. </clipPath>
  660. <clipPath
  661. clipPathUnits="userSpaceOnUse"
  662. id="clipPath3344">
  663. <circle
  664. r="260.2153"
  665. cy="342.29437"
  666. cx="322.4407"
  667. transform="matrix(0.09964174,0,0,0.09964174,-8.1283951,-10.106867)"
  668. id="path3346"
  669. style="fill:#0eb474;fill-opacity:1;fill-rule:evenodd;stroke:none" />
  670. </clipPath>
  671. <linearGradient
  672. inkscape:collect="always"
  673. xlink:href="#linearGradient4118"
  674. id="linearGradient4124"
  675. x1="62.225403"
  676. y1="342.29437"
  677. x2="582.65601"
  678. y2="342.29437"
  679. gradientUnits="userSpaceOnUse" />
  680. <clipPath
  681. id="clipPath932"
  682. clipPathUnits="userSpaceOnUse">
  683. <g
  684. id="g936"
  685. inkscape:label="circulo"
  686. style="display:inline;opacity:0.98999999;fill:#32b6a1;fill-opacity:1"
  687. transform="matrix(1.1503549,0,0,1.1503549,-4.4861245,-7.5255648)">
  688. <path
  689. style="fill:#32b6a1;fill-opacity:1;stroke:none;stroke-width:1.4909519"
  690. d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
  691. id="path934"
  692. inkscape:connector-curvature="0" />
  693. </g>
  694. </clipPath>
  695. <clipPath
  696. id="clipPath942"
  697. clipPathUnits="userSpaceOnUse">
  698. <g
  699. id="g946"
  700. inkscape:label="circulo"
  701. style="display:inline;opacity:0.98999999;fill:#32b6a1;fill-opacity:1"
  702. transform="matrix(1.1503549,0,0,1.1503549,-4.4861245,-7.5255648)">
  703. <path
  704. style="fill:#32b6a1;fill-opacity:1;stroke:none;stroke-width:1.4909519"
  705. d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
  706. id="path944"
  707. inkscape:connector-curvature="0" />
  708. </g>
  709. </clipPath>
  710. <linearGradient
  711. id="linearGradient3822">
  712. <stop
  713. id="stop3824"
  714. style="stop-color:#e6e6e6;stop-opacity:1"
  715. offset="0" />
  716. <stop
  717. id="stop3826"
  718. style="stop-color:#f5f5f5;stop-opacity:1"
  719. offset="1" />
  720. </linearGradient>
  721. <linearGradient
  722. id="linearGradient3737">
  723. <stop
  724. id="stop3739"
  725. style="stop-color:#ffffff;stop-opacity:1"
  726. offset="0" />
  727. <stop
  728. id="stop3741"
  729. style="stop-color:#ffffff;stop-opacity:0"
  730. offset="1" />
  731. </linearGradient>
  732. <linearGradient
  733. id="linearGradient3700">
  734. <stop
  735. id="stop3702"
  736. style="stop-color:#f05517;stop-opacity:1"
  737. offset="0" />
  738. <stop
  739. id="stop3704"
  740. style="stop-color:#f37340;stop-opacity:1"
  741. offset="1" />
  742. </linearGradient>
  743. <filter
  744. id="filter3174-7"
  745. style="color-interpolation-filters:sRGB">
  746. <feGaussianBlur
  747. id="feGaussianBlur3176-5"
  748. stdDeviation="1.71" />
  749. </filter>
  750. <linearGradient
  751. x1="36.357143"
  752. y1="6"
  753. x2="36.357143"
  754. y2="63.893143"
  755. id="linearGradient3188"
  756. xlink:href="#linearGradient3737"
  757. gradientUnits="userSpaceOnUse" />
  758. <filter
  759. x="-0.192"
  760. y="-0.192"
  761. width="1.3839999"
  762. height="1.3839999"
  763. id="filter3794"
  764. style="color-interpolation-filters:sRGB">
  765. <feGaussianBlur
  766. id="feGaussianBlur3796"
  767. stdDeviation="5.28" />
  768. </filter>
  769. <linearGradient
  770. x1="48"
  771. y1="20.220806"
  772. x2="48"
  773. y2="138.66119"
  774. id="linearGradient3613"
  775. xlink:href="#linearGradient3737"
  776. gradientUnits="userSpaceOnUse" />
  777. <radialGradient
  778. cx="48"
  779. cy="90.171875"
  780. r="42"
  781. fx="48"
  782. fy="90.171875"
  783. id="radialGradient3619"
  784. xlink:href="#linearGradient3737"
  785. gradientUnits="userSpaceOnUse"
  786. gradientTransform="matrix(1.1573129,0,0,0.99590774,-7.5510206,0.19713193)" />
  787. <clipPath
  788. id="clipPath3613">
  789. <rect
  790. width="84"
  791. height="84"
  792. rx="6"
  793. ry="6"
  794. x="6"
  795. y="6"
  796. id="rect3615"
  797. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  798. </clipPath>
  799. <linearGradient
  800. x1="48"
  801. y1="90"
  802. x2="48"
  803. y2="5.9877172"
  804. id="linearGradient3617"
  805. xlink:href="#linearGradient3822"
  806. gradientUnits="userSpaceOnUse" />
  807. <linearGradient
  808. x1="45.447727"
  809. y1="92.539597"
  810. x2="45.447727"
  811. y2="7.0165396"
  812. id="ButtonShadow-0"
  813. gradientUnits="userSpaceOnUse"
  814. gradientTransform="matrix(1.0058652,0,0,0.994169,100,0)">
  815. <stop
  816. id="stop3750-8"
  817. style="stop-color:#000000;stop-opacity:1"
  818. offset="0" />
  819. <stop
  820. id="stop3752-5"
  821. style="stop-color:#000000;stop-opacity:0.58823532"
  822. offset="1" />
  823. </linearGradient>
  824. <linearGradient
  825. x1="32.251034"
  826. y1="6.1317081"
  827. x2="32.251034"
  828. y2="90.238609"
  829. id="linearGradient3780"
  830. xlink:href="#ButtonShadow-0"
  831. gradientUnits="userSpaceOnUse"
  832. gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" />
  833. <linearGradient
  834. x1="32.251034"
  835. y1="6.1317081"
  836. x2="32.251034"
  837. y2="90.238609"
  838. id="linearGradient3721"
  839. xlink:href="#ButtonShadow-0"
  840. gradientUnits="userSpaceOnUse"
  841. gradientTransform="translate(0,-97)" />
  842. <linearGradient
  843. gradientTransform="matrix(3.6907816,0,0,3.6907816,86.006062,-394.23151)"
  844. x1="47.973103"
  845. y1="79.776169"
  846. x2="47.973103"
  847. y2="16.436062"
  848. id="linearGradient3067"
  849. xlink:href="#linearGradient3700"
  850. gradientUnits="userSpaceOnUse" />
  851. <clipPath
  852. id="clipPath1109"
  853. clipPathUnits="userSpaceOnUse">
  854. <g
  855. id="g1113"
  856. inkscape:label="circulo"
  857. style="display:inline;opacity:0.98999999;fill:#fa6e31;fill-opacity:1"
  858. transform="matrix(12.332308,0,0,12.332308,-47.545312,-534.58518)">
  859. <path
  860. style="fill:#fa6e31;fill-opacity:1;stroke:none;stroke-width:1.4909519"
  861. d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
  862. id="path1111"
  863. inkscape:connector-curvature="0" />
  864. </g>
  865. </clipPath>
  866. <linearGradient
  867. inkscape:collect="always"
  868. id="linearGradient3361">
  869. <stop
  870. style="stop-color:#0068e0;stop-opacity:1;"
  871. offset="0"
  872. id="stop3363" />
  873. <stop
  874. style="stop-color:#00acf4;stop-opacity:1"
  875. offset="1"
  876. id="stop3365" />
  877. </linearGradient>
  878. <linearGradient
  879. id="linearGradient3026"
  880. y2="40.495998"
  881. gradientUnits="userSpaceOnUse"
  882. x2="71.204002"
  883. gradientTransform="matrix(1.5564685,0,0,1.58743,-88.730662,-20.236087)"
  884. y1="15.369"
  885. x1="71.204002"
  886. xlink:href="#linearGradient3361">
  887. <stop
  888. id="stop4808-4"
  889. stop-color="#fff"
  890. offset="0" />
  891. <stop
  892. id="stop4810-0"
  893. stop-color="#fff"
  894. stop-opacity=".23529"
  895. offset=".42448" />
  896. <stop
  897. id="stop4812-8"
  898. stop-color="#fff"
  899. stop-opacity=".15686"
  900. offset=".82090" />
  901. <stop
  902. id="stop4814-0"
  903. stop-color="#fff"
  904. stop-opacity=".39216"
  905. offset="1" />
  906. </linearGradient>
  907. <radialGradient
  908. id="radialGradient3029"
  909. fx="4.4590001"
  910. fy="8.5088997"
  911. gradientUnits="userSpaceOnUse"
  912. cy="8.6258001"
  913. cx="15.026"
  914. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  915. r="20">
  916. <stop
  917. id="stop4170"
  918. stop-color="#c24251"
  919. offset="0" />
  920. <stop
  921. id="stop4172"
  922. stop-color="#c24251"
  923. offset=".26238" />
  924. <stop
  925. id="stop4174"
  926. stop-color="#a63643"
  927. offset=".66094" />
  928. <stop
  929. id="stop4176"
  930. stop-color="#a63643"
  931. offset="1" />
  932. </radialGradient>
  933. <radialGradient
  934. id="radialGradient3032"
  935. gradientUnits="userSpaceOnUse"
  936. cy="3.99"
  937. cx="23.896"
  938. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  939. r="20.396999">
  940. <stop
  941. id="stop3244-9-33-7-0-9"
  942. stop-color="#fff"
  943. offset="0" />
  944. <stop
  945. id="stop3246-3-5-0-8-5"
  946. stop-color="#ddd"
  947. offset=".26238" />
  948. <stop
  949. id="stop3248-1-7-8-8-1"
  950. stop-color="#abacae"
  951. offset=".66094" />
  952. <stop
  953. id="stop3250-9-3-0-5-1"
  954. stop-color="#89898b"
  955. offset="1" />
  956. </radialGradient>
  957. <radialGradient
  958. id="radialGradient3035"
  959. gradientUnits="userSpaceOnUse"
  960. cy="186.17"
  961. cx="99.156998"
  962. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  963. r="62.769001">
  964. <stop
  965. id="stop3822-2-6-3"
  966. stop-color="#3d3d3d"
  967. offset="0" />
  968. <stop
  969. id="stop3864-8-7-7"
  970. stop-color="#686868"
  971. stop-opacity=".49804"
  972. offset=".5" />
  973. <stop
  974. id="stop3824-1-2-5"
  975. stop-color="#686868"
  976. stop-opacity="0"
  977. offset="1" />
  978. </radialGradient>
  979. <linearGradient
  980. id="linearGradient4433"
  981. y2="25.611"
  982. gradientUnits="userSpaceOnUse"
  983. x2="23.077999"
  984. gradientTransform="matrix(1,0,0,1.0521,0,-0.90547)"
  985. y1="13.035"
  986. x1="22.759001">
  987. <stop
  988. id="stop6305-1-0-2"
  989. stop-color="#fff"
  990. offset="0" />
  991. <stop
  992. id="stop6307-5-0-6"
  993. stop-color="#fff"
  994. stop-opacity="0"
  995. offset="1" />
  996. </linearGradient>
  997. <linearGradient
  998. id="linearGradient4829">
  999. <stop
  1000. style="stop-color:#f4fbfc;stop-opacity:1;"
  1001. offset="0"
  1002. id="stop4831" />
  1003. <stop
  1004. style="stop-color:#d6d6d6;stop-opacity:1;"
  1005. offset="1"
  1006. id="stop4833" />
  1007. </linearGradient>
  1008. <radialGradient
  1009. id="SVGID_4_"
  1010. cx="224.50391"
  1011. cy="186.51421"
  1012. r="127.0051"
  1013. gradientUnits="userSpaceOnUse">
  1014. <stop
  1015. offset="0"
  1016. style="stop-color:#FFFFFF"
  1017. id="stop27" />
  1018. <stop
  1019. offset="0.3984"
  1020. style="stop-color:#FDFEFF"
  1021. id="stop29" />
  1022. <stop
  1023. offset="0.6131"
  1024. style="stop-color:#F5FAFF"
  1025. id="stop31" />
  1026. <stop
  1027. offset="0.7841"
  1028. style="stop-color:#E7F3FF"
  1029. id="stop33" />
  1030. <stop
  1031. offset="0.9311"
  1032. style="stop-color:#D4EAFF"
  1033. id="stop35" />
  1034. <stop
  1035. offset="1"
  1036. style="stop-color:#C8E4FF"
  1037. id="stop37" />
  1038. </radialGradient>
  1039. <radialGradient
  1040. gradientUnits="userSpaceOnUse"
  1041. r="26.769501"
  1042. cy="286.66409"
  1043. cx="324.69339"
  1044. id="SVGID_5_">
  1045. <stop
  1046. id="stop50"
  1047. style="stop-color:#FFFFFF"
  1048. offset="0" />
  1049. <stop
  1050. id="stop52"
  1051. style="stop-color:#FDFEFF"
  1052. offset="0.3984" />
  1053. <stop
  1054. id="stop54"
  1055. style="stop-color:#F5FAFF"
  1056. offset="0.6131" />
  1057. <stop
  1058. id="stop56"
  1059. style="stop-color:#E7F3FF"
  1060. offset="0.7841" />
  1061. <stop
  1062. id="stop58"
  1063. style="stop-color:#D4EAFF"
  1064. offset="0.9311" />
  1065. <stop
  1066. id="stop60"
  1067. style="stop-color:#C8E4FF"
  1068. offset="1" />
  1069. </radialGradient>
  1070. <radialGradient
  1071. gradientUnits="userSpaceOnUse"
  1072. r="46.444901"
  1073. cy="392.77249"
  1074. cx="325"
  1075. id="SVGID_6_">
  1076. <stop
  1077. id="stop73"
  1078. style="stop-color:#FFFFFF"
  1079. offset="0" />
  1080. <stop
  1081. id="stop75"
  1082. style="stop-color:#FDFEFF"
  1083. offset="0.3984" />
  1084. <stop
  1085. id="stop77"
  1086. style="stop-color:#F5FAFF"
  1087. offset="0.6131" />
  1088. <stop
  1089. id="stop79"
  1090. style="stop-color:#E7F3FF"
  1091. offset="0.7841" />
  1092. <stop
  1093. id="stop81"
  1094. style="stop-color:#D4EAFF"
  1095. offset="0.9311" />
  1096. <stop
  1097. id="stop83"
  1098. style="stop-color:#C8E4FF"
  1099. offset="1" />
  1100. </radialGradient>
  1101. <clipPath
  1102. id="clipPath-349538100">
  1103. <g
  1104. id="g17"
  1105. transform="translate(0,-1004.4)">
  1106. <path
  1107. style="fill:#1890d0"
  1108. inkscape:connector-curvature="0"
  1109. id="path19"
  1110. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1111. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1112. </g>
  1113. </clipPath>
  1114. <clipPath
  1115. id="clipPath3914">
  1116. <g
  1117. id="g3912"
  1118. transform="translate(0,-1004.4)">
  1119. <path
  1120. style="fill:#1890d0"
  1121. inkscape:connector-curvature="0"
  1122. id="path3910"
  1123. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1124. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1125. </g>
  1126. </clipPath>
  1127. <clipPath
  1128. id="clipPath3920">
  1129. <g
  1130. id="g3918"
  1131. transform="translate(0,-1004.4)">
  1132. <path
  1133. style="fill:#1890d0"
  1134. inkscape:connector-curvature="0"
  1135. id="path3916"
  1136. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1137. transform="matrix(15.333,0,0,11.5,415,878.86)" />
  1138. </g>
  1139. </clipPath>
  1140. <linearGradient
  1141. id="linearGradient6987"
  1142. osb:paint="solid">
  1143. <stop
  1144. style="stop-color:#77d2fb;stop-opacity:1;"
  1145. offset="0"
  1146. id="stop6985" />
  1147. </linearGradient>
  1148. <filter
  1149. y="0%"
  1150. x="0%"
  1151. height="100%"
  1152. width="100%"
  1153. id="alpha">
  1154. <feColorMatrix
  1155. id="feColorMatrix929"
  1156. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  1157. in="SourceGraphic" />
  1158. </filter>
  1159. <mask
  1160. id="mask0">
  1161. <g
  1162. id="g934"
  1163. filter="url(#alpha)">
  1164. <rect
  1165. id="rect932"
  1166. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1167. height="384"
  1168. width="384" />
  1169. </g>
  1170. </mask>
  1171. <clipPath
  1172. id="clip1">
  1173. <rect
  1174. id="rect937"
  1175. height="384"
  1176. width="384" />
  1177. </clipPath>
  1178. <g
  1179. clip-path="url(#clip1)"
  1180. id="surface5">
  1181. <path
  1182. id="path940"
  1183. style="fill:rgb(100%,100%,100%)"
  1184. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z" />
  1185. </g>
  1186. <mask
  1187. id="mask1">
  1188. <g
  1189. id="g945"
  1190. filter="url(#alpha)">
  1191. <rect
  1192. id="rect943"
  1193. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1194. height="384"
  1195. width="384" />
  1196. </g>
  1197. </mask>
  1198. <clipPath
  1199. id="clip2">
  1200. <rect
  1201. id="rect948"
  1202. height="384"
  1203. width="384" />
  1204. </clipPath>
  1205. <g
  1206. clip-path="url(#clip2)"
  1207. id="surface8">
  1208. <path
  1209. id="path951"
  1210. style="fill:rgb(0%,0%,0%)"
  1211. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z" />
  1212. </g>
  1213. <linearGradient
  1214. gradientUnits="userSpaceOnUse"
  1215. y2="249.017"
  1216. y1="515.328"
  1217. x2="249.882"
  1218. x1="-248.932"
  1219. id="linearGradient1117">
  1220. <stop
  1221. id="stop954"
  1222. offset="0"
  1223. style="stop-color:#aa75e6;stop-opacity:1" />
  1224. <stop
  1225. id="stop956"
  1226. offset="1"
  1227. style="stop-color:#8935f0;stop-opacity:1" />
  1228. </linearGradient>
  1229. <linearGradient
  1230. id="linearGradient-1"
  1231. y2="116.54461"
  1232. x2="186.14996"
  1233. y1="116.54461"
  1234. x1="0"
  1235. gradientTransform="scale(0.69850138,1.4316364)"
  1236. gradientUnits="userSpaceOnUse">
  1237. <stop
  1238. id="stop4511"
  1239. offset="0%"
  1240. stop-color="#FFFFFF" />
  1241. <stop
  1242. id="stop4513"
  1243. offset="14.13%"
  1244. stop-opacity="0.9576"
  1245. stop-color="#FFFFFF" />
  1246. <stop
  1247. id="stop4515"
  1248. offset="100%"
  1249. stop-opacity="0.7"
  1250. stop-color="#FFFFFF" />
  1251. </linearGradient>
  1252. <linearGradient
  1253. id="linearGradient-2"
  1254. y2="112.26521"
  1255. x2="373.38791"
  1256. y1="112.26521"
  1257. x1="187.35059"
  1258. gradientTransform="scale(0.68561406,1.4585465)"
  1259. gradientUnits="userSpaceOnUse">
  1260. <stop
  1261. id="stop4518"
  1262. offset="0%"
  1263. stop-color="#F1F1F2" />
  1264. <stop
  1265. id="stop4520"
  1266. offset="9.191442%"
  1267. stop-color="#E4E5E6" />
  1268. <stop
  1269. id="stop4522"
  1270. offset="23.57%"
  1271. stop-color="#D9DADB" />
  1272. <stop
  1273. id="stop4524"
  1274. offset="43.8%"
  1275. stop-color="#D2D4D5" />
  1276. <stop
  1277. id="stop4526"
  1278. offset="100%"
  1279. stop-color="#D0D2D3" />
  1280. </linearGradient>
  1281. <filter
  1282. style="color-interpolation-filters:sRGB"
  1283. id="c"
  1284. height="1.1655999"
  1285. width="1.1655999"
  1286. x="-0.082800001"
  1287. y="-0.082800001">
  1288. <feGaussianBlur
  1289. stdDeviation="2.1101835"
  1290. id="feGaussianBlur10" />
  1291. </filter>
  1292. <filter
  1293. style="color-interpolation-filters:sRGB"
  1294. id="a"
  1295. height="1.031026"
  1296. width="1.031376"
  1297. x="-0.015688"
  1298. y="-0.015513">
  1299. <feGaussianBlur
  1300. stdDeviation=".7986332"
  1301. id="feGaussianBlur2" />
  1302. </filter>
  1303. <clipPath
  1304. id="clip1-8">
  1305. <path
  1306. d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
  1307. id="path952" />
  1308. </clipPath>
  1309. <clipPath
  1310. id="clip2-3">
  1311. <path
  1312. d="M 515.4375 185.300781 C 515.4375 356.074219 370.535156 494.394531 192 494.394531 C 13.460938 494.394531 -131.4375 356.074219 -131.4375 185.300781 C -131.4375 14.523438 13.460938 -123.796875 192 -123.796875 C 370.535156 -123.796875 515.4375 14.523438 515.4375 185.300781 Z M 515.4375 185.300781"
  1313. id="path955" />
  1314. </clipPath>
  1315. <radialGradient
  1316. r="20"
  1317. gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
  1318. cx="15.026"
  1319. cy="8.6258001"
  1320. gradientUnits="userSpaceOnUse"
  1321. fy="8.5088997"
  1322. fx="4.4590001"
  1323. id="radialGradient3029-4">
  1324. <stop
  1325. offset="0"
  1326. stop-color="#c24251"
  1327. id="stop4170-8" />
  1328. <stop
  1329. offset=".26238"
  1330. stop-color="#c24251"
  1331. id="stop4172-6" />
  1332. <stop
  1333. offset=".66094"
  1334. stop-color="#a63643"
  1335. id="stop4174-1" />
  1336. <stop
  1337. offset="1"
  1338. stop-color="#a63643"
  1339. id="stop4176-3" />
  1340. </radialGradient>
  1341. <radialGradient
  1342. r="20.396999"
  1343. gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
  1344. cx="23.896"
  1345. cy="3.99"
  1346. gradientUnits="userSpaceOnUse"
  1347. id="radialGradient3032-3">
  1348. <stop
  1349. offset="0"
  1350. stop-color="#fff"
  1351. id="stop3244-9-33-7-0-9-4" />
  1352. <stop
  1353. offset=".26238"
  1354. stop-color="#ddd"
  1355. id="stop3246-3-5-0-8-5-0" />
  1356. <stop
  1357. offset=".66094"
  1358. stop-color="#abacae"
  1359. id="stop3248-1-7-8-8-1-8" />
  1360. <stop
  1361. offset="1"
  1362. stop-color="#89898b"
  1363. id="stop3250-9-3-0-5-1-4" />
  1364. </radialGradient>
  1365. <radialGradient
  1366. r="62.769001"
  1367. gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
  1368. cx="99.156998"
  1369. cy="186.17"
  1370. gradientUnits="userSpaceOnUse"
  1371. id="radialGradient3035-3">
  1372. <stop
  1373. offset="0"
  1374. stop-color="#3d3d3d"
  1375. id="stop3822-2-6-3-0" />
  1376. <stop
  1377. offset=".5"
  1378. stop-opacity=".49804"
  1379. stop-color="#686868"
  1380. id="stop3864-8-7-7-2" />
  1381. <stop
  1382. offset="1"
  1383. stop-opacity="0"
  1384. stop-color="#686868"
  1385. id="stop3824-1-2-5-4" />
  1386. </radialGradient>
  1387. <radialGradient
  1388. gradientUnits="userSpaceOnUse"
  1389. r="127.0051"
  1390. cy="186.51421"
  1391. cx="224.50391"
  1392. id="SVGID_4_-1">
  1393. <stop
  1394. id="stop27-7"
  1395. style="stop-color:#FFFFFF"
  1396. offset="0" />
  1397. <stop
  1398. id="stop29-6"
  1399. style="stop-color:#FDFEFF"
  1400. offset="0.3984" />
  1401. <stop
  1402. id="stop31-2"
  1403. style="stop-color:#F5FAFF"
  1404. offset="0.6131" />
  1405. <stop
  1406. id="stop33-6"
  1407. style="stop-color:#E7F3FF"
  1408. offset="0.7841" />
  1409. <stop
  1410. id="stop35-2"
  1411. style="stop-color:#D4EAFF"
  1412. offset="0.9311" />
  1413. <stop
  1414. id="stop37-5"
  1415. style="stop-color:#C8E4FF"
  1416. offset="1" />
  1417. </radialGradient>
  1418. <radialGradient
  1419. id="SVGID_5_-9"
  1420. cx="324.69339"
  1421. cy="286.66409"
  1422. r="26.769501"
  1423. gradientUnits="userSpaceOnUse">
  1424. <stop
  1425. offset="0"
  1426. style="stop-color:#FFFFFF"
  1427. id="stop50-2" />
  1428. <stop
  1429. offset="0.3984"
  1430. style="stop-color:#FDFEFF"
  1431. id="stop52-0" />
  1432. <stop
  1433. offset="0.6131"
  1434. style="stop-color:#F5FAFF"
  1435. id="stop54-5" />
  1436. <stop
  1437. offset="0.7841"
  1438. style="stop-color:#E7F3FF"
  1439. id="stop56-9" />
  1440. <stop
  1441. offset="0.9311"
  1442. style="stop-color:#D4EAFF"
  1443. id="stop58-7" />
  1444. <stop
  1445. offset="1"
  1446. style="stop-color:#C8E4FF"
  1447. id="stop60-2" />
  1448. </radialGradient>
  1449. <radialGradient
  1450. id="SVGID_6_-7"
  1451. cx="325"
  1452. cy="392.77249"
  1453. r="46.444901"
  1454. gradientUnits="userSpaceOnUse">
  1455. <stop
  1456. offset="0"
  1457. style="stop-color:#FFFFFF"
  1458. id="stop73-5" />
  1459. <stop
  1460. offset="0.3984"
  1461. style="stop-color:#FDFEFF"
  1462. id="stop75-3" />
  1463. <stop
  1464. offset="0.6131"
  1465. style="stop-color:#F5FAFF"
  1466. id="stop77-2" />
  1467. <stop
  1468. offset="0.7841"
  1469. style="stop-color:#E7F3FF"
  1470. id="stop79-0" />
  1471. <stop
  1472. offset="0.9311"
  1473. style="stop-color:#D4EAFF"
  1474. id="stop81-7" />
  1475. <stop
  1476. offset="1"
  1477. style="stop-color:#C8E4FF"
  1478. id="stop83-2" />
  1479. </radialGradient>
  1480. <clipPath
  1481. id="clipPath-349538100-0">
  1482. <g
  1483. transform="translate(0,-1004.4)"
  1484. id="g17-3">
  1485. <path
  1486. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1487. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1488. id="path19-8"
  1489. inkscape:connector-curvature="0"
  1490. style="fill:#1890d0" />
  1491. </g>
  1492. </clipPath>
  1493. <clipPath
  1494. id="clipPath3914-3">
  1495. <g
  1496. transform="translate(0,-1004.4)"
  1497. id="g3912-6">
  1498. <path
  1499. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1500. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1501. id="path3910-2"
  1502. inkscape:connector-curvature="0"
  1503. style="fill:#1890d0" />
  1504. </g>
  1505. </clipPath>
  1506. <clipPath
  1507. id="clipPath3920-2">
  1508. <g
  1509. transform="translate(0,-1004.4)"
  1510. id="g3918-2">
  1511. <path
  1512. transform="matrix(15.333,0,0,11.5,415,878.86)"
  1513. d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
  1514. id="path3916-9"
  1515. inkscape:connector-curvature="0"
  1516. style="fill:#1890d0" />
  1517. </g>
  1518. </clipPath>
  1519. <filter
  1520. id="alpha-3"
  1521. width="100%"
  1522. height="100%"
  1523. x="0%"
  1524. y="0%">
  1525. <feColorMatrix
  1526. in="SourceGraphic"
  1527. values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
  1528. id="feColorMatrix929-8" />
  1529. </filter>
  1530. <mask
  1531. id="mask0-2">
  1532. <g
  1533. filter="url(#alpha)"
  1534. id="g934-8"
  1535. style="filter:url(#alpha-3)">
  1536. <rect
  1537. width="384"
  1538. height="384"
  1539. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1540. id="rect932-5" />
  1541. </g>
  1542. </mask>
  1543. <clipPath
  1544. id="clip1-4">
  1545. <rect
  1546. width="384"
  1547. height="384"
  1548. id="rect937-5" />
  1549. </clipPath>
  1550. <g
  1551. id="surface5-6"
  1552. clip-path="url(#clip1-4)">
  1553. <path
  1554. d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z"
  1555. style="fill:rgb(100%,100%,100%)"
  1556. id="path940-7" />
  1557. </g>
  1558. <mask
  1559. id="mask1-7">
  1560. <g
  1561. filter="url(#alpha)"
  1562. id="g945-3"
  1563. style="filter:url(#alpha-3)">
  1564. <rect
  1565. width="384"
  1566. height="384"
  1567. style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
  1568. id="rect943-6" />
  1569. </g>
  1570. </mask>
  1571. <clipPath
  1572. id="clip2-4">
  1573. <rect
  1574. width="384"
  1575. height="384"
  1576. id="rect948-5" />
  1577. </clipPath>
  1578. <g
  1579. id="surface8-5"
  1580. clip-path="url(#clip2-4)">
  1581. <path
  1582. d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z"
  1583. style="fill:rgb(0%,0%,0%)"
  1584. id="path951-0" />
  1585. </g>
  1586. <filter
  1587. y="-0.082800001"
  1588. x="-0.082800001"
  1589. width="1.1655999"
  1590. height="1.1655999"
  1591. id="c-3"
  1592. style="color-interpolation-filters:sRGB">
  1593. <feGaussianBlur
  1594. id="feGaussianBlur10-1"
  1595. stdDeviation="2.1101835" />
  1596. </filter>
  1597. <filter
  1598. y="-0.015513"
  1599. x="-0.015688"
  1600. width="1.031376"
  1601. height="1.031026"
  1602. id="a-2"
  1603. style="color-interpolation-filters:sRGB">
  1604. <feGaussianBlur
  1605. id="feGaussianBlur2-9"
  1606. stdDeviation=".7986332" />
  1607. </filter>
  1608. <linearGradient
  1609. gradientTransform="matrix(2.7297298,0,0,2.7297298,-1.5135184,-62.511679)"
  1610. gradientUnits="userSpaceOnUse"
  1611. xlink:href="#linearGradient3924"
  1612. id="linearGradient4136"
  1613. y2="42.261559"
  1614. x2="23.99999"
  1615. y1="5.5907431"
  1616. x1="23.99999" />
  1617. <linearGradient
  1618. id="linearGradient3924">
  1619. <stop
  1620. offset="0"
  1621. style="stop-color:#ffffff;stop-opacity:1"
  1622. id="stop3926" />
  1623. <stop
  1624. offset="0.03750312"
  1625. style="stop-color:#ffffff;stop-opacity:0.23529412"
  1626. id="stop3928" />
  1627. <stop
  1628. offset="0.96667296"
  1629. style="stop-color:#ffffff;stop-opacity:0.15686275"
  1630. id="stop3930" />
  1631. <stop
  1632. offset="1"
  1633. style="stop-color:#ffffff;stop-opacity:0.39215687"
  1634. id="stop3932" />
  1635. </linearGradient>
  1636. <linearGradient
  1637. gradientTransform="matrix(2.0808079,0,0,2.3409091,-2.5858604,-71.907281)"
  1638. gradientUnits="userSpaceOnUse"
  1639. xlink:href="#linearGradient27416-1-2-0"
  1640. id="linearGradient3913-9"
  1641. y2="55.052982"
  1642. x2="30.271185"
  1643. y1="10.028973"
  1644. x1="30.271185" />
  1645. <linearGradient
  1646. id="linearGradient27416-1-2-0">
  1647. <stop
  1648. offset="0"
  1649. style="stop-color:#55c1ec;stop-opacity:1"
  1650. id="stop27420-2-0-8" />
  1651. <stop
  1652. offset="1"
  1653. style="stop-color:#3689e6;stop-opacity:1"
  1654. id="stop27422-3-5-3" />
  1655. </linearGradient>
  1656. <linearGradient
  1657. id="linearGradient4632-92-3-0-8-1-9">
  1658. <stop
  1659. offset="0"
  1660. style="stop-color:#fafafa;stop-opacity:1"
  1661. id="stop4634-68-8-0-2-9-4" />
  1662. <stop
  1663. offset="1"
  1664. style="stop-color:#e1e1e1;stop-opacity:1"
  1665. id="stop4636-8-21-7-1-4-8" />
  1666. </linearGradient>
  1667. <radialGradient
  1668. gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
  1669. gradientUnits="userSpaceOnUse"
  1670. xlink:href="#linearGradient3688-166-749-5"
  1671. id="radialGradient4093"
  1672. fy="43.5"
  1673. fx="4.9929786"
  1674. r="2.5"
  1675. cy="43.5"
  1676. cx="4.9929786" />
  1677. <linearGradient
  1678. id="linearGradient3688-166-749-5">
  1679. <stop
  1680. offset="0"
  1681. style="stop-color:#181818;stop-opacity:1"
  1682. id="stop2883-0" />
  1683. <stop
  1684. offset="1"
  1685. style="stop-color:#181818;stop-opacity:0"
  1686. id="stop2885-5" />
  1687. </linearGradient>
  1688. <radialGradient
  1689. gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
  1690. gradientUnits="userSpaceOnUse"
  1691. xlink:href="#linearGradient3688-166-749-5"
  1692. id="radialGradient4095"
  1693. fy="43.5"
  1694. fx="4.9929786"
  1695. r="2.5"
  1696. cy="43.5"
  1697. cx="4.9929786" />
  1698. <linearGradient
  1699. gradientUnits="userSpaceOnUse"
  1700. xlink:href="#linearGradient3702-501-757-0"
  1701. id="linearGradient4097"
  1702. y2="39.999443"
  1703. x2="25.058096"
  1704. y1="47.027729"
  1705. x1="25.058096" />
  1706. <linearGradient
  1707. id="linearGradient3702-501-757-0">
  1708. <stop
  1709. offset="0"
  1710. style="stop-color:#181818;stop-opacity:0"
  1711. id="stop2895-0" />
  1712. <stop
  1713. offset="0.5"
  1714. style="stop-color:#181818;stop-opacity:1"
  1715. id="stop2897-2" />
  1716. <stop
  1717. offset="1"
  1718. style="stop-color:#181818;stop-opacity:0"
  1719. id="stop2899-6" />
  1720. </linearGradient>
  1721. <radialGradient
  1722. gradientTransform="matrix(1.5563924,0,0,0.16978827,70.270355,38.132101)"
  1723. gradientUnits="userSpaceOnUse"
  1724. xlink:href="#linearGradient5060-29-0"
  1725. id="radialGradient4432"
  1726. fy="93.467628"
  1727. fx="-4.0287771"
  1728. r="35.338131"
  1729. cy="93.467628"
  1730. cx="-4.0287771" />
  1731. <radialGradient
  1732. r="27.5"
  1733. fy="4.3419166"
  1734. fx="31.999998"
  1735. cy="4.3419166"
  1736. cx="31.999998"
  1737. gradientTransform="matrix(1.8994991e-8,4.3639682,-4.363968,1.8994991e-8,82.947989,-187.94014)"
  1738. gradientUnits="userSpaceOnUse"
  1739. id="radialGradient3044"
  1740. xlink:href="#linearGradient4632-92-3-0-8-1-9" />
  1741. <linearGradient
  1742. id="linearGradient4011-9-9-70-61-7">
  1743. <stop
  1744. offset="0"
  1745. style="stop-color:#ffffff;stop-opacity:1;"
  1746. id="stop4013-5-4-3-8-3" />
  1747. <stop
  1748. id="stop4015-1-5-70-9-5"
  1749. style="stop-color:#ffffff;stop-opacity:0.23529412;"
  1750. offset="0.507761" />
  1751. <stop
  1752. offset="0.83456558"
  1753. style="stop-color:#ffffff;stop-opacity:0.15686275;"
  1754. id="stop4017-7-0-13-0-1" />
  1755. <stop
  1756. offset="1"
  1757. style="stop-color:#ffffff;stop-opacity:0.39215687;"
  1758. id="stop4019-1-12-7-0-7" />
  1759. </linearGradient>
  1760. <linearGradient
  1761. id="linearGradient4215-8-4-07-7">
  1762. <stop
  1763. id="stop4217-1-2-1-2"
  1764. offset="0"
  1765. style="stop-color:#e9e9e9;stop-opacity:1;" />
  1766. <stop
  1767. id="stop4219-3-4-0-96"
  1768. offset="1"
  1769. style="stop-color:#ffffff;stop-opacity:1;" />
  1770. </linearGradient>
  1771. <linearGradient
  1772. y2="44.340794"
  1773. x2="71.204407"
  1774. y1="6.2375584"
  1775. x1="71.204407"
  1776. gradientTransform="matrix(-0.94594587,0,0,0.94594587,149.85603,-20.984768)"
  1777. gradientUnits="userSpaceOnUse"
  1778. id="linearGradient3882"
  1779. xlink:href="#linearGradient4011-9-9-70-61-7" />
  1780. <linearGradient
  1781. y2="8.0928917"
  1782. x2="38.976662"
  1783. y1="59.967686"
  1784. x1="38.976662"
  1785. gradientTransform="matrix(-0.70588238,0,0,0.70588238,104.58823,-20.99819)"
  1786. gradientUnits="userSpaceOnUse"
  1787. id="linearGradient3885"
  1788. xlink:href="#linearGradient4215-8-4-07-7" />
  1789. <linearGradient
  1790. spreadMethod="pad"
  1791. gradientTransform="matrix(0.87539065,-0.87968181,0.97932539,0.97445279,137.39425,31.066659)"
  1792. gradientUnits="userSpaceOnUse"
  1793. xlink:href="#linearGradient3155-40"
  1794. id="linearGradient3176"
  1795. y2="31.210939"
  1796. x2="23.575972"
  1797. y1="25.356892"
  1798. x1="23.575972" />
  1799. <linearGradient
  1800. id="linearGradient3155-40">
  1801. <stop
  1802. offset="0"
  1803. style="stop-color:#181818;stop-opacity:1"
  1804. id="stop2541" />
  1805. <stop
  1806. offset="0.13482948"
  1807. style="stop-color:#dbdbdb;stop-opacity:1"
  1808. id="stop2543" />
  1809. <stop
  1810. offset="0.20224422"
  1811. style="stop-color:#a4a4a4;stop-opacity:1"
  1812. id="stop2545" />
  1813. <stop
  1814. offset="0.26965895"
  1815. style="stop-color:#ffffff;stop-opacity:1"
  1816. id="stop2547" />
  1817. <stop
  1818. offset="0.44650277"
  1819. style="stop-color:#8d8d8d;stop-opacity:1"
  1820. id="stop2549" />
  1821. <stop
  1822. offset="0.57114136"
  1823. style="stop-color:#959595;stop-opacity:1"
  1824. id="stop2551" />
  1825. <stop
  1826. offset="0.72038066"
  1827. style="stop-color:#cecece;stop-opacity:1"
  1828. id="stop2553" />
  1829. <stop
  1830. offset="1"
  1831. style="stop-color:#181818;stop-opacity:1"
  1832. id="stop2555" />
  1833. </linearGradient>
  1834. <linearGradient
  1835. gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,134.1863,26.565393)"
  1836. gradientUnits="userSpaceOnUse"
  1837. xlink:href="#linearGradient3240-907"
  1838. id="linearGradient3171-9"
  1839. y2="30.000141"
  1840. x2="30.037716"
  1841. y1="24.989594"
  1842. x1="30.037716" />
  1843. <linearGradient
  1844. id="linearGradient3240-907">
  1845. <stop
  1846. offset="0"
  1847. style="stop-color:#565656;stop-opacity:1"
  1848. id="stop2591" />
  1849. <stop
  1850. offset="0.5"
  1851. style="stop-color:#9a9a9a;stop-opacity:1"
  1852. id="stop2593" />
  1853. <stop
  1854. offset="1"
  1855. style="stop-color:#545454;stop-opacity:1"
  1856. id="stop2595" />
  1857. </linearGradient>
  1858. <linearGradient
  1859. gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,133.94269,26.810201)"
  1860. gradientUnits="userSpaceOnUse"
  1861. xlink:href="#linearGradient3223-699"
  1862. id="linearGradient3168"
  1863. y2="30.000141"
  1864. x2="30.037716"
  1865. y1="24.989594"
  1866. x1="30.037716" />
  1867. <linearGradient
  1868. id="linearGradient3223-699">
  1869. <stop
  1870. offset="0"
  1871. style="stop-color:#b1b1b1;stop-opacity:1"
  1872. id="stop2599" />
  1873. <stop
  1874. offset="0.5"
  1875. style="stop-color:#ffffff;stop-opacity:1"
  1876. id="stop2601" />
  1877. <stop
  1878. offset="1"
  1879. style="stop-color:#8f8f8f;stop-opacity:1"
  1880. id="stop2603" />
  1881. </linearGradient>
  1882. <linearGradient
  1883. gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,135.03285,25.71469)"
  1884. gradientUnits="userSpaceOnUse"
  1885. xlink:href="#linearGradient3240-907"
  1886. id="linearGradient3165"
  1887. y2="30.000141"
  1888. x2="30.037716"
  1889. y1="24.989594"
  1890. x1="30.037716" />
  1891. <linearGradient
  1892. gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,134.78924,25.959496)"
  1893. gradientUnits="userSpaceOnUse"
  1894. xlink:href="#linearGradient3223-699"
  1895. id="linearGradient3162"
  1896. y2="30.000141"
  1897. x2="30.037716"
  1898. y1="24.989594"
  1899. x1="30.037716" />
  1900. <linearGradient
  1901. gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,135.8835,24.859875)"
  1902. gradientUnits="userSpaceOnUse"
  1903. xlink:href="#linearGradient3240-907"
  1904. id="linearGradient3159"
  1905. y2="30.000141"
  1906. x2="30.037716"
  1907. y1="24.989594"
  1908. x1="30.037716" />
  1909. <linearGradient
  1910. gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,135.63989,25.104684)"
  1911. gradientUnits="userSpaceOnUse"
  1912. xlink:href="#linearGradient3223-699"
  1913. id="linearGradient3156"
  1914. y2="30.000141"
  1915. x2="30.037716"
  1916. y1="24.989594"
  1917. x1="30.037716" />
  1918. <linearGradient
  1919. gradientTransform="matrix(0.85064445,-0.85481442,1.1461221,1.1404197,133.86321,26.890061)"
  1920. gradientUnits="userSpaceOnUse"
  1921. xlink:href="#linearGradient3290-678"
  1922. id="linearGradient3151"
  1923. y2="26.02973"
  1924. x2="9"
  1925. y1="29.056757"
  1926. x1="9" />
  1927. <linearGradient
  1928. id="linearGradient3290-678">
  1929. <stop
  1930. offset="0"
  1931. style="stop-color:#ece5a5;stop-opacity:1"
  1932. id="stop2607" />
  1933. <stop
  1934. offset="1"
  1935. style="stop-color:#fcfbf2;stop-opacity:1"
  1936. id="stop2609" />
  1937. </linearGradient>
  1938. <linearGradient
  1939. gradientTransform="matrix(0.74712277,0.03224699,0.03220731,0.74620134,164.80582,22.054915)"
  1940. gradientUnits="userSpaceOnUse"
  1941. xlink:href="#linearGradient3191-577"
  1942. id="linearGradient3153"
  1943. y2="41.391716"
  1944. x2="9.5220556"
  1945. y1="37.371799"
  1946. x1="5.5178981" />
  1947. <linearGradient
  1948. id="linearGradient3191-577">
  1949. <stop
  1950. offset="0"
  1951. style="stop-color:#dbce48;stop-opacity:1"
  1952. id="stop2613" />
  1953. <stop
  1954. offset="1"
  1955. style="stop-color:#c5b625;stop-opacity:1"
  1956. id="stop2615" />
  1957. </linearGradient>
  1958. <linearGradient
  1959. gradientTransform="matrix(0.68819266,0,0,0.68819266,-66.372441,271.1295)"
  1960. gradientUnits="userSpaceOnUse"
  1961. xlink:href="#linearGradient5060-29-0"
  1962. id="linearGradient3024-3"
  1963. y2="30.093096"
  1964. x2="30.643436"
  1965. y1="3.915791"
  1966. x1="30.643436" />
  1967. <linearGradient
  1968. gradientTransform="matrix(0.63721544,0,0,-0.63721544,-50.151075,311.70922)"
  1969. gradientUnits="userSpaceOnUse"
  1970. xlink:href="#linearGradient5060-29-0"
  1971. id="linearGradient3453-5"
  1972. y2="17.313972"
  1973. x2="19.868132"
  1974. y1="13.067885"
  1975. x1="19.868132" />
  1976. <clipPath
  1977. id="clipPath8125-5"
  1978. clipPathUnits="userSpaceOnUse">
  1979. <path
  1980. d="m 15,7.9999995 c -0.277,0 -0.5,0.223 -0.5,0.5 l 0,1.6875005 c -0.548639,0.140741 -1.055018,0.37601 -1.53125,0.65625 L 11.75,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 L 9.625,11.0625 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.21875,1.21875 C 10.56351,13.444982 10.328241,13.951361 10.1875,14.5 L 8.5,14.5 C 8.223,14.5 8,14.723 8,15 l 0,2 c 0,0.277 0.223,0.5 0.5,0.5 l 1.6875,0 c 0.140741,0.548639 0.37601,1.055018 0.65625,1.53125 L 9.625,20.25 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.4375,1.4375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.21875,-1.21875 c 0.476232,0.28024 0.982611,0.515509 1.53125,0.65625 l 0,1.6875 c 0,0.277 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-1.6875 c 0.548639,-0.140741 1.055018,-0.37601 1.53125,-0.65625 L 20.25,22.375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.4375,-1.4375 c 0.195869,-0.195869 0.195869,-0.491631 0,-0.6875 L 21.15625,19.03125 C 21.43649,18.555018 21.671759,18.048639 21.8125,17.5 l 1.6875,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-2 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -1.6875,0 C 21.671759,13.951361 21.43649,13.444982 21.15625,12.96875 L 22.375,11.75 c 0.195869,-0.19587 0.195869,-0.491631 0,-0.6875 L 20.9375,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 l -1.21875,1.21875 C 18.555018,10.56351 18.048639,10.328241 17.5,10.1875 l 0,-1.6875005 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -2,0 z M 16,13 c 1.656854,0 3,1.343146 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.656854 1.343146,-3 3,-3 z"
  1981. id="path8127-2"
  1982. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
  1983. inkscape:connector-curvature="0" />
  1984. </clipPath>
  1985. <clipPath
  1986. id="clipPath4340"
  1987. clipPathUnits="userSpaceOnUse">
  1988. <path
  1989. d="m 15,7.9999995 c -0.277,0 -0.5,0.223 -0.5,0.5 l 0,1.6875005 c -0.548639,0.140741 -1.055018,0.37601 -1.53125,0.65625 L 11.75,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 L 9.625,11.0625 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.21875,1.21875 C 10.56351,13.444982 10.328241,13.951361 10.1875,14.5 L 8.5,14.5 C 8.223,14.5 8,14.723 8,15 l 0,2 c 0,0.277 0.223,0.5 0.5,0.5 l 1.6875,0 c 0.140741,0.548639 0.37601,1.055018 0.65625,1.53125 L 9.625,20.25 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.4375,1.4375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.21875,-1.21875 c 0.476232,0.28024 0.982611,0.515509 1.53125,0.65625 l 0,1.6875 c 0,0.277 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-1.6875 c 0.548639,-0.140741 1.055018,-0.37601 1.53125,-0.65625 L 20.25,22.375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.4375,-1.4375 c 0.195869,-0.195869 0.195869,-0.491631 0,-0.6875 L 21.15625,19.03125 C 21.43649,18.555018 21.671759,18.048639 21.8125,17.5 l 1.6875,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-2 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -1.6875,0 C 21.671759,13.951361 21.43649,13.444982 21.15625,12.96875 L 22.375,11.75 c 0.195869,-0.19587 0.195869,-0.491631 0,-0.6875 L 20.9375,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 l -1.21875,1.21875 C 18.555018,10.56351 18.048639,10.328241 17.5,10.1875 l 0,-1.6875005 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -2,0 z M 16,13 c 1.656854,0 3,1.343146 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.656854 1.343146,-3 3,-3 z"
  1990. id="path4342"
  1991. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
  1992. inkscape:connector-curvature="0" />
  1993. </clipPath>
  1994. <clipPath
  1995. id="clipPath8125-5-7"
  1996. clipPathUnits="userSpaceOnUse">
  1997. <path
  1998. d="m 15,7.9999995 c -0.277,0 -0.5,0.223 -0.5,0.5 V 10.1875 c -0.548639,0.140741 -1.055018,0.37601 -1.53125,0.65625 L 11.75,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 L 9.625,11.0625 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.21875,1.21875 C 10.56351,13.444982 10.328241,13.951361 10.1875,14.5 H 8.5 C 8.223,14.5 8,14.723 8,15 v 2 c 0,0.277 0.223,0.5 0.5,0.5 h 1.6875 c 0.140741,0.548639 0.37601,1.055018 0.65625,1.53125 L 9.625,20.25 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.4375,1.4375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.21875,-1.21875 c 0.476232,0.28024 0.982611,0.515509 1.53125,0.65625 V 23.5 c 0,0.277 0.223,0.5 0.5,0.5 h 2 c 0.277,0 0.5,-0.223 0.5,-0.5 v -1.6875 c 0.548639,-0.140741 1.055018,-0.37601 1.53125,-0.65625 L 20.25,22.375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.4375,-1.4375 c 0.195869,-0.195869 0.195869,-0.491631 0,-0.6875 L 21.15625,19.03125 C 21.43649,18.555018 21.671759,18.048639 21.8125,17.5 H 23.5 c 0.277,0 0.5,-0.223 0.5,-0.5 v -2 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 H 21.8125 C 21.671759,13.951361 21.43649,13.444982 21.15625,12.96875 L 22.375,11.75 c 0.195869,-0.19587 0.195869,-0.491631 0,-0.6875 L 20.9375,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 l -1.21875,1.21875 C 18.555018,10.56351 18.048639,10.328241 17.5,10.1875 V 8.4999995 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 z M 16,13 c 1.656854,0 3,1.343146 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.656854 1.343146,-3 3,-3 z"
  1999. id="path8127-2-8"
  2000. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
  2001. inkscape:connector-curvature="0" />
  2002. </clipPath>
  2003. <filter
  2004. id="filter1712"
  2005. style="color-interpolation-filters:sRGB"
  2006. inkscape:menu-tooltip="Adds a small scale graininess"
  2007. inkscape:menu="Image Effects"
  2008. inkscape:label="Film Grain">
  2009. <feTurbulence
  2010. id="feTurbulence1702"
  2011. result="result0"
  2012. seed="0"
  2013. baseFrequency="1"
  2014. numOctaves="3"
  2015. type="fractalNoise" />
  2016. <feColorMatrix
  2017. id="feColorMatrix1704"
  2018. type="saturate"
  2019. values="0"
  2020. result="result4" />
  2021. <feComposite
  2022. k4="0"
  2023. id="feComposite1706"
  2024. result="result2"
  2025. k3="0.5"
  2026. k2="0.5"
  2027. k1="1.25"
  2028. operator="arithmetic"
  2029. in2="result4"
  2030. in="SourceGraphic" />
  2031. <feBlend
  2032. id="feBlend1708"
  2033. in2="SourceGraphic"
  2034. in="result2"
  2035. mode="normal"
  2036. result="result5" />
  2037. <feComposite
  2038. id="feComposite1710"
  2039. result="result3"
  2040. operator="in"
  2041. in2="SourceGraphic"
  2042. in="result5" />
  2043. </filter>
  2044. </defs>
  2045. <sodipodi:namedview
  2046. id="base"
  2047. pagecolor="#ffffff"
  2048. bordercolor="#666666"
  2049. borderopacity="1.0"
  2050. inkscape:pageopacity="0.0"
  2051. inkscape:pageshadow="2"
  2052. inkscape:zoom="3.959798"
  2053. inkscape:cx="-74.103308"
  2054. inkscape:cy="13.044843"
  2055. inkscape:document-units="px"
  2056. inkscape:current-layer="layer1"
  2057. showgrid="true"
  2058. units="px"
  2059. inkscape:window-width="1920"
  2060. inkscape:window-height="1040"
  2061. inkscape:window-x="0"
  2062. inkscape:window-y="0"
  2063. inkscape:window-maximized="1">
  2064. <inkscape:grid
  2065. type="xygrid"
  2066. id="grid4780"
  2067. spacingx="0.1"
  2068. spacingy="0.1" />
  2069. </sodipodi:namedview>
  2070. <metadata
  2071. id="metadata4237">
  2072. <rdf:RDF>
  2073. <cc:Work
  2074. rdf:about="">
  2075. <dc:format>image/svg+xml</dc:format>
  2076. <dc:type
  2077. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  2078. <dc:title></dc:title>
  2079. </cc:Work>
  2080. </rdf:RDF>
  2081. </metadata>
  2082. <g
  2083. inkscape:label="Capa 1"
  2084. inkscape:groupmode="layer"
  2085. id="layer1"
  2086. transform="translate(0,-1004.3622)">
  2087. <path
  2088. id="path4322"
  2089. d="m 3.5830609,1008.3443 39.9999651,0 c 0.83101,0 1.500018,0.669 1.500018,1.5 l 0,20.0893 0,19.9107 c 0,0.831 -0.669008,1.5 -1.500018,1.5 l -39.9999651,0 c -0.8310097,0 -1.5000174,-0.669 -1.5000174,-1.5 l 0,-19.9554 0,-20.0446 c 0,-0.831 0.6690077,-1.5 1.5000174,-1.5 z"
  2090. style="opacity:1;fill:#618a99;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
  2091. inkscape:connector-curvature="0"
  2092. sodipodi:nodetypes="ssscsssscss" />
  2093. <path
  2094. sodipodi:nodetypes="sssccccsscss"
  2095. inkscape:connector-curvature="0"
  2096. style="opacity:1;fill:#93b5c2;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
  2097. d="m 3.5830609,1008.3443 39.9999651,0 c 0.83101,0 1.500018,0.669 1.500018,1.5 l 0,20.0893 0,6.5818 -15.031006,14.8289 -6.468995,0 -19.9999821,0 c -0.8310097,0 -1.5000174,-0.669 -1.5000174,-1.5 l 0,-19.9554 0,-20.0446 c 0,-0.831 0.6690077,-1.5 1.5000174,-1.5 z"
  2098. id="path4377" />
  2099. <path
  2100. inkscape:connector-curvature="0"
  2101. id="path948-5-6"
  2102. d="m 13.067879,1019.3292 v 21.0303 h 7.007827 v -3.5051 h -3.502773 v -14.0203 h 3.507336 v -3.505 z m 11.683514,0 v 3.505 H 26.2917 c 1.530537,0 2.44088,0.5134 3.146793,1.4057 0.705906,0.8924 1.154664,2.2805 1.154664,3.9683 v 3.2084 c 0,1.6879 -0.450758,3.0999 -1.161506,4.0094 -0.710763,0.9094 -1.618653,1.4285 -3.139951,1.4285 h -1.540307 v 3.505 H 26.2917 c 2.461881,0 4.580631,-1.0852 5.901087,-2.7748 1.320464,-1.6896 1.905422,-3.8728 1.905422,-6.1681 v -3.2084 c 0,-2.2953 -0.586972,-4.4677 -1.912264,-6.1429 -1.3253,-1.6754 -3.441582,-2.7361 -5.894245,-2.7361 z"
  2103. style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.505054;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
  2104. </g>
  2105. </svg>