summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-05-05 23:18:30 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-05-05 23:50:07 -0400
commit8b795e605aa2ebfd385ee83b0f1b698435737b47 (patch)
tree33df2747642063494322a5a72fcd7d20d9aca2da
parent046e2f38a417b27376f73f0becec3caf99d84420 (diff)
Clean up icons
-rw-r--r--Makefile32
-rw-r--r--res/drawable-hdpi/ic_launcher.pngbin9397 -> 0 bytes
-rw-r--r--res/drawable-hdpi/keyboard.pngbin4615 -> 0 bytes
-rw-r--r--res/drawable-hdpi/minak.pngbin6727 -> 6213 bytes
-rw-r--r--res/drawable-mdpi/ic_launcher.pngbin5237 -> 0 bytes
-rw-r--r--res/drawable-mdpi/keyboard.pngbin1994 -> 0 bytes
-rw-r--r--res/drawable-mdpi/minak.pngbin4052 -> 3925 bytes
-rw-r--r--res/drawable-xhdpi/ic_launcher.pngbin14383 -> 0 bytes
-rw-r--r--res/drawable-xhdpi/keyboard.pngbin3912 -> 0 bytes
-rw-r--r--res/drawable-xhdpi/minak.pngbin15365 -> 9112 bytes
-rw-r--r--res/drawable-xxhdpi/minak.pngbin0 -> 14978 bytes
-rw-r--r--res/drawable-xxxhdpi/minak.pngbin0 -> 21843 bytes
-rw-r--r--res/drawable/emacs.svg182
-rw-r--r--res/drawable/keyboard.pngbin1977 -> 0 bytes
-rw-r--r--res/drawable/minak.svg521
15 files changed, 216 insertions, 519 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2d24a2f
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,32 @@
+# SVG2PNG: Each is buggy in their own way
+# ImageMagick: doesn't support transparency
+#SVG2PNG = convert $1 -format png $(if $3,-resize $3x)$(if $4,$4) $(if $5,-bacground $5) $2
+# librsvg: doesn't support <style> element
+#SVG2PNG = rsvg-convert $1 -o $2 $(if $3,-w $3) $(if $4,-h $4) $(if $5,--background-color=$5)
+# Inkscape: messes up gradients
+_SVG2PNG = inkscape $1 --export-png $2 $(if $3,-w $3) $(if $4,-h $4) $(if $5,-b '$5')
+
+# Hacky thing to also run it through pngcrush
+SVG2PNG = { $(call _SVG2PNG,$1,$2.tmp.png,$3) && pngcrush $2.tmp.png $2 && rm $2.tmp.png; } || { rm $2.tmp.png; false; }
+
+icons = minak
+densities = mdpi hdpi xhdpi xxhdpi xxxhdpi
+all: $(addsuffix $(addsuffix .png,$(icons)),$(addprefix res/drawable-,$(addsuffix /,$(densities))))
+
+res/drawable-mdpi/%.png: res/drawable/%.svg
+ mkdir -p $(@D)
+ $(call SVG2PNG,$<,$@,48)
+res/drawable-hdpi/%.png: res/drawable/%.svg
+ mkdir -p $(@D)
+ $(call SVG2PNG,$<,$@,72)
+res/drawable-xhdpi/%.png: res/drawable/%.svg
+ mkdir -p $(@D)
+ $(call SVG2PNG,$<,$@,96)
+res/drawable-xxhdpi/%.png: res/drawable/%.svg
+ mkdir -p $(@D)
+ $(call SVG2PNG,$<,$@,144)
+res/drawable-xxxhdpi/%.png: res/drawable/%.svg
+ mkdir -p $(@D)
+ $(call SVG2PNG,$<,$@,192)
+
+.DELETE_ON_ERROR:
diff --git a/res/drawable-hdpi/ic_launcher.png b/res/drawable-hdpi/ic_launcher.png
deleted file mode 100644
index 96a442e..0000000
--- a/res/drawable-hdpi/ic_launcher.png
+++ /dev/null
Binary files differ
diff --git a/res/drawable-hdpi/keyboard.png b/res/drawable-hdpi/keyboard.png
deleted file mode 100644
index 2494b61..0000000
--- a/res/drawable-hdpi/keyboard.png
+++ /dev/null
Binary files differ
diff --git a/res/drawable-hdpi/minak.png b/res/drawable-hdpi/minak.png
index 80f80a0..d045266 100644
--- a/res/drawable-hdpi/minak.png
+++ b/res/drawable-hdpi/minak.png
Binary files differ
diff --git a/res/drawable-mdpi/ic_launcher.png b/res/drawable-mdpi/ic_launcher.png
deleted file mode 100644
index 359047d..0000000
--- a/res/drawable-mdpi/ic_launcher.png
+++ /dev/null
Binary files differ
diff --git a/res/drawable-mdpi/keyboard.png b/res/drawable-mdpi/keyboard.png
deleted file mode 100644
index deb71bc..0000000
--- a/res/drawable-mdpi/keyboard.png
+++ /dev/null
Binary files differ
diff --git a/res/drawable-mdpi/minak.png b/res/drawable-mdpi/minak.png
index 9fce689..468620d 100644
--- a/res/drawable-mdpi/minak.png
+++ b/res/drawable-mdpi/minak.png
Binary files differ
diff --git a/res/drawable-xhdpi/ic_launcher.png b/res/drawable-xhdpi/ic_launcher.png
deleted file mode 100644
index 71c6d76..0000000
--- a/res/drawable-xhdpi/ic_launcher.png
+++ /dev/null
Binary files differ
diff --git a/res/drawable-xhdpi/keyboard.png b/res/drawable-xhdpi/keyboard.png
deleted file mode 100644
index 8944a37..0000000
--- a/res/drawable-xhdpi/keyboard.png
+++ /dev/null
Binary files differ
diff --git a/res/drawable-xhdpi/minak.png b/res/drawable-xhdpi/minak.png
index 7a86237..906e11c 100644
--- a/res/drawable-xhdpi/minak.png
+++ b/res/drawable-xhdpi/minak.png
Binary files differ
diff --git a/res/drawable-xxhdpi/minak.png b/res/drawable-xxhdpi/minak.png
new file mode 100644
index 0000000..6dc30bb
--- /dev/null
+++ b/res/drawable-xxhdpi/minak.png
Binary files differ
diff --git a/res/drawable-xxxhdpi/minak.png b/res/drawable-xxxhdpi/minak.png
new file mode 100644
index 0000000..85f1f90
--- /dev/null
+++ b/res/drawable-xxxhdpi/minak.png
Binary files differ
diff --git a/res/drawable/emacs.svg b/res/drawable/emacs.svg
deleted file mode 100644
index 9872a08..0000000
--- a/res/drawable/emacs.svg
+++ /dev/null
@@ -1,182 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Gnu Emacs Icon
-
- Copyright (C) 2008, 2009
- Free Software Foundation, Inc.
-
- This file is part of GNU Emacs.
-
- GNU Emacs is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- GNU Emacs is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
-
--->
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<!-- And cleaned up in Emacs -->
-<svg
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- version="1.0"
- width="48"
- height="48"
- viewBox="0.171 0.201 512 512"
- id="svg4768"
- xml:space="preserve">
-<defs id="defs4770">
- <linearGradient id="pen_main_linearGradient">
- <stop id="stop3296" style="stop-color:#6376e6;stop-opacity:1" offset="0" />
- <stop id="stop3302" style="stop-color:#222989;stop-opacity:1" offset="0.50094414" />
- <stop id="stop3298" style="stop-color:#00003d;stop-opacity:1" offset="1" />
- </linearGradient>
- <linearGradient id="pen_shadow_linearGradient">
- <stop id="stop3286" style="stop-color:#000000;stop-opacity:1" offset="0" />
- <stop id="stop3292" style="stop-color:#000000;stop-opacity:0.49803922" offset="0.84845906" />
- <stop id="stop3288" style="stop-color:#000000;stop-opacity:0" offset="1" />
- </linearGradient>
- <linearGradient id="pen_clip_linearGradient">
- <stop id="stop3244" style="stop-color:#282828;stop-opacity:1" offset="0" />
- <stop id="stop3252" style="stop-color:#808080;stop-opacity:1" offset="0.39253417" />
- <stop id="stop3246" style="stop-color:#d9d9d9;stop-opacity:1" offset="1" />
- </linearGradient>
- <linearGradient id="pen_ring_linearGradient">
- <stop id="stop3204" style="stop-color:#2b2b2b;stop-opacity:1" offset="0" />
- <stop id="stop3250" style="stop-color:#828383;stop-opacity:1" offset="0.5" />
- <stop id="stop3206" style="stop-color:#dadbdb;stop-opacity:1" offset="1" />
- </linearGradient>
- <linearGradient id="ball_highlight_linearGradient">
- <stop id="stop4968" style="stop-color:#b6b3d8;stop-opacity:1" offset="0" />
- <stop id="stop4970" style="stop-color:#b6b3d8;stop-opacity:0" offset="1" />
- </linearGradient>
- <linearGradient id="ball_shadow_linearGradient">
- <stop id="stop4940" style="stop-color:#000000;stop-opacity:1" offset="0" />
- <stop id="stop4942" style="stop-color:#000000;stop-opacity:0" offset="1" />
- </linearGradient>
- <linearGradient id="ball_main_linearGradient">
- <stop
- id="stop4900" style="stop-color:#bab8db;stop-opacity:1" offset="0" />
- <stop id="stop4902" style="stop-color:#5955a9;stop-opacity:0.99159664" offset="1" />
- </linearGradient>
- <radialGradient id="ball_main_radialGradient"
- cx="20.951529"
- cy="-108.96888"
- r="266.76535"
- fx="20.951529"
- fy="-108.96888"
- xlink:href="#ball_main_linearGradient"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.6817439,0,0,0.5905355,-3.8523706,-28.935273)" />
- <radialGradient id="ball_shadow_radialGradient"
- cx="233.8876"
- cy="471.26172"
- r="170.49393"
- fx="233.8876"
- fy="471.26172"
- xlink:href="#ball_shadow_linearGradient"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,0.1854103,0,383.88493)" />
- <radialGradient id="ball_highlight_radialGradient"
- cx="299.70135"
- cy="371.76376"
- r="76.696358"
- fx="299.70135"
- fy="371.76376"
- xlink:href="#ball_highlight_linearGradient"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,0.9121621,0,32.654948)" />
- <radialGradient id="pen_ring_tip_main_radialGradient"
- cx="289.44067"
- cy="390.45248"
- r="17.67668"
- fx="289.44067"
- fy="390.45248"
- xlink:href="#pen_ring_linearGradient"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.414705,0.3300575,-0.5059004,0.6356454,346.95314,49.479585)" />
- <radialGradient id="pen_ring_clip_radialGradient"
- cx="283.50717"
- cy="382.14804"
- r="17.67668"
- fx="283.50717"
- fy="382.14804"
- xlink:href="#pen_ring_linearGradient"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.414705,0.3300575,-0.5059004,0.6356454,448.41009,-65.398074)" />
- <radialGradient id="pen_clip_radialGradient"
- cx="418.45551"
- cy="181.18982"
- r="63.068935"
- fx="418.45551"
- fy="181.18982"
- xlink:href="#pen_clip_linearGradient"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-6.5565014e-2,-5.9721765e-2,1.6871024,-1.8521705,171.90774,540.51473)" />
- <radialGradient id="pen_shadow_radialGradient"
- cx="284.4671"
- cy="-158.17821"
- r="110.2972"
- fx="284.4671"
- fy="-158.17821"
- xlink:href="#pen_shadow_linearGradient"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-1.2497569,1.3798305,-9.6289463e-2,-7.2974479e-2,674.3826,-70.590682)" />
- <radialGradient id="pen_main_radialGradient"
- cx="425.51019"
- cy="356.62274"
- r="143.34167"
- fx="425.51019"
- fy="356.62274"
- xlink:href="#pen_main_linearGradient"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.1008165,-8.0872321e-2,1.0745309,-1.3395252,13.843287,784.79288)" />
-</defs>
-<g id="ball">
- <path id="ball_shadow"
- d="M 404.38153,471.26172 C 404.40061,488.72268 328.06229,502.87946 233.8876,502.87946 C 139.71291,502.87946 63.374595,488.72268 63.393677,471.26172 C 63.374595,453.80076 139.71291,439.64398 233.8876,439.64398 C 328.06229,439.64398 404.40061,453.80076 404.38153,471.26172 z"
- transform="matrix(1.3434649,0,0,1.3934426,-81.886873,-193.70595)"
- style="opacity:1;fill:url(#ball_shadow_radialGradient);fill-opacity:1;stroke:#7b0000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path id="ball_main"
- d="M 277.19656,7.985198 C 277.19656,165.02971 157.76164,292.33945 10.43121,292.33945 C -136.89922,292.33945 -256.33414,165.02971 -256.33414,7.985198 C -256.33414,-149.05932 -136.89922,-276.36905 10.43121,-276.36905 C 157.76164,-276.36905 277.19656,-149.05932 277.19656,7.985198 z"
- transform="matrix(0.8855031,0,0,0.8392166,227.80221,232.6491)"
- style="opacity:1;fill:url(#ball_main_radialGradient);fill-opacity:1;stroke:#7b0000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path id="ball_highlight"
- d="M 376.39771,371.76376 C 376.40956,410.40897 342.06796,441.74284 299.70135,441.74284 C 257.33475,441.74284 222.99315,410.40897 223.005,371.76376 C 222.99315,333.11855 257.33475,301.78468 299.70135,301.78468 C 342.06796,301.78468 376.40956,333.11855 376.39771,371.76376 L 376.39771,371.76376 z"
- transform="matrix(1.4594595,0,0,1,-195.74111,-13.473684)"
- style="opacity:1;fill:url(#ball_highlight_radialGradient);fill-opacity:1;stroke:#7b0000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path id="ball_E"
- d="M 120.52728,395.60181 C 120.52728,395.60181 141.53508,401.7017 169.49894,405.18885 C 180.82361,406.60106 223.91189,411.53703 256.94833,411.40748 C 256.94833,411.40748 297.18385,411.45315 319.39367,408.29817 C 342.63265,404.99699 355.79853,400.78399 363.12576,392.37646 C 363.31663,390.37182 366.66239,383.83735 357.62922,377.53581 C 334.53496,361.42524 304.67924,357.01539 246.68812,343.24332 C 182.56112,327.12062 163.39684,311.68183 153.82282,300.50869 C 144.74597,289.31078 155.52664,266.05486 207.19934,254.64634 C 233.36175,248.27975 330.80211,247.10994 330.80211,247.10994 C 302.84706,224.91525 250.36452,185.17927 239.63685,176.72892 C 230.22819,169.31758 215.0665,157.94409 213.43669,147.7805 C 211.23808,137.88672 226.81161,133.12305 235.05641,132.5734 C 261.62302,130.74122 297.90017,133.85593 330.14653,140.26856 C 346.35535,143.49191 349.20119,143.01683 349.20119,143.01683 C 372.28666,144.11614 390.24202,132.02376 389.32593,106.55645 C 389.14271,80.722724 363.3136,60.007847 334.72698,59.103006 C 307.8068,58.250912 241.46904,62.950582 241.46904,62.950582 C 318.78702,78.890545 331.42676,82.958326 335.45985,92.265455 C 337.84168,97.761995 331.48115,103.22697 310.17577,102.15922 C 286.98088,100.99677 239.45364,95.38016 239.45364,95.38016 C 194.19881,88.417878 162.68532,81.822031 148.94397,99.777391 C 139.96658,111.50786 150.2265,125.79434 154.25729,134.22236 C 172.21266,165.55264 203.26114,187.04759 222.96403,202.19623 C 230.37744,207.89605 253.01177,220.51802 253.01177,220.51802 C 182.65608,201.28013 126.59139,212.08999 91.047104,230.77822 C 50.1895,254.96299 57.178586,295.77502 122.01094,333.92994 C 160.30349,356.46574 179.36948,367.29179 242.06631,374.98916 C 278.71351,380.83258 284.17422,383.22354 283.8957,386.27387 C 283.50356,390.56845 240.52009,392.19591 228.70541,393.01072 C 198.64873,395.08359 120.91594,395.60181 120.52728,395.60181 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-</g>
-<g id="pen">
- <path id="pen_ring_tip_outline"
- d="M 279.476,404.243 C 279.469,404.239 272.03,400.131 262.672,392.842 L 262.672,392.842 C 254.59,386.557 249.134,380.628 249.128,380.622 L 249.128,380.622 L 249.006,380.489 L 252.652,375.82 L 252.809,375.615 L 252.978,375.812 C 252.995,375.822 258.378,382.107 266.703,388.592 L 266.703,388.592 C 274.616,394.749 283.297,399.178 283.315,399.187 L 283.315,399.187 L 283.544,399.304 L 279.633,404.33 L 279.476,404.243 L 279.476,404.243 z M 262.934,392.506 C 271.479,399.162 278.403,403.15 279.523,403.781 L 279.523,403.781 L 282.895,399.447 C 281.472,398.704 273.642,394.528 266.442,388.926 L 266.442,388.926 C 258.938,383.081 253.805,377.393 252.828,376.281 L 252.828,376.281 L 249.564,380.465 C 250.413,381.37 255.574,386.785 262.934,392.506 L 262.934,392.506 z"
- style="fill:#4d4d4d" />
- <rect id="pen_shadow"
- width="378.89471"
- height="389.88782"
- x="129.8893"
- y="112.05299"
- style="opacity:1;fill:url(#pen_shadow_radialGradient);fill-opacity:1;stroke:#4a4a4a;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path id="pen_main"
- d="M 279.41935,402.42925 C 279.41935,402.42925 332.64609,345.32574 384.74548,282.44569 L 387.0212,283.14836 C 387.0212,283.14836 495.06978,164.73541 468.64063,155.14837 C 468.64063,155.14837 455.42606,128.97833 351.78234,254.90545 L 351.58303,256.79518 C 303.76315,311.94378 250.62994,379.18477 250.62994,379.18477 C 209.58912,438.18094 185.22113,481.78682 187.23653,486.00083 C 189.97605,491.72893 279.57838,403.0031 279.41935,402.42925 z"
- style="fill:url(#pen_main_radialGradient);fill-opacity:1;fill-rule:evenodd;stroke:#000030;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path id="pen_ring_tip_main"
- d="M 248.88937,380.28407 C 260.52371,392.19325 279.48677,404.28563 279.48677,404.28563 L 283.24273,399.52196 C 270.37465,392.79686 252.46212,375.70363 252.46212,375.70363 L 248.88937,380.28407 z"
- style="fill:url(#pen_ring_tip_main_radialGradient);fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path id="pen_ring_clip"
- d="M 349.52184,256.42873 C 370.04225,269.52883 386.16543,285.37718 386.16543,285.37718 L 388.91369,282.17086 C 377.9694,270.59048 352.22755,253.07064 352.22755,253.07064 L 349.52184,256.42873 z"
- style="fill:url(#pen_ring_clip_radialGradient);fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path id="pen_clip"
- d="M 462.24667,151.81129 C 473.05653,152.72737 474.88872,162.25471 474.88872,162.25471 C 425.60308,213.55574 353.41521,288.12545 353.41521,288.12545 L 349.75085,285.01074 C 413.32748,208.79208 462.24667,151.81129 462.24667,151.81129"
- style="fill:url(#pen_clip_radialGradient);fill-opacity:1;fill-rule:evenodd;stroke:#4a4a4a;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-</g>
-</svg>
diff --git a/res/drawable/keyboard.png b/res/drawable/keyboard.png
deleted file mode 100644
index e2c3c74..0000000
--- a/res/drawable/keyboard.png
+++ /dev/null
Binary files differ
diff --git a/res/drawable/minak.svg b/res/drawable/minak.svg
index bb9b9fc..273c52b 100644
--- a/res/drawable/minak.svg
+++ b/res/drawable/minak.svg
@@ -23,351 +23,198 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<!-- And cleaned up in Emacs -->
+
<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="48"
height="48"
viewBox="0.171 0.201 512 512"
id="svg4768"
- xml:space="preserve"
- inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="emacs.svg"><metadata
- id="metadata4071"><rdf:RDF><cc:Work
- rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><sodipodi:namedview
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1"
- objecttolerance="10"
- gridtolerance="10"
- guidetolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:window-width="1364"
- inkscape:window-height="743"
- id="namedview4069"
- showgrid="false"
- inkscape:snap-center="true"
- inkscape:zoom="9.8333333"
- inkscape:cx="20.750371"
- inkscape:cy="18.870747"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:window-maximized="1"
- inkscape:current-layer="svg4768" />
-<defs
- id="defs4770"><linearGradient
- id="linearGradient3294"><stop
- id="stop3296"
- style="stop-color:#6376e6;stop-opacity:1"
- offset="0" /><stop
- id="stop3302"
- style="stop-color:#222989;stop-opacity:1"
- offset="0.50094414" /><stop
- id="stop3298"
- style="stop-color:#00003d;stop-opacity:1"
- offset="1" /></linearGradient><linearGradient
- id="linearGradient3284"><stop
- id="stop3286"
- style="stop-color:#000000;stop-opacity:1"
- offset="0" /><stop
- id="stop3292"
- style="stop-color:#000000;stop-opacity:0.49803922"
- offset="0.84845906" /><stop
- id="stop3288"
- style="stop-color:#000000;stop-opacity:0"
- offset="1" /></linearGradient><linearGradient
- id="linearGradient3274"><stop
- id="stop3276"
- style="stop-color:#000000;stop-opacity:1"
- offset="0" /><stop
- id="stop3278"
- style="stop-color:#000000;stop-opacity:0"
- offset="1" /></linearGradient><linearGradient
- id="linearGradient3262"><stop
- id="stop3264"
- style="stop-color:#000000;stop-opacity:1"
- offset="0" /><stop
- id="stop3266"
- style="stop-color:#000000;stop-opacity:0"
- offset="1" /></linearGradient><linearGradient
- id="linearGradient3242"><stop
- id="stop3244"
- style="stop-color:#282828;stop-opacity:1"
- offset="0" /><stop
- id="stop3252"
- style="stop-color:#808080;stop-opacity:1"
- offset="0.39253417" /><stop
- id="stop3246"
- style="stop-color:#d9d9d9;stop-opacity:1"
- offset="1" /></linearGradient><linearGradient
- id="linearGradient3202"><stop
- id="stop3204"
- style="stop-color:#2b2b2b;stop-opacity:1"
- offset="0" /><stop
- id="stop3250"
- style="stop-color:#828383;stop-opacity:1"
- offset="0.5" /><stop
- id="stop3206"
- style="stop-color:#dadbdb;stop-opacity:1"
- offset="1" /></linearGradient><linearGradient
- id="linearGradient4966"><stop
- id="stop4968"
- style="stop-color:#b6b3d8;stop-opacity:1"
- offset="0" /><stop
- id="stop4970"
- style="stop-color:#b6b3d8;stop-opacity:0"
- offset="1" /></linearGradient><linearGradient
- id="linearGradient4938"><stop
- id="stop4940"
- style="stop-color:#000000;stop-opacity:1"
- offset="0" /><stop
- id="stop4942"
- style="stop-color:#000000;stop-opacity:0"
- offset="1" /></linearGradient><linearGradient
- id="linearGradient4898"><stop
- id="stop4900"
- style="stop-color:#bab8db;stop-opacity:1"
- offset="0" /><stop
- id="stop4902"
- style="stop-color:#5955a9;stop-opacity:0.99159664"
- offset="1" /></linearGradient><linearGradient
- id="linearGradient4876"><stop
- id="stop4878"
- style="stop-color:#d3d2e8;stop-opacity:1"
- offset="0" /><stop
- id="stop4880"
- style="stop-color:#5955a9;stop-opacity:0.99159664"
- offset="1" /></linearGradient>
-<radialGradient
- cx="20.951529"
- cy="-108.96888"
- r="266.76535"
- fx="20.951529"
- fy="-108.96888"
- id="radialGradient4892"
- xlink:href="#linearGradient4898"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,0.60368634,0.49558719,0,206.05482,226.70225)" /><radialGradient
- cx="233.8876"
- cy="471.26172"
- r="170.49393"
- fx="233.8876"
- fy="471.26172"
- id="radialGradient4944"
- xlink:href="#linearGradient4938"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,0.1854103,0,383.88493)" /><radialGradient
- cx="299.70135"
- cy="371.76376"
- r="76.696358"
- fx="299.70135"
- fy="371.76376"
- id="radialGradient4972"
- xlink:href="#linearGradient4966"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,0.9121621,0,32.654948)" /><radialGradient
- cx="289.44067"
- cy="390.45248"
- r="17.67668"
- fx="289.44067"
- fy="390.45248"
- id="radialGradient3210"
- xlink:href="#linearGradient3202"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.414705,0.3300575,-0.5059004,0.6356454,346.95314,49.479585)" /><radialGradient
- cx="283.50717"
- cy="382.14804"
- r="17.67668"
- fx="283.50717"
- fy="382.14804"
- id="radialGradient3238"
- xlink:href="#linearGradient3202"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.414705,0.3300575,-0.5059004,0.6356454,448.41009,-65.398074)" /><radialGradient
- cx="418.45551"
- cy="181.18982"
- r="63.068935"
- fx="418.45551"
- fy="181.18982"
- id="radialGradient3248"
- xlink:href="#linearGradient3242"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-6.5565014e-2,-5.9721765e-2,1.6871024,-1.8521705,171.90774,540.51473)" /><radialGradient
- cx="354.51709"
- cy="357.33591"
- r="33.712105"
- fx="354.51709"
- fy="357.33591"
- id="radialGradient3268"
- xlink:href="#linearGradient3262"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.4055116,-3.3440123e-2,0.1034174,4.3988695,177.23251,-1191.6649)" /><radialGradient
- cx="510.58469"
- cy="223.55537"
- r="132.28336"
- fx="510.58469"
- fy="223.55537"
- id="radialGradient3280"
- xlink:href="#linearGradient3274"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.1339874,-0.1146812,0.3079048,-0.3597394,444.23592,395.03849)" /><radialGradient
- cx="284.4671"
- cy="-158.17821"
- r="110.2972"
- fx="284.4671"
- fy="-158.17821"
- id="radialGradient3290"
- xlink:href="#linearGradient3284"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-1.2497569,1.3798305,-9.6289463e-2,-7.2974479e-2,674.3826,-70.590682)" /><radialGradient
- cx="425.51019"
- cy="356.62274"
- r="143.34167"
- fx="425.51019"
- fy="356.62274"
- id="radialGradient3300"
- xlink:href="#linearGradient3294"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.1008165,-8.0872321e-2,1.0745309,-1.3395252,13.843287,784.79288)" /></defs>
-<path
- d="M 404.38153,471.26172 C 404.40061,488.72268 328.06229,502.87946 233.8876,502.87946 C 139.71291,502.87946 63.374595,488.72268 63.393677,471.26172 C 63.374595,453.80076 139.71291,439.64398 233.8876,439.64398 C 328.06229,439.64398 404.40061,453.80076 404.38153,471.26172 z"
- id="path4912"
- style="opacity:1;fill:url(#radialGradient4944);fill-opacity:1;stroke:#7b0000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- transform="matrix(1.3434649,0,0,1.3934426,-81.886873,-193.70595)" /><path
- d="m 237.03909,475.57196 c 131.79436,0 238.6348,-105.76 238.6348,-236.22155 0,-130.46155 -106.84044,-236.221545 -238.6348,-236.221545 -131.79437,0 -238.634815,105.759995 -238.634815,236.221545 0,130.46155 106.840445,236.22155 238.634815,236.22155 z"
- id="path4864"
- style="fill:url(#radialGradient4892);fill-opacity:1;stroke:#7b0000;stroke-width:0;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- inkscape:connector-curvature="0" /><path
- d="M 376.39771,371.76376 C 376.40956,410.40897 342.06796,441.74284 299.70135,441.74284 C 257.33475,441.74284 222.99315,410.40897 223.005,371.76376 C 222.99315,333.11855 257.33475,301.78468 299.70135,301.78468 C 342.06796,301.78468 376.40956,333.11855 376.39771,371.76376 L 376.39771,371.76376 z"
- id="path4946"
- style="opacity:1;fill:url(#radialGradient4972);fill-opacity:1;stroke:#7b0000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- transform="matrix(1.4594595,0,0,1,-195.74111,-13.473684)" /><path
- d="m 406.99025,128.24724 c 0,0 6.09989,21.0078 9.58704,48.97166 1.41221,11.32467 6.34818,54.41295 6.21863,87.44939 0,0 0.0457,40.23552 -3.10931,62.44534 -3.30118,23.23898 -7.51418,36.40486 -15.92171,43.7321 -2.00464,0.19087 -8.53911,3.53663 -14.84064,-5.49655 -16.11056,-23.09426 -20.52041,-52.94998 -34.29248,-110.9411 -16.1227,-64.127 -31.56149,-83.29128 -42.73463,-92.8653 -11.19791,-9.07685 -34.45383,1.70382 -45.86235,53.37652 -6.36659,26.16241 -7.5364,123.60277 -7.5364,123.60277 -22.19469,-27.95505 -61.93067,-80.43759 -70.38102,-91.16526 -7.41134,-9.40866 -18.78483,-24.57035 -28.94842,-26.20016 -9.89378,-2.19861 -14.65745,13.37492 -15.2071,21.61972 -1.83218,26.56661 1.28253,62.84376 7.69516,95.09012 3.22335,16.20882 2.74827,19.05466 2.74827,19.05466 1.09931,23.08548 -10.99307,41.04084 -36.46037,40.12475 -25.833755,-0.18322 -46.548625,-26.01233 -47.453465,-54.59896 -0.8521,-26.92018 3.84757,-93.25794 3.84757,-93.25794 15.93996,77.31798 20.00775,89.95772 29.314885,93.99081 5.49654,2.38183 10.96153,-3.9787 9.89378,-25.28408 -1.16245,-23.19489 -6.77907,-70.72213 -6.77907,-70.72213 -6.962295,-45.25483 -13.558145,-76.76832 4.39723,-90.50967 11.73047,-8.97739 26.01695,1.28253 34.44497,5.31332 31.33028,17.95537 52.82523,49.00385 67.97387,68.70674 5.69982,7.41341 18.32179,30.04774 18.32179,30.04774 -19.23789,-70.35569 -8.42803,-126.42038 10.2602,-161.964658 24.18477,-40.8576 64.9968,-33.86852 103.15172,30.963828 22.5358,38.29255 33.36184,57.35854 41.05921,120.05537 5.84342,36.6472 8.23437,42.10791 11.2847,41.82939 4.29458,-0.39214 5.92204,-43.37561 6.73685,-55.19029 2.07287,-30.05668 2.59109,-107.78947 2.59109,-108.17813 z"
- id="path4839"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- inkscape:connector-curvature="0" /><rect
- width="512"
- height="512"
- x="0.171"
- y="0.20100001"
- id="rect4772"
- style="fill:none;display:none" />
-
-
-
-<g
- id="g4788"
- style="display:none">
- <g
- id="g4790"
- style="display:inline">
- </g>
+ xml:space="preserve">
+<defs id="defs4770">
+ <linearGradient id="linearGradient3872">
+ <stop id="stop3874" style="stop-color:#6376e6;stop-opacity:0.50196081;" offset="0" />
+ <stop id="stop3876" style="stop-color:#222989;stop-opacity:0.75294119;" offset="0.50094414" />
+ <stop id="stop3878" style="stop-color:#00003d;stop-opacity:1" offset="1" />
+ </linearGradient>
+ <linearGradient id="pen_main_linearGradient">
+ <stop id="stop3296" style="stop-color:#6376e6;stop-opacity:1" offset="0" />
+ <stop id="stop3302" style="stop-color:#222989;stop-opacity:1" offset="0.50094414" />
+ <stop id="stop3298" style="stop-color:#00003d;stop-opacity:1" offset="1" />
+ </linearGradient>
+ <linearGradient id="pen_shadow_linearGradient">
+ <stop id="stop3286" style="stop-color:#000000;stop-opacity:1" offset="0" />
+ <stop id="stop3292" style="stop-color:#000000;stop-opacity:0.49803922" offset="0.84845906" />
+ <stop id="stop3288" style="stop-color:#000000;stop-opacity:0" offset="1" />
+ </linearGradient>
+ <linearGradient id="pen_clip_linearGradient">
+ <stop id="stop3244" style="stop-color:#282828;stop-opacity:1" offset="0" />
+ <stop id="stop3252" style="stop-color:#808080;stop-opacity:1" offset="0.39253417" />
+ <stop id="stop3246" style="stop-color:#d9d9d9;stop-opacity:1" offset="1" />
+ </linearGradient>
+ <linearGradient id="pen_ring_linearGradient">
+ <stop id="stop3204" style="stop-color:#2b2b2b;stop-opacity:1" offset="0" />
+ <stop id="stop3250" style="stop-color:#828383;stop-opacity:1" offset="0.5" />
+ <stop id="stop3206" style="stop-color:#dadbdb;stop-opacity:1" offset="1" />
+ </linearGradient>
+ <linearGradient id="ball_highlight_linearGradient">
+ <stop id="stop4968" style="stop-color:#b6b3d8;stop-opacity:1" offset="0" />
+ <stop id="stop4970" style="stop-color:#b6b3d8;stop-opacity:0" offset="1" />
+ </linearGradient>
+ <linearGradient id="ball_shadow_linearGradient">
+ <stop id="stop4940" style="stop-color:#000000;stop-opacity:1" offset="0" />
+ <stop id="stop4942" style="stop-color:#000000;stop-opacity:0" offset="1" />
+ </linearGradient>
+ <linearGradient id="ball_main_linearGradient">
+ <stop id="stop4900" style="stop-color:#bab8db;stop-opacity:1" offset="0" />
+ <stop id="stop4902" style="stop-color:#5955a9;stop-opacity:0.99159664" offset="1" />
+ </linearGradient>
+ <radialGradient id="ball_main_radialGradient"
+ cx="20.951529"
+ cy="-108.96888"
+ r="266.76535"
+ fx="20.951529"
+ fy="-108.96888"
+ xlink:href="#ball_main_linearGradient"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6817439,0,0,0.5905355,-3.8523706,-28.935273)"
+ />
+ <radialGradient id="ball_shadow_radialGradient"
+ cx="233.8876"
+ cy="471.26172"
+ r="170.49393"
+ fx="233.8876"
+ fy="471.26172"
+ xlink:href="#ball_shadow_linearGradient"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.1854103,0,383.88493)" />
+ <radialGradient id="ball_highlight_radialGradient"
+ cx="299.70135"
+ cy="371.76376"
+ r="76.696358"
+ fx="299.70135"
+ fy="371.76376"
+ xlink:href="#ball_highlight_linearGradient"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.9121621,0,32.654948)" />
+ <radialGradient id="pen_ring_tip_main_radialGradient"
+ cx="289.44067"
+ cy="390.45248"
+ r="17.67668"
+ fx="289.44067"
+ fy="390.45248"
+ xlink:href="#pen_ring_linearGradient"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.414705,0.3300575,-0.5059004,0.6356454,346.95314,49.479585)"
+ />
+ <radialGradient id="pen_ring_clip_radialGradient"
+ cx="283.50717"
+ cy="382.14804"
+ r="17.67668"
+ fx="283.50717"
+ fy="382.14804"
+ xlink:href="#pen_ring_linearGradient"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.414705,0.3300575,-0.5059004,0.6356454,448.41009,-65.398074)"
+ />
+ <radialGradient id="pen_clip_radialGradient"
+ cx="418.45551"
+ cy="181.18982"
+ r="63.068935"
+ fx="418.45551"
+ fy="181.18982"
+ xlink:href="#pen_clip_linearGradient"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.06556501,-0.05972176,1.6871024,-1.8521705,171.90774,540.51473)"
+ />
+ <radialGradient id="pen_shadow_radialGradient"
+ cx="284.4671"
+ cy="-158.17821"
+ r="110.2972"
+ fx="284.4671"
+ fy="-158.17821"
+ xlink:href="#pen_shadow_linearGradient"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.2497569,1.3798305,-0.09628946,-0.07297448,674.3826,-70.590682)"
+ />
+ <radialGradient
+ id="pen_main_radialGradient"
+ cx="425.51019"
+ cy="356.62274"
+ r="143.34167"
+ fx="425.51019"
+ fy="356.62274"
+ xlink:href="#pen_main_linearGradient"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.1008165,-0.08087232,1.0745309,-1.3395252,13.843287,784.79288)"
+ />
+ <radialGradient
+ xlink:href="#ball_main_linearGradient"
+ id="radialGradient3061"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.11128458,0.59334048,-0.48709392,0.0913574,265.16077,221.20732)"
+ cx="20.951529"
+ cy="-108.96888"
+ fx="20.951529"
+ fy="-108.96888"
+ r="266.76535" />
+ <radialGradient
+ xlink:href="#linearGradient3872"
+ id="radialGradient3862"
+ cx="34.140846"
+ cy="34.366196"
+ fx="34.140846"
+ fy="34.366196"
+ r="4.7253523"
+ gradientUnits="userSpaceOnUse" />
+</defs>
+<g id="ball">
+ <path id="ball_shadow"
+ d="M 404.38153,471.26172 C 404.40061,488.72268 328.06229,502.87946 233.8876,502.87946 C 139.71291,502.87946 63.374595,488.72268 63.393677,471.26172 C 63.374595,453.80076 139.71291,439.64398 233.8876,439.64398 C 328.06229,439.64398 404.40061,453.80076 404.38153,471.26172 z"
+ transform="matrix(1.3434649,0,0,1.3934426,-81.886873,-193.70595)"
+ style="opacity:1;fill:url(#ball_shadow_radialGradient);fill-opacity:1;stroke:#7b0000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path id="ball_main"
+ d="m 277.19656,7.985198 c 0,157.044512 -119.43492,284.354252 -266.76535,284.354252 -147.33043,0 -266.76535,-127.30974 -266.76535,-284.354252 0,-157.044518 119.43492,-284.354248 266.76535,-284.354248 147.33043,0 266.76535,127.30973 266.76535,284.354248 z"
+ style="fill:url(#ball_main_radialGradient);fill-opacity:1;stroke:#7b0000;stroke-width:0;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ transform="matrix(0.8855031,0,0,0.8392166,227.80221,232.6491)" />
+ <path id="ball_highlight"
+ d="m 376.39771,371.76376 c 0.0118,38.64521 -34.32975,69.97908 -76.69636,69.97908 -42.3666,0 -76.7082,-31.33387 -76.69635,-69.97908 -0.0118,-38.64521 34.32975,-69.97908 76.69635,-69.97908 42.36661,0 76.70821,31.33387 76.69636,69.97908 l 0,0 z"
+ style="fill:url(#ball_highlight_radialGradient);fill-opacity:1;stroke:#7b0000;stroke-width:0;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ transform="matrix(1.4594595,0,0,1,-195.74111,-13.473684)" />
+ <path id="ball_E"
+ d="m 46.801057,170.99495 c 0,0 -2.122737,21.77224 -0.395219,49.89969 0.699602,11.39092 3.791191,54.65066 10.008516,87.09705 0,0 7.372198,39.55439 14.567305,60.80199 7.528519,22.23217 14.09634,34.39578 23.7105,40.04758 2.00547,-0.18194 9.044711,1.90191 13.573071,-8.13809 11.57723,-25.66833 10.40785,-55.8253 13.25372,-115.36135 4.02511,-66.00009 15.66653,-87.68195 24.8833,-99.15157 9.33276,-10.98554 34.17745,-4.67666 54.91589,44.00742 11.08031,24.54041 30.19239,120.09522 30.19239,120.09522 16.66104,-31.56737 46.04131,-90.47548 52.36928,-102.57705 5.54992,-10.61364 13.93356,-27.6121 23.62253,-31.08755 9.31893,-3.98477 16.87181,10.44372 18.9319,18.4459 6.69812,25.77357 10.32418,62.00318 9.9658,94.87903 -0.18015,16.52523 0.81139,19.23472 0.81139,19.23472 3.17515,22.89249 18.37021,38.311 43.2322,32.71592 34.50186,-9.47524 10.52606,-50.05117 4.11631,-55.57736 -4.96327,3.35426 -11.5071,-1.88985 -14.38512,-23.02693 -3.13326,-23.01167 -6.37416,-70.75977 -6.37416,-70.75977 -1.49939,-45.7627 -0.82583,-77.95201 -21.00658,-88.14794 -13.18434,-6.66113 -25.33465,6.05656 -32.87519,11.5719 -27.48342,23.42314 -42.88647,57.90193 -54.14343,80.05968 -4.23554,8.33708 -12.46874,32.91026 -12.46874,32.91026 5.9387,-72.69629 -15.02096,-125.80745 -39.94121,-157.29756 -31.30206,-35.699136 -70.12628,-21.306467 -95.676,49.44835 -15.090671,41.79058 -22.216531,62.52552 -18.224341,125.56681 1.01233,37.09633 -0.33102,42.90421 -3.38042,43.19277 C 81.791486,330.25032 72.26827,288.3035 69.289485,276.8415 61.711439,247.68204 46.872703,171.37695 46.801057,170.99495 z"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
-
-
-<g
- id="g4806"
- style="display:none">
- <g
- id="g4808"
- style="display:inline">
- <path
- d="M 349.098,256.651 C 348.833,256.397 386.735,284.256 388.519,281.663 C 394.881,272.411 470.565,188.526 473.303,165.427 C 473.545,163.424 472.787,161.331 472.787,161.331 C 472.787,161.331 471.597,161.187 466.462,157.017 C 463.77,154.825 460.979,152.436 460.979,152.436 C 444.925,153.434 403.094,193.995 349.917,256.004"
- id="path4810"
- style="fill:#050505;display:none" />
- </g>
+<path id="path3086"
+ style="fill:url(#radialGradient3862);fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="m 38.366199,34.366196 a 4.2253523,4.2253523 0 1 1 -8.450705,0 4.2253523,4.2253523 0 1 1 8.450705,0 z"
+ transform="matrix(10.666667,0,0,10.666667,2.5747554,-9.4140231)" />
+<g id="pen"
+ transform="matrix(0.83505988,-0.29412357,0.29412357,0.83505988,67.230053,12.214486)">
+ <path id="pen_ring_tip_outline"
+ d="m 279.476,404.243 c -0.007,-0.004 -7.446,-4.112 -16.804,-11.401 l 0,0 c -8.082,-6.285 -13.538,-12.214 -13.544,-12.22 l 0,0 -0.122,-0.133 3.646,-4.669 0.157,-0.205 0.169,0.197 c 0.017,0.01 5.4,6.295 13.725,12.78 l 0,0 c 7.913,6.157 16.594,10.586 16.612,10.595 l 0,0 0.229,0.117 -3.911,5.026 -0.157,-0.087 0,0 z m -16.542,-11.737 c 8.545,6.656 15.469,10.644 16.589,11.275 l 0,0 3.372,-4.334 c -1.423,-0.743 -9.253,-4.919 -16.453,-10.521 l 0,0 c -7.504,-5.845 -12.637,-11.533 -13.614,-12.645 l 0,0 -3.264,4.184 c 0.849,0.905 6.01,6.32 13.37,12.041 l 0,0 z"
+ style="fill:#4d4d4d" />
+ <rect id="pen_shadow"
+ width="378.89471"
+ height="389.88782"
+ x="129.8893"
+ y="112.05299"
+ style="fill:url(#pen_shadow_radialGradient);fill-opacity:1;stroke:#4a4a4a;stroke-width:0;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ <path id="pen_main"
+ d="m 279.41935,402.42925 c 0,0 53.22674,-57.10351 105.32613,-119.98356 l 2.27572,0.70267 c 0,0 108.04858,-118.41295 81.61943,-127.99999 0,0 -13.21457,-26.17004 -116.85829,99.75708 l -0.19931,1.88973 c -47.81988,55.1486 -100.95309,122.38959 -100.95309,122.38959 -41.04082,58.99617 -65.40881,102.60205 -63.39341,106.81606 2.73952,5.7281 92.34185,-82.99773 92.18282,-83.57158 z"
+ style="fill:url(#pen_main_radialGradient);fill-opacity:1;fill-rule:evenodd;stroke:#000030;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ <path id="pen_ring_tip_main"
+ d="m 248.88937,380.28407 c 11.63434,11.90918 30.5974,24.00156 30.5974,24.00156 l 3.75596,-4.76367 c -12.86808,-6.7251 -30.78061,-23.81833 -30.78061,-23.81833 l -3.57275,4.58044 z"
+ style="fill:url(#pen_ring_tip_main_radialGradient);fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ <path id="pen_ring_clip"
+ d="m 349.52184,256.42873 c 20.52041,13.1001 36.64359,28.94845 36.64359,28.94845 l 2.74826,-3.20632 C 377.9694,270.59048 352.22755,253.07064 352.22755,253.07064 l -2.70571,3.35809 z"
+ style="fill:url(#pen_ring_clip_radialGradient);fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ <path id="pen_clip"
+ d="m 462.24667,151.81129 c 10.80986,0.91608 12.64205,10.44342 12.64205,10.44342 -49.28564,51.30103 -121.47351,125.87074 -121.47351,125.87074 l -3.66436,-3.11471 C 413.32748,208.79208 462.24667,151.81129 462.24667,151.81129"
+ style="fill:url(#pen_clip_radialGradient);fill-opacity:1;fill-rule:evenodd;stroke:#4a4a4a;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
-
-
-
-<g
- id="g4796"
- style="stroke:none">
-
- <g
- id="g4800"
- style="stroke:none">
-
- </g>
-</g><g
- id="g4820">
-
- <path
- d="M 279.476,404.243 C 279.469,404.239 272.03,400.131 262.672,392.842 L 262.672,392.842 C 254.59,386.557 249.134,380.628 249.128,380.622 L 249.128,380.622 L 249.006,380.489 L 252.652,375.82 L 252.809,375.615 L 252.978,375.812 C 252.995,375.822 258.378,382.107 266.703,388.592 L 266.703,388.592 C 274.616,394.749 283.297,399.178 283.315,399.187 L 283.315,399.187 L 283.544,399.304 L 279.633,404.33 L 279.476,404.243 L 279.476,404.243 z M 262.934,392.506 C 271.479,399.162 278.403,403.15 279.523,403.781 L 279.523,403.781 L 282.895,399.447 C 281.472,398.704 273.642,394.528 266.442,388.926 L 266.442,388.926 C 258.938,383.081 253.805,377.393 252.828,376.281 L 252.828,376.281 L 249.564,380.465 C 250.413,381.37 255.574,386.785 262.934,392.506 L 262.934,392.506 z"
- id="path4824"
- style="fill:#4d4d4d" />
-</g><g
- id="g4774">
-
-</g><rect
- width="378.89471"
- height="389.88782"
- x="129.8893"
- y="112.05299"
- id="rect3282"
- style="opacity:1;fill:url(#radialGradient3290);fill-opacity:1;stroke:#4a4a4a;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
- d="M 279.41935,402.42925 C 279.41935,402.42925 332.64609,345.32574 384.74548,282.44569 L 387.0212,283.14836 C 387.0212,283.14836 495.06978,164.73541 468.64063,155.14837 C 468.64063,155.14837 455.42606,128.97833 351.78234,254.90545 L 351.58303,256.79518 C 303.76315,311.94378 250.62994,379.18477 250.62994,379.18477 C 209.58912,438.18094 185.22113,481.78682 187.23653,486.00083 C 189.97605,491.72893 279.57838,403.0031 279.41935,402.42925 z"
- id="path3254"
- style="fill:url(#radialGradient3300);fill-opacity:1;fill-rule:evenodd;stroke:#000030;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
- d="M 248.88937,380.28407 C 260.52371,392.19325 279.48677,404.28563 279.48677,404.28563 L 283.24273,399.52196 C 270.37465,392.79686 252.46212,375.70363 252.46212,375.70363 L 248.88937,380.28407 z"
- id="path2430"
- style="fill:url(#radialGradient3210);fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
- d="M 349.52184,256.42873 C 370.04225,269.52883 386.16543,285.37718 386.16543,285.37718 L 388.91369,282.17086 C 377.9694,270.59048 352.22755,253.07064 352.22755,253.07064 L 349.52184,256.42873 z"
- id="path3236"
- style="fill:url(#radialGradient3238);fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
- d="M 462.24667,151.81129 C 473.05653,152.72737 474.88872,162.25471 474.88872,162.25471 C 425.60308,213.55574 353.41521,288.12545 353.41521,288.12545 L 349.75085,285.01074 C 413.32748,208.79208 462.24667,151.81129 462.24667,151.81129"
- id="path3240"
- style="fill:url(#radialGradient3248);fill-opacity:1;fill-rule:evenodd;stroke:#4a4a4a;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><text
- xml:space="preserve"
- style="font-size:3.99999988px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="40.677967"
- y="33.35593"
- id="text4081"
- sodipodi:linespacing="125%"
- transform="matrix(10.666667,0,0,10.666667,0.171,0.201)"><tspan
- sodipodi:role="line"
- id="tspan4083"
- x="40.677967"
- y="33.35593" /></text>
-<text
- xml:space="preserve"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="39.864407"
- y="32.745762"
- id="text4085"
- sodipodi:linespacing="125%"
- transform="matrix(10.666667,0,0,10.666667,0.171,0.201)"><tspan
- sodipodi:role="line"
- id="tspan4087"></tspan></text>
-<text
- xml:space="preserve"
- style="font-size:4px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"
- x="39.864407"
- y="31.728813"
- id="text4089"
- sodipodi:linespacing="125%"
- transform="matrix(10.666667,0,0,10.666667,0.171,0.201)"><tspan
- sodipodi:role="line"
- id="tspan4091"></tspan></text>
-<text
- xml:space="preserve"
- style="font-size:32.45656586px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"
- x="388.10611"
- y="390.5311"
- id="text4093"
- sodipodi:linespacing="125%"
- transform="scale(1.0800087,0.92591848)"><tspan
- sodipodi:role="line"
- id="tspan4095"
- x="388.10611"
- y="390.5311">inak</tspan></text>
-</svg> \ No newline at end of file
+</svg>