color2.svg 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <svg
  3. xmlns:dc="http://purl.org/dc/elements/1.1/"
  4. xmlns:cc="http://creativecommons.org/ns#"
  5. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  6. xmlns:svg="http://www.w3.org/2000/svg"
  7. xmlns="http://www.w3.org/2000/svg"
  8. xmlns:xlink="http://www.w3.org/1999/xlink"
  9. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  10. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  11. sodipodi:docname="four.svg"
  12. inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
  13. id="svg2403"
  14. version="1.1"
  15. viewBox="0 0 400 400"
  16. height="400mm"
  17. width="400mm">
  18. <defs
  19. id="defs2397">
  20. <inkscape:path-effect
  21. message="Use fill-rule evenodd on &lt;b&gt;fill and stroke&lt;/b&gt; dialog if no flatten result after convert clip to paths."
  22. hide_clip="false"
  23. flatten="false"
  24. inverse="true"
  25. lpeversion="1"
  26. is_visible="true"
  27. id="path-effect4439"
  28. effect="powerclip" />
  29. <inkscape:path-effect
  30. message="Use fill-rule evenodd on &lt;b&gt;fill and stroke&lt;/b&gt; dialog if no flatten result after convert clip to paths."
  31. hide_clip="false"
  32. flatten="false"
  33. inverse="true"
  34. lpeversion="1"
  35. is_visible="true"
  36. id="path-effect5747"
  37. effect="powerclip" />
  38. <inkscape:perspective
  39. id="perspective2405"
  40. inkscape:persp3d-origin="197.66619 : 47.764227 : 1"
  41. inkscape:vp_z="317.51924 : 120.63248 : 1"
  42. inkscape:vp_y="-435.35778 : -4.8707947 : 0"
  43. inkscape:vp_x="-4.3425461e-14 : 236.40501 : 0"
  44. sodipodi:type="inkscape:persp3d" />
  45. <filter
  46. inkscape:label="filter0"
  47. id="filter5561"
  48. style="color-interpolation-filters:sRGB">
  49. <feBlend
  50. id="feBlend5563"
  51. in2="SourceGraphic"
  52. mode="normal" />
  53. </filter>
  54. <clipPath
  55. id="clipPath5743"
  56. clipPathUnits="userSpaceOnUse">
  57. <path
  58. d="M 64.745179,9.015 C 43.931136,40.37911 23.117041,71.742827 2.303,103.10695 c 21.142461,23.66263 42.285184,47.32537 63.427649,70.98796 l 72.769731,13.90716 C 159.31442,156.63796 180.12852,125.27373 200.94256,93.909563 179.8001,70.246976 158.65737,46.58424 137.51491,22.921651 113.25832,18.285991 89.001772,13.650661 64.745179,9.015 Z"
  59. style="display:none;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  60. id="path5745" />
  61. <path
  62. d="M -4.2088941,2.4505682 H 207.45595 V 194.56314 H -4.2088941 Z M 64.745179,9.015 C 43.931136,40.37911 23.117041,71.742827 2.303,103.10695 c 21.142461,23.66263 42.285184,47.32537 63.427649,70.98796 l 72.769731,13.90716 C 159.31442,156.63796 180.12852,125.27373 200.94256,93.909563 179.8001,70.246976 158.65737,46.58424 137.51491,22.921651 113.25832,18.285991 89.001772,13.650661 64.745179,9.015 Z"
  63. class="powerclip"
  64. style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  65. id="lpe_path-effect5747" />
  66. </clipPath>
  67. <clipPath
  68. clipPathUnits="userSpaceOnUse"
  69. id="clipPath67">
  70. <path
  71. d="M 64.745179,9.015 C 43.931136,40.37911 23.117041,71.742827 2.303,103.10695 c 21.142461,23.66263 42.285184,47.32537 63.427649,70.98796 l 72.769731,13.90716 C 159.31442,156.63796 180.12852,125.27373 200.94256,93.909563 179.8001,70.246976 158.65737,46.58424 137.51491,22.921651 113.25832,18.285991 89.001772,13.650661 64.745179,9.015 Z"
  72. style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  73. id="path69" />
  74. </clipPath>
  75. <inkscape:perspective
  76. sodipodi:type="inkscape:persp3d"
  77. inkscape:vp_x="284.56184 : 428.79838 : 0"
  78. inkscape:vp_y="-204.00173 : 38.986614 : 0"
  79. inkscape:vp_z="275.62925 : -308.48353 : 0"
  80. inkscape:persp3d-origin="-222.74973 : -88.752136 : 1"
  81. id="perspective2405-9" />
  82. <meshgradient
  83. inkscape:collect="always"
  84. id="meshgradient3465"
  85. gradientUnits="userSpaceOnUse"
  86. x="2.3031054"
  87. y="9.0146418">
  88. <meshrow
  89. id="meshrow3467">
  90. <meshpatch
  91. id="meshpatch3469">
  92. <stop
  93. path="c 66.2131,0 132.426,0 198.639,0"
  94. style="stop-color:#ffffff;stop-opacity:1"
  95. id="stop3471" />
  96. <stop
  97. path="c 0,59.6624 0,119.325 0,178.987"
  98. style="stop-color:#b3b3b3;stop-opacity:1"
  99. id="stop3473" />
  100. <stop
  101. path="c -66.2131,0 -132.426,0 -198.639,0"
  102. style="stop-color:#ffffff;stop-opacity:1"
  103. id="stop3475" />
  104. <stop
  105. path="c 0,-59.6624 0,-119.325 0,-178.987"
  106. style="stop-color:#b3b3b3;stop-opacity:1"
  107. id="stop3477" />
  108. </meshpatch>
  109. </meshrow>
  110. </meshgradient>
  111. <filter
  112. style="color-interpolation-filters:sRGB"
  113. id="filter5561-5"
  114. inkscape:label="filter0">
  115. <feBlend
  116. mode="normal"
  117. in2="SourceGraphic"
  118. id="feBlend5563-5" />
  119. </filter>
  120. <clipPath
  121. clipPathUnits="userSpaceOnUse"
  122. id="clipPath5743-8">
  123. <path
  124. id="path5745-9"
  125. style="display:none;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  126. d="M 64.745179,9.015 C 43.931136,40.37911 23.117041,71.742827 2.303,103.10695 c 21.142461,23.66263 42.285184,47.32537 63.427649,70.98796 l 72.769731,13.90716 C 159.31442,156.63796 180.12852,125.27373 200.94256,93.909563 179.8001,70.246976 158.65737,46.58424 137.51491,22.921651 113.25832,18.285991 89.001772,13.650661 64.745179,9.015 Z" />
  127. <path
  128. id="lpe_path-effect5747-3"
  129. style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  130. class="powerclip"
  131. d="M -4.2088941,2.4505682 H 207.45595 V 194.56314 H -4.2088941 Z M 64.745179,9.015 C 43.931136,40.37911 23.117041,71.742827 2.303,103.10695 c 21.142461,23.66263 42.285184,47.32537 63.427649,70.98796 l 72.769731,13.90716 C 159.31442,156.63796 180.12852,125.27373 200.94256,93.909563 179.8001,70.246976 158.65737,46.58424 137.51491,22.921651 113.25832,18.285991 89.001772,13.650661 64.745179,9.015 Z" />
  132. </clipPath>
  133. <clipPath
  134. id="clipPath67-1"
  135. clipPathUnits="userSpaceOnUse">
  136. <path
  137. id="path69-2"
  138. style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  139. d="M 64.745179,9.015 C 43.931136,40.37911 23.117041,71.742827 2.303,103.10695 c 21.142461,23.66263 42.285184,47.32537 63.427649,70.98796 l 72.769731,13.90716 C 159.31442,156.63796 180.12852,125.27373 200.94256,93.909563 179.8001,70.246976 158.65737,46.58424 137.51491,22.921651 113.25832,18.285991 89.001772,13.650661 64.745179,9.015 Z" />
  140. </clipPath>
  141. <inkscape:perspective
  142. sodipodi:type="inkscape:persp3d"
  143. inkscape:vp_x="284.56184 : 428.79838 : 0"
  144. inkscape:vp_y="-204.00173 : 38.986614 : 0"
  145. inkscape:vp_z="275.62925 : -308.48353 : 0"
  146. inkscape:persp3d-origin="57.788625 : -110.47831 : 1"
  147. id="perspective2405-5" />
  148. <filter
  149. style="color-interpolation-filters:sRGB"
  150. id="filter5561-2"
  151. inkscape:label="filter0">
  152. <feBlend
  153. mode="normal"
  154. in2="SourceGraphic"
  155. id="feBlend5563-1" />
  156. </filter>
  157. <clipPath
  158. clipPathUnits="userSpaceOnUse"
  159. id="clipPath5743-3">
  160. <path
  161. id="path5745-2"
  162. style="display:none;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  163. d="M 64.745179,9.015 C 43.931136,40.37911 23.117041,71.742827 2.303,103.10695 c 21.142461,23.66263 42.285184,47.32537 63.427649,70.98796 l 72.769731,13.90716 C 159.31442,156.63796 180.12852,125.27373 200.94256,93.909563 179.8001,70.246976 158.65737,46.58424 137.51491,22.921651 113.25832,18.285991 89.001772,13.650661 64.745179,9.015 Z" />
  164. <path
  165. id="lpe_path-effect5747-2"
  166. style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  167. class="powerclip"
  168. d="M -4.2088941,2.4505682 H 207.45595 V 194.56314 H -4.2088941 Z M 64.745179,9.015 C 43.931136,40.37911 23.117041,71.742827 2.303,103.10695 c 21.142461,23.66263 42.285184,47.32537 63.427649,70.98796 l 72.769731,13.90716 C 159.31442,156.63796 180.12852,125.27373 200.94256,93.909563 179.8001,70.246976 158.65737,46.58424 137.51491,22.921651 113.25832,18.285991 89.001772,13.650661 64.745179,9.015 Z" />
  169. </clipPath>
  170. <clipPath
  171. id="clipPath67-6"
  172. clipPathUnits="userSpaceOnUse">
  173. <path
  174. id="path69-6"
  175. style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  176. d="M 64.745179,9.015 C 43.931136,40.37911 23.117041,71.742827 2.303,103.10695 c 21.142461,23.66263 42.285184,47.32537 63.427649,70.98796 l 72.769731,13.90716 C 159.31442,156.63796 180.12852,125.27373 200.94256,93.909563 179.8001,70.246976 158.65737,46.58424 137.51491,22.921651 113.25832,18.285991 89.001772,13.650661 64.745179,9.015 Z" />
  177. </clipPath>
  178. <inkscape:perspective
  179. sodipodi:type="inkscape:persp3d"
  180. inkscape:vp_x="284.56184 : 428.79838 : 0"
  181. inkscape:vp_y="-204.00173 : 38.986614 : 0"
  182. inkscape:vp_z="275.62925 : -308.48353 : 0"
  183. inkscape:persp3d-origin="125.27281 : -57.712259 : 1"
  184. id="perspective2405-94" />
  185. <filter
  186. style="color-interpolation-filters:sRGB"
  187. id="filter5561-7"
  188. inkscape:label="filter0">
  189. <feBlend
  190. mode="normal"
  191. in2="SourceGraphic"
  192. id="feBlend5563-8" />
  193. </filter>
  194. <clipPath
  195. clipPathUnits="userSpaceOnUse"
  196. id="clipPath5743-7">
  197. <path
  198. id="path5745-0"
  199. style="display:none;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  200. d="M 64.745179,9.015 C 43.931136,40.37911 23.117041,71.742827 2.303,103.10695 c 21.142461,23.66263 42.285184,47.32537 63.427649,70.98796 l 72.769731,13.90716 C 159.31442,156.63796 180.12852,125.27373 200.94256,93.909563 179.8001,70.246976 158.65737,46.58424 137.51491,22.921651 113.25832,18.285991 89.001772,13.650661 64.745179,9.015 Z" />
  201. <path
  202. id="lpe_path-effect5747-7"
  203. style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  204. class="powerclip"
  205. d="M -4.2088941,2.4505682 H 207.45595 V 194.56314 H -4.2088941 Z M 64.745179,9.015 C 43.931136,40.37911 23.117041,71.742827 2.303,103.10695 c 21.142461,23.66263 42.285184,47.32537 63.427649,70.98796 l 72.769731,13.90716 C 159.31442,156.63796 180.12852,125.27373 200.94256,93.909563 179.8001,70.246976 158.65737,46.58424 137.51491,22.921651 113.25832,18.285991 89.001772,13.650661 64.745179,9.015 Z" />
  206. </clipPath>
  207. <clipPath
  208. id="clipPath67-5"
  209. clipPathUnits="userSpaceOnUse">
  210. <path
  211. id="path69-5"
  212. style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  213. d="M 64.745179,9.015 C 43.931136,40.37911 23.117041,71.742827 2.303,103.10695 c 21.142461,23.66263 42.285184,47.32537 63.427649,70.98796 l 72.769731,13.90716 C 159.31442,156.63796 180.12852,125.27373 200.94256,93.909563 179.8001,70.246976 158.65737,46.58424 137.51491,22.921651 113.25832,18.285991 89.001772,13.650661 64.745179,9.015 Z" />
  214. </clipPath>
  215. <clipPath
  216. id="clipPath4435"
  217. clipPathUnits="userSpaceOnUse">
  218. <path
  219. id="path4437"
  220. style="display:none;opacity:1;fill:#800080;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linejoin:round"
  221. d="m 107.14643,236.39074 -55.052969,0.61598 -17.445448,4.11189 v 72.1398 l 68.643877,-0.76843 3.85454,-18.2423 z" />
  222. <path
  223. d="m 28.565739,230.32398 h 84.640921 v 89.01353 H 28.565739 Z m 78.580691,6.06676 -55.052969,0.61598 -17.445448,4.11189 v 72.1398 l 68.643877,-0.76843 3.85454,-18.2423 z"
  224. class="powerclip"
  225. style="opacity:1;fill:#800080;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linejoin:round"
  226. id="lpe_path-effect4439" />
  227. </clipPath>
  228. <clipPath
  229. id="clipPath4509"
  230. clipPathUnits="userSpaceOnUse">
  231. <path
  232. id="path4511"
  233. style="opacity:1;fill:#ff0000;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linejoin:round"
  234. d="m 107.14643,236.39074 -55.052969,0.61598 -17.445448,4.11189 v 72.1398 l 68.643877,-0.76843 3.85454,-18.2423 z" />
  235. </clipPath>
  236. </defs>
  237. <sodipodi:namedview
  238. inkscape:window-maximized="0"
  239. inkscape:window-y="0"
  240. inkscape:window-x="208"
  241. inkscape:window-height="1040"
  242. inkscape:window-width="1410"
  243. showgrid="false"
  244. inkscape:document-rotation="0"
  245. inkscape:current-layer="svg2403"
  246. inkscape:document-units="mm"
  247. inkscape:cy="1072.0362"
  248. inkscape:cx="430.19671"
  249. inkscape:zoom="0.28111979"
  250. inkscape:pageshadow="2"
  251. inkscape:pageopacity="0.0"
  252. borderopacity="1.0"
  253. bordercolor="#666666"
  254. pagecolor="#ffffff"
  255. id="base" />
  256. <metadata
  257. id="metadata2400">
  258. <rdf:RDF>
  259. <cc:Work
  260. rdf:about="">
  261. <dc:format>image/svg+xml</dc:format>
  262. <dc:type
  263. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  264. <dc:title></dc:title>
  265. </cc:Work>
  266. </rdf:RDF>
  267. </metadata>
  268. <g
  269. sodipodi:insensitive="true"
  270. style="display:none"
  271. inkscape:label="base0"
  272. id="layer4"
  273. inkscape:groupmode="layer">
  274. <g
  275. inkscape:transform-center-y="33.351485"
  276. inkscape:transform-center-x="-57.720495"
  277. inkscape:corner7="0.57853176 : 0.15763317 : 0.23011852 : 1"
  278. inkscape:corner0="0.7979643 : 0.51434472 : 0 : 1"
  279. inkscape:perspectiveID="#perspective2405-94"
  280. style="fill:#b3b3b3;stroke-width:50"
  281. id="g2729-4"
  282. sodipodi:type="inkscape:box3d">
  283. <path
  284. points="184.97366,189.58622 257.74343,203.49319 320.18556,109.40087 247.41579,95.493898 "
  285. inkscape:box3dsidetype="3"
  286. style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  287. id="path2735-2"
  288. sodipodi:type="inkscape:box3dside"
  289. d="m 247.41579,95.493898 -62.44213,94.092322 72.76977,13.90697 62.44213,-94.09232 z" />
  290. <path
  291. points="257.74343,203.49319 321.17083,274.48097 248.40106,260.57399 184.97366,189.58622 "
  292. inkscape:box3dsidetype="14"
  293. style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  294. id="path2737-6"
  295. sodipodi:type="inkscape:box3dside"
  296. d="m 184.97366,189.58622 72.76977,13.90697 63.4274,70.98778 -72.76977,-13.90698 z" />
  297. <path
  298. points="257.74343,203.49319 321.17083,274.48097 383.61296,180.38865 320.18556,109.40087 "
  299. inkscape:box3dsidetype="13"
  300. style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  301. id="path2739-1"
  302. sodipodi:type="inkscape:box3dside"
  303. d="m 320.18556,109.40087 -62.44213,94.09232 63.4274,70.98778 62.44213,-94.09232 z" />
  304. <path
  305. points="184.97366,189.58622 248.40106,260.57399 310.84318,166.48167 247.41579,95.493898 "
  306. inkscape:box3dsidetype="5"
  307. style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  308. id="path2733-3"
  309. sodipodi:type="inkscape:box3dside"
  310. d="m 247.41579,95.493898 -62.44213,94.092322 63.4274,70.98777 62.44212,-94.09232 z" />
  311. <path
  312. points="320.18556,109.40087 383.61296,180.38865 310.84318,166.48167 247.41579,95.493898 "
  313. inkscape:box3dsidetype="6"
  314. style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  315. id="path2731-0"
  316. sodipodi:type="inkscape:box3dside"
  317. d="m 247.41579,95.493898 72.76977,13.906972 63.4274,70.98778 -72.76978,-13.90698 z" />
  318. <path
  319. points="248.40106,260.57399 321.17083,274.48097 383.61296,180.38865 310.84318,166.48167 "
  320. inkscape:box3dsidetype="11"
  321. style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  322. id="path2741-2"
  323. sodipodi:type="inkscape:box3dside"
  324. d="m 310.84318,166.48167 -62.44212,94.09232 72.76977,13.90698 62.44213,-94.09232 z" />
  325. </g>
  326. <ellipse
  327. transform="matrix(0.99044852,0.13788305,-0.17420632,0.98470917,0,0)"
  328. ry="58.370235"
  329. rx="43.326023"
  330. cx="275.21497"
  331. cy="143.44583"
  332. id="path2837-8"
  333. style="fill:#b3b3b3;stroke-width:18.127" />
  334. <ellipse
  335. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)"
  336. ry="42.078251"
  337. rx="52.985146"
  338. cy="386.34595"
  339. cx="372.40372"
  340. id="path2839-0"
  341. style="fill:#b3b3b3;stroke-width:27.1643" />
  342. <ellipse
  343. transform="matrix(-0.56188005,0.82721872,0.81012106,0.58626262,0,0)"
  344. ry="53.173599"
  345. rx="19.549366"
  346. cy="336.94769"
  347. cx="-73.222923"
  348. id="path2841-3"
  349. style="fill:#b3b3b3;stroke-width:27.3889" />
  350. </g>
  351. <g
  352. sodipodi:insensitive="true"
  353. transform="translate(-263.72916,16.029054)"
  354. id="g2864"
  355. inkscape:label="variant 0 base 0"
  356. style="display:inline">
  357. <g
  358. sodipodi:insensitive="true"
  359. inkscape:groupmode="layer"
  360. id="layer34"
  361. inkscape:label="outset"
  362. style="display:none">
  363. <path
  364. d="m 334.26806,1.9805184 c -1.39752,0.29774 -1.79259,1.84606 -2.60265,2.82286 -20.33492,30.6417296 -40.66985,61.2834596 -61.00477,91.9251896 -0.59659,1.16905 0.35119,2.30724 1.16211,3.07226 20.79207,23.293882 41.60583,46.568862 62.40625,69.855472 1.39732,0.90677 3.15371,0.79831 4.71628,1.22981 22.97934,4.3915 45.95868,8.78299 68.93801,13.17449 1.39269,0.0707 2.07685,-1.32274 2.69798,-2.32857 10.94821,-16.42934 21.83935,-32.89858 32.76561,-49.34326 9.54394,-14.39924 19.12294,-28.77884 28.64497,-43.190342 0.52688,-1.20289 -0.48039,-2.27256 -1.26969,-3.05721 -20.77266,-23.26656 -41.56182,-46.51879 -62.34082,-69.77984 -1.39733,-0.90678 -3.15371,-0.79832 -4.71629,-1.22982 -23.01318,-4.3886 -46.02195,-8.8137796 -69.03788,-13.1795396 -0.11987,-0.008 -0.23952,0.0228 -0.35911,0.0285 z"
  365. style="display:inline;opacity:1;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  366. id="path5737" />
  367. </g>
  368. <g
  369. sodipodi:insensitive="true"
  370. style="display:none"
  371. inkscape:label="border"
  372. inkscape:groupmode="layer"
  373. id="g5655">
  374. <path
  375. transform="translate(269.68212,-5.4999516)"
  376. id="path5702"
  377. style="opacity:1;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  378. d="M 64.585938,7.4804688 C 63.188421,7.7782062 62.793351,9.32653 61.983291,10.303326 41.648366,40.945056 21.313441,71.586786 0.97851562,102.22852 c -0.59658869,1.16905 0.35118958,2.30724 1.16210938,3.07226 20.792077,23.29388 41.605835,46.56886 62.40625,69.85547 1.397324,0.90677 3.153713,0.79831 4.716288,1.22981 22.979336,4.3915 45.958677,8.78299 68.938007,13.17449 1.39269,0.0707 2.07685,-1.32274 2.69798,-2.32857 10.94821,-16.42934 21.83935,-32.89858 32.76561,-49.34326 9.54394,-14.39924 19.12294,-28.77884 28.64497,-43.190341 0.52688,-1.202887 -0.48039,-2.272555 -1.26969,-3.057204 C 180.26738,68.374609 159.47822,45.12238 138.69922,21.861328 137.30189,20.954553 135.54551,21.063013 133.98293,20.631515 110.96975,16.242906 87.960976,11.817726 64.94505,7.4519744 c -0.11987,-0.00833 -0.239523,0.02283 -0.359112,0.028494 z"
  379. clip-path="url(#clipPath5743-8)"
  380. inkscape:path-effect="#path-effect5747"
  381. inkscape:original-d="M 64.585938,7.4804688 C 63.188421,7.7782062 62.793351,9.32653 61.983291,10.303326 41.648366,40.945056 21.313441,71.586786 0.97851562,102.22852 c -0.59658869,1.16905 0.35118958,2.30724 1.16210938,3.07226 20.792077,23.29388 41.605835,46.56886 62.40625,69.85547 1.397324,0.90677 3.153713,0.79831 4.716288,1.22981 22.979336,4.3915 45.958677,8.78299 68.938007,13.17449 1.39269,0.0707 2.07685,-1.32274 2.69798,-2.32857 10.94821,-16.42934 21.83935,-32.89858 32.76561,-49.34326 9.54394,-14.39924 19.12294,-28.77884 28.64497,-43.190341 0.52688,-1.202887 -0.48039,-2.272555 -1.26969,-3.057204 C 180.26738,68.374609 159.47822,45.12238 138.69922,21.861328 137.30189,20.954553 135.54551,21.063013 133.98293,20.631515 110.96975,16.242906 87.960976,11.817726 64.94505,7.4519744 c -0.11987,-0.00833 -0.239523,0.02283 -0.359112,0.028494 z" />
  382. </g>
  383. <g
  384. style="display:none"
  385. inkscape:label="color 0 and dots"
  386. id="layer10"
  387. inkscape:groupmode="layer">
  388. <g
  389. sodipodi:insensitive="true"
  390. inkscape:groupmode="layer"
  391. id="layer36"
  392. inkscape:label="bg"
  393. style="display:inline">
  394. <image
  395. sodipodi:absref="C:\Users\valued-customer\Desktop\VS_CODE\Qwixx\frontend\example\palette\color0.svg"
  396. xlink:href="../palette/color0.svg"
  397. transform="translate(269.68212,-5.4999516)"
  398. clip-path="url(#clipPath67-1)"
  399. id="image5487"
  400. height="285.75"
  401. width="508"
  402. inkscape:svg-dpi="96"
  403. preserveAspectRatio="none"
  404. x="0"
  405. y="0"
  406. style="display:inline" />
  407. </g>
  408. <g
  409. sodipodi:insensitive="true"
  410. style="display:inline"
  411. inkscape:groupmode="layer"
  412. id="layer37"
  413. inkscape:label="dots">
  414. <ellipse
  415. transform="matrix(0.99044852,0.13788305,-0.17420632,0.98470917,0,0)"
  416. ry="17.683376"
  417. rx="13.125702"
  418. cx="344.99881"
  419. cy="37.024464"
  420. id="ellipse2858"
  421. style="display:inline;fill:#1a1a1a;stroke-width:5.49161" />
  422. <ellipse
  423. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)"
  424. ry="12.955958"
  425. rx="16.314209"
  426. cy="371.44025"
  427. cx="470.28589"
  428. id="ellipse2860"
  429. style="display:inline;fill:#1a1a1a;stroke-width:8.36393" />
  430. <ellipse
  431. transform="matrix(-0.56188005,0.82721872,0.81012107,0.58626261,0,0)"
  432. ry="17.764433"
  433. rx="6.5311246"
  434. cy="395.24789"
  435. cx="-200.54121"
  436. id="ellipse2862"
  437. style="display:inline;fill:#1a1a1a;stroke-width:9.15019" />
  438. <ellipse
  439. style="display:inline;fill:#1a1a1a;stroke-width:9.15019"
  440. id="ellipse2862-5"
  441. cx="-198.08272"
  442. cy="323.96573"
  443. rx="6.5311246"
  444. ry="17.764433"
  445. transform="matrix(-0.56188005,0.82721872,0.81012107,0.58626261,0,0)" />
  446. <ellipse
  447. style="display:inline;fill:#1a1a1a;stroke-width:8.36393"
  448. id="ellipse2860-7"
  449. cx="467.36121"
  450. cy="336.21796"
  451. rx="16.314209"
  452. ry="12.955959"
  453. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)" />
  454. <ellipse
  455. style="display:inline;fill:#1a1a1a;stroke-width:8.36393"
  456. id="ellipse2860-8"
  457. cx="461.7587"
  458. cy="302.79694"
  459. rx="16.314209"
  460. ry="12.955959"
  461. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)" />
  462. </g>
  463. </g>
  464. <g
  465. inkscape:groupmode="layer"
  466. id="g4805"
  467. inkscape:label="color 1 and dots"
  468. style="display:none">
  469. <g
  470. style="display:inline"
  471. inkscape:label="bg"
  472. id="g4789"
  473. inkscape:groupmode="layer"
  474. sodipodi:insensitive="true">
  475. <image
  476. sodipodi:absref="C:\Users\valued-customer\Desktop\VS_CODE\Qwixx\frontend\example\palette\color1.svg"
  477. xlink:href="../palette/color1.svg"
  478. style="display:inline"
  479. y="0"
  480. x="0"
  481. preserveAspectRatio="none"
  482. inkscape:svg-dpi="96"
  483. width="508"
  484. height="285.75"
  485. id="image4787"
  486. clip-path="url(#clipPath67-1)"
  487. transform="translate(269.68212,-5.4999516)" />
  488. </g>
  489. <g
  490. inkscape:label="dots"
  491. id="g4803"
  492. inkscape:groupmode="layer"
  493. style="display:inline"
  494. sodipodi:insensitive="true">
  495. <ellipse
  496. style="display:inline;fill:#1a1a1a;stroke-width:5.49161"
  497. id="ellipse4791"
  498. cy="37.024464"
  499. cx="344.99881"
  500. rx="13.125702"
  501. ry="17.683376"
  502. transform="matrix(0.99044852,0.13788305,-0.17420632,0.98470917,0,0)" />
  503. <ellipse
  504. style="display:inline;fill:#1a1a1a;stroke-width:8.36393"
  505. id="ellipse4793"
  506. cx="470.28589"
  507. cy="371.44025"
  508. rx="16.314209"
  509. ry="12.955958"
  510. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)" />
  511. <ellipse
  512. style="display:inline;fill:#1a1a1a;stroke-width:9.15019"
  513. id="ellipse4795"
  514. cx="-200.54121"
  515. cy="395.24789"
  516. rx="6.5311246"
  517. ry="17.764433"
  518. transform="matrix(-0.56188005,0.82721872,0.81012107,0.58626261,0,0)" />
  519. <ellipse
  520. transform="matrix(-0.56188005,0.82721872,0.81012107,0.58626261,0,0)"
  521. ry="17.764433"
  522. rx="6.5311246"
  523. cy="323.96573"
  524. cx="-198.08272"
  525. id="ellipse4797"
  526. style="display:inline;fill:#1a1a1a;stroke-width:9.15019" />
  527. <ellipse
  528. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)"
  529. ry="12.955959"
  530. rx="16.314209"
  531. cy="336.21796"
  532. cx="467.36121"
  533. id="ellipse4799"
  534. style="display:inline;fill:#1a1a1a;stroke-width:8.36393" />
  535. <ellipse
  536. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)"
  537. ry="12.955959"
  538. rx="16.314209"
  539. cy="302.79694"
  540. cx="461.7587"
  541. id="ellipse4801"
  542. style="display:inline;fill:#1a1a1a;stroke-width:8.36393" />
  543. </g>
  544. </g>
  545. <g
  546. inkscape:groupmode="layer"
  547. id="g4777"
  548. inkscape:label="color 2 and dots"
  549. style="display:inline">
  550. <g
  551. style="display:inline"
  552. inkscape:label="bg"
  553. id="g4761"
  554. inkscape:groupmode="layer"
  555. sodipodi:insensitive="true">
  556. <image
  557. sodipodi:absref="C:\Users\valued-customer\Desktop\VS_CODE\Qwixx\frontend\example\palette\color2.svg"
  558. xlink:href="../palette/color2.svg"
  559. style="display:inline"
  560. y="0"
  561. x="0"
  562. preserveAspectRatio="none"
  563. inkscape:svg-dpi="96"
  564. width="508"
  565. height="285.75"
  566. id="image4759"
  567. clip-path="url(#clipPath67-1)"
  568. transform="translate(269.68212,-5.4999516)" />
  569. </g>
  570. <g
  571. inkscape:label="dots"
  572. id="g4775"
  573. inkscape:groupmode="layer"
  574. style="display:inline"
  575. sodipodi:insensitive="true">
  576. <ellipse
  577. style="display:inline;fill:#1a1a1a;stroke-width:5.49161"
  578. id="ellipse4763"
  579. cy="37.024464"
  580. cx="344.99881"
  581. rx="13.125702"
  582. ry="17.683376"
  583. transform="matrix(0.99044852,0.13788305,-0.17420632,0.98470917,0,0)" />
  584. <ellipse
  585. style="display:inline;fill:#1a1a1a;stroke-width:8.36393"
  586. id="ellipse4765"
  587. cx="470.28589"
  588. cy="371.44025"
  589. rx="16.314209"
  590. ry="12.955958"
  591. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)" />
  592. <ellipse
  593. style="display:inline;fill:#1a1a1a;stroke-width:9.15019"
  594. id="ellipse4767"
  595. cx="-200.54121"
  596. cy="395.24789"
  597. rx="6.5311246"
  598. ry="17.764433"
  599. transform="matrix(-0.56188005,0.82721872,0.81012107,0.58626261,0,0)" />
  600. <ellipse
  601. transform="matrix(-0.56188005,0.82721872,0.81012107,0.58626261,0,0)"
  602. ry="17.764433"
  603. rx="6.5311246"
  604. cy="323.96573"
  605. cx="-198.08272"
  606. id="ellipse4769"
  607. style="display:inline;fill:#1a1a1a;stroke-width:9.15019" />
  608. <ellipse
  609. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)"
  610. ry="12.955959"
  611. rx="16.314209"
  612. cy="336.21796"
  613. cx="467.36121"
  614. id="ellipse4771"
  615. style="display:inline;fill:#1a1a1a;stroke-width:8.36393" />
  616. <ellipse
  617. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)"
  618. ry="12.955959"
  619. rx="16.314209"
  620. cy="302.79694"
  621. cx="461.7587"
  622. id="ellipse4773"
  623. style="display:inline;fill:#1a1a1a;stroke-width:8.36393" />
  624. </g>
  625. </g>
  626. <g
  627. inkscape:groupmode="layer"
  628. id="g4749"
  629. inkscape:label="color 3 and dots"
  630. style="display:none">
  631. <g
  632. style="display:inline"
  633. inkscape:label="bg"
  634. id="g4733"
  635. inkscape:groupmode="layer"
  636. sodipodi:insensitive="true">
  637. <image
  638. sodipodi:absref="C:\Users\valued-customer\Desktop\VS_CODE\Qwixx\frontend\example\palette\color3.svg"
  639. xlink:href="../palette/color3.svg"
  640. style="display:inline"
  641. y="0"
  642. x="0"
  643. preserveAspectRatio="none"
  644. inkscape:svg-dpi="96"
  645. width="508"
  646. height="285.75"
  647. id="image4731"
  648. clip-path="url(#clipPath67-1)"
  649. transform="translate(269.68212,-5.4999516)" />
  650. </g>
  651. <g
  652. inkscape:label="dots"
  653. id="g4747"
  654. inkscape:groupmode="layer"
  655. style="display:inline"
  656. sodipodi:insensitive="true">
  657. <ellipse
  658. style="display:inline;fill:#1a1a1a;stroke-width:5.49161"
  659. id="ellipse4735"
  660. cy="37.024464"
  661. cx="344.99881"
  662. rx="13.125702"
  663. ry="17.683376"
  664. transform="matrix(0.99044852,0.13788305,-0.17420632,0.98470917,0,0)" />
  665. <ellipse
  666. style="display:inline;fill:#1a1a1a;stroke-width:8.36393"
  667. id="ellipse4737"
  668. cx="470.28589"
  669. cy="371.44025"
  670. rx="16.314209"
  671. ry="12.955958"
  672. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)" />
  673. <ellipse
  674. style="display:inline;fill:#1a1a1a;stroke-width:9.15019"
  675. id="ellipse4739"
  676. cx="-200.54121"
  677. cy="395.24789"
  678. rx="6.5311246"
  679. ry="17.764433"
  680. transform="matrix(-0.56188005,0.82721872,0.81012107,0.58626261,0,0)" />
  681. <ellipse
  682. transform="matrix(-0.56188005,0.82721872,0.81012107,0.58626261,0,0)"
  683. ry="17.764433"
  684. rx="6.5311246"
  685. cy="323.96573"
  686. cx="-198.08272"
  687. id="ellipse4741"
  688. style="display:inline;fill:#1a1a1a;stroke-width:9.15019" />
  689. <ellipse
  690. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)"
  691. ry="12.955959"
  692. rx="16.314209"
  693. cy="336.21796"
  694. cx="467.36121"
  695. id="ellipse4743"
  696. style="display:inline;fill:#1a1a1a;stroke-width:8.36393" />
  697. <ellipse
  698. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)"
  699. ry="12.955959"
  700. rx="16.314209"
  701. cy="302.79694"
  702. cx="461.7587"
  703. id="ellipse4745"
  704. style="display:inline;fill:#1a1a1a;stroke-width:8.36393" />
  705. </g>
  706. </g>
  707. <g
  708. sodipodi:insensitive="true"
  709. inkscape:groupmode="layer"
  710. id="layer33"
  711. inkscape:label="mask"
  712. style="display:none">
  713. <path
  714. d="m 163.12448,110.50652 c -20.81404,31.36411 -41.62814,62.72783 -62.44218,94.09195 21.14246,23.66263 42.28519,47.32537 63.42765,70.98796 l 72.76973,13.90716 c 20.81404,-31.36411 41.62814,-62.72834 62.44218,-94.09251 -21.14246,-23.66259 -42.28519,-47.32532 -63.42765,-70.98791 -24.25659,-4.63566 -48.51314,-9.27099 -72.76973,-13.90665 z"
  715. style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:49.9999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  716. id="path5729" />
  717. </g>
  718. <g
  719. sodipodi:insensitive="true"
  720. inkscape:groupmode="layer"
  721. id="layer35"
  722. inkscape:label="dice"
  723. style="display:inline">
  724. <g
  725. inkscape:transform-center-y="33.351485"
  726. inkscape:transform-center-x="-57.720495"
  727. inkscape:corner7="0.86771512 : -0.27870894 : 0.23011852 : 1"
  728. inkscape:corner0="1.0871477 : 0.078002608 : 0 : 1"
  729. inkscape:perspectiveID="#perspective2405-9"
  730. style="display:inline;fill:url(#meshgradient3465);fill-opacity:1;stroke-width:50"
  731. id="g2856"
  732. sodipodi:type="inkscape:box3d">
  733. <path
  734. d="M 334.42751,3.5148489 271.98537,97.607184 344.75515,111.51416 407.19729,17.421824 Z"
  735. points="271.98537,97.607184 344.75515,111.51416 407.19729,17.421824 334.42751,3.5148489 "
  736. inkscape:box3dsidetype="3"
  737. style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  738. id="path2844"
  739. sodipodi:type="inkscape:box3dside" />
  740. <path
  741. d="m 271.98537,97.607184 72.76978,13.906976 63.42739,70.98777 -72.76977,-13.90697 z"
  742. points="344.75515,111.51416 408.18254,182.50193 335.41277,168.59496 271.98537,97.607184 "
  743. inkscape:box3dsidetype="14"
  744. style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  745. id="path2846"
  746. sodipodi:type="inkscape:box3dside" />
  747. <path
  748. d="m 407.19729,17.421824 -62.44214,94.092336 63.42739,70.98777 62.44214,-94.092332 z"
  749. points="344.75515,111.51416 408.18254,182.50193 470.62468,88.409598 407.19729,17.421824 "
  750. inkscape:box3dsidetype="13"
  751. style="opacity:0;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  752. id="path2848"
  753. sodipodi:type="inkscape:box3dside" />
  754. <path
  755. d="m 334.42751,3.5148489 -62.44214,94.0923351 63.4274,70.987776 62.44214,-94.092337 z"
  756. points="271.98537,97.607184 335.41277,168.59496 397.85491,74.502623 334.42751,3.5148489 "
  757. inkscape:box3dsidetype="5"
  758. style="opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  759. id="path2850"
  760. sodipodi:type="inkscape:box3dside" />
  761. <path
  762. d="M 334.42751,3.5148489 407.19729,17.421824 470.62468,88.409598 397.85491,74.502623 Z"
  763. points="407.19729,17.421824 470.62468,88.409598 397.85491,74.502623 334.42751,3.5148489 "
  764. inkscape:box3dsidetype="6"
  765. style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  766. id="path2852"
  767. sodipodi:type="inkscape:box3dside" />
  768. <path
  769. d="m 397.85491,74.502623 -62.44214,94.092337 72.76977,13.90697 62.44214,-94.092332 z"
  770. points="335.41277,168.59496 408.18254,182.50193 470.62468,88.409598 397.85491,74.502623 "
  771. inkscape:box3dsidetype="11"
  772. style="opacity:0.05;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  773. id="path2854"
  774. sodipodi:type="inkscape:box3dside" />
  775. </g>
  776. </g>
  777. </g>
  778. <g
  779. sodipodi:insensitive="true"
  780. style="display:none"
  781. inkscape:groupmode="layer"
  782. id="layer2"
  783. inkscape:label="base 1">
  784. <g
  785. sodipodi:type="inkscape:box3d"
  786. id="g100"
  787. style="opacity:0.6;fill:#000000"
  788. inkscape:perspectiveID="#perspective2405"
  789. inkscape:corner0="0.23544895 : -0.11297481 : 0 : 1"
  790. inkscape:corner7="-0.009287638 : -0.23943041 : -0.19798685 : 1">
  791. <path
  792. sodipodi:type="inkscape:box3dside"
  793. id="path112"
  794. style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
  795. inkscape:box3dsidetype="11"
  796. d="m 229.40524,300.13609 v 72.13966 l 68.64405,-0.76799 0,-72.13966 z"
  797. points="229.40524,372.27575 298.04929,371.50776 298.04929,299.3681 229.40524,300.13609 " />
  798. <path
  799. sodipodi:type="inkscape:box3dside"
  800. id="path110"
  801. style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
  802. inkscape:box3dsidetype="13"
  803. d="m 301.90408,295.40824 0,57.85696 -3.85479,18.24256 0,-72.13966 z"
  804. points="301.90408,353.2652 298.04929,371.50776 298.04929,299.3681 301.90408,295.40824 " />
  805. <path
  806. sodipodi:type="inkscape:box3dside"
  807. id="path102"
  808. style="opacity:0.5;fill:#ffff00;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
  809. inkscape:box3dsidetype="6"
  810. d="m 246.85065,296.02418 55.05343,-0.61594 -3.85479,3.95986 -68.64405,0.76799 z"
  811. points="301.90408,295.40824 298.04929,299.3681 229.40524,300.13609 246.85065,296.02418 " />
  812. <path
  813. sodipodi:type="inkscape:box3dside"
  814. id="path104"
  815. style="opacity:0;fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
  816. inkscape:box3dsidetype="5"
  817. d="m 246.85065,296.02418 0,57.85696 -17.44541,18.39461 v -72.13966 z"
  818. points="246.85065,353.88114 229.40524,372.27575 229.40524,300.13609 246.85065,296.02418 " />
  819. <path
  820. sodipodi:type="inkscape:box3dside"
  821. id="path108"
  822. style="opacity:0;fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
  823. inkscape:box3dsidetype="14"
  824. d="m 246.85065,353.88114 55.05343,-0.61594 -3.85479,18.24256 -68.64405,0.76799 z"
  825. points="301.90408,353.2652 298.04929,371.50776 229.40524,372.27575 246.85065,353.88114 " />
  826. <path
  827. sodipodi:type="inkscape:box3dside"
  828. id="path106"
  829. style="opacity:0;fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
  830. inkscape:box3dsidetype="3"
  831. d="m 246.85065,296.02418 0,57.85696 55.05343,-0.61594 0,-57.85696 z"
  832. points="246.85065,353.88114 301.90408,353.2652 301.90408,295.40824 246.85065,296.02418 " />
  833. </g>
  834. <path
  835. style="opacity:0;fill:#800000;stroke-width:0.264583"
  836. id="path262"
  837. sodipodi:type="arc"
  838. sodipodi:cx="222.57092"
  839. sodipodi:cy="303.10074"
  840. sodipodi:rx="6.8343072"
  841. sodipodi:ry="2.9646406"
  842. sodipodi:start="0"
  843. sodipodi:end="3.1062148"
  844. sodipodi:arc-type="slice"
  845. d="m 229.40523,303.10074 a 6.8343072,2.9646406 0 0 1 -6.71342,2.96418 6.8343072,2.9646406 0 0 1 -6.95092,-2.85932 l 6.83003,-0.10486 z" />
  846. <path
  847. style="opacity:0;fill:#800000;stroke-width:0.264583"
  848. id="path264"
  849. sodipodi:type="arc"
  850. sodipodi:cx="215.07889"
  851. sodipodi:cy="296.78403"
  852. sodipodi:rx="0.21924452"
  853. sodipodi:ry="0.65773362"
  854. sodipodi:start="0"
  855. sodipodi:end="3.1062148"
  856. sodipodi:arc-type="slice"
  857. d="m 215.29813,296.78403 a 0.21924452,0.65773362 0 0 1 -0.21536,0.65763 0.21924452,0.65773362 0 0 1 -0.22299,-0.63437 l 0.21911,-0.0233 z" />
  858. <ellipse
  859. style="opacity:1;fill:#800000;stroke-width:0.773267"
  860. id="path268"
  861. cx="263.89734"
  862. cy="336.1019"
  863. rx="33.982903"
  864. ry="35.883022" />
  865. <ellipse
  866. style="opacity:1;fill:#800000;stroke-width:0.518127"
  867. id="path270"
  868. cx="2654.0261"
  869. cy="2387.2815"
  870. rx="20.907494"
  871. ry="22.670742"
  872. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)" />
  873. <ellipse
  874. transform="matrix(0.05943278,-0.99823231,0.05970837,0.99821586,0,0)"
  875. ry="22.670742"
  876. rx="20.907494"
  877. cy="2682.9961"
  878. cx="2353.5027"
  879. id="path270-9"
  880. style="opacity:1;fill:#800000;stroke-width:0.518128" />
  881. <g
  882. style="display:inline"
  883. transform="translate(-263.72916,16.029054)"
  884. id="g249">
  885. <g
  886. inkscape:label="base"
  887. id="layer1"
  888. style="display:none">
  889. <g
  890. sodipodi:type="inkscape:box3d"
  891. id="g2729"
  892. style="fill:#b3b3b3;stroke-width:50"
  893. inkscape:perspectiveID="#perspective2405-9"
  894. inkscape:corner0="0.7979643 : 0.51434472 : 0 : 1"
  895. inkscape:corner7="0.57853176 : 0.15763317 : 0.23011852 : 1"
  896. inkscape:transform-center-x="-57.720495"
  897. inkscape:transform-center-y="33.351485">
  898. <path
  899. sodipodi:type="inkscape:box3dside"
  900. id="path2735"
  901. style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  902. inkscape:box3dsidetype="3"
  903. d="m 163.12241,110.50472 -62.44213,94.09232 72.76977,13.90698 62.44213,-94.09232 z"
  904. points="100.68028,204.59704 173.45005,218.50402 235.89218,124.4117 163.12241,110.50472 " />
  905. <path
  906. sodipodi:type="inkscape:box3dside"
  907. id="path2737"
  908. style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  909. inkscape:box3dsidetype="14"
  910. d="m 100.68028,204.59704 72.76977,13.90698 63.4274,70.98777 -72.76978,-13.90698 z"
  911. points="173.45005,218.50402 236.87745,289.49179 164.10767,275.58481 100.68028,204.59704 " />
  912. <path
  913. sodipodi:type="inkscape:box3dside"
  914. id="path2739"
  915. style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  916. inkscape:box3dsidetype="13"
  917. d="m 235.89218,124.4117 -62.44213,94.09232 63.4274,70.98777 62.44213,-94.09232 z"
  918. points="173.45005,218.50402 236.87745,289.49179 299.31958,195.39947 235.89218,124.4117 " />
  919. <path
  920. sodipodi:type="inkscape:box3dside"
  921. id="path2733"
  922. style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  923. inkscape:box3dsidetype="5"
  924. d="m 163.12241,110.50472 -62.44213,94.09232 63.42739,70.98777 62.44213,-94.09231 z"
  925. points="100.68028,204.59704 164.10767,275.58481 226.5498,181.4925 163.12241,110.50472 " />
  926. <path
  927. sodipodi:type="inkscape:box3dside"
  928. id="path2731"
  929. style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  930. inkscape:box3dsidetype="6"
  931. d="m 163.12241,110.50472 72.76977,13.90698 63.4274,70.98777 -72.76978,-13.90697 z"
  932. points="235.89218,124.4117 299.31958,195.39947 226.5498,181.4925 163.12241,110.50472 " />
  933. <path
  934. sodipodi:type="inkscape:box3dside"
  935. id="path2741"
  936. style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  937. inkscape:box3dsidetype="11"
  938. d="m 226.5498,181.4925 -62.44213,94.09231 72.76978,13.90698 62.44213,-94.09232 z"
  939. points="164.10767,275.58481 236.87745,289.49179 299.31958,195.39947 226.5498,181.4925 " />
  940. </g>
  941. <ellipse
  942. style="fill:#b3b3b3;stroke-width:18.127"
  943. id="path2837"
  944. cy="82.676537"
  945. cx="80.496796"
  946. rx="43.326023"
  947. ry="58.370235"
  948. transform="matrix(0.99044852,0.13788305,-0.17420632,0.98470917,0,0)" />
  949. <ellipse
  950. style="fill:#b3b3b3;stroke-width:27.1643"
  951. id="path2839"
  952. cx="159.82744"
  953. cy="205.23918"
  954. rx="52.985146"
  955. ry="42.078251"
  956. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)" />
  957. <ellipse
  958. style="fill:#b3b3b3;stroke-width:27.3889"
  959. id="path2841"
  960. cx="-36.575558"
  961. cy="137.37201"
  962. rx="19.549366"
  963. ry="53.173599"
  964. transform="matrix(-0.56188005,0.82721872,0.81012106,0.58626262,0,0)" />
  965. </g>
  966. </g>
  967. </g>
  968. <g
  969. sodipodi:insensitive="true"
  970. style="display:none"
  971. inkscape:label="variant 0 base 1"
  972. id="layer5"
  973. inkscape:groupmode="layer">
  974. <g
  975. style="display:none"
  976. inkscape:groupmode="layer"
  977. id="g4603"
  978. inkscape:label="color 0 and 1 dot"
  979. sodipodi:insensitive="true">
  980. <g
  981. style="display:inline"
  982. inkscape:groupmode="layer"
  983. id="g4563"
  984. inkscape:label="bg"
  985. sodipodi:insensitive="true">
  986. <image
  987. sodipodi:absref="C:\Users\valued-customer\Desktop\VS_CODE\Qwixx\frontend\example\palette\color0.svg"
  988. xlink:href="../palette/color0.svg"
  989. clip-path="url(#clipPath4509)"
  990. id="image4561"
  991. height="637.97656"
  992. width="855.26562"
  993. inkscape:svg-dpi="96"
  994. preserveAspectRatio="none"
  995. x="0"
  996. y="0" />
  997. </g>
  998. <g
  999. style="display:inline"
  1000. inkscape:groupmode="layer"
  1001. id="g4601"
  1002. inkscape:label="dots">
  1003. <ellipse
  1004. style="opacity:1;fill:#000000;stroke-width:0.20157"
  1005. id="ellipse4565"
  1006. cx="67.744751"
  1007. cy="277.77039"
  1008. rx="8.858448"
  1009. ry="9.3537588" />
  1010. <ellipse
  1011. style="opacity:1;fill:#000000;stroke-width:0.156281"
  1012. id="ellipse4567"
  1013. cx="2041.2469"
  1014. cy="1991.7885"
  1015. rx="6.3062582"
  1016. ry="6.8381009"
  1017. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)" />
  1018. <ellipse
  1019. transform="matrix(0.07673711,-0.99705136,0.0770921,0.99702398,0,0)"
  1020. ry="6.5429029"
  1021. rx="6.0339532"
  1022. cy="808.27002"
  1023. cx="552.992"
  1024. id="ellipse4569"
  1025. style="opacity:1;fill:#000000;stroke-width:0.149534" />
  1026. <g
  1027. style="display:inline"
  1028. transform="translate(-263.72916,16.029054)"
  1029. id="g4593">
  1030. <g
  1031. inkscape:label="base"
  1032. id="g4591"
  1033. style="display:none">
  1034. <g
  1035. sodipodi:type="inkscape:box3d"
  1036. id="g4583"
  1037. style="fill:#b3b3b3;stroke-width:50"
  1038. inkscape:perspectiveID="#perspective2405-9"
  1039. inkscape:corner0="0.7979643 : 0.51434472 : 0 : 1"
  1040. inkscape:corner7="0.57853176 : 0.15763317 : 0.23011852 : 1"
  1041. inkscape:transform-center-x="-57.720495"
  1042. inkscape:transform-center-y="33.351485">
  1043. <path
  1044. sodipodi:type="inkscape:box3dside"
  1045. id="path4571"
  1046. style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1047. inkscape:box3dsidetype="3"
  1048. d="m 163.12241,110.50472 -62.44213,94.09232 72.76977,13.90698 62.44213,-94.09232 z"
  1049. points="100.68028,204.59704 173.45005,218.50402 235.89218,124.4117 163.12241,110.50472 " />
  1050. <path
  1051. sodipodi:type="inkscape:box3dside"
  1052. id="path4573"
  1053. style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1054. inkscape:box3dsidetype="14"
  1055. d="m 100.68028,204.59704 72.76977,13.90698 63.4274,70.98777 -72.76978,-13.90698 z"
  1056. points="173.45005,218.50402 236.87745,289.49179 164.10767,275.58481 100.68028,204.59704 " />
  1057. <path
  1058. sodipodi:type="inkscape:box3dside"
  1059. id="path4575"
  1060. style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1061. inkscape:box3dsidetype="13"
  1062. d="m 235.89218,124.4117 -62.44213,94.09232 63.4274,70.98777 62.44213,-94.09232 z"
  1063. points="173.45005,218.50402 236.87745,289.49179 299.31958,195.39947 235.89218,124.4117 " />
  1064. <path
  1065. sodipodi:type="inkscape:box3dside"
  1066. id="path4577"
  1067. style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1068. inkscape:box3dsidetype="5"
  1069. d="m 163.12241,110.50472 -62.44213,94.09232 63.42739,70.98777 62.44213,-94.09231 z"
  1070. points="100.68028,204.59704 164.10767,275.58481 226.5498,181.4925 163.12241,110.50472 " />
  1071. <path
  1072. sodipodi:type="inkscape:box3dside"
  1073. id="path4579"
  1074. style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1075. inkscape:box3dsidetype="6"
  1076. d="m 163.12241,110.50472 72.76977,13.90698 63.4274,70.98777 -72.76978,-13.90697 z"
  1077. points="235.89218,124.4117 299.31958,195.39947 226.5498,181.4925 163.12241,110.50472 " />
  1078. <path
  1079. sodipodi:type="inkscape:box3dside"
  1080. id="path4581"
  1081. style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1082. inkscape:box3dsidetype="11"
  1083. d="m 226.5498,181.4925 -62.44213,94.09231 72.76978,13.90698 62.44213,-94.09232 z"
  1084. points="164.10767,275.58481 236.87745,289.49179 299.31958,195.39947 226.5498,181.4925 " />
  1085. </g>
  1086. <ellipse
  1087. style="fill:#b3b3b3;stroke-width:18.127"
  1088. id="ellipse4585"
  1089. cy="82.676537"
  1090. cx="80.496796"
  1091. rx="43.326023"
  1092. ry="58.370235"
  1093. transform="matrix(0.99044852,0.13788305,-0.17420632,0.98470917,0,0)" />
  1094. <ellipse
  1095. style="fill:#b3b3b3;stroke-width:27.1643"
  1096. id="ellipse4587"
  1097. cx="159.82744"
  1098. cy="205.23918"
  1099. rx="52.985146"
  1100. ry="42.078251"
  1101. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)" />
  1102. <ellipse
  1103. style="fill:#b3b3b3;stroke-width:27.3889"
  1104. id="ellipse4589"
  1105. cx="-36.575558"
  1106. cy="137.37201"
  1107. rx="19.549366"
  1108. ry="53.173599"
  1109. transform="matrix(-0.56188005,0.82721872,0.81012106,0.58626262,0,0)" />
  1110. </g>
  1111. </g>
  1112. <ellipse
  1113. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)"
  1114. ry="6.8381009"
  1115. rx="6.3062582"
  1116. cy="1974.585"
  1117. cx="2045.7782"
  1118. id="ellipse4595"
  1119. style="display:inline;opacity:1;fill:#000000;stroke-width:0.156281" />
  1120. <ellipse
  1121. style="display:inline;opacity:1;fill:#000000;stroke-width:0.156281"
  1122. id="ellipse4597"
  1123. cx="2049.4026"
  1124. cy="1956.1146"
  1125. rx="6.3062582"
  1126. ry="6.8381009"
  1127. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)" />
  1128. <ellipse
  1129. style="display:inline;opacity:1;fill:#000000;stroke-width:0.149603"
  1130. id="ellipse4599"
  1131. cx="496.10257"
  1132. cy="780.70953"
  1133. rx="6.0367355"
  1134. ry="6.5459476"
  1135. transform="matrix(0.08249062,-0.99659184,0.08287187,0.99656021,0,0)" />
  1136. </g>
  1137. </g>
  1138. <g
  1139. sodipodi:insensitive="true"
  1140. style="display:inline"
  1141. inkscape:label="color 1 and 4 dots"
  1142. id="layer9"
  1143. inkscape:groupmode="layer">
  1144. <g
  1145. sodipodi:insensitive="true"
  1146. inkscape:label="bg"
  1147. id="g4445"
  1148. inkscape:groupmode="layer"
  1149. style="display:none">
  1150. <image
  1151. sodipodi:absref="C:\Users\valued-customer\Desktop\VS_CODE\Qwixx\frontend\example\palette\color1.svg"
  1152. xlink:href="../palette/color1.svg"
  1153. y="0"
  1154. x="0"
  1155. preserveAspectRatio="none"
  1156. inkscape:svg-dpi="96"
  1157. width="855.26562"
  1158. height="637.97656"
  1159. id="image4473"
  1160. clip-path="url(#clipPath4509)" />
  1161. </g>
  1162. <g
  1163. sodipodi:insensitive="true"
  1164. inkscape:label="dots"
  1165. id="g4268"
  1166. inkscape:groupmode="layer"
  1167. style="display:inline">
  1168. <ellipse
  1169. ry="9.3537588"
  1170. rx="8.858448"
  1171. cy="261.01755"
  1172. cx="53.768993"
  1173. id="ellipse4238"
  1174. style="opacity:1;fill:#000000;stroke-width:0.20157" />
  1175. <ellipse
  1176. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)"
  1177. ry="6.8381009"
  1178. rx="6.3062582"
  1179. cy="1991.7885"
  1180. cx="2041.2469"
  1181. id="ellipse4240"
  1182. style="opacity:1;fill:#000000;stroke-width:0.156281" />
  1183. <ellipse
  1184. style="opacity:1;fill:#000000;stroke-width:0.149534"
  1185. id="ellipse4242"
  1186. cx="552.992"
  1187. cy="808.27002"
  1188. rx="6.0339532"
  1189. ry="6.5429029"
  1190. transform="matrix(0.07673711,-0.99705136,0.0770921,0.99702398,0,0)" />
  1191. <g
  1192. id="g4266"
  1193. transform="translate(-263.72916,16.029054)"
  1194. style="display:inline">
  1195. <g
  1196. style="display:none"
  1197. id="g4264"
  1198. inkscape:label="base">
  1199. <g
  1200. inkscape:transform-center-y="33.351485"
  1201. inkscape:transform-center-x="-57.720495"
  1202. inkscape:corner7="0.57853176 : 0.15763317 : 0.23011852 : 1"
  1203. inkscape:corner0="0.7979643 : 0.51434472 : 0 : 1"
  1204. inkscape:perspectiveID="#perspective2405-9"
  1205. style="fill:#b3b3b3;stroke-width:50"
  1206. id="g4256"
  1207. sodipodi:type="inkscape:box3d">
  1208. <path
  1209. points="100.68028,204.59704 173.45005,218.50402 235.89218,124.4117 163.12241,110.50472 "
  1210. d="m 163.12241,110.50472 -62.44213,94.09232 72.76977,13.90698 62.44213,-94.09232 z"
  1211. inkscape:box3dsidetype="3"
  1212. style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1213. id="path4244"
  1214. sodipodi:type="inkscape:box3dside" />
  1215. <path
  1216. points="173.45005,218.50402 236.87745,289.49179 164.10767,275.58481 100.68028,204.59704 "
  1217. d="m 100.68028,204.59704 72.76977,13.90698 63.4274,70.98777 -72.76978,-13.90698 z"
  1218. inkscape:box3dsidetype="14"
  1219. style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1220. id="path4246"
  1221. sodipodi:type="inkscape:box3dside" />
  1222. <path
  1223. points="173.45005,218.50402 236.87745,289.49179 299.31958,195.39947 235.89218,124.4117 "
  1224. d="m 235.89218,124.4117 -62.44213,94.09232 63.4274,70.98777 62.44213,-94.09232 z"
  1225. inkscape:box3dsidetype="13"
  1226. style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1227. id="path4248"
  1228. sodipodi:type="inkscape:box3dside" />
  1229. <path
  1230. points="100.68028,204.59704 164.10767,275.58481 226.5498,181.4925 163.12241,110.50472 "
  1231. d="m 163.12241,110.50472 -62.44213,94.09232 63.42739,70.98777 62.44213,-94.09231 z"
  1232. inkscape:box3dsidetype="5"
  1233. style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1234. id="path4250"
  1235. sodipodi:type="inkscape:box3dside" />
  1236. <path
  1237. points="235.89218,124.4117 299.31958,195.39947 226.5498,181.4925 163.12241,110.50472 "
  1238. d="m 163.12241,110.50472 72.76977,13.90698 63.4274,70.98777 -72.76978,-13.90697 z"
  1239. inkscape:box3dsidetype="6"
  1240. style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1241. id="path4252"
  1242. sodipodi:type="inkscape:box3dside" />
  1243. <path
  1244. points="164.10767,275.58481 236.87745,289.49179 299.31958,195.39947 226.5498,181.4925 "
  1245. d="m 226.5498,181.4925 -62.44213,94.09231 72.76978,13.90698 62.44213,-94.09232 z"
  1246. inkscape:box3dsidetype="11"
  1247. style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1248. id="path4254"
  1249. sodipodi:type="inkscape:box3dside" />
  1250. </g>
  1251. <ellipse
  1252. transform="matrix(0.99044852,0.13788305,-0.17420632,0.98470917,0,0)"
  1253. ry="58.370235"
  1254. rx="43.326023"
  1255. cx="80.496796"
  1256. cy="82.676537"
  1257. id="ellipse4258"
  1258. style="fill:#b3b3b3;stroke-width:18.127" />
  1259. <ellipse
  1260. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)"
  1261. ry="42.078251"
  1262. rx="52.985146"
  1263. cy="205.23918"
  1264. cx="159.82744"
  1265. id="ellipse4260"
  1266. style="fill:#b3b3b3;stroke-width:27.1643" />
  1267. <ellipse
  1268. transform="matrix(-0.56188005,0.82721872,0.81012106,0.58626262,0,0)"
  1269. ry="53.173599"
  1270. rx="19.549366"
  1271. cy="137.37201"
  1272. cx="-36.575558"
  1273. id="ellipse4262"
  1274. style="fill:#b3b3b3;stroke-width:27.3889" />
  1275. </g>
  1276. </g>
  1277. <ellipse
  1278. style="display:inline;opacity:1;fill:#000000;stroke-width:0.156281"
  1279. id="ellipse4240-1"
  1280. cx="2045.7782"
  1281. cy="1974.585"
  1282. rx="6.3062582"
  1283. ry="6.8381009"
  1284. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)" />
  1285. <ellipse
  1286. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)"
  1287. ry="6.8381009"
  1288. rx="6.3062582"
  1289. cy="1956.1146"
  1290. cx="2049.4026"
  1291. id="ellipse4240-1-7"
  1292. style="display:inline;opacity:1;fill:#000000;stroke-width:0.156281" />
  1293. <ellipse
  1294. transform="matrix(0.08249062,-0.99659184,0.08287187,0.99656021,0,0)"
  1295. ry="6.5459476"
  1296. rx="6.0367355"
  1297. cy="780.70953"
  1298. cx="496.10257"
  1299. id="ellipse4242-1"
  1300. style="display:inline;opacity:1;fill:#000000;stroke-width:0.149603" />
  1301. <ellipse
  1302. style="display:inline;opacity:1;fill:#000000;stroke-width:0.20157"
  1303. id="ellipse4238-4"
  1304. cx="85.18557"
  1305. cy="261.01755"
  1306. rx="8.858448"
  1307. ry="9.3537588" />
  1308. <ellipse
  1309. style="display:inline;opacity:1;fill:#000000;stroke-width:0.20157"
  1310. id="ellipse4238-5"
  1311. cx="53.240978"
  1312. cy="293.01755"
  1313. rx="8.858448"
  1314. ry="9.3537588" />
  1315. <ellipse
  1316. style="display:inline;opacity:1;fill:#000000;stroke-width:0.20157"
  1317. id="ellipse4238-44"
  1318. cx="85.18557"
  1319. cy="293.01755"
  1320. rx="8.858448"
  1321. ry="9.3537588" />
  1322. </g>
  1323. </g>
  1324. <g
  1325. sodipodi:insensitive="true"
  1326. inkscape:groupmode="layer"
  1327. id="g4661"
  1328. inkscape:label="color 2 and 5 dots"
  1329. style="display:none">
  1330. <g
  1331. sodipodi:insensitive="true"
  1332. style="display:inline"
  1333. inkscape:groupmode="layer"
  1334. id="g4621"
  1335. inkscape:label="bg">
  1336. <image
  1337. sodipodi:absref="C:\Users\valued-customer\Desktop\VS_CODE\Qwixx\frontend\example\palette\color2.svg"
  1338. xlink:href="../palette/color2.svg"
  1339. clip-path="url(#clipPath4509)"
  1340. id="image4619"
  1341. height="637.97656"
  1342. width="855.26562"
  1343. inkscape:svg-dpi="96"
  1344. preserveAspectRatio="none"
  1345. x="0"
  1346. y="0" />
  1347. </g>
  1348. <g
  1349. sodipodi:insensitive="true"
  1350. style="display:inline"
  1351. inkscape:groupmode="layer"
  1352. id="g4659"
  1353. inkscape:label="dots">
  1354. <ellipse
  1355. style="opacity:1;fill:#000000;stroke-width:0.20157"
  1356. id="ellipse4623"
  1357. cx="67.744751"
  1358. cy="277.77039"
  1359. rx="8.858448"
  1360. ry="9.3537588" />
  1361. <ellipse
  1362. style="opacity:1;fill:#000000;stroke-width:0.156281"
  1363. id="ellipse4625"
  1364. cx="2041.2469"
  1365. cy="1991.7885"
  1366. rx="6.3062582"
  1367. ry="6.8381009"
  1368. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)" />
  1369. <ellipse
  1370. transform="matrix(0.07673711,-0.99705136,0.0770921,0.99702398,0,0)"
  1371. ry="6.5429029"
  1372. rx="6.0339532"
  1373. cy="808.27002"
  1374. cx="552.992"
  1375. id="ellipse4627"
  1376. style="opacity:1;fill:#000000;stroke-width:0.149534" />
  1377. <g
  1378. style="display:inline"
  1379. transform="translate(-263.72916,16.029054)"
  1380. id="g4651">
  1381. <g
  1382. inkscape:label="base"
  1383. id="g4649"
  1384. style="display:none">
  1385. <g
  1386. sodipodi:type="inkscape:box3d"
  1387. id="g4641"
  1388. style="fill:#b3b3b3;stroke-width:50"
  1389. inkscape:perspectiveID="#perspective2405-9"
  1390. inkscape:corner0="0.7979643 : 0.51434472 : 0 : 1"
  1391. inkscape:corner7="0.57853176 : 0.15763317 : 0.23011852 : 1"
  1392. inkscape:transform-center-x="-57.720495"
  1393. inkscape:transform-center-y="33.351485">
  1394. <path
  1395. sodipodi:type="inkscape:box3dside"
  1396. id="path4629"
  1397. style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1398. inkscape:box3dsidetype="3"
  1399. d="m 163.12241,110.50472 -62.44213,94.09232 72.76977,13.90698 62.44213,-94.09232 z"
  1400. points="100.68028,204.59704 173.45005,218.50402 235.89218,124.4117 163.12241,110.50472 " />
  1401. <path
  1402. sodipodi:type="inkscape:box3dside"
  1403. id="path4631"
  1404. style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1405. inkscape:box3dsidetype="14"
  1406. d="m 100.68028,204.59704 72.76977,13.90698 63.4274,70.98777 -72.76978,-13.90698 z"
  1407. points="173.45005,218.50402 236.87745,289.49179 164.10767,275.58481 100.68028,204.59704 " />
  1408. <path
  1409. sodipodi:type="inkscape:box3dside"
  1410. id="path4633"
  1411. style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1412. inkscape:box3dsidetype="13"
  1413. d="m 235.89218,124.4117 -62.44213,94.09232 63.4274,70.98777 62.44213,-94.09232 z"
  1414. points="173.45005,218.50402 236.87745,289.49179 299.31958,195.39947 235.89218,124.4117 " />
  1415. <path
  1416. sodipodi:type="inkscape:box3dside"
  1417. id="path4635"
  1418. style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1419. inkscape:box3dsidetype="5"
  1420. d="m 163.12241,110.50472 -62.44213,94.09232 63.42739,70.98777 62.44213,-94.09231 z"
  1421. points="100.68028,204.59704 164.10767,275.58481 226.5498,181.4925 163.12241,110.50472 " />
  1422. <path
  1423. sodipodi:type="inkscape:box3dside"
  1424. id="path4637"
  1425. style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1426. inkscape:box3dsidetype="6"
  1427. d="m 163.12241,110.50472 72.76977,13.90698 63.4274,70.98777 -72.76978,-13.90697 z"
  1428. points="235.89218,124.4117 299.31958,195.39947 226.5498,181.4925 163.12241,110.50472 " />
  1429. <path
  1430. sodipodi:type="inkscape:box3dside"
  1431. id="path4639"
  1432. style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1433. inkscape:box3dsidetype="11"
  1434. d="m 226.5498,181.4925 -62.44213,94.09231 72.76978,13.90698 62.44213,-94.09232 z"
  1435. points="164.10767,275.58481 236.87745,289.49179 299.31958,195.39947 226.5498,181.4925 " />
  1436. </g>
  1437. <ellipse
  1438. style="fill:#b3b3b3;stroke-width:18.127"
  1439. id="ellipse4643"
  1440. cy="82.676537"
  1441. cx="80.496796"
  1442. rx="43.326023"
  1443. ry="58.370235"
  1444. transform="matrix(0.99044852,0.13788305,-0.17420632,0.98470917,0,0)" />
  1445. <ellipse
  1446. style="fill:#b3b3b3;stroke-width:27.1643"
  1447. id="ellipse4645"
  1448. cx="159.82744"
  1449. cy="205.23918"
  1450. rx="52.985146"
  1451. ry="42.078251"
  1452. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)" />
  1453. <ellipse
  1454. style="fill:#b3b3b3;stroke-width:27.3889"
  1455. id="ellipse4647"
  1456. cx="-36.575558"
  1457. cy="137.37201"
  1458. rx="19.549366"
  1459. ry="53.173599"
  1460. transform="matrix(-0.56188005,0.82721872,0.81012106,0.58626262,0,0)" />
  1461. </g>
  1462. </g>
  1463. <ellipse
  1464. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)"
  1465. ry="6.8381009"
  1466. rx="6.3062582"
  1467. cy="1974.585"
  1468. cx="2045.7782"
  1469. id="ellipse4653"
  1470. style="display:inline;opacity:1;fill:#000000;stroke-width:0.156281" />
  1471. <ellipse
  1472. style="display:inline;opacity:1;fill:#000000;stroke-width:0.156281"
  1473. id="ellipse4655"
  1474. cx="2049.4026"
  1475. cy="1956.1146"
  1476. rx="6.3062582"
  1477. ry="6.8381009"
  1478. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)" />
  1479. <ellipse
  1480. style="display:inline;opacity:1;fill:#000000;stroke-width:0.149603"
  1481. id="ellipse4657"
  1482. cx="496.10257"
  1483. cy="780.70953"
  1484. rx="6.0367355"
  1485. ry="6.5459476"
  1486. transform="matrix(0.08249062,-0.99659184,0.08287187,0.99656021,0,0)" />
  1487. <ellipse
  1488. ry="9.3537588"
  1489. rx="8.858448"
  1490. cy="257.01581"
  1491. cx="48.998341"
  1492. id="ellipse4623-1"
  1493. style="display:inline;opacity:1;fill:#000000;stroke-width:0.20157" />
  1494. <ellipse
  1495. ry="9.3537588"
  1496. rx="8.858448"
  1497. cy="257.51495"
  1498. cx="86.932533"
  1499. id="ellipse4623-9"
  1500. style="display:inline;opacity:1;fill:#000000;stroke-width:0.20157" />
  1501. <ellipse
  1502. style="display:inline;opacity:1;fill:#000000;stroke-width:0.20157"
  1503. id="ellipse4623-9-8"
  1504. cx="86.756432"
  1505. cy="297.3176"
  1506. rx="8.858448"
  1507. ry="9.3537588" />
  1508. <ellipse
  1509. style="display:inline;opacity:1;fill:#000000;stroke-width:0.20157"
  1510. id="ellipse4623-1-2"
  1511. cx="48.988605"
  1512. cy="298.48224"
  1513. rx="8.858448"
  1514. ry="9.3537588" />
  1515. </g>
  1516. </g>
  1517. <g
  1518. sodipodi:insensitive="true"
  1519. style="display:none"
  1520. inkscape:label="color 3 and 6 dots"
  1521. id="g4711"
  1522. inkscape:groupmode="layer">
  1523. <g
  1524. sodipodi:insensitive="true"
  1525. inkscape:label="bg"
  1526. id="g4671"
  1527. inkscape:groupmode="layer"
  1528. style="display:inline">
  1529. <image
  1530. sodipodi:absref="C:\Users\valued-customer\Desktop\VS_CODE\Qwixx\frontend\example\palette\color3.svg"
  1531. xlink:href="../palette/color3.svg"
  1532. y="0"
  1533. x="0"
  1534. preserveAspectRatio="none"
  1535. inkscape:svg-dpi="96"
  1536. width="855.26562"
  1537. height="637.97656"
  1538. id="image4669"
  1539. clip-path="url(#clipPath4509)"
  1540. transform="translate(-3e-5,2.21e-4)" />
  1541. </g>
  1542. <g
  1543. sodipodi:insensitive="true"
  1544. inkscape:label="dots"
  1545. id="g4709"
  1546. inkscape:groupmode="layer"
  1547. style="display:inline">
  1548. <ellipse
  1549. ry="9.3537588"
  1550. rx="8.858448"
  1551. cy="256.35376"
  1552. cx="53.858448"
  1553. id="ellipse4673"
  1554. style="opacity:1;fill:#000000;stroke-width:0.20157" />
  1555. <ellipse
  1556. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)"
  1557. ry="6.8381009"
  1558. rx="6.3062582"
  1559. cy="1991.7885"
  1560. cx="2041.2469"
  1561. id="ellipse4675"
  1562. style="opacity:1;fill:#000000;stroke-width:0.156281" />
  1563. <ellipse
  1564. style="opacity:1;fill:#000000;stroke-width:0.149534"
  1565. id="ellipse4677"
  1566. cx="552.992"
  1567. cy="808.27002"
  1568. rx="6.0339532"
  1569. ry="6.5429029"
  1570. transform="matrix(0.07673711,-0.99705136,0.0770921,0.99702398,0,0)" />
  1571. <g
  1572. id="g4701"
  1573. transform="translate(-263.72916,16.029054)"
  1574. style="display:inline">
  1575. <g
  1576. style="display:none"
  1577. id="g4699"
  1578. inkscape:label="base">
  1579. <g
  1580. inkscape:transform-center-y="33.351485"
  1581. inkscape:transform-center-x="-57.720495"
  1582. inkscape:corner7="0.57853176 : 0.15763317 : 0.23011852 : 1"
  1583. inkscape:corner0="0.7979643 : 0.51434472 : 0 : 1"
  1584. inkscape:perspectiveID="#perspective2405-9"
  1585. style="fill:#b3b3b3;stroke-width:50"
  1586. id="g4691"
  1587. sodipodi:type="inkscape:box3d">
  1588. <path
  1589. points="100.68028,204.59704 173.45005,218.50402 235.89218,124.4117 163.12241,110.50472 "
  1590. d="m 163.12241,110.50472 -62.44213,94.09232 72.76977,13.90698 62.44213,-94.09232 z"
  1591. inkscape:box3dsidetype="3"
  1592. style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1593. id="path4679"
  1594. sodipodi:type="inkscape:box3dside" />
  1595. <path
  1596. points="173.45005,218.50402 236.87745,289.49179 164.10767,275.58481 100.68028,204.59704 "
  1597. d="m 100.68028,204.59704 72.76977,13.90698 63.4274,70.98777 -72.76978,-13.90698 z"
  1598. inkscape:box3dsidetype="14"
  1599. style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1600. id="path4681"
  1601. sodipodi:type="inkscape:box3dside" />
  1602. <path
  1603. points="173.45005,218.50402 236.87745,289.49179 299.31958,195.39947 235.89218,124.4117 "
  1604. d="m 235.89218,124.4117 -62.44213,94.09232 63.4274,70.98777 62.44213,-94.09232 z"
  1605. inkscape:box3dsidetype="13"
  1606. style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1607. id="path4683"
  1608. sodipodi:type="inkscape:box3dside" />
  1609. <path
  1610. points="100.68028,204.59704 164.10767,275.58481 226.5498,181.4925 163.12241,110.50472 "
  1611. d="m 163.12241,110.50472 -62.44213,94.09232 63.42739,70.98777 62.44213,-94.09231 z"
  1612. inkscape:box3dsidetype="5"
  1613. style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1614. id="path4685"
  1615. sodipodi:type="inkscape:box3dside" />
  1616. <path
  1617. points="235.89218,124.4117 299.31958,195.39947 226.5498,181.4925 163.12241,110.50472 "
  1618. d="m 163.12241,110.50472 72.76977,13.90698 63.4274,70.98777 -72.76978,-13.90697 z"
  1619. inkscape:box3dsidetype="6"
  1620. style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1621. id="path4687"
  1622. sodipodi:type="inkscape:box3dside" />
  1623. <path
  1624. points="164.10767,275.58481 236.87745,289.49179 299.31958,195.39947 226.5498,181.4925 "
  1625. d="m 226.5498,181.4925 -62.44213,94.09231 72.76978,13.90698 62.44213,-94.09232 z"
  1626. inkscape:box3dsidetype="11"
  1627. style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:40.5754;stroke-linejoin:round"
  1628. id="path4689"
  1629. sodipodi:type="inkscape:box3dside" />
  1630. </g>
  1631. <ellipse
  1632. transform="matrix(0.99044852,0.13788305,-0.17420632,0.98470917,0,0)"
  1633. ry="58.370235"
  1634. rx="43.326023"
  1635. cx="80.496796"
  1636. cy="82.676537"
  1637. id="ellipse4693"
  1638. style="fill:#b3b3b3;stroke-width:18.127" />
  1639. <ellipse
  1640. transform="matrix(0.8963873,-0.44327172,-0.0457121,0.99895466,0,0)"
  1641. ry="42.078251"
  1642. rx="52.985146"
  1643. cy="205.23918"
  1644. cx="159.82744"
  1645. id="ellipse4695"
  1646. style="fill:#b3b3b3;stroke-width:27.1643" />
  1647. <ellipse
  1648. transform="matrix(-0.56188005,0.82721872,0.81012106,0.58626262,0,0)"
  1649. ry="53.173599"
  1650. rx="19.549366"
  1651. cy="137.37201"
  1652. cx="-36.575558"
  1653. id="ellipse4697"
  1654. style="fill:#b3b3b3;stroke-width:27.3889" />
  1655. </g>
  1656. </g>
  1657. <ellipse
  1658. style="display:inline;opacity:1;fill:#000000;stroke-width:0.156281"
  1659. id="ellipse4703"
  1660. cx="2045.7782"
  1661. cy="1974.585"
  1662. rx="6.3062582"
  1663. ry="6.8381009"
  1664. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)" />
  1665. <ellipse
  1666. transform="matrix(0.99874704,0.05004342,-0.99761027,0.06909231,0,0)"
  1667. ry="6.8381009"
  1668. rx="6.3062582"
  1669. cy="1956.1146"
  1670. cx="2049.4026"
  1671. id="ellipse4705"
  1672. style="display:inline;opacity:1;fill:#000000;stroke-width:0.156281" />
  1673. <ellipse
  1674. transform="matrix(0.08249062,-0.99659184,0.08287187,0.99656021,0,0)"
  1675. ry="6.5459476"
  1676. rx="6.0367355"
  1677. cy="780.70953"
  1678. cx="496.10257"
  1679. id="ellipse4707"
  1680. style="display:inline;opacity:1;fill:#000000;stroke-width:0.149603" />
  1681. <ellipse
  1682. style="display:inline;opacity:1;fill:#000000;stroke-width:0.20157"
  1683. id="ellipse4673-9"
  1684. cx="83.858444"
  1685. cy="256.35376"
  1686. rx="8.858448"
  1687. ry="9.3537588" />
  1688. <ellipse
  1689. style="display:inline;opacity:1;fill:#000000;stroke-width:0.20157"
  1690. id="ellipse4673-1"
  1691. cx="53.858448"
  1692. cy="278.35376"
  1693. rx="8.858448"
  1694. ry="9.3537588" />
  1695. <ellipse
  1696. ry="9.3537588"
  1697. rx="8.858448"
  1698. cy="278.35376"
  1699. cx="83.858452"
  1700. id="ellipse4673-9-5"
  1701. style="display:inline;opacity:1;fill:#000000;stroke-width:0.20157" />
  1702. <ellipse
  1703. style="display:inline;opacity:1;fill:#000000;stroke-width:0.20157"
  1704. id="ellipse4673-3"
  1705. cx="53.858448"
  1706. cy="300.35376"
  1707. rx="8.858448"
  1708. ry="9.3537588" />
  1709. <ellipse
  1710. ry="9.3537588"
  1711. rx="8.858448"
  1712. cy="300.35376"
  1713. cx="83.858452"
  1714. id="ellipse4673-9-8"
  1715. style="display:inline;opacity:1;fill:#000000;stroke-width:0.20157" />
  1716. </g>
  1717. </g>
  1718. <g
  1719. sodipodi:insensitive="true"
  1720. style="display:none"
  1721. inkscape:groupmode="layer"
  1722. id="g4410"
  1723. inkscape:label="mask">
  1724. <path
  1725. transform="scale(0.26458333)"
  1726. d="m 404.96289,893.44531 -208.07422,2.32813 -65.93555,15.54101 v 272.65435 l 259.44141,-2.9043 14.56836,-68.9473 z"
  1727. style="opacity:1;fill:#ff0000;fill-rule:evenodd;stroke:none;stroke-width:3.77953;stroke-linejoin:round"
  1728. id="path4396" />
  1729. </g>
  1730. <g
  1731. sodipodi:insensitive="true"
  1732. inkscape:label="outset"
  1733. id="g4423"
  1734. inkscape:groupmode="layer"
  1735. style="display:none">
  1736. <path
  1737. d="m 106.82227,235.33594 c -18.281036,0.21185 -36.563814,0.39556 -54.843754,0.625 -5.86427,1.34491 -11.713656,2.75663 -17.572266,4.12695 -0.733962,0.23931 -0.908655,1.02911 -0.818952,1.71562 0.0059,23.81808 8.48e-4,47.6362 0.0025,71.4543 0.05793,0.78403 0.855875,1.18829 1.574987,1.0544 22.712635,-0.25446 45.425269,-0.50892 68.137895,-0.76338 0.7086,-0.0756 1.10818,-0.72268 1.14339,-1.39283 1.24249,-5.94258 2.52128,-11.87915 3.74919,-17.82397 0.0229,-19.31373 0.003,-38.62761 0.01,-57.94141 -0.0754,-0.70446 -0.68626,-1.14623 -1.38281,-1.05468 z"
  1738. style="opacity:1;fill:#0000ff;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linejoin:round"
  1739. id="path4421" />
  1740. </g>
  1741. <g
  1742. sodipodi:insensitive="true"
  1743. style="display:none"
  1744. inkscape:groupmode="layer"
  1745. id="g4433"
  1746. inkscape:label="border">
  1747. <path
  1748. inkscape:original-d="m 106.82227,235.33594 c -18.281036,0.21185 -36.563814,0.39556 -54.843754,0.625 -5.86427,1.34491 -11.713656,2.75663 -17.572266,4.12695 -0.733962,0.23931 -0.908655,1.02911 -0.818952,1.71562 0.0059,23.81808 8.48e-4,47.6362 0.0025,71.4543 0.05793,0.78403 0.855875,1.18829 1.574987,1.0544 22.712635,-0.25446 45.425269,-0.50892 68.137895,-0.76338 0.7086,-0.0756 1.10818,-0.72268 1.14339,-1.39283 1.24249,-5.94258 2.52128,-11.87915 3.74919,-17.82397 0.0229,-19.31373 0.003,-38.62761 0.01,-57.94141 -0.0754,-0.70446 -0.68626,-1.14623 -1.38281,-1.05468 z"
  1749. inkscape:path-effect="#path-effect4439"
  1750. clip-path="url(#clipPath4435)"
  1751. id="path4429"
  1752. style="opacity:1;fill:#0000ff;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linejoin:round"
  1753. d="m 106.82227,235.33594 c -18.281036,0.21185 -36.563814,0.39556 -54.843754,0.625 -5.86427,1.34491 -11.713656,2.75663 -17.572266,4.12695 -0.733962,0.23931 -0.908655,1.02911 -0.818952,1.71562 0.0059,23.81808 8.48e-4,47.6362 0.0025,71.4543 0.05793,0.78403 0.855875,1.18829 1.574987,1.0544 22.712635,-0.25446 45.425269,-0.50892 68.137895,-0.76338 0.7086,-0.0756 1.10818,-0.72268 1.14339,-1.39283 1.24249,-5.94258 2.52128,-11.87915 3.74919,-17.82397 0.0229,-19.31373 0.003,-38.62761 0.01,-57.94141 -0.0754,-0.70446 -0.68626,-1.14623 -1.38281,-1.05468 z" />
  1754. </g>
  1755. <g
  1756. sodipodi:insensitive="true"
  1757. style="display:inline"
  1758. inkscape:label="dice"
  1759. id="layer8"
  1760. inkscape:groupmode="layer">
  1761. <g
  1762. transform="translate(-194.75743,-59.017559)"
  1763. style="display:inline;opacity:0.6;fill:#000000"
  1764. id="g4232">
  1765. <path
  1766. id="path4306"
  1767. style="opacity:0.05;fill:#000000;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
  1768. d="m 229.40524,300.13609 v 72.13966 l 68.64405,-0.76799 V 299.3681 Z" />
  1769. <path
  1770. id="path4308"
  1771. style="opacity:0.85;fill:#000000;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
  1772. d="m 301.90408,295.40824 v 57.85696 l -3.85479,18.24256 V 299.3681 Z" />
  1773. <path
  1774. id="path4310"
  1775. style="opacity:0.55;fill:#000000;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
  1776. d="m 246.85065,296.02418 55.05343,-0.61594 -3.85479,3.95986 -68.64405,0.76799 z" />
  1777. <path
  1778. id="path4312"
  1779. style="opacity:0;fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
  1780. d="m 246.85065,296.02418 v 57.85696 l -17.44541,18.39461 v -72.13966 z" />
  1781. <path
  1782. id="path4314"
  1783. style="opacity:0;fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
  1784. d="m 246.85065,353.88114 55.05343,-0.61594 -3.85479,18.24256 -68.64405,0.76799 z" />
  1785. <path
  1786. id="path4316"
  1787. style="opacity:0;fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
  1788. d="m 246.85065,296.02418 v 57.85696 l 55.05343,-0.61594 v -57.85696 z" />
  1789. </g>
  1790. </g>
  1791. </g>
  1792. <script
  1793. id="mesh_polyfill"
  1794. type="text/javascript">
  1795. !function(){const t=&quot;http://www.w3.org/2000/svg&quot;,e=&quot;http://www.w3.org/1999/xlink&quot;,s=&quot;http://www.w3.org/1999/xhtml&quot;,r=2;if(document.createElementNS(t,&quot;meshgradient&quot;).x)return;const n=(t,e,s,r)=&gt;{let n=new x(.5*(e.x+s.x),.5*(e.y+s.y)),o=new x(.5*(t.x+e.x),.5*(t.y+e.y)),i=new x(.5*(s.x+r.x),.5*(s.y+r.y)),a=new x(.5*(n.x+o.x),.5*(n.y+o.y)),h=new x(.5*(n.x+i.x),.5*(n.y+i.y)),l=new x(.5*(a.x+h.x),.5*(a.y+h.y));return[[t,o,a,l],[l,h,i,r]]},o=t=&gt;{let e=t[0].distSquared(t[1]),s=t[2].distSquared(t[3]),r=.25*t[0].distSquared(t[2]),n=.25*t[1].distSquared(t[3]),o=e&gt;s?e:s,i=r&gt;n?r:n;return 18*(o&gt;i?o:i)},i=(t,e)=&gt;Math.sqrt(t.distSquared(e)),a=(t,e)=&gt;t.scale(2/3).add(e.scale(1/3)),h=t=&gt;{let e,s,r,n,o,i,a,h=new g;return t.match(/(\w+\(\s*[^)]+\))+/g).forEach(t=&gt;{let l=t.match(/[\w.-]+/g),d=l.shift();switch(d){case&quot;translate&quot;:2===l.length?e=new g(1,0,0,1,l[0],l[1]):(console.error(&quot;mesh.js: translate does not have 2 arguments!&quot;),e=new g(1,0,0,1,0,0)),h=h.append(e);break;case&quot;scale&quot;:1===l.length?s=new g(l[0],0,0,l[0],0,0):2===l.length?s=new g(l[0],0,0,l[1],0,0):(console.error(&quot;mesh.js: scale does not have 1 or 2 arguments!&quot;),s=new g(1,0,0,1,0,0)),h=h.append(s);break;case&quot;rotate&quot;:if(3===l.length&amp;&amp;(e=new g(1,0,0,1,l[1],l[2]),h=h.append(e)),l[0]){r=l[0]*Math.PI/180;let t=Math.cos(r),e=Math.sin(r);Math.abs(t)&lt;1e-16&amp;&amp;(t=0),Math.abs(e)&lt;1e-16&amp;&amp;(e=0),a=new g(t,e,-e,t,0,0),h=h.append(a)}else console.error(&quot;math.js: No argument to rotate transform!&quot;);3===l.length&amp;&amp;(e=new g(1,0,0,1,-l[1],-l[2]),h=h.append(e));break;case&quot;skewX&quot;:l[0]?(r=l[0]*Math.PI/180,n=Math.tan(r),o=new g(1,0,n,1,0,0),h=h.append(o)):console.error(&quot;math.js: No argument to skewX transform!&quot;);break;case&quot;skewY&quot;:l[0]?(r=l[0]*Math.PI/180,n=Math.tan(r),i=new g(1,n,0,1,0,0),h=h.append(i)):console.error(&quot;math.js: No argument to skewY transform!&quot;);break;case&quot;matrix&quot;:6===l.length?h=h.append(new g(...l)):console.error(&quot;math.js: Incorrect number of arguments for matrix!&quot;);break;default:console.error(&quot;mesh.js: Unhandled transform type: &quot;+d)}}),h},l=t=&gt;{let e=[],s=t.split(/[ ,]+/);for(let t=0,r=s.length-1;t&lt;r;t+=2)e.push(new x(parseFloat(s[t]),parseFloat(s[t+1])));return e},d=(t,e)=&gt;{for(let s in e)t.setAttribute(s,e[s])},c=(t,e,s,r,n)=&gt;{let o,i,a=[0,0,0,0];for(let h=0;h&lt;3;++h)e[h]&lt;t[h]&amp;&amp;e[h]&lt;s[h]||t[h]&lt;e[h]&amp;&amp;s[h]&lt;e[h]?a[h]=0:(a[h]=.5*((e[h]-t[h])/r+(s[h]-e[h])/n),o=Math.abs(3*(e[h]-t[h])/r),i=Math.abs(3*(s[h]-e[h])/n),a[h]&gt;o?a[h]=o:a[h]&gt;i&amp;&amp;(a[h]=i));return a},u=[[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[-3,3,0,0,-2,-1,0,0,0,0,0,0,0,0,0,0],[2,-2,0,0,1,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,-3,3,0,0,-2,-1,0,0],[0,0,0,0,0,0,0,0,2,-2,0,0,1,1,0,0],[-3,0,3,0,0,0,0,0,-2,0,-1,0,0,0,0,0],[0,0,0,0,-3,0,3,0,0,0,0,0,-2,0,-1,0],[9,-9,-9,9,6,3,-6,-3,6,-6,3,-3,4,2,2,1],[-6,6,6,-6,-3,-3,3,3,-4,4,-2,2,-2,-2,-1,-1],[2,0,-2,0,0,0,0,0,1,0,1,0,0,0,0,0],[0,0,0,0,2,0,-2,0,0,0,0,0,1,0,1,0],[-6,6,6,-6,-4,-2,4,2,-3,3,-3,3,-2,-1,-2,-1],[4,-4,-4,4,2,2,-2,-2,2,-2,2,-2,1,1,1,1]],f=t=&gt;{let e=[];for(let s=0;s&lt;16;++s){e[s]=0;for(let r=0;r&lt;16;++r)e[s]+=u[s][r]*t[r]}return e},p=(t,e,s)=&gt;{const r=e*e,n=s*s,o=e*e*e,i=s*s*s;return t[0]+t[1]*e+t[2]*r+t[3]*o+t[4]*s+t[5]*s*e+t[6]*s*r+t[7]*s*o+t[8]*n+t[9]*n*e+t[10]*n*r+t[11]*n*o+t[12]*i+t[13]*i*e+t[14]*i*r+t[15]*i*o},y=t=&gt;{let e=[],s=[],r=[];for(let s=0;s&lt;4;++s)e[s]=[],e[s][0]=n(t[0][s],t[1][s],t[2][s],t[3][s]),e[s][1]=[],e[s][1].push(...n(...e[s][0][0])),e[s][1].push(...n(...e[s][0][1])),e[s][2]=[],e[s][2].push(...n(...e[s][1][0])),e[s][2].push(...n(...e[s][1][1])),e[s][2].push(...n(...e[s][1][2])),e[s][2].push(...n(...e[s][1][3]));for(let t=0;t&lt;8;++t){s[t]=[];for(let r=0;r&lt;4;++r)s[t][r]=[],s[t][r][0]=n(e[0][2][t][r],e[1][2][t][r],e[2][2][t][r],e[3][2][t][r]),s[t][r][1]=[],s[t][r][1].push(...n(...s[t][r][0][0])),s[t][r][1].push(...n(...s[t][r][0][1])),s[t][r][2]=[],s[t][r][2].push(...n(...s[t][r][1][0])),s[t][r][2].push(...n(...s[t][r][1][1])),s[t][r][2].push(...n(...s[t][r][1][2])),s[t][r][2].push(...n(...s[t][r][1][3]))}for(let t=0;t&lt;8;++t){r[t]=[];for(let e=0;e&lt;8;++e)r[t][e]=[],r[t][e][0]=s[t][0][2][e],r[t][e][1]=s[t][1][2][e],r[t][e][2]=s[t][2][2][e],r[t][e][3]=s[t][3][2][e]}return r};class x{constructor(t,e){this.x=t||0,this.y=e||0}toString(){return`(x=${this.x}, y=${this.y})`}clone(){return new x(this.x,this.y)}add(t){return new x(this.x+t.x,this.y+t.y)}scale(t){return void 0===t.x?new x(this.x*t,this.y*t):new x(this.x*t.x,this.y*t.y)}distSquared(t){let e=this.x-t.x,s=this.y-t.y;return e*e+s*s}transform(t){let e=this.x*t.a+this.y*t.c+t.e,s=this.x*t.b+this.y*t.d+t.f;return new x(e,s)}}class g{constructor(t,e,s,r,n,o){void 0===t?(this.a=1,this.b=0,this.c=0,this.d=1,this.e=0,this.f=0):(this.a=t,this.b=e,this.c=s,this.d=r,this.e=n,this.f=o)}toString(){return`affine: ${this.a} ${this.c} ${this.e} \n ${this.b} ${this.d} ${this.f}`}append(t){t instanceof g||console.error(&quot;mesh.js: argument to Affine.append is not affine!&quot;);let e=this.a*t.a+this.c*t.b,s=this.b*t.a+this.d*t.b,r=this.a*t.c+this.c*t.d,n=this.b*t.c+this.d*t.d,o=this.a*t.e+this.c*t.f+this.e,i=this.b*t.e+this.d*t.f+this.f;return new g(e,s,r,n,o,i)}}class w{constructor(t,e){this.nodes=t,this.colors=e}paintCurve(t,e){if(o(this.nodes)&gt;r){const s=n(...this.nodes);let r=[[],[]],o=[[],[]];for(let t=0;t&lt;4;++t)r[0][t]=this.colors[0][t],r[1][t]=(this.colors[0][t]+this.colors[1][t])/2,o[0][t]=r[1][t],o[1][t]=this.colors[1][t];let i=new w(s[0],r),a=new w(s[1],o);i.paintCurve(t,e),a.paintCurve(t,e)}else{let s=Math.round(this.nodes[0].x);if(s&gt;=0&amp;&amp;s&lt;e){let r=4*(~~this.nodes[0].y*e+s);t[r]=Math.round(this.colors[0][0]),t[r+1]=Math.round(this.colors[0][1]),t[r+2]=Math.round(this.colors[0][2]),t[r+3]=Math.round(this.colors[0][3])}}}}class m{constructor(t,e){this.nodes=t,this.colors=e}split(){let t=[[],[],[],[]],e=[[],[],[],[]],s=[[[],[]],[[],[]]],r=[[[],[]],[[],[]]];for(let s=0;s&lt;4;++s){const r=n(this.nodes[0][s],this.nodes[1][s],this.nodes[2][s],this.nodes[3][s]);t[0][s]=r[0][0],t[1][s]=r[0][1],t[2][s]=r[0][2],t[3][s]=r[0][3],e[0][s]=r[1][0],e[1][s]=r[1][1],e[2][s]=r[1][2],e[3][s]=r[1][3]}for(let t=0;t&lt;4;++t)s[0][0][t]=this.colors[0][0][t],s[0][1][t]=this.colors[0][1][t],s[1][0][t]=(this.colors[0][0][t]+this.colors[1][0][t])/2,s[1][1][t]=(this.colors[0][1][t]+this.colors[1][1][t])/2,r[0][0][t]=s[1][0][t],r[0][1][t]=s[1][1][t],r[1][0][t]=this.colors[1][0][t],r[1][1][t]=this.colors[1][1][t];return[new m(t,s),new m(e,r)]}paint(t,e){let s,n=!1;for(let t=0;t&lt;4;++t)if((s=o([this.nodes[0][t],this.nodes[1][t],this.nodes[2][t],this.nodes[3][t]]))&gt;r){n=!0;break}if(n){let s=this.split();s[0].paint(t,e),s[1].paint(t,e)}else{new w([...this.nodes[0]],[...this.colors[0]]).paintCurve(t,e)}}}class b{constructor(t){this.readMesh(t),this.type=t.getAttribute(&quot;type&quot;)||&quot;bilinear&quot;}readMesh(t){let e=[[]],s=[[]],r=Number(t.getAttribute(&quot;x&quot;)),n=Number(t.getAttribute(&quot;y&quot;));e[0][0]=new x(r,n);let o=t.children;for(let t=0,r=o.length;t&lt;r;++t){e[3*t+1]=[],e[3*t+2]=[],e[3*t+3]=[],s[t+1]=[];let r=o[t].children;for(let n=0,o=r.length;n&lt;o;++n){let o=r[n].children;for(let r=0,i=o.length;r&lt;i;++r){let i=r;0!==t&amp;&amp;++i;let h,d=o[r].getAttribute(&quot;path&quot;),c=&quot;l&quot;;null!=d&amp;&amp;(c=(h=d.match(/\s*([lLcC])\s*(.*)/))[1]);let u=l(h[2]);switch(c){case&quot;l&quot;:0===i?(e[3*t][3*n+3]=u[0].add(e[3*t][3*n]),e[3*t][3*n+1]=a(e[3*t][3*n],e[3*t][3*n+3]),e[3*t][3*n+2]=a(e[3*t][3*n+3],e[3*t][3*n])):1===i?(e[3*t+3][3*n+3]=u[0].add(e[3*t][3*n+3]),e[3*t+1][3*n+3]=a(e[3*t][3*n+3],e[3*t+3][3*n+3]),e[3*t+2][3*n+3]=a(e[3*t+3][3*n+3],e[3*t][3*n+3])):2===i?(0===n&amp;&amp;(e[3*t+3][3*n+0]=u[0].add(e[3*t+3][3*n+3])),e[3*t+3][3*n+1]=a(e[3*t+3][3*n],e[3*t+3][3*n+3]),e[3*t+3][3*n+2]=a(e[3*t+3][3*n+3],e[3*t+3][3*n])):(e[3*t+1][3*n]=a(e[3*t][3*n],e[3*t+3][3*n]),e[3*t+2][3*n]=a(e[3*t+3][3*n],e[3*t][3*n]));break;case&quot;L&quot;:0===i?(e[3*t][3*n+3]=u[0],e[3*t][3*n+1]=a(e[3*t][3*n],e[3*t][3*n+3]),e[3*t][3*n+2]=a(e[3*t][3*n+3],e[3*t][3*n])):1===i?(e[3*t+3][3*n+3]=u[0],e[3*t+1][3*n+3]=a(e[3*t][3*n+3],e[3*t+3][3*n+3]),e[3*t+2][3*n+3]=a(e[3*t+3][3*n+3],e[3*t][3*n+3])):2===i?(0===n&amp;&amp;(e[3*t+3][3*n+0]=u[0]),e[3*t+3][3*n+1]=a(e[3*t+3][3*n],e[3*t+3][3*n+3]),e[3*t+3][3*n+2]=a(e[3*t+3][3*n+3],e[3*t+3][3*n])):(e[3*t+1][3*n]=a(e[3*t][3*n],e[3*t+3][3*n]),e[3*t+2][3*n]=a(e[3*t+3][3*n],e[3*t][3*n]));break;case&quot;c&quot;:0===i?(e[3*t][3*n+1]=u[0].add(e[3*t][3*n]),e[3*t][3*n+2]=u[1].add(e[3*t][3*n]),e[3*t][3*n+3]=u[2].add(e[3*t][3*n])):1===i?(e[3*t+1][3*n+3]=u[0].add(e[3*t][3*n+3]),e[3*t+2][3*n+3]=u[1].add(e[3*t][3*n+3]),e[3*t+3][3*n+3]=u[2].add(e[3*t][3*n+3])):2===i?(e[3*t+3][3*n+2]=u[0].add(e[3*t+3][3*n+3]),e[3*t+3][3*n+1]=u[1].add(e[3*t+3][3*n+3]),0===n&amp;&amp;(e[3*t+3][3*n+0]=u[2].add(e[3*t+3][3*n+3]))):(e[3*t+2][3*n]=u[0].add(e[3*t+3][3*n]),e[3*t+1][3*n]=u[1].add(e[3*t+3][3*n]));break;case&quot;C&quot;:0===i?(e[3*t][3*n+1]=u[0],e[3*t][3*n+2]=u[1],e[3*t][3*n+3]=u[2]):1===i?(e[3*t+1][3*n+3]=u[0],e[3*t+2][3*n+3]=u[1],e[3*t+3][3*n+3]=u[2]):2===i?(e[3*t+3][3*n+2]=u[0],e[3*t+3][3*n+1]=u[1],0===n&amp;&amp;(e[3*t+3][3*n+0]=u[2])):(e[3*t+2][3*n]=u[0],e[3*t+1][3*n]=u[1]);break;default:console.error(&quot;mesh.js: &quot;+c+&quot; invalid path type.&quot;)}if(0===t&amp;&amp;0===n||r&gt;0){let e=window.getComputedStyle(o[r]).stopColor.match(/^rgb\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)$/i),a=window.getComputedStyle(o[r]).stopOpacity,h=255;a&amp;&amp;(h=Math.floor(255*a)),e&amp;&amp;(0===i?(s[t][n]=[],s[t][n][0]=Math.floor(e[1]),s[t][n][1]=Math.floor(e[2]),s[t][n][2]=Math.floor(e[3]),s[t][n][3]=h):1===i?(s[t][n+1]=[],s[t][n+1][0]=Math.floor(e[1]),s[t][n+1][1]=Math.floor(e[2]),s[t][n+1][2]=Math.floor(e[3]),s[t][n+1][3]=h):2===i?(s[t+1][n+1]=[],s[t+1][n+1][0]=Math.floor(e[1]),s[t+1][n+1][1]=Math.floor(e[2]),s[t+1][n+1][2]=Math.floor(e[3]),s[t+1][n+1][3]=h):3===i&amp;&amp;(s[t+1][n]=[],s[t+1][n][0]=Math.floor(e[1]),s[t+1][n][1]=Math.floor(e[2]),s[t+1][n][2]=Math.floor(e[3]),s[t+1][n][3]=h))}}e[3*t+1][3*n+1]=new x,e[3*t+1][3*n+2]=new x,e[3*t+2][3*n+1]=new x,e[3*t+2][3*n+2]=new x,e[3*t+1][3*n+1].x=(-4*e[3*t][3*n].x+6*(e[3*t][3*n+1].x+e[3*t+1][3*n].x)+-2*(e[3*t][3*n+3].x+e[3*t+3][3*n].x)+3*(e[3*t+3][3*n+1].x+e[3*t+1][3*n+3].x)+-1*e[3*t+3][3*n+3].x)/9,e[3*t+1][3*n+2].x=(-4*e[3*t][3*n+3].x+6*(e[3*t][3*n+2].x+e[3*t+1][3*n+3].x)+-2*(e[3*t][3*n].x+e[3*t+3][3*n+3].x)+3*(e[3*t+3][3*n+2].x+e[3*t+1][3*n].x)+-1*e[3*t+3][3*n].x)/9,e[3*t+2][3*n+1].x=(-4*e[3*t+3][3*n].x+6*(e[3*t+3][3*n+1].x+e[3*t+2][3*n].x)+-2*(e[3*t+3][3*n+3].x+e[3*t][3*n].x)+3*(e[3*t][3*n+1].x+e[3*t+2][3*n+3].x)+-1*e[3*t][3*n+3].x)/9,e[3*t+2][3*n+2].x=(-4*e[3*t+3][3*n+3].x+6*(e[3*t+3][3*n+2].x+e[3*t+2][3*n+3].x)+-2*(e[3*t+3][3*n].x+e[3*t][3*n+3].x)+3*(e[3*t][3*n+2].x+e[3*t+2][3*n].x)+-1*e[3*t][3*n].x)/9,e[3*t+1][3*n+1].y=(-4*e[3*t][3*n].y+6*(e[3*t][3*n+1].y+e[3*t+1][3*n].y)+-2*(e[3*t][3*n+3].y+e[3*t+3][3*n].y)+3*(e[3*t+3][3*n+1].y+e[3*t+1][3*n+3].y)+-1*e[3*t+3][3*n+3].y)/9,e[3*t+1][3*n+2].y=(-4*e[3*t][3*n+3].y+6*(e[3*t][3*n+2].y+e[3*t+1][3*n+3].y)+-2*(e[3*t][3*n].y+e[3*t+3][3*n+3].y)+3*(e[3*t+3][3*n+2].y+e[3*t+1][3*n].y)+-1*e[3*t+3][3*n].y)/9,e[3*t+2][3*n+1].y=(-4*e[3*t+3][3*n].y+6*(e[3*t+3][3*n+1].y+e[3*t+2][3*n].y)+-2*(e[3*t+3][3*n+3].y+e[3*t][3*n].y)+3*(e[3*t][3*n+1].y+e[3*t+2][3*n+3].y)+-1*e[3*t][3*n+3].y)/9,e[3*t+2][3*n+2].y=(-4*e[3*t+3][3*n+3].y+6*(e[3*t+3][3*n+2].y+e[3*t+2][3*n+3].y)+-2*(e[3*t+3][3*n].y+e[3*t][3*n+3].y)+3*(e[3*t][3*n+2].y+e[3*t+2][3*n].y)+-1*e[3*t][3*n].y)/9}}this.nodes=e,this.colors=s}paintMesh(t,e){let s=(this.nodes.length-1)/3,r=(this.nodes[0].length-1)/3;if(&quot;bilinear&quot;===this.type||s&lt;2||r&lt;2){let n;for(let o=0;o&lt;s;++o)for(let s=0;s&lt;r;++s){let r=[];for(let t=3*o,e=3*o+4;t&lt;e;++t)r.push(this.nodes[t].slice(3*s,3*s+4));let i=[];i.push(this.colors[o].slice(s,s+2)),i.push(this.colors[o+1].slice(s,s+2)),(n=new m(r,i)).paint(t,e)}}else{let n,o,a,h,l,d,u;const x=s,g=r;s++,r++;let w=new Array(s);for(let t=0;t&lt;s;++t){w[t]=new Array(r);for(let e=0;e&lt;r;++e)w[t][e]=[],w[t][e][0]=this.nodes[3*t][3*e],w[t][e][1]=this.colors[t][e]}for(let t=0;t&lt;s;++t)for(let e=0;e&lt;r;++e)0!==t&amp;&amp;t!==x&amp;&amp;(n=i(w[t-1][e][0],w[t][e][0]),o=i(w[t+1][e][0],w[t][e][0]),w[t][e][2]=c(w[t-1][e][1],w[t][e][1],w[t+1][e][1],n,o)),0!==e&amp;&amp;e!==g&amp;&amp;(n=i(w[t][e-1][0],w[t][e][0]),o=i(w[t][e+1][0],w[t][e][0]),w[t][e][3]=c(w[t][e-1][1],w[t][e][1],w[t][e+1][1],n,o));for(let t=0;t&lt;r;++t){w[0][t][2]=[],w[x][t][2]=[];for(let e=0;e&lt;4;++e)n=i(w[1][t][0],w[0][t][0]),o=i(w[x][t][0],w[x-1][t][0]),w[0][t][2][e]=n&gt;0?2*(w[1][t][1][e]-w[0][t][1][e])/n-w[1][t][2][e]:0,w[x][t][2][e]=o&gt;0?2*(w[x][t][1][e]-w[x-1][t][1][e])/o-w[x-1][t][2][e]:0}for(let t=0;t&lt;s;++t){w[t][0][3]=[],w[t][g][3]=[];for(let e=0;e&lt;4;++e)n=i(w[t][1][0],w[t][0][0]),o=i(w[t][g][0],w[t][g-1][0]),w[t][0][3][e]=n&gt;0?2*(w[t][1][1][e]-w[t][0][1][e])/n-w[t][1][3][e]:0,w[t][g][3][e]=o&gt;0?2*(w[t][g][1][e]-w[t][g-1][1][e])/o-w[t][g-1][3][e]:0}for(let s=0;s&lt;x;++s)for(let r=0;r&lt;g;++r){let n=i(w[s][r][0],w[s+1][r][0]),o=i(w[s][r+1][0],w[s+1][r+1][0]),c=i(w[s][r][0],w[s][r+1][0]),x=i(w[s+1][r][0],w[s+1][r+1][0]),g=[[],[],[],[]];for(let t=0;t&lt;4;++t){(d=[])[0]=w[s][r][1][t],d[1]=w[s+1][r][1][t],d[2]=w[s][r+1][1][t],d[3]=w[s+1][r+1][1][t],d[4]=w[s][r][2][t]*n,d[5]=w[s+1][r][2][t]*n,d[6]=w[s][r+1][2][t]*o,d[7]=w[s+1][r+1][2][t]*o,d[8]=w[s][r][3][t]*c,d[9]=w[s+1][r][3][t]*x,d[10]=w[s][r+1][3][t]*c,d[11]=w[s+1][r+1][3][t]*x,d[12]=0,d[13]=0,d[14]=0,d[15]=0,u=f(d);for(let e=0;e&lt;9;++e){g[t][e]=[];for(let s=0;s&lt;9;++s)g[t][e][s]=p(u,e/8,s/8),g[t][e][s]&gt;255?g[t][e][s]=255:g[t][e][s]&lt;0&amp;&amp;(g[t][e][s]=0)}}h=[];for(let t=3*s,e=3*s+4;t&lt;e;++t)h.push(this.nodes[t].slice(3*r,3*r+4));l=y(h);for(let s=0;s&lt;8;++s)for(let r=0;r&lt;8;++r)(a=new m(l[s][r],[[[g[0][s][r],g[1][s][r],g[2][s][r],g[3][s][r]],[g[0][s][r+1],g[1][s][r+1],g[2][s][r+1],g[3][s][r+1]]],[[g[0][s+1][r],g[1][s+1][r],g[2][s+1][r],g[3][s+1][r]],[g[0][s+1][r+1],g[1][s+1][r+1],g[2][s+1][r+1],g[3][s+1][r+1]]]])).paint(t,e)}}}transform(t){if(t instanceof x)for(let e=0,s=this.nodes.length;e&lt;s;++e)for(let s=0,r=this.nodes[0].length;s&lt;r;++s)this.nodes[e][s]=this.nodes[e][s].add(t);else if(t instanceof g)for(let e=0,s=this.nodes.length;e&lt;s;++e)for(let s=0,r=this.nodes[0].length;s&lt;r;++s)this.nodes[e][s]=this.nodes[e][s].transform(t)}scale(t){for(let e=0,s=this.nodes.length;e&lt;s;++e)for(let s=0,r=this.nodes[0].length;s&lt;r;++s)this.nodes[e][s]=this.nodes[e][s].scale(t)}}document.querySelectorAll(&quot;rect,circle,ellipse,path,text&quot;).forEach((r,n)=&gt;{let o=r.getAttribute(&quot;id&quot;);o||(o=&quot;patchjs_shape&quot;+n,r.setAttribute(&quot;id&quot;,o));const i=r.style.fill.match(/^url\(\s*&quot;?\s*#([^\s&quot;]+)&quot;?\s*\)/),a=r.style.stroke.match(/^url\(\s*&quot;?\s*#([^\s&quot;]+)&quot;?\s*\)/);if(i&amp;&amp;i[1]){const a=document.getElementById(i[1]);if(a&amp;&amp;&quot;meshgradient&quot;===a.nodeName){const i=r.getBBox();let l=document.createElementNS(s,&quot;canvas&quot;);d(l,{width:i.width,height:i.height});const c=l.getContext(&quot;2d&quot;);let u=c.createImageData(i.width,i.height);const f=new b(a);&quot;objectBoundingBox&quot;===a.getAttribute(&quot;gradientUnits&quot;)&amp;&amp;f.scale(new x(i.width,i.height));const p=a.getAttribute(&quot;gradientTransform&quot;);null!=p&amp;&amp;f.transform(h(p)),&quot;userSpaceOnUse&quot;===a.getAttribute(&quot;gradientUnits&quot;)&amp;&amp;f.transform(new x(-i.x,-i.y)),f.paintMesh(u.data,l.width),c.putImageData(u,0,0);const y=document.createElementNS(t,&quot;image&quot;);d(y,{width:i.width,height:i.height,x:i.x,y:i.y});let g=l.toDataURL();y.setAttributeNS(e,&quot;xlink:href&quot;,g),r.parentNode.insertBefore(y,r),r.style.fill=&quot;none&quot;;const w=document.createElementNS(t,&quot;use&quot;);w.setAttributeNS(e,&quot;xlink:href&quot;,&quot;#&quot;+o);const m=&quot;patchjs_clip&quot;+n,M=document.createElementNS(t,&quot;clipPath&quot;);M.setAttribute(&quot;id&quot;,m),M.appendChild(w),r.parentElement.insertBefore(M,r),y.setAttribute(&quot;clip-path&quot;,&quot;url(#&quot;+m+&quot;)&quot;),u=null,l=null,g=null}}if(a&amp;&amp;a[1]){const o=document.getElementById(a[1]);if(o&amp;&amp;&quot;meshgradient&quot;===o.nodeName){const i=parseFloat(r.style.strokeWidth.slice(0,-2))*(parseFloat(r.style.strokeMiterlimit)||parseFloat(r.getAttribute(&quot;stroke-miterlimit&quot;))||1),a=r.getBBox(),l=Math.trunc(a.width+i),c=Math.trunc(a.height+i),u=Math.trunc(a.x-i/2),f=Math.trunc(a.y-i/2);let p=document.createElementNS(s,&quot;canvas&quot;);d(p,{width:l,height:c});const y=p.getContext(&quot;2d&quot;);let g=y.createImageData(l,c);const w=new b(o);&quot;objectBoundingBox&quot;===o.getAttribute(&quot;gradientUnits&quot;)&amp;&amp;w.scale(new x(l,c));const m=o.getAttribute(&quot;gradientTransform&quot;);null!=m&amp;&amp;w.transform(h(m)),&quot;userSpaceOnUse&quot;===o.getAttribute(&quot;gradientUnits&quot;)&amp;&amp;w.transform(new x(-u,-f)),w.paintMesh(g.data,p.width),y.putImageData(g,0,0);const M=document.createElementNS(t,&quot;image&quot;);d(M,{width:l,height:c,x:0,y:0});let S=p.toDataURL();M.setAttributeNS(e,&quot;xlink:href&quot;,S);const k=&quot;pattern_clip&quot;+n,A=document.createElementNS(t,&quot;pattern&quot;);d(A,{id:k,patternUnits:&quot;userSpaceOnUse&quot;,width:l,height:c,x:u,y:f}),A.appendChild(M),o.parentNode.appendChild(A),r.style.stroke=&quot;url(#&quot;+k+&quot;)&quot;,g=null,p=null,S=null}}})}();
  1796. </script>
  1797. </svg>